@doenet/doenetml-iframe 0.7.0-alpha20 → 0.7.0-alpha23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.js +336 -1695
  2. package/index.js.map +1 -1
  3. package/package.json +1 -1
package/index.js CHANGED
@@ -428,7 +428,7 @@ function nextUniqueId() {
428
428
  }
429
429
  return id2;
430
430
  }
431
- function toArray$2(obj) {
431
+ function toArray$1(obj) {
432
432
  var array = [];
433
433
  for (var i = (obj || []).length >>> 0; i--; ) {
434
434
  array[i] = obj[i];
@@ -437,7 +437,7 @@ function toArray$2(obj) {
437
437
  }
438
438
  function classArray(node) {
439
439
  if (node.classList) {
440
- return toArray$2(node.classList);
440
+ return toArray$1(node.classList);
441
441
  } else {
442
442
  return (node.getAttribute("class") || "").split(" ").filter(function(i) {
443
443
  return i;
@@ -1500,7 +1500,7 @@ function observe(options) {
1500
1500
  mo$1 = new MUTATION_OBSERVER(function(objects) {
1501
1501
  if (disabled) return;
1502
1502
  var defaultPrefix = getDefaultUsablePrefix();
1503
- toArray$2(objects).forEach(function(mutationRecord) {
1503
+ toArray$1(objects).forEach(function(mutationRecord) {
1504
1504
  if (mutationRecord.type === "childList" && mutationRecord.addedNodes.length > 0 && !isWatched(mutationRecord.addedNodes[0])) {
1505
1505
  if (config$3.searchPseudoElements) {
1506
1506
  pseudoElementsCallback(mutationRecord.target);
@@ -1573,7 +1573,7 @@ function classParser(node) {
1573
1573
  return val;
1574
1574
  }
1575
1575
  function attributesParser(node) {
1576
- var extraAttributes = toArray$2(node.attributes).reduce(function(acc, attr) {
1576
+ var extraAttributes = toArray$1(node.attributes).reduce(function(acc, attr) {
1577
1577
  if (acc.name !== "class" && acc.name !== "style") {
1578
1578
  acc[attr.name] = attr.value;
1579
1579
  }
@@ -1682,7 +1682,7 @@ function onTree(root2) {
1682
1682
  }
1683
1683
  var candidates = [];
1684
1684
  try {
1685
- candidates = toArray$2(root2.querySelectorAll(prefixesDomQuery));
1685
+ candidates = toArray$1(root2.querySelectorAll(prefixesDomQuery));
1686
1686
  } catch (e2) {
1687
1687
  }
1688
1688
  if (candidates.length > 0) {
@@ -1992,7 +1992,7 @@ function replaceForPosition(node, position2) {
1992
1992
  if (node.getAttribute(pendingAttribute) !== null) {
1993
1993
  return resolve();
1994
1994
  }
1995
- var children = toArray$2(node.children);
1995
+ var children = toArray$1(node.children);
1996
1996
  var alreadyProcessedPseudoElement = children.filter(function(c2) {
1997
1997
  return c2.getAttribute(DATA_FA_PSEUDO_ELEMENT) === position2;
1998
1998
  })[0];
@@ -2066,7 +2066,7 @@ function processable(node) {
2066
2066
  function searchPseudoElements(root2) {
2067
2067
  if (!IS_DOM) return;
2068
2068
  return new Promise(function(resolve, reject2) {
2069
- var operations = toArray$2(root2.querySelectorAll("*")).filter(processable).map(replace2);
2069
+ var operations = toArray$1(root2.querySelectorAll("*")).filter(processable).map(replace2);
2070
2070
  var end3 = perf.begin("searchPseudoElements");
2071
2071
  disableObservation();
2072
2072
  Promise.all(operations).then(function() {
@@ -2944,7 +2944,7 @@ function sort_key(e2, t = {}) {
2944
2944
  }
2945
2945
  }
2946
2946
  var u = n.length, c2 = n.map(sort_key, t);
2947
- return "*" === r ? [4, "product", u, c2] : "/" === r ? [4, "quotient", u, c2] : "+" === r ? [5, "sum", u, c2] : "-" === r ? t.ignore_negatives ? c2[0] : [6, "minus", u, c2] : [7, r, u, c2];
2947
+ return "*" === r ? [4, "product", u, c2] : "/" === r ? [4, "quotient", u, c2] : "+" === r ? [5, "sum", u, c2] : "-" === r ? t.ignore_negatives ? c2[0] : [6, "minus", u, c2] : ["tuple", "vector", "altvector"].includes(r) ? [7, u, c2] : "interval" === r ? false === n[1][1] ? false === n[1][2] ? [7, ...c2[0].slice(1)] : [8, u, c2] : false === n[1][2] ? [8, u, c2] : [9, ...c2[0].slice(1)] : "array" === r ? [9, u, c2] : [10, r, u, c2];
2948
2948
  }
2949
2949
  function arrayCompare(e2, t) {
2950
2950
  if (Array.isArray(e2)) {
@@ -3067,7 +3067,7 @@ function setSafeProperty(e2, t, r) {
3067
3067
  throw new Error('No access to property "' + t + '"');
3068
3068
  }
3069
3069
  function isSafeProperty(e2, t) {
3070
- return !(!isPlainObject$2(e2) && !Array.isArray(e2)) && (!!hasOwnProperty$1(safeNativeProperties, t) || !(t in Object.prototype) && !(t in Function.prototype));
3070
+ return !(!isPlainObject(e2) && !Array.isArray(e2)) && (!!hasOwnProperty$1(safeNativeProperties, t) || !(t in Object.prototype) && !(t in Function.prototype));
3071
3071
  }
3072
3072
  function getSafeMethod(e2, t) {
3073
3073
  if (!isSafeMethod(e2, t)) throw new Error('No access to method "' + t + '"');
@@ -3076,7 +3076,7 @@ function getSafeMethod(e2, t) {
3076
3076
  function isSafeMethod(e2, t) {
3077
3077
  return null != e2 && "function" == typeof e2[t] && (!(hasOwnProperty$1(e2, t) && Object.getPrototypeOf && t in Object.getPrototypeOf(e2)) && (!!hasOwnProperty$1(safeNativeMethods, t) || !(t in Object.prototype) && !(t in Function.prototype)));
3078
3078
  }
3079
- function isPlainObject$2(e2) {
3079
+ function isPlainObject(e2) {
3080
3080
  return "object" == typeof e2 && e2 && e2.constructor === Object;
3081
3081
  }
3082
3082
  var safeNativeProperties = { length: true, name: true }, safeNativeMethods = { toString: true, valueOf: true, toLocaleString: true };
@@ -3188,7 +3188,7 @@ function isUnit(e2) {
3188
3188
  function isString$1(e2) {
3189
3189
  return "string" == typeof e2;
3190
3190
  }
3191
- var isArray$1$1 = Array.isArray;
3191
+ var isArray$1 = Array.isArray;
3192
3192
  function isMatrix(e2) {
3193
3193
  return e2 && true === e2.constructor.prototype.isMatrix || false;
3194
3194
  }
@@ -3318,7 +3318,7 @@ function mapObject$1(e2, t) {
3318
3318
  for (var n in e2) hasOwnProperty$1(e2, n) && (r[n] = t(e2[n]));
3319
3319
  return r;
3320
3320
  }
3321
- function extend$2$1(e2, t) {
3321
+ function extend$2(e2, t) {
3322
3322
  for (var r in t) hasOwnProperty$1(t, r) && (e2[r] = t[r]);
3323
3323
  return e2;
3324
3324
  }
@@ -4206,7 +4206,7 @@ var _createTyped2 = function() {
4206
4206
  return _createTyped2 = typedFunction.create, typedFunction;
4207
4207
  }, dependencies$4W = ["?BigNumber", "?Complex", "?DenseMatrix", "?Fraction"], createTyped = factory("typed", dependencies$4W, function(e2) {
4208
4208
  var { BigNumber: t, Complex: r, DenseMatrix: n, Fraction: i } = e2, a = _createTyped2();
4209
- return a.clear(), a.addTypes([{ name: "number", test: isNumber$1 }, { name: "Complex", test: isComplex }, { name: "BigNumber", test: isBigNumber }, { name: "bigint", test: isBigInt }, { name: "Fraction", test: isFraction }, { name: "Unit", test: isUnit }, { name: "identifier", test: (e3) => isString$1 && /^(?:[A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE3F\uDE40\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDF02\uDF04-\uDF10\uDF12-\uDF33\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC41-\uDC46]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC30-\uDC6D\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDCD0-\uDCEB\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0\uDFF0-\uDFFF]|\uD87B[\uDC00-\uDE5D]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF])(?:[0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE3F\uDE40\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDF02\uDF04-\uDF10\uDF12-\uDF33\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC41-\uDC46]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC30-\uDC6D\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDCD0-\uDCEB\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0\uDFF0-\uDFFF]|\uD87B[\uDC00-\uDE5D]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF])*$/.test(e3) }, { name: "string", test: isString$1 }, { name: "Chain", test: isChain }, { name: "Array", test: isArray$1$1 }, { name: "Matrix", test: isMatrix }, { name: "DenseMatrix", test: isDenseMatrix }, { name: "SparseMatrix", test: isSparseMatrix }, { name: "Range", test: isRange }, { name: "Index", test: isIndex }, { name: "boolean", test: isBoolean$1 }, { name: "ResultSet", test: isResultSet }, { name: "Help", test: isHelp }, { name: "function", test: isFunction$2 }, { name: "Date", test: isDate$1 }, { name: "RegExp", test: isRegExp$1 }, { name: "null", test: isNull$1 }, { name: "undefined", test: isUndefined$1 }, { name: "AccessorNode", test: isAccessorNode }, { name: "ArrayNode", test: isArrayNode }, { name: "AssignmentNode", test: isAssignmentNode }, { name: "BlockNode", test: isBlockNode }, { name: "ConditionalNode", test: isConditionalNode }, { name: "ConstantNode", test: isConstantNode }, { name: "FunctionNode", test: isFunctionNode }, { name: "FunctionAssignmentNode", test: isFunctionAssignmentNode }, { name: "IndexNode", test: isIndexNode }, { name: "Node", test: isNode }, { name: "ObjectNode", test: isObjectNode }, { name: "OperatorNode", test: isOperatorNode }, { name: "ParenthesisNode", test: isParenthesisNode }, { name: "RangeNode", test: isRangeNode }, { name: "RelationalNode", test: isRelationalNode }, { name: "SymbolNode", test: isSymbolNode }, { name: "Map", test: isMap$1 }, { name: "Object", test: isObject$1 }]), a.addConversions([{ from: "number", to: "BigNumber", convert: function(e3) {
4209
+ return a.clear(), a.addTypes([{ name: "number", test: isNumber$1 }, { name: "Complex", test: isComplex }, { name: "BigNumber", test: isBigNumber }, { name: "bigint", test: isBigInt }, { name: "Fraction", test: isFraction }, { name: "Unit", test: isUnit }, { name: "identifier", test: (e3) => isString$1 && /^(?:[A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE3F\uDE40\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDF02\uDF04-\uDF10\uDF12-\uDF33\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC41-\uDC46]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC30-\uDC6D\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDCD0-\uDCEB\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0\uDFF0-\uDFFF]|\uD87B[\uDC00-\uDE5D]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF])(?:[0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE3F\uDE40\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDF02\uDF04-\uDF10\uDF12-\uDF33\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC41-\uDC46]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC30-\uDC6D\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDCD0-\uDCEB\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0\uDFF0-\uDFFF]|\uD87B[\uDC00-\uDE5D]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF])*$/.test(e3) }, { name: "string", test: isString$1 }, { name: "Chain", test: isChain }, { name: "Array", test: isArray$1 }, { name: "Matrix", test: isMatrix }, { name: "DenseMatrix", test: isDenseMatrix }, { name: "SparseMatrix", test: isSparseMatrix }, { name: "Range", test: isRange }, { name: "Index", test: isIndex }, { name: "boolean", test: isBoolean$1 }, { name: "ResultSet", test: isResultSet }, { name: "Help", test: isHelp }, { name: "function", test: isFunction$2 }, { name: "Date", test: isDate$1 }, { name: "RegExp", test: isRegExp$1 }, { name: "null", test: isNull$1 }, { name: "undefined", test: isUndefined$1 }, { name: "AccessorNode", test: isAccessorNode }, { name: "ArrayNode", test: isArrayNode }, { name: "AssignmentNode", test: isAssignmentNode }, { name: "BlockNode", test: isBlockNode }, { name: "ConditionalNode", test: isConditionalNode }, { name: "ConstantNode", test: isConstantNode }, { name: "FunctionNode", test: isFunctionNode }, { name: "FunctionAssignmentNode", test: isFunctionAssignmentNode }, { name: "IndexNode", test: isIndexNode }, { name: "Node", test: isNode }, { name: "ObjectNode", test: isObjectNode }, { name: "OperatorNode", test: isOperatorNode }, { name: "ParenthesisNode", test: isParenthesisNode }, { name: "RangeNode", test: isRangeNode }, { name: "RelationalNode", test: isRelationalNode }, { name: "SymbolNode", test: isSymbolNode }, { name: "Map", test: isMap$1 }, { name: "Object", test: isObject$1 }]), a.addConversions([{ from: "number", to: "BigNumber", convert: function(e3) {
4210
4210
  if (t || throwNoBignumber(e3), digits(e3) > 15) throw new TypeError("Cannot implicitly convert a number with >15 significant digits to BigNumber (value: " + e3 + "). Use function bignumber(x) to convert to BigNumber.");
4211
4211
  return new t(e3);
4212
4212
  } }, { from: "number", to: "Complex", convert: function(e3) {
@@ -5739,7 +5739,7 @@ function toFixed$1(e2, t) {
5739
5739
  function _toNumberOrDefault(e2, t) {
5740
5740
  return isNumber$1(e2) ? e2 : isBigNumber(e2) ? e2.toNumber() : t;
5741
5741
  }
5742
- function endsWith$1(e2, t) {
5742
+ function endsWith(e2, t) {
5743
5743
  var r = e2.length - t.length, n = e2.length;
5744
5744
  return e2.substring(r, n) === t;
5745
5745
  }
@@ -5821,7 +5821,7 @@ function validateIndex(e2, t) {
5821
5821
  function isEmptyIndex(e2) {
5822
5822
  for (var t = 0; t < e2._dimensions.length; ++t) {
5823
5823
  var r = e2._dimensions[t];
5824
- if (r._data && isArray$1$1(r._data)) {
5824
+ if (r._data && isArray$1(r._data)) {
5825
5825
  if (0 === r._size[0]) return true;
5826
5826
  } else if (r.isRange) {
5827
5827
  if (r.start === r.end) return true;
@@ -5918,7 +5918,7 @@ function flatten$4(e2) {
5918
5918
  function map$1(e2, t) {
5919
5919
  return Array.prototype.map.call(e2, t);
5920
5920
  }
5921
- function forEach$1(e2, t) {
5921
+ function forEach(e2, t) {
5922
5922
  Array.prototype.forEach.call(e2, t);
5923
5923
  }
5924
5924
  function filter$1(e2, t) {
@@ -6055,8 +6055,8 @@ var name$4P = "DenseMatrix", dependencies$4P = ["Matrix"], createDenseMatrixClas
6055
6055
  if (!(this instanceof r)) throw new SyntaxError("Constructor must be called with the new operator");
6056
6056
  if (t2 && !isString$1(t2)) throw new Error("Invalid datatype: " + t2);
6057
6057
  if (isMatrix(e3)) "DenseMatrix" === e3.type ? (this._data = clone$3(e3._data), this._size = clone$3(e3._size), this._datatype = t2 || e3._datatype) : (this._data = e3.toArray(), this._size = e3.size(), this._datatype = t2 || e3._datatype);
6058
- else if (e3 && isArray$1$1(e3.data) && isArray$1$1(e3.size)) this._data = e3.data, this._size = e3.size, validate(this._data, this._size), this._datatype = t2 || e3.datatype;
6059
- else if (isArray$1$1(e3)) this._data = s(e3), this._size = arraySize(this._data), validate(this._data, this._size), this._datatype = t2;
6058
+ else if (e3 && isArray$1(e3.data) && isArray$1(e3.size)) this._data = e3.data, this._size = e3.size, validate(this._data, this._size), this._datatype = t2 || e3.datatype;
6059
+ else if (isArray$1(e3)) this._data = s(e3), this._size = arraySize(this._data), validate(this._data, this._size), this._datatype = t2;
6060
6060
  else {
6061
6061
  if (e3) throw new TypeError("Unsupported type of data (" + typeOf(e3) + ")");
6062
6062
  this._data = [], this._size = [0], this._datatype = t2;
@@ -6080,7 +6080,7 @@ var name$4P = "DenseMatrix", dependencies$4P = ["Matrix"], createDenseMatrixClas
6080
6080
  }
6081
6081
  function a(e3, t2, r2) {
6082
6082
  if (0 === t2.length) {
6083
- for (var n3 = e3._data; isArray$1$1(n3); ) n3 = n3[0];
6083
+ for (var n3 = e3._data; isArray$1(n3); ) n3 = n3[0];
6084
6084
  return n3;
6085
6085
  }
6086
6086
  return e3._size = t2.slice(0), e3._data = resize(e3._data, e3._size, r2), e3;
@@ -6091,7 +6091,7 @@ var name$4P = "DenseMatrix", dependencies$4P = ["Matrix"], createDenseMatrixClas
6091
6091
  i2 && a(e3, n3, r2);
6092
6092
  }
6093
6093
  function s(e3) {
6094
- return isMatrix(e3) ? s(e3.valueOf()) : isArray$1$1(e3) ? e3.map(s) : e3;
6094
+ return isMatrix(e3) ? s(e3.valueOf()) : isArray$1(e3) ? e3.map(s) : e3;
6095
6095
  }
6096
6096
  return r.prototype = new t(), r.prototype.createDenseMatrix = function(e3, t2) {
6097
6097
  return new r(e3, t2);
@@ -6151,7 +6151,7 @@ var name$4P = "DenseMatrix", dependencies$4P = ["Matrix"], createDenseMatrixClas
6151
6151
  }, r.prototype.get = function(e3) {
6152
6152
  return get$1(this._data, e3);
6153
6153
  }, r.prototype.set = function(e3, t2, r2) {
6154
- if (!isArray$1$1(e3)) throw new TypeError("Array expected");
6154
+ if (!isArray$1(e3)) throw new TypeError("Array expected");
6155
6155
  if (e3.length < this._size.length) throw new DimensionError(e3.length, this._size.length, "<");
6156
6156
  var n3, i2, a2, s2 = e3.map(function(e4) {
6157
6157
  return e4 + 1;
@@ -6205,7 +6205,7 @@ var name$4P = "DenseMatrix", dependencies$4P = ["Matrix"], createDenseMatrixClas
6205
6205
  });
6206
6206
  }, r.prototype[Symbol.iterator] = function* () {
6207
6207
  var e3 = function* (t2, r2) {
6208
- if (isArray$1$1(t2)) for (var n3 = 0; n3 < t2.length; n3++) yield* e3(t2[n3], r2.concat(n3));
6208
+ if (isArray$1(t2)) for (var n3 = 0; n3 < t2.length; n3++) yield* e3(t2[n3], r2.concat(n3));
6209
6209
  else yield { value: t2, index: r2 };
6210
6210
  };
6211
6211
  yield* e3(this._data, []);
@@ -6240,7 +6240,7 @@ var name$4P = "DenseMatrix", dependencies$4P = ["Matrix"], createDenseMatrixClas
6240
6240
  for (var t2 = e3 > 0 ? e3 : 0, n3 = e3 < 0 ? -e3 : 0, i2 = this._size[0], a2 = this._size[1], o2 = Math.min(i2 - n3, a2 - t2), s2 = [], u = 0; u < o2; u++) s2[u] = this._data[u + n3][u + t2];
6241
6241
  return new r({ data: s2, size: [o2], datatype: this._datatype });
6242
6242
  }, r.diagonal = function(e3, t2, n3, i2) {
6243
- if (!isArray$1$1(e3)) throw new TypeError("Array expected, size parameter");
6243
+ if (!isArray$1(e3)) throw new TypeError("Array expected, size parameter");
6244
6244
  if (2 !== e3.length) throw new Error("Only two dimensions matrix are supported");
6245
6245
  if (e3 = e3.map(function(e4) {
6246
6246
  if (isBigNumber(e4) && (e4 = e4.toNumber()), !isNumber$1(e4) || !isInteger(e4) || e4 < 1) throw new Error("Size values must be positive integers");
@@ -6249,7 +6249,7 @@ var name$4P = "DenseMatrix", dependencies$4P = ["Matrix"], createDenseMatrixClas
6249
6249
  if (isBigNumber(n3) && (n3 = n3.toNumber()), !isNumber$1(n3) || !isInteger(n3)) throw new TypeError("The parameter k must be an integer number");
6250
6250
  } else n3 = 0;
6251
6251
  var a2, o2 = n3 > 0 ? n3 : 0, s2 = n3 < 0 ? -n3 : 0, u = e3[0], c2 = e3[1], l = Math.min(u - s2, c2 - o2);
6252
- if (isArray$1$1(t2)) {
6252
+ if (isArray$1(t2)) {
6253
6253
  if (t2.length !== l) throw new Error("Invalid value array length");
6254
6254
  a2 = function(e4) {
6255
6255
  return t2[e4];
@@ -6643,8 +6643,8 @@ var name$4E = "SparseMatrix", dependencies$4E = ["typed", "equalScalar", "Matrix
6643
6643
  if (isMatrix(e3)) !function(e4, t3, r2) {
6644
6644
  "SparseMatrix" === t3.type ? (e4._values = t3._values ? clone$3(t3._values) : void 0, e4._index = clone$3(t3._index), e4._ptr = clone$3(t3._ptr), e4._size = clone$3(t3._size), e4._datatype = r2 || t3._datatype) : a(e4, t3.valueOf(), r2 || t3._datatype);
6645
6645
  }(this, e3, t2);
6646
- else if (e3 && isArray$1$1(e3.index) && isArray$1$1(e3.ptr) && isArray$1$1(e3.size)) this._values = e3.values, this._index = e3.index, this._ptr = e3.ptr, this._size = e3.size, this._datatype = t2 || e3.datatype;
6647
- else if (isArray$1$1(e3)) a(this, e3, t2);
6646
+ else if (e3 && isArray$1(e3.index) && isArray$1(e3.ptr) && isArray$1(e3.size)) this._values = e3.values, this._index = e3.index, this._ptr = e3.ptr, this._size = e3.size, this._datatype = t2 || e3.datatype;
6647
+ else if (isArray$1(e3)) a(this, e3, t2);
6648
6648
  else {
6649
6649
  if (e3) throw new TypeError("Unsupported type of data (" + typeOf(e3) + ")");
6650
6650
  this._values = [], this._index = [], this._ptr = [0], this._size = [0, 0], this._datatype = t2;
@@ -6659,7 +6659,7 @@ var name$4E = "SparseMatrix", dependencies$4E = ["typed", "equalScalar", "Matrix
6659
6659
  e3._ptr.push(e3._index.length);
6660
6660
  for (var l = 0; l < a2; l++) {
6661
6661
  var f2 = n3[l];
6662
- if (isArray$1$1(f2)) {
6662
+ if (isArray$1(f2)) {
6663
6663
  if (0 === c3 && o2 < f2.length && (o2 = f2.length), c3 < f2.length) {
6664
6664
  var p2 = f2[c3];
6665
6665
  s2(p2, u2) || (e3._values.push(p2), e3._index.push(l));
@@ -6784,7 +6784,7 @@ var name$4E = "SparseMatrix", dependencies$4E = ["typed", "equalScalar", "Matrix
6784
6784
  throw new SyntaxError("Wrong number of arguments");
6785
6785
  }
6786
6786
  }, i.prototype.get = function(e3) {
6787
- if (!isArray$1$1(e3)) throw new TypeError("Array expected");
6787
+ if (!isArray$1(e3)) throw new TypeError("Array expected");
6788
6788
  if (e3.length !== this._size.length) throw new DimensionError(e3.length, this._size.length);
6789
6789
  if (!this._values) throw new Error("Cannot invoke get on a Pattern only matrix");
6790
6790
  var t2 = e3[0], r2 = e3[1];
@@ -6792,7 +6792,7 @@ var name$4E = "SparseMatrix", dependencies$4E = ["typed", "equalScalar", "Matrix
6792
6792
  var n3 = o(t2, this._ptr[r2], this._ptr[r2 + 1], this._index);
6793
6793
  return n3 < this._ptr[r2 + 1] && this._index[n3] === t2 ? this._values[n3] : 0;
6794
6794
  }, i.prototype.set = function(e3, n3, i2) {
6795
- if (!isArray$1$1(e3)) throw new TypeError("Array expected");
6795
+ if (!isArray$1(e3)) throw new TypeError("Array expected");
6796
6796
  if (e3.length !== this._size.length) throw new DimensionError(e3.length, this._size.length);
6797
6797
  if (!this._values) throw new Error("Cannot invoke set on a Pattern only matrix");
6798
6798
  var a2 = e3[0], c3 = e3[1], l = this._size[0], f2 = this._size[1], p2 = r, m2 = 0;
@@ -6810,7 +6810,7 @@ var name$4E = "SparseMatrix", dependencies$4E = ["typed", "equalScalar", "Matrix
6810
6810
  if (!isNumber$1(e4) || !isInteger(e4) || e4 < 0) throw new TypeError("Invalid size, must contain positive integers (size: " + format(n3) + ")");
6811
6811
  }), u(r2 ? this.clone() : this, n3[0], n3[1], t2);
6812
6812
  }, i.prototype.reshape = function(e3, t2) {
6813
- if (!isArray$1$1(e3)) throw new TypeError("Array expected");
6813
+ if (!isArray$1(e3)) throw new TypeError("Array expected");
6814
6814
  if (2 !== e3.length) throw new Error("Sparse matrices can only be reshaped in two dimensions");
6815
6815
  e3.forEach(function(t3) {
6816
6816
  if (!isNumber$1(t3) || !isInteger(t3) || t3 <= -2 || 0 === t3) throw new TypeError("Invalid size, must contain positive integers or -1 (size: " + format(e3) + ")");
@@ -6917,7 +6917,7 @@ var name$4E = "SparseMatrix", dependencies$4E = ["typed", "equalScalar", "Matrix
6917
6917
  }, i.fromJSON = function(e3) {
6918
6918
  return new i(e3);
6919
6919
  }, i.diagonal = function(e3, n3, a2, o2, s2) {
6920
- if (!isArray$1$1(e3)) throw new TypeError("Array expected, size parameter");
6920
+ if (!isArray$1(e3)) throw new TypeError("Array expected, size parameter");
6921
6921
  if (2 !== e3.length) throw new Error("Only two dimensions matrix are supported");
6922
6922
  if (e3 = e3.map(function(e4) {
6923
6923
  if (isBigNumber(e4) && (e4 = e4.toNumber()), !isNumber$1(e4) || !isInteger(e4) || e4 < 1) throw new Error("Size values must be positive integers");
@@ -6928,7 +6928,7 @@ var name$4E = "SparseMatrix", dependencies$4E = ["typed", "equalScalar", "Matrix
6928
6928
  var u2 = r, c3 = 0;
6929
6929
  isString$1(s2) && (u2 = t.find(r, [s2, s2]) || r, c3 = t.convert(0, s2));
6930
6930
  var l, f2 = a2 > 0 ? a2 : 0, p2 = a2 < 0 ? -a2 : 0, m2 = e3[0], d2 = e3[1], h = Math.min(m2 - p2, d2 - f2);
6931
- if (isArray$1$1(n3)) {
6931
+ if (isArray$1(n3)) {
6932
6932
  if (n3.length !== h) throw new Error("Invalid value array length");
6933
6933
  l = function(e4) {
6934
6934
  return n3[e4];
@@ -7611,7 +7611,7 @@ var name$47 = "matrixAlgorithmSuite", dependencies$47 = ["typed", "matrix"], cre
7611
7611
  var u = e3.scalar || "any";
7612
7612
  (e3.Ds || e3.Ss) && (o ? (a["DenseMatrix," + u] = (e4, t2) => i(e4, t2, o, false), a[u + ", DenseMatrix"] = (e4, t2) => i(t2, e4, o, true), a["Array," + u] = (e4, t2) => i(r(e4), t2, o, false).valueOf(), a[u + ", Array"] = (e4, t2) => i(r(t2), e4, o, true).valueOf()) : (a["DenseMatrix," + u] = t.referToSelf((e4) => (t2, r2) => i(t2, r2, e4, false)), a[u + ", DenseMatrix"] = t.referToSelf((e4) => (t2, r2) => i(r2, t2, e4, true)), a["Array," + u] = t.referToSelf((e4) => (t2, n3) => i(r(t2), n3, e4, false).valueOf()), a[u + ", Array"] = t.referToSelf((e4) => (t2, n3) => i(r(n3), t2, e4, true).valueOf())));
7613
7613
  var c2 = void 0 !== e3.sS ? e3.sS : e3.Ss;
7614
- return o ? (e3.Ss && (a["SparseMatrix," + u] = (t2, r2) => e3.Ss(t2, r2, o, false)), c2 && (a[u + ", SparseMatrix"] = (e4, t2) => c2(t2, e4, o, true))) : (e3.Ss && (a["SparseMatrix," + u] = t.referToSelf((t2) => (r2, n3) => e3.Ss(r2, n3, t2, false))), c2 && (a[u + ", SparseMatrix"] = t.referToSelf((e4) => (t2, r2) => c2(r2, t2, e4, true)))), o && o.signatures && extend$2$1(a, o.signatures), a;
7614
+ return o ? (e3.Ss && (a["SparseMatrix," + u] = (t2, r2) => e3.Ss(t2, r2, o, false)), c2 && (a[u + ", SparseMatrix"] = (e4, t2) => c2(t2, e4, o, true))) : (e3.Ss && (a["SparseMatrix," + u] = t.referToSelf((t2) => (r2, n3) => e3.Ss(r2, n3, t2, false))), c2 && (a[u + ", SparseMatrix"] = t.referToSelf((e4) => (t2, r2) => c2(r2, t2, e4, true)))), o && o.signatures && extend$2(a, o.signatures), a;
7615
7615
  };
7616
7616
  }), name$46 = "mod", dependencies$46 = ["typed", "config", "round", "matrix", "equalScalar", "zeros", "DenseMatrix", "concat"], createMod = factory(name$46, dependencies$46, (e2) => {
7617
7617
  var { typed: t, config: r, round: n, matrix: i, equalScalar: a, zeros: o, DenseMatrix: s, concat: u } = e2, c2 = createFloor({ typed: t, config: r, round: n, matrix: i, equalScalar: a, zeros: o, DenseMatrix: s }), l = createMatAlgo02xDS0({ typed: t, equalScalar: a }), f2 = createMatAlgo03xDSf({ typed: t }), p2 = createMatAlgo05xSfSf({ typed: t, equalScalar: a }), m2 = createMatAlgo11xS0s({ typed: t, equalScalar: a }), d2 = createMatAlgo12xSfs({ typed: t, DenseMatrix: s }), h = createMatrixAlgorithmSuite({ typed: t, matrix: i, concat: u });
@@ -9419,7 +9419,7 @@ function createSolveValidation(e2) {
9419
9419
  }
9420
9420
  throw new RangeError("Dimension mismatch. The right side has to be either 1- or 2-dimensional vector.");
9421
9421
  }
9422
- if (isArray$1$1(r)) {
9422
+ if (isArray$1(r)) {
9423
9423
  var y2 = arraySize(r);
9424
9424
  if (1 === y2.length) {
9425
9425
  if (y2[0] !== a) throw new RangeError("Dimension mismatch. Matrix columns must match vector length.");
@@ -9960,10 +9960,10 @@ var createCompareText = factory(name$2G, dependencies$2G, (e2) => {
9960
9960
  function n(e3, t2) {
9961
9961
  if (!(this instanceof n)) throw new SyntaxError("Constructor must be called with the new operator");
9962
9962
  if (t2 && !isString$1(t2)) throw new Error("Invalid datatype: " + t2);
9963
- if (isMatrix(e3) || isArray$1$1(e3)) {
9963
+ if (isMatrix(e3) || isArray$1(e3)) {
9964
9964
  var i = new r(e3, t2);
9965
9965
  this._data = i._data, this._size = i._size, this._datatype = i._datatype, this._min = null, this._max = null;
9966
- } else if (e3 && isArray$1$1(e3.data) && isArray$1$1(e3.size)) this._data = e3.data, this._size = e3.size, this._datatype = e3.datatype, this._min = void 0 !== e3.min ? e3.min : null, this._max = void 0 !== e3.max ? e3.max : null;
9966
+ } else if (e3 && isArray$1(e3.data) && isArray$1(e3.size)) this._data = e3.data, this._size = e3.size, this._datatype = e3.datatype, this._min = void 0 !== e3.min ? e3.min : null, this._max = void 0 !== e3.max ? e3.max : null;
9967
9967
  else {
9968
9968
  if (e3) throw new TypeError("Unsupported type of data (" + typeOf(e3) + ")");
9969
9969
  this._data = [], this._size = [0], this._datatype = t2, this._min = null, this._max = null;
@@ -10017,7 +10017,7 @@ var createCompareText = factory(name$2G, dependencies$2G, (e2) => {
10017
10017
  if (!(this instanceof n)) throw new SyntaxError("Constructor must be called with the new operator");
10018
10018
  this._dimensions = [], this._sourceSize = [], this._isScalar = true;
10019
10019
  for (var t2 = 0, a = arguments.length; t2 < a; t2++) {
10020
- var o = arguments[t2], s = isArray$1$1(o), u = isMatrix(o), c2 = null;
10020
+ var o = arguments[t2], s = isArray$1(o), u = isMatrix(o), c2 = null;
10021
10021
  if (isRange(o)) this._dimensions.push(o), this._isScalar = false;
10022
10022
  else if (s || u) {
10023
10023
  var l = void 0;
@@ -10386,7 +10386,7 @@ var name$2p = "Unit", dependencies$2p = ["?on", "config", "addScalar", "subtract
10386
10386
  var t2 = q2[e3];
10387
10387
  return { unit: t2, prefix: t2.prefixes[""] };
10388
10388
  }
10389
- for (var r2 in q2) if (hasOwnProperty$1(q2, r2) && endsWith$1(e3, r2)) {
10389
+ for (var r2 in q2) if (hasOwnProperty$1(q2, r2) && endsWith(e3, r2)) {
10390
10390
  var n3 = q2[r2], i2 = e3.length - r2.length, a2 = e3.substring(0, i2), o2 = hasOwnProperty$1(n3.prefixes, a2) ? n3.prefixes[a2] : void 0;
10391
10391
  if (void 0 !== o2) return { unit: n3, prefix: o2 };
10392
10392
  }
@@ -11151,7 +11151,7 @@ var name$2p = "Unit", dependencies$2p = ["?on", "config", "addScalar", "subtract
11151
11151
  var { typed: t, Index: r } = e2;
11152
11152
  return t(name$1J, { "...number | string | BigNumber | Range | Array | Matrix": function(e3) {
11153
11153
  var t2 = e3.map(function(e4) {
11154
- return isBigNumber(e4) ? e4.toNumber() : isArray$1$1(e4) || isMatrix(e4) ? e4.map(function(e5) {
11154
+ return isBigNumber(e4) ? e4.toNumber() : isArray$1(e4) || isMatrix(e4) ? e4.map(function(e5) {
11155
11155
  return isBigNumber(e5) ? e5.toNumber() : e5;
11156
11156
  }) : e4;
11157
11157
  }), n = new r();
@@ -11592,7 +11592,7 @@ var name$1F = "AssignmentNode", dependencies$1F = ["subset", "?matrix", "Node"],
11592
11592
  });
11593
11593
  return function(e4, r3, i) {
11594
11594
  var a = [];
11595
- return forEach$1(n3, function(t2) {
11595
+ return forEach(n3, function(t2) {
11596
11596
  var n4 = t2.evaluate(e4, r3, i);
11597
11597
  t2.visible && a.push(n4);
11598
11598
  }), new t(a);
@@ -11842,7 +11842,7 @@ var name$1C = "ConstantNode", dependencies$1C = ["Node"], createConstantNode = f
11842
11842
  }
11843
11843
  _compile(e3, r2) {
11844
11844
  var n3 = Object.create(r2);
11845
- forEach$1(this.params, function(e4) {
11845
+ forEach(this.params, function(e4) {
11846
11846
  n3[e4] = true;
11847
11847
  });
11848
11848
  var i2 = this.expr._compile(e3, n3), a = this.name, o = this.params, s = join(this.types, ","), u = a + "(" + join(this.params, ", ") + ")";
@@ -11910,7 +11910,7 @@ var name$1C = "ConstantNode", dependencies$1C = ["Node"], createConstantNode = f
11910
11910
  a.end = true;
11911
11911
  var o = n4._compile(e3, a);
11912
11912
  return function(e4, t3, n5) {
11913
- if (!isMatrix(n5) && !isArray$1$1(n5) && !isString$1(n5)) throw new TypeError('Cannot resolve "end": context must be a Matrix, Array, or string but is ' + typeOf(n5));
11913
+ if (!isMatrix(n5) && !isArray$1(n5) && !isString$1(n5)) throw new TypeError('Cannot resolve "end": context must be a Matrix, Array, or string but is ' + typeOf(n5));
11914
11914
  var a2 = r(n5).valueOf(), s = Object.create(t3);
11915
11915
  return s.end = a2[i2], o(e4, s, n5);
11916
11916
  };
@@ -13511,7 +13511,7 @@ var name$1f = "lusolve", dependencies$1f = ["typed", "matrix", "lup", "slu", "us
13511
13511
  } });
13512
13512
  function c2(e3) {
13513
13513
  if (isMatrix(e3)) return e3;
13514
- if (isArray$1$1(e3)) return r(e3);
13514
+ if (isArray$1(e3)) return r(e3);
13515
13515
  throw new TypeError("Invalid Matrix LU decomposition");
13516
13516
  }
13517
13517
  function l(e3, t2, r2, n3, i2) {
@@ -14225,7 +14225,7 @@ var name$16 = "eigs", dependencies$16 = ["config", "typed", "matrix", "addScalar
14225
14225
  } });
14226
14226
  }), name$10 = "divide", dependencies$10 = ["typed", "matrix", "multiply", "equalScalar", "divideScalar", "inv"], createDivide = factory(name$10, dependencies$10, (e2) => {
14227
14227
  var { typed: t, matrix: r, multiply: n, equalScalar: i, divideScalar: a, inv: o } = e2, s = createMatAlgo11xS0s({ typed: t, equalScalar: i }), u = createMatAlgo14xDs({ typed: t });
14228
- return t("divide", extend$2$1({ "Array | Matrix, Array | Matrix": function(e3, t2) {
14228
+ return t("divide", extend$2({ "Array | Matrix, Array | Matrix": function(e3, t2) {
14229
14229
  return n(e3, o(t2));
14230
14230
  }, "DenseMatrix, any": function(e3, t2) {
14231
14231
  return u(e3, t2, a, false);
@@ -16368,7 +16368,7 @@ var name$l = "filter", dependencies$l = ["typed"], createFilterTransform = facto
16368
16368
  else if (a && true === a.isSet) a = a.map(function(e4) {
16369
16369
  return e4 - 1;
16370
16370
  });
16371
- else if (isArray$1$1(a) || isMatrix(a)) "boolean" !== r(a) && (a = a.map(function(e4) {
16371
+ else if (isArray$1(a) || isMatrix(a)) "boolean" !== r(a) && (a = a.map(function(e4) {
16372
16372
  return e4 - 1;
16373
16373
  }));
16374
16374
  else if (isNumber$1(a)) a--;
@@ -16695,7 +16695,7 @@ function importFactory(e2, t, r, n) {
16695
16695
  function create$1(e2, t) {
16696
16696
  var r = _extends({}, DEFAULT_CONFIG, t);
16697
16697
  if ("function" != typeof Object.create) throw new Error("ES5 not supported by this JavaScript engine. Please load the es5-shim and es5-sham library for compatibility.");
16698
- var n = mixin$1({ isNumber: isNumber$1, isComplex, isBigNumber, isBigInt, isFraction, isUnit, isString: isString$1, isArray: isArray$1$1, isMatrix, isCollection, isDenseMatrix, isSparseMatrix, isRange, isIndex, isBoolean: isBoolean$1, isResultSet, isHelp, isFunction: isFunction$2, isDate: isDate$1, isRegExp: isRegExp$1, isObject: isObject$1, isMap: isMap$1, isPartitionedMap, isObjectWrappingMap, isNull: isNull$1, isUndefined: isUndefined$1, isAccessorNode, isArrayNode, isAssignmentNode, isBlockNode, isConditionalNode, isConstantNode, isFunctionAssignmentNode, isFunctionNode, isIndexNode, isNode, isObjectNode, isOperatorNode, isParenthesisNode, isRangeNode, isRelationalNode, isSymbolNode, isChain });
16698
+ var n = mixin$1({ isNumber: isNumber$1, isComplex, isBigNumber, isBigInt, isFraction, isUnit, isString: isString$1, isArray: isArray$1, isMatrix, isCollection, isDenseMatrix, isSparseMatrix, isRange, isIndex, isBoolean: isBoolean$1, isResultSet, isHelp, isFunction: isFunction$2, isDate: isDate$1, isRegExp: isRegExp$1, isObject: isObject$1, isMap: isMap$1, isPartitionedMap, isObjectWrappingMap, isNull: isNull$1, isUndefined: isUndefined$1, isAccessorNode, isArrayNode, isAssignmentNode, isBlockNode, isConditionalNode, isConstantNode, isFunctionAssignmentNode, isFunctionNode, isIndexNode, isNode, isObjectNode, isOperatorNode, isParenthesisNode, isRangeNode, isRelationalNode, isSymbolNode, isChain });
16699
16699
  n.config = configFactory(r, n.emit), n.expression = { transform: {}, mathWithTransform: { config: n.config } };
16700
16700
  var i = [], a = [];
16701
16701
  var o = {};
@@ -18217,7 +18217,7 @@ function requireNumeric1_2_6() {
18217
18217
  }(numeric1_2_6)), numeric1_2_6;
18218
18218
  }
18219
18219
  var numeric1_2_6Exports = requireNumeric1_2_6(), numeric = getDefaultExportFromCjs$2(numeric1_2_6Exports);
18220
- function createInstance$1({ define_e: e2 = true, define_pi: t = true, define_i: r = true, pow_strict: n = true } = {}) {
18220
+ function createInstance({ define_e: e2 = true, define_pi: t = true, define_i: r = true, pow_strict: n = true } = {}) {
18221
18221
  let i = { ...all };
18222
18222
  delete i.createTau, delete i.createPhi, e2 || delete i.createE, t || delete i.createPi, r || delete i.createI;
18223
18223
  let a = create$1(i);
@@ -18227,7 +18227,7 @@ function createInstance$1({ define_e: e2 = true, define_pi: t = true, define_i:
18227
18227
  return 0 !== t2 || "number" != typeof e3 || 0 !== e3 && Number.isFinite(e3) ? o(e3, t2) : NaN;
18228
18228
  } }, { override: true }) : a.import({ pow: o }, { override: true }), a.define_e = e2, a.define_pi = t, a.define_i = r, a.pow_strict = n, a;
18229
18229
  }
18230
- var math$1 = createInstance$1();
18230
+ var math$1 = createInstance();
18231
18231
  function leaves(e2, t) {
18232
18232
  if (!Array.isArray(e2)) return [e2];
18233
18233
  var r = e2[0], n = e2.slice(1);
@@ -18269,7 +18269,7 @@ function functions_list(e2) {
18269
18269
  return functions_list(e3);
18270
18270
  }).reduce(function(e3, t2) {
18271
18271
  return e3.concat(t2);
18272
- }));
18272
+ }, []));
18273
18273
  }
18274
18274
  function functions$2(e2) {
18275
18275
  var t = functions_list(get_tree(e2));
@@ -18277,7 +18277,7 @@ function functions$2(e2) {
18277
18277
  return r === t.indexOf(e3);
18278
18278
  });
18279
18279
  }
18280
- var variables$1 = Object.freeze({ __proto__: null, variables, operators: operators$3, functions: functions$2 }), global$1 = "undefined" != typeof global ? global : "undefined" != typeof self ? self : "undefined" != typeof window ? window : {}, VERSION$1 = "1.13.6", root = "object" == typeof self && self.self === self && self || "object" == typeof global$1 && global$1.global === global$1 && global$1 || Function("return this")() || {}, ArrayProto = Array.prototype, ObjProto = Object.prototype, SymbolProto = "undefined" != typeof Symbol ? Symbol.prototype : null, push = ArrayProto.push, slice = ArrayProto.slice, toString$1 = ObjProto.toString, hasOwnProperty$2 = ObjProto.hasOwnProperty, supportsArrayBuffer = "undefined" != typeof ArrayBuffer, supportsDataView = "undefined" != typeof DataView, nativeIsArray = Array.isArray, nativeKeys = Object.keys, nativeCreate = Object.create, nativeIsView = supportsArrayBuffer && ArrayBuffer.isView, _isNaN = isNaN, _isFinite = isFinite, hasEnumBug = !{ toString: null }.propertyIsEnumerable("toString"), nonEnumerableProps = ["valueOf", "isPrototypeOf", "toString", "propertyIsEnumerable", "hasOwnProperty", "toLocaleString"], MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;
18280
+ var variables$1 = Object.freeze({ __proto__: null, variables, operators: operators$3, functions: functions$2 }), global$1 = "undefined" != typeof global ? global : "undefined" != typeof self ? self : "undefined" != typeof window ? window : {}, VERSION = "1.13.6", root = "object" == typeof self && self.self === self && self || "object" == typeof global$1 && global$1.global === global$1 && global$1 || Function("return this")() || {}, ArrayProto = Array.prototype, ObjProto = Object.prototype, SymbolProto = "undefined" != typeof Symbol ? Symbol.prototype : null, push = ArrayProto.push, slice = ArrayProto.slice, toString$1 = ObjProto.toString, hasOwnProperty$2 = ObjProto.hasOwnProperty, supportsArrayBuffer = "undefined" != typeof ArrayBuffer, supportsDataView = "undefined" != typeof DataView, nativeIsArray = Array.isArray, nativeKeys = Object.keys, nativeCreate = Object.create, nativeIsView = supportsArrayBuffer && ArrayBuffer.isView, _isNaN = isNaN, _isFinite = isFinite, hasEnumBug = !{ toString: null }.propertyIsEnumerable("toString"), nonEnumerableProps = ["valueOf", "isPrototypeOf", "toString", "propertyIsEnumerable", "hasOwnProperty", "toLocaleString"], MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;
18281
18281
  function restArguments(e2, t) {
18282
18282
  return t = null == t ? e2.length - 1 : +t, function() {
18283
18283
  for (var r = Math.max(arguments.length - t, 0), n = Array(r), i = 0; i < r; i++) n[i] = arguments[i + t];
@@ -18294,14 +18294,14 @@ function restArguments(e2, t) {
18294
18294
  return a[t] = n, e2.apply(this, a);
18295
18295
  };
18296
18296
  }
18297
- function isObject$2(e2) {
18297
+ function isObject(e2) {
18298
18298
  var t = typeof e2;
18299
18299
  return "function" === t || "object" === t && !!e2;
18300
18300
  }
18301
18301
  function isNull(e2) {
18302
18302
  return null === e2;
18303
18303
  }
18304
- function isUndefined$2(e2) {
18304
+ function isUndefined(e2) {
18305
18305
  return void 0 === e2;
18306
18306
  }
18307
18307
  function isBoolean(e2) {
@@ -18316,13 +18316,13 @@ function tagTester(e2) {
18316
18316
  return toString$1.call(e3) === t;
18317
18317
  };
18318
18318
  }
18319
- var isString$2 = tagTester("String"), isNumber$2 = tagTester("Number"), isDate$2 = tagTester("Date"), isRegExp = tagTester("RegExp"), isError$1 = tagTester("Error"), isSymbol = tagTester("Symbol"), isArrayBuffer$1 = tagTester("ArrayBuffer"), isFunction$1 = tagTester("Function"), nodelist = root.document && root.document.childNodes;
18320
- "function" != typeof /./ && "object" != typeof Int8Array && "function" != typeof nodelist && (isFunction$1 = function(e2) {
18319
+ var isString = tagTester("String"), isNumber = tagTester("Number"), isDate = tagTester("Date"), isRegExp = tagTester("RegExp"), isError$1 = tagTester("Error"), isSymbol = tagTester("Symbol"), isArrayBuffer = tagTester("ArrayBuffer"), isFunction = tagTester("Function"), nodelist = root.document && root.document.childNodes;
18320
+ "function" != typeof /./ && "object" != typeof Int8Array && "function" != typeof nodelist && (isFunction = function(e2) {
18321
18321
  return "function" == typeof e2 || false;
18322
18322
  });
18323
- var isFunction$1$1 = isFunction$1, hasObjectTag = tagTester("Object"), hasStringTagBug = supportsDataView && hasObjectTag(new DataView(new ArrayBuffer(8))), isIE11 = "undefined" != typeof Map && hasObjectTag(/* @__PURE__ */ new Map()), isDataView = tagTester("DataView");
18323
+ var isFunction$1 = isFunction, hasObjectTag = tagTester("Object"), hasStringTagBug = supportsDataView && hasObjectTag(new DataView(new ArrayBuffer(8))), isIE11 = "undefined" != typeof Map && hasObjectTag(/* @__PURE__ */ new Map()), isDataView = tagTester("DataView");
18324
18324
  function ie10IsDataView(e2) {
18325
- return null != e2 && isFunction$1$1(e2.getInt8) && isArrayBuffer$1(e2.buffer);
18325
+ return null != e2 && isFunction$1(e2.getInt8) && isArrayBuffer(e2.buffer);
18326
18326
  }
18327
18327
  var isDataView$1 = hasStringTagBug ? ie10IsDataView : isDataView, isArray$2 = nativeIsArray || tagTester("Array");
18328
18328
  function has$1(e2, t) {
@@ -18339,7 +18339,7 @@ function isFinite$1(e2) {
18339
18339
  return !isSymbol(e2) && _isFinite(e2) && !isNaN(parseFloat(e2));
18340
18340
  }
18341
18341
  function isNaN$1(e2) {
18342
- return isNumber$2(e2) && _isNaN(e2);
18342
+ return isNumber(e2) && _isNaN(e2);
18343
18343
  }
18344
18344
  function constant(e2) {
18345
18345
  return function() {
@@ -18358,10 +18358,10 @@ function shallowProperty(e2) {
18358
18358
  };
18359
18359
  }
18360
18360
  var getByteLength = shallowProperty("byteLength"), isBufferLike = createSizePropertyCheck(getByteLength), typedArrayPattern = /\[object ((I|Ui)nt(8|16|32)|Float(32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\]/;
18361
- function isTypedArray$1(e2) {
18361
+ function isTypedArray(e2) {
18362
18362
  return nativeIsView ? nativeIsView(e2) && !isDataView$1(e2) : isBufferLike(e2) && typedArrayPattern.test(toString$1.call(e2));
18363
18363
  }
18364
- var isTypedArray$1$1 = supportsArrayBuffer ? isTypedArray$1 : constant(false), getLength = shallowProperty("length");
18364
+ var isTypedArray$1 = supportsArrayBuffer ? isTypedArray : constant(false), getLength = shallowProperty("length");
18365
18365
  function emulatedSet(e2) {
18366
18366
  for (var t = {}, r = e2.length, n = 0; n < r; ++n) t[e2[n]] = true;
18367
18367
  return { contains: function(e3) {
@@ -18372,11 +18372,11 @@ function emulatedSet(e2) {
18372
18372
  }
18373
18373
  function collectNonEnumProps(e2, t) {
18374
18374
  t = emulatedSet(t);
18375
- var r = nonEnumerableProps.length, n = e2.constructor, i = isFunction$1$1(n) && n.prototype || ObjProto, a = "constructor";
18375
+ var r = nonEnumerableProps.length, n = e2.constructor, i = isFunction$1(n) && n.prototype || ObjProto, a = "constructor";
18376
18376
  for (has$1(e2, a) && !t.contains(a) && t.push(a); r--; ) (a = nonEnumerableProps[r]) in e2 && e2[a] !== i[a] && !t.contains(a) && t.push(a);
18377
18377
  }
18378
18378
  function keys(e2) {
18379
- if (!isObject$2(e2)) return [];
18379
+ if (!isObject(e2)) return [];
18380
18380
  if (nativeKeys) return nativeKeys(e2);
18381
18381
  var t = [];
18382
18382
  for (var r in e2) has$1(e2, r) && t.push(r);
@@ -18385,7 +18385,7 @@ function keys(e2) {
18385
18385
  function isEmpty(e2) {
18386
18386
  if (null == e2) return true;
18387
18387
  var t = getLength(e2);
18388
- return "number" == typeof t && (isArray$2(e2) || isString$2(e2) || isArguments$1(e2)) ? 0 === t : 0 === getLength(keys(e2));
18388
+ return "number" == typeof t && (isArray$2(e2) || isString(e2) || isArguments$1(e2)) ? 0 === t : 0 === getLength(keys(e2));
18389
18389
  }
18390
18390
  function isMatch(e2, t) {
18391
18391
  var r = keys(t), n = r.length;
@@ -18402,7 +18402,7 @@ function _$1(e2) {
18402
18402
  function toBufferView(e2) {
18403
18403
  return new Uint8Array(e2.buffer || e2, e2.byteOffset || 0, getByteLength(e2));
18404
18404
  }
18405
- _$1.VERSION = VERSION$1, _$1.prototype.value = function() {
18405
+ _$1.VERSION = VERSION, _$1.prototype.value = function() {
18406
18406
  return this._wrapped;
18407
18407
  }, _$1.prototype.valueOf = _$1.prototype.toJSON = _$1.prototype.value, _$1.prototype.toString = function() {
18408
18408
  return String(this._wrapped);
@@ -18439,7 +18439,7 @@ function deepEq(e2, t, r, n) {
18439
18439
  return deepEq(toBufferView(e2), toBufferView(t), r, n);
18440
18440
  }
18441
18441
  var a = "[object Array]" === i;
18442
- if (!a && isTypedArray$1$1(e2)) {
18442
+ if (!a && isTypedArray$1(e2)) {
18443
18443
  if (getByteLength(e2) !== getByteLength(t)) return false;
18444
18444
  if (e2.buffer === t.buffer && e2.byteOffset === t.byteOffset) return true;
18445
18445
  a = true;
@@ -18447,7 +18447,7 @@ function deepEq(e2, t, r, n) {
18447
18447
  if (!a) {
18448
18448
  if ("object" != typeof e2 || "object" != typeof t) return false;
18449
18449
  var o = e2.constructor, s = t.constructor;
18450
- if (o !== s && !(isFunction$1$1(o) && o instanceof o && isFunction$1$1(s) && s instanceof s) && "constructor" in e2 && "constructor" in t) return false;
18450
+ if (o !== s && !(isFunction$1(o) && o instanceof o && isFunction$1(s) && s instanceof s) && "constructor" in e2 && "constructor" in t) return false;
18451
18451
  }
18452
18452
  n = n || [];
18453
18453
  for (var u = (r = r || []).length; u--; ) if (r[u] === e2) return n[u] === t;
@@ -18465,7 +18465,7 @@ function isEqual(e2, t) {
18465
18465
  return eq(e2, t);
18466
18466
  }
18467
18467
  function allKeys(e2) {
18468
- if (!isObject$2(e2)) return [];
18468
+ if (!isObject(e2)) return [];
18469
18469
  var t = [];
18470
18470
  for (var r in e2) t.push(r);
18471
18471
  return hasEnumBug && collectNonEnumProps(e2, t), t;
@@ -18476,8 +18476,8 @@ function ie11fingerprint(e2) {
18476
18476
  if (null == r) return false;
18477
18477
  var n = allKeys(r);
18478
18478
  if (getLength(n)) return false;
18479
- for (var i = 0; i < t; i++) if (!isFunction$1$1(r[e2[i]])) return false;
18480
- return e2 !== weakMapMethods || !isFunction$1$1(r[forEachName]);
18479
+ for (var i = 0; i < t; i++) if (!isFunction$1(r[e2[i]])) return false;
18480
+ return e2 !== weakMapMethods || !isFunction$1(r[forEachName]);
18481
18481
  };
18482
18482
  }
18483
18483
  var forEachName = "forEach", hasName = "has", commonInit = ["clear", "delete"], mapTail = ["get", hasName, "set"], mapMethods = commonInit.concat(forEachName, mapTail), weakMapMethods = commonInit.concat(mapTail), setMethods = ["add"].concat(commonInit, forEachName, hasName), isMap = isIE11 ? ie11fingerprint(mapMethods) : tagTester("Map"), isWeakMap = isIE11 ? ie11fingerprint(weakMapMethods) : tagTester("WeakMap"), isSet = isIE11 ? ie11fingerprint(setMethods) : tagTester("Set"), isWeakSet = tagTester("WeakSet");
@@ -18495,7 +18495,7 @@ function invert(e2) {
18495
18495
  }
18496
18496
  function functions$1(e2) {
18497
18497
  var t = [];
18498
- for (var r in e2) isFunction$1$1(e2[r]) && t.push(r);
18498
+ for (var r in e2) isFunction$1(e2[r]) && t.push(r);
18499
18499
  return t.sort();
18500
18500
  }
18501
18501
  function createAssigner(e2, t) {
@@ -18509,13 +18509,13 @@ function createAssigner(e2, t) {
18509
18509
  return r;
18510
18510
  };
18511
18511
  }
18512
- var extend$1$1 = createAssigner(allKeys), extendOwn = createAssigner(keys), defaults$4 = createAssigner(allKeys, true);
18512
+ var extend$1$1 = createAssigner(allKeys), extendOwn = createAssigner(keys), defaults = createAssigner(allKeys, true);
18513
18513
  function ctor() {
18514
18514
  return function() {
18515
18515
  };
18516
18516
  }
18517
18517
  function baseCreate(e2) {
18518
- if (!isObject$2(e2)) return {};
18518
+ if (!isObject(e2)) return {};
18519
18519
  if (nativeCreate) return nativeCreate(e2);
18520
18520
  var t = ctor();
18521
18521
  t.prototype = e2;
@@ -18527,7 +18527,7 @@ function create(e2, t) {
18527
18527
  return t && extendOwn(r, t), r;
18528
18528
  }
18529
18529
  function clone(e2) {
18530
- return isObject$2(e2) ? isArray$2(e2) ? e2.slice() : extend$1$1({}, e2) : e2;
18530
+ return isObject(e2) ? isArray$2(e2) ? e2.slice() : extend$1$1({}, e2) : e2;
18531
18531
  }
18532
18532
  function tap(e2, t) {
18533
18533
  return t(e2), e2;
@@ -18547,7 +18547,7 @@ function deepGet(e2, t) {
18547
18547
  }
18548
18548
  function get(e2, t, r) {
18549
18549
  var n = deepGet(e2, toPath(t));
18550
- return isUndefined$2(n) ? r : n;
18550
+ return isUndefined(n) ? r : n;
18551
18551
  }
18552
18552
  function has(e2, t) {
18553
18553
  for (var r = (t = toPath(t)).length, n = 0; n < r; n++) {
@@ -18591,7 +18591,7 @@ function optimizeCb(e2, t, r) {
18591
18591
  };
18592
18592
  }
18593
18593
  function baseIteratee(e2, t, r) {
18594
- return null == e2 ? identity$1 : isFunction$1$1(e2) ? optimizeCb(e2, t, r) : isObject$2(e2) && !isArray$2(e2) ? matcher(e2) : property(e2);
18594
+ return null == e2 ? identity$1 : isFunction$1(e2) ? optimizeCb(e2, t, r) : isObject(e2) && !isArray$2(e2) ? matcher(e2) : property(e2);
18595
18595
  }
18596
18596
  function iteratee(e2, t) {
18597
18597
  return baseIteratee(e2, t, 1 / 0);
@@ -18641,7 +18641,7 @@ function escapeChar(e2) {
18641
18641
  }
18642
18642
  var bareIdentifier = /^\s*(\w|\$)+\s*$/;
18643
18643
  function template(e2, t, r) {
18644
- !t && r && (t = r), t = defaults$4({}, t, _$1.templateSettings);
18644
+ !t && r && (t = r), t = defaults({}, t, _$1.templateSettings);
18645
18645
  var n = RegExp([(t.escape || noMatch).source, (t.interpolate || noMatch).source, (t.evaluate || noMatch).source].join("|") + "|$", "g"), i = 0, a = "__p+='";
18646
18646
  e2.replace(n, function(t2, r2, n3, o2, s2) {
18647
18647
  return a += e2.slice(i, s2).replace(escapeRegExp, escapeChar), i = s2 + t2.length, r2 ? a += "'+\n((__t=(" + r2 + "))==null?'':_.escape(__t))+\n'" : n3 ? a += "'+\n((__t=(" + n3 + "))==null?'':__t)+\n'" : o2 && (a += "';\n" + o2 + "\n__p+='"), t2;
@@ -18663,10 +18663,10 @@ function template(e2, t, r) {
18663
18663
  }
18664
18664
  function result(e2, t, r) {
18665
18665
  var n = (t = toPath(t)).length;
18666
- if (!n) return isFunction$1$1(r) ? r.call(e2) : r;
18666
+ if (!n) return isFunction$1(r) ? r.call(e2) : r;
18667
18667
  for (var i = 0; i < n; i++) {
18668
18668
  var a = null == e2 ? void 0 : e2[t[i]];
18669
- void 0 === a && (a = r, i = n), e2 = isFunction$1$1(a) ? a.call(e2) : a;
18669
+ void 0 === a && (a = r, i = n), e2 = isFunction$1(a) ? a.call(e2) : a;
18670
18670
  }
18671
18671
  return e2;
18672
18672
  }
@@ -18682,7 +18682,7 @@ function chain$1(e2) {
18682
18682
  function executeBound(e2, t, r, n, i) {
18683
18683
  if (!(n instanceof t)) return e2.apply(r, i);
18684
18684
  var a = baseCreate(e2.prototype), o = e2.apply(a, i);
18685
- return isObject$2(o) ? o : a;
18685
+ return isObject(o) ? o : a;
18686
18686
  }
18687
18687
  var partial = restArguments(function(e2, t) {
18688
18688
  var r = partial.placeholder, n = function() {
@@ -18694,7 +18694,7 @@ var partial = restArguments(function(e2, t) {
18694
18694
  });
18695
18695
  partial.placeholder = _$1;
18696
18696
  var bind = restArguments(function(e2, t, r) {
18697
- if (!isFunction$1$1(e2)) throw new TypeError("Bind must be called on a function");
18697
+ if (!isFunction$1(e2)) throw new TypeError("Bind must be called on a function");
18698
18698
  var n = restArguments(function(i) {
18699
18699
  return executeBound(e2, n, t, this, r.concat(i));
18700
18700
  });
@@ -18884,7 +18884,7 @@ function contains$1(e2, t, r, n) {
18884
18884
  }
18885
18885
  var invoke = restArguments(function(e2, t, r) {
18886
18886
  var n, i;
18887
- return isFunction$1$1(t) ? i = t : (t = toPath(t), n = t.slice(0, -1), t = t[t.length - 1]), map(e2, function(e3) {
18887
+ return isFunction$1(t) ? i = t : (t = toPath(t), n = t.slice(0, -1), t = t[t.length - 1]), map(e2, function(e3) {
18888
18888
  var a = i;
18889
18889
  if (!a) {
18890
18890
  if (n && n.length && (e3 = deepGet(e3, n)), null == e3) return;
@@ -18916,12 +18916,12 @@ function min(e2, t, r) {
18916
18916
  return a;
18917
18917
  }
18918
18918
  var reStrSymbol = /[^\ud800-\udfff]|[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udfff]/g;
18919
- function toArray$1(e2) {
18920
- return e2 ? isArray$2(e2) ? slice.call(e2) : isString$2(e2) ? e2.match(reStrSymbol) : isArrayLike(e2) ? map(e2, identity$1) : values(e2) : [];
18919
+ function toArray(e2) {
18920
+ return e2 ? isArray$2(e2) ? slice.call(e2) : isString(e2) ? e2.match(reStrSymbol) : isArrayLike(e2) ? map(e2, identity$1) : values(e2) : [];
18921
18921
  }
18922
18922
  function sample(e2, t, r) {
18923
18923
  if (null == t || r) return isArrayLike(e2) || (e2 = values(e2)), e2[random(e2.length - 1)];
18924
- var n = toArray$1(e2), i = getLength(n);
18924
+ var n = toArray(e2), i = getLength(n);
18925
18925
  t = Math.max(Math.min(t, i), 0);
18926
18926
  for (var a = i - 1, o = 0; o < t; o++) {
18927
18927
  var s = random(o, a), u = n[o];
@@ -18972,7 +18972,7 @@ function keyInObj(e2, t, r) {
18972
18972
  var pick$1 = restArguments(function(e2, t) {
18973
18973
  var r = {}, n = t[0];
18974
18974
  if (null == e2) return r;
18975
- isFunction$1$1(n) ? (t.length > 1 && (n = optimizeCb(n, t[1])), t = allKeys(e2)) : (n = keyInObj, t = flatten$3(t, false, false), e2 = Object(e2));
18975
+ isFunction$1(n) ? (t.length > 1 && (n = optimizeCb(n, t[1])), t = allKeys(e2)) : (n = keyInObj, t = flatten$3(t, false, false), e2 = Object(e2));
18976
18976
  for (var i = 0, a = t.length; i < a; i++) {
18977
18977
  var o = t[i], s = e2[o];
18978
18978
  n(s, o, e2) && (r[o] = s);
@@ -18980,7 +18980,7 @@ var pick$1 = restArguments(function(e2, t) {
18980
18980
  return r;
18981
18981
  }), omit$1 = restArguments(function(e2, t) {
18982
18982
  var r, n = t[0];
18983
- return isFunction$1$1(n) ? (n = negate(n), t.length > 1 && (r = t[1])) : (t = map(flatten$3(t, false, false), String), n = function(e3, r2) {
18983
+ return isFunction$1(n) ? (n = negate(n), t.length > 1 && (r = t[1])) : (t = map(flatten$3(t, false, false), String), n = function(e3, r2) {
18984
18984
  return !contains$1(t, r2);
18985
18985
  }), pick$1(e2, n, r);
18986
18986
  });
@@ -19075,9 +19075,43 @@ each(["pop", "push", "reverse", "shift", "sort", "splice", "unshift"], function(
19075
19075
  return null != e3 && (e3 = t.apply(e3, arguments)), chainResult(this, e3);
19076
19076
  };
19077
19077
  });
19078
- var allExports = Object.freeze({ __proto__: null, VERSION: VERSION$1, restArguments, isObject: isObject$2, isNull, isUndefined: isUndefined$2, isBoolean, isElement, isString: isString$2, isNumber: isNumber$2, isDate: isDate$2, isRegExp, isError: isError$1, isSymbol, isArrayBuffer: isArrayBuffer$1, isDataView: isDataView$1, isArray: isArray$2, isFunction: isFunction$1$1, isArguments: isArguments$1, isFinite: isFinite$1, isNaN: isNaN$1, isTypedArray: isTypedArray$1$1, isEmpty, isMatch, isEqual, isMap, isWeakMap, isSet, isWeakSet, keys, allKeys, values, pairs, invert, functions: functions$1, methods: functions$1, extend: extend$1$1, extendOwn, assign: extendOwn, defaults: defaults$4, create, clone, tap, get, has, mapObject, identity: identity$1, constant, noop: noop$1$1, toPath: toPath$1, property, propertyOf, matcher, matches: matcher, times, random, now, escape: escape$2, unescape: unescape$1, templateSettings, template, result, uniqueId, chain: chain$1, iteratee, partial, bind, bindAll, memoize, delay, defer, throttle, debounce, wrap: wrap$1, negate, compose, after, before, once: once$1, findKey, findIndex, findLastIndex, sortedIndex, indexOf, lastIndexOf, find, detect: find, findWhere, each, forEach: each, map, collect: map, reduce: reduce$1, foldl: reduce$1, inject: reduce$1, reduceRight, foldr: reduceRight, filter, select: filter, reject, every, all: every, some, any: some, contains: contains$1, includes: contains$1, include: contains$1, invoke, pluck, where, max, min, shuffle, sample, sortBy, groupBy, indexBy, countBy, partition, toArray: toArray$1, size, pick: pick$1, omit: omit$1, first, head: first, take: first, initial, last, rest, tail: rest, drop: rest, compact, flatten: flatten$2, without, uniq, unique: uniq, union, intersection, difference, unzip, transpose: unzip, zip, object, range, chunk, mixin, default: _$1 }), _$2 = mixin(allExports);
19078
+ var allExports = Object.freeze({ __proto__: null, VERSION, restArguments, isObject, isNull, isUndefined, isBoolean, isElement, isString, isNumber, isDate, isRegExp, isError: isError$1, isSymbol, isArrayBuffer, isDataView: isDataView$1, isArray: isArray$2, isFunction: isFunction$1, isArguments: isArguments$1, isFinite: isFinite$1, isNaN: isNaN$1, isTypedArray: isTypedArray$1, isEmpty, isMatch, isEqual, isMap, isWeakMap, isSet, isWeakSet, keys, allKeys, values, pairs, invert, functions: functions$1, methods: functions$1, extend: extend$1$1, extendOwn, assign: extendOwn, defaults, create, clone, tap, get, has, mapObject, identity: identity$1, constant, noop: noop$1$1, toPath: toPath$1, property, propertyOf, matcher, matches: matcher, times, random, now, escape: escape$2, unescape: unescape$1, templateSettings, template, result, uniqueId, chain: chain$1, iteratee, partial, bind, bindAll, memoize, delay, defer, throttle, debounce, wrap: wrap$1, negate, compose, after, before, once: once$1, findKey, findIndex, findLastIndex, sortedIndex, indexOf, lastIndexOf, find, detect: find, findWhere, each, forEach: each, map, collect: map, reduce: reduce$1, foldl: reduce$1, inject: reduce$1, reduceRight, foldr: reduceRight, filter, select: filter, reject, every, all: every, some, any: some, contains: contains$1, includes: contains$1, include: contains$1, invoke, pluck, where, max, min, shuffle, sample, sortBy, groupBy, indexBy, countBy, partition, toArray, size, pick: pick$1, omit: omit$1, first, head: first, take: first, initial, last, rest, tail: rest, drop: rest, compact, flatten: flatten$2, without, uniq, unique: uniq, union, intersection, difference, unzip, transpose: unzip, zip, object, range, chunk, mixin, default: _$1 }), _$2 = mixin(allExports);
19079
19079
  _$2._ = _$2;
19080
- var indexAll = Object.freeze({ __proto__: null, default: _$2, VERSION: VERSION$1, restArguments, isObject: isObject$2, isNull, isUndefined: isUndefined$2, isBoolean, isElement, isString: isString$2, isNumber: isNumber$2, isDate: isDate$2, isRegExp, isError: isError$1, isSymbol, isArrayBuffer: isArrayBuffer$1, isDataView: isDataView$1, isArray: isArray$2, isFunction: isFunction$1$1, isArguments: isArguments$1, isFinite: isFinite$1, isNaN: isNaN$1, isTypedArray: isTypedArray$1$1, isEmpty, isMatch, isEqual, isMap, isWeakMap, isSet, isWeakSet, keys, allKeys, values, pairs, invert, functions: functions$1, methods: functions$1, extend: extend$1$1, extendOwn, assign: extendOwn, defaults: defaults$4, create, clone, tap, get, has, mapObject, identity: identity$1, constant, noop: noop$1$1, toPath: toPath$1, property, propertyOf, matcher, matches: matcher, times, random, now, escape: escape$2, unescape: unescape$1, templateSettings, template, result, uniqueId, chain: chain$1, iteratee, partial, bind, bindAll, memoize, delay, defer, throttle, debounce, wrap: wrap$1, negate, compose, after, before, once: once$1, findKey, findIndex, findLastIndex, sortedIndex, indexOf, lastIndexOf, find, detect: find, findWhere, each, forEach: each, map, collect: map, reduce: reduce$1, foldl: reduce$1, inject: reduce$1, reduceRight, foldr: reduceRight, filter, select: filter, reject, every, all: every, some, any: some, contains: contains$1, includes: contains$1, include: contains$1, invoke, pluck, where, max, min, shuffle, sample, sortBy, groupBy, indexBy, countBy, partition, toArray: toArray$1, size, pick: pick$1, omit: omit$1, first, head: first, take: first, initial, last, rest, tail: rest, drop: rest, compact, flatten: flatten$2, without, uniq, unique: uniq, union, intersection, difference, unzip, transpose: unzip, zip, object, range, chunk, mixin });
19080
+ var indexAll = Object.freeze({ __proto__: null, default: _$2, VERSION, restArguments, isObject, isNull, isUndefined, isBoolean, isElement, isString, isNumber, isDate, isRegExp, isError: isError$1, isSymbol, isArrayBuffer, isDataView: isDataView$1, isArray: isArray$2, isFunction: isFunction$1, isArguments: isArguments$1, isFinite: isFinite$1, isNaN: isNaN$1, isTypedArray: isTypedArray$1, isEmpty, isMatch, isEqual, isMap, isWeakMap, isSet, isWeakSet, keys, allKeys, values, pairs, invert, functions: functions$1, methods: functions$1, extend: extend$1$1, extendOwn, assign: extendOwn, defaults, create, clone, tap, get, has, mapObject, identity: identity$1, constant, noop: noop$1$1, toPath: toPath$1, property, propertyOf, matcher, matches: matcher, times, random, now, escape: escape$2, unescape: unescape$1, templateSettings, template, result, uniqueId, chain: chain$1, iteratee, partial, bind, bindAll, memoize, delay, defer, throttle, debounce, wrap: wrap$1, negate, compose, after, before, once: once$1, findKey, findIndex, findLastIndex, sortedIndex, indexOf, lastIndexOf, find, detect: find, findWhere, each, forEach: each, map, collect: map, reduce: reduce$1, foldl: reduce$1, inject: reduce$1, reduceRight, foldr: reduceRight, filter, select: filter, reject, every, all: every, some, any: some, contains: contains$1, includes: contains$1, include: contains$1, invoke, pluck, where, max, min, shuffle, sample, sortBy, groupBy, indexBy, countBy, partition, toArray, size, pick: pick$1, omit: omit$1, first, head: first, take: first, initial, last, rest, tail: rest, drop: rest, compact, flatten: flatten$2, without, uniq, unique: uniq, union, intersection, difference, unzip, transpose: unzip, zip, object, range, chunk, mixin });
19081
+ const nonTupleVectorOperators = ["vector", "altvector"];
19082
+ function coerce_tuple_array_vectors({ operator1: e2, operator2: t, operands1: r, operands2: n, coerce_tuples_arrays: i, coerce_vectors: a }) {
19083
+ let o = e2 === t;
19084
+ if (!o) {
19085
+ if (i) {
19086
+ if ("tuple" === e2) {
19087
+ if (nonTupleVectorOperators.includes(t)) e2 = t, o = true;
19088
+ else if ("interval" === t && 2 === r.length) {
19089
+ let t2 = n[1];
19090
+ t2[1] || t2[2] || (o = true, e2 = "interval", r = [["tuple", ...r], ["tuple", false, false]]);
19091
+ }
19092
+ } else if ("tuple" === t) {
19093
+ if (nonTupleVectorOperators.includes(e2)) t = e2, o = true;
19094
+ else if ("interval" === e2 && 2 === n.length) {
19095
+ let e3 = r[1];
19096
+ e3[1] || e3[2] || (o = true, t = "interval", n = [["tuple", ...n], ["tuple", false, false]]);
19097
+ }
19098
+ }
19099
+ if (!o) {
19100
+ if ("array" === e2 && 2 === r.length) {
19101
+ if ("interval" === t) {
19102
+ let t2 = n[1];
19103
+ t2[1] && t2[2] && (o = true, e2 = "interval", r = [["tuple", ...r], ["tuple", true, true]]);
19104
+ }
19105
+ } else if ("array" === t && 2 === n.length && "interval" === e2) {
19106
+ let e3 = r[1];
19107
+ e3[1] && e3[2] && (o = true, t = "interval", n = [["tuple", ...n], ["tuple", true, true]]);
19108
+ }
19109
+ }
19110
+ }
19111
+ !o && a && nonTupleVectorOperators.includes(e2) && nonTupleVectorOperators.includes(t) && (o = true, e2 = t = "vector");
19112
+ }
19113
+ return { operator1: e2, operator2: t, operands1: r, operands2: n };
19114
+ }
19081
19115
  function handleNaNInfinityStringify(e2, t) {
19082
19116
  return t != t ? "0/0" : t === 1 / 0 ? "1/0" : t === -1 / 0 ? "-1/0" : t;
19083
19117
  }
@@ -19087,7 +19121,7 @@ function handleNaNInfinityParse(e2, t) {
19087
19121
  function deepClone(e2) {
19088
19122
  return JSON.parse(JSON.stringify(e2, handleNaNInfinityStringify), handleNaNInfinityParse);
19089
19123
  }
19090
- const equal = function(e2, t, { allowed_error_in_numbers: r = 0, include_error_in_number_exponents: n = false, allowed_error_is_absolute: i = false } = {}) {
19124
+ const equal = function(e2, t, { allowed_error_in_numbers: r = 0, include_error_in_number_exponents: n = false, allowed_error_is_absolute: i = false, coerce_tuples_arrays: a = true, coerce_vectors: o = true } = {}) {
19091
19125
  if (!Array.isArray(e2) || !Array.isArray(t)) {
19092
19126
  if (typeof e2 != typeof t) return false;
19093
19127
  if ("number" == typeof e2 && Number.isFinite(e2)) {
@@ -19096,14 +19130,14 @@ const equal = function(e2, t, { allowed_error_in_numbers: r = 0, include_error_i
19096
19130
  }
19097
19131
  return e2 === t;
19098
19132
  }
19099
- var a = e2[0], o = e2.slice(1), s = t[0], u = t.slice(1);
19100
- if (a !== s) return false;
19101
- if (o.length !== u.length) return false;
19102
- if (r > 0 && !n && "^" === a) {
19103
- return !!equal(o[0], u[0], { allowed_error_in_numbers: r, include_error_in_number_exponents: n, allowed_error_is_absolute: i }) && equal(o[1], u[1]);
19133
+ var s = e2[0], u = e2.slice(1), c2 = t[0], l = t.slice(1);
19134
+ if (s !== c2 && ({ operator1: s, operator2: c2, operands1: u, operands2: l } = coerce_tuple_array_vectors({ operator1: s, operator2: c2, operands1: u, operands2: l, coerce_tuples_arrays: a, coerce_vectors: o })), s !== c2) return false;
19135
+ if (u.length !== l.length) return false;
19136
+ if (r > 0 && !n && "^" === s) {
19137
+ return !!equal(u[0], l[0], { allowed_error_in_numbers: r, include_error_in_number_exponents: n, allowed_error_is_absolute: i, coerce_tuples_arrays: a, coerce_vectors: o }) && equal(u[1], l[1], { coerce_tuples_arrays: a, coerce_vectors: o });
19104
19138
  }
19105
- return _$2.every(_$2.zip(o, u), function(e3) {
19106
- return equal(e3[0], e3[1], { allowed_error_in_numbers: r, include_error_in_number_exponents: n, allowed_error_is_absolute: i });
19139
+ return _$2.every(_$2.zip(u, l), function(e3) {
19140
+ return equal(e3[0], e3[1], { allowed_error_in_numbers: r, include_error_in_number_exponents: n, allowed_error_is_absolute: i, coerce_tuples_arrays: a, coerce_vectors: o });
19107
19141
  });
19108
19142
  }, match$2 = function(e2, t, r) {
19109
19143
  var n = false;
@@ -20662,7 +20696,6 @@ class textToAst$4 {
20662
20696
  return t;
20663
20697
  }
20664
20698
  relation(e2) {
20665
- if ("NOT" === this.token.token_type || "!" === this.token.token_type) return this.advance(), ["not", this.relation(e2)];
20666
20699
  if ("FORALL" === this.token.token_type || "EXISTS" === this.token.token_type) {
20667
20700
  let t2 = this.token.token_type.toLowerCase();
20668
20701
  return this.advance(), [t2, this.relation(e2)];
@@ -20691,6 +20724,7 @@ class textToAst$4 {
20691
20724
  return t;
20692
20725
  }
20693
20726
  expression(e2) {
20727
+ if ("NOT" === this.token.token_type || "!" === this.token.token_type) return this.advance(), ["not", this.expression(e2)];
20694
20728
  let t = false;
20695
20729
  "+" === this.token.token_type && (t = true, this.advance());
20696
20730
  let r = false;
@@ -22932,127 +22966,132 @@ var normalization = Object.freeze({ __proto__: null, normalize_function_names, n
22932
22966
  function generate_random_integer(e2, t, r) {
22933
22967
  return e2 = math$1.ceil(e2), t = math$1.floor(t), math$1.floor(r() * (t - e2 + 1)) + e2;
22934
22968
  }
22935
- const equals$6 = function({ expr: e2, other: t, randomBindings: r, expr_context: n, other_context: i, relative_tolerance: a = 1e-12, absolute_tolerance: o = 0, tolerance_for_zero: s = 1e-15, allowed_error_in_numbers: u = 0, include_error_in_number_exponents: c2 = false, allowed_error_is_absolute: l = false, rng: f2 }) {
22969
+ const equals$6 = function({ expr: e2, other: t, randomBindings: r, expr_context: n, other_context: i, relative_tolerance: a = 1e-12, absolute_tolerance: o = 0, tolerance_for_zero: s = 1e-15, allowed_error_in_numbers: u = 0, include_error_in_number_exponents: c2 = false, allowed_error_is_absolute: l = false, coerce_tuples_arrays: f2 = true, coerce_vectors: p2 = true, rng: m2 }) {
22936
22970
  if (Array.isArray(e2.tree) && Array.isArray(t.tree)) {
22937
- let p2 = e2.tree[0], m2 = e2.tree.slice(1), d2 = t.tree[0], h = t.tree.slice(1);
22938
- if ("tuple" === p2 || "vector" === p2 || "altvector" === p2 || "list" === p2 || "array" === p2 || "matrix" === p2 || "interval" === p2) {
22939
- if (d2 !== p2) return false;
22940
- if (h.length !== m2.length) return false;
22941
- for (let e3 = 0; e3 < m2.length; e3++) if (!equals$6({ expr: n.fromAst(m2[e3]), other: i.fromAst(h[e3]), randomBindings: r, expr_context: n, other_context: i, relative_tolerance: a, absolute_tolerance: o, tolerance_for_zero: s, allowed_error_in_numbers: u, include_error_in_number_exponents: c2, allowed_error_is_absolute: l, rng: f2 })) return false;
22971
+ let d2 = e2.tree[0], h = e2.tree.slice(1), g = t.tree[0], y2 = t.tree.slice(1);
22972
+ if ("tuple" === d2 || "vector" === d2 || "altvector" === d2 || "list" === d2 || "array" === d2 || "matrix" === d2 || "interval" === d2) {
22973
+ if (g !== d2 && ({ operator1: d2, operator2: g, operands1: h, operands2: y2 } = coerce_tuple_array_vectors({ operator1: d2, operator2: g, operands1: h, operands2: y2, coerce_tuples_arrays: f2, coerce_vectors: p2 })), g !== d2) return false;
22974
+ if (y2.length !== h.length) return false;
22975
+ for (let e3 = 0; e3 < h.length; e3++) if (!equals$6({ expr: n.fromAst(h[e3]), other: i.fromAst(y2[e3]), randomBindings: r, expr_context: n, other_context: i, relative_tolerance: a, absolute_tolerance: o, tolerance_for_zero: s, allowed_error_in_numbers: u, include_error_in_number_exponents: c2, allowed_error_is_absolute: l, coerce_tuples_arrays: f2, coerce_vectors: p2, rng: m2 })) return false;
22942
22976
  return true;
22943
22977
  }
22944
- if (2 === m2.length && ["=", ">", "<", "ge", "le"].includes(p2)) {
22945
- if (2 !== h.length) return false;
22946
- if (">" === p2 ? (p2 = "<", m2 = [m2[1], m2[0]]) : "ge" === p2 && (p2 = "le", m2 = [m2[1], m2[0]]), ">" === d2 ? (d2 = "<", h = [h[1], h[0]]) : "ge" === d2 && (d2 = "le", h = [h[1], h[0]]), p2 !== d2) return false;
22947
- let e3 = ["+", m2[0], ["-", m2[1]]], t2 = ["+", h[0], ["-", h[1]]], g = "=" !== p2;
22948
- return component_equals$1({ expr: n.fromAst(e3), other: i.fromAst(t2), randomBindings: r, expr_context: n, other_context: i, allow_proportional: true, require_positive_proportion: g, relative_tolerance: a, absolute_tolerance: o, tolerance_for_zero: s, allowed_error_in_numbers: u, include_error_in_number_exponents: c2, allowed_error_is_absolute: l, rng: f2 });
22978
+ if (2 === h.length && ["=", ">", "<", "ge", "le"].includes(d2)) {
22979
+ if (2 !== y2.length) return false;
22980
+ if (">" === d2 ? (d2 = "<", h = [h[1], h[0]]) : "ge" === d2 && (d2 = "le", h = [h[1], h[0]]), ">" === g ? (g = "<", y2 = [y2[1], y2[0]]) : "ge" === g && (g = "le", y2 = [y2[1], y2[0]]), d2 !== g) return false;
22981
+ let e3 = ["+", h[0], ["-", h[1]]], t2 = ["+", y2[0], ["-", y2[1]]], v = "=" !== d2;
22982
+ return component_equals$1({ expr: n.fromAst(e3), other: i.fromAst(t2), randomBindings: r, expr_context: n, other_context: i, allow_proportional: true, require_positive_proportion: v, relative_tolerance: a, absolute_tolerance: o, tolerance_for_zero: s, allowed_error_in_numbers: u, include_error_in_number_exponents: c2, allowed_error_is_absolute: l, coerce_tuples_arrays: f2, coerce_vectors: p2, rng: m2 });
22949
22983
  }
22950
22984
  }
22951
- return component_equals$1({ expr: e2, other: t, randomBindings: r, expr_context: n, other_context: i, relative_tolerance: a, absolute_tolerance: o, tolerance_for_zero: s, allowed_error_in_numbers: u, include_error_in_number_exponents: c2, allowed_error_is_absolute: l, rng: f2 });
22952
- }, component_equals$1 = function({ expr: e2, other: t, randomBindings: r, expr_context: n, other_context: i, allow_proportional: a = false, require_positive_proportion: o = false, relative_tolerance: s, absolute_tolerance: u, tolerance_for_zero: c2, allowed_error_in_numbers: l, include_error_in_number_exponents: f2, allowed_error_is_absolute: p2, rng: m2 }) {
22953
- var d2, h, g, y2 = 1e-20 * Number.MAX_VALUE;
22954
- ({ variables: d2, integer_variables: h, functions: g, expr: e2, other: t } = prepare_exprs_numerical_eval(e2, t, n, i));
22985
+ return component_equals$1({ expr: e2, other: t, randomBindings: r, expr_context: n, other_context: i, relative_tolerance: a, absolute_tolerance: o, tolerance_for_zero: s, allowed_error_in_numbers: u, include_error_in_number_exponents: c2, allowed_error_is_absolute: l, coerce_tuples_arrays: f2, coerce_vectors: p2, rng: m2 });
22986
+ }, component_equals$1 = function({ expr: e2, other: t, randomBindings: r, expr_context: n, other_context: i, allow_proportional: a = false, require_positive_proportion: o = false, relative_tolerance: s, absolute_tolerance: u, tolerance_for_zero: c2, allowed_error_in_numbers: l, include_error_in_number_exponents: f2, allowed_error_is_absolute: p2, coerce_tuples_arrays: m2, coerce_vectors: d2, rng: h }) {
22987
+ var g, y2, v, x2 = 1e-20 * Number.MAX_VALUE;
22988
+ ({ variables: g, integer_variables: y2, functions: v, expr: e2, other: t } = prepare_exprs_numerical_eval(e2, t, n, i));
22955
22989
  try {
22956
- var v = e2.f(), x2 = t.f();
22957
- } catch (r2) {
22958
- return e2.equalsViaSyntax(t, { allow_blanks: true });
22990
+ var b2 = e2.f(), _2 = t.f();
22991
+ } catch (a2) {
22992
+ if (e2.equalsViaSyntax(t, { allow_blanks: true, allowed_error_in_numbers: l, include_error_in_number_exponents: f2, allowed_error_is_absolute: p2, coerce_tuples_arrays: m2, coerce_vectors: d2 })) return true;
22993
+ if (!Array.isArray(e2.tree) || !Array.isArray(t.tree)) return false;
22994
+ if (e2.tree[0] !== t.tree[0]) return false;
22995
+ let o2 = e2.tree.slice(1), g2 = t.tree.slice(1);
22996
+ for (let e3 = 0; e3 < o2.length; e3++) if (!equals$6({ expr: n.fromAst(o2[e3]), other: i.fromAst(g2[e3]), randomBindings: r, expr_context: n, other_context: i, relative_tolerance: s, absolute_tolerance: u, tolerance_for_zero: c2, allowed_error_in_numbers: l, include_error_in_number_exponents: f2, allowed_error_is_absolute: p2, coerce_tuples_arrays: m2, coerce_vectors: d2, rng: h })) return false;
22997
+ return true;
22959
22998
  }
22960
- let b2, _2, w2;
22999
+ let w2, A2, N2;
22961
23000
  if (l > 0) {
22962
- let t2 = replace_numbers_with_parameters({ expr: e2, variables: d2, include_exponents: f2 });
22963
- b2 = n.fromAst(t2.expr_with_params), _2 = t2.parameters;
22964
- let r2 = Object.keys(_2);
23001
+ let t2 = replace_numbers_with_parameters({ expr: e2, variables: g, include_exponents: f2 });
23002
+ w2 = n.fromAst(t2.expr_with_params), A2 = t2.parameters;
23003
+ let r2 = Object.keys(A2);
22965
23004
  if (r2.length > 0) {
22966
- let e3 = b2.derivative(r2[0]);
22967
- if (p2 || (e3 = e3.multiply(_2[r2[0]])), r2.length > 1) for (let t4 of r2.slice(1)) {
22968
- let r3 = b2.derivative(t4);
22969
- p2 || (r3 = r3.multiply(_2[t4])), e3 = e3.add(r3);
23005
+ let e3 = w2.derivative(r2[0]);
23006
+ if (p2 || (e3 = e3.multiply(A2[r2[0]])), r2.length > 1) for (let t4 of r2.slice(1)) {
23007
+ let r3 = w2.derivative(t4);
23008
+ p2 || (r3 = r3.multiply(A2[t4])), e3 = e3.add(r3);
22970
23009
  }
22971
23010
  let t3 = e3.multiply(l);
22972
23011
  try {
22973
- w2 = t3.f();
23012
+ N2 = t3.f();
22974
23013
  } catch (e4) {
22975
23014
  }
22976
23015
  }
22977
23016
  }
22978
- var A2 = [10, 1, 100, 0.1, 1e3, 0.01], N2 = 0;
22979
- let D = 0, E = true, $ = 0;
23017
+ var D = [10, 1, 100, 0.1, 1e3, 0.01], E = 0;
23018
+ let $ = 0, S2 = true, M2 = 0;
22980
23019
  for (let e3 = 0; e3 < 1e3; e3++) {
22981
23020
  try {
22982
- var S2 = M2(A2[N2], m2);
23021
+ var T2 = C2(D[E], h);
22983
23022
  } catch (e4) {
22984
23023
  continue;
22985
23024
  }
22986
- if (false === S2.always_zero && (E = false), !S2.equal && !S2.out_of_bounds && !S2.always_zero && false !== S2.sufficient_finite_values && ($++, $ > 100)) return false;
22987
- if (S2.equal) {
22988
- if (S2.always_zero) {
22989
- if (!E) continue;
22990
- if (D += 1, D > 5 && (N2 += 1, D = 0), N2 >= A2.length) return true;
23025
+ if (false === T2.always_zero && (S2 = false), !T2.equal && !T2.out_of_bounds && !T2.always_zero && false !== T2.sufficient_finite_values && (M2++, M2 > 100)) return false;
23026
+ if (T2.equal) {
23027
+ if (T2.always_zero) {
23028
+ if (!S2) continue;
23029
+ if ($ += 1, $ > 5 && (E += 1, $ = 0), E >= D.length) return true;
22991
23030
  continue;
22992
23031
  }
22993
23032
  return true;
22994
23033
  }
22995
23034
  }
22996
23035
  return false;
22997
- function M2(e3, t2) {
22998
- var n3, i2 = r(t2, d2, e3);
22999
- for (let e4 = 0; e4 < h.length; e4++) i2[h[e4]] = generate_random_integer(-10, 10, t2);
23000
- for (let e4 = 0; e4 < g.length; e4++) {
23036
+ function C2(e3, t2) {
23037
+ var n3, i2 = r(t2, g, e3);
23038
+ for (let e4 = 0; e4 < y2.length; e4++) i2[y2[e4]] = generate_random_integer(-10, 10, t2);
23039
+ for (let e4 = 0; e4 < v.length; e4++) {
23001
23040
  let r2 = 1 * (t2() - 0.5), n4 = 2 * (t2() - 0.5), a2 = 6 * (t2() - 0.5), o2 = 24 * (t2() - 0.5);
23002
- i2[g[e4]] = function(e5) {
23041
+ i2[v[e4]] = function(e5) {
23003
23042
  return math$1.add(math$1.multiply(math$1.add(math$1.multiply(math$1.add(math$1.multiply(r2, e5), n4), e5), a2), e5), o2);
23004
23043
  };
23005
23044
  }
23006
- w2 && (n3 = Object.assign({}, i2, _2));
23007
- var l2 = v(i2), f3 = x2(i2);
23045
+ N2 && (n3 = Object.assign({}, i2, A2));
23046
+ var l2 = b2(i2), f3 = _2(i2);
23008
23047
  if ("boolean" == typeof l2 || "boolean" == typeof f3) return { out_of_bounds: true, always_zero: false };
23009
23048
  var p3 = math$1.abs(l2), m3 = math$1.abs(f3);
23010
- if (!(p3 < y2 && m3 < y2)) return { out_of_bounds: true, always_zero: false };
23049
+ if (!(p3 < x2 && m3 < x2)) return { out_of_bounds: true, always_zero: false };
23011
23050
  if (!(0 === p3 || p3 > 0) || !(0 === m3 || m3 > 0)) return { out_of_bounds: true, always_zero: false };
23012
- var b3 = Math.min(p3, m3), A3 = Math.max(p3, m3), N3 = 1;
23051
+ var d3 = Math.min(p3, m3), h2 = Math.max(p3, m3), w3 = 1;
23013
23052
  let D2 = 0;
23014
- if (w2) {
23053
+ if (N2) {
23015
23054
  try {
23016
- D2 = math$1.abs(w2(n3));
23055
+ D2 = math$1.abs(N2(n3));
23017
23056
  } catch (e4) {
23018
23057
  return { equal_at_start: false, always_zero: false };
23019
23058
  }
23020
23059
  if (!Number.isFinite(D2)) return { equal_at_start: false, always_zero: false };
23021
23060
  }
23022
- if (D2 += b3 * s, D2 = Math.min(D2, 0.1 * b3), D2 += 0 !== D2 || 0 !== l2 && 0 !== f3 ? u : c2, !(0 === A3 || math$1.abs(math$1.subtract(l2, f3)) < D2)) {
23061
+ if (D2 += d3 * s, D2 = Math.min(D2, 0.1 * d3), D2 += 0 !== D2 || 0 !== l2 && 0 !== f3 ? u : c2, !(0 === h2 || math$1.abs(math$1.subtract(l2, f3)) < D2)) {
23023
23062
  if (!a) return { equal_at_start: false, always_zero: false };
23024
23063
  if (0 === p3 || 0 === m3) return { equal_at_start: false, always_zero: false };
23025
- if (N3 = math$1.divide(l2, f3), o && !(N3 > 0)) return { equal_at_start: false, always_zero: false };
23064
+ if (w3 = math$1.divide(l2, f3), o && !(w3 > 0)) return { equal_at_start: false, always_zero: false };
23026
23065
  }
23027
- var E2 = 0 === A3, $2 = 0;
23066
+ var E2 = 0 === h2, $2 = 0;
23028
23067
  for (let e4 = 0; e4 < 100; e4++) {
23029
- var S3, M3 = r(t2, d2, 0.01, i2);
23030
- for (let e5 = 0; e5 < h.length; e5++) M3[h[e5]] = generate_random_integer(-10, 10, t2);
23031
- for (let e5 = 0; e5 < g.length; e5++) {
23068
+ var S3, M3 = r(t2, g, 0.01, i2);
23069
+ for (let e5 = 0; e5 < y2.length; e5++) M3[y2[e5]] = generate_random_integer(-10, 10, t2);
23070
+ for (let e5 = 0; e5 < v.length; e5++) {
23032
23071
  let r2 = 1 * (t2() - 0.5), n4 = 2 * (t2() - 0.5), i3 = 6 * (t2() - 0.5), a2 = 24 * (t2() - 0.5);
23033
- M3[g[e5]] = function(e6) {
23072
+ M3[v[e5]] = function(e6) {
23034
23073
  return math$1.add(math$1.multiply(math$1.add(math$1.multiply(math$1.add(math$1.multiply(r2, e6), n4), e6), i3), e6), a2);
23035
23074
  };
23036
23075
  }
23037
- w2 && (S3 = Object.assign({}, M3, _2));
23076
+ N2 && (S3 = Object.assign({}, M3, A2));
23038
23077
  try {
23039
- l2 = v(M3), f3 = math$1.multiply(x2(M3), N3);
23078
+ l2 = b2(M3), f3 = math$1.multiply(_2(M3), w3);
23040
23079
  } catch (e5) {
23041
23080
  continue;
23042
23081
  }
23043
- if (p3 = math$1.abs(l2), m3 = math$1.abs(f3), p3 < y2 && m3 < y2) {
23044
- b3 = Math.min(p3, m3), A3 = Math.max(p3, m3), $2++;
23082
+ if (p3 = math$1.abs(l2), m3 = math$1.abs(f3), p3 < x2 && m3 < x2) {
23083
+ d3 = Math.min(p3, m3), h2 = Math.max(p3, m3), $2++;
23045
23084
  let e5 = 0;
23046
- if (w2) {
23085
+ if (N2) {
23047
23086
  try {
23048
- e5 = math$1.abs(w2(S3));
23087
+ e5 = math$1.abs(N2(S3));
23049
23088
  } catch (e6) {
23050
23089
  continue;
23051
23090
  }
23052
23091
  if (!Number.isFinite(e5)) continue;
23053
23092
  }
23054
- if (e5 += b3 * s, e5 = Math.min(e5, 0.1 * b3), e5 += 0 !== e5 || 0 !== l2 && 0 !== f3 ? u : c2, !(0 === A3 || math$1.abs(math$1.subtract(l2, f3)) < e5)) return { equality_in_middle: false, always_zero: false };
23055
- if (E2 = E2 && 0 === A3, $2 >= 10) return { equal: true, always_zero: E2 };
23093
+ if (e5 += d3 * s, e5 = Math.min(e5, 0.1 * d3), e5 += 0 !== e5 || 0 !== l2 && 0 !== f3 ? u : c2, !(0 === h2 || math$1.abs(math$1.subtract(l2, f3)) < e5)) return { equality_in_middle: false, always_zero: false };
23094
+ if (E2 = E2 && 0 === h2, $2 >= 10) return { equal: true, always_zero: E2 };
23056
23095
  }
23057
23096
  }
23058
23097
  return { sufficient_finite_values: false, always_zero: E2 };
@@ -23146,10 +23185,10 @@ function randomComplexBindings(e2, t, r, n) {
23146
23185
  i[t2] = math$1.complex(n[t2].re + 2 * e2() * r - r, n[t2].im + 2 * e2() * r - r);
23147
23186
  }), i;
23148
23187
  }
23149
- const equals$5 = function(e2, t, { relative_tolerance: r = 1e-12, absolute_tolerance: n = 0, tolerance_for_zero: i = 1e-15, allowed_error_in_numbers: a = 0, include_error_in_number_exponents: o = false, allowed_error_is_absolute: s = false, allow_blanks: u = false } = {}) {
23188
+ const equals$5 = function(e2, t, { relative_tolerance: r = 1e-12, absolute_tolerance: n = 0, tolerance_for_zero: i = 1e-15, allowed_error_in_numbers: a = 0, include_error_in_number_exponents: o = false, allowed_error_is_absolute: s = false, allow_blanks: u = false, coerce_tuples_arrays: c2 = true, coerce_vectors: l = true } = {}) {
23150
23189
  if (!u && (e2.variables().includes("_") || t.variables().includes("_"))) return false;
23151
- let c2 = seedrandom$1("complex_seed");
23152
- return e2 = e2.remove_scaling_units(), t = t.remove_scaling_units(), !(!e2.isAnalytic({ allow_abs: true, allow_arg: true, allow_relation: true }) || !t.isAnalytic({ allow_abs: true, allow_arg: true, allow_relation: true })) && equals$6({ expr: e2, other: t, randomBindings: randomComplexBindings, expr_context: e2.context, other_context: t.context, relative_tolerance: r, absolute_tolerance: n, tolerance_for_zero: i, allowed_error_in_numbers: a, include_error_in_number_exponents: o, allowed_error_is_absolute: s, rng: c2 });
23190
+ let f2 = seedrandom$1("complex_seed");
23191
+ return e2 = e2.remove_scaling_units(), t = t.remove_scaling_units(), equals$6({ expr: e2, other: t, randomBindings: randomComplexBindings, expr_context: e2.context, other_context: t.context, relative_tolerance: r, absolute_tolerance: n, tolerance_for_zero: i, allowed_error_in_numbers: a, include_error_in_number_exponents: o, allowed_error_is_absolute: s, coerce_tuples_arrays: c2, coerce_vectors: l, rng: f2 });
23153
23192
  };
23154
23193
  function randomRealBindings(e2, t, r, n) {
23155
23194
  var i = {};
@@ -23163,10 +23202,10 @@ const equals$4 = function(e2, t, { relative_tolerance: r = 1e-12, absolute_toler
23163
23202
  if (!e2.isAnalytic() || !t.isAnalytic()) return false;
23164
23203
  let u = seedrandom("real_seed");
23165
23204
  return equals$6({ expr: e2, other: t, randomBindings: randomRealBindings, expr_context: e2.context, other_content: t.context, relative_tolerance: r, absolute_tolerance: n, tolerance_for_zero: i, allowed_error_in_numbers: a, include_error_in_number_exponents: o, allowed_error_is_absolute: s, rng: u });
23166
- }, equals$3 = function(e2, t, { allowed_error_in_numbers: r = 0, include_error_in_number_exponents: n = false, allowed_error_is_absolute: i = false, allow_blanks: a = false } = {}) {
23205
+ }, equals$3 = function(e2, t, { allowed_error_in_numbers: r = 0, include_error_in_number_exponents: n = false, allowed_error_is_absolute: i = false, allow_blanks: a = false, coerce_tuples_arrays: o = true, coerce_vectors: s = true } = {}) {
23167
23206
  if (!a && (e2.variables().includes("_") || t.variables().includes("_"))) return false;
23168
- let o = e2.normalize_function_names().normalize_applied_functions().normalize_negative_numbers().normalize_angle_linesegment_arg_order(), s = t.normalize_function_names().normalize_applied_functions().normalize_negative_numbers().normalize_angle_linesegment_arg_order();
23169
- return equal(o.tree, s.tree, { allowed_error_in_numbers: r, include_error_in_number_exponents: n, allowed_error_is_absolute: i });
23207
+ let u = e2.normalize_function_names().normalize_applied_functions().normalize_negative_numbers().normalize_angle_linesegment_arg_order(), c2 = t.normalize_function_names().normalize_applied_functions().normalize_negative_numbers().normalize_angle_linesegment_arg_order();
23208
+ return equal(u.tree, c2.tree, { allowed_error_in_numbers: r, include_error_in_number_exponents: n, allowed_error_is_absolute: i, coerce_tuples_arrays: o, coerce_vectors: s });
23170
23209
  };
23171
23210
  function randomFiniteFieldBindings(e2, t, r) {
23172
23211
  var n = {};
@@ -23174,49 +23213,49 @@ function randomFiniteFieldBindings(e2, t, r) {
23174
23213
  n[t2] = Math.floor(e2() * r);
23175
23214
  }), n;
23176
23215
  }
23177
- const equals$2 = function(e2, t, { allow_blanks: r = false } = {}) {
23216
+ const equals$2 = function(e2, t, { allow_blanks: r = false, coerce_tuples_arrays: n = true, coerce_vectors: i = true } = {}) {
23178
23217
  if (!r && (e2.variables().includes("_") || t.variables().includes("_"))) return false;
23179
- let n = seedrandom$1("finite_field_seed");
23218
+ let a = seedrandom$1("finite_field_seed");
23180
23219
  if (Array.isArray(e2.tree) && Array.isArray(t.tree)) {
23181
- let r2 = e2.tree[0], c2 = e2.tree.slice(1), l = t.tree[0], f2 = t.tree.slice(1);
23220
+ let r2 = e2.tree[0], f2 = e2.tree.slice(1), p2 = t.tree[0], m2 = t.tree.slice(1);
23182
23221
  if ("tuple" === r2 || "vector" === r2 || "altvector" === r2 || "list" === r2 || "array" === r2 || "matrix" === r2 || "interval" === r2) {
23183
- if (l !== r2) return false;
23184
- if (f2.length !== c2.length) return false;
23185
- for (let r3 = 0; r3 < c2.length; r3++) if (false === equals$2(e2.context.fromAst(c2[r3]), t.context.fromAst(f2[r3]), n)) return false;
23222
+ if (p2 !== r2 && ({ operator1: r2, operator2: p2, operands1: f2, operands2: m2 } = coerce_tuple_array_vectors({ operator1: r2, operator2: p2, operands1: f2, operands2: m2, coerce_tuples_arrays: n, coerce_vectors: i })), p2 !== r2) return false;
23223
+ if (m2.length !== f2.length) return false;
23224
+ for (let r3 = 0; r3 < f2.length; r3++) if (false === equals$2(e2.context.fromAst(f2[r3]), t.context.fromAst(m2[r3]), a)) return false;
23186
23225
  return;
23187
23226
  }
23188
- if (2 === c2.length && ["=", ">", "<", "ge", "le"].includes(r2)) {
23189
- if (2 !== f2.length) return false;
23190
- if (">" === r2 ? (r2 = "<", c2 = [c2[1], c2[0]]) : "ge" === r2 && (r2 = "le", c2 = [c2[1], c2[0]]), ">" === l ? (l = "<", f2 = [f2[1], f2[0]]) : "ge" === l && (l = "le", f2 = [f2[1], f2[0]]), r2 !== l) return false;
23191
- let p2 = ["+", c2[0], ["-", c2[1]]], m2 = ["+", f2[0], ["-", f2[1]]], d2 = "=" !== r2, h = e2.context.fromAst(p2), g = t.context.fromAst(m2);
23227
+ if (2 === f2.length && ["=", ">", "<", "ge", "le"].includes(r2)) {
23228
+ if (2 !== m2.length) return false;
23229
+ if (">" === r2 ? (r2 = "<", f2 = [f2[1], f2[0]]) : "ge" === r2 && (r2 = "le", f2 = [f2[1], f2[0]]), ">" === p2 ? (p2 = "<", m2 = [m2[1], m2[0]]) : "ge" === p2 && (p2 = "le", m2 = [m2[1], m2[0]]), r2 !== p2) return false;
23230
+ let n3 = ["+", f2[0], ["-", f2[1]]], i2 = ["+", m2[0], ["-", m2[1]]], d2 = "=" !== r2, h = e2.context.fromAst(n3), g = t.context.fromAst(i2);
23192
23231
  try {
23193
23232
  let e3 = prepare_exprs_numerical_eval(h, g);
23194
23233
  if (0 === e3.functions.length) {
23195
- var i = e3.expr.f(), a = e3.other.f();
23234
+ var o = e3.expr.f(), s = e3.other.f();
23196
23235
  let r3 = 1e-20 * Number.MAX_VALUE;
23197
- for (let c3 = 0; c3 < 10; c3++) {
23198
- var o = {};
23236
+ for (let n4 = 0; n4 < 10; n4++) {
23237
+ var u = {};
23199
23238
  e3.variables.forEach(function(e4) {
23200
- o[e4] = 2 * n() - 1;
23239
+ u[e4] = 2 * a() - 1;
23201
23240
  });
23202
- for (let t2 = 0; t2 < e3.integer_variables.length; t2++) o[e3.integer_variables[t2]] = math$1.floor(21 * n()) - 10;
23203
- let c4 = i(o), l2 = a(o);
23204
- var s = math$1.abs(c4), u = math$1.abs(l2);
23205
- if (!(s < r3 && u < r3)) continue;
23206
- if (0 == s || 0 === u) continue;
23207
- let f3 = math$1.divide(c4, l2);
23208
- if (d2 && !(f3 > 0)) return false;
23209
- 1 !== f3 && (g = t.context.fromAst(["*", f3, m2]));
23241
+ for (let t2 = 0; t2 < e3.integer_variables.length; t2++) u[e3.integer_variables[t2]] = math$1.floor(21 * a()) - 10;
23242
+ let n5 = o(u), f3 = s(u);
23243
+ var c2 = math$1.abs(n5), l = math$1.abs(f3);
23244
+ if (!(c2 < r3 && l < r3)) continue;
23245
+ if (0 == c2 || 0 === l) continue;
23246
+ let p3 = math$1.divide(n5, f3);
23247
+ if (d2 && !(p3 > 0)) return false;
23248
+ 1 !== p3 && (g = t.context.fromAst(["*", p3, i2]));
23210
23249
  break;
23211
23250
  }
23212
23251
  }
23213
23252
  } catch (e3) {
23214
23253
  return;
23215
23254
  }
23216
- return component_equals(h, g, n);
23255
+ return component_equals(h, g, a);
23217
23256
  }
23218
23257
  }
23219
- return component_equals(e2, t, n);
23258
+ return component_equals(e2, t, a);
23220
23259
  }, component_equals = function(e2, t, r) {
23221
23260
  ({ expr: e2, other: t } = normalize_for_equality_checking(e2, t));
23222
23261
  let n = [1181, 1187, 1193, 1201, 1213, 1217, 1223, 1229, 1231];
@@ -23336,10 +23375,10 @@ function sequence_from_discrete_infinite(e2, t) {
23336
23375
  for (let e3 = 0; e3 < t; e3++) s.push(evaluate_numbers(["+", ["*", i, a + e3], n]));
23337
23376
  return s;
23338
23377
  }
23339
- const equals = function(e2, t, { relative_tolerance: r = 1e-12, absolute_tolerance: n = 0, tolerance_for_zero: i = 1e-15, allowed_error_in_numbers: a = 0, include_error_in_number_exponents: o = false, allowed_error_is_absolute: s = false, allow_blanks: u = false } = {}) {
23378
+ const equals = function(e2, t, { relative_tolerance: r = 1e-12, absolute_tolerance: n = 0, tolerance_for_zero: i = 1e-15, allowed_error_in_numbers: a = 0, include_error_in_number_exponents: o = false, allowed_error_is_absolute: s = false, allow_blanks: u = false, coerce_tuples_arrays: c2 = true, coerce_vectors: l = true } = {}) {
23340
23379
  if (!u && (e2.variables().includes("_") || t.variables().includes("_"))) return false;
23341
- let c2 = e2.evaluate_numbers({ max_digits: 1 / 0 }).normalize_function_names().normalize_applied_functions().normalize_negative_numbers().normalize_angle_linesegment_arg_order().remove_scaling_units().simplify(), l = t.evaluate_numbers({ max_digits: 1 / 0 }).normalize_function_names().normalize_applied_functions().normalize_negative_numbers().normalize_angle_linesegment_arg_order().remove_scaling_units().simplify();
23342
- return !!c2.equalsViaSyntax(l, { allowed_error_in_numbers: a, include_error_in_number_exponents: o, allowed_error_is_absolute: s, allow_blanks: true }) || (0 !== a || 0 != e2.equalsViaFiniteField(t, { allow_blanks: true })) && (!!e2.equalsViaComplex(t, { relative_tolerance: r, absolute_tolerance: n, tolerance_for_zero: i, allowed_error_in_numbers: a, include_error_in_number_exponents: o, allowed_error_is_absolute: s, allow_blanks: true }) || !!equals$1(e2, t));
23380
+ let f2 = e2.evaluate_numbers({ max_digits: 1 / 0 }).normalize_function_names().normalize_applied_functions().normalize_negative_numbers().normalize_angle_linesegment_arg_order().remove_scaling_units().simplify(), p2 = t.evaluate_numbers({ max_digits: 1 / 0 }).normalize_function_names().normalize_applied_functions().normalize_negative_numbers().normalize_angle_linesegment_arg_order().remove_scaling_units().simplify();
23381
+ return !!f2.equalsViaSyntax(p2, { allowed_error_in_numbers: a, include_error_in_number_exponents: o, allowed_error_is_absolute: s, allow_blanks: true, coerce_tuples_arrays: c2, coerce_vectors: l }) || (0 !== a || 0 != e2.equalsViaFiniteField(t, { allow_blanks: true, coerce_tuples_arrays: c2, coerce_vectors: l })) && (!!e2.equalsViaComplex(t, { relative_tolerance: r, absolute_tolerance: n, tolerance_for_zero: i, allowed_error_in_numbers: a, include_error_in_number_exponents: o, allowed_error_is_absolute: s, allow_blanks: true, coerce_tuples_arrays: c2, coerce_vectors: l }) || !!equals$1(e2, t));
23343
23382
  };
23344
23383
  var equality = Object.freeze({ __proto__: null, equals, equalsViaComplex: equals$5, equalsViaReal: equals$4, equalsViaSyntax: equals$3, equalsViaFiniteField: equals$2, equalsDiscreteInfinite: equals$1 });
23345
23384
  const equalWithSignErrors = function(e2, t, { equalityFunction: r = equals, max_sign_errors: n = 1 } = {}) {
@@ -23671,14 +23710,14 @@ class astToGLSL$1 {
23671
23710
  var astToGuppy = new astToGuppy$1(), astToGLSL = new astToGLSL$1();
23672
23711
  const tex = function(e2, t) {
23673
23712
  return new astToLatex$1(t).convert(e2.tree);
23674
- }, toLatex = tex, toString$2 = function(e2, t) {
23713
+ }, toLatex = tex, toString = function(e2, t) {
23675
23714
  return new astToText$2(t).convert(e2.tree);
23676
23715
  }, toGLSL = function(e2) {
23677
23716
  return astToGLSL.convert(e2.tree);
23678
23717
  }, toXML = function(e2) {
23679
23718
  return astToGuppy.convert(e2.tree);
23680
23719
  };
23681
- var printing = Object.freeze({ __proto__: null, tex, toLatex, toString: toString$2, toXML, toGLSL });
23720
+ var printing = Object.freeze({ __proto__: null, tex, toLatex, toString, toXML, toGLSL });
23682
23721
  const integrateNumerically = function(e2, t, r, n) {
23683
23722
  for (var i = 0, a = {}, o = 0; o < 100; o++) {
23684
23723
  var s = r + (n - r) * (o + 0.5) / 100;
@@ -24266,7 +24305,6 @@ class latexToAst$1 {
24266
24305
  return t;
24267
24306
  }
24268
24307
  relation(e2) {
24269
- if ("NOT" === this.token.token_type || "!" === this.token.token_type) return this.advance(), ["not", this.relation(e2)];
24270
24308
  if ("FORALL" === this.token.token_type || "EXISTS" === this.token.token_type) {
24271
24309
  let t2 = this.token.token_type.toLowerCase();
24272
24310
  return this.advance(), [t2, this.relation(e2)];
@@ -24295,6 +24333,7 @@ class latexToAst$1 {
24295
24333
  return t;
24296
24334
  }
24297
24335
  expression(e2) {
24336
+ if ("NOT" === this.token.token_type || "!" === this.token.token_type) return this.advance(), ["not", this.expression(e2)];
24298
24337
  let t = false;
24299
24338
  "+" === this.token.token_type && (t = true, this.advance());
24300
24339
  let r = false;
@@ -25094,7 +25133,7 @@ class textToMathjs {
25094
25133
  return this.astToMathjs.convert(this.textToAst.convert(e2));
25095
25134
  }
25096
25135
  }
25097
- var converters = Object.freeze({ __proto__: null, astToLatexObj: astToLatex$1, astToTextObj: astToText$2, astToGuppyObj: astToGuppy$1, astToMathjsObj: astToMathjs$1, astToFiniteFieldObj: astToFiniteField$1, latexToAstObj: latexToAst$1, latexToGuppyObj: latexToGuppy, latexToMathjsObj: latexToMathjs, latexToTextObj: latexToText, mathjsToAstObj: mathjsToAst, mathjsToGuppyObj: mathjsToGuppy, mathjsToLatexObj: mathjsToLatex, mathjsToTextObj: mathjsToText, mmlToAstObj: mmlToAst$1, mmlToGuppyObj: mmlToGuppy, mmlToLatexObj: mmlToLatex, mmlToMathjsObj: mmlToMathjs, mmlToTextObj: mmlToText, textToAstObj: textToAst$4, textToGuppyObj: textToGuppy, textToLatexObj: textToLatex, textToMathjsObj: textToMathjs, astToGLSL: astToGLSL$1 }), textToAst = new textToAst$4(), latexToAst = new latexToAst$1(), mmlToAst = new mmlToAst$1(), utils$d = { match: match$2, flatten: flatten$5, unflattenLeft, unflattenRight };
25136
+ var converters = Object.freeze({ __proto__: null, astToLatexObj: astToLatex$1, astToTextObj: astToText$2, astToGuppyObj: astToGuppy$1, astToMathjsObj: astToMathjs$1, astToFiniteFieldObj: astToFiniteField$1, latexToAstObj: latexToAst$1, latexToGuppyObj: latexToGuppy, latexToMathjsObj: latexToMathjs, latexToTextObj: latexToText, mathjsToAstObj: mathjsToAst, mathjsToGuppyObj: mathjsToGuppy, mathjsToLatexObj: mathjsToLatex, mathjsToTextObj: mathjsToText, mmlToAstObj: mmlToAst$1, mmlToGuppyObj: mmlToGuppy, mmlToLatexObj: mmlToLatex, mmlToMathjsObj: mmlToMathjs, mmlToTextObj: mmlToText, textToAstObj: textToAst$4, textToGuppyObj: textToGuppy, textToLatexObj: textToLatex, textToMathjsObj: textToMathjs, astToGLSL: astToGLSL$1 }), textToAst = new textToAst$4(), latexToAst = new latexToAst$1(), mmlToAst = new mmlToAst$1(), utils$1 = { match: match$2, flatten: flatten$5, unflattenLeft, unflattenRight };
25098
25137
  function Expression(e2, t) {
25099
25138
  this.tree = flatten$5(e2), this.context = t, this.toJSON = function() {
25100
25139
  let e3 = { objectType: "math-expression", tree: this.tree }, t2 = {};
@@ -25150,7 +25189,7 @@ function parseLatex(e2, t) {
25150
25189
  function parseMml(e2, t) {
25151
25190
  return new Expression(mmlToAst.convert(e2), Context);
25152
25191
  }
25153
- var Context = { ZmodN, assumptions: initialize_assumptions(), parser_parameters: {}, from: create_from_multiple, fromText: parseText, parse: parseText, fromLaTeX: parseLatex, fromLatex: parseLatex, fromTeX: parseLatex, fromTex: parseLatex, fromMml: parseMml, parse_tex: parseLatex, converters, utils: utils$d, fromAst: function(e2) {
25192
+ var Context = { ZmodN, assumptions: initialize_assumptions(), parser_parameters: {}, from: create_from_multiple, fromText: parseText, parse: parseText, fromLaTeX: parseLatex, fromLatex: parseLatex, fromTeX: parseLatex, fromTex: parseLatex, fromMml: parseMml, parse_tex: parseLatex, converters, utils: utils$1, fromAst: function(e2) {
25154
25193
  return new Expression(e2, this);
25155
25194
  }, set_to_default: function() {
25156
25195
  this.assumptions = initialize_assumptions();
@@ -25630,1373 +25669,6 @@ var base32$1 = { exports: {} };
25630
25669
  }
25631
25670
  })();
25632
25671
  })(base32$1);
25633
- var axios$3 = { exports: {} };
25634
- var bind$2 = function bind3(fn2, thisArg) {
25635
- return function wrap2() {
25636
- var args = new Array(arguments.length);
25637
- for (var i = 0; i < args.length; i++) {
25638
- args[i] = arguments[i];
25639
- }
25640
- return fn2.apply(thisArg, args);
25641
- };
25642
- };
25643
- var bind$1 = bind$2;
25644
- var toString = Object.prototype.toString;
25645
- var kindOf = /* @__PURE__ */ function(cache) {
25646
- return function(thing) {
25647
- var str = toString.call(thing);
25648
- return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
25649
- };
25650
- }(/* @__PURE__ */ Object.create(null));
25651
- function kindOfTest(type) {
25652
- type = type.toLowerCase();
25653
- return function isKindOf(thing) {
25654
- return kindOf(thing) === type;
25655
- };
25656
- }
25657
- function isArray$1(val) {
25658
- return Array.isArray(val);
25659
- }
25660
- function isUndefined(val) {
25661
- return typeof val === "undefined";
25662
- }
25663
- function isBuffer(val) {
25664
- return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) && typeof val.constructor.isBuffer === "function" && val.constructor.isBuffer(val);
25665
- }
25666
- var isArrayBuffer = kindOfTest("ArrayBuffer");
25667
- function isArrayBufferView(val) {
25668
- var result2;
25669
- if (typeof ArrayBuffer !== "undefined" && ArrayBuffer.isView) {
25670
- result2 = ArrayBuffer.isView(val);
25671
- } else {
25672
- result2 = val && val.buffer && isArrayBuffer(val.buffer);
25673
- }
25674
- return result2;
25675
- }
25676
- function isString(val) {
25677
- return typeof val === "string";
25678
- }
25679
- function isNumber(val) {
25680
- return typeof val === "number";
25681
- }
25682
- function isObject(val) {
25683
- return val !== null && typeof val === "object";
25684
- }
25685
- function isPlainObject(val) {
25686
- if (kindOf(val) !== "object") {
25687
- return false;
25688
- }
25689
- var prototype2 = Object.getPrototypeOf(val);
25690
- return prototype2 === null || prototype2 === Object.prototype;
25691
- }
25692
- var isDate = kindOfTest("Date");
25693
- var isFile = kindOfTest("File");
25694
- var isBlob = kindOfTest("Blob");
25695
- var isFileList = kindOfTest("FileList");
25696
- function isFunction(val) {
25697
- return toString.call(val) === "[object Function]";
25698
- }
25699
- function isStream(val) {
25700
- return isObject(val) && isFunction(val.pipe);
25701
- }
25702
- function isFormData(thing) {
25703
- var pattern = "[object FormData]";
25704
- return thing && (typeof FormData === "function" && thing instanceof FormData || toString.call(thing) === pattern || isFunction(thing.toString) && thing.toString() === pattern);
25705
- }
25706
- var isURLSearchParams = kindOfTest("URLSearchParams");
25707
- function trim$1(str) {
25708
- return str.trim ? str.trim() : str.replace(/^\s+|\s+$/g, "");
25709
- }
25710
- function isStandardBrowserEnv() {
25711
- if (typeof navigator !== "undefined" && (navigator.product === "ReactNative" || navigator.product === "NativeScript" || navigator.product === "NS")) {
25712
- return false;
25713
- }
25714
- return typeof window !== "undefined" && typeof document !== "undefined";
25715
- }
25716
- function forEach(obj, fn2) {
25717
- if (obj === null || typeof obj === "undefined") {
25718
- return;
25719
- }
25720
- if (typeof obj !== "object") {
25721
- obj = [obj];
25722
- }
25723
- if (isArray$1(obj)) {
25724
- for (var i = 0, l = obj.length; i < l; i++) {
25725
- fn2.call(null, obj[i], i, obj);
25726
- }
25727
- } else {
25728
- for (var key in obj) {
25729
- if (Object.prototype.hasOwnProperty.call(obj, key)) {
25730
- fn2.call(null, obj[key], key, obj);
25731
- }
25732
- }
25733
- }
25734
- }
25735
- function merge$1() {
25736
- var result2 = {};
25737
- function assignValue(val, key) {
25738
- if (isPlainObject(result2[key]) && isPlainObject(val)) {
25739
- result2[key] = merge$1(result2[key], val);
25740
- } else if (isPlainObject(val)) {
25741
- result2[key] = merge$1({}, val);
25742
- } else if (isArray$1(val)) {
25743
- result2[key] = val.slice();
25744
- } else {
25745
- result2[key] = val;
25746
- }
25747
- }
25748
- for (var i = 0, l = arguments.length; i < l; i++) {
25749
- forEach(arguments[i], assignValue);
25750
- }
25751
- return result2;
25752
- }
25753
- function extend$2(a, b2, thisArg) {
25754
- forEach(b2, function assignValue(val, key) {
25755
- if (thisArg && typeof val === "function") {
25756
- a[key] = bind$1(val, thisArg);
25757
- } else {
25758
- a[key] = val;
25759
- }
25760
- });
25761
- return a;
25762
- }
25763
- function stripBOM(content) {
25764
- if (content.charCodeAt(0) === 65279) {
25765
- content = content.slice(1);
25766
- }
25767
- return content;
25768
- }
25769
- function inherits(constructor, superConstructor, props, descriptors2) {
25770
- constructor.prototype = Object.create(superConstructor.prototype, descriptors2);
25771
- constructor.prototype.constructor = constructor;
25772
- props && Object.assign(constructor.prototype, props);
25773
- }
25774
- function toFlatObject(sourceObj, destObj, filter2) {
25775
- var props;
25776
- var i;
25777
- var prop;
25778
- var merged = {};
25779
- destObj = destObj || {};
25780
- do {
25781
- props = Object.getOwnPropertyNames(sourceObj);
25782
- i = props.length;
25783
- while (i-- > 0) {
25784
- prop = props[i];
25785
- if (!merged[prop]) {
25786
- destObj[prop] = sourceObj[prop];
25787
- merged[prop] = true;
25788
- }
25789
- }
25790
- sourceObj = Object.getPrototypeOf(sourceObj);
25791
- } while (sourceObj && (!filter2 || filter2(sourceObj, destObj)) && sourceObj !== Object.prototype);
25792
- return destObj;
25793
- }
25794
- function endsWith(str, searchString, position2) {
25795
- str = String(str);
25796
- if (position2 === void 0 || position2 > str.length) {
25797
- position2 = str.length;
25798
- }
25799
- position2 -= searchString.length;
25800
- var lastIndex = str.indexOf(searchString, position2);
25801
- return lastIndex !== -1 && lastIndex === position2;
25802
- }
25803
- function toArray(thing) {
25804
- if (!thing) return null;
25805
- var i = thing.length;
25806
- if (isUndefined(i)) return null;
25807
- var arr = new Array(i);
25808
- while (i-- > 0) {
25809
- arr[i] = thing[i];
25810
- }
25811
- return arr;
25812
- }
25813
- var isTypedArray = /* @__PURE__ */ function(TypedArray) {
25814
- return function(thing) {
25815
- return TypedArray && thing instanceof TypedArray;
25816
- };
25817
- }(typeof Uint8Array !== "undefined" && Object.getPrototypeOf(Uint8Array));
25818
- var utils$b = {
25819
- isArray: isArray$1,
25820
- isArrayBuffer,
25821
- isBuffer,
25822
- isFormData,
25823
- isArrayBufferView,
25824
- isString,
25825
- isNumber,
25826
- isObject,
25827
- isPlainObject,
25828
- isUndefined,
25829
- isDate,
25830
- isFile,
25831
- isBlob,
25832
- isFunction,
25833
- isStream,
25834
- isURLSearchParams,
25835
- isStandardBrowserEnv,
25836
- forEach,
25837
- merge: merge$1,
25838
- extend: extend$2,
25839
- trim: trim$1,
25840
- stripBOM,
25841
- inherits,
25842
- toFlatObject,
25843
- kindOf,
25844
- kindOfTest,
25845
- endsWith,
25846
- toArray,
25847
- isTypedArray,
25848
- isFileList
25849
- };
25850
- var utils$a = utils$b;
25851
- function encode$1(val) {
25852
- return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
25853
- }
25854
- var buildURL$1 = function buildURL(url, params, paramsSerializer) {
25855
- if (!params) {
25856
- return url;
25857
- }
25858
- var serializedParams;
25859
- if (paramsSerializer) {
25860
- serializedParams = paramsSerializer(params);
25861
- } else if (utils$a.isURLSearchParams(params)) {
25862
- serializedParams = params.toString();
25863
- } else {
25864
- var parts = [];
25865
- utils$a.forEach(params, function serialize(val, key) {
25866
- if (val === null || typeof val === "undefined") {
25867
- return;
25868
- }
25869
- if (utils$a.isArray(val)) {
25870
- key = key + "[]";
25871
- } else {
25872
- val = [val];
25873
- }
25874
- utils$a.forEach(val, function parseValue(v) {
25875
- if (utils$a.isDate(v)) {
25876
- v = v.toISOString();
25877
- } else if (utils$a.isObject(v)) {
25878
- v = JSON.stringify(v);
25879
- }
25880
- parts.push(encode$1(key) + "=" + encode$1(v));
25881
- });
25882
- });
25883
- serializedParams = parts.join("&");
25884
- }
25885
- if (serializedParams) {
25886
- var hashmarkIndex = url.indexOf("#");
25887
- if (hashmarkIndex !== -1) {
25888
- url = url.slice(0, hashmarkIndex);
25889
- }
25890
- url += (url.indexOf("?") === -1 ? "?" : "&") + serializedParams;
25891
- }
25892
- return url;
25893
- };
25894
- var utils$9 = utils$b;
25895
- function InterceptorManager$1() {
25896
- this.handlers = [];
25897
- }
25898
- InterceptorManager$1.prototype.use = function use(fulfilled, rejected, options) {
25899
- this.handlers.push({
25900
- fulfilled,
25901
- rejected,
25902
- synchronous: options ? options.synchronous : false,
25903
- runWhen: options ? options.runWhen : null
25904
- });
25905
- return this.handlers.length - 1;
25906
- };
25907
- InterceptorManager$1.prototype.eject = function eject(id2) {
25908
- if (this.handlers[id2]) {
25909
- this.handlers[id2] = null;
25910
- }
25911
- };
25912
- InterceptorManager$1.prototype.forEach = function forEach2(fn2) {
25913
- utils$9.forEach(this.handlers, function forEachHandler(h) {
25914
- if (h !== null) {
25915
- fn2(h);
25916
- }
25917
- });
25918
- };
25919
- var InterceptorManager_1 = InterceptorManager$1;
25920
- var utils$8 = utils$b;
25921
- var normalizeHeaderName$1 = function normalizeHeaderName(headers, normalizedName) {
25922
- utils$8.forEach(headers, function processHeader(value, name2) {
25923
- if (name2 !== normalizedName && name2.toUpperCase() === normalizedName.toUpperCase()) {
25924
- headers[normalizedName] = value;
25925
- delete headers[name2];
25926
- }
25927
- });
25928
- };
25929
- var utils$7 = utils$b;
25930
- function AxiosError$2(message, code, config2, request2, response) {
25931
- Error.call(this);
25932
- this.message = message;
25933
- this.name = "AxiosError";
25934
- code && (this.code = code);
25935
- config2 && (this.config = config2);
25936
- request2 && (this.request = request2);
25937
- response && (this.response = response);
25938
- }
25939
- utils$7.inherits(AxiosError$2, Error, {
25940
- toJSON: function toJSON() {
25941
- return {
25942
- // Standard
25943
- message: this.message,
25944
- name: this.name,
25945
- // Microsoft
25946
- description: this.description,
25947
- number: this.number,
25948
- // Mozilla
25949
- fileName: this.fileName,
25950
- lineNumber: this.lineNumber,
25951
- columnNumber: this.columnNumber,
25952
- stack: this.stack,
25953
- // Axios
25954
- config: this.config,
25955
- code: this.code,
25956
- status: this.response && this.response.status ? this.response.status : null
25957
- };
25958
- }
25959
- });
25960
- var prototype = AxiosError$2.prototype;
25961
- var descriptors = {};
25962
- [
25963
- "ERR_BAD_OPTION_VALUE",
25964
- "ERR_BAD_OPTION",
25965
- "ECONNABORTED",
25966
- "ETIMEDOUT",
25967
- "ERR_NETWORK",
25968
- "ERR_FR_TOO_MANY_REDIRECTS",
25969
- "ERR_DEPRECATED",
25970
- "ERR_BAD_RESPONSE",
25971
- "ERR_BAD_REQUEST",
25972
- "ERR_CANCELED"
25973
- // eslint-disable-next-line func-names
25974
- ].forEach(function(code) {
25975
- descriptors[code] = { value: code };
25976
- });
25977
- Object.defineProperties(AxiosError$2, descriptors);
25978
- Object.defineProperty(prototype, "isAxiosError", { value: true });
25979
- AxiosError$2.from = function(error, code, config2, request2, response, customProps) {
25980
- var axiosError = Object.create(prototype);
25981
- utils$7.toFlatObject(error, axiosError, function filter2(obj) {
25982
- return obj !== Error.prototype;
25983
- });
25984
- AxiosError$2.call(axiosError, error.message, code, config2, request2, response);
25985
- axiosError.name = error.name;
25986
- customProps && Object.assign(axiosError, customProps);
25987
- return axiosError;
25988
- };
25989
- var AxiosError_1 = AxiosError$2;
25990
- var transitional = {
25991
- silentJSONParsing: true,
25992
- forcedJSONParsing: true,
25993
- clarifyTimeoutError: false
25994
- };
25995
- var utils$6 = utils$b;
25996
- function toFormData$1(obj, formData) {
25997
- formData = formData || new FormData();
25998
- var stack = [];
25999
- function convertValue(value) {
26000
- if (value === null) return "";
26001
- if (utils$6.isDate(value)) {
26002
- return value.toISOString();
26003
- }
26004
- if (utils$6.isArrayBuffer(value) || utils$6.isTypedArray(value)) {
26005
- return typeof Blob === "function" ? new Blob([value]) : Buffer.from(value);
26006
- }
26007
- return value;
26008
- }
26009
- function build3(data2, parentKey) {
26010
- if (utils$6.isPlainObject(data2) || utils$6.isArray(data2)) {
26011
- if (stack.indexOf(data2) !== -1) {
26012
- throw Error("Circular reference detected in " + parentKey);
26013
- }
26014
- stack.push(data2);
26015
- utils$6.forEach(data2, function each2(value, key) {
26016
- if (utils$6.isUndefined(value)) return;
26017
- var fullKey = parentKey ? parentKey + "." + key : key;
26018
- var arr;
26019
- if (value && !parentKey && typeof value === "object") {
26020
- if (utils$6.endsWith(key, "{}")) {
26021
- value = JSON.stringify(value);
26022
- } else if (utils$6.endsWith(key, "[]") && (arr = utils$6.toArray(value))) {
26023
- arr.forEach(function(el) {
26024
- !utils$6.isUndefined(el) && formData.append(fullKey, convertValue(el));
26025
- });
26026
- return;
26027
- }
26028
- }
26029
- build3(value, fullKey);
26030
- });
26031
- stack.pop();
26032
- } else {
26033
- formData.append(parentKey, convertValue(data2));
26034
- }
26035
- }
26036
- build3(obj);
26037
- return formData;
26038
- }
26039
- var toFormData_1 = toFormData$1;
26040
- var settle;
26041
- var hasRequiredSettle;
26042
- function requireSettle() {
26043
- if (hasRequiredSettle) return settle;
26044
- hasRequiredSettle = 1;
26045
- var AxiosError2 = AxiosError_1;
26046
- settle = function settle2(resolve, reject2, response) {
26047
- var validateStatus2 = response.config.validateStatus;
26048
- if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
26049
- resolve(response);
26050
- } else {
26051
- reject2(new AxiosError2(
26052
- "Request failed with status code " + response.status,
26053
- [AxiosError2.ERR_BAD_REQUEST, AxiosError2.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],
26054
- response.config,
26055
- response.request,
26056
- response
26057
- ));
26058
- }
26059
- };
26060
- return settle;
26061
- }
26062
- var cookies;
26063
- var hasRequiredCookies;
26064
- function requireCookies() {
26065
- if (hasRequiredCookies) return cookies;
26066
- hasRequiredCookies = 1;
26067
- var utils2 = utils$b;
26068
- cookies = utils2.isStandardBrowserEnv() ? (
26069
- // Standard browser envs support document.cookie
26070
- /* @__PURE__ */ function standardBrowserEnv() {
26071
- return {
26072
- write: function write(name2, value, expires, path, domain, secure) {
26073
- var cookie = [];
26074
- cookie.push(name2 + "=" + encodeURIComponent(value));
26075
- if (utils2.isNumber(expires)) {
26076
- cookie.push("expires=" + new Date(expires).toGMTString());
26077
- }
26078
- if (utils2.isString(path)) {
26079
- cookie.push("path=" + path);
26080
- }
26081
- if (utils2.isString(domain)) {
26082
- cookie.push("domain=" + domain);
26083
- }
26084
- if (secure === true) {
26085
- cookie.push("secure");
26086
- }
26087
- document.cookie = cookie.join("; ");
26088
- },
26089
- read: function read(name2) {
26090
- var match2 = document.cookie.match(new RegExp("(^|;\\s*)(" + name2 + ")=([^;]*)"));
26091
- return match2 ? decodeURIComponent(match2[3]) : null;
26092
- },
26093
- remove: function remove(name2) {
26094
- this.write(name2, "", Date.now() - 864e5);
26095
- }
26096
- };
26097
- }()
26098
- ) : (
26099
- // Non standard browser env (web workers, react-native) lack needed support.
26100
- /* @__PURE__ */ function nonStandardBrowserEnv() {
26101
- return {
26102
- write: function write() {
26103
- },
26104
- read: function read() {
26105
- return null;
26106
- },
26107
- remove: function remove() {
26108
- }
26109
- };
26110
- }()
26111
- );
26112
- return cookies;
26113
- }
26114
- var isAbsoluteURL$1 = function isAbsoluteURL(url) {
26115
- return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url);
26116
- };
26117
- var combineURLs$1 = function combineURLs(baseURL, relativeURL) {
26118
- return relativeURL ? baseURL.replace(/\/+$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
26119
- };
26120
- var isAbsoluteURL2 = isAbsoluteURL$1;
26121
- var combineURLs2 = combineURLs$1;
26122
- var buildFullPath$1 = function buildFullPath(baseURL, requestedURL) {
26123
- if (baseURL && !isAbsoluteURL2(requestedURL)) {
26124
- return combineURLs2(baseURL, requestedURL);
26125
- }
26126
- return requestedURL;
26127
- };
26128
- var parseHeaders;
26129
- var hasRequiredParseHeaders;
26130
- function requireParseHeaders() {
26131
- if (hasRequiredParseHeaders) return parseHeaders;
26132
- hasRequiredParseHeaders = 1;
26133
- var utils2 = utils$b;
26134
- var ignoreDuplicateOf = [
26135
- "age",
26136
- "authorization",
26137
- "content-length",
26138
- "content-type",
26139
- "etag",
26140
- "expires",
26141
- "from",
26142
- "host",
26143
- "if-modified-since",
26144
- "if-unmodified-since",
26145
- "last-modified",
26146
- "location",
26147
- "max-forwards",
26148
- "proxy-authorization",
26149
- "referer",
26150
- "retry-after",
26151
- "user-agent"
26152
- ];
26153
- parseHeaders = function parseHeaders2(headers) {
26154
- var parsed = {};
26155
- var key;
26156
- var val;
26157
- var i;
26158
- if (!headers) {
26159
- return parsed;
26160
- }
26161
- utils2.forEach(headers.split("\n"), function parser2(line) {
26162
- i = line.indexOf(":");
26163
- key = utils2.trim(line.substr(0, i)).toLowerCase();
26164
- val = utils2.trim(line.substr(i + 1));
26165
- if (key) {
26166
- if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) {
26167
- return;
26168
- }
26169
- if (key === "set-cookie") {
26170
- parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]);
26171
- } else {
26172
- parsed[key] = parsed[key] ? parsed[key] + ", " + val : val;
26173
- }
26174
- }
26175
- });
26176
- return parsed;
26177
- };
26178
- return parseHeaders;
26179
- }
26180
- var isURLSameOrigin;
26181
- var hasRequiredIsURLSameOrigin;
26182
- function requireIsURLSameOrigin() {
26183
- if (hasRequiredIsURLSameOrigin) return isURLSameOrigin;
26184
- hasRequiredIsURLSameOrigin = 1;
26185
- var utils2 = utils$b;
26186
- isURLSameOrigin = utils2.isStandardBrowserEnv() ? (
26187
- // Standard browser envs have full support of the APIs needed to test
26188
- // whether the request URL is of the same origin as current location.
26189
- function standardBrowserEnv() {
26190
- var msie = /(msie|trident)/i.test(navigator.userAgent);
26191
- var urlParsingNode = document.createElement("a");
26192
- var originURL;
26193
- function resolveURL(url) {
26194
- var href = url;
26195
- if (msie) {
26196
- urlParsingNode.setAttribute("href", href);
26197
- href = urlParsingNode.href;
26198
- }
26199
- urlParsingNode.setAttribute("href", href);
26200
- return {
26201
- href: urlParsingNode.href,
26202
- protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, "") : "",
26203
- host: urlParsingNode.host,
26204
- search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, "") : "",
26205
- hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, "") : "",
26206
- hostname: urlParsingNode.hostname,
26207
- port: urlParsingNode.port,
26208
- pathname: urlParsingNode.pathname.charAt(0) === "/" ? urlParsingNode.pathname : "/" + urlParsingNode.pathname
26209
- };
26210
- }
26211
- originURL = resolveURL(window.location.href);
26212
- return function isURLSameOrigin2(requestURL) {
26213
- var parsed = utils2.isString(requestURL) ? resolveURL(requestURL) : requestURL;
26214
- return parsed.protocol === originURL.protocol && parsed.host === originURL.host;
26215
- };
26216
- }()
26217
- ) : (
26218
- // Non standard browser envs (web workers, react-native) lack needed support.
26219
- /* @__PURE__ */ function nonStandardBrowserEnv() {
26220
- return function isURLSameOrigin2() {
26221
- return true;
26222
- };
26223
- }()
26224
- );
26225
- return isURLSameOrigin;
26226
- }
26227
- var CanceledError_1;
26228
- var hasRequiredCanceledError;
26229
- function requireCanceledError() {
26230
- if (hasRequiredCanceledError) return CanceledError_1;
26231
- hasRequiredCanceledError = 1;
26232
- var AxiosError2 = AxiosError_1;
26233
- var utils2 = utils$b;
26234
- function CanceledError2(message) {
26235
- AxiosError2.call(this, message == null ? "canceled" : message, AxiosError2.ERR_CANCELED);
26236
- this.name = "CanceledError";
26237
- }
26238
- utils2.inherits(CanceledError2, AxiosError2, {
26239
- __CANCEL__: true
26240
- });
26241
- CanceledError_1 = CanceledError2;
26242
- return CanceledError_1;
26243
- }
26244
- var parseProtocol;
26245
- var hasRequiredParseProtocol;
26246
- function requireParseProtocol() {
26247
- if (hasRequiredParseProtocol) return parseProtocol;
26248
- hasRequiredParseProtocol = 1;
26249
- parseProtocol = function parseProtocol2(url) {
26250
- var match2 = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
26251
- return match2 && match2[1] || "";
26252
- };
26253
- return parseProtocol;
26254
- }
26255
- var xhr;
26256
- var hasRequiredXhr;
26257
- function requireXhr() {
26258
- if (hasRequiredXhr) return xhr;
26259
- hasRequiredXhr = 1;
26260
- var utils2 = utils$b;
26261
- var settle2 = requireSettle();
26262
- var cookies2 = requireCookies();
26263
- var buildURL3 = buildURL$1;
26264
- var buildFullPath3 = buildFullPath$1;
26265
- var parseHeaders2 = requireParseHeaders();
26266
- var isURLSameOrigin2 = requireIsURLSameOrigin();
26267
- var transitionalDefaults2 = transitional;
26268
- var AxiosError2 = AxiosError_1;
26269
- var CanceledError2 = requireCanceledError();
26270
- var parseProtocol2 = requireParseProtocol();
26271
- xhr = function xhrAdapter(config2) {
26272
- return new Promise(function dispatchXhrRequest(resolve, reject2) {
26273
- var requestData = config2.data;
26274
- var requestHeaders = config2.headers;
26275
- var responseType = config2.responseType;
26276
- var onCanceled;
26277
- function done() {
26278
- if (config2.cancelToken) {
26279
- config2.cancelToken.unsubscribe(onCanceled);
26280
- }
26281
- if (config2.signal) {
26282
- config2.signal.removeEventListener("abort", onCanceled);
26283
- }
26284
- }
26285
- if (utils2.isFormData(requestData) && utils2.isStandardBrowserEnv()) {
26286
- delete requestHeaders["Content-Type"];
26287
- }
26288
- var request2 = new XMLHttpRequest();
26289
- if (config2.auth) {
26290
- var username = config2.auth.username || "";
26291
- var password = config2.auth.password ? unescape(encodeURIComponent(config2.auth.password)) : "";
26292
- requestHeaders.Authorization = "Basic " + btoa(username + ":" + password);
26293
- }
26294
- var fullPath = buildFullPath3(config2.baseURL, config2.url);
26295
- request2.open(config2.method.toUpperCase(), buildURL3(fullPath, config2.params, config2.paramsSerializer), true);
26296
- request2.timeout = config2.timeout;
26297
- function onloadend() {
26298
- if (!request2) {
26299
- return;
26300
- }
26301
- var responseHeaders = "getAllResponseHeaders" in request2 ? parseHeaders2(request2.getAllResponseHeaders()) : null;
26302
- var responseData = !responseType || responseType === "text" || responseType === "json" ? request2.responseText : request2.response;
26303
- var response = {
26304
- data: responseData,
26305
- status: request2.status,
26306
- statusText: request2.statusText,
26307
- headers: responseHeaders,
26308
- config: config2,
26309
- request: request2
26310
- };
26311
- settle2(function _resolve(value) {
26312
- resolve(value);
26313
- done();
26314
- }, function _reject(err2) {
26315
- reject2(err2);
26316
- done();
26317
- }, response);
26318
- request2 = null;
26319
- }
26320
- if ("onloadend" in request2) {
26321
- request2.onloadend = onloadend;
26322
- } else {
26323
- request2.onreadystatechange = function handleLoad() {
26324
- if (!request2 || request2.readyState !== 4) {
26325
- return;
26326
- }
26327
- if (request2.status === 0 && !(request2.responseURL && request2.responseURL.indexOf("file:") === 0)) {
26328
- return;
26329
- }
26330
- setTimeout(onloadend);
26331
- };
26332
- }
26333
- request2.onabort = function handleAbort() {
26334
- if (!request2) {
26335
- return;
26336
- }
26337
- reject2(new AxiosError2("Request aborted", AxiosError2.ECONNABORTED, config2, request2));
26338
- request2 = null;
26339
- };
26340
- request2.onerror = function handleError() {
26341
- reject2(new AxiosError2("Network Error", AxiosError2.ERR_NETWORK, config2, request2, request2));
26342
- request2 = null;
26343
- };
26344
- request2.ontimeout = function handleTimeout() {
26345
- var timeoutErrorMessage = config2.timeout ? "timeout of " + config2.timeout + "ms exceeded" : "timeout exceeded";
26346
- var transitional3 = config2.transitional || transitionalDefaults2;
26347
- if (config2.timeoutErrorMessage) {
26348
- timeoutErrorMessage = config2.timeoutErrorMessage;
26349
- }
26350
- reject2(new AxiosError2(
26351
- timeoutErrorMessage,
26352
- transitional3.clarifyTimeoutError ? AxiosError2.ETIMEDOUT : AxiosError2.ECONNABORTED,
26353
- config2,
26354
- request2
26355
- ));
26356
- request2 = null;
26357
- };
26358
- if (utils2.isStandardBrowserEnv()) {
26359
- var xsrfValue = (config2.withCredentials || isURLSameOrigin2(fullPath)) && config2.xsrfCookieName ? cookies2.read(config2.xsrfCookieName) : void 0;
26360
- if (xsrfValue) {
26361
- requestHeaders[config2.xsrfHeaderName] = xsrfValue;
26362
- }
26363
- }
26364
- if ("setRequestHeader" in request2) {
26365
- utils2.forEach(requestHeaders, function setRequestHeader(val, key) {
26366
- if (typeof requestData === "undefined" && key.toLowerCase() === "content-type") {
26367
- delete requestHeaders[key];
26368
- } else {
26369
- request2.setRequestHeader(key, val);
26370
- }
26371
- });
26372
- }
26373
- if (!utils2.isUndefined(config2.withCredentials)) {
26374
- request2.withCredentials = !!config2.withCredentials;
26375
- }
26376
- if (responseType && responseType !== "json") {
26377
- request2.responseType = config2.responseType;
26378
- }
26379
- if (typeof config2.onDownloadProgress === "function") {
26380
- request2.addEventListener("progress", config2.onDownloadProgress);
26381
- }
26382
- if (typeof config2.onUploadProgress === "function" && request2.upload) {
26383
- request2.upload.addEventListener("progress", config2.onUploadProgress);
26384
- }
26385
- if (config2.cancelToken || config2.signal) {
26386
- onCanceled = function(cancel) {
26387
- if (!request2) {
26388
- return;
26389
- }
26390
- reject2(!cancel || cancel && cancel.type ? new CanceledError2() : cancel);
26391
- request2.abort();
26392
- request2 = null;
26393
- };
26394
- config2.cancelToken && config2.cancelToken.subscribe(onCanceled);
26395
- if (config2.signal) {
26396
- config2.signal.aborted ? onCanceled() : config2.signal.addEventListener("abort", onCanceled);
26397
- }
26398
- }
26399
- if (!requestData) {
26400
- requestData = null;
26401
- }
26402
- var protocol = parseProtocol2(fullPath);
26403
- if (protocol && ["http", "https", "file"].indexOf(protocol) === -1) {
26404
- reject2(new AxiosError2("Unsupported protocol " + protocol + ":", AxiosError2.ERR_BAD_REQUEST, config2));
26405
- return;
26406
- }
26407
- request2.send(requestData);
26408
- });
26409
- };
26410
- return xhr;
26411
- }
26412
- var _null;
26413
- var hasRequired_null;
26414
- function require_null() {
26415
- if (hasRequired_null) return _null;
26416
- hasRequired_null = 1;
26417
- _null = null;
26418
- return _null;
26419
- }
26420
- var utils$5 = utils$b;
26421
- var normalizeHeaderName2 = normalizeHeaderName$1;
26422
- var AxiosError$1 = AxiosError_1;
26423
- var transitionalDefaults = transitional;
26424
- var toFormData = toFormData_1;
26425
- var DEFAULT_CONTENT_TYPE = {
26426
- "Content-Type": "application/x-www-form-urlencoded"
26427
- };
26428
- function setContentTypeIfUnset(headers, value) {
26429
- if (!utils$5.isUndefined(headers) && utils$5.isUndefined(headers["Content-Type"])) {
26430
- headers["Content-Type"] = value;
26431
- }
26432
- }
26433
- function getDefaultAdapter() {
26434
- var adapter;
26435
- if (typeof XMLHttpRequest !== "undefined") {
26436
- adapter = requireXhr();
26437
- } else if (typeof process !== "undefined" && Object.prototype.toString.call(process) === "[object process]") {
26438
- adapter = requireXhr();
26439
- }
26440
- return adapter;
26441
- }
26442
- function stringifySafely(rawValue, parser2, encoder) {
26443
- if (utils$5.isString(rawValue)) {
26444
- try {
26445
- (parser2 || JSON.parse)(rawValue);
26446
- return utils$5.trim(rawValue);
26447
- } catch (e2) {
26448
- if (e2.name !== "SyntaxError") {
26449
- throw e2;
26450
- }
26451
- }
26452
- }
26453
- return (0, JSON.stringify)(rawValue);
26454
- }
26455
- var defaults$3 = {
26456
- transitional: transitionalDefaults,
26457
- adapter: getDefaultAdapter(),
26458
- transformRequest: [function transformRequest(data2, headers) {
26459
- normalizeHeaderName2(headers, "Accept");
26460
- normalizeHeaderName2(headers, "Content-Type");
26461
- if (utils$5.isFormData(data2) || utils$5.isArrayBuffer(data2) || utils$5.isBuffer(data2) || utils$5.isStream(data2) || utils$5.isFile(data2) || utils$5.isBlob(data2)) {
26462
- return data2;
26463
- }
26464
- if (utils$5.isArrayBufferView(data2)) {
26465
- return data2.buffer;
26466
- }
26467
- if (utils$5.isURLSearchParams(data2)) {
26468
- setContentTypeIfUnset(headers, "application/x-www-form-urlencoded;charset=utf-8");
26469
- return data2.toString();
26470
- }
26471
- var isObjectPayload = utils$5.isObject(data2);
26472
- var contentType = headers && headers["Content-Type"];
26473
- var isFileList2;
26474
- if ((isFileList2 = utils$5.isFileList(data2)) || isObjectPayload && contentType === "multipart/form-data") {
26475
- var _FormData = this.env && this.env.FormData;
26476
- return toFormData(isFileList2 ? { "files[]": data2 } : data2, _FormData && new _FormData());
26477
- } else if (isObjectPayload || contentType === "application/json") {
26478
- setContentTypeIfUnset(headers, "application/json");
26479
- return stringifySafely(data2);
26480
- }
26481
- return data2;
26482
- }],
26483
- transformResponse: [function transformResponse(data2) {
26484
- var transitional3 = this.transitional || defaults$3.transitional;
26485
- var silentJSONParsing = transitional3 && transitional3.silentJSONParsing;
26486
- var forcedJSONParsing = transitional3 && transitional3.forcedJSONParsing;
26487
- var strictJSONParsing = !silentJSONParsing && this.responseType === "json";
26488
- if (strictJSONParsing || forcedJSONParsing && utils$5.isString(data2) && data2.length) {
26489
- try {
26490
- return JSON.parse(data2);
26491
- } catch (e2) {
26492
- if (strictJSONParsing) {
26493
- if (e2.name === "SyntaxError") {
26494
- throw AxiosError$1.from(e2, AxiosError$1.ERR_BAD_RESPONSE, this, null, this.response);
26495
- }
26496
- throw e2;
26497
- }
26498
- }
26499
- }
26500
- return data2;
26501
- }],
26502
- /**
26503
- * A timeout in milliseconds to abort a request. If set to 0 (default) a
26504
- * timeout is not created.
26505
- */
26506
- timeout: 0,
26507
- xsrfCookieName: "XSRF-TOKEN",
26508
- xsrfHeaderName: "X-XSRF-TOKEN",
26509
- maxContentLength: -1,
26510
- maxBodyLength: -1,
26511
- env: {
26512
- FormData: require_null()
26513
- },
26514
- validateStatus: function validateStatus(status) {
26515
- return status >= 200 && status < 300;
26516
- },
26517
- headers: {
26518
- common: {
26519
- "Accept": "application/json, text/plain, */*"
26520
- }
26521
- }
26522
- };
26523
- utils$5.forEach(["delete", "get", "head"], function forEachMethodNoData(method) {
26524
- defaults$3.headers[method] = {};
26525
- });
26526
- utils$5.forEach(["post", "put", "patch"], function forEachMethodWithData(method) {
26527
- defaults$3.headers[method] = utils$5.merge(DEFAULT_CONTENT_TYPE);
26528
- });
26529
- var defaults_1 = defaults$3;
26530
- var utils$4 = utils$b;
26531
- var defaults$2 = defaults_1;
26532
- var transformData$1 = function transformData(data2, headers, fns) {
26533
- var context = this || defaults$2;
26534
- utils$4.forEach(fns, function transform2(fn2) {
26535
- data2 = fn2.call(context, data2, headers);
26536
- });
26537
- return data2;
26538
- };
26539
- var isCancel$1;
26540
- var hasRequiredIsCancel;
26541
- function requireIsCancel() {
26542
- if (hasRequiredIsCancel) return isCancel$1;
26543
- hasRequiredIsCancel = 1;
26544
- isCancel$1 = function isCancel2(value) {
26545
- return !!(value && value.__CANCEL__);
26546
- };
26547
- return isCancel$1;
26548
- }
26549
- var utils$3 = utils$b;
26550
- var transformData2 = transformData$1;
26551
- var isCancel = requireIsCancel();
26552
- var defaults$1 = defaults_1;
26553
- var CanceledError = requireCanceledError();
26554
- function throwIfCancellationRequested(config2) {
26555
- if (config2.cancelToken) {
26556
- config2.cancelToken.throwIfRequested();
26557
- }
26558
- if (config2.signal && config2.signal.aborted) {
26559
- throw new CanceledError();
26560
- }
26561
- }
26562
- var dispatchRequest$1 = function dispatchRequest(config2) {
26563
- throwIfCancellationRequested(config2);
26564
- config2.headers = config2.headers || {};
26565
- config2.data = transformData2.call(
26566
- config2,
26567
- config2.data,
26568
- config2.headers,
26569
- config2.transformRequest
26570
- );
26571
- config2.headers = utils$3.merge(
26572
- config2.headers.common || {},
26573
- config2.headers[config2.method] || {},
26574
- config2.headers
26575
- );
26576
- utils$3.forEach(
26577
- ["delete", "get", "head", "post", "put", "patch", "common"],
26578
- function cleanHeaderConfig(method) {
26579
- delete config2.headers[method];
26580
- }
26581
- );
26582
- var adapter = config2.adapter || defaults$1.adapter;
26583
- return adapter(config2).then(function onAdapterResolution(response) {
26584
- throwIfCancellationRequested(config2);
26585
- response.data = transformData2.call(
26586
- config2,
26587
- response.data,
26588
- response.headers,
26589
- config2.transformResponse
26590
- );
26591
- return response;
26592
- }, function onAdapterRejection(reason) {
26593
- if (!isCancel(reason)) {
26594
- throwIfCancellationRequested(config2);
26595
- if (reason && reason.response) {
26596
- reason.response.data = transformData2.call(
26597
- config2,
26598
- reason.response.data,
26599
- reason.response.headers,
26600
- config2.transformResponse
26601
- );
26602
- }
26603
- }
26604
- return Promise.reject(reason);
26605
- });
26606
- };
26607
- var utils$2 = utils$b;
26608
- var mergeConfig$2 = function mergeConfig(config1, config2) {
26609
- config2 = config2 || {};
26610
- var config3 = {};
26611
- function getMergedValue(target, source) {
26612
- if (utils$2.isPlainObject(target) && utils$2.isPlainObject(source)) {
26613
- return utils$2.merge(target, source);
26614
- } else if (utils$2.isPlainObject(source)) {
26615
- return utils$2.merge({}, source);
26616
- } else if (utils$2.isArray(source)) {
26617
- return source.slice();
26618
- }
26619
- return source;
26620
- }
26621
- function mergeDeepProperties(prop) {
26622
- if (!utils$2.isUndefined(config2[prop])) {
26623
- return getMergedValue(config1[prop], config2[prop]);
26624
- } else if (!utils$2.isUndefined(config1[prop])) {
26625
- return getMergedValue(void 0, config1[prop]);
26626
- }
26627
- }
26628
- function valueFromConfig2(prop) {
26629
- if (!utils$2.isUndefined(config2[prop])) {
26630
- return getMergedValue(void 0, config2[prop]);
26631
- }
26632
- }
26633
- function defaultToConfig2(prop) {
26634
- if (!utils$2.isUndefined(config2[prop])) {
26635
- return getMergedValue(void 0, config2[prop]);
26636
- } else if (!utils$2.isUndefined(config1[prop])) {
26637
- return getMergedValue(void 0, config1[prop]);
26638
- }
26639
- }
26640
- function mergeDirectKeys(prop) {
26641
- if (prop in config2) {
26642
- return getMergedValue(config1[prop], config2[prop]);
26643
- } else if (prop in config1) {
26644
- return getMergedValue(void 0, config1[prop]);
26645
- }
26646
- }
26647
- var mergeMap = {
26648
- "url": valueFromConfig2,
26649
- "method": valueFromConfig2,
26650
- "data": valueFromConfig2,
26651
- "baseURL": defaultToConfig2,
26652
- "transformRequest": defaultToConfig2,
26653
- "transformResponse": defaultToConfig2,
26654
- "paramsSerializer": defaultToConfig2,
26655
- "timeout": defaultToConfig2,
26656
- "timeoutMessage": defaultToConfig2,
26657
- "withCredentials": defaultToConfig2,
26658
- "adapter": defaultToConfig2,
26659
- "responseType": defaultToConfig2,
26660
- "xsrfCookieName": defaultToConfig2,
26661
- "xsrfHeaderName": defaultToConfig2,
26662
- "onUploadProgress": defaultToConfig2,
26663
- "onDownloadProgress": defaultToConfig2,
26664
- "decompress": defaultToConfig2,
26665
- "maxContentLength": defaultToConfig2,
26666
- "maxBodyLength": defaultToConfig2,
26667
- "beforeRedirect": defaultToConfig2,
26668
- "transport": defaultToConfig2,
26669
- "httpAgent": defaultToConfig2,
26670
- "httpsAgent": defaultToConfig2,
26671
- "cancelToken": defaultToConfig2,
26672
- "socketPath": defaultToConfig2,
26673
- "responseEncoding": defaultToConfig2,
26674
- "validateStatus": mergeDirectKeys
26675
- };
26676
- utils$2.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) {
26677
- var merge3 = mergeMap[prop] || mergeDeepProperties;
26678
- var configValue = merge3(prop);
26679
- utils$2.isUndefined(configValue) && merge3 !== mergeDirectKeys || (config3[prop] = configValue);
26680
- });
26681
- return config3;
26682
- };
26683
- var data;
26684
- var hasRequiredData;
26685
- function requireData() {
26686
- if (hasRequiredData) return data;
26687
- hasRequiredData = 1;
26688
- data = {
26689
- "version": "0.27.2"
26690
- };
26691
- return data;
26692
- }
26693
- var VERSION = requireData().version;
26694
- var AxiosError = AxiosError_1;
26695
- var validators$1 = {};
26696
- ["object", "boolean", "number", "function", "string", "symbol"].forEach(function(type, i) {
26697
- validators$1[type] = function validator2(thing) {
26698
- return typeof thing === type || "a" + (i < 1 ? "n " : " ") + type;
26699
- };
26700
- });
26701
- var deprecatedWarnings = {};
26702
- validators$1.transitional = function transitional2(validator2, version2, message) {
26703
- function formatMessage(opt, desc) {
26704
- return "[Axios v" + VERSION + "] Transitional option '" + opt + "'" + desc + (message ? ". " + message : "");
26705
- }
26706
- return function(value, opt, opts) {
26707
- if (validator2 === false) {
26708
- throw new AxiosError(
26709
- formatMessage(opt, " has been removed" + (version2 ? " in " + version2 : "")),
26710
- AxiosError.ERR_DEPRECATED
26711
- );
26712
- }
26713
- if (version2 && !deprecatedWarnings[opt]) {
26714
- deprecatedWarnings[opt] = true;
26715
- console.warn(
26716
- formatMessage(
26717
- opt,
26718
- " has been deprecated since v" + version2 + " and will be removed in the near future"
26719
- )
26720
- );
26721
- }
26722
- return validator2 ? validator2(value, opt, opts) : true;
26723
- };
26724
- };
26725
- function assertOptions(options, schema, allowUnknown) {
26726
- if (typeof options !== "object") {
26727
- throw new AxiosError("options must be an object", AxiosError.ERR_BAD_OPTION_VALUE);
26728
- }
26729
- var keys2 = Object.keys(options);
26730
- var i = keys2.length;
26731
- while (i-- > 0) {
26732
- var opt = keys2[i];
26733
- var validator2 = schema[opt];
26734
- if (validator2) {
26735
- var value = options[opt];
26736
- var result2 = value === void 0 || validator2(value, opt, options);
26737
- if (result2 !== true) {
26738
- throw new AxiosError("option " + opt + " must be " + result2, AxiosError.ERR_BAD_OPTION_VALUE);
26739
- }
26740
- continue;
26741
- }
26742
- if (allowUnknown !== true) {
26743
- throw new AxiosError("Unknown option " + opt, AxiosError.ERR_BAD_OPTION);
26744
- }
26745
- }
26746
- }
26747
- var validator$1 = {
26748
- assertOptions,
26749
- validators: validators$1
26750
- };
26751
- var utils$1 = utils$b;
26752
- var buildURL2 = buildURL$1;
26753
- var InterceptorManager = InterceptorManager_1;
26754
- var dispatchRequest2 = dispatchRequest$1;
26755
- var mergeConfig$1 = mergeConfig$2;
26756
- var buildFullPath2 = buildFullPath$1;
26757
- var validator = validator$1;
26758
- var validators = validator.validators;
26759
- function Axios$1(instanceConfig) {
26760
- this.defaults = instanceConfig;
26761
- this.interceptors = {
26762
- request: new InterceptorManager(),
26763
- response: new InterceptorManager()
26764
- };
26765
- }
26766
- Axios$1.prototype.request = function request(configOrUrl, config2) {
26767
- if (typeof configOrUrl === "string") {
26768
- config2 = config2 || {};
26769
- config2.url = configOrUrl;
26770
- } else {
26771
- config2 = configOrUrl || {};
26772
- }
26773
- config2 = mergeConfig$1(this.defaults, config2);
26774
- if (config2.method) {
26775
- config2.method = config2.method.toLowerCase();
26776
- } else if (this.defaults.method) {
26777
- config2.method = this.defaults.method.toLowerCase();
26778
- } else {
26779
- config2.method = "get";
26780
- }
26781
- var transitional3 = config2.transitional;
26782
- if (transitional3 !== void 0) {
26783
- validator.assertOptions(transitional3, {
26784
- silentJSONParsing: validators.transitional(validators.boolean),
26785
- forcedJSONParsing: validators.transitional(validators.boolean),
26786
- clarifyTimeoutError: validators.transitional(validators.boolean)
26787
- }, false);
26788
- }
26789
- var requestInterceptorChain = [];
26790
- var synchronousRequestInterceptors = true;
26791
- this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {
26792
- if (typeof interceptor.runWhen === "function" && interceptor.runWhen(config2) === false) {
26793
- return;
26794
- }
26795
- synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;
26796
- requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
26797
- });
26798
- var responseInterceptorChain = [];
26799
- this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {
26800
- responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
26801
- });
26802
- var promise;
26803
- if (!synchronousRequestInterceptors) {
26804
- var chain2 = [dispatchRequest2, void 0];
26805
- Array.prototype.unshift.apply(chain2, requestInterceptorChain);
26806
- chain2 = chain2.concat(responseInterceptorChain);
26807
- promise = Promise.resolve(config2);
26808
- while (chain2.length) {
26809
- promise = promise.then(chain2.shift(), chain2.shift());
26810
- }
26811
- return promise;
26812
- }
26813
- var newConfig = config2;
26814
- while (requestInterceptorChain.length) {
26815
- var onFulfilled = requestInterceptorChain.shift();
26816
- var onRejected = requestInterceptorChain.shift();
26817
- try {
26818
- newConfig = onFulfilled(newConfig);
26819
- } catch (error) {
26820
- onRejected(error);
26821
- break;
26822
- }
26823
- }
26824
- try {
26825
- promise = dispatchRequest2(newConfig);
26826
- } catch (error) {
26827
- return Promise.reject(error);
26828
- }
26829
- while (responseInterceptorChain.length) {
26830
- promise = promise.then(responseInterceptorChain.shift(), responseInterceptorChain.shift());
26831
- }
26832
- return promise;
26833
- };
26834
- Axios$1.prototype.getUri = function getUri(config2) {
26835
- config2 = mergeConfig$1(this.defaults, config2);
26836
- var fullPath = buildFullPath2(config2.baseURL, config2.url);
26837
- return buildURL2(fullPath, config2.params, config2.paramsSerializer);
26838
- };
26839
- utils$1.forEach(["delete", "get", "head", "options"], function forEachMethodNoData2(method) {
26840
- Axios$1.prototype[method] = function(url, config2) {
26841
- return this.request(mergeConfig$1(config2 || {}, {
26842
- method,
26843
- url,
26844
- data: (config2 || {}).data
26845
- }));
26846
- };
26847
- });
26848
- utils$1.forEach(["post", "put", "patch"], function forEachMethodWithData2(method) {
26849
- function generateHTTPMethod(isForm) {
26850
- return function httpMethod(url, data2, config2) {
26851
- return this.request(mergeConfig$1(config2 || {}, {
26852
- method,
26853
- headers: isForm ? {
26854
- "Content-Type": "multipart/form-data"
26855
- } : {},
26856
- url,
26857
- data: data2
26858
- }));
26859
- };
26860
- }
26861
- Axios$1.prototype[method] = generateHTTPMethod();
26862
- Axios$1.prototype[method + "Form"] = generateHTTPMethod(true);
26863
- });
26864
- var Axios_1 = Axios$1;
26865
- var CancelToken_1;
26866
- var hasRequiredCancelToken;
26867
- function requireCancelToken() {
26868
- if (hasRequiredCancelToken) return CancelToken_1;
26869
- hasRequiredCancelToken = 1;
26870
- var CanceledError2 = requireCanceledError();
26871
- function CancelToken(executor) {
26872
- if (typeof executor !== "function") {
26873
- throw new TypeError("executor must be a function.");
26874
- }
26875
- var resolvePromise;
26876
- this.promise = new Promise(function promiseExecutor(resolve) {
26877
- resolvePromise = resolve;
26878
- });
26879
- var token = this;
26880
- this.promise.then(function(cancel) {
26881
- if (!token._listeners) return;
26882
- var i;
26883
- var l = token._listeners.length;
26884
- for (i = 0; i < l; i++) {
26885
- token._listeners[i](cancel);
26886
- }
26887
- token._listeners = null;
26888
- });
26889
- this.promise.then = function(onfulfilled) {
26890
- var _resolve;
26891
- var promise = new Promise(function(resolve) {
26892
- token.subscribe(resolve);
26893
- _resolve = resolve;
26894
- }).then(onfulfilled);
26895
- promise.cancel = function reject2() {
26896
- token.unsubscribe(_resolve);
26897
- };
26898
- return promise;
26899
- };
26900
- executor(function cancel(message) {
26901
- if (token.reason) {
26902
- return;
26903
- }
26904
- token.reason = new CanceledError2(message);
26905
- resolvePromise(token.reason);
26906
- });
26907
- }
26908
- CancelToken.prototype.throwIfRequested = function throwIfRequested() {
26909
- if (this.reason) {
26910
- throw this.reason;
26911
- }
26912
- };
26913
- CancelToken.prototype.subscribe = function subscribe2(listener3) {
26914
- if (this.reason) {
26915
- listener3(this.reason);
26916
- return;
26917
- }
26918
- if (this._listeners) {
26919
- this._listeners.push(listener3);
26920
- } else {
26921
- this._listeners = [listener3];
26922
- }
26923
- };
26924
- CancelToken.prototype.unsubscribe = function unsubscribe(listener3) {
26925
- if (!this._listeners) {
26926
- return;
26927
- }
26928
- var index2 = this._listeners.indexOf(listener3);
26929
- if (index2 !== -1) {
26930
- this._listeners.splice(index2, 1);
26931
- }
26932
- };
26933
- CancelToken.source = function source() {
26934
- var cancel;
26935
- var token = new CancelToken(function executor(c2) {
26936
- cancel = c2;
26937
- });
26938
- return {
26939
- token,
26940
- cancel
26941
- };
26942
- };
26943
- CancelToken_1 = CancelToken;
26944
- return CancelToken_1;
26945
- }
26946
- var spread;
26947
- var hasRequiredSpread;
26948
- function requireSpread() {
26949
- if (hasRequiredSpread) return spread;
26950
- hasRequiredSpread = 1;
26951
- spread = function spread2(callback) {
26952
- return function wrap2(arr) {
26953
- return callback.apply(null, arr);
26954
- };
26955
- };
26956
- return spread;
26957
- }
26958
- var isAxiosError;
26959
- var hasRequiredIsAxiosError;
26960
- function requireIsAxiosError() {
26961
- if (hasRequiredIsAxiosError) return isAxiosError;
26962
- hasRequiredIsAxiosError = 1;
26963
- var utils2 = utils$b;
26964
- isAxiosError = function isAxiosError2(payload) {
26965
- return utils2.isObject(payload) && payload.isAxiosError === true;
26966
- };
26967
- return isAxiosError;
26968
- }
26969
- var utils$c = utils$b;
26970
- var bind2 = bind$2;
26971
- var Axios = Axios_1;
26972
- var mergeConfig2 = mergeConfig$2;
26973
- var defaults = defaults_1;
26974
- function createInstance(defaultConfig) {
26975
- var context = new Axios(defaultConfig);
26976
- var instance = bind2(Axios.prototype.request, context);
26977
- utils$c.extend(instance, Axios.prototype, context);
26978
- utils$c.extend(instance, context);
26979
- instance.create = function create2(instanceConfig) {
26980
- return createInstance(mergeConfig2(defaultConfig, instanceConfig));
26981
- };
26982
- return instance;
26983
- }
26984
- var axios$2 = createInstance(defaults);
26985
- axios$2.Axios = Axios;
26986
- axios$2.CanceledError = requireCanceledError();
26987
- axios$2.CancelToken = requireCancelToken();
26988
- axios$2.isCancel = requireIsCancel();
26989
- axios$2.VERSION = requireData().version;
26990
- axios$2.toFormData = toFormData_1;
26991
- axios$2.AxiosError = AxiosError_1;
26992
- axios$2.Cancel = axios$2.CanceledError;
26993
- axios$2.all = function all2(promises) {
26994
- return Promise.all(promises);
26995
- };
26996
- axios$2.spread = requireSpread();
26997
- axios$2.isAxiosError = requireIsAxiosError();
26998
- axios$3.exports = axios$2;
26999
- axios$3.exports.default = axios$2;
27000
25672
  class Subset {
27001
25673
  constructor() {
27002
25674
  __publicField$1(this, "is_subset_of_reals", true);
@@ -27104,6 +25776,7 @@ const _InvalidSet = class _InvalidSet2 extends Subset {
27104
25776
  }
27105
25777
  };
27106
25778
  __publicField$1(_InvalidSet, "subsetType", "invalidSet");
25779
+ let InvalidSet = _InvalidSet;
27107
25780
  const _RealLine = class _RealLine2 extends Subset {
27108
25781
  union() {
27109
25782
  return new _RealLine2();
@@ -27185,6 +25858,9 @@ const _Union = class _Union2 extends Subset {
27185
25858
  }
27186
25859
  constructor(subsets2) {
27187
25860
  super();
25861
+ if (subsets2.some((s) => !s.isValid())) {
25862
+ return new InvalidSet();
25863
+ }
27188
25864
  let prelimSubsets = subsets2.filter((s) => !s.isEmpty());
27189
25865
  if (prelimSubsets.length === 0) {
27190
25866
  return new EmptySet();
@@ -27822,12 +26498,12 @@ function requireCore() {
27822
26498
  * bufferedBlockAlgorithm._append('data');
27823
26499
  * bufferedBlockAlgorithm._append(wordArray);
27824
26500
  */
27825
- _append: function(data2) {
27826
- if (typeof data2 == "string") {
27827
- data2 = Utf8.parse(data2);
26501
+ _append: function(data) {
26502
+ if (typeof data == "string") {
26503
+ data = Utf8.parse(data);
27828
26504
  }
27829
- this._data.concat(data2);
27830
- this._nDataBytes += data2.sigBytes;
26505
+ this._data.concat(data);
26506
+ this._nDataBytes += data.sigBytes;
27831
26507
  },
27832
26508
  /**
27833
26509
  * Processes available data blocks.
@@ -27845,9 +26521,9 @@ function requireCore() {
27845
26521
  */
27846
26522
  _process: function(doFlush) {
27847
26523
  var processedWords;
27848
- var data2 = this._data;
27849
- var dataWords = data2.words;
27850
- var dataSigBytes = data2.sigBytes;
26524
+ var data = this._data;
26525
+ var dataWords = data.words;
26526
+ var dataSigBytes = data.sigBytes;
27851
26527
  var blockSize = this.blockSize;
27852
26528
  var blockSizeBytes = blockSize * 4;
27853
26529
  var nBlocksReady = dataSigBytes / blockSizeBytes;
@@ -27863,7 +26539,7 @@ function requireCore() {
27863
26539
  this._doProcessBlock(dataWords, offset);
27864
26540
  }
27865
26541
  processedWords = dataWords.splice(0, nWordsReady);
27866
- data2.sigBytes -= nBytesReady;
26542
+ data.sigBytes -= nBytesReady;
27867
26543
  }
27868
26544
  return new WordArray.init(processedWords, nBytesReady);
27869
26545
  },
@@ -28056,14 +26732,14 @@ function requireCore() {
28056
26732
  H2[4] = H2[4] + e2 | 0;
28057
26733
  },
28058
26734
  _doFinalize: function() {
28059
- var data2 = this._data;
28060
- var dataWords = data2.words;
26735
+ var data = this._data;
26736
+ var dataWords = data.words;
28061
26737
  var nBitsTotal = this._nDataBytes * 8;
28062
- var nBitsLeft = data2.sigBytes * 8;
26738
+ var nBitsLeft = data.sigBytes * 8;
28063
26739
  dataWords[nBitsLeft >>> 5] |= 128 << 24 - nBitsLeft % 32;
28064
26740
  dataWords[(nBitsLeft + 64 >>> 9 << 4) + 14] = Math.floor(nBitsTotal / 4294967296);
28065
26741
  dataWords[(nBitsLeft + 64 >>> 9 << 4) + 15] = nBitsTotal;
28066
- data2.sigBytes = dataWords.length * 4;
26742
+ data.sigBytes = dataWords.length * 4;
28067
26743
  this._process();
28068
26744
  return this._hash;
28069
26745
  },
@@ -28181,42 +26857,28 @@ var encBase64 = { exports: {} };
28181
26857
  });
28182
26858
  })(encBase64);
28183
26859
  const mathjaxConfig = {
28184
- showProcessingMessages: false,
28185
- "fast-preview": {
28186
- disabled: true
28187
- },
28188
- jax: ["input/TeX", "output/CommonHTML"],
28189
- extensions: [
28190
- "tex2jax.js",
28191
- "MathMenu.js",
28192
- "MathZoom.js",
28193
- "AssistiveMML.js",
28194
- "a11y/accessibility-menu.js"
28195
- ],
28196
- TeX: {
28197
- extensions: [
28198
- "AMSmath.js",
28199
- "AMSsymbols.js",
28200
- "noErrors.js",
28201
- "noUndefined.js"
28202
- ],
28203
- equationNumbers: {
28204
- autoNumber: "AMS"
28205
- },
28206
- Macros: {
26860
+ tex: {
26861
+ tags: "ams",
26862
+ macros: {
28207
26863
  lt: "<",
28208
26864
  gt: ">",
28209
26865
  amp: "&",
28210
26866
  var: ["\\mathrm{#1}", 1],
28211
26867
  csch: "\\operatorname{csch}",
28212
26868
  sech: "\\operatorname{sech}"
28213
- }
26869
+ },
26870
+ displayMath: [["\\[", "\\]"]],
26871
+ packages: ["base", "ams", "noerrors", "noundefined", "configmacros"]
26872
+ },
26873
+ options: {
26874
+ ignoreHtmlClass: "tex2jax_ignore",
26875
+ processHtmlClass: "tex2jax_process"
28214
26876
  },
28215
- tex2jax: {
28216
- displayMath: [["\\[", "\\]"]]
26877
+ loader: {
26878
+ load: ["[tex]/noerrors"]
28217
26879
  }
28218
26880
  };
28219
- const viewerIframeJsSource = '(function() {\n "use strict";\n document.addEventListener("DOMContentLoaded", () => {\n if (typeof window.renderDoenetViewerToContainer !== "function") {\n return messageParentFromViewer({\n error: "Invalid DoenetML version or DoenetML package not found"\n });\n }\n window.renderDoenetViewerToContainer(\n document.getElementById("root"),\n void 0,\n {\n ...doenetViewerProps,\n externalVirtualKeyboardProvided: true,\n // Callbacks have to be explicitly overridden here so that they\n // can message the parent React component (outside the iframe).\n updateCreditAchievedCallback: (args) => {\n messageParentFromViewer({\n callback: "updateCreditAchievedCallback",\n args\n });\n },\n updateActivityStatusCallback: (args) => {\n messageParentFromViewer({\n callback: "updateActivityStatusCallback",\n args\n });\n },\n updateAttemptNumber: (args) => {\n messageParentFromViewer({\n callback: "updateAttemptNumber",\n args\n });\n },\n pageChangedCallback: (args) => {\n messageParentFromViewer({\n callback: "pageChangedCallback",\n args\n });\n },\n cidChangedCallback: (args) => {\n messageParentFromViewer({\n callback: "cidChangedCallback",\n args\n });\n },\n checkIfCidChanged: (args) => {\n messageParentFromViewer({\n callback: "checkIfCidChanged",\n args\n });\n },\n setActivityAsCompleted: (args) => {\n messageParentFromViewer({\n callback: "setActivityAsCompleted",\n args\n });\n },\n setIsInErrorState: (args) => {\n messageParentFromViewer({\n callback: "setIsInErrorState",\n args\n });\n },\n generatedVariantCallback: (args) => {\n messageParentFromViewer({\n callback: "generatedVariantCallback",\n args\n });\n },\n setErrorsAndWarningsCallback: (args) => {\n messageParentFromViewer({\n callback: "setErrorsAndWarningsCallback",\n args\n });\n }\n }\n );\n });\n window.addEventListener("message", (e) => {\n if (e.data.subject.startsWith("SPLICE") && !e.data.subject.endsWith("response")) {\n window.parent.postMessage(e.data);\n }\n });\n function messageParentFromViewer(data) {\n window.parent.postMessage(\n {\n origin: viewerId,\n data\n },\n window.parent.origin\n );\n }\n})();\n';
26881
+ const viewerIframeJsSource = '(function() {\n "use strict";\n document.addEventListener("DOMContentLoaded", () => {\n if (typeof window.renderDoenetViewerToContainer !== "function") {\n return messageParentFromViewer({\n error: "Invalid DoenetML version or DoenetML package not found"\n });\n }\n window.renderDoenetViewerToContainer(\n document.getElementById("root"),\n void 0,\n {\n ...doenetViewerProps,\n externalVirtualKeyboardProvided: true,\n // Callbacks have to be explicitly overridden here so that they\n // can message the parent React component (outside the iframe).\n updateCreditAchievedCallback: (args) => {\n messageParentFromViewer({\n callback: "updateCreditAchievedCallback",\n args\n });\n },\n updateAttemptNumber: (args) => {\n messageParentFromViewer({\n callback: "updateAttemptNumber",\n args\n });\n },\n setIsInErrorState: (args) => {\n messageParentFromViewer({\n callback: "setIsInErrorState",\n args\n });\n },\n generatedVariantCallback: (args) => {\n messageParentFromViewer({\n callback: "generatedVariantCallback",\n args\n });\n },\n setErrorsAndWarningsCallback: (args) => {\n messageParentFromViewer({\n callback: "setErrorsAndWarningsCallback",\n args\n });\n }\n }\n );\n });\n window.addEventListener("message", (e) => {\n if (e.data.subject.startsWith("SPLICE") && !e.data.subject.endsWith("response")) {\n window.parent.postMessage(e.data);\n }\n });\n function messageParentFromViewer(data) {\n window.parent.postMessage(\n {\n origin: viewerId,\n data\n },\n window.parent.origin\n );\n }\n})();\n';
28220
26882
  const editorIframeJsSource = '(function() {\n "use strict";\n document.addEventListener("DOMContentLoaded", () => {\n if (typeof window.renderDoenetEditorToContainer !== "function") {\n return messageParentFromEditor({\n error: "Invalid DoenetML version or DoenetML package not found"\n });\n }\n window.renderDoenetEditorToContainer(\n document.getElementById("root"),\n void 0,\n {\n ...doenetEditorProps,\n externalVirtualKeyboardProvided: true,\n // Callbacks have to be explicitly overridden here so that they\n // can message the parent React component (outside the iframe).\n doenetmlChangeCallback: (args) => {\n messageParentFromEditor({\n callback: "doenetmlChangeCallback",\n args\n });\n },\n immediateDoenetmlChangeCallback: (args) => {\n messageParentFromEditor({\n callback: "immediateDoenetmlChangeCallback",\n args\n });\n }\n }\n );\n });\n function messageParentFromEditor(data) {\n window.parent.postMessage(\n {\n origin: editorId,\n data\n },\n window.parent.origin\n );\n }\n})();\n';
28221
26883
  var __defProp$2 = Object.defineProperty;
28222
26884
  var __defNormalProp$2 = (obj, key, value) => key in obj ? __defProp$2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
@@ -28587,8 +27249,8 @@ class Tree {
28587
27249
  Build a tree from a postfix-ordered buffer of node information,
28588
27250
  or a cursor over such a buffer.
28589
27251
  */
28590
- static build(data2) {
28591
- return buildTree(data2);
27252
+ static build(data) {
27253
+ return buildTree(data);
28592
27254
  }
28593
27255
  }
28594
27256
  Tree.empty = new Tree(NodeType.none, [], [], 0);
@@ -29449,9 +28111,9 @@ class TreeCursor {
29449
28111
  function hasChild(tree) {
29450
28112
  return tree.children.some((ch) => ch instanceof TreeBuffer || !ch.type.isAnonymous || hasChild(ch));
29451
28113
  }
29452
- function buildTree(data2) {
28114
+ function buildTree(data) {
29453
28115
  var _a;
29454
- let { buffer, nodeSet, maxBufferLength = DefaultBufferLength, reused = [], minRepeatType = nodeSet.types.length } = data2;
28116
+ let { buffer, nodeSet, maxBufferLength = DefaultBufferLength, reused = [], minRepeatType = nodeSet.types.length } = data;
29455
28117
  let cursor2 = Array.isArray(buffer) ? new FlatBufferCursor(buffer, buffer.length) : buffer;
29456
28118
  let types = nodeSet.types;
29457
28119
  let contextHash = 0, lookAhead = 0;
@@ -29478,11 +28140,11 @@ function buildTree(data2) {
29478
28140
  let type = types[id2], node, buffer2;
29479
28141
  let startPos = start - parentStart;
29480
28142
  if (end3 - start <= maxBufferLength && (buffer2 = findBufferSize(cursor2.pos - minPos, inRepeat))) {
29481
- let data22 = new Uint16Array(buffer2.size - buffer2.skip);
29482
- let endPos = cursor2.pos - buffer2.size, index2 = data22.length;
28143
+ let data2 = new Uint16Array(buffer2.size - buffer2.skip);
28144
+ let endPos = cursor2.pos - buffer2.size, index2 = data2.length;
29483
28145
  while (cursor2.pos > endPos)
29484
- index2 = copyToBuffer(buffer2.start, data22, index2);
29485
- node = new TreeBuffer(data22, end3 - buffer2.start, nodeSet);
28146
+ index2 = copyToBuffer(buffer2.start, data2, index2);
28147
+ node = new TreeBuffer(data2, end3 - buffer2.start, nodeSet);
29486
28148
  startPos = buffer2.start - parentStart;
29487
28149
  } else {
29488
28150
  let endPos = cursor2.pos - size2;
@@ -29646,9 +28308,9 @@ function buildTree(data2) {
29646
28308
  }
29647
28309
  let children = [], positions = [];
29648
28310
  while (cursor2.pos > 0)
29649
- takeNode(data2.start || 0, data2.bufferStart || 0, children, positions, -1, 0);
29650
- let length = (_a = data2.length) !== null && _a !== void 0 ? _a : children.length ? positions[0] + children[0].length : 0;
29651
- return new Tree(types[data2.topID], children.reverse(), positions.reverse(), length);
28311
+ takeNode(data.start || 0, data.bufferStart || 0, children, positions, -1, 0);
28312
+ let length = (_a = data.length) !== null && _a !== void 0 ? _a : children.length ? positions[0] + children[0].length : 0;
28313
+ return new Tree(types[data.topID], children.reverse(), positions.reverse(), length);
29652
28314
  }
29653
28315
  const nodeSizeCache = /* @__PURE__ */ new WeakMap();
29654
28316
  function nodeSize(balanceType, node) {
@@ -30544,8 +29206,8 @@ class InputStream {
30544
29206
  }
30545
29207
  }
30546
29208
  class TokenGroup {
30547
- constructor(data2, id2) {
30548
- this.data = data2;
29209
+ constructor(data, id2) {
29210
+ this.data = data;
30549
29211
  this.id = id2;
30550
29212
  }
30551
29213
  token(input, stack) {
@@ -30570,35 +29232,35 @@ class ExternalTokenizer {
30570
29232
  this.extend = !!options2.extend;
30571
29233
  }
30572
29234
  }
30573
- function readToken(data2, input, stack, group2, precTable, precOffset) {
29235
+ function readToken(data, input, stack, group2, precTable, precOffset) {
30574
29236
  let state = 0, groupMask = 1 << group2, { dialect } = stack.p.parser;
30575
29237
  scan: for (; ; ) {
30576
- if ((groupMask & data2[state]) == 0)
29238
+ if ((groupMask & data[state]) == 0)
30577
29239
  break;
30578
- let accEnd = data2[state + 1];
29240
+ let accEnd = data[state + 1];
30579
29241
  for (let i = state + 3; i < accEnd; i += 2)
30580
- if ((data2[i + 1] & groupMask) > 0) {
30581
- let term = data2[i];
29242
+ if ((data[i + 1] & groupMask) > 0) {
29243
+ let term = data[i];
30582
29244
  if (dialect.allows(term) && (input.token.value == -1 || input.token.value == term || overrides(term, input.token.value, precTable, precOffset))) {
30583
29245
  input.acceptToken(term);
30584
29246
  break;
30585
29247
  }
30586
29248
  }
30587
- let next = input.next, low = 0, high = data2[state + 2];
30588
- if (input.next < 0 && high > low && data2[accEnd + high * 3 - 3] == 65535) {
30589
- state = data2[accEnd + high * 3 - 1];
29249
+ let next = input.next, low = 0, high = data[state + 2];
29250
+ if (input.next < 0 && high > low && data[accEnd + high * 3 - 3] == 65535) {
29251
+ state = data[accEnd + high * 3 - 1];
30590
29252
  continue scan;
30591
29253
  }
30592
29254
  for (; low < high; ) {
30593
29255
  let mid = low + high >> 1;
30594
29256
  let index2 = accEnd + mid + (mid << 1);
30595
- let from = data2[index2], to2 = data2[index2 + 1] || 65536;
29257
+ let from = data[index2], to2 = data[index2 + 1] || 65536;
30596
29258
  if (next < from)
30597
29259
  high = mid;
30598
29260
  else if (next >= to2)
30599
29261
  low = mid + 1;
30600
29262
  else {
30601
- state = data2[index2 + 2];
29263
+ state = data[index2 + 2];
30602
29264
  input.advance();
30603
29265
  continue scan;
30604
29266
  }
@@ -30606,8 +29268,8 @@ function readToken(data2, input, stack, group2, precTable, precOffset) {
30606
29268
  break;
30607
29269
  }
30608
29270
  }
30609
- function findOffset(data2, start, term) {
30610
- for (let i = start, next; (next = data2[i]) != 65535; i++)
29271
+ function findOffset(data, start, term) {
29272
+ for (let i = start, next; (next = data[i]) != 65535; i++)
30611
29273
  if (next == term)
30612
29274
  return i - start;
30613
29275
  return -1;
@@ -30820,24 +29482,24 @@ class TokenCache {
30820
29482
  return index2;
30821
29483
  }
30822
29484
  addActions(stack, token, end3, index2) {
30823
- let { state } = stack, { parser: parser2 } = stack.p, { data: data2 } = parser2;
29485
+ let { state } = stack, { parser: parser2 } = stack.p, { data } = parser2;
30824
29486
  for (let set2 = 0; set2 < 2; set2++) {
30825
29487
  for (let i = parser2.stateSlot(
30826
29488
  state,
30827
29489
  set2 ? 2 : 1
30828
29490
  /* ParseState.Actions */
30829
29491
  ); ; i += 3) {
30830
- if (data2[i] == 65535) {
30831
- if (data2[i + 1] == 1) {
30832
- i = pair(data2, i + 2);
29492
+ if (data[i] == 65535) {
29493
+ if (data[i + 1] == 1) {
29494
+ i = pair(data, i + 2);
30833
29495
  } else {
30834
- if (index2 == 0 && data2[i + 1] == 2)
30835
- index2 = this.putAction(pair(data2, i + 2), token, end3, index2);
29496
+ if (index2 == 0 && data[i + 1] == 2)
29497
+ index2 = this.putAction(pair(data, i + 2), token, end3, index2);
30836
29498
  break;
30837
29499
  }
30838
29500
  }
30839
- if (data2[i] == token)
30840
- index2 = this.putAction(pair(data2, i + 1), token, end3, index2);
29501
+ if (data[i] == token)
29502
+ index2 = this.putAction(pair(data, i + 1), token, end3, index2);
30841
29503
  }
30842
29504
  }
30843
29505
  return index2;
@@ -31249,23 +29911,23 @@ class LRParser extends Parser {
31249
29911
  Check if this state has an action for a given terminal @internal
31250
29912
  */
31251
29913
  hasAction(state, terminal) {
31252
- let data2 = this.data;
29914
+ let data = this.data;
31253
29915
  for (let set2 = 0; set2 < 2; set2++) {
31254
29916
  for (let i = this.stateSlot(
31255
29917
  state,
31256
29918
  set2 ? 2 : 1
31257
29919
  /* ParseState.Actions */
31258
29920
  ), next; ; i += 3) {
31259
- if ((next = data2[i]) == 65535) {
31260
- if (data2[i + 1] == 1)
31261
- next = data2[i = pair(data2, i + 2)];
31262
- else if (data2[i + 1] == 2)
31263
- return pair(data2, i + 2);
29921
+ if ((next = data[i]) == 65535) {
29922
+ if (data[i + 1] == 1)
29923
+ next = data[i = pair(data, i + 2)];
29924
+ else if (data[i + 1] == 2)
29925
+ return pair(data, i + 2);
31264
29926
  else
31265
29927
  break;
31266
29928
  }
31267
29929
  if (next == terminal || next == 0)
31268
- return pair(data2, i + 1);
29930
+ return pair(data, i + 1);
31269
29931
  }
31270
29932
  }
31271
29933
  return 0;
@@ -31448,8 +30110,8 @@ class LRParser extends Parser {
31448
30110
  return new LRParser(spec);
31449
30111
  }
31450
30112
  }
31451
- function pair(data2, off2) {
31452
- return data2[off2] | data2[off2 + 1] << 16;
30113
+ function pair(data, off2) {
30114
+ return data[off2] | data[off2 + 1] << 16;
31453
30115
  }
31454
30116
  function findFinished(stacks) {
31455
30117
  let best = null;
@@ -32551,8 +31213,8 @@ function trimUndefinedRecursivelyLoop(object2, tracks) {
32551
31213
  return config_12.config;
32552
31214
  } });
32553
31215
  })(dist);
32554
- dist.decompress([["elements", "a|0", "name", "children", "attributes", "properties", "top", "acceptsStringChildren", "a|2|3|4|5|6|7", "title", "rightHandSide", "description", "xlabel", "ylabel", "topic", "m", "me", "men", "md", "mdn", "mrow", "not", "and", "or", "xor", "isInteger", "isNumber", "isBetween", "sum", "product", "clampNumber", "wrapNumberPeriodic", "round", "setSmallToZero", "convertSetToList", "ceil", "floor", "abs", "sign", "mean", "median", "variance", "standardDeviation", "count", "min", "max", "mod", "gcd", "extractMath", "clampFunction", "wrapFunctionPeriodic", "derivative", "extractMathOperator", "em", "alert", "q", "sq", "term", "c", "tag", "tage", "tagc", "attr", "ndash", "mdash", "nbsp", "ellipsis", "lq", "rq", "lsq", "rsq", "odesystem", "equilibriumPoint", "equilibriumLine", "atom", "ion", "ionicCompound", "electronConfiguration", "h", "idx", "span", "displayDoenetML", "matrixInput", "text", "textList", "boolean", "booleanList", "math", "mathList", "tupleList", "numberList", "collect", "ref", "point", "coords", "line", "bezierControls", "vector", "angle", "answer", "when", "mathInput", "textInput", "booleanInput", "choiceInput", "choice", "number", "integer", "function", "piecewiseFunction", "interval", "sequence", "cell", "map", "intersection", "conditionalContent", "asList", "selectFromSequence", "select", "group", "evaluate", "selectRandomNumbers", "sampleRandomNumbers", "selectPrimeNumbers", "samplePrimeNumbers", "substitute", "periodicSet", "intcomma", "pluralize", "lorem", "updateValue", "callAction", "triggerSet", "functionIterates", "module", "footnote", "endpoint", "sort", "shuffle", "solveEquations", "subsetOfReals", "split", "bestFitLine", "hasSameFactoring", "label", "matchesPattern", "matrix", "latex", "a|9|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|1A|1B|1C|1D|1E|1F|1G|1H|1I|1J|1K|1L|1M|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|1Y|1Z|1a|1b|1c|1d|1e|1f|1g|1h|1i|1j|1k|1l|1m|1n|1o|1p|1q|1r|1s|1t|1u|1v|1w|1x|1y|1z|20|21|22|23|24|25|26|27|28|29|2A|2B|2C|2D|2E|2F|2G|2H|2I|2J|2K|2L|2M|2N", "a|2", "o|2P|2", "copySource", "o|2P|2R", "values", "a|2|2T", "hide", "true", "false", "a|2W|2X", "o|2U|2V|2Y", "disabled", "o|2U|2a|2Y", "fixed", "o|2U|2c|2Y", "fixLocation", "o|2U|2e|2Y", "styleNumber", "o|2P|2g", "isResponse", "o|2U|2i|2Y", "newNamespace", "o|2U|2k|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l", "type", "isArray", "a|2|2n|2o", "b|F", "o|2p|2V|1N|2q", "modifyIndirectly", "o|2p|2s|1N|2q", "o|2p|2g|1j|2q", "o|2p|2i|1N|2q", "o|2p|2k|1N|2q", "permid", "o|2p|2x|1L|2q", "hidden", "o|2p|2z|1N|2q", "o|2p|2a|1N|2q", "o|2p|2c|1N|2q", "o|2p|2e|1N|2q", "doenetML", "o|2p|34|1L|2q", "value", "o|2p|36|9|2q", "o|2p|1L|1L|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|37|38", "b|T", "o|8|9|2O|2m|39|3A|3A", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|1A|1B|1C|1D|1E|1F|1G|1K|1L|1P|1Q|1R|1S|1V|1W|1X|1Z|1a|1d|1h|1i|1j|1k|1l|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2C|2G|2I|2M|2N|F|G|H|K", "format", "a|1L|2N", "o|2U|3D|3E", "simplify", "none", "full", "numbers", "numberspreserveorder", "a|3H|3I|3J|3K", "o|2U|3G|3L", "expand", "o|2U|3N|2Y", "displayDigits", "o|2P|3P", "displayDecimals", "o|2P|3R", "displaySmallAsZero", "o|2P|3T", "padZeros", "o|2U|3V|2Y", "renderMode", "o|2P|3X", "unordered", "o|2U|3Z|2Y", "createVectors", "o|2U|3b|2Y", "createIntervals", "o|2U|3d|2Y", "functionSymbols", "o|2P|3f", "sourcesAreFunctionSymbols", "o|2P|3h", "splitSymbols", "o|2U|3j|2Y", "parseScientificNotation", "o|2U|3l|2Y", "displayBlanks", "o|2U|3n|2Y", "draggable", "o|2U|3p|2Y", "layer", "o|2P|3r", "anchor", "o|2P|3t", "positionFromAnchor", "upperright", "upperleft", "lowerright", "lowerleft", "bottom", "left", "right", "center", "a|3w|3x|3y|3z|6|40|41|42|43", "o|2U|3v|44", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|3s|3u|45", "o|2p|3D|1L|2q", "o|2p|3G|1L|2q", "o|2p|3N|1N|2q", "o|2p|3X|1L|2q", "o|2p|3b|1N|2q", "o|2p|3d|1N|2q", "o|2p|3f|1M|2q", "o|2p|3j|1N|2q", "o|2p|3l|1N|2q", "o|2p|3n|1N|2q", "o|2p|3p|1N|2q", "o|2p|3r|1i|2q", "o|2p|3v|1L|2q", "textColor", "o|2p|4K|1L|2q", "backgroundColor", "o|2p|4M|1L|2q", "textStyleDescription", "o|2p|4O|1L|2q", "o|2p|3t|1V|2q", "o|2p|3P|1j|2q", "o|2p|3R|1j|2q", "o|2p|3T|1i|2q", "o|2p|3V|1N|2q", "o|2p|3Z|1N|2q", "o|2p|36|A|2q", "o|2p|1i|1i|2q", "o|2p|Q|1N|2q", "isNumeric", "o|2p|4Z|1N|2q", "o|2p|2N|2N|2q", "numDimensions", "o|2p|4c|1j|2q", "indexedArrayDescription", "a|2|2n|2o|4c|4e", "n|1", "a|2o|2n", "o|4h|2q|1Z", "a|4i", "o|4f|1Z|1P|3A|4g|4j", "matrixSize", "o|2p|4l|1S|2q", "numRows", "o|2p|4n|1j|2q", "numColumns", "o|2p|4p|1j|2q", "n|2", "o|4h|2q|2M", "a|4s|4s", "o|4f|2M|1P|3A|4r|4t", "x", "o|2p|4v|1P|2q", "y", "o|2p|4x|1P|2q", "z", "o|2p|4z|1P|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|4W|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|A|3C|46|51|3A|3A", "o|2p|36|B|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|53|38", "o|8|B|2O|2m|54|3A|3A", "else", "statement", "introduction", "conclusion", "section", "subsection", "subsubsection", "paragraphs", "aside", "objectives", "problem", "exercise", "question", "activity", "example", "definition", "note", "theorem", "proof", "problems", "exercises", "ol", "ul", "cobwebPolyline", "equilibriumCurve", "orbitalDiagram", "orbitalDiagramInput", "sideBySide", "sbsGroup", "stack", "div", "pre", "paginator", "paginatorControls", "solution", "document", "p", "lineSegment", "ray", "polyline", "polygon", "triangle", "rectangle", "regularPolygon", "circle", "parabola", "curve", "controlVectors", "award", "graph", "slider", "spreadsheet", "row", "column", "cellBlock", "tabular", "table", "figure", "markers", "pegboard", "variantControl", "animateFromSequence", "image", "video", "hint", "feedback", "setup", "caption", "subsetOfRealsInput", "regionBetweenCurveXAxis", "regionBetweenCurves", "regionHalfPlane", "codeEditor", "codeViewer", "dataFrame", "summaryStatistics", "legend", "eigenDecomposition", "blockQuote", "contentPicker", "stickyGroup", "a|9|A|B|C|D|57|58|59|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|19|5T|1A|1B|5U|1C|1D|1E|1F|5V|5W|5X|5Y|5Z|1G|1H|5a|1I|5b|1J|5c|5d|1K|5e|5f|1L|1M|5g|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|1Y|5r|1Z|1a|1b|5s|1c|1d|1e|1f|1g|1h|1i|1j|5t|1k|1l|1m|1n|5u|5v|1o|5w|5x|5y|5z|60|61|62|1p|63|1q|1r|1s|64|1t|1u|1v|65|1w|1x|1y|1z|20|21|22|66|67|68|23|24|69|25|26|27|28|29|2A|6A|2B|6B|2C|2D|2E|2F|6C|2G|2H|2I|6D|6E|6F|6G|6H|2J|6I|6J|6K|2K|2L|2M|6L|2N|6M|6N|6O", "assignNames", "o|2P|6Q", "o|2P|2i", "rendered", "o|2U|6T|2Y", "createComponentOfType", "o|2P|6V", "numComponents", "o|2P|6X", "o|2U|1s|2Y", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|6S|2l|6U|6W|6Y|6Z", "o|2p|6T|1N|2q", "a|2r|2t|2u|2w|2y|6b|30|31|32|33|35", "o|8|56|6P|6a|6c|2q|3A", "forObject", "o|2P|6e", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|6f|3q|3s|3u|45", "hasLatex", "o|2p|6h|1N|2q", "o|2p|36|C|2q", "a|2r|2t|2u|2v|2w|2y|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|6i|38|4b|6j", "o|8|C|2O|6g|6k|3A|3A", "o|2p|36|D|2q", "a|2r|2t|2u|2v|2w|2y|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|6i|38|4b|6m", "o|8|D|2O|6g|6n|3A|3A", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35", "o|8|57|6P|2m|6p|3A|3A", "o|8|58|6P|2m|6p|3A|3A", "o|8|59|6P|2m|6p|3A|3A", "a|A|C|D|E|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|q|1C|1D|1F|1G|1L|1M|1N|1P|1Q|1R|1S|1W|1c|1h|1i|1j|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2G|2J|2K|2L|2M|2N|11|12|13|14|15|16|17|18|r|s|t|u|v|w|x|y|z|10", "isLatex", "o|2U|6u|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3q|3s|6v|3u|45", "o|2p|6u|1N|2q", "o|2p|36|E|2q", "numCharacters", "o|2p|6z|1j|2q", "o|2p|1P|1P|2q", "a|2r|2t|2u|2v|2w|2y|4H|4I|6x|4J|30|31|32|33|35|4L|4N|4P|4Q|6y|70|38|71|4X", "o|8|E|6t|6w|72|3A|3A", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3q|3s|3u|45", "a|2r|2t|2u|2v|2w|2y|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4b|38", "o|8|F|2O|74|75|3A|3A", "o|8|G|2O|74|75|3A|3A", "equationTag", "o|2p|78|1L|2q", "a|2r|2t|2u|2v|2w|2y|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4b|38|79", "o|8|H|2O|74|7A|3A|3A", "a|K", "o|8|I|7C|74|75|3A|2q", "o|8|J|7C|74|75|3A|2q", "o|2U|1i|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3q|3s|3u|45|7F", "o|8|K|2O|7G|7A|3A|3A", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|1A|1B|1C|1D|1E|1F|1G|1K|1L|1P|1Q|1R|1S|1V|1W|1X|1Z|1a|1d|1h|1i|1j|1k|1l|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2C|2G|2I|2M|2N|C|D|L|M|N|O|P|Q|R|1M|1N|1c|2J|2K|2L|1f|1O|5V", "symbolicEquality", "o|2U|7J|2Y", "expandOnCompare", "o|2U|7L|2Y", "simplifyOnCompare", "o|2U|7N|3L", "unorderedCompare", "o|2U|7P|2Y", "matchByExactPositions", "o|2U|7R|2Y", "allowedErrorInNumbers", "o|2P|7T", "includeErrorInNumberExponents", "o|2U|7V|2Y", "allowedErrorIsAbsolute", "o|2U|7X|2Y", "numSignErrorsMatched", "o|2P|7Z", "numPeriodicSetMatchesRequired", "o|2P|7b", "caseInsensitiveMatch", "o|2U|7d|2Y", "matchBlanks", "o|2U|7f|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|7K|7M|7O|7Q|7S|7U|7W|7Y|7a|7c|7e|7g", "o|2p|7J|1N|2q", "o|2p|7L|1N|2q", "o|2p|7N|1L|2q", "o|2p|7P|1N|2q", "o|2p|7R|1N|2q", "o|2p|7T|1i|2q", "o|2p|7V|1N|2q", "o|2p|7X|1N|2q", "o|2p|7Z|1i|2q", "o|2p|7b|1j|2q", "o|2p|7d|1N|2q", "o|2p|7f|1N|2q", "valuePreOperator", "o|2p|7u|L|2q", "o|2p|36|1N|2q", "a|2r|2t|2u|2v|2w|2y|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|30|31|32|33|35|38|7v|7w", "o|8|L|7I|7h|7x|3A|3A", "a|L|M|N|O|P|Q|R|1N|1f|2J|2L", "a|2r|2t|2u|2v|2w|2y|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|30|31|32|33|35|7w|38", "o|8|M|7z|7h|80|3A|3A", "o|8|N|7z|7h|80|3A|3A", "o|8|O|7z|7h|80|3A|3A", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|1A|1B|1C|1D|1E|1F|1G|1K|1L|1P|1Q|1R|1S|1V|1W|1X|1Z|1a|1d|1h|1i|1j|1k|1l|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2C|2G|2I|2M|2N", "o|8|P|84|7h|80|3A|3A", "o|8|Q|84|7h|80|3A|3A", "limits", "o|2P|87", "strict", "o|2U|89|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|7K|7M|7O|7Q|7S|7U|7W|7Y|7a|7c|7e|7g|88|8A", "o|2p|87|1S|2q", "o|2p|89|1N|2q", "a|2r|2t|2u|2v|2w|2y|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|8C|8D|30|31|32|33|35|7w|38", "o|8|R|84|8B|8E|3A|3A", "forceSymbolic", "o|2U|8G|2Y", "forceNumeric", "o|2U|8I|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|3s|3u|45|8H|8J", "o|2p|8G|1N|2q", "o|2p|8I|1N|2q", "o|2p|36|S|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8L|8M|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|8N|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|S|84|8K|8O|3A|3A", "o|2p|36|T|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8L|8M|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|8Q|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|T|84|8K|8R|3A|3A", "lowerValue", "o|2P|8T", "upperValue", "o|2P|8V", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|3s|3u|45|8U|8W", "o|2p|8T|1i|2q", "o|2p|8V|1i|2q", "o|2p|36|U|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8Y|8Z|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|8a|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|U|3C|8X|8b|3A|3A", "o|2p|36|V|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8Y|8Z|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|8d|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|V|3C|8X|8e|3A|3A", "numDecimals", "o|2P|8g", "numDigits", "o|2P|8i", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|3s|3u|45|8h|8j", "o|2p|8g|1i|2q", "o|2p|8i|1i|2q", "o|2p|36|W|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8l|8m|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|8n|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|W|3C|8k|8o|3A|3A", "threshold", "o|2P|8q", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|3s|3u|45|8r", "o|2p|8q|1i|2q", "o|2p|36|X|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8t|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|8u|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|X|3C|8s|8v|3A|3A", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3c|3e|3g|3i|3k|3m|3o|3q|3s|3u|45", "o|2p|36|Y|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|8y|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|Y|3C|8x|8z|3A|3A", "o|2p|36|Z|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|91|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|Z|3C|46|92|3A|3A", "o|2p|36|a|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|94|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|a|3C|46|95|3A|3A", "o|2p|36|b|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|97|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|b|3C|46|98|3A|3A", "o|2p|36|c|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|9A|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|c|3C|46|9B|3A|3A", "o|2p|36|d|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8L|8M|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|9D|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|d|84|8K|9E|3A|3A", "o|2p|36|e|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8L|8M|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|9G|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|e|84|8K|9H|3A|3A", "population", "o|2U|9J|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|3s|3u|45|8H|8J|9K", "o|2p|9J|1N|2q", "o|2p|36|f|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8L|8M|9M|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|9N|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|f|84|9L|9O|3A|3A", "o|2p|36|g|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8L|8M|9M|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|9Q|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|g|84|9L|9R|3A|3A", "o|2p|36|h|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8L|8M|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|9T|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|h|84|8K|9U|3A|3A", "o|2p|36|i|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8L|8M|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|9W|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|i|84|8K|9X|3A|3A", "o|2p|36|j|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8L|8M|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|9Z|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|j|84|8K|9a|3A|3A", "o|2p|36|k|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8L|8M|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|9c|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|k|84|8K|9d|3A|3A", "o|2p|36|l|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|8L|8M|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|9f|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|l|84|8K|9g|3A|3A", "operand", "functionargument", "numoperands", "a|9i|1k|9j|9k", "o|2U|2n|9l", "operandNumber", "o|2P|9n", "argumentNumber", "o|2P|9p", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|3s|3u|45|9m|9o|9q", "o|2p|9n|1i|2q", "o|2p|9p|1i|2q", "o|2p|36|m|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|9s|9t|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|9u|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|m|3C|9r|9v|3A|3A", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|1A|1B|1C|1D|1E|1F|1G|1K|1L|1P|1Q|1R|1S|1V|1W|1X|1Z|1a|1d|1h|1i|1j|1k|1l|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2C|2G|2I|2M|2N|C|D|2K", "xscale", "o|2P|9y", "yscale", "o|2P|A0", "numInputs", "o|2P|A2", "numOutputs", "o|2P|A4", "domain", "o|2P|A6", "labelIsName", "o|2U|A8|2Y", "applyStyleToLabel", "o|2U|AA|2Y", "labelPosition", "a|3w|3x|3y|3z|6|40|41|42", "o|2U|AC|AD", "minima", "o|2P|AF", "maxima", "o|2P|AH", "extrema", "o|2P|AJ", "through", "o|2P|AL", "throughSlopes", "o|2P|AN", "variables", "o|2P|AP", "variable", "o|2P|AR", "symbolic", "o|2U|AT|2Y", "nearestPointAsCurve", "o|2U|AV|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3M|3O|9z|A1|A3|A5|A7|A9|AB|AE|3s|AG|AI|AK|AM|AO|AQ|AS|AU|3Q|3S|3U|3W|AW|8U|8W", "expandSpecified", "o|2p|AY|1N|2q", "o|2p|9y|1i|2q", "o|2p|A0|1i|2q", "o|2p|A8|1N|2q", "o|2p|AA|1N|2q", "o|2p|AC|1L|2q", "o|2p|2K|2K|2q", "styleDescription", "o|2p|Ag|1L|2q", "styleDescriptionWithNoun", "o|2p|Ai|1L|2q", "o|2p|A2|1j|2q", "o|2p|A4|1j|2q", "a|2o|2n|4c", "o|Am|3A|1m|4g", "a|An", "o|4f|A6|1m|3A|4g|Ao", "o|2p|3N|1L|2q", "o|2p|AT|1N|2q", "_variableName", "o|Am|3A|As|4g", "a|At", "o|4f|AP|As|3A|4g|Au", "formula", "o|2p|Aw|1P|2q", "numMinima", "o|2p|Ay|1i|2q", "o|Am|3A|1V|4g", "o|4h|2q|1V", "a|B0|B1", "o|4f|AF|1i|3A|4r|B2", "globalMinimum", "a|B1", "o|4f|B4|1i|3A|4g|B5", "globalInfimum", "o|4f|B7|1i|3A|4g|B5", "numMaxima", "o|2p|B9|1i|2q", "o|4f|AH|1i|3A|4r|B2", "globalMaximum", "o|4f|BC|1i|3A|4g|B5", "globalSupremum", "o|4f|BE|1i|3A|4g|B5", "numExtrema", "o|2p|BG|1i|2q", "o|4f|AJ|1i|3A|4r|B2", "o|2p|AR|As|2q", "symbolicf", "unknown", "o|2p|BK|BL|2q", "fDefinition", "o|2p|BN|BL|2q", "f", "o|2p|BP|BL|2q", "a|2r|2t|2u|2v|2w|2y|AZ|Aa|Ab|Ac|Ad|Ae|4I|8Y|8Z|30|31|32|33|35|Af|4L|4N|4P|Ah|Aj|4R|4S|4T|4U|Ak|Al|Ap|48|Aq|Ar|Av|Ax|4b|Az|B3|B6|B8|BA|BB|BD|BF|BH|BI|BJ|BM|BO|BQ", "o|8|n|9x|AX|BR|3A|3A", "o|8|o|9x|AX|BR|3A|3A", "derivVariables", "o|2P|BU", "derivVariable", "o|2P|BW", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3M|3O|9z|A1|A3|A5|A7|A9|AB|AE|3s|AG|AI|AK|AM|AO|AQ|AS|AU|3Q|3S|3U|3W|AW|BV|BX", "numDerivatives", "o|2p|BZ|1j|2q", "o|4f|BU|As|3A|4g|Au", "a|2r|2t|2u|2v|2w|2y|AZ|Aa|Ab|Ac|Ad|Ae|4I|30|31|32|33|35|Af|4L|4N|4P|Ah|Aj|4R|4S|4T|4U|Ak|Al|Ap|48|Aq|Ar|Av|Ax|4b|Az|B3|B6|B8|BA|BB|BD|BF|BH|BI|Ba|Bb|BJ|BM|BO|BQ", "o|8|p|9x|BY|Bc|3A|3A", "o|2p|36|1L|2q", "a|2r|2t|2u|2v|2w|2y|4H|4I|6x|4J|30|31|32|33|35|4L|4N|4P|4Q|Be|70|38|71|4X", "o|8|q|84|6w|Bf|3A|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|38", "o|8|r|2O|2m|Bh|3A|3A", "o|8|s|2O|2m|Bh|3A|3A", "o|8|t|2O|2m|Bh|3A|3A", "o|8|u|2O|2m|Bh|3A|3A", "o|8|v|2O|2m|Bh|3A|3A", "o|8|w|2O|2m|Bh|3A|3A", "o|8|x|2O|2m|Bh|3A|3A", "o|8|y|2O|2m|Bh|3A|3A", "o|8|z|2O|2m|Bh|3A|3A", "o|8|10|2O|2m|Bh|3A|3A", "a|", "o|8|11|Bs|2m|Bh|3A|2q", "o|8|12|Bs|2m|Bh|3A|2q", "o|8|13|Bs|2m|Bh|3A|2q", "o|8|14|Bs|2m|Bh|3A|2q", "o|8|15|Bs|2m|Bh|3A|2q", "o|8|16|Bs|2m|Bh|3A|2q", "o|8|17|Bs|2m|Bh|3A|2q", "o|8|18|Bs|2m|Bh|3A|2q", "a|64|9|6A|A|B|C|D|57|58|59|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|19|5T|1A|1B|5U|1C|1D|1E|1F|5V|5W|5X|5Y|5Z|1G|1H|5a|1I|5b|1J|5c|5d|1K|5e|5f|1L|1M|5g|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|1Y|5r|1Z|1a|1b|5s|1c|1d|1e|1f|1g|1h|1i|1j|5t|1k|1l|1m|1n|5u|5v|1o|5w|5x|5y|5z|60|61|62|1p|63|1q|1r|1s|1t|1u|1v|65|1w|1x|1y|1z|20|21|22|66|67|68|23|24|69|25|26|27|28|29|2A|2B|6B|2C|2D|2E|2F|6C|2G|2H|2I|6D|6E|6F|6G|6H|2J|6I|6J|6K|2K|2L|2M|6L|2N|6M|6N|6O", "aggregateScores", "o|2U|C2|2Y", "weight", "o|2P|C4", "sectionWideCheckWork", "o|2U|C6|2Y", "submitLabel", "o|2P|C8", "submitLabelNoCorrectness", "o|2P|CA", "displayDigitsForCreditAchieved", "o|2P|CC", "boxed", "o|2U|CE|2Y", "includeAutoName", "o|2U|CG|2Y", "includeAutoNumber", "o|2U|CI|2Y", "includeAutoNameIfNoTitle", "o|2U|CK|2Y", "includeAutoNumberIfNoTitle", "o|2U|CM|2Y", "level", "o|2P|CO", "includeParentNumber", "o|2U|CQ|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|C3|C5|C7|C9|CB|CD|CF|CH|CJ|CL|CN|6Z|CP|CR", "o|2p|C2|1N|2q", "o|2p|C4|1i|2q", "o|2p|C6|1N|2q", "o|2p|C8|1L|2q", "o|2p|CA|1L|2q", "o|2p|CC|1j|2q", "o|2p|CE|1N|2q", "o|2p|CG|1N|2q", "o|2p|CI|1N|2q", "o|2p|CK|1N|2q", "o|2p|CM|1N|2q", "o|2p|1s|1N|2q", "o|2p|CQ|1N|2q", "sectionNumber", "o|2p|Cg|1L|2q", "o|2p|9|1L|2q", "creditAchieved", "o|2p|Cj|1i|2q", "percentCreditAchieved", "o|2p|Cl|1i|2q", "open", "o|2p|Cn|1N|2q", "a|2r|2t|2u|2v|2w|2y|CT|CU|CV|CW|CX|CY|CZ|Ca|Cb|Cc|Cd|Ce|Cf|30|31|32|33|35|Ch|Ci|Ck|Cm|Co", "o|8|5A|C1|CS|Cp|3A|3A", "o|8|5B|C1|CS|Cp|3A|3A", "o|8|5C|C1|CS|Cp|3A|3A", "o|8|5D|C1|CS|Cp|3A|3A", "collapsible", "o|2U|Cu|2Y", "startOpen", "o|2U|Cw|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|C3|C5|C7|C9|CB|CD|CF|CH|CJ|CL|CN|6Z|CP|CR|Cv|Cx", "o|2p|Cu|1N|2q", "a|2r|2t|2u|2v|2w|2y|CT|CU|CV|CW|CX|CY|CZ|Ca|Cb|Cc|Cd|Ce|Cf|Cz|30|31|32|33|35|Ch|Ci|Ck|Cm|Co", "o|8|5E|C1|Cy|D0|3A|3A", "o|8|5F|C1|CS|Cp|3A|3A", "o|8|5G|C1|CS|Cp|3A|3A", "o|8|5H|C1|CS|Cp|3A|3A", "o|8|5I|C1|CS|Cp|3A|3A", "o|8|5J|C1|CS|Cp|3A|3A", "o|8|5K|C1|CS|Cp|3A|3A", "o|8|5L|C1|CS|Cp|3A|3A", "o|8|5M|C1|CS|Cp|3A|3A", "o|8|5N|C1|CS|Cp|3A|3A", "renameTo", "o|2P|DB", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|C3|C5|C7|C9|CB|CD|CF|CH|CJ|CL|CN|6Z|CP|DC|Cv|Cx", "a|2r|2t|2u|2v|2w|2y|CT|CU|CV|CW|CX|CY|CZ|Ca|Cb|Cc|Cd|Ce|Cz|30|31|32|33|35|Ch|Ci|Ck|Cm|Co", "o|8|5O|C1|DD|DE|3A|3A", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|C3|C5|C7|C9|CB|CD|CF|CH|CJ|CL|CN|6Z|CP|DC", "a|2r|2t|2u|2v|2w|2y|CT|CU|CV|CW|CX|CY|CZ|Ca|Cb|Cc|Cd|Ce|30|31|32|33|35|Ch|Ci|Ck|Cm|Co", "o|8|5P|C1|DG|DH|3A|3A", "o|8|5Q|C1|DG|DH|3A|3A", "li", "a|DK", "o|2P|2K", "marker", "o|2P|DN", "cols", "o|2P|DP", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|DM|CP|DO|DQ", "o|2p|2K|1L|2q", "a|2r|2t|2u|2v|2w|2y|DS|30|31|32|33|35", "o|8|5R|DL|DR|DT|3A|2q", "o|8|5S|DL|DR|DT|3A|2q", "o|8|DK|6P|2m|6p|2q|3A", "a|A", "independentVariable", "o|2P|DY", "initialIndependentVariableValue", "o|2P|Da", "chunkSize", "o|2P|Dc", "tolerance", "o|2P|De", "maxIterations", "o|2P|Dg", "hideInitialCondition", "o|2U|Di|2Y", "initialConditions", "o|2P|Dk", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|DZ|Db|3Q|3S|3U|3W|3Y|Dd|Df|Dh|Dj|Dl|AQ|7F", "o|2p|DY|As|2q", "o|2p|Da|1P|2q", "o|2p|Dc|1i|2q", "o|2p|De|1i|2q", "o|2p|Dg|1i|2q", "o|2p|Di|1N|2q", "o|2p|1i|1N|2q", "rhss", "o|Am|3A|1P|4g", "a|Dv", "o|4f|Du|1P|3A|4g|Dw", "o|4f|Dk|1P|3A|4g|Dw", "numericalSolutions", "o|Am|3A|1k|4g", "a|E0", "o|4f|Dz|1k|3A|4g|E1", "rhs", "o|2p|E3|1P|2q", "righthandside", "o|2p|E5|1P|2q", "righthandsides", "o|4f|E7|1P|3A|4g|Dw", "initialCondition", "o|2p|E9|1P|2q", "numericalSolution", "o|2p|EB|1k|2q", "a|2r|2t|2u|2v|2w|2y|Dn|Do|4A|Dp|Dq|Dr|Ds|Dt|30|31|32|33|35|4R|4S|4T|4U|4L|4N|4P|Av|Dx|Dy|79|4b|E2|E4|E6|E8|EA|EC", "o|8|19|DX|Dm|ED|3A|2q", "a|C|D|2K", "verticesDraggable", "o|2U|EG|2Y", "vertices", "o|2P|EI", "showCoordsWhenDragging", "o|2U|EK|2Y", "rigid", "o|2U|EM|2Y", "preserveSimilarity", "o|2U|EO|2Y", "rotationHandleVertices", "o|2P|EQ", "rotateAround", "centroid", "vertex", "a|ET|EU|1V", "o|2U|ES|EV", "rotationCenter", "o|2P|EX", "rotationVertex", "o|2P|EZ", "allowRotation", "o|2U|Eb|2Y", "allowTranslation", "o|2U|Ed|2Y", "allowDilation", "o|2U|Ef|2Y", "minShrink", "o|2P|Eh", "attractThreshold", "o|2P|Ej", "numPoints", "o|2P|El", "numIterationsRequired", "o|2P|En", "initialPoint", "o|2P|Ep", "o|2P|1k", "lockToSolution", "o|2U|Es|2Y", "defaultPoint", "o|2P|Eu", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|EH|EJ|EL|EN|EP|ER|EW|EY|Ea|Ec|Ee|Eg|Ei|3Q|3S|3U|3W|Ek|Em|AS|Eo|Eq|Er|Et|Ev", "o|2p|3r|1j|2q", "o|2p|EK|1N|2q", "o|2p|EM|1N|2q", "o|2p|Eb|1N|2q", "o|2p|Ed|1N|2q", "o|2p|Ej|1i|2q", "o|2p|El|1i|2q", "o|2p|En|1i|2q", "o|2p|EO|1N|2q", "o|2p|Ef|1N|2q", "o|2p|EG|1N|2q", "o|2p|4c|1i|2q", "o|4f|EI|1P|3A|4r|B2", "length", "o|2p|FA|1i|2q", "o|4f|Ep|1P|3A|4g|B5", "correctVertices", "o|Am|3A|1N|4g", "a|FE", "o|4f|FD|1N|3A|4g|FF", "fractionCorrectVertices", "o|2p|FH|1i|2q", "numGradedVertices", "o|2p|FJ|1i|2q", "numCorrectVertices", "o|2p|FL|1i|2q", "fractionCorrectVerticesAdjusted", "o|2p|FN|1i|2q", "numGradedVerticesAdjusted", "o|2p|FP|1i|2q", "numIterateValues", "o|2p|FR|1i|2q", "iterateValues", "o|4f|FT|1P|3A|4g|Dw", "numVertices", "o|2p|FV|1i|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ey|Ez|F0|F1|F2|F3|BJ|F4|30|31|32|33|35|Af|4R|4S|4T|4U|Ah|Aj|F5|F6|F7|F8|F9|FB|FC|FG|FI|FK|FM|FO|FQ|FS|FU|FW", "o|8|5T|EF|Ew|FX|3A|2q", "constraints", "a|C|D|2K|A|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|1A|1F|1P|1V|1W|1Z|1m|1n|1t|1w|21|22|2C|2G|2M|FZ|E|q|1G|1L|1i|1j|1o|1x|1y|1z|20|23|24|25|2N|n|o|p|1B|1C|1D|1E|1K|1Q|1R|1S|1X|1a|1d|1h|1k|1l|2I", "o|2P|4v", "o|2P|4x", "o|2P|4z", "xs", "o|2P|Fe", "o|2P|1W", "hideOffGraphIndicator", "o|2U|Fh|2Y", "stable", "o|2U|Fj|2Y", "switchable", "o|2U|Fl|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|Fb|Fc|Fd|Ff|Fg|3Q|3S|3U|3W|AE|EL|Fi|Fk|Fm", "o|2p|Fj|1N|2q", "o|2p|Fl|1N|2q", "o|2p|Fh|1N|2q", "o|4f|Fe|1P|3A|4g|Dw", "o|2p|1W|1W|2q", "constraintUsed", "o|2p|Ft|1N|2q", "numDimensionsForConstraints", "o|2p|Fv|1i|2q", "o|2p|36|1W|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ae|Ey|Fo|Fp|30|31|32|33|35|Af|4R|4S|4T|4U|4L|4N|4P|Ah|Aj|Fq|F8|Fr|Fs|4b|Fu|Fw|4w|4y|50|Fx", "o|8|1A|Fa|Fn|Fy|3A|3A", "a|C|D|2K|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|1A|1B|1C|1D|1E|1F|1G|1K|1L|1P|1Q|1R|1S|1V|1W|1X|1Z|1a|1d|1h|1i|1j|1k|1l|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2C|2G|2I|2M|2N", "equation", "o|2P|G1", "slope", "o|2P|G3", "perpendicularTo", "o|2P|G5", "parallelTo", "o|2P|G7", "a|3w|3x|3y|3z", "o|2U|AC|G9", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|G2|AM|G4|G6|G8|AQ|3Q|3S|3U|3W|GA|Fk|Fm", "points", "o|4f|GC|1P|3A|4r|B2", "o|2p|G1|1P|2q", "coeff0", "o|2p|GF|1P|2q", "coeffvar1", "o|2p|GH|1P|2q", "coeffvar2", "o|2p|GJ|1P|2q", "o|2p|G3|1P|2q", "xintercept", "o|2p|GM|1P|2q", "yintercept", "o|2p|GO|1P|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ae|Fo|Fp|30|31|32|33|35|Af|4R|4S|4T|4U|4L|4N|4P|Ah|Aj|F8|Av|GD|GE|GG|GI|GK|GL|GN|GP|4b", "o|8|1B|G0|GB|GQ|3A|3A", "a|C|D|2K|n|o|p|1k|1l|1Y|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|q|1A|1B|1C|1D|1E|1F|1G|1K|1L|1P|1Q|1R|1S|1V|1W|1X|1Z|1a|1d|1h|1i|1j|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2C|2G|2I|2M|2N", "flipFunction", "o|2U|GT|2Y", "numDiscretizationPoints", "o|2P|GV", "periodic", "o|2U|GX|2Y", "splineTension", "o|2P|GZ", "extrapolateBackward", "o|2U|Gb|2Y", "extrapolateForward", "o|2U|Gd|2Y", "splineForm", "centripetal", "uniform", "a|Gg|Gh", "o|2U|Gf|Gi", "parMin", "o|2P|Gk", "parMax", "o|2P|Gm", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|AE|GU|GW|GY|Ga|Gc|Ge|Gj|AS|AM|Gl|Gn|EL|AW|3Q|3S|3U|3W|Fk|Fm", "o|2p|GT|1N|2q", "o|2p|GV|1i|2q", "o|2p|GX|1N|2q", "o|2p|GZ|1i|2q", "o|2p|Gb|1N|2q", "o|2p|Gd|1N|2q", "o|2p|Gf|1L|2q", "o|2p|Gm|1i|2q", "o|2p|Gk|1i|2q", "throughPoints", "o|4f|Gy|1P|3A|4r|B2", "vectorControlDirections", "o|Am|3A|1L|4g", "a|H1", "o|4f|H0|1L|3A|4g|H2", "hiddenControls", "o|4f|H4|1N|3A|4g|FF", "n|3", "o|Am|3A|1Z|4r", "o|Am|3A|1Z|4g", "a|H7|H8|4i", "o|4f|5r|1P|3A|H6|H9", "controlPoints", "o|Am|3A|1V|4r", "a|HC|B0|B1", "o|4f|HB|1P|3A|H6|HD", "extrapolateBackwardMode", "o|2p|HF|1L|2q", "extrapolateForwardMode", "o|2p|HH|1L|2q", "fs", "o|4f|HJ|1k|3A|4g|E1", "numXCriticalPoints", "o|2p|HL|1j|2q", "xCriticalPoints", "o|4f|HN|1i|3A|4r|B2", "numYCriticalPoints", "o|2p|HP|1j|2q", "yCriticalPoints", "o|4f|HR|1i|3A|4r|B2", "numCurvatureChangePoints", "o|2p|HT|1j|2q", "curvatureChangePoints", "o|4f|HV|1i|3A|4r|B2", "o|2p|BP|1k|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ae|Gp|Gq|Gr|Gs|Gt|Gu|Gv|Ey|Fo|Fp|30|31|32|33|35|Af|4R|4S|4T|4U|Ah|Aj|Gw|Gx|F8|Gz|H3|H5|HA|HE|HG|HI|HK|HM|HO|HQ|HS|HU|HW|HX", "o|8|5U|GS|Go|HY|3A|3A", "symbol", "o|2P|Ha", "atomicNumber", "o|2P|Hc", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Hb|Hd|3Q|3S|3U|3W", "o|2p|Hc|1j|2q", "o|2p|Ha|1L|2q", "o|2p|2|1L|2q", "o|2p|1v|1j|2q", "atomicMass", "o|2p|Hj|1i|2q", "phaseAtSTP", "o|2p|Hl|1L|2q", "chargeOfCommonIon", "o|2p|Hn|1j|2q", "metalCategory", "o|2p|Hp|1L|2q", "groupName", "o|2p|Hr|1L|2q", "period", "o|2p|Ht|1j|2q", "ionizationEnergy", "o|2p|Hv|1i|2q", "meltingPoint", "o|2p|Hx|1i|2q", "boilingPoint", "o|2p|Hz|1i|2q", "atomicRadius", "o|2p|I1|1j|2q", "density", "o|2p|I3|1i|2q", "electronegativity", "o|2p|I5|1i|2q", "o|2p|1F|1F|2q", "o|2p|5V|5V|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|4R|4S|4T|4U|4L|4N|4P|Hf|Hg|Hh|Hi|Hk|Hm|Ho|Hq|Hs|Hu|Hw|Hy|I0|I2|I4|I6|I7|I8|71|4b", "o|8|1C|Bs|He|I9|3A|2q", "a|1C", "charge", "o|2P|IC", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Hb|Hd|ID", "o|2p|IC|1j|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|4L|4N|4P|Hf|Hg|IF|Hh|Hi|Hq|Hs|Hu|71|4b", "o|8|1D|IB|IE|IG|3A|2q", "a|1C|1D", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|4L|4N|4P|71|4b", "o|8|1E|II|IE|IJ|3A|2q", "o|2p|36|1F|2q", "o|2p|2N|1L|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|IL|4X|4Y|4a|IM|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|1F|3C|46|IN|3A|3A", "a|1R|5V|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|1A|1B|1C|1D|1E|1F|1G|1K|1L|1P|1Q|1S|1V|1W|1X|1Z|1a|1d|1h|1i|1j|1k|1l|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2C|2G|2I|2M|2N", "labels", "o|2P|IQ", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|IR", "o|2p|36|5V|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|IT", "o|8|5V|IP|IS|IU|3A|3A", "prefill", "o|2P|IW", "prefillLabel", "o|2P|IY", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|IX|IZ", "rows", "o|2p|Ib|5V|2q", "selectedRowIndex", "o|2p|Id|1j|2q", "selectedBoxIndex", "o|2p|If|1j|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|IT|Ic|4o|Ie|Ig", "o|8|5W|Bs|Ia|Ih|3A|2q", "feedbackDefinition", "code", "o|2P|Ik", "o|2P|1L", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Il|Im", "o|8|Ij|Bs|In|6p|2q|2q", "feedbackDefinitions", "a|Ij", "o|8|Ip|Iq|2m|6p|2q|2q", "styleDefinition", "lineColor", "o|2P|It", "lineColorWord", "o|2P|Iv", "lineColorDarkMode", "o|2P|Ix", "lineColorWordDarkMode", "o|2P|Iz", "lineOpacity", "o|2P|J1", "lineWidth", "o|2P|J3", "lineWidthWord", "o|2P|J5", "lineStyle", "o|2P|J7", "lineStyleWord", "o|2P|J9", "markerColor", "o|2P|JB", "markerColorWord", "o|2P|JD", "markerColorDarkMode", "o|2P|JF", "markerColorWordDarkMode", "o|2P|JH", "markerOpacity", "o|2P|JJ", "markerStyle", "o|2P|JL", "markerStyleWord", "o|2P|JN", "markerSize", "o|2P|JP", "fillColor", "o|2P|JR", "fillColorWord", "o|2P|JT", "fillColorDarkMode", "o|2P|JV", "fillColorWordDarkMode", "o|2P|JX", "fillOpacity", "o|2P|JZ", "o|2P|4K", "textColorWord", "o|2P|Jc", "textColorDarkMode", "o|2P|Je", "textColorWordDarkMode", "o|2P|Jg", "o|2P|4M", "backgroundColorWord", "o|2P|Jj", "backgroundColorDarkMode", "o|2P|Jl", "backgroundColorWordDarkMode", "o|2P|Jn", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Iu|Iw|Iy|J0|J2|J4|J6|J8|JA|JC|JE|JG|JI|JK|JM|JO|JQ|JS|JU|JW|JY|Ja|Jb|Jd|Jf|Jh|Ji|Jk|Jm|Jo", "a|2r|2t|2v|2w|2y|30|31|32|33|35", "o|8|Is|Bs|Jp|Jq|2q|2q", "styleDefinitions", "a|Is", "o|8|Js|Jt|2m|6p|2q|2q", "a|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5V|5W|5X|5Y|5Z|1H|5a|5b|5c|5d|5e|5g|1T|5t|5v|5z|60|61|1p|1q|1r|1u|1v|66|67|68|69|25|2A|6B|2D|2E|6C|2H|6G|6H|6J|6M|6N", "width", "o|2P|Jw", "widths", "o|2P|Jy", "margins", "o|2P|K0", "valign", "o|2P|K2", "valigns", "o|2P|K4", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Jx|Jz|K1|K3|K5", "absoluteMeasurements", "o|2p|K7|1N|2q", "gapWidth", "o|2p|K9|1i|2q", "o|Am|3A|1i|4g", "a|KB", "o|4f|Jy|1i|3A|4g|KC", "o|4f|K0|1i|3A|4g|KC", "o|4f|K4|1L|3A|4g|H2", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|K8|KA|KD|KE|KF", "o|8|5X|Jv|K6|KG|3A|2q", "a|5X", "o|8|5Y|KI|K6|KG|3A|2q", "o|8|5Z|6P|2m|6p|3A|3A", "sortby", "o|2P|KL", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3q|3s|6v|3u|45|KM", "o|2p|36|1G|2q", "a|2r|2t|2u|2v|2w|2y|4H|4I|6x|4J|30|31|32|33|35|4L|4N|4P|4Q|KO|70|38|71|4X", "o|8|1G|6t|KN|KP|3A|3A", "a|1G|A|C|D|E|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|q|1C|1D|1F|1L|1M|1N|1P|1Q|1R|1S|1W|1c|1h|1i|1j|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2G|2J|2K|2L|2M|2N", "o|8|1H|KR|2m|6p|3A|3A", "o|8|5a|6P|2m|6p|3A|3A", "o|8|1I|6P|2m|6p|3A|3A", "o|8|5b|6P|2m|6p|3A|3A", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|4L|4N|4P|38", "o|8|1J|6P|2m|KW|3A|3A", "initialPage", "o|2P|KY", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|KZ", "numPages", "o|2p|Kb|1j|2q", "currentPage", "o|2p|Kd|1j|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|Kc|Ke", "o|8|5c|6P|Ka|Kf|3A|3A", "previousLabel", "o|2P|Kh", "nextLabel", "o|2P|Kj", "pageLabel", "o|2P|Kl", "o|2P|5c", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Ki|Kk|Km|Kn", "o|2p|Kh|1L|2q", "o|2p|Kj|1L|2q", "o|2p|Kl|1L|2q", "disabledDirectly", "o|2p|Ks|1N|2q", "a|2r|2t|2u|2v|2w|2y|Kp|Kq|Kr|30|31|32|33|35|Kt", "o|8|5d|Bs|Ko|Ku|3A|2q", "a|2M", "o|2P|4n", "o|2P|4p", "showSizeControls", "o|2U|Kz|2Y", "defaultEntry", "o|2P|L1", "bindValueTo", "o|2P|L3", "unionFromU", "o|2U|L5|2Y", "minComponentWidth", "o|2P|L7", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Kx|Ky|L0|L2|IX|3F|3g|3k|3m|3Q|3S|3U|3W|L4|L6|L8", "collaborateGroups", "o|2p|LA|LA|2q", "o|2p|Kz|1N|2q", "o|2p|IW|1P|2q", "o|2p|L5|1N|2q", "valueChanged", "o|2p|LF|1N|2q", "immediateValueChanged", "o|2p|LH|1N|2q", "o|2p|36|1P|2q", "immediateValue", "o|2p|LK|1P|2q", "a|2r|2t|2u|2v|2w|2y|LB|LC|LD|47|4D|4E|4F|LE|30|31|32|33|35|4R|4S|4T|4U|LG|LI|4o|4q|LJ|LL|4u", "o|8|1K|Kw|L9|LM|3A|2q", "a|9|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|1A|1B|1C|1D|1E|1F|1G|1H|1I|1J|1K|1L|1M|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|1Y|1Z|1a|1b|1c|1d|1e|1f|1g|1h|1i|1j|1k|1l|1m|1n|1o|1p|1q|1r|1s|1t|1u|1v|1w|1x|1y|1z|20|21|22|23|24|25|26|27|28|29|2A|2B|2C|2D|2E|2F|2G|2H|2I|2J|2K|2L|2M|2N|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5V|5W|5X|5Y|5Z|5a|5b|5c|5d|5e|5g|5t|5v|5z|60|61|66|67|68|69|6B|6C|6G|6H|6J|6M|6N", "message", "o|2p|LP|1L|2q", "a|2t|2u|2v|2w|2y|30|31|32|33|35|2r|Co|LQ", "o|8|5e|LO|2m|LR|3A|3A", "a|64|9|B|6A|A|C|D|57|58|59|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|19|5T|1A|1B|5U|1C|1D|1E|1F|5V|5W|5X|5Y|5Z|1G|1H|5a|1I|5b|1J|5c|5d|1K|5e|5f|1L|1M|5g|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|1Y|5r|1Z|1a|1b|5s|1c|1d|1e|1f|1g|1h|1i|1j|5t|1k|1l|1m|1n|5u|5v|1o|5w|5x|5y|5z|60|61|62|1p|63|1q|1r|1s|1t|1u|1v|65|1w|1x|1y|1z|20|21|22|66|67|68|23|24|69|25|26|27|28|29|2A|2B|6B|2C|2D|2E|2F|6C|2G|2H|2I|6D|6E|6F|6G|6H|2J|6I|6J|6K|2K|2L|2M|6L|2N|6M|6N|6O", "documentWideCheckWork", "o|2U|LU|2Y", "xmlns", "o|2P|LW", "o|2P|2n", "a|2Q|2S|2f|2l|LV|C9|CB|CD|LX|LY", "o|2p|LU|1N|2q", "o|2p|B|1L|2q", "a|2w|2y|La|CW|CX|CY|30|31|32|33|35|Ci|Lb|Ck|Cm", "o|8|5f|LT|LZ|Lc|3A|3A", "o|8|1L|6t|6w|Bf|3A|3A", "a|A|C|D|E|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|q|1C|1D|1F|1G|1L|1M|1N|1P|1Q|1R|1S|1W|1c|1h|1i|1j|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2G|2J|2K|2L|2M|2N", "maxNumber", "o|2P|Lg", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3a|Lh", "o|2p|Lg|1i|2q", "o|2p|6X|1i|2q", "texts", "o|4f|Ll|1L|3A|4g|H2", "numValues", "o|2p|Ln|1i|2q", "o|4f|2T|1L|3A|4g|H2", "a|2r|2t|2u|2v|2w|2y|4V|Lj|30|31|32|33|35|Lk|Lm|38|Lo|Lp", "o|8|1M|Lf|Li|Lq|3A|3A", "a|9|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|1A|1B|1C|1D|1E|1F|1G|1H|1I|1J|1K|1L|1M|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|1Y|1Z|1a|1b|1c|1d|1e|1f|1g|1h|1i|1j|1k|1l|1m|1n|1o|1p|1q|1r|1s|1t|1u|1v|1w|1x|1y|1z|20|21|22|23|24|25|26|27|28|29|2A|2B|2C|2D|2E|2F|2G|2H|2I|2J|2K|2L|2M|2N|5R|5S", "o|8|5g|Ls|2m|Bh|3A|3A", "o|8|1N|7I|7h|80|3A|3A", "a|L|M|N|O|P|Q|R|1N|1f|2J|2L|1O|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|1A|1B|1C|1D|1E|1F|1G|1K|1L|1P|1Q|1R|1S|1V|1W|1X|1Z|1a|1d|1h|1i|1j|1k|1l|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2C|2G|2I|2M|2N", "booleans", "o|4f|Lw|1N|3A|4g|FF", "o|4f|2T|1N|3A|4g|FF", "a|2r|2t|2u|2v|2w|2y|4V|Lj|30|31|32|33|35|Lk|Lx|Lo|Ly", "o|8|1O|Lv|Li|Lz|3A|3A", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|LJ|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|1P|3C|46|M1|3A|3A", "mergeMathLists", "o|2U|M3|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3a|Lh|M4|3Q|3S|3U|3W|3g|3i|3k|3m", "o|2p|M3|1N|2q", "maths", "o|4f|M7|1P|3A|4g|Dw", "o|4f|3J|1i|3A|4g|KC", "o|4f|2T|1P|3A|4g|Dw", "a|2r|2t|2u|2v|2w|2y|4V|Lj|4D|4E|4F|30|31|32|33|35|4R|4S|4T|4U|M6|Lk|M8|71|M9|4b|38|Lo|MA", "o|8|1Q|84|M5|MB|3A|3A", "o|8|1R|84|M5|MB|3A|3A", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|q|1F|1G|1L|1P|1W|1i|1j|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2G|2M|2N|1Q|1R|1S", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3a|Lh|3Q|3S|3U|3W", "o|4f|2T|1i|3A|4g|KC", "a|2r|2t|2u|2v|2w|2y|4V|Lj|30|31|32|33|35|4R|4S|4T|4U|Lk|M9|71|M8|38|Lo|MG", "o|8|1S|ME|MF|MH|3A|3A", "source", "o|2P|MJ", "assignNamesSkip", "o|2P|ML", "prop", "o|2P|MN", "componentIndex", "o|2P|MP", "propIndex", "o|2P|MR", "sourceAttributesToIgnore", "o|2P|MT", "componentTypes", "o|2P|MV", "a|2Q|2S|MK|6R|2f|2l|MM|MO|Lh|MQ|MS|MU|MW|6Z", "o|2p|MP|1j|2q", "o|2p|MR|1S|2q", "stringArray", "o|2p|MT|Ma|2q", "a|2w|2y|Lj|MY|MZ|Mb|30|31|32|33|35", "o|8|1T|Bs|MX|Mc|3A|2q", "target", "o|2P|Me", "textType", "o|2P|Mg", "uri", "o|2P|Mi", "page", "o|2P|Mk", "createButton", "o|2U|Mm|2Y", "a|2Q|2S|Mf|2Z|2b|2d|2f|2h|2j|2l|Mh|Mj|Ml|Mn", "o|2p|Mg|1L|2q", "o|2p|Mi|1L|2q", "o|2p|Mk|1j|2q", "linkText", "o|2p|Ms|1L|2q", "a|2r|2t|2u|2v|2w|2y|Mp|Mq|Mr|30|31|32|33|35|Mt", "o|8|1U|6P|Mo|Mu|3A|3A", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|Fb|Fc|Fd|Ff|Fg|3Q|3S|3U|3W|AE|EL|Fi", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ae|Ey|30|31|32|33|35|Af|4R|4S|4T|4U|4L|4N|4P|Ah|Aj|Fq|F8|Fr|Fs|4b|Fu|Fw|4w|4y|50|Fx", "o|8|1V|Fa|Mw|Mx|3A|3A", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3a|3e|3g|3i|3k|3m|3o|3q|3s|3u|45", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4C|4D|4E|4F|4G|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|Fx|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4B|4w|4y|50", "o|8|1W|3C|Mz|N0|3A|3A", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|G2|AM|G4|G6|G8|AQ|3Q|3S|3U|3W|GA", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ae|30|31|32|33|35|Af|4R|4S|4T|4U|4L|4N|4P|Ah|Aj|F8|Av|GD|GE|GG|GI|GK|GL|GN|GP|4b", "o|8|1X|G0|N2|N3|3A|3A", "endpointsDraggable", "o|2U|N5|2Y", "endpoints", "o|2P|N7", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|N6|N8|EL|GA|3Q|3S|3U|3W", "o|2p|N5|1N|2q", "o|4f|N7|1P|3A|4r|B2", "o|2p|FA|1P|2q", "o|2p|G3|1i|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ey|Ae|30|31|32|33|35|Af|4R|4S|4T|4U|Ah|Aj|NA|F8|NB|NC|ND", "o|8|5h|EF|N9|NE|3A|2q", "o|2P|2C", "direction", "o|2P|NH", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|NG|AM|NI|3Q|3S|3U|3W", "o|4f|NH|1P|3A|4g|4j", "o|4f|AL|1P|3A|4g|B5", "o|4f|2C|1P|3A|4g|B5", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|30|31|32|33|35|Af|4R|4S|4T|4U|Ah|Aj|F8|NK|NL|NM", "o|8|5i|EF|NJ|NN|3A|2q", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|EH|EJ|EL|EN|EP|ER|EW|EY|Ea|Ec|Ee|Eg|Ei|3Q|3S|3U|3W", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ey|Ez|F0|F1|30|31|32|33|35|Af|4R|4S|4T|4U|Ah|Aj|F5|F6|F7|FW|F8|F9|FB", "o|8|5j|EF|NP|NQ|3A|2q", "filled", "o|2U|NS|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|EH|EJ|EL|EN|EP|ER|EW|EY|Ea|Ec|Ee|Eg|Ei|3Q|3S|3U|3W|NT", "o|2p|NS|1N|2q", "borderStyleDescription", "o|2p|NW|1L|2q", "fillStyleDescription", "o|2p|NY|1L|2q", "perimeter", "o|2p|Na|1i|2q", "area", "o|2p|Nc|1i|2q", "numSides", "o|2p|Ne|1i|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ey|Ez|F0|F1|NV|30|31|32|33|35|Af|4R|4S|4T|4U|Ah|Aj|F5|F6|F7|FW|F8|F9|NX|NZ|Nb|Nd|Nf", "o|8|5k|EF|NU|Ng|3A|2q", "o|8|5l|EF|NU|Ng|3A|2q", "o|2P|43", "height", "o|2P|Nk", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|EH|EJ|EL|EN|EP|ER|EW|EY|Ea|Ec|Ee|Eg|Ei|3Q|3S|3U|3W|NT|Nj|Jx|Nl", "o|4f|43|1P|3A|4g|B5", "o|2p|Jw|1i|2q", "o|2p|Nk|1i|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ey|Ez|F0|F1|NV|30|31|32|33|35|Af|4R|4S|4T|4U|Ah|Aj|F5|F6|F7|FW|F8|F9|NX|NZ|Nb|Nd|Nn|No|Np|Nf", "o|8|5m|EF|Nm|Nq|3A|2q", "o|2P|FV", "o|2P|Ne", "circumradius", "o|2P|Nu", "radius", "o|2P|Nw", "inradius", "o|2P|Ny", "apothem", "o|2P|O0", "sideLength", "o|2P|O2", "o|2P|Na", "o|2P|Nc", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|EH|EJ|EL|EN|ER|EW|EY|Ea|Ec|Ee|Eg|Ei|3Q|3S|3U|3W|NT|Ns|Nt|Nj|Nv|Nx|Nz|O1|O3|O4|O5", "o|2p|FV|1j|2q", "o|2p|Nu|1i|2q", "o|2p|Ny|1i|2q", "o|2p|O2|1i|2q", "o|2p|Ne|1j|2q", "o|2p|Nw|1i|2q", "o|2p|O0|1i|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ey|Ez|F0|F1|NV|30|31|32|33|35|Af|4R|4S|4T|4U|Ah|Aj|F5|F6|F7|O7|F8|F9|NX|NZ|Nb|Nd|Nn|O8|O9|OA|OB|OC|OD", "o|8|5n|EF|O6|OE|3A|2q", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|AE|GU|GW|GY|Ga|Gc|Ge|Gj|AM|EL|AW|3Q|3S|3U|3W|Nj|Nx|NT|Fi", "o|2p|Nw|1P|2q", "diameter", "o|2p|OI|1P|2q", "circumference", "o|2p|OK|1P|2q", "o|2p|Nc|1P|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ae|Gp|Gq|Gr|Gs|Gt|Gu|Gv|Ey|NV|30|31|32|33|35|Af|4R|4S|4T|4U|Ah|Aj|NX|NZ|Fq|Gw|Gx|Gz|OH|OJ|OL|OM|Nn", "o|8|5o|G0|OG|ON|3A|3A", "o|2P|EU", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|AE|GU|GW|GY|Ga|Gc|Ge|Gj|AM|EL|AW|3Q|3S|3U|3W|OP", "a", "o|2p|OR|1i|2q", "b", "o|2p|OT|1i|2q", "o|2p|w|1i|2q", "o|4f|EU|1P|3A|4g|B5", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ae|Gp|Gq|Gr|Gs|Gt|Gu|Gv|Ey|30|31|32|33|35|Af|4R|4S|4T|4U|Ah|Aj|Gw|Gx|Gz|OS|OU|OV|OW|GE|BQ", "o|8|5p|G0|OQ|OX|3A|3A", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|AE|GU|GW|GY|Ga|Gc|Ge|Gj|AS|AM|Gl|Gn|EL|AW|3Q|3S|3U|3W", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ae|Gp|Gq|Gr|Gs|Gt|Gu|Gv|Ey|30|31|32|33|35|Af|4R|4S|4T|4U|Ah|Aj|Gw|Gx|F8|Gz|H3|H5|HA|HE|HG|HI|HK|HM|HO|HQ|HS|HU|HW|HX", "o|8|5q|GS|OZ|Oa|3A|3A", "a|5r|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|1A|1B|1C|1D|1E|1F|1G|1K|1L|1P|1Q|1R|1S|1V|1W|1X|1Z|1a|1d|1h|1i|1j|1k|1l|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2C|2G|2I|2M|2N", "alwaysVisible", "o|2U|Od|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Oe", "o|2p|Od|1N|2q", "a|2r|2t|2u|2v|2w|2y|Og|30|31|32|33|35", "o|8|1Y|Oc|Of|Oh|3A|3A", "a|A|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|1F|1P|1W|1Z|1m|1n|1t|1w|21|22|2G|2M|E|n|o|p|q|1A|1B|1C|1D|1E|1G|1K|1L|1Q|1R|1S|1V|1X|1a|1d|1h|1i|1j|1k|1l|1o|1x|1y|1z|20|23|24|25|2C|2I|2N", "symmetric", "previous", "next", "both", "a|Ok|Ol|Om|On|3H", "o|2U|NH|Oo", "pointNumber", "o|2P|Oq", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Op|Or", "o|2p|NH|1L|2q", "o|2p|Oq|1i|2q", "a|2r|2t|2u|2v|2w|2y|Ot|Ou|30|31|32|33|35", "o|8|5r|Oj|Os|Ov|3A|3A", "a|C|D|2K|A|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|1A|1F|1P|1V|1W|1Z|1m|1n|1t|1w|21|22|2C|2G|2M|E|q|1G|1L|1i|1j|1o|1x|1y|1z|20|23|24|25|2N|n|o|p|1B|1C|1D|1E|1K|1Q|1R|1S|1X|1a|1d|1h|1k|1l|2I", "headDraggable", "o|2U|Oy|2Y", "tailDraggable", "o|2U|P0|2Y", "displacement", "o|2P|P2", "head", "o|2P|P4", "tail", "o|2P|P6", "displayWithAngleBrackets", "o|2U|P8|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|Oz|P1|Fb|Fc|Fd|Ff|P3|P5|P7|3Q|3S|3U|3W|P9|EL", "o|2p|P8|1N|2q", "o|2p|P0|1N|2q", "o|2p|Oy|1N|2q", "o|4f|P2|1P|3A|4g|4j", "o|4f|P4|1P|3A|4g|B5", "o|4f|P6|1P|3A|4g|B5", "magnitude", "o|2p|PH|1P|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|PB|Ey|30|31|32|33|35|Af|4R|4S|4T|4U|4L|4N|4P|Ah|Aj|PC|PD|F8|PE|PF|PG|PI|4b|4w|4y|50", "o|8|1Z|Ox|PA|PJ|3A|3A", "a|C|D|2K|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|q|1F|1G|1L|1P|1W|1i|1j|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2G|2M|2N|n|o|p|1A|1B|1C|1D|1E|1K|1Q|1R|1S|1V|1X|1Z|1a|1d|1h|1k|1l|2C|2I", "chooseReflexAngle", "never", "allowed", "always", "a|PN|PO|PP", "o|2U|PM|PQ", "inDegrees", "o|2U|PS|2Y", "radians", "o|2P|PU", "degrees", "o|2P|PW", "betweenLines", "o|2P|PY", "emphasizeRightAngle", "o|2U|Pa|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|Nx|PR|PT|PV|PX|AM|PZ|3Q|3S|3U|3W|Pb", "o|2p|PM|1L|2q", "o|2p|PS|1N|2q", "o|2p|Pa|1N|2q", "o|2p|PU|1P|2q", "o|2p|PW|1P|2q", "o|2p|1a|1P|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|OH|Pd|Pe|Pf|30|31|32|33|35|Af|4R|4S|4T|4U|Pg|Ph|LJ|Pi", "o|8|1a|PL|Pc|Pj|3A|3A", "considerAsResponses", "a|5s|1K|1d|1e|1f|1g|Pl|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|1A|1B|1C|1D|1E|1F|1G|1L|1P|1Q|1R|1S|1V|1W|1X|1Z|1a|1h|1i|1j|1k|1l|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2C|2G|2I|2M|2N|C|D|L|M|N|O|P|Q|R|1M|1N|1c|2J|2K|2L|1O", "handGraded", "o|2U|Pn|2Y", "inline", "o|2U|Pp|2Y", "matchPartial", "o|2U|Pr|2Y", "forceFullCheckworkButton", "o|2U|Pt|2Y", "numAwardsCredited", "o|2P|Pv", "maxNumAttempts", "o|2P|Px", "showCorrectness", "o|2U|Pz|2Y", "disableAfterCorrect", "o|2U|Q1|2Y", "selectMultiple", "o|2U|Q3|2Y", "shuffleOrder", "o|2U|Q5|2Y", "expanded", "o|2U|Q7|2Y", "displayDigitsForResponses", "o|2P|Q9", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|C5|Po|Pq|7K|Ps|Pu|7O|7M|7Q|7S|Pw|Py|7U|7W|7Y|7a|7c|7e|7g|Q0|LY|Q2|C9|CB|Q4|Q6|3k|3m|Q8|QA|CD", "o|2p|Pn|1N|2q", "o|2p|Pp|1N|2q", "o|2p|Pr|1N|2q", "o|2p|Pt|1N|2q", "o|2p|Pv|1j|2q", "o|2p|Px|1j|2q", "o|2p|Q1|1N|2q", "o|2p|Q3|1N|2q", "o|2p|Q5|1N|2q", "o|2p|Q7|1N|2q", "o|2p|Q9|1j|2q", "disabledOriginal", "o|2p|QN|1N|2q", "numResponses", "o|2p|QP|1i|2q", "a|2|2o|4c|4e", "currentResponses", "a|2o|4c", "o|QT|3A|4g", "a|QU", "o|QR|QS|3A|4g|QV", "numSubmittedResponses", "o|2p|QX|1i|2q", "submittedResponses", "o|QR|QZ|3A|4g|QV", "responseHasBeenSubmitted", "o|2p|Qb|1N|2q", "justSubmitted", "o|2p|Qd|1N|2q", "numFeedbacks", "o|2p|Qf|1i|2q", "feedbacks", "o|Am|3A|69|4g", "a|Qi", "o|4f|Qh|69|3A|4g|Qj", "numSubmissions", "o|2p|Ql|1j|2q", "numAttemptsLeft", "o|2p|Qn|1j|2q", "a|2|2o", "currentResponse", "o|Qp|Qq|2q", "submittedResponse", "o|Qp|Qs|2q", "a|2r|2t|2u|2v|2w|2y|CU|QC|QD|7i|QE|QF|7k|7j|7l|7m|QG|QH|7n|7o|7p|7q|7r|7s|7t|QI|CW|CX|QJ|QK|4E|4F|QL|QM|CY|30|32|33|35|QO|QQ|QW|QY|Qa|Ck|Qc|Qe|Qg|Qk|Qm|Qo|31|Qr|Qt", "o|8|1b|Pm|QB|Qu|3A|2q", "a|1c|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|1A|1B|1C|1D|1E|1F|1G|1K|1L|1P|1Q|1R|1S|1V|1W|1X|1Z|1a|1d|1h|1i|1j|1k|1l|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2C|2G|2I|2M|2N|C|D|L|M|N|O|P|Q|R|1M|1N|2J|2K|2L|1f|1O|5V", "credit", "o|2P|Qx", "feedbackCodes", "o|2P|Qz", "feedbackText", "o|2P|R1", "sourcesAreResponses", "o|2P|R3", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Qy|Ps|7K|7M|7O|7Q|7S|7U|7W|7Y|7a|7c|7e|7g|R0|R2|R4|3k|3m", "o|2p|Qx|1i|2q", "o|2p|Qz|1M|2q", "o|2p|R1|1L|2q", "creditAchievedIfSubmit", "o|2p|R9|1i|2q", "fractionSatisfiedIfSubmit", "o|2p|RB|1i|2q", "fractionSatisfied", "o|2p|RD|1i|2q", "awarded", "o|2p|RF|1N|2q", "o|2p|69|69|2q", "a|2r|2t|2u|2v|2w|2y|R6|QE|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|R7|R8|4E|4F|30|31|32|33|35|RA|RC|RE|Ck|RG|Qg|Qk|RH", "o|8|5s|Qw|R5|RI|3A|3A", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|7K|7M|7O|7Q|7S|7U|7W|7Y|7a|7c|7e|7g|Ps", "conditionSatisfied", "o|2p|RL|1N|2q", "a|2r|2t|2u|2v|2w|2y|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|QE|30|31|32|33|35|7w|RE|RM|38", "o|8|1c|7I|RK|RN|2q|3A", "prefillLatex", "o|2P|RP", "hideNaN", "o|2U|RR|2Y", "removeStrings", "o|2P|RT", "minWidth", "o|2P|RV", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|IX|RQ|3F|3g|3k|3m|3Q|3S|3U|3W|L4|L6|RS|RU|RW|A9", "o|2p|RP|2N|2q", "o|2p|RR|1N|2q", "o|2p|RV|1j|2q", "rawRendererValue", "o|2p|Rb|2N|2q", "a|2r|2t|2u|2v|2w|2y|LB|LD|RY|47|4D|4E|4F|LE|RZ|Ra|Ac|30|31|32|33|35|4R|4S|4T|4U|Af|LG|LJ|LI|LL|38|Rc", "o|8|1d|G0|RX|Rd|3A|3A", "a|C|D|2K|A|E|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|q|1C|1D|1F|1G|1L|1M|1N|1P|1Q|1R|1S|1W|1c|1h|1i|1j|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2G|2J|2L|2M|2N", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|IX|L4|Q8|Jx|Nl|A9|3q|3u|45", "o|2p|IW|1L|2q", "_componentSize", "o|2p|Nk|Ri|2q", "o|2p|Jw|Ri|2q", "o|2p|LK|1L|2q", "a|2r|2t|2u|2v|2w|2y|LB|Rh|QL|Rj|Ac|4H|4J|30|31|32|33|35|Af|4Q|Rk|LG|Be|LI|Rl|38", "o|8|1e|Rf|Rg|Rm|3A|3A", "a|C|D|2K|L|M|N|O|P|Q|R|1N|1f|2J|2L|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|1A|1B|1C|1D|1E|1F|1G|1K|1L|1P|1Q|1R|1S|1V|1W|1X|1Z|1a|1d|1h|1i|1j|1k|1l|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2C|2G|2I|2M|2N", "o|2U|IW|2Y", "asToggleButton", "o|2U|Rq|2Y", "o|2U|L3|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Rp|A9|Rr|Rs|3q|3u|45", "o|2p|IW|1N|2q", "o|2p|Rq|1N|2q", "a|2r|2t|2u|2v|2w|2y|LB|Ru|Ac|Rv|4H|4J|30|31|32|33|35|Af|4Q|LG|7w|38", "o|8|1f|Ro|Rt|Rw|3A|3A", "a|C|D|2K|1h", "preselectChoice", "o|2P|Rz", "placeHolder", "o|2P|S1", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Q4|Ps|Pq|Q6|S0|L4|S2|C9|CB|A9", "numChoices", "o|2p|S4|1i|2q", "choiceTexts", "o|4f|S6|1L|3A|4g|H2", "choiceMaths", "o|4f|S8|1P|3A|4g|Dw", "selectedIndices", "o|4f|SA|1i|3A|4g|KC", "selectedValues", "o|QR|SC|3A|4g|QV", "o|2p|Ln|BL|2q", "selectedIndex", "o|2p|SF|1i|2q", "selectedValue", "o|Qp|SH|2q", "o|QR|2T|3A|4g|QV", "valueToRecordOnSubmit", "o|4f|SK|1i|3A|4g|KC", "valueRecordedAtSubmit", "o|2p|SM|BL|2q", "a|2r|2t|2u|2v|2w|2y|LB|QJ|QE|QK|CW|CX|Ac|30|31|32|33|35|Af|QD|S5|S7|S9|LG|SB|SD|Qg|Qk|SE|SG|SI|SJ|SL|SN", "o|8|1g|Ry|S3|SO|3A|2q", "preSelect", "o|2U|SQ|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Qy|R0|R2|SR", "selected", "o|2p|ST|1N|2q", "submitted", "o|2p|SV|1N|2q", "feedbacktext", "o|2p|Qh|SX|2q", "a|2r|2t|2u|2v|2w|2y|R6|R7|R8|30|31|32|33|35|38|71|SU|SW|SY", "o|8|1h|6P|SS|SZ|3A|3A", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|q|1F|1G|1L|1P|1W|1i|1j|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2G|2M|2N|n|o|p|1A|1B|1C|1D|1E|1K|1Q|1R|1S|1V|1X|1Z|1a|1d|1h|1k|1l|2C|2I|C|D|L|M|N|O|P|Q|R|1M|1N|1c|2J|2K|2L|1f", "renderAsMath", "o|2U|Sc|2Y", "convertBoolean", "o|2U|Se|2Y", "valueOnNaN", "o|2P|Sg", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3Q|3S|3U|3W|Sd|Sf|Sh|3q|3s|3u|45", "o|2p|Sc|1N|2q", "o|2p|36|1i|2q", "a|2r|2t|2u|2v|2w|2y|Sj|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|Sk|38|71|4b", "o|8|1i|Sb|Si|Sl|3A|3A", "valuePreRound", "o|2p|Sn|1j|2q", "o|2p|36|1j|2q", "a|2r|2t|2u|2v|2w|2y|Sj|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|38|71|4b|So|Sp", "o|8|1j|Sb|Si|Sq|3A|3A", "a|C|D|A|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|5T|1A|1B|5U|1F|1H|1P|1T|1V|1W|1X|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|1Z|1a|1k|1l|1m|1n|1p|63|1q|1r|1t|1u|1v|1w|21|22|2A|2C|2D|2E|2G|2H|2I|6D|6E|6F|6K|2M|6O|66|E|L|M|N|O|P|Q|R|q|1C|1D|1G|1L|1M|1N|1Q|1R|1S|1c|1h|1i|1j|1o|1x|1y|1z|20|23|24|25|2J|2K|2L|2N|1E|1K|1d|F|G|H|K|I|J|26|27|28|1f|1e|5t", "xmin", "o|2P|St", "xmax", "o|2P|Sv", "ymin", "o|2P|Sx", "ymax", "o|2P|Sz", "size", "tiny", "small", "medium", "large", "a|T2|T3|T4|T5|3I", "o|2U|T1|T6", "aspectRatio", "o|2P|T8", "displayMode", "block", "a|TB|Pp", "o|2U|TA|TC", "horizontalAlign", "a|43|41|42", "o|2U|TE|TF", "identicalAxisScales", "o|2U|TH|2Y", "displayXAxis", "o|2U|TJ|2Y", "displayYAxis", "o|2U|TL|2Y", "displayXAxisTickLabels", "o|2U|TN|2Y", "displayYAxisTickLabels", "o|2U|TP|2Y", "xlabelPosition", "a|42|41", "o|2U|TR|TS", "xTickScaleFactor", "o|2P|TU", "ylabelPosition", "a|6|40", "o|2U|TW|TX", "ylabelAlignment", "a|41|42", "o|2U|TZ|Ta", "yTickScaleFactor", "o|2P|Tc", "showNavigation", "o|2U|Te|2Y", "fixAxes", "o|2U|Tg|2Y", "grid", "o|2P|Ti", "showBorder", "o|2U|Tk|2Y", "hideOffGraphIndicators", "o|2U|Tm|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Su|Sw|Sy|T0|Jx|T7|T9|TD|TG|TI|TK|TM|TO|TQ|TT|TV|TY|Tb|Td|Tf|Th|Tj|3Q|3S|3U|3W|Tl|Tn", "o|2p|TA|1L|2q", "o|2p|TE|1L|2q", "o|2p|TH|1N|2q", "o|2p|TJ|1N|2q", "o|2p|TL|1N|2q", "o|2p|TN|1N|2q", "o|2p|TP|1N|2q", "o|2p|TR|1L|2q", "o|2p|TU|1P|2q", "o|2p|TW|1L|2q", "o|2p|TZ|1L|2q", "o|2p|Tc|1P|2q", "o|2p|Te|1N|2q", "o|2p|Tg|1N|2q", "o|2p|Tk|1N|2q", "o|2p|Tm|1N|2q", "o|2p|C|2K|2q", "o|2p|D|2K|2q", "o|2p|T1|1L|2q", "o|2p|T8|1i|2q", "o|2p|St|1i|2q", "o|2p|Sv|1i|2q", "o|2p|Sx|1i|2q", "o|2p|Sz|1i|2q", "o|Qp|Ti|2q", "a|2r|2t|2u|2v|2w|2y|Tp|Tq|Tr|Ts|Tt|Tu|Tv|Tw|Tx|Ty|Tz|U0|U1|U2|U3|U4|30|31|32|33|35|4R|4S|4T|4U|U5|U6|U7|Rk|U8|U9|UA|UB|UC|Aa|Ab|UD", "o|8|5t|Ss|To|UE|3A|2q", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3M|3O|9z|A1|A3|A5|A7|A9|AB|AE|3s|AG|AI|AK|AM|AO|AQ|AS|AU|3Q|3S|3U|3W|AW", "a|2r|2t|2u|2v|2w|2y|AZ|Aa|Ab|Ac|Ad|Ae|4I|30|31|32|33|35|Af|4L|4N|4P|Ah|Aj|4R|4S|4T|4U|Ak|Al|Ap|48|Aq|Ar|Av|Ax|4b|Az|B3|B6|B8|BA|BB|BD|BF|BH|BI|BJ|BM|BO|BQ", "o|8|1k|9x|UG|UH|3A|3A", "a|n|o|p|1k|1l|C|D|2K", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3M|3O|9z|A1|A7|A9|AB|AE|3s|AO|AQ|AS|AU|3Q|3S|3U|3W|AW", "a|2r|2t|2u|2v|2w|2y|AZ|Aa|Ab|Ac|Ad|Ae|4I|30|31|32|33|35|Af|4L|4N|4P|Ah|Aj|4R|4S|4T|4U|Ak|Al|48|Aq|Ar|Av|Ax|4b|Az|B3|B6|B8|BA|BB|BD|BF|BH|BI|BJ|BM|BO|BQ", "o|8|1l|UJ|UK|UL|3A|2q", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3g|3i|3k|3m|3o|3q|3s|3u|45", "o|2p|36|1m|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4D|4E|4F|4G|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|UO|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4C|4w|4y|50", "o|8|1m|3C|UN|UP|3A|3A", "template", "o|8|UR|6P|6a|6c|2q|3A", "option", "selectForVariants", "o|2P|UU", "selectWeight", "o|2P|UW", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|6S|2l|6U|6W|6Y|6Z|UV|UX", "textListFromString", "o|2p|UU|UZ|2q", "o|2p|UW|1i|2q", "a|2r|2t|2u|2w|2y|6b|Ua|Ub|30|31|32|33|35", "o|8|UT|6P|UY|Uc|2q|3A", "o|2P|2c", "o|2P|3V", "letters", "a|1i|1P|Ug", "o|2U|2n|Uh", "from", "o|2P|Uj", "to", "o|2P|Ul", "step", "o|2P|Un", "o|2P|FA", "exclude", "o|2P|Uq", "a|2Q|2S|6R|2Z|2b|Ue|2f|2h|2j|2l|3Q|3S|3U|Uf|Ui|Uk|Um|Uo|Up|Ur|6Z", "o|8|1n|Bs|Us|6p|3A|2q", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|q|1F|1G|1L|1P|1W|1i|1j|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2G|2M|2N|C|D|L|M|N|O|P|Q|R|1C|1D|1M|1N|1Q|1R|1S|1c|1h|2J|2K|2L|62", "a|1i|1L", "o|2U|2n|Uv", "initialValue", "o|2P|Ux", "showControls", "o|2U|Uz|2Y", "showTicks", "o|2U|V1|2Y", "showValue", "o|2U|V3|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Uw|Jx|Nl|Uy|A9|V0|V2|V4|Uk|Um|Uo|3Q|3S|3U|3W|L4", "o|2p|Uz|1N|2q", "o|2p|V1|1N|2q", "o|2p|V3|1N|2q", "o|2p|Uj|1i|2q", "o|2p|Ul|1i|2q", "o|2p|Un|1i|2q", "items", "o|Qp|VC|2q", "numItems", "o|2p|VE|1j|2q", "o|Qp|36|2q", "a|2r|2t|2u|2v|2w|2y|Rk|Rj|Ac|V6|V7|V8|V9|VA|VB|30|31|32|33|35|Af|4R|4S|4T|4U|VD|VF|VG", "o|8|5u|Uu|V5|VH|3A|2q", "a|1o|5w|5x|5y|6I", "minNumRows", "o|2P|VK", "minNumColumns", "o|2P|VM", "columnHeaders", "o|2U|VO|2Y", "rowHeaders", "o|2U|VQ|2Y", "fixedRowsTop", "o|2P|VS", "fixedColumnsLeft", "o|2P|VU", "hiddenColumns", "o|2P|VW", "hiddenRows", "o|2P|VY", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Jx|VL|VN|Nl|VP|VR|VT|VV|VX|VZ", "o|2p|VK|1i|2q", "o|2p|VM|1i|2q", "o|2p|VO|1N|2q", "o|2p|VQ|1N|2q", "o|2p|VS|1j|2q", "o|2p|VU|1j|2q", "o|2p|VW|1S|2q", "o|2p|VY|1S|2q", "o|2p|4n|1i|2q", "o|2p|4p|1i|2q", "cells", "o|4h|2q|5y", "o|4h|2q|5w", "a|Vm|Vn", "o|4f|Vl|1o|3A|4r|Vo", "evaluatedCells", "o|4f|Vq|1o|3A|4r|Vo", "pointsInCells", "a|HC|B0", "o|4f|Vs|1V|3A|4r|Vt", "a|2r|2t|2u|2v|2w|2y|Rk|Vb|Vc|Vd|Ve|Vf|Vg|Vh|Vi|30|31|32|33|35|Vj|Vk|Rj|Vp|Vr|Vu", "o|8|5v|VJ|Va|Vv|3A|2q", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|1A|1B|1C|1D|1E|1F|1G|1K|1L|1P|1Q|1R|1S|1V|1W|1X|1Z|1a|1d|1h|1i|1j|1k|1l|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2C|2G|2I|2M|2N|9|B|C|D|57|58|59|F|G|H|I|J|K|L|M|N|O|P|Q|R|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|19|5T|5U|5V|5W|5X|5Y|5Z|1H|5a|1I|5b|1J|5c|5d|5e|5f|1M|5g|1N|1O|1T|1U|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|1Y|5r|1b|5s|1c|1e|1f|1g|5t|5u|5v|5w|5x|5y|5z|60|61|62|1p|63|1q|1r|1s|64|1u|1v|65|66|67|68|69|26|27|28|29|2A|6A|2B|6B|2D|2E|2F|6C|2H|6D|6E|6F|6G|6H|2J|6I|6J|6K|2K|2L|6L|6M|6N|6O", "rowNum", "o|2P|Vy", "colNum", "o|2P|W0", "colSpan", "o|2P|W2", "halign", "o|2P|W4", "o|2P|40", "o|2P|42", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Vz|W1|W3|W5|W6|W7|IX", "o|2p|Vy|1L|2q", "o|2p|W0|1L|2q", "o|2p|W2|1j|2q", "o|2p|W4|1L|2q", "o|2p|40|1L|2q", "o|2p|42|1L|2q", "inHeader", "o|2p|WF|1N|2q", "a|2r|2t|2u|2v|2w|2y|W9|WA|WB|Rh|30|31|32|33|35|WC|WD|WE|WG|38|71|4X", "o|8|1o|Vx|W8|WH|3A|3A", "a|1o", "header", "o|2U|WK|2Y", "o|2P|41", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Vz|WL|W5|K3|WM|W6|3g|3i|3k|3m", "o|2p|WK|1N|2q", "o|2p|K2|1L|2q", "o|2p|41|1L|2q", "a|2r|2t|2u|2v|2w|2y|W9|WO|30|31|32|33|35|WC|WP|WQ|WD", "o|8|5w|WJ|WN|WR|3A|2q", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|W1|3g|3i|3k|3m", "a|2r|2t|2u|2v|2w|2y|WA|30|31|32|33|35", "o|8|5x|WJ|WT|WU|3A|2q", "a|1o|5w|5x|5y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Vz|W1", "a|2r|2t|2u|2v|2w|2y|W9|WA|30|31|32|33|35", "o|8|5y|WW|WX|WY|3A|2q", "a|5w", "justify", "a|41|43|42|Wb", "o|2U|W4|Wc", "middle", "a|6|We|40", "o|2U|K2|Wf", "minor", "major", "a|3H|Wh|T4|Wi", "o|2U|6|Wj", "o|2U|41|Wj", "o|2U|40|Wj", "o|2U|42|Wj", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Jx|Nl|Wd|Wg|Wk|Wl|Wm|Wn", "o|2p|6|1L|2q", "a|2r|2t|2u|2v|2w|2y|Rk|Rj|WC|WP|Wp|WQ|WD|WE|30|31|32|33|35", "o|8|5z|Wa|Wo|Wq|3A|2q", "suppressTableNameInTitle", "o|2U|Ws|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Wt|7F", "tableEnumeration", "o|2p|Wv|1L|2q", "tableName", "o|2p|Wx|1L|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|Ww|Wy|Ci", "o|8|60|LO|Wu|Wz|3A|3A", "a|6B|9|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|1A|1B|1C|1D|1E|1F|1G|1H|1I|1J|1K|1L|1M|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|1Y|1Z|1a|1b|1c|1d|1e|1f|1g|1h|1i|1j|1k|1l|1m|1n|1o|1p|1q|1r|1s|1t|1u|1v|1w|1x|1y|1z|20|21|22|23|24|25|26|27|28|29|2A|2B|2C|2D|2E|2F|2G|2H|2I|2J|2K|2L|2M|2N|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5V|5W|5X|5Y|5Z|5a|5b|5c|5d|5e|5g|5t|5v|5z|60|61|66|67|68|69|6C|6G|6H|6J|6M|6N", "suppressFigureNameInCaption", "o|2U|X2|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|X3|7F", "figureEnumeration", "o|2p|X5|1L|2q", "figureName", "o|2p|X7|1L|2q", "o|2p|6B|1L|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|X6|X8|X9", "o|8|61|X1|X4|XA|3A|3A", "markerType", "o|2p|XC|1L|2q", "o|QR|62|3A|4g|QV", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|XD|XE", "o|8|62|Lf|2m|XF|3A|2q", "sources", "a|UR|XH", "behavior", "o|2P|XJ", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|6S|2l|MM|XK|6Z", "o|2p|XJ|1L|2q", "a|2r|2t|2u|2w|2y|XM|30|31|32|33|35", "o|8|1p|XI|XL|XN|3A|2q", "alias", "o|2P|XP", "indexAlias", "o|2P|XR", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|XQ|XS", "o|8|XH|6P|XT|6p|2q|3A", "dx", "o|2P|XV", "dy", "o|2P|XX", "xoffset", "o|2P|XZ", "yoffset", "o|2P|Xb", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|XW|XY|Xa|Xc", "o|2p|XV|1i|2q", "o|2p|XX|1i|2q", "o|2p|XZ|1i|2q", "o|2p|Xb|1i|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|Xe|Xf|Xg|Xh|30|31|32|33|35|Af", "o|8|63|EF|Xd|Xi|3A|2q", "constrainToGrid", "constrainToGraph", "attractToGrid", "constrainTo", "attractTo", "constraintUnion", "attractToConstraint", "constrainToInterior", "a|Xk|Xl|Xm|Xn|Xo|Xp|Xq|Xr", "scales", "o|2p|Xt|1i|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|Xu|Fu", "o|8|FZ|Xs|2m|Xv|2q|2q", "dz", "o|2P|Xx", "zoffset", "o|2P|Xz", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|XW|XY|Xy|Xa|Xc|Y0", "o|2p|Xx|1i|2q", "o|2p|Xz|1i|2q", "a|2r|2t|2u|2v|2w|2y|Xe|Xf|Y2|Xg|Xh|Y3|30|31|32|33|35", "o|8|Xk|Bs|Y1|Y4|2q|2q", "buffer", "o|2P|Y6", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Y7", "o|2p|Y6|1i|2q", "a|2r|2t|2u|2v|2w|2y|Y9|30|31|32|33|35", "o|8|Xl|Bs|Y8|YA|2q|2q", "xthreshold", "o|2P|YC", "ythreshold", "o|2P|YE", "zthreshold", "o|2P|YG", "includeGridlines", "o|2U|YI|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|XW|XY|Xy|Xa|Xc|Y0|YD|YF|YH|YJ", "o|2p|YC|1i|2q", "o|2p|YE|1i|2q", "o|2p|YG|1i|2q", "o|2p|YI|1N|2q", "a|2r|2t|2u|2v|2w|2y|Xe|Xf|Y2|Xg|Xh|Y3|YL|YM|YN|YO|30|31|32|33|35", "o|8|Xm|Bs|YK|YP|2q|2q", "a|A|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|5T|1A|1B|5U|1F|1H|1P|1T|1V|1W|1X|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|1Z|1a|1k|1l|1m|1n|1p|63|1q|1r|1t|1u|1v|1w|21|22|2A|2C|2D|2E|2G|2H|2I|6D|6E|6F|6K|2M|6O", "relativeToGraphScales", "o|2U|YS|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|YT", "o|2p|YS|1N|2q", "a|2r|2t|2u|2v|2w|2y|YV|30|31|32|33|35", "o|8|Xn|YR|YU|YW|2q|2q", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|YT|8r", "a|2r|2t|2u|2v|2w|2y|YV|30|31|32|33|35|8t", "o|8|Xo|YR|YY|YZ|2q|2q", "o|8|Xp|Xs|2m|6p|2q|2q", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|8r", "a|2r|2t|2u|2v|2w|2y|8t|30|31|32|33|35", "o|8|Xq|Xs|Yc|Yd|2q|2q", "o|8|Xr|YR|YU|YW|2q|2q", "a|1B|1X|2I|5h|5o|5k|5l|5m|5n|5T|5j", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|2j|2l|MM|6Z", "o|8|1q|Yg|Yh|Jq|3A|2q", "case", "a|Yj|56|9|A|B|C|D|57|58|59|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|19|5T|1A|1B|5U|1C|1D|1E|1F|5V|5W|5X|5Y|5Z|1G|1H|5a|1I|5b|1J|5c|5d|1K|5e|5f|1L|1M|5g|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|1Y|5r|1Z|1a|1b|5s|1c|1d|1e|1f|1g|1h|1i|1j|5t|1k|1l|1m|1n|5u|5v|1o|5w|5x|5y|5z|60|61|62|1p|63|1q|1r|1s|64|1t|1u|1v|65|1w|1x|1y|1z|20|21|22|66|67|68|23|24|69|25|26|27|28|29|2A|6A|2B|6B|2C|2D|2E|2F|6C|2G|2H|2I|6D|6E|6F|6G|6H|2J|6I|6J|6K|2K|2L|2M|6L|2N|6M|6N|6O", "condition", "o|2U|Yl|2Y", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|2j|2l|MM|Ym", "o|8|1r|Yk|Yn|6p|3A|3A", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|38|4b", "o|8|1s|2O|2m|Yp|3A|3A", "numVariants", "o|2P|Yr", "uniqueVariants", "o|2U|Yt|2Y", "variantsToInclude", "o|2P|Yv", "variantsToExclude", "o|2P|Yx", "variantNames", "o|2P|Yz", "seeds", "o|2P|Z1", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Ys|Yu|Yw|Yy|Z0|Z2", "o|8|64|Bs|Z3|6p|3A|2q", "numToSelect", "o|2P|Z5", "withReplacement", "o|2U|Z7|2Y", "sortResults", "o|2U|Z9|2Y", "excludeCombinations", "o|2P|ZB", "a|2Q|2S|6R|2Z|2b|Ue|2f|2h|2j|2l|3Q|3S|3U|Uf|Ui|Uk|Um|Uo|Up|Ur|6Z|MM|Z6|Z8|ZA|ZC", "o|2p|Z5|1j|2q", "o|2p|Z7|1N|2q", "o|2p|Z9|1N|2q", "a|2r|2t|2u|2v|2w|2y|ZE|ZF|ZG|30|31|32|33|35", "o|8|1t|Bs|ZD|ZH|3A|2q", "a|UT", "addLevelToAssignNames", "o|2U|ZK|2Y", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|2j|2l|MM|Z6|Z8|LY|ZL|6Z", "a|2r|2t|2u|2v|2w|2y|ZE|ZF|30|31|32|33|35", "o|8|1u|ZJ|ZM|ZN|3A|3A", "o|8|1v|6P|6a|6c|3A|3A", "animationOn", "o|2U|ZQ|2Y", "animationMode", "increase", "decrease", "increase once", "decrease once", "oscillate", "a|ZT|ZU|ZV|ZW|ZX", "o|2U|ZS|ZY", "animationInterval", "o|2P|Za", "allowAdjustmentsWhileRunning", "o|2U|Zc|2Y", "a|2Q|2S|Mf|2Z|2b|2d|2f|2h|2j|2l|Ui|Uk|Um|Uo|Up|Ur|ZR|ZZ|Zb|Zd", "targetSubnames", "o|2p|Zf|Ma|2q", "targetSubnamesComponentIndex", "o|2p|Zh|1S|2q", "o|2p|ZQ|1N|2q", "o|2p|ZS|1L|2q", "o|2p|Za|1i|2q", "o|2p|Zc|1N|2q", "currentAnimationDirection", "o|2p|Zn|1L|2q", "a|2r|2t|2u|2v|2w|2y|MY|MZ|Zg|Zi|Zj|Zk|Zl|Zm|30|31|32|33|35|SG|VG|Zo", "o|8|65|Bs|Ze|Zp|3A|2q", "input", "o|2P|Zr", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|3s|3u|45|8H|8J|Er|Zs", "o|2p|36|1w|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4V|4B|4C|4D|4E|4F|4G|4H|4I|4J|8L|8M|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|Zu|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|Ax|4w|4y|50", "o|8|1w|Bs|Zt|Zv|3A|2q", "discreteuniform", "gaussian", "a|Gh|Zx|Zy", "o|2U|2n|Zz", "o|2P|d", "o|2P|g", "o|2P|f", "variantDeterminesSeed", "o|2U|a4|2Y", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|2j|2l|MM|a0|a1|a2|a3|Uk|Um|Uo|Ur|3Q|3S|3U|Uf|a5|6Z|Z6", "o|2p|2n|1L|2q", "o|2p|a4|1N|2q", "o|2p|d|1i|2q", "o|2p|f|1i|2q", "o|2p|g|1i|2q", "a|2r|2t|2u|2v|2w|2y|a7|a8|ZE|30|31|32|33|35|VB|V9|VA|a9|aA|aB", "o|8|1x|Bs|a6|aC|3A|2q", "numSamples", "o|2P|aE", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|2j|2l|MM|aF|a0|a1|a2|a3|Uk|Um|Uo|Ur|3Q|3S|3U|Uf|a5|6Z", "o|2p|aE|1i|2q", "a|2r|2t|2u|2v|2w|2y|aH|a7|a8|30|31|32|33|35|VB|V9|VA|a9|aA|aB", "o|8|1y|Bs|aG|aI|3A|2q", "minValue", "o|2P|aK", "maxValue", "o|2P|aM", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|2j|2l|aL|aN|Ur|MM|Z6|Z8|ZA|ZC|6Z", "o|2p|aK|1j|2q", "o|2p|aM|1j|2q", "o|2p|Uq|1S|2q", "a|2r|2t|2u|2v|2w|2y|aP|aQ|aR|ZE|ZF|ZG|30|31|32|33|35", "o|8|1z|Bs|aO|aS|3A|2q", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|2j|2l|MM|aF|aL|aN|Ur|a5|6Z", "a|2r|2t|2u|2v|2w|2y|aH|aP|aQ|aR|a8|30|31|32|33|35", "o|8|20|Bs|aU|aV|3A|2q", "a|1P|1L", "o|2U|2n|aX", "match", "o|2P|aZ", "replacement", "o|2P|ab", "matchWholeWord", "o|2U|ad|2Y", "matchCase", "o|2U|af|2Y", "preserveCase", "o|2U|ah|2Y", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|2j|2l|MM|aY|aa|ac|3M|3Q|3S|3U|3W|ae|ag|ai", "o|2p|ad|1N|2q", "o|2p|af|1N|2q", "o|2p|ah|1N|2q", "a|2r|2t|2u|2v|2w|2y|a7|48|ak|al|am|30|31|32|33|35|4R|4S|4T|4U", "o|8|21|6P|aj|an|3A|3A", "minIndex", "o|2P|ap", "maxIndex", "o|2P|ar", "offsets", "o|2P|at", "o|2P|Ht", "minIndexAsList", "o|2P|aw", "maxIndexAsList", "o|2P|ay", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|3s|3u|45|aq|as|au|av|ax|az", "o|2p|ap|1j|2q", "o|2p|ar|1j|2q", "o|2p|at|1Q|2q", "o|2p|Ht|1P|2q", "o|2p|aw|1j|2q", "o|2p|ay|1j|2q", "o|2p|36|22|2q", "numOffsets", "o|2p|b8|1j|2q", "redundantOffsets", "o|2p|bA|1N|2q", "o|2p|1s|1Q|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|b1|b2|b3|b4|b5|b6|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|b7|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|b9|bB|bC|4w|4y|50", "o|8|22|Bs|b0|bD|3A|2q", "o|2P|B", "asFileName", "o|2P|bG", "mimeType", "o|2P|bI", "rotate", "o|2P|bK", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Jx|T7|T9|TD|TG|bF|MK|bH|bJ|3q|3s|3u|45|bL", "o|2p|MJ|1L|2q", "o|2p|bG|1L|2q", "o|2p|bI|1L|2q", "o|2p|bK|1i|2q", "a|2r|2t|2u|2v|2w|2y|Tp|Tq|Lb|bN|bO|bP|4H|4I|4J|bQ|30|31|32|33|35|4Q|U7|Rk|U8", "o|8|66|Bs|bM|bR|3A|2q", "youtube", "o|2P|bT", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Jx|T7|T9|TD|TG|bU|MK", "o|2p|bT|1L|2q", "state", "o|2p|bX|1L|2q", "time", "o|2p|bZ|1i|2q", "duration", "o|2p|bb|1i|2q", "secondsWatched", "o|2p|bd|1i|2q", "fractionWatched", "o|2p|bf|1i|2q", "a|2r|2t|2u|2v|2w|2y|Tp|Tq|bW|bN|30|31|32|33|35|U7|Rk|U8|bY|ba|bc|be|bg", "o|8|67|Bs|bV|bh|3A|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|Co|Ci", "o|8|68|6P|2m|bj|3A|3A", "originalValue", "o|2p|bl|23|2q", "o|2p|36|23|2q", "a|2r|2t|2u|2v|2w|2y|4H|4I|6x|4J|30|31|32|33|35|4L|4N|4P|4Q|70|38|71|4X|bm|bn", "o|8|23|6t|6w|bo|3A|3A", "pluralForm", "o|2P|bq", "basedOnNumber", "o|2P|bs", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3q|3s|6v|3u|45|br|bt", "o|2p|bq|1L|2q", "o|2p|bs|1i|2q", "valuePrePluralize", "o|2p|bx|24|2q", "a|2r|2t|2u|2v|2w|2y|4H|4I|6x|4J|bv|bw|30|31|32|33|35|4L|4N|4P|4Q|70|38|71|4X|by|Be", "o|8|24|6t|bu|bz|3A|3A", "updateWith", "o|2P|c1", "a|2Q|2S|2b|2d|2f|2h|2j|2l|Ym|c2", "a|2t|2u|2v|2w|2y|30|31|32|33|35", "o|8|69|6P|c3|c4|3A|3A", "o|8|Pl|6P|2m|6p|2q|3A", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|6S|2l|6U|6W|6Y|6Z|Ym", "a|2r|2t|2u|2w|2y|6b|30|31|32|33|35|RM", "o|8|Yj|6P|c7|c8|2q|3A", "minSentencesPerParagraph", "o|2P|cA", "maxSentencesPerParagraph", "o|2P|cC", "minWordsPerSentence", "o|2P|cE", "maxWordsPerSentence", "o|2P|cG", "generateWords", "o|2P|cI", "generateSentences", "o|2P|cK", "generateParagraphs", "o|2P|cM", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|2j|2l|cB|cD|cF|cH|cJ|cL|cN", "o|2p|cA|1i|2q", "o|2p|cC|1i|2q", "o|2p|cE|1i|2q", "o|2p|cG|1i|2q", "a|2r|2t|2u|2v|2w|2y|cP|cQ|cR|cS|30|31|32|33|35", "o|8|25|Bs|cO|cT|3A|2q", "a|1P|1i|1N|1L", "o|2U|2n|cV", "newValue", "o|2P|cX", "triggerWhen", "o|2U|cZ|2Y", "triggerWith", "o|2P|cb", "triggerWhenObjectsClicked", "o|2P|cd", "triggerWhenObjectsFocused", "o|2P|cf", "a|2Q|2S|Mf|2Z|2b|2d|2f|2h|2j|2l|A9|cW|cY|3q|3u|45|ca|cc|ce|cg|3M", "a|2r|2t|2u|2v|2w|2y|Ac|MY|MZ|Zg|Zi|4H|4J|48|30|31|32|33|35|Af|4Q", "o|8|26|EF|ch|ci|3A|2q", "actionName", "o|2P|ck", "o|2P|3J", "o|2P|1i", "a|2Q|2S|Mf|2Z|2b|2d|2f|2h|2j|2l|A9|cl|3q|3u|45|ca|cc|ce|cg|cm|cn", "o|2p|ck|1L|2q", "a|2r|2t|2u|2v|2w|2y|Ac|cp|4H|4J|30|31|32|33|35|Af|4Q", "o|8|27|EF|co|cq|3A|2q", "a|26|27|C|D|2K", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|3q|3u|45|ca|cc|ce|cg", "a|2r|2t|2u|2v|2w|2y|Ac|4H|4J|30|31|32|33|35|Af|4Q", "o|8|28|cs|ct|cu|3A|2q", "numIterates", "o|2P|cw", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|cx|8H|8J|Uy|Er|3Q|3S|3U|3W", "o|2p|cw|1j|2q", "allIterates", "o|2p|d0|1Q|2q", "allIteratesWithInitial", "o|2p|d2|1Q|2q", "iterates", "o|4f|d4|1P|3A|4g|Dw", "finalIterate", "o|2p|d6|1P|2q", "a|2r|2t|2u|2v|2w|2y|cz|8L|8M|30|31|32|33|35|4R|4S|4T|4U|4d|d1|d3|d5|d7", "o|8|29|Bs|cy|d8|3A|2q", "a|2Q|2S|6R|2Z|2b|2d|2f|6S|2l|6U|6W|6Y|6Z", "a|2r|2t|2w|2y|6b|30|31|32|33|35", "o|8|2A|6P|dA|dB|3A|3A", "customAttribute", "componentType", "o|2P|dE", "attribute", "o|2P|dG", "defaultValue", "o|2P|dI", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|2j|2l|dF|dH|dJ", "o|8|dD|Bs|dK|6p|2q|2q", "a|Js|Ip|9|A|B|C|D|57|58|59|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|19|5T|1A|1B|5U|1C|1D|1E|1F|5V|5W|5X|5Y|5Z|1G|1H|5a|1I|5b|1J|5c|5d|1K|5e|5f|1L|1M|5g|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|1Y|5r|1Z|1a|1b|5s|1c|1d|1e|1f|1g|1h|1i|1j|5t|1k|1l|1m|1n|5u|5v|1o|5w|5x|5y|5z|60|61|62|1p|63|1q|1r|1s|64|1t|1u|1v|65|1w|1x|1y|1z|20|21|22|66|67|68|23|24|69|25|26|27|28|29|2A|6A|2B|6B|2C|2D|2E|2F|6C|2G|2H|2I|6D|6E|6F|6G|6H|2J|6I|6J|6K|2K|2L|2M|6L|2N|6M|6N|6O|dD", "o|8|6A|dM|2m|6p|3A|3A", "footnoteTag", "o|2p|dO|1L|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|38|dP", "o|8|2B|2O|2m|dQ|3A|3A", "o|8|6B|LO|2m|Bh|3A|3A", "o|2U|Cn|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|3q|Fb|Fc|Fd|Ff|Fg|3Q|3S|3U|3W|AE|EL|Fi|dT|Fm", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|4H|Ae|Ey|Co|Fp|30|31|32|33|35|Af|4R|4S|4T|4U|4L|4N|4P|Ah|Aj|Fq|F8|Fr|Fs|4b|Fu|Fw|4w|4y|50|Fx", "o|8|2C|Fa|dU|dV|3A|3A", "sortVectorsBy", "a|P2|P6", "o|2U|dX|dY", "sortByComponent", "o|2P|da", "sortByProp", "o|2P|dc", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|2j|2l|MM|dZ|db|dd|LY|6Z", "o|2p|dX|1L|2q", "o|2p|da|1j|2q", "a|2r|2t|2u|2v|2w|2y|df|dg|30|31|32|33|35", "o|8|2D|6P|de|dh|3A|3A", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|2j|2l|MM|LY|6Z", "o|8|2E|6P|dj|6p|3A|3A", "minVar", "o|2P|dl", "maxVar", "o|2P|dn", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|AQ|GW|dm|do", "numSolutions", "o|2p|dq|1j|2q", "solutions", "o|4f|ds|1P|3A|4g|Dw", "a|2r|2t|2u|2v|2w|2y|Gq|30|31|32|33|35|Av|dr|dt|BJ", "o|8|2F|84|dp|du|3A|3A", "o|2P|C", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|Su|Sw|Jx|Nl|dw|XW|AS|3F|IX|L4", "o|2p|C|1L|2q", "subsetValue", "o|2p|dz|2G|2q", "o|4f|GC|1P|3A|4g|Dw", "pointsClosed", "o|4f|e2|1N|3A|4g|FF", "intervals", "o|4f|e4|1P|3A|4g|Dw", "isolatedPoints", "o|4f|e6|1P|3A|4g|Dw", "a|2r|2t|2u|2v|2w|2y|U9|UA|Rk|Rj|dy|Xe|BJ|47|Rh|30|31|32|33|35|e0|e1|e3|e5|e7", "o|8|6C|Bs|dx|e8|3A|2q", "inequalities", "a|e4|eA", "o|2U|TA|eB", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|3s|3u|45|AS|eC", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|Tp|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|LJ|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|e1|e3|e5|e7|4w|4y|50", "o|8|2G|3C|eD|eE|3A|3A", "a|1L", "o|2U|2n|eG", "splitBy", "letter", "word", "comma", "a|eJ|eK|eL", "o|2U|eI|eM", "a|2Q|2S|6R|2Z|2b|2d|2f|2h|2j|2l|MM|eH|eN", "o|8|2H|6P|eO|6p|3A|3A", "data", "o|2P|eQ", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|G6|G8|AQ|3Q|3S|3U|3W|GA|eR", "o|4f|eQ|1P|3A|4r|B2", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|Ae|30|31|32|33|35|Af|4R|4S|4T|4U|4L|4N|4P|Ah|Aj|F8|Av|GD|GE|GG|GI|GK|GL|GN|GP|4b|4H|eT", "o|8|2I|EF|eS|eU|3A|2q", "boundaryValues", "o|2P|eW", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|eX|Er", "o|2p|eW|1S|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|eZ|30|31|32|33|35|Af|Ah|Aj", "o|8|6D|EF|eY|ea|3A|2q", "a|C|D|2K|n|o|p|1k|1l", "flipFunctions", "o|2U|ed|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|eX|ee", "o|2p|ed|1N|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|eZ|eg|30|31|32|33|35|Af|Ah|Aj", "o|8|6E|ec|ef|eh|3A|2q", "horizontal", "o|2U|ej|2Y", "boundaryValue", "o|2P|el", "greaterThan", "o|2U|en|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|ek|em|eo", "o|2p|ej|1N|2q", "o|2p|el|1i|2q", "o|2p|en|1N|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|eq|er|es|30|31|32|33|35|Af", "o|8|6F|EF|ep|et|3A|2q", "viewerRatio", "o|2P|ev", "showResults", "o|2U|ex|2Y", "showFormatter", "o|2U|ez|2Y", "resultsLocation", "a|40|41|42", "o|2U|f1|f2", "renderedName", "o|2P|f4", "staticName", "o|2P|f6", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|IX|L4|Jx|Nl|ew|ey|f0|f3|f5|f7", "o|2p|ex|1N|2q", "o|2p|ez|1N|2q", "o|2p|f1|1L|2q", "a|2r|2t|2u|2v|2w|2y|Rh|Rk|Rj|f9|fA|fB|30|31|32|33|35|LG|Be|LI|Rl|38", "o|8|6G|6P|f8|fC|3A|3A", "codeSource", "o|2P|fE", "hasCodeEditorParent", "o|2U|fG|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|fF|Jx|Nl|fH|f5", "o|2p|fG|1N|2q", "locationFromParent", "o|2p|fK|1L|2q", "codeChanged", "o|2p|fM|1N|2q", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|fJ|fL|Rk|Rj|fN", "o|8|6H|Bs|fI|fO|3A|2q", "restrictDivision", "o|2U|fQ|2Y", "monomialFactorMustMatch", "o|2U|fS|2Y", "allowOnlySignDifferences", "o|2U|fU|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|7K|7M|7O|7Q|7S|7U|7W|7Y|7a|7c|7e|7g|AS|fR|fT|fV", "o|8|2J|84|fW|80|3A|2q", "hasHeader", "o|2U|fY|2Y", "columnTypes", "o|2P|fa", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|MK|fZ|fb", "o|2p|fY|1N|2q", "o|2p|fa|1M|2q", "columnNames", "o|2p|ff|1M|2q", "means", "o|4f|fh|1i|3A|4g|KC", "a|2r|2t|2u|2v|2w|2y|bN|fd|30|31|32|33|35|4o|4q|fe|fg|fi", "o|8|6I|Bs|fc|fj|3A|2q", "o|2P|5x", "statisticsToDisplay", "o|2P|fm", "byCategoryColumn", "o|2P|fo", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|MK|fl|fn|fp|3Q|3S|3U|3W", "o|2p|fo|1L|2q", "o|2p|fm|1M|2q", "columnName", "o|2p|ft|1L|2q", "o|2p|h|1j|2q", "o|2p|S|1i|2q", "stdev", "o|2p|fx|1i|2q", "stderr", "o|2p|fz|1i|2q", "minimum", "o|2p|g1|1i|2q", "maximum", "o|2p|g3|1i|2q", "o|2p|e|1i|2q", "quartile1", "o|2p|g6|1i|2q", "quartile3", "o|2p|g8|1i|2q", "range", "o|2p|gA|1i|2q", "a|2r|2t|2u|2v|2w|2y|fr|30|31|32|33|35|4R|4S|4T|4U|fs|fu|fv|fw|a9|fy|aA|g0|g2|g4|g5|g7|g9|gB", "o|8|6J|Bs|fq|gC|3A|2q", "position", "o|2U|gE|G9", "displayClosedSwatches", "o|2U|gG|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|gF|gH", "o|2p|gE|1L|2q", "o|2p|gG|1N|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|gJ|gK|30|31|32|33|35|Af", "o|8|6K|EF|gI|gL|3A|2q", "o|2p|36|2K|2q", "a|2r|2t|2u|2v|2w|2y|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|6i|38|4b|gN", "o|8|2K|2O|6g|gO|3A|3A", "pattern", "o|2P|gQ", "allowImplicitIdentities", "o|2U|gS|2Y", "allowPermutations", "o|2U|gU|2Y", "requireNumericMatches", "o|2U|gW|2Y", "requireVariableMatches", "o|2U|gY|2Y", "excludeMatches", "o|2P|ga", "matchExpressionWithBlanks", "o|2U|gc|2Y", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|7K|7M|7O|7Q|7S|7U|7W|7Y|7a|7c|7e|7g|gR|gT|gV|gX|gZ|gb|gd", "o|2p|gS|1N|2q", "o|2p|gU|1N|2q", "o|2p|gW|1N|2q", "o|2p|gY|1N|2q", "o|2p|ga|1Q|2q", "o|2p|gc|1N|2q", "numMatches", "o|2p|gl|1i|2q", "patternMatches", "o|4f|gn|1P|3A|4g|Dw", "a|2r|2t|2u|2v|2w|2y|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|gf|gg|gh|gi|gj|gk|30|31|32|33|35|7w|38|gm|go", "o|8|2L|84|ge|gp|3A|3A", "a|5w|5x", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3F|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|3s|3u|45|L2|Kx|Ky", "o|2p|36|2M|2q", "a|2r|2t|2u|2v|2w|2y|47|48|49|4A|4B|4C|4D|4E|4F|4G|4H|4I|4J|30|31|32|33|35|4L|4N|4P|4Q|4R|4S|4T|4U|4V|gt|4X|4Y|4a|4b|38|4d|4k|4m|4o|4q|4u|4w|4y|50", "o|8|2M|gr|gs|gu|3A|2q", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|3Q|3S|3U|3W", "eigenvalues", "o|4f|gx|1i|3A|4g|KC", "eigenvectors", "a|H8|4i", "o|4f|gz|1i|3A|4r|h0", "a|2r|2t|2u|2v|2w|2y|30|31|32|33|35|4R|4S|4T|4U|gy|h1", "o|8|6L|84|gw|h2|3A|2q", "a|A|C|D|E|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|q|1C|1D|1F|1G|1L|1M|1N|1P|1Q|1R|1S|1W|1c|1h|1i|1j|1m|1n|1o|1t|1w|1x|1y|1z|20|21|22|23|24|25|2G|2J|2K|2L|2M|2N|11|12|13|14|15|16|17|18|r|s|t|u|v|w|x|y|z|10|n|o|p|1A|1B|1E|1K|1V|1X|1Z|1a|1d|1k|1l|2C|2I|F|G|H|K|I|J", "o|2p|36|2N|2q", "a|2r|2t|2u|2v|2w|2y|4H|4I|6x|4J|30|31|32|33|35|4L|4N|4P|4Q|h5|70|38|71|4X|4b", "o|8|2N|h4|6w|h6|3A|3A", "o|8|6M|6P|2m|6p|3A|3A", "separateByTopic", "o|2U|h9|2Y", "defaultTopicLabel", "o|2P|hB", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|hA|DM|hC", "o|2p|h9|1N|2q", "a|2r|2t|2u|2v|2w|2y|hE|30|31|32|33|35", "o|8|6N|6P|hD|hF|3A|3A", "a|C|D|2K|A|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|5T|1A|1B|5U|1F|1H|1P|1T|1V|1W|1X|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|1Z|1a|1k|1l|1m|1n|1p|63|1q|1r|1t|1u|1v|1w|21|22|2A|2C|2D|2E|2G|2H|2I|6D|6E|6F|6K|2M|6O", "angleThreshold", "o|2P|hI", "a|2Q|2S|2Z|2b|2d|2f|2h|2j|2l|A9|AB|3s|YT|8r|hJ", "o|2p|hI|1i|2q", "a|2r|2t|2u|2v|2w|2y|Ac|Ad|Ex|YV|hL|30|31|32|33|35|Af|Xu|8t", "o|8|6O|hH|hK|hM|3A|2q", "a|3B|52|55|6d|6l|6o|6q|6r|6s|73|76|77|7B|7D|7E|7H|7y|81|82|83|85|86|8F|8P|8S|8c|8f|8p|8w|90|93|96|99|9C|9F|9I|9P|9S|9V|9Y|9b|9e|9h|9w|BS|BT|Bd|Bg|Bi|Bj|Bk|Bl|Bm|Bn|Bo|Bp|Bq|Br|Bt|Bu|Bv|Bw|Bx|By|Bz|C0|Cq|Cr|Cs|Ct|D1|D2|D3|D4|D5|D6|D7|D8|D9|DA|DF|DI|DJ|DU|DV|DW|EE|FY|Fz|GR|HZ|IA|IH|IK|IO|IV|Ii|Io|Ir|Jr|Ju|KH|KJ|KK|KQ|KS|KT|KU|KV|KX|Kg|Kv|LN|LS|Ld|Le|Lr|Lt|Lu|M0|M2|MC|MD|MI|Md|Mv|My|N1|N4|NF|NO|NR|Nh|Ni|Nr|OF|OO|OY|Ob|Oi|Ow|PK|Pk|Qv|RJ|RO|Re|Rn|Rx|SP|Sa|Sm|Sr|UF|UI|UM|UQ|US|Ud|Ut|VI|Vw|WI|WS|WV|WZ|Wr|X0|XB|XG|XO|XU|Xj|Xw|Y5|YB|YQ|YX|Ya|Yb|Ye|Yf|Yi|Yo|Yq|Z4|ZI|ZO|ZP|Zq|Zw|aD|aJ|aT|aW|ao|bE|bS|bi|bk|bp|c0|c5|c6|c9|cU|cj|cr|cv|d9|dC|dL|dN|dR|dS|dW|di|dk|dv|e9|eF|eP|eV|eb|ei|eu|fD|fP|fX|fk|gD|gM|gP|gq|gv|h3|h7|h8|hG|hN", "o|1|hO"], "hP"]);
32555
- dist.decompress([["startType", "refs", "a|0|1", "title", "rightHandSide", "description", "xlabel", "ylabel", "statement", "introduction", "conclusion", "topic", "m", "me", "men", "md", "mdn", "mrow", "not", "and", "or", "xor", "isInteger", "isNumber", "isBetween", "sum", "product", "clampNumber", "wrapNumberPeriodic", "round", "setSmallToZero", "convertSetToList", "ceil", "floor", "abs", "sign", "mean", "median", "variance", "standardDeviation", "count", "min", "max", "mod", "gcd", "extractMath", "clampFunction", "wrapFunctionPeriodic", "derivative", "extractMathOperator", "em", "alert", "q", "sq", "term", "c", "tag", "tage", "tagc", "attr", "ndash", "mdash", "nbsp", "ellipsis", "lq", "rq", "lsq", "rsq", "section", "subsection", "subsubsection", "paragraphs", "aside", "objectives", "problem", "exercise", "question", "activity", "example", "definition", "note", "theorem", "proof", "problems", "exercises", "ol", "ul", "odesystem", "cobwebPolyline", "equilibriumPoint", "equilibriumLine", "equilibriumCurve", "atom", "ion", "ionicCompound", "electronConfiguration", "orbitalDiagram", "orbitalDiagramInput", "sideBySide", "sbsGroup", "stack", "h", "idx", "div", "span", "pre", "displayDoenetML", "paginator", "paginatorControls", "matrixInput", "solution", "document", "text", "textList", "p", "boolean", "booleanList", "math", "mathList", "tupleList", "numberList", "collect", "ref", "point", "coords", "line", "lineSegment", "ray", "polyline", "polygon", "triangle", "rectangle", "regularPolygon", "circle", "parabola", "curve", "bezierControls", "controlVectors", "vector", "angle", "answer", "award", "mathInput", "textInput", "booleanInput", "choiceInput", "choice", "number", "integer", "graph", "function", "piecewiseFunction", "interval", "sequence", "slider", "spreadsheet", "cell", "row", "column", "cellBlock", "tabular", "table", "figure", "markers", "map", "pegboard", "intersection", "conditionalContent", "asList", "variantControl", "selectFromSequence", "select", "group", "animateFromSequence", "evaluate", "selectRandomNumbers", "sampleRandomNumbers", "selectPrimeNumbers", "samplePrimeNumbers", "substitute", "periodicSet", "image", "video", "hint", "intcomma", "pluralize", "feedback", "lorem", "updateValue", "callAction", "triggerSet", "functionIterates", "module", "setup", "footnote", "caption", "endpoint", "sort", "shuffle", "solveEquations", "subsetOfRealsInput", "subsetOfReals", "split", "bestFitLine", "regionBetweenCurveXAxis", "regionBetweenCurves", "regionHalfPlane", "codeEditor", "codeViewer", "hasSameFactoring", "dataFrame", "summaryStatistics", "legend", "label", "matchesPattern", "matrix", "eigenDecomposition", "latex", "blockQuote", "contentPicker", "stickyGroup", "a|3|4|5|6|7|8|9|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|1A|1B|1C|1D|1E|1F|1G|1H|1I|1J|1K|1L|1M|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|1Y|1Z|1a|1b|1c|1d|1e|1f|1g|1h|1i|1j|1k|1l|1m|1n|1o|1p|1q|1r|1s|1t|1u|1v|1w|1x|1y|1z|20|21|22|23|24|25|26|27|28|29|2A|2B|2C|2D|2E|2F|2G|2H|2I|2J|2K|2L|2M|2N|2O|2P|2Q|2R|2S|2T|2U|2V|2W|2X|2Y|2Z|2a|2b|2c|2d|2e|2f|2g|2h|2i|2j|2k|2l|2m|2n|2o|2p|2q|2r|2s|2t|2u|2v|2w|2x|2y|2z|30|31|32|33|34|35|36|37|38|39|3A|3B|3C|3D|3E|3F|3G|3H|3I|3J|3K|3L|3M|3N|3O|3P|3Q|3R|3S|3T|3U|3V|3W|3X|3Y", "else", "li", "feedbackDefinition", "feedbackDefinitions", "styleDefinition", "styleDefinitions", "when", "template", "option", "sources", "constraints", "constrainToGrid", "constrainToGraph", "attractToGrid", "constrainTo", "attractTo", "constraintUnion", "attractToConstraint", "constrainToInterior", "considerAsResponses", "case", "customAttribute", "a|3|4|5|3a|6|7|8|9|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|1A|1B|1C|1D|1E|1F|1G|1H|1I|1J|1K|1L|1M|1N|1O|3b|1P|1Q|1R|1S|1T|1U|1V|1W|1X|1Y|1Z|3c|3d|3e|3f|1a|1b|1c|1d|1e|1f|1g|1h|1i|1j|1k|1l|1m|1n|1o|1p|1q|1r|1s|1t|1u|1v|1w|1x|1y|1z|20|21|22|23|24|25|26|27|28|29|2A|2B|2C|2D|2E|2F|2G|2H|3g|2I|2J|2K|2L|2M|2N|2O|2P|2Q|2R|2S|3h|3i|2T|2U|2V|2W|2X|2Y|2Z|2a|2b|2c|2d|2e|3j|2f|3k|3l|3m|3n|3o|3p|3q|3r|3s|2g|2h|2i|2j|2k|2l|2m|2n|2o|2p|2q|2r|2s|2t|2u|2v|2w|2x|2y|2z|30|3t|3u|31|32|33|34|35|36|3v|37|38|39|3A|3B|3C|3D|3E|3F|3G|3H|3I|3J|3K|3L|3M|3N|3O|3P|3Q|3R|3S|3T|3U|3V|3W|3X|3Y", "type", "name", "attributes", "children", "textChildrenAllowed", "properties", "a|3x|3y|3z|40|41|42", "element", "copySource", "hide", "disabled", "fixed", "fixLocation", "styleNumber", "isResponse", "newNamespace", "a|3y|45|46|47|48|49|4A|4B|4C", "optional", "a|4E|3x", "b|T", "string", "a|4H", "o|4F|4G|4I", "true", "false", "a|4K|4L", "o|4F|4G|4M", "o|4D|4J|4J|4N|4N|4N|4N|4J|4N|4N", "a|1y", "o|4P|3", "o|4P|4", "o|4P|5", "o|4P|6", "o|4P|7", "o|4P|B", "o|4P|C", "o|4P|D", "o|4P|E", "o|4P|F", "o|4P|G", "o|4P|H", "o|4P|I", "o|4P|J", "o|4P|K", "o|4P|L", "o|4P|M", "o|4P|N", "o|4P|O", "o|4P|P", "o|4P|Q", "o|4P|R", "o|4P|S", "o|4P|T", "o|4P|U", "o|4P|V", "o|4P|W", "o|4P|X", "o|4P|Y", "o|4P|Z", "o|4P|a", "o|4P|b", "o|4P|c", "o|4P|d", "o|4P|e", "o|4P|f", "o|4P|g", "o|4P|h", "o|4P|i", "o|4P|j", "o|4P|k", "o|4P|l", "o|4P|m", "o|4P|n", "o|4P|o", "o|4P|p", "o|4P|q", "o|4P|r", "o|4P|s", "o|4P|t", "o|4P|u", "o|4P|v", "o|4P|w", "o|4P|x", "o|4P|y", "o|4P|z", "o|4P|10", "o|4P|11", "o|4P|12", "o|4P|13", "o|4P|14", "o|4P|15", "o|4P|1P", "o|4P|1R", "o|4P|1S", "o|4P|1U", "o|4P|1V", "o|4P|1W", "o|4P|1X", "o|4P|1d", "o|4P|1e", "o|4P|1g", "o|4P|1i", "o|4P|1l", "o|4P|1o", "o|4P|1p", "o|4P|1r", "o|4P|1s", "o|4P|1t", "o|4P|1u", "o|4P|1v", "o|4P|1w", "o|4P|1x", "o|4P|1y", "o|4P|1z", "o|4P|20", "o|4P|21", "o|4P|2C", "o|4P|2E", "o|4P|2F", "o|4P|2G", "o|4P|3g", "o|4P|2I", "o|4P|2J", "o|4P|2K", "o|4P|2L", "o|4P|2M", "o|4P|2N", "o|4P|2O", "o|4P|2Q", "o|4P|2R", "o|4P|2S", "o|4P|2T", "o|4P|2W", "o|4P|2e", "o|4P|2g", "o|4P|2h", "o|4P|2i", "o|4P|2k", "o|4P|2l", "o|4P|2m", "o|4P|2o", "o|4P|2p", "o|4P|2q", "o|4P|2r", "o|4P|2s", "o|4P|2t", "o|4P|2u", "o|4P|2y", "o|4P|2z", "o|4P|31", "o|4P|32", "o|4P|33", "o|4P|34", "o|4P|35", "o|4P|36", "o|4P|38", "o|4P|3A", "o|4P|3B", "o|4P|3C", "o|4P|3D", "o|4P|3F", "o|4P|3G", "o|4P|3H", "o|4P|3N", "o|4P|3R", "o|4P|3S", "o|4P|3T", "o|4P|3V", "a|4Q|4R|4S|4T|4U|4V|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|5Y|5Z|5a|5b|5c|5d|5e|5f|5g|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|5z|60|61|62|63|64|65|66|67|68|69|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6N|6O|6P|6Q|6R|6S|6T|6U|6V|6W|6X|6Y|6Z|6a|6b|6c|6d|6e", "isArray", "a|3y|3x|6g", "b|F", "o|6h|46|1r|6i", "modifyIndirectly", "o|6h|6k|1r|6i", "o|6h|4A|2O|6i", "o|6h|4B|1r|6i", "o|6h|4C|1r|6i", "permid", "o|6h|6p|1o|6i", "hidden", "o|6h|6r|1r|6i", "o|6h|47|1r|6i", "o|6h|48|1r|6i", "o|6h|49|1r|6i", "doenetML", "o|6h|6w|1o|6i", "value", "o|6h|6y|3|6i", "o|6h|1o|1o|6i", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|6z|70", "o|43|44|3|4O|6f|4G|71", "format", "simplify", "expand", "displayDigits", "displayDecimals", "displaySmallAsZero", "padZeros", "renderMode", "unordered", "createVectors", "createIntervals", "functionSymbols", "sourcesAreFunctionSymbols", "splitSymbols", "parseScientificNotation", "displayBlanks", "draggable", "layer", "anchor", "positionFromAnchor", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|7K|7L|7M", "a|1o|3V", "o|4F|4G|7O", "none", "full", "numbers", "numberspreserveorder", "a|7Q|7R|7S|7T", "o|4F|4G|7U", "upperright", "upperleft", "lowerright", "lowerleft", "top", "bottom", "left", "right", "center", "a|7W|7X|7Y|7Z|7a|7b|7c|7d|7e", "o|4F|4G|7f", "o|7N|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g", "a|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|5R|5S|5T|5U|5V|5W|5X|5b|5c|5g|5h|5i|5j|5m|5n|5o|5q|5r|5u|5y|5z|60|61|62|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6T|6X|6Z|6d|6e|4W|4X|4Y|4b", "o|6h|73|1o|6i", "o|6h|74|1o|6i", "o|6h|75|1r|6i", "o|6h|7A|1o|6i", "o|6h|7C|1r|6i", "o|6h|7D|1r|6i", "o|6h|7E|1p|6i", "o|6h|7G|1r|6i", "o|6h|7H|1r|6i", "o|6h|7I|1r|6i", "o|6h|7J|1r|6i", "o|6h|7K|2N|6i", "o|6h|7M|1o|6i", "textColor", "o|6h|7w|1o|6i", "backgroundColor", "o|6h|7y|1o|6i", "textStyleDescription", "o|6h|80|1o|6i", "o|6h|7L|1z|6i", "o|6h|76|2O|6i", "o|6h|77|2O|6i", "o|6h|78|2N|6i", "o|6h|79|1r|6i", "o|6h|7B|1r|6i", "o|6h|6y|4|6i", "o|6h|2N|2N|6i", "o|6h|N|1r|6i", "isNumeric", "o|6h|8B|1r|6i", "o|6h|3V|3V|6i", "numDimensions", "o|6h|8E|2O|6i", "indexedArrayDescription", "a|3y|3x|6g|8E|8G", "n|1", "a|6g|3x", "o|8J|6i|2E", "a|8K", "o|8H|2E|1t|4G|8I|8L", "matrixSize", "o|6h|8N|1w|6i", "numRows", "o|6h|8P|2O|6i", "numColumns", "o|6h|8R|2O|6i", "n|2", "o|8J|6i|3T", "a|8U|8U", "o|8H|3T|1t|4G|8T|8V", "x", "o|6h|8X|1t|6i", "y", "o|6h|8Z|1t|6i", "z", "o|6h|8b|1t|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|88|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|4|7h|7i|4G|8d", "o|6h|6y|5|6i", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|8f|70", "o|43|44|5|4O|6f|4G|8g", "assignNames", "rendered", "createComponentOfType", "numComponents", "a|3y|45|8i|46|47|48|49|4A|4B|4C|8j|8k|8l|2i", "o|8m|4J|4J|4J|4N|4N|4N|4N|4J|4J|4N|4N|4J|4J|4N", "o|4P|8", "o|4P|9", "o|4P|A", "o|4P|16", "o|4P|17", "o|4P|18", "o|4P|19", "o|4P|1A", "o|4P|1B", "o|4P|1C", "o|4P|1D", "o|4P|1E", "o|4P|1F", "o|4P|1G", "o|4P|1H", "o|4P|1I", "o|4P|1J", "o|4P|1K", "o|4P|1L", "o|4P|1M", "o|4P|1N", "o|4P|1O", "o|4P|1Q", "o|4P|1T", "o|4P|1Y", "o|4P|1Z", "o|4P|1a", "o|4P|1b", "o|4P|1c", "o|4P|1f", "o|4P|1h", "o|4P|1j", "o|4P|1k", "o|4P|1m", "o|4P|1n", "o|4P|1q", "o|4P|22", "o|4P|23", "o|4P|24", "o|4P|25", "o|4P|26", "o|4P|27", "o|4P|28", "o|4P|29", "o|4P|2A", "o|4P|2B", "o|4P|2D", "o|4P|2H", "o|4P|2P", "o|4P|2U", "o|4P|2V", "o|4P|2X", "o|4P|2Y", "o|4P|2Z", "o|4P|2a", "o|4P|2b", "o|4P|2c", "o|4P|2d", "o|4P|2f", "o|4P|2j", "o|4P|2n", "o|4P|2v", "o|4P|2w", "o|4P|2x", "o|4P|30", "o|4P|37", "o|4P|39", "o|4P|3E", "o|4P|3I", "o|4P|3J", "o|4P|3K", "o|4P|3L", "o|4P|3M", "o|4P|3O", "o|4P|3P", "o|4P|3Q", "o|4P|3U", "o|4P|3W", "o|4P|3X", "o|4P|3Y", "a|4Q|4R|4S|4T|4U|8o|8p|8q|4V|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|8r|8s|8t|8u|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|5Q|9A|5R|5S|9B|5T|5U|5V|5W|9C|9D|9E|9F|9G|5X|5Y|9H|5Z|9I|5a|9J|9K|5b|9L|9M|5c|5d|9N|5e|5f|5g|5h|5i|5j|5k|5l|5m|5n|5o|9O|9P|9Q|9R|9S|9T|9U|9V|9W|9X|5p|9Y|5q|5r|5s|9Z|5t|5u|5v|5w|5x|5y|5z|60|9a|61|62|63|64|9b|9c|65|9d|9e|9f|9g|9h|9i|9j|66|9k|67|68|69|9l|6A|6B|6C|9m|6D|6E|6F|6G|6H|6I|6J|9n|9o|9p|6K|6L|9q|6M|6N|6O|6P|6Q|6R|9r|6S|9s|6T|6U|6V|6W|9t|6X|6Y|6Z|9u|9v|9w|9x|9y|6a|9z|A0|A1|6b|6c|6d|A2|6e|A3|A4|A5", "o|6h|8j|1r|6i", "a|6j|6l|6m|6o|6q|A7|6s|6t|6u|6v|6x", "o|43|44|3a|8n|A6|4G|A8", "forObject", "a|3y|45|46|47|48|49|4A|4B|4C|AA|7J|7K|7L|7M", "o|AB|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N|4J|4J|7g", "hasLatex", "o|6h|AD|1r|6i", "o|6h|6y|6|6i", "a|6j|6l|6m|6n|6o|6q|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|AE|70|8D|AF", "o|43|44|6|AC|6f|4G|AG", "o|6h|6y|7|6i", "a|6j|6l|6m|6n|6o|6q|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|AE|70|8D|AI", "o|43|44|7|AC|6f|4G|AJ", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x", "o|43|44|8|4O|A6|4G|AL", "o|43|44|9|4O|A6|4G|AL", "o|43|44|A|4O|A6|4G|AL", "isLatex", "a|3y|45|46|47|48|49|4A|4B|4C|7J|7K|AP|7L|7M", "o|AQ|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4N|4J|7g", "a|4R|4T|4U|4V|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|57|5T|5U|5W|5X|5c|5d|5e|5g|5h|5i|5j|5n|5t|5y|5z|60|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6X|6a|6b|6c|6d|6e|5I|5J|5K|5L|5M|5N|5O|5P|58|59|5A|5B|5C|5D|5E|5F|5G|5H", "o|6h|AP|1r|6i", "o|6h|6y|B|6i", "numCharacters", "o|6h|AV|2O|6i", "o|6h|1t|1t|6i", "a|6j|6l|6m|6n|6o|6q|7t|7u|AT|7v|6s|6t|6u|6v|6x|7x|7z|81|82|AU|AW|70|AX|89", "o|43|44|B|AR|AS|4G|AY", "a|3y|45|46|47|48|49|4A|4B|4C|7J|7K|7L|7M", "o|Aa|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4J|7g", "a|6j|6l|6m|6n|6o|6q|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|8D|70", "o|43|44|C|Ab|6f|4G|Ac", "o|43|44|D|Ab|6f|4G|Ac", "equationTag", "o|6h|Af|1o|6i", "a|6j|6l|6m|6n|6o|6q|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|8D|70|Ag", "o|43|44|E|Ab|6f|4G|Ah", "a|4b", "o|43|44|F|Ab|Aj|6i|Ac", "o|43|44|G|Ab|Aj|6i|Ac", "a|3y|45|46|47|48|49|4A|4B|4C|7J|7K|7L|7M|2N", "o|Am|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4J|7g|4N", "o|43|44|H|An|6f|4G|Ah", "symbolicEquality", "expandOnCompare", "simplifyOnCompare", "unorderedCompare", "matchByExactPositions", "allowedErrorInNumbers", "includeErrorInNumberExponents", "allowedErrorIsAbsolute", "numSignErrorsMatched", "numPeriodicSetMatchesRequired", "caseInsensitiveMatch", "matchBlanks", "a|3y|45|46|47|48|49|4A|4B|4C|Ap|Aq|Ar|As|At|Au|Av|Aw|Ax|Ay|Az|B0", "o|B1|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|7V|4N|4N|4J|4N|4N|4J|4J|4N|4N", "a|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|5R|5S|5T|5U|5V|5W|5X|5b|5c|5g|5h|5i|5j|5m|5n|5o|5q|5r|5u|5y|5z|60|61|62|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6T|6X|6Z|6d|6e|4T|4U|4c|4d|4e|4f|4g|4h|4i|5d|5e|5t|6a|6b|6c|5w|5f|9C", "o|6h|Ap|1r|6i", "o|6h|Aq|1r|6i", "o|6h|Ar|1o|6i", "o|6h|As|1r|6i", "o|6h|At|1r|6i", "o|6h|Au|2N|6i", "o|6h|Av|1r|6i", "o|6h|Aw|1r|6i", "o|6h|Ax|2N|6i", "o|6h|Ay|2O|6i", "o|6h|Az|1r|6i", "o|6h|B0|1r|6i", "valuePreOperator", "o|6h|BG|I|6i", "o|6h|6y|1r|6i", "a|6j|6l|6m|6n|6o|6q|B4|B5|B6|B7|B8|B9|BA|BB|BC|BD|BE|BF|6s|6t|6u|6v|6x|70|BH|BI", "o|43|44|I|B2|B3|4G|BJ", "a|4c|4d|4e|4f|4g|4h|4i|5e|5w|6a|6c", "a|6j|6l|6m|6n|6o|6q|B4|B5|B6|B7|B8|B9|BA|BB|BC|BD|BE|BF|6s|6t|6u|6v|6x|BI|70", "o|43|44|J|B2|BL|4G|BM", "o|43|44|K|B2|BL|4G|BM", "o|43|44|L|B2|BL|4G|BM", "a|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|5R|5S|5T|5U|5V|5W|5X|5b|5c|5g|5h|5i|5j|5m|5n|5o|5q|5r|5u|5y|5z|60|61|62|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6T|6X|6Z|6d|6e", "o|43|44|M|B2|BQ|4G|BM", "o|43|44|N|B2|BQ|4G|BM", "limits", "strict", "a|3y|45|46|47|48|49|4A|4B|4C|Ap|Aq|Ar|As|At|Au|Av|Aw|Ax|Ay|Az|B0|BT|BU", "o|BV|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|7V|4N|4N|4J|4N|4N|4J|4J|4N|4N|4J|4N", "o|6h|BT|1w|6i", "o|6h|BU|1r|6i", "a|6j|6l|6m|6n|6o|6q|B4|B5|B6|B7|B8|B9|BA|BB|BC|BD|BE|BF|BX|BY|6s|6t|6u|6v|6x|BI|70", "o|43|44|O|BW|BQ|4G|BZ", "forceSymbolic", "forceNumeric", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|7K|7L|7M|Bb|Bc", "o|Bd|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g|4N|4N", "o|6h|Bb|1r|6i", "o|6h|Bc|1r|6i", "o|6h|6y|P|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|Bf|Bg|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Bh|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|P|Be|BQ|4G|Bi", "o|6h|6y|Q|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|Bf|Bg|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Bk|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|Q|Be|BQ|4G|Bl", "lowerValue", "upperValue", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|7K|7L|7M|Bn|Bo", "o|Bp|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g|4J|4J", "o|6h|Bn|2N|6i", "o|6h|Bo|2N|6i", "o|6h|6y|R|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|Br|Bs|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Bt|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|R|Bq|7i|4G|Bu", "o|6h|6y|S|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|Br|Bs|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Bw|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|S|Bq|7i|4G|Bx", "numDecimals", "numDigits", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|7K|7L|7M|Bz|C0", "o|C1|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g|4J|4J", "o|6h|Bz|2N|6i", "o|6h|C0|2N|6i", "o|6h|6y|T|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|C3|C4|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|C5|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|T|C2|7i|4G|C6", "threshold", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|7K|7L|7M|C8", "o|C9|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g|4J", "o|6h|C8|2N|6i", "o|6h|6y|U|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|CB|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|CC|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|U|CA|7i|4G|CD", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7C|7D|7E|7F|7G|7H|7I|7J|7K|7L|7M", "o|CF|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g", "o|6h|6y|V|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|CH|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|V|CG|7i|4G|CI", "o|6h|6y|W|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|CK|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|W|7h|7i|4G|CL", "o|6h|6y|X|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|CN|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|X|7h|7i|4G|CO", "o|6h|6y|Y|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|CQ|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|Y|7h|7i|4G|CR", "o|6h|6y|Z|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|CT|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|Z|7h|7i|4G|CU", "o|6h|6y|a|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|Bf|Bg|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|CW|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|a|Be|BQ|4G|CX", "o|6h|6y|b|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|Bf|Bg|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|CZ|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|b|Be|BQ|4G|Ca", "population", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|7K|7L|7M|Bb|Bc|Cc", "o|Cd|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g|4N|4N|4N", "o|6h|Cc|1r|6i", "o|6h|6y|c|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|Bf|Bg|Cf|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Cg|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|c|Ce|BQ|4G|Ch", "o|6h|6y|d|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|Bf|Bg|Cf|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Cj|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|d|Ce|BQ|4G|Ck", "o|6h|6y|e|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|Bf|Bg|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Cm|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|e|Be|BQ|4G|Cn", "o|6h|6y|f|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|Bf|Bg|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Cp|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|f|Be|BQ|4G|Cq", "o|6h|6y|g|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|Bf|Bg|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Cs|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|g|Be|BQ|4G|Ct", "o|6h|6y|h|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|Bf|Bg|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Cv|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|h|Be|BQ|4G|Cw", "o|6h|6y|i|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|Bf|Bg|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Cy|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|i|Be|BQ|4G|Cz", "operandNumber", "argumentNumber", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|7K|7L|7M|3x|D1|D2", "operand", "functionargument", "numoperands", "a|D4|2Q|D5|D6", "o|4F|4G|D7", "o|D3|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g|D8|4J|4J", "o|6h|D1|2N|6i", "o|6h|D2|2N|6i", "o|6h|6y|j|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|DA|DB|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|DC|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|j|D9|7i|4G|DD", "xscale", "yscale", "numInputs", "numOutputs", "domain", "labelIsName", "applyStyleToLabel", "labelPosition", "minima", "maxima", "extrema", "through", "throughSlopes", "variables", "variable", "symbolic", "nearestPointAsCurve", "a|3y|45|46|47|48|49|4A|4B|4C|74|75|DF|DG|DH|DI|DJ|DK|DL|DM|7K|DN|DO|DP|DQ|DR|DS|DT|DU|76|77|78|79|DV|Bn|Bo", "a|7W|7X|7Y|7Z|7a|7b|7c|7d", "o|4F|4G|DX", "o|DW|4J|4J|4N|4N|4N|4N|4J|4N|4N|7V|4N|4J|4J|4J|4J|4J|4N|4N|DY|4J|4J|4J|4J|4J|4J|4J|4J|4N|4J|4J|4J|4N|4N|4J|4J", "a|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|5R|5S|5T|5U|5V|5W|5X|5b|5c|5g|5h|5i|5j|5m|5n|5o|5q|5r|5u|5y|5z|60|61|62|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6T|6X|6Z|6d|6e|4T|4U|6b", "expandSpecified", "o|6h|Db|1r|6i", "o|6h|DF|2N|6i", "o|6h|DG|2N|6i", "o|6h|DK|1r|6i", "o|6h|DL|1r|6i", "o|6h|DM|1o|6i", "o|6h|3R|3R|6i", "styleDescription", "o|6h|Dj|1o|6i", "styleDescriptionWithNoun", "o|6h|Dl|1o|6i", "o|6h|DH|2O|6i", "o|6h|DI|2O|6i", "a|6g|3x|8E", "o|Dp|4G|2S|8I", "a|Dq", "o|8H|DJ|2S|4G|8I|Dr", "o|6h|75|1o|6i", "o|6h|DU|1r|6i", "_variableName", "o|Dp|4G|Dv|8I", "a|Dw", "o|8H|DS|Dv|4G|8I|Dx", "formula", "o|6h|Dz|1t|6i", "numMinima", "o|6h|E1|2N|6i", "o|Dp|4G|1z|8I", "o|8J|6i|1z", "a|E3|E4", "o|8H|DN|2N|4G|8T|E5", "globalMinimum", "a|E4", "o|8H|E7|2N|4G|8I|E8", "globalInfimum", "o|8H|EA|2N|4G|8I|E8", "numMaxima", "o|6h|EC|2N|6i", "o|8H|DO|2N|4G|8T|E5", "globalMaximum", "o|8H|EF|2N|4G|8I|E8", "globalSupremum", "o|8H|EH|2N|4G|8I|E8", "numExtrema", "o|6h|EJ|2N|6i", "o|8H|DP|2N|4G|8T|E5", "o|6h|DT|Dv|6i", "symbolicf", "unknown", "o|6h|EN|EO|6i", "fDefinition", "o|6h|EQ|EO|6i", "f", "o|6h|ES|EO|6i", "a|6j|6l|6m|6n|6o|6q|Dc|Dd|De|Df|Dg|Dh|7u|Br|Bs|6s|6t|6u|6v|6x|Di|7x|7z|81|Dk|Dm|83|84|85|86|Dn|Do|Ds|7k|Dt|Du|Dy|E0|8D|E2|E6|E9|EB|ED|EE|EG|EI|EK|EL|EM|EP|ER|ET", "o|43|44|k|DZ|Da|4G|EU", "o|43|44|l|DZ|Da|4G|EU", "derivVariables", "derivVariable", "a|3y|45|46|47|48|49|4A|4B|4C|74|75|DF|DG|DH|DI|DJ|DK|DL|DM|7K|DN|DO|DP|DQ|DR|DS|DT|DU|76|77|78|79|DV|EX|EY", "o|EZ|4J|4J|4N|4N|4N|4N|4J|4N|4N|7V|4N|4J|4J|4J|4J|4J|4N|4N|DY|4J|4J|4J|4J|4J|4J|4J|4J|4N|4J|4J|4J|4N|4N|4J|4J", "numDerivatives", "o|6h|Eb|2O|6i", "o|8H|EX|Dv|4G|8I|Dx", "a|6j|6l|6m|6n|6o|6q|Dc|Dd|De|Df|Dg|Dh|7u|6s|6t|6u|6v|6x|Di|7x|7z|81|Dk|Dm|83|84|85|86|Dn|Do|Ds|7k|Dt|Du|Dy|E0|8D|E2|E6|E9|EB|ED|EE|EG|EI|EK|EL|Ec|Ed|EM|EP|ER|ET", "o|43|44|m|Ea|Da|4G|Ee", "o|6h|6y|1o|6i", "a|6j|6l|6m|6n|6o|6q|7t|7u|AT|7v|6s|6t|6u|6v|6x|7x|7z|81|82|Eg|AW|70|AX|89", "o|43|44|n|AR|BQ|6i|Eh", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|70", "o|43|44|o|4O|6f|4G|Ej", "o|43|44|p|4O|6f|4G|Ej", "o|43|44|q|4O|6f|4G|Ej", "o|43|44|r|4O|6f|4G|Ej", "o|43|44|s|4O|6f|4G|Ej", "o|43|44|t|4O|6f|4G|Ej", "o|43|44|u|4O|6f|4G|Ej", "o|43|44|v|4O|6f|4G|Ej", "o|43|44|w|4O|6f|4G|Ej", "o|43|44|x|4O|6f|4G|Ej", "a|", "o|43|44|y|4O|Eu|6i|Ej", "o|43|44|z|4O|Eu|6i|Ej", "o|43|44|10|4O|Eu|6i|Ej", "o|43|44|11|4O|Eu|6i|Ej", "o|43|44|12|4O|Eu|6i|Ej", "o|43|44|13|4O|Eu|6i|Ej", "o|43|44|14|4O|Eu|6i|Ej", "o|43|44|15|4O|Eu|6i|Ej", "aggregateScores", "weight", "sectionWideCheckWork", "submitLabel", "submitLabelNoCorrectness", "displayDigitsForCreditAchieved", "boxed", "includeAutoName", "includeAutoNumber", "includeAutoNameIfNoTitle", "includeAutoNumberIfNoTitle", "level", "includeParentNumber", "a|3y|45|46|47|48|49|4A|4B|4C|F3|F4|F5|F6|F7|F8|F9|FA|FB|FC|FD|2i|FE|FF", "o|FG|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4N|4J|4J|4J|4N|4N|4N|4N|4N|4N|4J|4N", "a|9l|4Q|9r|4R|4S|4T|4U|8o|8p|8q|4V|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|8r|8s|8t|8u|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|5Q|9A|5R|5S|9B|5T|5U|5V|5W|9C|9D|9E|9F|9G|5X|5Y|9H|5Z|9I|5a|9J|9K|5b|9L|9M|5c|5d|9N|5e|5f|5g|5h|5i|5j|5k|5l|5m|5n|5o|9O|9P|9Q|9R|9S|9T|9U|9V|9W|9X|5p|9Y|5q|5r|5s|9Z|5t|5u|5v|5w|5x|5y|5z|60|9a|61|62|63|64|9b|9c|65|9d|9e|9f|9g|9h|9i|9j|66|9k|67|68|69|6A|6B|6C|9m|6D|6E|6F|6G|6H|6I|6J|9n|9o|9p|6K|6L|9q|6M|6N|6O|6P|6Q|6R|6S|9s|6T|6U|6V|6W|9t|6X|6Y|6Z|9u|9v|9w|9x|9y|6a|9z|A0|A1|6b|6c|6d|A2|6e|A3|A4|A5", "o|6h|F3|1r|6i", "o|6h|F4|2N|6i", "o|6h|F5|1r|6i", "o|6h|F6|1o|6i", "o|6h|F7|1o|6i", "o|6h|F8|2O|6i", "o|6h|F9|1r|6i", "o|6h|FA|1r|6i", "o|6h|FB|1r|6i", "o|6h|FC|1r|6i", "o|6h|FD|1r|6i", "o|6h|2i|1r|6i", "o|6h|FF|1r|6i", "sectionNumber", "o|6h|FW|1o|6i", "o|6h|3|1o|6i", "creditAchieved", "o|6h|FZ|2N|6i", "percentCreditAchieved", "o|6h|Fb|2N|6i", "open", "o|6h|Fd|1r|6i", "a|6j|6l|6m|6n|6o|6q|FJ|FK|FL|FM|FN|FO|FP|FQ|FR|FS|FT|FU|FV|6s|6t|6u|6v|6x|FX|FY|Fa|Fc|Fe", "o|43|44|16|FH|FI|4G|Ff", "o|43|44|17|FH|FI|4G|Ff", "o|43|44|18|FH|FI|4G|Ff", "o|43|44|19|FH|FI|4G|Ff", "collapsible", "startOpen", "a|3y|45|46|47|48|49|4A|4B|4C|F3|F4|F5|F6|F7|F8|F9|FA|FB|FC|FD|2i|FE|FF|Fk|Fl", "o|Fm|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4N|4J|4J|4J|4N|4N|4N|4N|4N|4N|4J|4N|4N|4N", "o|6h|Fk|1r|6i", "a|6j|6l|6m|6n|6o|6q|FJ|FK|FL|FM|FN|FO|FP|FQ|FR|FS|FT|FU|FV|Fo|6s|6t|6u|6v|6x|FX|FY|Fa|Fc|Fe", "o|43|44|1A|Fn|FI|4G|Fp", "o|43|44|1B|FH|FI|4G|Ff", "o|43|44|1C|FH|FI|4G|Ff", "o|43|44|1D|FH|FI|4G|Ff", "o|43|44|1E|FH|FI|4G|Ff", "o|43|44|1F|FH|FI|4G|Ff", "o|43|44|1G|FH|FI|4G|Ff", "o|43|44|1H|FH|FI|4G|Ff", "o|43|44|1I|FH|FI|4G|Ff", "o|43|44|1J|FH|FI|4G|Ff", "renameTo", "a|3y|45|46|47|48|49|4A|4B|4C|F3|F4|F5|F6|F7|F8|F9|FA|FB|FC|FD|2i|FE|G0|Fk|Fl", "o|G1|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4N|4J|4J|4J|4N|4N|4N|4N|4N|4N|4J|4J|4N|4N", "a|6j|6l|6m|6n|6o|6q|FJ|FK|FL|FM|FN|FO|FP|FQ|FR|FS|FT|FU|Fo|6s|6t|6u|6v|6x|FX|FY|Fa|Fc|Fe", "o|43|44|1K|G2|FI|4G|G3", "a|3y|45|46|47|48|49|4A|4B|4C|F3|F4|F5|F6|F7|F8|F9|FA|FB|FC|FD|2i|FE|G0", "o|G5|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4N|4J|4J|4J|4N|4N|4N|4N|4N|4N|4J|4J", "a|6j|6l|6m|6n|6o|6q|FJ|FK|FL|FM|FN|FO|FP|FQ|FR|FS|FT|FU|6s|6t|6u|6v|6x|FX|FY|Fa|Fc|Fe", "o|43|44|1L|G6|FI|4G|G7", "o|43|44|1M|G6|FI|4G|G7", "marker", "cols", "a|3y|45|46|47|48|49|4A|4B|4C|3R|FE|GA|GB", "o|GC|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J", "o|4P|3b", "a|GE", "o|6h|3R|1o|6i", "a|6j|6l|6m|6n|6o|6q|GG|6s|6t|6u|6v|6x", "o|43|44|1N|GD|GF|6i|GH", "o|43|44|1O|GD|GF|6i|GH", "o|43|44|3b|4O|A6|4G|AL", "independentVariable", "initialIndependentVariableValue", "chunkSize", "tolerance", "maxIterations", "hideInitialCondition", "initialConditions", "a|3y|45|46|47|48|49|4A|4B|4C|GL|GM|76|77|78|79|7A|GN|GO|GP|GQ|GR|DS|2N", "o|GS|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|4N|4J|4J|4J|4J|4N|4J|4J|4N", "a|4R", "o|6h|GL|Dv|6i", "o|6h|GM|1t|6i", "o|6h|GN|2N|6i", "o|6h|GO|2N|6i", "o|6h|GP|2N|6i", "o|6h|GQ|1r|6i", "o|6h|2N|1r|6i", "rhss", "o|Dp|4G|1t|8I", "a|Gd", "o|8H|Gc|1t|4G|8I|Ge", "o|8H|GR|1t|4G|8I|Ge", "numericalSolutions", "o|Dp|4G|2Q|8I", "a|Gi", "o|8H|Gh|2Q|4G|8I|Gj", "rhs", "o|6h|Gl|1t|6i", "righthandside", "o|6h|Gn|1t|6i", "righthandsides", "o|8H|Gp|1t|4G|8I|Ge", "initialCondition", "o|6h|Gr|1t|6i", "numericalSolution", "o|6h|Gt|2Q|6i", "a|6j|6l|6m|6n|6o|6q|GV|GW|7m|GX|GY|GZ|Ga|Gb|6s|6t|6u|6v|6x|83|84|85|86|7x|7z|81|Dy|Gf|Gg|Ag|8D|Gk|Gm|Go|Gq|Gs|Gu", "o|43|44|1P|GT|GU|6i|Gv", "verticesDraggable", "vertices", "showCoordsWhenDragging", "rigid", "preserveSimilarity", "rotationHandleVertices", "rotateAround", "rotationCenter", "rotationVertex", "allowRotation", "allowTranslation", "allowDilation", "minShrink", "attractThreshold", "numPoints", "numIterationsRequired", "initialPoint", "lockToSolution", "defaultPoint", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|Gx|Gy|Gz|H0|H1|H2|H3|H4|H5|H6|H7|H8|H9|76|77|78|79|HA|HB|DT|HC|HD|2Q|HE|HF", "centroid", "vertex", "a|HH|HI|1z", "o|4F|4G|HJ", "o|HG|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N|4N|4N|4J|HK|4J|4J|4N|4N|4N|4J|4J|4J|4J|4N|4J|4J|4J|4J|4J|4J|4N|4J", "a|4T|4U|6b", "o|6h|7K|2O|6i", "o|6h|Gz|1r|6i", "o|6h|H0|1r|6i", "o|6h|H6|1r|6i", "o|6h|H7|1r|6i", "o|6h|HA|2N|6i", "o|6h|HB|2N|6i", "o|6h|HC|2N|6i", "o|6h|H1|1r|6i", "o|6h|H8|1r|6i", "o|6h|Gx|1r|6i", "o|6h|8E|2N|6i", "o|8H|Gy|1t|4G|8T|E5", "length", "o|6h|Ha|2N|6i", "o|8H|HD|1t|4G|8I|E8", "correctVertices", "o|Dp|4G|1r|8I", "a|He", "o|8H|Hd|1r|4G|8I|Hf", "fractionCorrectVertices", "o|6h|Hh|2N|6i", "numGradedVertices", "o|6h|Hj|2N|6i", "numCorrectVertices", "o|6h|Hl|2N|6i", "fractionCorrectVerticesAdjusted", "o|6h|Hn|2N|6i", "numGradedVerticesAdjusted", "o|6h|Hp|2N|6i", "numIterateValues", "o|6h|Hr|2N|6i", "iterateValues", "o|8H|Ht|1t|4G|8I|Ge", "numVertices", "o|6h|Hv|2N|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|HO|HP|HQ|HR|HS|HT|EM|HU|6s|6t|6u|6v|6x|Di|83|84|85|86|Dk|Dm|HV|HW|HX|HY|HZ|Hb|Hc|Hg|Hi|Hk|Hm|Ho|Hq|Hs|Hu|Hw", "o|43|44|1Q|HL|HM|6i|Hx", "xs", "hideOffGraphIndicator", "stable", "switchable", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|8X|8Z|8b|Hz|20|76|77|78|79|DM|Gz|I0|I1|I2", "o|I3|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4J|4J|4J|4J|4J|4J|4J|4J|4N|DY|4N|4N|4N|4N", "o|4P|3k", "a|4T|4U|6b|4R|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|5R|5W|5g|5m|5n|5q|63|64|6A|6D|6I|6J|6T|6X|6d|I5|4V|57|5X|5c|5z|60|65|6E|6F|6G|6H|6K|6L|6M|6e|54|55|56|5S|5T|5U|5V|5b|5h|5i|5j|5o|5r|5u|5y|61|62|6Z", "o|6h|I1|1r|6i", "o|6h|I2|1r|6i", "o|6h|I0|1r|6i", "o|8H|Hz|1t|4G|8I|Ge", "o|6h|20|20|6i", "constraintUsed", "o|6h|IC|1r|6i", "numDimensionsForConstraints", "o|6h|IE|2N|6i", "o|6h|6y|20|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|Dh|HO|I7|I8|6s|6t|6u|6v|6x|Di|83|84|85|86|7x|7z|81|Dk|Dm|I9|HY|IA|IB|8D|ID|IF|8Y|8a|8c|IG", "o|43|44|1R|I4|I6|4G|IH", "equation", "slope", "perpendicularTo", "parallelTo", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|IJ|DQ|IK|IL|IM|DS|76|77|78|79|DM|I1|I2", "a|7W|7X|7Y|7Z", "o|4F|4G|IO", "o|IN|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4J|4J|4J|4J|4J|4J|4J|4J|4J|4N|IP|4N|4N", "a|4T|4U|6b|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|5R|5S|5T|5U|5V|5W|5X|5b|5c|5g|5h|5i|5j|5m|5n|5o|5q|5r|5u|5y|5z|60|61|62|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6T|6X|6Z|6d|6e", "points", "o|8H|IS|1t|4G|8T|E5", "o|6h|IJ|1t|6i", "coeff0", "o|6h|IV|1t|6i", "coeffvar1", "o|6h|IX|1t|6i", "coeffvar2", "o|6h|IZ|1t|6i", "o|6h|IK|1t|6i", "xintercept", "o|6h|Ic|1t|6i", "yintercept", "o|6h|Ie|1t|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|Dh|I7|I8|6s|6t|6u|6v|6x|Di|83|84|85|86|7x|7z|81|Dk|Dm|HY|Dy|IT|IU|IW|IY|Ia|Ib|Id|If|8D", "o|43|44|1S|IQ|IR|4G|Ig", "flipFunction", "numDiscretizationPoints", "periodic", "splineTension", "extrapolateBackward", "extrapolateForward", "splineForm", "parMin", "parMax", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|DM|Ii|Ij|Ik|Il|Im|In|Io|DT|DQ|Ip|Iq|Gz|DV|76|77|78|79|I1|I2", "centripetal", "uniform", "a|Is|It", "o|4F|4G|Iu", "o|Ir|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|DY|4N|4J|4N|4J|4N|4N|Iv|4J|4J|4J|4J|4N|4N|4J|4J|4J|4N|4N|4N", "a|4T|4U|6b|54|55|56|61|62|5p|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|57|5R|5S|5T|5U|5V|5W|5X|5b|5c|5g|5h|5i|5j|5m|5n|5o|5q|5r|5u|5y|5z|60|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6T|6X|6Z|6d|6e", "o|6h|Ii|1r|6i", "o|6h|Ij|2N|6i", "o|6h|Ik|1r|6i", "o|6h|Il|2N|6i", "o|6h|Im|1r|6i", "o|6h|In|1r|6i", "o|6h|Io|1o|6i", "o|6h|Iq|2N|6i", "o|6h|Ip|2N|6i", "throughPoints", "o|8H|J7|1t|4G|8T|E5", "vectorControlDirections", "o|Dp|4G|1o|8I", "a|JA", "o|8H|J9|1o|4G|8I|JB", "hiddenControls", "o|8H|JD|1r|4G|8I|Hf", "n|3", "o|Dp|4G|2E|8T", "o|Dp|4G|2E|8I", "a|JG|JH|8K", "o|8H|2D|1t|4G|JF|JI", "controlPoints", "o|Dp|4G|1z|8T", "a|JL|E3|E4", "o|8H|JK|1t|4G|JF|JM", "extrapolateBackwardMode", "o|6h|JO|1o|6i", "extrapolateForwardMode", "o|6h|JQ|1o|6i", "fs", "o|8H|JS|2Q|4G|8I|Gj", "numXCriticalPoints", "o|6h|JU|2O|6i", "xCriticalPoints", "o|8H|JW|2N|4G|8T|E5", "numYCriticalPoints", "o|6h|JY|2O|6i", "yCriticalPoints", "o|8H|Ja|2N|4G|8T|E5", "numCurvatureChangePoints", "o|6h|Jc|2O|6i", "curvatureChangePoints", "o|8H|Je|2N|4G|8T|E5", "o|6h|ES|2Q|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|Dh|Iy|Iz|J0|J1|J2|J3|J4|HO|I7|I8|6s|6t|6u|6v|6x|Di|83|84|85|86|Dk|Dm|J5|J6|HY|J8|JC|JE|JJ|JN|JP|JR|JT|JV|JX|JZ|Jb|Jd|Jf|Jg", "o|43|44|1T|Iw|Ix|4G|Jh", "symbol", "atomicNumber", "a|3y|45|46|47|48|49|4A|4B|4C|Jj|Jk|76|77|78|79", "o|Jl|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|4N", "o|6h|Jk|2O|6i", "o|6h|Jj|1o|6i", "o|6h|3y|1o|6i", "o|6h|2m|2O|6i", "atomicMass", "o|6h|Jr|2N|6i", "phaseAtSTP", "o|6h|Jt|1o|6i", "chargeOfCommonIon", "o|6h|Jv|2O|6i", "metalCategory", "o|6h|Jx|1o|6i", "groupName", "o|6h|Jz|1o|6i", "period", "o|6h|K1|2O|6i", "ionizationEnergy", "o|6h|K3|2N|6i", "meltingPoint", "o|6h|K5|2N|6i", "boilingPoint", "o|6h|K7|2N|6i", "atomicRadius", "o|6h|K9|2O|6i", "density", "o|6h|KB|2N|6i", "electronegativity", "o|6h|KD|2N|6i", "o|6h|1X|1X|6i", "o|6h|1Y|1Y|6i", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|83|84|85|86|7x|7z|81|Jn|Jo|Jp|Jq|Js|Ju|Jw|Jy|K0|K2|K4|K6|K8|KA|KC|KE|KF|KG|AX|8D", "o|43|44|1U|Jm|Eu|6i|KH", "charge", "a|3y|45|46|47|48|49|4A|4B|4C|Jj|Jk|KJ", "o|KK|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J", "a|5T", "o|6h|KJ|2O|6i", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|7x|7z|81|Jn|Jo|KN|Jp|Jq|Jy|K0|K2|AX|8D", "o|43|44|1V|KL|KM|6i|KO", "a|5T|5U", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|7x|7z|81|AX|8D", "o|43|44|1W|KL|KQ|6i|KR", "o|6h|6y|1X|6i", "o|6h|3V|1o|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|KT|89|8A|8C|KU|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|1X|7h|7i|4G|KV", "labels", "a|3y|45|46|47|48|49|4A|4B|4C|KX", "o|KY|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J", "a|5i|9C|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|5R|5S|5T|5U|5V|5W|5X|5b|5c|5g|5h|5j|5m|5n|5o|5q|5r|5u|5y|5z|60|61|62|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6T|6X|6Z|6d|6e", "o|6h|6y|1Y|6i", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|Kb", "o|43|44|1Y|KZ|Ka|4G|Kc", "prefill", "prefillLabel", "a|3y|45|46|47|48|49|4A|4B|4C|Ke|Kf", "o|Kg|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J", "rows", "o|6h|Ki|1Y|6i", "selectedRowIndex", "o|6h|Kk|2O|6i", "selectedBoxIndex", "o|6h|Km|2O|6i", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|Kb|Kj|8Q|Kl|Kn", "o|43|44|1Z|Kh|Eu|6i|Ko", "code", "a|3y|45|46|47|48|49|4A|4B|4C|Kq|1o", "o|Kr|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J", "o|43|44|3c|Ks|Eu|6i|AL", "o|4P|3c", "a|Ku", "o|43|44|3d|4O|Kv|6i|AL", "lineColor", "lineColorWord", "lineColorDarkMode", "lineColorWordDarkMode", "lineOpacity", "lineWidth", "lineWidthWord", "lineStyle", "lineStyleWord", "markerColor", "markerColorWord", "markerColorDarkMode", "markerColorWordDarkMode", "markerOpacity", "markerStyle", "markerStyleWord", "markerSize", "fillColor", "fillColorWord", "fillColorDarkMode", "fillColorWordDarkMode", "fillOpacity", "textColorWord", "textColorDarkMode", "textColorWordDarkMode", "backgroundColorWord", "backgroundColorDarkMode", "backgroundColorWordDarkMode", "a|3y|45|46|47|48|49|4A|4B|4C|Kx|Ky|Kz|L0|L1|L2|L3|L4|L5|L6|L7|L8|L9|LA|LB|LC|LD|LE|LF|LG|LH|LI|7w|LJ|LK|LL|7y|LM|LN|LO", "o|LP|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J", "a|6j|6l|6n|6o|6q|6s|6t|6u|6v|6x", "o|43|44|3e|LQ|Eu|6i|LR", "o|4P|3e", "a|LT", "o|43|44|3f|4O|LU|6i|AL", "width", "widths", "margins", "valign", "valigns", "a|3y|45|46|47|48|49|4A|4B|4C|LW|LX|LY|LZ|La", "o|Lb|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J", "a|8o|8p|8q|8r|8s|8t|8u|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|9C|9D|9E|9F|9G|5Y|9H|9I|9J|9K|9L|9N|5k|9a|9c|9g|9h|9i|66|67|68|6B|6C|9n|9o|9p|9q|6M|6R|9s|6U|6V|9t|6Y|9x|9y|A0|A3|A4", "absoluteMeasurements", "o|6h|Le|1r|6i", "gapWidth", "o|6h|Lg|2N|6i", "o|Dp|4G|2N|8I", "a|Li", "o|8H|LX|2N|4G|8I|Lj", "o|8H|LY|2N|4G|8I|Lj", "o|8H|La|1o|4G|8I|JB", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|Lf|Lh|Lk|Ll|Lm", "o|43|44|1a|Lc|Ld|6i|Ln", "a|9E", "o|43|44|1b|Lc|Lp|6i|Ln", "o|43|44|1c|4O|A6|4G|AL", "sortby", "a|3y|45|46|47|48|49|4A|4B|4C|7J|7K|AP|7L|7M|Ls", "o|Lt|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4N|4J|7g|4J", "o|6h|6y|1d|6i", "a|6j|6l|6m|6n|6o|6q|7t|7u|AT|7v|6s|6t|6u|6v|6x|7x|7z|81|82|Lv|AW|70|AX|89", "o|43|44|1d|Lu|AS|4G|Lw", "a|5X|4R|4T|4U|4V|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|57|5T|5U|5W|5c|5d|5e|5g|5h|5i|5j|5n|5t|5y|5z|60|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6X|6a|6b|6c|6d|6e", "o|43|44|1e|4O|Ly|4G|AL", "o|43|44|1f|4O|A6|4G|AL", "o|43|44|1g|4O|A6|4G|AL", "o|43|44|1h|4O|A6|4G|AL", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|7x|7z|81|70", "o|43|44|1i|4O|A6|4G|M3", "initialPage", "a|3y|45|46|47|48|49|4A|4B|4C|M5", "o|M6|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J", "numPages", "o|6h|M8|2O|6i", "currentPage", "o|6h|MA|2O|6i", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|M9|MB", "o|43|44|1j|M7|A6|4G|MC", "previousLabel", "nextLabel", "pageLabel", "a|3y|45|46|47|48|49|4A|4B|4C|ME|MF|MG|1j", "o|MH|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J", "o|6h|ME|1o|6i", "o|6h|MF|1o|6i", "o|6h|MG|1o|6i", "disabledDirectly", "o|6h|MM|1r|6i", "a|6j|6l|6m|6n|6o|6q|MJ|MK|ML|6s|6t|6u|6v|6x|MN", "o|43|44|1k|MI|Eu|6i|MO", "showSizeControls", "defaultEntry", "bindValueTo", "unionFromU", "minComponentWidth", "a|3y|45|46|47|48|49|4A|4B|4C|8P|8R|MQ|MR|Ke|73|7E|7G|7H|76|77|78|79|MS|MT|MU", "o|MV|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4N|4J|4J|7P|4J|4N|4N|4J|4J|4J|4N|4J|4N|4J", "a|6d", "collaborateGroups", "o|6h|MY|MY|6i", "o|6h|MQ|1r|6i", "o|6h|Ke|1t|6i", "o|6h|MT|1r|6i", "valueChanged", "o|6h|Md|1r|6i", "immediateValueChanged", "o|6h|Mf|1r|6i", "o|6h|6y|1t|6i", "immediateValue", "o|6h|Mi|1t|6i", "a|6j|6l|6m|6n|6o|6q|MZ|Ma|Mb|7j|7p|7q|7r|Mc|6s|6t|6u|6v|6x|83|84|85|86|Me|Mg|8Q|8S|Mh|Mj|8W", "o|43|44|1l|MW|MX|6i|Mk", "a|4Q|4R|4S|4T|4U|4V|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|5Y|5Z|5a|5b|5c|5d|5e|5f|5g|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|5z|60|61|62|63|64|65|66|67|68|69|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6N|6O|6P|6Q|6R|6S|6T|6U|6V|6W|6X|6Y|6Z|6a|6b|6c|6d|6e|8o|8p|8q|8r|8s|8t|8u|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|9C|9D|9E|9F|9G|9H|9I|9J|9K|9L|9N|9a|9c|9g|9h|9i|9n|9o|9p|9q|9s|9t|9x|9y|A0|A3|A4", "message", "o|6h|Mn|1o|6i", "a|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|6j|Fe|Mo", "o|43|44|1m|4O|Mm|4G|Mp", "documentWideCheckWork", "xmlns", "a|3y|45|49|4C|Mr|F6|F7|F8|Ms|3x", "o|Mt|4J|4J|4N|4N|4N|4J|4J|4J|4J|4J", "a|9l|4Q|4S|9r|4R|4T|4U|8o|8p|8q|4V|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|8r|8s|8t|8u|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|5Q|9A|5R|5S|9B|5T|5U|5V|5W|9C|9D|9E|9F|9G|5X|5Y|9H|5Z|9I|5a|9J|9K|5b|9L|9M|5c|5d|9N|5e|5f|5g|5h|5i|5j|5k|5l|5m|5n|5o|9O|9P|9Q|9R|9S|9T|9U|9V|9W|9X|5p|9Y|5q|5r|5s|9Z|5t|5u|5v|5w|5x|5y|5z|60|9a|61|62|63|64|9b|9c|65|9d|9e|9f|9g|9h|9i|9j|66|9k|67|68|69|6A|6B|6C|9m|6D|6E|6F|6G|6H|6I|6J|9n|9o|9p|6K|6L|9q|6M|6N|6O|6P|6Q|6R|6S|9s|6T|6U|6V|6W|9t|6X|6Y|6Z|9u|9v|9w|9x|9y|6a|9z|A0|A1|6b|6c|6d|A2|6e|A3|A4|A5", "o|6h|Mr|1r|6i", "o|6h|5|1o|6i", "a|6o|6q|Mw|FM|FN|FO|6s|6t|6u|6v|6x|FY|Mx|Fa|Fc", "o|43|44|1n|Mu|Mv|4G|My", "o|43|44|1o|AR|AS|4G|Eh", "maxNumber", "a|3y|45|46|47|48|49|4A|4B|4C|7B|N1", "o|N2|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J", "a|4R|4T|4U|4V|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|57|5T|5U|5W|5X|5c|5d|5e|5g|5h|5i|5j|5n|5t|5y|5z|60|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6X|6a|6b|6c|6d|6e", "o|6h|N1|2N|6i", "o|6h|8l|2N|6i", "texts", "o|8H|N7|1o|4G|8I|JB", "numValues", "o|6h|N9|2N|6i", "values", "o|8H|NB|1o|4G|8I|JB", "a|6j|6l|6m|6n|6o|6q|87|N5|6s|6t|6u|6v|6x|N6|N8|70|NA|NC", "o|43|44|1p|N3|N4|4G|ND", "a|4Q|4R|4S|4T|4U|4V|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|5Y|5Z|5a|5b|5c|5d|5e|5f|5g|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|5z|60|61|62|63|64|65|66|67|68|69|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6N|6O|6P|6Q|6R|6S|6T|6U|6V|6W|6X|6Y|6Z|6a|6b|6c|6d|6e|98|99", "o|43|44|1q|4O|NF|4G|Ej", "o|43|44|1r|B2|B3|4G|BM", "a|4c|4d|4e|4f|4g|4h|4i|5e|5w|6a|6c|5f|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|5R|5S|5T|5U|5V|5W|5X|5b|5c|5g|5h|5i|5j|5m|5n|5o|5q|5r|5u|5y|5z|60|61|62|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6T|6X|6Z|6d|6e", "booleans", "o|8H|NJ|1r|4G|8I|Hf", "o|8H|NB|1r|4G|8I|Hf", "a|6j|6l|6m|6n|6o|6q|87|N5|6s|6t|6u|6v|6x|N6|NK|NA|NL", "o|43|44|1s|N3|NI|4G|NM", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Mh|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|1t|7h|7i|4G|NO", "mergeMathLists", "a|3y|45|46|47|48|49|4A|4B|4C|7B|N1|NQ|76|77|78|79|7E|7F|7G|7H", "o|NR|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4N|4J|4J|4J|4N|4J|4J|4N|4N", "o|6h|NQ|1r|6i", "maths", "o|8H|NU|1t|4G|8I|Ge", "o|8H|7S|2N|4G|8I|Lj", "o|8H|NB|1t|4G|8I|Ge", "a|6j|6l|6m|6n|6o|6q|87|N5|7p|7q|7r|6s|6t|6u|6v|6x|83|84|85|86|NT|N6|NV|AX|NW|8D|70|NA|NX", "o|43|44|1u|NS|BQ|4G|NY", "o|43|44|1v|NS|BQ|4G|NY", "a|3y|45|46|47|48|49|4A|4B|4C|7B|N1|76|77|78|79", "o|Nb|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4J|4J|4J|4N", "a|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|57|5W|5X|5c|5g|5n|5z|60|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6X|6d|6e|5h|5i|5j", "o|8H|NB|2N|4G|8I|Lj", "a|6j|6l|6m|6n|6o|6q|87|N5|6s|6t|6u|6v|6x|83|84|85|86|N6|NW|AX|NV|70|NA|Ne", "o|43|44|1w|Nc|Nd|4G|Nf", "source", "assignNamesSkip", "prop", "componentIndex", "propIndex", "sourceAttributesToIgnore", "componentTypes", "a|3y|45|Nh|8i|49|4C|Ni|Nj|N1|Nk|Nl|Nm|Nn|2i", "o|No|4J|4J|4J|4J|4N|4N|4J|4J|4J|4J|4J|4J|4J|4N", "o|6h|Nk|2O|6i", "o|6h|Nl|1w|6i", "stringArray", "o|6h|Nm|Ns|6i", "a|6o|6q|N5|Nq|Nr|Nt|6s|6t|6u|6v|6x", "o|43|44|1x|Np|Eu|6i|Nu", "target", "textType", "uri", "page", "createButton", "a|3y|45|Nw|46|47|48|49|4A|4B|4C|Nx|Ny|Nz|O0", "o|O1|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4N", "o|6h|Nx|1o|6i", "o|6h|Ny|1o|6i", "o|6h|Nz|2O|6i", "linkText", "o|6h|O6|1o|6i", "a|6j|6l|6m|6n|6o|6q|O3|O4|O5|6s|6t|6u|6v|6x|O7", "o|43|44|1y|O2|A6|4G|O8", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|8X|8Z|8b|Hz|20|76|77|78|79|DM|Gz|I0", "o|OA|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4J|4J|4J|4J|4J|4J|4J|4J|4N|DY|4N|4N", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|Dh|HO|6s|6t|6u|6v|6x|Di|83|84|85|86|7x|7z|81|Dk|Dm|I9|HY|IA|IB|8D|ID|IF|8Y|8a|8c|IG", "o|43|44|1z|OB|I6|4G|OC", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7B|7D|7E|7F|7G|7H|7I|7J|7K|7L|7M", "o|OE|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7o|7p|7q|7r|7s|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|IG|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|7n|8Y|8a|8c", "o|43|44|20|OF|7i|4G|OG", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|IJ|DQ|IK|IL|IM|DS|76|77|78|79|DM", "o|OI|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4J|4J|4J|4J|4J|4J|4J|4J|4J|4N|IP", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|Dh|6s|6t|6u|6v|6x|Di|83|84|85|86|7x|7z|81|Dk|Dm|HY|Dy|IT|IU|IW|IY|Ia|Ib|Id|If|8D", "o|43|44|21|OJ|IR|4G|OK", "endpointsDraggable", "endpoints", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|OM|ON|Gz|DM|76|77|78|79", "o|OO|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N|IP|4J|4J|4J|4N", "o|6h|OM|1r|6i", "o|8H|ON|1t|4G|8T|E5", "o|6h|Ha|1t|6i", "o|6h|IK|2N|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|HO|Dh|6s|6t|6u|6v|6x|Di|83|84|85|86|Dk|Dm|OQ|HY|OR|OS|OT", "o|43|44|22|OP|HM|6i|OU", "direction", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|3A|DQ|OW|76|77|78|79", "o|OX|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4J|4J|4J|4J|4J|4J|4N", "o|8H|OW|1t|4G|8I|8L", "o|8H|DQ|1t|4G|8I|E8", "o|8H|3A|1t|4G|8I|E8", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|6s|6t|6u|6v|6x|Di|83|84|85|86|Dk|Dm|HY|OZ|Oa|Ob", "o|43|44|23|OY|HM|6i|Oc", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|Gx|Gy|Gz|H0|H1|H2|H3|H4|H5|H6|H7|H8|H9|76|77|78|79", "o|Oe|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N|4N|4N|4J|HK|4J|4J|4N|4N|4N|4J|4J|4J|4J|4N", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|HO|HP|HQ|HR|6s|6t|6u|6v|6x|Di|83|84|85|86|Dk|Dm|HV|HW|HX|Hw|HY|HZ|Hb", "o|43|44|24|Of|HM|6i|Og", "filled", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|Gx|Gy|Gz|H0|H1|H2|H3|H4|H5|H6|H7|H8|H9|76|77|78|79|Oi", "o|Oj|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N|4N|4N|4J|HK|4J|4J|4N|4N|4N|4J|4J|4J|4J|4N|4N", "o|6h|Oi|1r|6i", "borderStyleDescription", "o|6h|Om|1o|6i", "fillStyleDescription", "o|6h|Oo|1o|6i", "perimeter", "o|6h|Oq|2N|6i", "area", "o|6h|Os|2N|6i", "numSides", "o|6h|Ou|2N|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|HO|HP|HQ|HR|Ol|6s|6t|6u|6v|6x|Di|83|84|85|86|Dk|Dm|HV|HW|HX|Hw|HY|HZ|On|Op|Or|Ot|Ov", "o|43|44|25|Ok|HM|6i|Ow", "o|43|44|26|Ok|HM|6i|Ow", "height", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|Gx|Gy|Gz|H0|H1|H2|H3|H4|H5|H6|H7|H8|H9|76|77|78|79|Oi|7e|LW|Oz", "o|P0|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N|4N|4N|4J|HK|4J|4J|4N|4N|4N|4J|4J|4J|4J|4N|4N|4J|4J|4J", "o|8H|7e|1t|4G|8I|E8", "o|6h|LW|2N|6i", "o|6h|Oz|2N|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|HO|HP|HQ|HR|Ol|6s|6t|6u|6v|6x|Di|83|84|85|86|Dk|Dm|HV|HW|HX|Hw|HY|HZ|On|Op|Or|Ot|P2|P3|P4|Ov", "o|43|44|27|P1|HM|6i|P5", "circumradius", "radius", "inradius", "apothem", "sideLength", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|Gx|Gy|Gz|H0|H2|H3|H4|H5|H6|H7|H8|H9|76|77|78|79|Oi|Hv|Ou|7e|P7|P8|P9|PA|PB|Oq|Os", "o|PC|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N|4N|4J|HK|4J|4J|4N|4N|4N|4J|4J|4J|4J|4N|4N|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J", "o|6h|Hv|2O|6i", "o|6h|P7|2N|6i", "o|6h|P9|2N|6i", "o|6h|PB|2N|6i", "o|6h|Ou|2O|6i", "o|6h|P8|2N|6i", "o|6h|PA|2N|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|HO|HP|HQ|HR|Ol|6s|6t|6u|6v|6x|Di|83|84|85|86|Dk|Dm|HV|HW|HX|PE|HY|HZ|On|Op|Or|Ot|P2|PF|PG|PH|PI|PJ|PK", "o|43|44|28|PD|HM|6i|PL", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|DM|Ii|Ij|Ik|Il|Im|In|Io|DQ|Gz|DV|76|77|78|79|7e|P8|Oi|I0", "o|PN|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|DY|4N|4J|4N|4J|4N|4N|Iv|4J|4N|4N|4J|4J|4J|4N|4J|4J|4N|4N", "o|6h|P8|1t|6i", "diameter", "o|6h|PQ|1t|6i", "circumference", "o|6h|PS|1t|6i", "o|6h|Os|1t|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|Dh|Iy|Iz|J0|J1|J2|J3|J4|HO|Ol|6s|6t|6u|6v|6x|Di|83|84|85|86|Dk|Dm|On|Op|I9|J5|J6|J8|PP|PR|PT|PU|P2", "o|43|44|29|PO|IR|4G|PV", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|DM|Ii|Ij|Ik|Il|Im|In|Io|DQ|Gz|DV|76|77|78|79|HI", "o|PX|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|DY|4N|4J|4N|4J|4N|4N|Iv|4J|4N|4N|4J|4J|4J|4N|4J", "a", "o|6h|PZ|2N|6i", "b", "o|6h|Pb|2N|6i", "o|6h|t|2N|6i", "o|8H|HI|1t|4G|8I|E8", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|Dh|Iy|Iz|J0|J1|J2|J3|J4|HO|6s|6t|6u|6v|6x|Di|83|84|85|86|Dk|Dm|J5|J6|J8|Pa|Pc|Pd|Pe|IU|ET", "o|43|44|2A|PY|IR|4G|Pf", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|DM|Ii|Ij|Ik|Il|Im|In|Io|DT|DQ|Ip|Iq|Gz|DV|76|77|78|79", "o|Ph|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|DY|4N|4J|4N|4J|4N|4N|Iv|4J|4J|4J|4J|4N|4N|4J|4J|4J|4N", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|Dh|Iy|Iz|J0|J1|J2|J3|J4|HO|6s|6t|6u|6v|6x|Di|83|84|85|86|Dk|Dm|J5|J6|HY|J8|JC|JE|JJ|JN|JP|JR|JT|JV|JX|JZ|Jb|Jd|Jf|Jg", "o|43|44|2B|Pi|Ix|4G|Pj", "alwaysVisible", "a|3y|45|46|47|48|49|4A|4B|4C|Pl", "o|Pm|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N", "a|9Y|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|5R|5S|5T|5U|5V|5W|5X|5b|5c|5g|5h|5i|5j|5m|5n|5o|5q|5r|5u|5y|5z|60|61|62|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6T|6X|6Z|6d|6e", "o|6h|Pl|1r|6i", "a|6j|6l|6m|6n|6o|6q|Pp|6s|6t|6u|6v|6x", "o|43|44|2C|Pn|Po|4G|Pq", "pointNumber", "a|3y|45|46|47|48|49|4A|4B|4C|OW|Ps", "symmetric", "previous", "next", "both", "a|Pu|Pv|Pw|Px|7Q", "o|4F|4G|Py", "o|Pt|4J|4J|4N|4N|4N|4N|4J|4N|4N|Pz|4J", "a|4R|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|5W|5g|5n|5q|63|64|6A|6D|6I|6J|6X|6d|4V|54|55|56|57|5R|5S|5T|5U|5V|5X|5b|5c|5h|5i|5j|5m|5o|5r|5u|5y|5z|60|61|62|65|6E|6F|6G|6H|6K|6L|6M|6T|6Z|6e", "o|6h|OW|1o|6i", "o|6h|Ps|2N|6i", "a|6j|6l|6m|6n|6o|6q|Q2|Q3|6s|6t|6u|6v|6x", "o|43|44|2D|Q0|Q1|4G|Q4", "headDraggable", "tailDraggable", "displacement", "head", "tail", "displayWithAngleBrackets", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|Q6|Q7|8X|8Z|8b|Hz|Q8|Q9|QA|76|77|78|79|QB|Gz", "o|QC|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4N|4N|4N", "a|4T|4U|6b|4R|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|5R|5W|5g|5m|5n|5q|63|64|6A|6D|6I|6J|6T|6X|6d|4V|57|5X|5c|5z|60|65|6E|6F|6G|6H|6K|6L|6M|6e|54|55|56|5S|5T|5U|5V|5b|5h|5i|5j|5o|5r|5u|5y|61|62|6Z", "o|6h|QB|1r|6i", "o|6h|Q7|1r|6i", "o|6h|Q6|1r|6i", "o|8H|Q8|1t|4G|8I|8L", "o|8H|Q9|1t|4G|8I|E8", "o|8H|QA|1t|4G|8I|E8", "magnitude", "o|6h|QL|1t|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|QF|HO|6s|6t|6u|6v|6x|Di|83|84|85|86|7x|7z|81|Dk|Dm|QG|QH|HY|QI|QJ|QK|QM|8D|8Y|8a|8c", "o|43|44|2E|QD|QE|4G|QN", "chooseReflexAngle", "inDegrees", "radians", "degrees", "betweenLines", "emphasizeRightAngle", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|P8|QP|QQ|QR|QS|DQ|QT|76|77|78|79|QU", "never", "allowed", "always", "a|QW|QX|QY", "o|4F|4G|QZ", "o|QV|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4J|Qa|4N|4J|4J|4J|4J|4J|4J|4J|4N|4N", "a|4T|4U|6b|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|57|5W|5X|5c|5g|5n|5z|60|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6X|6d|6e|54|55|56|5R|5S|5T|5U|5V|5b|5h|5i|5j|5m|5o|5q|5r|5u|5y|61|62|6T|6Z", "o|6h|QP|1o|6i", "o|6h|QQ|1r|6i", "o|6h|QU|1r|6i", "o|6h|QR|1t|6i", "o|6h|QS|1t|6i", "o|6h|2F|1t|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|PP|Qd|Qe|Qf|6s|6t|6u|6v|6x|Di|83|84|85|86|Qg|Qh|Mh|Qi", "o|43|44|2F|Qb|Qc|4G|Qj", "handGraded", "inline", "matchPartial", "forceFullCheckworkButton", "numAwardsCredited", "maxNumAttempts", "showCorrectness", "disableAfterCorrect", "selectMultiple", "shuffleOrder", "expanded", "displayDigitsForResponses", "a|3y|45|46|47|48|49|4A|4B|4C|F4|Ql|Qm|Ap|Qn|Qo|Ar|Aq|As|At|Qp|Qq|Au|Av|Aw|Ax|Ay|Az|B0|Qr|3x|Qs|F6|F7|Qt|Qu|7G|7H|Qv|Qw|F8", "o|Qx|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N|4N|4N|4N|4N|7V|4N|4N|4N|4J|4J|4J|4N|4N|4J|4J|4N|4N|4N|4J|4N|4J|4J|4N|4N|4N|4N|4N|4J|4J", "o|4P|3t", "a|9Z|5b|5u|5v|5w|5x|Qz|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|5R|5S|5T|5U|5V|5W|5X|5c|5g|5h|5i|5j|5m|5n|5o|5q|5r|5y|5z|60|61|62|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6T|6X|6Z|6d|6e|4T|4U|4c|4d|4e|4f|4g|4h|4i|5d|5e|5t|6a|6b|6c|5f", "o|6h|Ql|1r|6i", "o|6h|Qm|1r|6i", "o|6h|Qn|1r|6i", "o|6h|Qo|1r|6i", "o|6h|Qp|2O|6i", "o|6h|Qq|2O|6i", "o|6h|Qs|1r|6i", "o|6h|Qt|1r|6i", "o|6h|Qu|1r|6i", "o|6h|Qv|1r|6i", "o|6h|Qw|2O|6i", "disabledOriginal", "o|6h|RC|1r|6i", "numResponses", "o|6h|RE|2N|6i", "a|3y|6g|8E|8G", "currentResponses", "a|6g|8E", "o|RI|4G|8I", "a|RJ", "o|RG|RH|4G|8I|RK", "numSubmittedResponses", "o|6h|RM|2N|6i", "submittedResponses", "o|RG|RO|4G|8I|RK", "responseHasBeenSubmitted", "o|6h|RQ|1r|6i", "justSubmitted", "o|6h|RS|1r|6i", "numFeedbacks", "o|6h|RU|2N|6i", "feedbacks", "o|Dp|4G|30|8I", "a|RX", "o|8H|RW|30|4G|8I|RY", "numSubmissions", "o|6h|Ra|2O|6i", "numAttemptsLeft", "o|6h|Rc|2O|6i", "a|3y|6g", "currentResponse", "o|Re|Rf|6i", "submittedResponse", "o|Re|Rh|6i", "a|6j|6l|6m|6n|6o|6q|FK|R1|R2|B4|R3|R4|B6|B5|B7|B8|R5|R6|B9|BA|BB|BC|BD|BE|BF|R7|FM|FN|R8|R9|7q|7r|RA|RB|FO|6s|6u|6v|6x|RD|RF|RL|RN|RP|Fa|RR|RT|RV|RZ|Rb|Rd|6t|Rg|Ri", "o|43|44|2G|Qy|R0|6i|Rj", "credit", "feedbackCodes", "feedbackText", "sourcesAreResponses", "a|3y|45|46|47|48|49|4A|4B|4C|Rl|Qn|Ap|Aq|Ar|As|At|Au|Av|Aw|Ax|Ay|Az|B0|Rm|Rn|Ro|7G|7H", "o|Rp|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N|4N|4N|7V|4N|4N|4J|4N|4N|4J|4J|4N|4N|4J|4J|4J|4N|4N", "a|5t|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|5R|5S|5T|5U|5V|5W|5X|5b|5c|5g|5h|5i|5j|5m|5n|5o|5q|5r|5u|5y|5z|60|61|62|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6T|6X|6Z|6d|6e|4T|4U|4c|4d|4e|4f|4g|4h|4i|5d|5e|6a|6b|6c|5w|5f|9C", "o|6h|Rl|2N|6i", "o|6h|Rm|1p|6i", "o|6h|Rn|1o|6i", "creditAchievedIfSubmit", "o|6h|Rv|2N|6i", "fractionSatisfiedIfSubmit", "o|6h|Rx|2N|6i", "fractionSatisfied", "o|6h|Rz|2N|6i", "awarded", "o|6h|S1|1r|6i", "o|6h|30|30|6i", "a|6j|6l|6m|6n|6o|6q|Rs|R3|B4|B5|B6|B7|B8|B9|BA|BB|BC|BD|BE|BF|Rt|Ru|7q|7r|6s|6t|6u|6v|6x|Rw|Ry|S0|Fa|S2|RV|RZ|S3", "o|43|44|2H|Rq|Rr|4G|S4", "a|3y|45|46|47|48|49|4A|4B|4C|Ap|Aq|Ar|As|At|Au|Av|Aw|Ax|Ay|Az|B0|Qn", "o|S6|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|7V|4N|4N|4J|4N|4N|4J|4J|4N|4N|4N", "conditionSatisfied", "o|6h|S8|1r|6i", "a|6j|6l|6m|6n|6o|6q|B4|B5|B6|B7|B8|B9|BA|BB|BC|BD|BE|BF|R3|6s|6t|6u|6v|6x|BI|S0|S9|70", "o|43|44|3g|S7|B3|4G|SA", "prefillLatex", "hideNaN", "removeStrings", "minWidth", "a|3y|45|46|47|48|49|4A|4B|4C|Ke|SC|73|7E|7G|7H|76|77|78|79|MS|MT|SD|SE|SF|DK", "o|SG|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|7P|4J|4N|4N|4J|4J|4J|4N|4J|4N|4N|4J|4J|4N", "o|6h|SC|3V|6i", "o|6h|SD|1r|6i", "o|6h|SF|2O|6i", "rawRendererValue", "o|6h|SL|3V|6i", "a|6j|6l|6m|6n|6o|6q|MZ|Mb|SI|7j|7p|7q|7r|Mc|SJ|SK|Df|6s|6t|6u|6v|6x|83|84|85|86|Di|Me|Mh|Mg|Mj|70|SM", "o|43|44|2I|SH|IR|4G|SN", "a|3y|45|46|47|48|49|4A|4B|4C|Ke|MS|Qv|LW|Oz|DK|7J|7L|7M", "o|SP|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4N|4J|4J|4N|4N|4J|7g", "a|4T|4U|6b|4R|4V|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|57|5T|5U|5W|5X|5c|5d|5e|5g|5h|5i|5j|5n|5t|5y|5z|60|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6X|6a|6c|6d|6e", "o|6h|Ke|1o|6i", "_componentSize", "o|6h|Oz|ST|6i", "o|6h|LW|ST|6i", "o|6h|Mi|1o|6i", "a|6j|6l|6m|6n|6o|6q|MZ|SS|RA|SU|Df|7t|7v|6s|6t|6u|6v|6x|Di|82|SV|Me|Eg|Mg|SW|70", "o|43|44|2J|SQ|SR|4G|SX", "asToggleButton", "a|3y|45|46|47|48|49|4A|4B|4C|Ke|DK|SZ|MS|7J|7L|7M", "o|Sa|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4N|4N|4N|4J|7g", "a|4T|4U|6b|4c|4d|4e|4f|4g|4h|4i|5e|5w|6a|6c|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|5R|5S|5T|5U|5V|5W|5X|5b|5c|5g|5h|5i|5j|5m|5n|5o|5q|5r|5u|5y|5z|60|61|62|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6T|6X|6Z|6d|6e", "o|6h|Ke|1r|6i", "o|6h|SZ|1r|6i", "a|6j|6l|6m|6n|6o|6q|MZ|Sd|Df|Se|7t|7v|6s|6t|6u|6v|6x|Di|82|Me|BI|70", "o|43|44|2K|Sb|Sc|4G|Sf", "preselectChoice", "placeHolder", "a|3y|45|46|47|48|49|4A|4B|4C|Qt|Qn|Qm|Qu|Sh|MS|Si|F6|F7|DK", "o|Sj|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4N|4N|4J|4J|4J|4J|4J|4N", "a|4T|4U|6b|5y", "numChoices", "o|6h|Sm|2N|6i", "choiceTexts", "o|8H|So|1o|4G|8I|JB", "choiceMaths", "o|8H|Sq|1t|4G|8I|Ge", "selectedIndices", "o|8H|Ss|2N|4G|8I|Lj", "selectedValues", "o|RG|Su|4G|8I|RK", "o|6h|N9|EO|6i", "selectedIndex", "o|6h|Sx|2N|6i", "selectedValue", "o|Re|Sz|6i", "o|RG|NB|4G|8I|RK", "valueToRecordOnSubmit", "o|8H|T2|2N|4G|8I|Lj", "valueRecordedAtSubmit", "o|6h|T4|EO|6i", "a|6j|6l|6m|6n|6o|6q|MZ|R8|R3|R9|FM|FN|Df|6s|6t|6u|6v|6x|Di|R2|Sn|Sp|Sr|Me|St|Sv|RV|RZ|Sw|Sy|T0|T1|T3|T5", "o|43|44|2L|Sk|Sl|6i|T6", "preSelect", "a|3y|45|46|47|48|49|4A|4B|4C|Rl|Rm|Rn|T8", "o|T9|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4N", "selected", "o|6h|TB|1r|6i", "submitted", "o|6h|TD|1r|6i", "feedbacktext", "o|6h|RW|TF|6i", "a|6j|6l|6m|6n|6o|6q|Rs|Rt|Ru|6s|6t|6u|6v|6x|70|AX|TC|TE|TG", "o|43|44|2M|TA|A6|4G|TH", "renderAsMath", "convertBoolean", "valueOnNaN", "a|3y|45|46|47|48|49|4A|4B|4C|76|77|78|79|TJ|TK|TL|7J|7K|7L|7M", "o|TM|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4N|4N|4N|4J|4N|4J|4J|7g", "a|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|57|5W|5X|5c|5g|5n|5z|60|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6X|6d|6e|54|55|56|5R|5S|5T|5U|5V|5b|5h|5i|5j|5m|5o|5q|5r|5u|5y|61|62|6T|6Z|4T|4U|4c|4d|4e|4f|4g|4h|4i|5d|5e|5t|6a|6b|6c|5w", "o|6h|TJ|1r|6i", "o|6h|6y|2N|6i", "a|6j|6l|6m|6n|6o|6q|TP|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|TQ|70|AX|8D", "o|43|44|2N|TN|TO|4G|TR", "valuePreRound", "o|6h|TT|2O|6i", "o|6h|6y|2O|6i", "a|6j|6l|6m|6n|6o|6q|TP|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|70|AX|8D|TU|TV", "o|43|44|2O|TN|TO|4G|TW", "xmin", "xmax", "ymin", "ymax", "size", "aspectRatio", "displayMode", "horizontalAlign", "identicalAxisScales", "displayXAxis", "displayYAxis", "displayXAxisTickLabels", "displayYAxisTickLabels", "xlabelPosition", "xTickScaleFactor", "ylabelPosition", "ylabelAlignment", "yTickScaleFactor", "showNavigation", "fixAxes", "grid", "showBorder", "hideOffGraphIndicators", "a|3y|45|46|47|48|49|4A|4B|4C|TY|TZ|Ta|Tb|LW|Tc|Td|Te|Tf|Tg|Th|Ti|Tj|Tk|Tl|Tm|Tn|To|Tp|Tq|Tr|Ts|76|77|78|79|Tt|Tu", "tiny", "small", "medium", "large", "a|Tw|Tx|Ty|Tz|7R", "o|4F|4G|U0", "block", "a|U2|Qm", "o|4F|4G|U3", "a|7e|7c|7d", "o|4F|4G|U5", "a|7d|7c", "o|4F|4G|U7", "a|7a|7b", "o|4F|4G|U9", "a|7c|7d", "o|4F|4G|UB", "o|Tv|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|U1|4J|U4|U6|4N|4N|4N|4N|4N|U8|4J|UA|UC|4J|4N|4N|4J|4J|4J|4J|4N|4N|4N", "a|4T|4U|4R|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|9A|5R|5S|9B|5W|5Y|5g|5k|5m|5n|5o|9O|9P|9Q|9R|9S|9T|9U|9V|9W|9X|5q|5r|61|62|63|64|66|9k|67|68|6A|6B|6C|6D|6I|6J|6R|6T|6U|6V|6X|6Y|6Z|9u|9v|9w|A1|6d|A5|9n|4V|4c|4d|4e|4f|4g|4h|4i|57|5T|5U|5X|5c|5d|5e|5h|5i|5j|5t|5y|5z|60|65|6E|6F|6G|6H|6K|6L|6M|6a|6b|6c|6e|5V|5b|5u|4W|4X|4Y|4b|4Z|4a|6N|6O|6P|5w|5v|9a", "o|6h|Te|1o|6i", "o|6h|Tf|1o|6i", "o|6h|Tg|1r|6i", "o|6h|Th|1r|6i", "o|6h|Ti|1r|6i", "o|6h|Tj|1r|6i", "o|6h|Tk|1r|6i", "o|6h|Tl|1o|6i", "o|6h|Tm|1t|6i", "o|6h|Tn|1o|6i", "o|6h|To|1o|6i", "o|6h|Tp|1t|6i", "o|6h|Tq|1r|6i", "o|6h|Tr|1r|6i", "o|6h|Tt|1r|6i", "o|6h|Tu|1r|6i", "o|6h|6|3R|6i", "o|6h|7|3R|6i", "o|6h|Tc|1o|6i", "o|6h|Td|2N|6i", "o|6h|TY|2N|6i", "o|6h|TZ|2N|6i", "o|6h|Ta|2N|6i", "o|6h|Tb|2N|6i", "o|Re|Ts|6i", "a|6j|6l|6m|6n|6o|6q|UF|UG|UH|UI|UJ|UK|UL|UM|UN|UO|UP|UQ|UR|US|UT|UU|6s|6t|6u|6v|6x|83|84|85|86|UV|UW|UX|SV|UY|UZ|Ua|Ub|Uc|Dd|De|Ud", "o|43|44|2P|UD|UE|6i|Ue", "a|3y|45|46|47|48|49|4A|4B|4C|74|75|DF|DG|DH|DI|DJ|DK|DL|DM|7K|DN|DO|DP|DQ|DR|DS|DT|DU|76|77|78|79|DV", "o|Ug|4J|4J|4N|4N|4N|4N|4J|4N|4N|7V|4N|4J|4J|4J|4J|4J|4N|4N|DY|4J|4J|4J|4J|4J|4J|4J|4J|4N|4J|4J|4J|4N|4N", "a|6j|6l|6m|6n|6o|6q|Dc|Dd|De|Df|Dg|Dh|7u|6s|6t|6u|6v|6x|Di|7x|7z|81|Dk|Dm|83|84|85|86|Dn|Do|Ds|7k|Dt|Du|Dy|E0|8D|E2|E6|E9|EB|ED|EE|EG|EI|EK|EL|EM|EP|ER|ET", "o|43|44|2Q|Uh|Da|4G|Ui", "a|3y|45|46|47|48|49|4A|4B|4C|74|75|DF|DG|DJ|DK|DL|DM|7K|DR|DS|DT|DU|76|77|78|79|DV", "o|Uk|4J|4J|4N|4N|4N|4N|4J|4N|4N|7V|4N|4J|4J|4J|4N|4N|DY|4J|4J|4J|4J|4N|4J|4J|4J|4N|4N", "a|54|55|56|61|62|4T|4U|6b", "a|6j|6l|6m|6n|6o|6q|Dc|Dd|De|Df|Dg|Dh|7u|6s|6t|6u|6v|6x|Di|7x|7z|81|Dk|Dm|83|84|85|86|Dn|Do|7k|Dt|Du|Dy|E0|8D|E2|E6|E9|EB|ED|EE|EG|EI|EK|EL|EM|EP|ER|ET", "o|43|44|2R|Ul|Um|6i|Un", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7B|7C|7E|7F|7G|7H|7I|7J|7K|7L|7M", "o|Up|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g", "o|6h|6y|2S|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7p|7q|7r|7s|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Ur|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|7o|8Y|8a|8c", "o|43|44|2S|Uq|7i|4G|Us", "o|43|44|3h|8n|A6|4G|A8", "selectForVariants", "selectWeight", "a|3y|45|8i|46|47|48|49|4A|4B|4C|8j|8k|8l|2i|Uv|Uw", "o|Ux|4J|4J|4J|4N|4N|4N|4N|4J|4J|4N|4N|4J|4J|4N|4J|4J", "textListFromString", "o|6h|Uv|Uz|6i", "o|6h|Uw|2N|6i", "a|6j|6l|6m|6o|6q|A7|V0|V1|6s|6t|6u|6v|6x", "o|43|44|3i|Uy|A6|4G|V2", "from", "to", "step", "exclude", "a|3y|45|8i|46|47|48|49|4A|4B|4C|76|77|78|79|3x|V4|V5|V6|Ha|V7|2i", "letters", "a|2N|1t|V9", "o|4F|4G|VA", "o|V8|4J|4J|4J|4N|4N|4J|4N|4J|4N|4N|4J|4J|4J|4J|VB|4J|4J|4J|4J|4J|4N", "o|43|44|2T|VC|Eu|6i|AL", "initialValue", "showControls", "showTicks", "showValue", "a|3y|45|46|47|48|49|4A|4B|4C|3x|LW|Oz|VE|DK|VF|VG|VH|V4|V5|V6|76|77|78|79|MS", "a|2N|1o", "o|4F|4G|VJ", "o|VI|4J|4J|4N|4N|4N|4N|4J|4N|4N|VK|4J|4J|4J|4N|4N|4N|4N|4J|4J|4J|4J|4J|4J|4N|4J", "a|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|57|5W|5X|5c|5g|5n|5z|60|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6X|6d|6e|4T|4U|4c|4d|4e|4f|4g|4h|4i|5T|5U|5d|5e|5h|5i|5j|5t|5y|6a|6b|6c|9j", "o|6h|VF|1r|6i", "o|6h|VG|1r|6i", "o|6h|VH|1r|6i", "o|6h|V4|2N|6i", "o|6h|V5|2N|6i", "o|6h|V6|2N|6i", "items", "o|Re|VT|6i", "numItems", "o|6h|VV|2O|6i", "o|Re|6y|6i", "a|6j|6l|6m|6n|6o|6q|SV|SU|Df|VN|VO|VP|VQ|VR|VS|6s|6t|6u|6v|6x|Di|83|84|85|86|VU|VW|VX", "o|43|44|2U|VL|VM|6i|VY", "minNumRows", "minNumColumns", "columnHeaders", "rowHeaders", "fixedRowsTop", "fixedColumnsLeft", "hiddenColumns", "hiddenRows", "a|3y|45|46|47|48|49|4A|4B|4C|LW|Va|Vb|Oz|Vc|Vd|Ve|Vf|Vg|Vh", "o|Vi|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4N|4N|4J|4J|4J|4J", "a|65|9d|9e|9f|9z", "o|6h|Va|2N|6i", "o|6h|Vb|2N|6i", "o|6h|Vc|1r|6i", "o|6h|Vd|1r|6i", "o|6h|Ve|2O|6i", "o|6h|Vf|2O|6i", "o|6h|Vg|1w|6i", "o|6h|Vh|1w|6i", "o|6h|8P|2N|6i", "o|6h|8R|2N|6i", "cells", "o|8J|6i|2Z", "o|8J|6i|2X", "a|Vw|Vx", "o|8H|Vv|2W|4G|8T|Vy", "evaluatedCells", "o|8H|W0|2W|4G|8T|Vy", "pointsInCells", "a|JL|E3", "o|8H|W2|1z|4G|8T|W3", "a|6j|6l|6m|6n|6o|6q|SV|Vl|Vm|Vn|Vo|Vp|Vq|Vr|Vs|6s|6t|6u|6v|6x|Vt|Vu|SU|Vz|W1|W4", "o|43|44|2V|Vj|Vk|6i|W5", "rowNum", "colNum", "colSpan", "halign", "a|3y|45|46|47|48|49|4A|4B|4C|W7|W8|W9|WA|7b|7d|Ke", "o|WB|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|4J|4J", "a|4R|4V|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|5R|5S|5T|5U|5V|5W|5X|5b|5c|5g|5h|5i|5j|5m|5n|5o|5q|5r|5u|5y|5z|60|61|62|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6T|6X|6Z|6d|6e|4Q|4S|4T|4U|8o|8p|8q|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|8r|8s|8t|8u|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|5Q|9A|9B|9C|9D|9E|9F|9G|5Y|9H|5Z|9I|5a|9J|9K|9L|9M|5d|9N|5e|5f|5k|5l|9O|9P|9Q|9R|9S|9T|9U|9V|9W|9X|5p|9Y|5s|9Z|5t|5v|5w|5x|9a|9b|9c|9d|9e|9f|9g|9h|9i|9j|66|9k|67|68|69|9l|6B|6C|9m|9n|9o|9p|9q|6N|6O|6P|6Q|6R|9r|6S|9s|6U|6V|6W|9t|6Y|9u|9v|9w|9x|9y|6a|9z|A0|A1|6b|6c|A2|A3|A4|A5", "o|6h|W7|1o|6i", "o|6h|W8|1o|6i", "o|6h|W9|2O|6i", "o|6h|WA|1o|6i", "o|6h|7b|1o|6i", "o|6h|7d|1o|6i", "inHeader", "o|6h|WK|1r|6i", "a|6j|6l|6m|6n|6o|6q|WE|WF|WG|SS|6s|6t|6u|6v|6x|WH|WI|WJ|WL|70|AX|89", "o|43|44|2W|WC|WD|4G|WM", "header", "a|3y|45|46|47|48|49|4A|4B|4C|W7|WO|WA|LZ|7c|7b|7E|7F|7G|7H", "o|WP|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N|4J|4J|4J|4J|4J|4J|4N|4N", "a|65", "o|6h|WO|1r|6i", "o|6h|LZ|1o|6i", "o|6h|7c|1o|6i", "a|6j|6l|6m|6n|6o|6q|WE|WS|6s|6t|6u|6v|6x|WH|WT|WU|WI", "o|43|44|2X|WQ|WR|6i|WV", "a|3y|45|46|47|48|49|4A|4B|4C|W8|7E|7F|7G|7H", "o|WX|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4N|4N", "a|6j|6l|6m|6n|6o|6q|WF|6s|6t|6u|6v|6x", "o|43|44|2Y|WY|WR|6i|WZ", "a|3y|45|46|47|48|49|4A|4B|4C|W7|W8", "o|Wb|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J", "a|65|9d|9e|9f", "a|6j|6l|6m|6n|6o|6q|WE|WF|6s|6t|6u|6v|6x", "o|43|44|2Z|Wc|Wd|6i|We", "a|3y|45|46|47|48|49|4A|4B|4C|LW|Oz|WA|LZ|7a|7c|7b|7d", "justify", "a|7c|7e|7d|Wh", "o|4F|4G|Wi", "middle", "a|7a|Wk|7b", "o|4F|4G|Wl", "minor", "major", "a|7Q|Wn|Ty|Wo", "o|4F|4G|Wp", "o|Wg|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|Wj|Wm|Wq|Wq|Wq|Wq", "a|9d", "o|6h|7a|1o|6i", "a|6j|6l|6m|6n|6o|6q|SV|SU|WH|WT|Wt|WU|WI|WJ|6s|6t|6u|6v|6x", "o|43|44|2a|Wr|Ws|6i|Wu", "suppressTableNameInTitle", "a|3y|45|46|47|48|49|4A|4B|4C|Ww|2N", "o|Wx|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N", "tableEnumeration", "o|6h|Wz|1o|6i", "tableName", "o|6h|X1|1o|6i", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|X0|X2|FY", "o|43|44|2b|Wy|Mm|4G|X3", "suppressFigureNameInCaption", "a|3y|45|46|47|48|49|4A|4B|4C|X5|2N", "o|X6|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N", "a|9s|4Q|4R|4S|4T|4U|4V|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|5Y|5Z|5a|5b|5c|5d|5e|5f|5g|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|5z|60|61|62|63|64|65|66|67|68|69|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6N|6O|6P|6Q|6R|6S|6T|6U|6V|6W|6X|6Y|6Z|6a|6b|6c|6d|6e|8o|8p|8q|8r|8s|8t|8u|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|9C|9D|9E|9F|9G|9H|9I|9J|9K|9L|9N|9a|9c|9g|9h|9i|9n|9o|9p|9q|9t|9x|9y|A0|A3|A4", "figureEnumeration", "o|6h|X9|1o|6i", "figureName", "o|6h|XB|1o|6i", "o|6h|39|1o|6i", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|XA|XC|XD", "o|43|44|2c|X7|X8|4G|XE", "markerType", "o|6h|XG|1o|6i", "o|RG|2d|4G|8I|RK", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|XH|XI", "o|43|44|2d|4O|N4|6i|XJ", "behavior", "a|3y|45|8i|46|47|48|49|4A|4B|4C|Ni|XL|2i", "o|XM|4J|4J|4J|4N|4N|4N|4N|4J|4J|4N|4J|4J|4N", "o|4P|3h", "o|4P|3j", "a|XO|XP", "o|6h|XL|1o|6i", "a|6j|6l|6m|6o|6q|XR|6s|6t|6u|6v|6x", "o|43|44|2e|XN|XQ|6i|XS", "alias", "indexAlias", "a|3y|45|46|47|48|49|4A|4B|4C|XU|XV", "o|XW|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J", "o|43|44|3j|XX|A6|4G|AL", "dx", "dy", "xoffset", "yoffset", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|XZ|Xa|Xb|Xc", "o|Xd|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4J|4J|4J|4J", "o|6h|XZ|2N|6i", "o|6h|Xa|2N|6i", "o|6h|Xb|2N|6i", "o|6h|Xc|2N|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|Xf|Xg|Xh|Xi|6s|6t|6u|6v|6x|Di", "o|43|44|2f|Xe|HM|6i|Xj", "o|4P|3l", "o|4P|3m", "o|4P|3n", "o|4P|3o", "o|4P|3p", "o|4P|3q", "o|4P|3r", "o|4P|3s", "a|Xl|Xm|Xn|Xo|Xp|Xq|Xr|Xs", "scales", "o|6h|Xu|2N|6i", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|Xv|ID", "o|43|44|3k|4O|Xt|6i|Xw", "dz", "zoffset", "a|3y|45|46|47|48|49|4A|4B|4C|XZ|Xa|Xy|Xb|Xc|Xz", "o|Y0|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|4J", "o|6h|Xy|2N|6i", "o|6h|Xz|2N|6i", "a|6j|6l|6m|6n|6o|6q|Xf|Xg|Y2|Xh|Xi|Y3|6s|6t|6u|6v|6x", "o|43|44|3l|Y1|Eu|6i|Y4", "buffer", "a|3y|45|46|47|48|49|4A|4B|4C|Y6", "o|Y7|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J", "o|6h|Y6|2N|6i", "a|6j|6l|6m|6n|6o|6q|Y9|6s|6t|6u|6v|6x", "o|43|44|3m|Y8|Eu|6i|YA", "xthreshold", "ythreshold", "zthreshold", "includeGridlines", "a|3y|45|46|47|48|49|4A|4B|4C|XZ|Xa|Xy|Xb|Xc|Xz|YC|YD|YE|YF", "o|YG|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|4J|4J|4J|4J|4N", "o|6h|YC|2N|6i", "o|6h|YD|2N|6i", "o|6h|YE|2N|6i", "o|6h|YF|1r|6i", "a|6j|6l|6m|6n|6o|6q|Xf|Xg|Y2|Xh|Xi|Y3|YI|YJ|YK|YL|6s|6t|6u|6v|6x", "o|43|44|3n|YH|Eu|6i|YM", "relativeToGraphScales", "a|3y|45|46|47|48|49|4A|4B|4C|YO", "o|YP|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N", "a|4R|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|9A|5R|5S|9B|5W|5Y|5g|5k|5m|5n|5o|9O|9P|9Q|9R|9S|9T|9U|9V|9W|9X|5q|5r|61|62|63|64|66|9k|67|68|6A|6B|6C|6D|6I|6J|6R|6T|6U|6V|6X|6Y|6Z|9u|9v|9w|A1|6d|A5", "o|6h|YO|1r|6i", "a|6j|6l|6m|6n|6o|6q|YS|6s|6t|6u|6v|6x", "o|43|44|3o|YQ|YR|6i|YT", "a|3y|45|46|47|48|49|4A|4B|4C|YO|C8", "o|YV|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J", "a|6j|6l|6m|6n|6o|6q|YS|6s|6t|6u|6v|6x|CB", "o|43|44|3p|YW|YR|6i|YX", "o|43|44|3q|4O|Xt|6i|AL", "a|3y|45|46|47|48|49|4A|4B|4C|C8", "o|Ya|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J", "a|6j|6l|6m|6n|6o|6q|CB|6s|6t|6u|6v|6x", "o|43|44|3r|Yb|Xt|6i|Yc", "o|43|44|3s|YQ|YR|6i|YT", "a|3y|45|8i|46|47|48|49|4A|4B|4C|Ni|2i", "o|Yf|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N", "a|5S|5o|6Z|9O|9V|9R|9S|9T|9U|9A|9Q", "o|43|44|2g|Yg|Yh|6i|LR", "condition", "a|3y|45|8i|46|47|48|49|4A|4B|4C|Ni|Yj", "o|Yk|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N", "o|4P|3u", "o|4P|3a", "a|Ym|Yn|4Q|4R|4S|4T|4U|8o|8p|8q|4V|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|8r|8s|8t|8u|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|5Q|9A|5R|5S|9B|5T|5U|5V|5W|9C|9D|9E|9F|9G|5X|5Y|9H|5Z|9I|5a|9J|9K|5b|9L|9M|5c|5d|9N|5e|5f|5g|5h|5i|5j|5k|5l|5m|5n|5o|9O|9P|9Q|9R|9S|9T|9U|9V|9W|9X|5p|9Y|5q|5r|5s|9Z|5t|5u|5v|5w|5x|5y|5z|60|9a|61|62|63|64|9b|9c|65|9d|9e|9f|9g|9h|9i|9j|66|9k|67|68|69|9l|6A|6B|6C|9m|6D|6E|6F|6G|6H|6I|6J|9n|9o|9p|6K|6L|9q|6M|6N|6O|6P|6Q|6R|9r|6S|9s|6T|6U|6V|6W|9t|6X|6Y|6Z|9u|9v|9w|9x|9y|6a|9z|A0|A1|6b|6c|6d|A2|6e|A3|A4|A5", "o|43|44|2h|Yl|Yo|4G|AL", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|70|8D", "o|43|44|2i|4O|6f|4G|Yq", "numVariants", "uniqueVariants", "variantsToInclude", "variantsToExclude", "variantNames", "seeds", "a|3y|45|46|47|48|49|4A|4B|4C|Ys|Yt|Yu|Yv|Yw|Yx", "o|Yy|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N|4J|4J|4J|4J", "o|43|44|2j|Yz|Eu|6i|AL", "numToSelect", "withReplacement", "sortResults", "excludeCombinations", "a|3y|45|8i|46|47|48|49|4A|4B|4C|76|77|78|79|3x|V4|V5|V6|Ha|V7|2i|Ni|Z1|Z2|Z3|Z4", "o|Z5|4J|4J|4J|4N|4N|4J|4N|4J|4N|4N|4J|4J|4J|4J|VB|4J|4J|4J|4J|4J|4N|4J|4J|4N|4N|4J", "o|6h|Z1|2O|6i", "o|6h|Z2|1r|6i", "o|6h|Z3|1r|6i", "a|6j|6l|6m|6n|6o|6q|Z7|Z8|Z9|6s|6t|6u|6v|6x", "o|43|44|2k|Z6|Eu|6i|ZA", "addLevelToAssignNames", "a|3y|45|8i|46|47|48|49|4A|4B|4C|Ni|Z1|Z2|3x|ZC|2i", "o|ZD|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4N|4J|4N|4N", "o|4P|3i", "a|ZF", "a|6j|6l|6m|6n|6o|6q|Z7|Z8|6s|6t|6u|6v|6x", "o|43|44|2l|ZE|ZG|4G|ZH", "o|43|44|2m|8n|A6|4G|A8", "animationOn", "animationMode", "animationInterval", "allowAdjustmentsWhileRunning", "a|3y|45|Nw|46|47|48|49|4A|4B|4C|3x|V4|V5|V6|Ha|V7|ZK|ZL|ZM|ZN", "increase", "decrease", "increase once", "decrease once", "oscillate", "a|ZP|ZQ|ZR|ZS|ZT", "o|4F|4G|ZU", "o|ZO|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|VB|4J|4J|4J|4J|4J|4N|ZV|4J|4N", "targetSubnames", "o|6h|ZX|Ns|6i", "targetSubnamesComponentIndex", "o|6h|ZZ|1w|6i", "o|6h|ZK|1r|6i", "o|6h|ZL|1o|6i", "o|6h|ZM|2N|6i", "o|6h|ZN|1r|6i", "currentAnimationDirection", "o|6h|Zf|1o|6i", "a|6j|6l|6m|6n|6o|6q|Nq|Nr|ZY|Za|Zb|Zc|Zd|Ze|6s|6t|6u|6v|6x|Sy|VX|Zg", "o|43|44|2n|ZW|Eu|6i|Zh", "input", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|7K|7L|7M|Bb|Bc|2Q|Zj", "o|Zk|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g|4N|4N|4J|4J", "o|6h|6y|2o|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|87|7n|7o|7p|7q|7r|7s|7t|7u|7v|Bf|Bg|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|Zm|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|E0|8Y|8a|8c", "o|43|44|2o|Zl|Eu|6i|Zn", "variantDeterminesSeed", "a|3y|45|8i|46|47|48|49|4A|4B|4C|Ni|3x|a|d|c|V4|V5|V6|V7|76|77|78|79|Zp|2i|Z1", "discreteuniform", "gaussian", "a|It|Zr|Zs", "o|4F|4G|Zt", "o|Zq|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|Zu|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4N|4N|4J", "o|6h|3x|1o|6i", "o|6h|Zp|1r|6i", "o|6h|a|2N|6i", "o|6h|c|2N|6i", "o|6h|d|2N|6i", "a|6j|6l|6m|6n|6o|6q|Zw|Zx|Z7|6s|6t|6u|6v|6x|VS|VQ|VR|Zy|Zz|a0", "o|43|44|2p|Zv|Eu|6i|a1", "numSamples", "a|3y|45|8i|46|47|48|49|4A|4B|4C|Ni|a3|3x|a|d|c|V4|V5|V6|V7|76|77|78|79|Zp|2i", "o|a4|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|Zu|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4J|4N|4N", "o|6h|a3|2N|6i", "a|6j|6l|6m|6n|6o|6q|a6|Zw|Zx|6s|6t|6u|6v|6x|VS|VQ|VR|Zy|Zz|a0", "o|43|44|2q|a5|Eu|6i|a7", "minValue", "maxValue", "a|3y|45|8i|46|47|48|49|4A|4B|4C|a9|aA|V7|Ni|Z1|Z2|Z3|Z4|2i", "o|aB|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|4N|4N|4J|4N", "o|6h|a9|2O|6i", "o|6h|aA|2O|6i", "o|6h|V7|1w|6i", "a|6j|6l|6m|6n|6o|6q|aD|aE|aF|Z7|Z8|Z9|6s|6t|6u|6v|6x", "o|43|44|2r|aC|Eu|6i|aG", "a|3y|45|8i|46|47|48|49|4A|4B|4C|Ni|a3|a9|aA|V7|Zp|2i", "o|aI|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|4N|4N", "a|6j|6l|6m|6n|6o|6q|a6|aD|aE|aF|Zx|6s|6t|6u|6v|6x", "o|43|44|2s|aJ|Eu|6i|aK", "match", "replacement", "matchWholeWord", "matchCase", "preserveCase", "a|3y|45|8i|46|47|48|49|4A|4B|4C|Ni|3x|aM|aN|74|76|77|78|79|aO|aP|aQ", "a|1t|1o", "o|4F|4G|aS", "o|aR|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|aT|4J|4J|7V|4J|4J|4J|4N|4N|4N|4N", "o|6h|aO|1r|6i", "o|6h|aP|1r|6i", "o|6h|aQ|1r|6i", "a|6j|6l|6m|6n|6o|6q|Zw|7k|aV|aW|aX|6s|6t|6u|6v|6x|83|84|85|86", "o|43|44|2t|aU|A6|4G|aY", "minIndex", "maxIndex", "offsets", "minIndexAsList", "maxIndexAsList", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|7K|7L|7M|aa|ab|ac|K1|ad|ae", "o|af|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g|4J|4J|4J|4J|4J|4J", "o|6h|aa|2O|6i", "o|6h|ab|2O|6i", "o|6h|ac|1u|6i", "o|6h|K1|1t|6i", "o|6h|ad|2O|6i", "o|6h|ae|2O|6i", "o|6h|6y|2u|6i", "numOffsets", "o|6h|ao|2O|6i", "redundantOffsets", "o|6h|aq|1r|6i", "o|6h|2i|1u|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|ah|ai|aj|ak|al|am|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|an|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|ap|ar|as|8Y|8a|8c", "o|43|44|2u|ag|Eu|6i|at", "asFileName", "mimeType", "rotate", "a|3y|45|46|47|48|49|4A|4B|4C|LW|Tc|Td|Te|Tf|5|Nh|av|aw|7J|7K|7L|7M|ax", "o|ay|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|U1|4J|U4|U6|4J|4J|4J|4J|4N|4J|4J|7g|4J", "o|6h|Nh|1o|6i", "o|6h|av|1o|6i", "o|6h|aw|1o|6i", "o|6h|ax|2N|6i", "a|6j|6l|6m|6n|6o|6q|UF|UG|Mx|b0|b1|b2|7t|7u|7v|b3|6s|6t|6u|6v|6x|82|UX|SV|UY", "o|43|44|2v|az|Eu|6i|b4", "youtube", "a|3y|45|46|47|48|49|4A|4B|4C|LW|Tc|Td|Te|Tf|b6|Nh", "o|b7|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|U1|4J|U4|U6|4J|4J", "o|6h|b6|1o|6i", "state", "o|6h|bA|1o|6i", "time", "o|6h|bC|2N|6i", "duration", "o|6h|bE|2N|6i", "secondsWatched", "o|6h|bG|2N|6i", "fractionWatched", "o|6h|bI|2N|6i", "a|6j|6l|6m|6n|6o|6q|UF|UG|b9|b0|6s|6t|6u|6v|6x|UX|SV|UY|bB|bD|bF|bH|bJ", "o|43|44|2w|b8|Eu|6i|bK", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|Fe|FY", "o|43|44|2x|4O|A6|4G|bM", "originalValue", "o|6h|bO|2y|6i", "o|6h|6y|2y|6i", "a|6j|6l|6m|6n|6o|6q|7t|7u|AT|7v|6s|6t|6u|6v|6x|7x|7z|81|82|AW|70|AX|89|bP|bQ", "o|43|44|2y|AR|AS|4G|bR", "pluralForm", "basedOnNumber", "a|3y|45|46|47|48|49|4A|4B|4C|7J|7K|AP|7L|7M|bT|bU", "o|bV|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4N|4J|7g|4J|4J", "o|6h|bT|1o|6i", "o|6h|bU|2N|6i", "valuePrePluralize", "o|6h|bZ|2z|6i", "a|6j|6l|6m|6n|6o|6q|7t|7u|AT|7v|bX|bY|6s|6t|6u|6v|6x|7x|7z|81|82|AW|70|AX|89|ba|Eg", "o|43|44|2z|bW|AS|4G|bb", "updateWith", "a|3y|45|47|48|49|4A|4B|4C|Yj|bd", "o|be|4J|4J|4N|4N|4N|4J|4N|4N|4N|4J", "a|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x", "o|43|44|30|bf|A6|4G|bg", "o|43|44|3t|4O|A6|4G|AL", "a|3y|45|8i|46|47|48|49|4A|4B|4C|8j|8k|8l|2i|Yj", "o|bj|4J|4J|4J|4N|4N|4N|4N|4J|4J|4N|4N|4J|4J|4N|4N", "a|6j|6l|6m|6o|6q|A7|6s|6t|6u|6v|6x|S9", "o|43|44|3u|bk|A6|4G|bl", "minSentencesPerParagraph", "maxSentencesPerParagraph", "minWordsPerSentence", "maxWordsPerSentence", "generateWords", "generateSentences", "generateParagraphs", "a|3y|45|8i|46|47|48|49|4A|4B|4C|bn|bo|bp|bq|br|bs|bt", "o|bu|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|4J|4J", "o|6h|bn|2N|6i", "o|6h|bo|2N|6i", "o|6h|bp|2N|6i", "o|6h|bq|2N|6i", "a|6j|6l|6m|6n|6o|6q|bw|bx|by|bz|6s|6t|6u|6v|6x", "o|43|44|31|bv|Eu|6i|c0", "newValue", "triggerWhen", "triggerWith", "triggerWhenObjectsClicked", "triggerWhenObjectsFocused", "a|3y|45|Nw|46|47|48|49|4A|4B|4C|DK|3x|c2|7J|7L|7M|c3|c4|c5|c6|74", "a|1t|2N|1r|1o", "o|4F|4G|c8", "o|c7|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|c9|4J|4N|4J|7g|4N|4J|4J|4J|7V", "a|6j|6l|6m|6n|6o|6q|Df|Nq|Nr|ZY|Za|7t|7v|7k|6s|6t|6u|6v|6x|Di|82", "o|43|44|32|cA|HM|6i|cB", "actionName", "a|3y|45|Nw|46|47|48|49|4A|4B|4C|DK|cD|7J|7L|7M|c3|c4|c5|c6|7S|2N", "o|cE|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4N|4J|7g|4N|4J|4J|4J|4J|4J", "o|6h|cD|1o|6i", "a|6j|6l|6m|6n|6o|6q|Df|cG|7t|7v|6s|6t|6u|6v|6x|Di|82", "o|43|44|33|cF|HM|6i|cH", "a|3y|45|46|47|48|49|4A|4B|4C|DK|7J|7L|7M|c3|c4|c5|c6", "o|cJ|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|7g|4N|4J|4J|4J", "a|6N|6O|4T|4U|6b", "a|6j|6l|6m|6n|6o|6q|Df|7t|7v|6s|6t|6u|6v|6x|Di|82", "o|43|44|34|cK|cL|6i|cM", "numIterates", "a|3y|45|46|47|48|49|4A|4B|4C|cO|Bb|Bc|VE|2Q|76|77|78|79", "o|cP|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|4N", "o|6h|cO|2O|6i", "allIterates", "o|6h|cS|1u|6i", "allIteratesWithInitial", "o|6h|cU|1u|6i", "iterates", "o|8H|cW|1t|4G|8I|Ge", "finalIterate", "o|6h|cY|1t|6i", "a|6j|6l|6m|6n|6o|6q|cR|Bf|Bg|6s|6t|6u|6v|6x|83|84|85|86|8F|cT|cV|cX|cZ", "o|43|44|35|cQ|Eu|6i|ca", "a|3y|45|8i|46|47|48|49|4B|4C|8j|8k|8l|2i", "o|cc|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4N", "a|6j|6l|6o|6q|A7|6s|6t|6u|6v|6x", "o|43|44|36|cd|A6|4G|ce", "componentType", "attribute", "defaultValue", "a|3y|45|8i|46|47|48|49|4A|4B|4C|cg|ch|ci", "o|cj|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J", "o|43|44|3v|ck|Eu|6i|AL", "o|4P|3f", "o|4P|3d", "o|4P|3v", "a|cm|cn|4Q|4R|4S|4T|4U|8o|8p|8q|4V|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|8r|8s|8t|8u|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|5Q|9A|5R|5S|9B|5T|5U|5V|5W|9C|9D|9E|9F|9G|5X|5Y|9H|5Z|9I|5a|9J|9K|5b|9L|9M|5c|5d|9N|5e|5f|5g|5h|5i|5j|5k|5l|5m|5n|5o|9O|9P|9Q|9R|9S|9T|9U|9V|9W|9X|5p|9Y|5q|5r|5s|9Z|5t|5u|5v|5w|5x|5y|5z|60|9a|61|62|63|64|9b|9c|65|9d|9e|9f|9g|9h|9i|9j|66|9k|67|68|69|9l|6A|6B|6C|9m|6D|6E|6F|6G|6H|6I|6J|9n|9o|9p|6K|6L|9q|6M|6N|6O|6P|6Q|6R|9r|6S|9s|6T|6U|6V|6W|9t|6X|6Y|6Z|9u|9v|9w|9x|9y|6a|9z|A0|A1|6b|6c|6d|A2|6e|A3|A4|A5|co", "o|43|44|37|4O|cp|4G|AL", "footnoteTag", "o|6h|cr|1o|6i", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|70|cs", "o|43|44|38|4O|6f|4G|ct", "o|43|44|39|4O|Mm|4G|Ej", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|7J|8X|8Z|8b|Hz|20|76|77|78|79|DM|Gz|I0|Fd|I2", "o|cw|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4J|4J|4J|4J|4J|4J|4J|4J|4N|DY|4N|4N|4N|4N", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|7t|Dh|HO|Fe|I8|6s|6t|6u|6v|6x|Di|83|84|85|86|7x|7z|81|Dk|Dm|I9|HY|IA|IB|8D|ID|IF|8Y|8a|8c|IG", "o|43|44|3A|cx|I6|4G|cy", "sortVectorsBy", "sortByComponent", "sortByProp", "a|3y|45|8i|46|47|48|49|4A|4B|4C|Ni|d0|d1|d2|3x|2i", "a|Q8|QA", "o|4F|4G|d4", "o|d3|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|d5|4J|4J|4J|4N", "o|6h|d0|1o|6i", "o|6h|d1|2O|6i", "a|6j|6l|6m|6n|6o|6q|d7|d8|6s|6t|6u|6v|6x", "o|43|44|3B|d6|A6|4G|d9", "a|3y|45|8i|46|47|48|49|4A|4B|4C|Ni|3x|2i", "o|dB|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4N", "o|43|44|3C|dC|A6|4G|AL", "minVar", "maxVar", "a|3y|45|46|47|48|49|4A|4B|4C|DS|Ij|dE|dF", "o|dG|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J", "numSolutions", "o|6h|dI|2O|6i", "solutions", "o|8H|dK|1t|4G|8I|Ge", "a|6j|6l|6m|6n|6o|6q|Iz|6s|6t|6u|6v|6x|Dy|dJ|dL|EM", "o|43|44|3D|dH|BQ|4G|dM", "a|3y|45|46|47|48|49|4A|4B|4C|TY|TZ|LW|Oz|6|XZ|DT|73|Ke|MS", "o|dO|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|4J|4J|7P|4J|4J", "o|6h|6|1o|6i", "subsetValue", "o|6h|dR|3F|6i", "o|8H|IS|1t|4G|8I|Ge", "pointsClosed", "o|8H|dU|1r|4G|8I|Hf", "intervals", "o|8H|dW|1t|4G|8I|Ge", "isolatedPoints", "o|8H|dY|1t|4G|8I|Ge", "a|6j|6l|6m|6n|6o|6q|UZ|Ua|SV|SU|dQ|Xf|EM|7j|SS|6s|6t|6u|6v|6x|dS|dT|dV|dX|dZ", "o|43|44|3E|dP|Eu|6i|da", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|7K|7L|7M|DT|Te", "inequalities", "a|dW|dd", "o|4F|4G|de", "o|dc|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g|4J|df", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|UF|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|Mh|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|dT|dV|dX|dZ|8Y|8a|8c", "o|43|44|3F|dg|7i|4G|dh", "splitBy", "a|3y|45|8i|46|47|48|49|4A|4B|4C|Ni|3x|dj", "a|1o", "o|4F|4G|dl", "letter", "word", "comma", "a|dn|do|dp", "o|4F|4G|dq", "o|dk|4J|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|dm|dr", "o|43|44|3G|ds|A6|4G|AL", "data", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|IL|IM|DS|76|77|78|79|DM|du", "o|dv|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4J|4J|4J|4J|4J|4J|4N|IP|4J", "o|8H|du|1t|4G|8T|E5", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|Dh|6s|6t|6u|6v|6x|Di|83|84|85|86|7x|7z|81|Dk|Dm|HY|Dy|IT|IU|IW|IY|Ia|Ib|Id|If|8D|7t|dx", "o|43|44|3H|dw|HM|6i|dy", "boundaryValues", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|e0|2Q", "o|e1|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4J|4J", "o|6h|e0|1w|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|e3|6s|6t|6u|6v|6x|Di|Dk|Dm", "o|43|44|3I|e2|HM|6i|e4", "flipFunctions", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|e0|e6", "o|e7|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4J|4N", "a|4T|4U|6b|54|55|56|61|62", "o|6h|e6|1r|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|e3|eA|6s|6t|6u|6v|6x|Di|Dk|Dm", "o|43|44|3J|e8|e9|6i|eB", "horizontal", "boundaryValue", "greaterThan", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|eD|eE|eF", "o|eG|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4J|4N", "o|6h|eD|1r|6i", "o|6h|eE|2N|6i", "o|6h|eF|1r|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|eI|eJ|eK|6s|6t|6u|6v|6x|Di", "o|43|44|3K|eH|HM|6i|eL", "viewerRatio", "showResults", "showFormatter", "resultsLocation", "renderedName", "staticName", "a|3y|45|46|47|48|49|4A|4B|4C|Ke|MS|LW|Oz|eN|eO|eP|eQ|eR|eS", "a|7b|7c|7d", "o|4F|4G|eU", "o|eT|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|4N|4N|eV|4J|4J", "o|6h|eO|1r|6i", "o|6h|eP|1r|6i", "o|6h|eQ|1o|6i", "a|6j|6l|6m|6n|6o|6q|SS|SV|SU|eX|eY|eZ|6s|6t|6u|6v|6x|Me|Eg|Mg|SW|70", "o|43|44|3L|eW|A6|4G|ea", "codeSource", "hasCodeEditorParent", "a|3y|45|46|47|48|49|4A|4B|4C|ec|LW|Oz|ed|eR", "o|ee|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4N|4J", "o|6h|ed|1r|6i", "locationFromParent", "o|6h|eh|1o|6i", "codeChanged", "o|6h|ej|1r|6i", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|eg|ei|SV|SU|ek", "o|43|44|3M|ef|Eu|6i|el", "restrictDivision", "monomialFactorMustMatch", "allowOnlySignDifferences", "a|3y|45|46|47|48|49|4A|4B|4C|Ap|Aq|Ar|As|At|Au|Av|Aw|Ax|Ay|Az|B0|DT|en|eo|ep", "o|eq|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|7V|4N|4N|4J|4N|4N|4J|4J|4N|4N|4J|4N|4N|4N", "o|43|44|3N|er|BQ|6i|BM", "hasHeader", "columnTypes", "a|3y|45|46|47|48|49|4A|4B|4C|Nh|et|eu", "o|ev|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4N|4J", "o|6h|et|1r|6i", "o|6h|eu|1p|6i", "columnNames", "o|6h|ez|1p|6i", "means", "o|8H|f1|2N|4G|8I|Lj", "a|6j|6l|6m|6n|6o|6q|b0|ex|6s|6t|6u|6v|6x|8Q|8S|ey|f0|f2", "o|43|44|3O|ew|Eu|6i|f3", "statisticsToDisplay", "byCategoryColumn", "a|3y|45|46|47|48|49|4A|4B|4C|Nh|2Y|f5|f6|76|77|78|79", "o|f7|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4J|4J|4J|4J|4N", "o|6h|f6|1o|6i", "o|6h|f5|1p|6i", "columnName", "o|6h|fB|1o|6i", "o|6h|e|2O|6i", "o|6h|P|2N|6i", "stdev", "o|6h|fF|2N|6i", "stderr", "o|6h|fH|2N|6i", "minimum", "o|6h|fJ|2N|6i", "maximum", "o|6h|fL|2N|6i", "o|6h|b|2N|6i", "quartile1", "o|6h|fO|2N|6i", "quartile3", "o|6h|fQ|2N|6i", "range", "o|6h|fS|2N|6i", "a|6j|6l|6m|6n|6o|6q|f9|6s|6t|6u|6v|6x|83|84|85|86|fA|fC|fD|fE|Zy|fG|Zz|fI|fK|fM|fN|fP|fR|fT", "o|43|44|3P|f8|Eu|6i|fU", "position", "displayClosedSwatches", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|fW|fX", "o|fY|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|IP|4N", "o|6h|fW|1o|6i", "o|6h|fX|1r|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|fa|fb|6s|6t|6u|6v|6x|Di", "o|43|44|3Q|fZ|HM|6i|fc", "o|6h|6y|3R|6i", "a|6j|6l|6m|6n|6o|6q|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|AE|70|8D|fe", "o|43|44|3R|AC|6f|4G|ff", "pattern", "allowImplicitIdentities", "allowPermutations", "requireNumericMatches", "requireVariableMatches", "excludeMatches", "matchExpressionWithBlanks", "a|3y|45|46|47|48|49|4A|4B|4C|Ap|Aq|Ar|As|At|Au|Av|Aw|Ax|Ay|Az|B0|fh|fi|fj|fk|fl|fm|fn", "o|fo|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|7V|4N|4N|4J|4N|4N|4J|4J|4N|4N|4J|4N|4N|4N|4N|4J|4N", "o|6h|fi|1r|6i", "o|6h|fj|1r|6i", "o|6h|fk|1r|6i", "o|6h|fl|1r|6i", "o|6h|fm|1u|6i", "o|6h|fn|1r|6i", "numMatches", "o|6h|fw|2N|6i", "patternMatches", "o|8H|fy|1t|4G|8I|Ge", "a|6j|6l|6m|6n|6o|6q|B4|B5|B6|B7|B8|B9|BA|BB|BC|BD|BE|BF|fq|fr|fs|ft|fu|fv|6s|6t|6u|6v|6x|BI|70|fx|fz", "o|43|44|3S|fp|BQ|4G|g0", "a|3y|45|46|47|48|49|4A|4B|4C|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|7K|7L|7M|MR|8P|8R", "o|g2|4J|4J|4N|4N|4N|4N|4J|4N|4N|7P|7V|4N|4J|4J|4J|4N|4J|4N|4N|4N|4J|4J|4N|4N|4N|4N|4J|4J|7g|4J|4J|4J", "a|9d|9e", "o|6h|6y|3T|6i", "a|6j|6l|6m|6n|6o|6q|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|7t|7u|7v|6s|6t|6u|6v|6x|7x|7z|81|82|83|84|85|86|87|g5|89|8A|8C|8D|70|8F|8M|8O|8Q|8S|8W|8Y|8a|8c", "o|43|44|3T|g3|g4|6i|g6", "a|3y|45|46|47|48|49|4A|4B|4C|76|77|78|79", "o|g8|4J|4J|4N|4N|4N|4N|4J|4N|4N|4J|4J|4J|4N", "eigenvalues", "o|8H|gA|2N|4G|8I|Lj", "eigenvectors", "a|JH|8K", "o|8H|gC|2N|4G|8T|gD", "a|6j|6l|6m|6n|6o|6q|6s|6t|6u|6v|6x|83|84|85|86|gB|gE", "o|43|44|3U|g9|BQ|6i|gF", "a|4R|4T|4U|4V|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|57|5T|5U|5W|5X|5c|5d|5e|5g|5h|5i|5j|5n|5t|5y|5z|60|63|64|65|6A|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6X|6a|6b|6c|6d|6e|5I|5J|5K|5L|5M|5N|5O|5P|58|59|5A|5B|5C|5D|5E|5F|5G|5H|54|55|56|5R|5S|5V|5b|5m|5o|5q|5r|5u|61|62|6T|6Z|4W|4X|4Y|4b|4Z|4a", "o|6h|6y|3V|6i", "a|6j|6l|6m|6n|6o|6q|7t|7u|AT|7v|6s|6t|6u|6v|6x|7x|7z|81|82|gI|AW|70|AX|89|8D", "o|43|44|3V|AR|gH|4G|gJ", "o|43|44|3W|4O|A6|4G|AL", "separateByTopic", "defaultTopicLabel", "a|3y|45|46|47|48|49|4A|4B|4C|gM|3R|gN", "o|gO|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4J|4J", "o|6h|gM|1r|6i", "a|6j|6l|6m|6n|6o|6q|gQ|6s|6t|6u|6v|6x", "o|43|44|3X|gP|A6|4G|gR", "angleThreshold", "a|3y|45|46|47|48|49|4A|4B|4C|DK|DL|7K|YO|C8|gT", "o|gU|4J|4J|4N|4N|4N|4N|4J|4N|4N|4N|4N|4J|4N|4J|4J", "a|4T|4U|6b|4R|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|9A|5R|5S|9B|5W|5Y|5g|5k|5m|5n|5o|9O|9P|9Q|9R|9S|9T|9U|9V|9W|9X|5q|5r|61|62|63|64|66|9k|67|68|6A|6B|6C|6D|6I|6J|6R|6T|6U|6V|6X|6Y|6Z|9u|9v|9w|A1|6d|A5", "o|6h|gT|2N|6i", "a|6j|6l|6m|6n|6o|6q|Df|Dg|HN|YS|gX|6s|6t|6u|6v|6x|Di|Xv|CB", "o|43|44|3Y|gV|gW|6i|gY", "o|3w|72|8e|8h|A9|AH|AK|AM|AN|AO|AZ|Ad|Ae|Ai|Ak|Al|Ao|BK|BN|BO|BP|BR|BS|Ba|Bj|Bm|Bv|By|C7|CE|CJ|CM|CP|CS|CV|CY|Cb|Ci|Cl|Co|Cr|Cu|Cx|D0|DE|EV|EW|Ef|Ei|Ek|El|Em|En|Eo|Ep|Eq|Er|Es|Et|Ev|Ew|Ex|Ey|Ez|F0|F1|F2|Fg|Fh|Fi|Fj|Fq|Fr|Fs|Ft|Fu|Fv|Fw|Fx|Fy|Fz|G4|G8|G9|GI|GJ|GK|Gw|Hy|II|Ih|Ji|KI|KP|KS|KW|Kd|Kp|Kt|Kw|LS|LV|Lo|Lq|Lr|Lx|Lz|M0|M1|M2|M4|MD|MP|Ml|Mq|Mz|N0|NE|NG|NH|NN|NP|NZ|Na|Ng|Nv|O9|OD|OH|OL|OV|Od|Oh|Ox|Oy|P6|PM|PW|Pg|Pk|Pr|Q5|QO|Qk|Rk|S5|SB|SO|SY|Sg|T7|TI|TS|TX|Uf|Uj|Uo|Ut|Uu|V3|VD|VZ|W6|WN|WW|Wa|Wf|Wv|X4|XF|XK|XT|XY|Xk|Xx|Y5|YB|YN|YU|YY|YZ|Yd|Ye|Yi|Yp|Yr|Z0|ZB|ZI|ZJ|Zi|Zo|a2|a8|aH|aL|aZ|au|b5|bL|bN|bS|bc|bh|bi|bm|c1|cC|cI|cN|cb|cf|cl|cq|cu|cv|cz|dA|dD|dN|db|di|dt|dz|e5|eC|eM|eb|em|es|f4|fV|fd|fg|g1|g7|gG|gK|gL|gS|gZ", "o|2|3Z|ga"], "gb"]);
31216
+ dist.decompress([["elements", "a|0", "name", "children", "attributes", "properties", "top", "acceptsStringChildren", "a|2|3|4|5|6|7", "title", "rightHandSide", "description", "xlabel", "ylabel", "topic", "m", "me", "men", "md", "mdn", "mrow", "not", "and", "or", "xor", "isInteger", "isNumber", "isBetween", "sum", "product", "clampNumber", "wrapNumberPeriodic", "round", "setSmallToZero", "convertSetToList", "ceil", "floor", "abs", "sign", "mean", "median", "variance", "standardDeviation", "count", "min", "max", "mod", "gcd", "lcm", "extractMath", "clampFunction", "wrapFunctionPeriodic", "derivative", "extractMathOperator", "em", "alert", "q", "sq", "term", "c", "tag", "tage", "tagc", "attr", "ndash", "mdash", "nbsp", "ellipsis", "lq", "rq", "lsq", "rsq", "odesystem", "equilibriumPoint", "equilibriumLine", "atom", "ion", "ionicCompound", "electronConfiguration", "h", "idx", "span", "displayDoenetML", "matrixInput", "text", "boolean", "math", "collect", "ref", "point", "coords", "line", "bezierControls", "vector", "angle", "answer", "when", "mathInput", "textInput", "booleanInput", "choiceInput", "choice", "number", "integer", "function", "piecewiseFunction", "interval", "sequence", "cell", "map", "intersection", "conditionalContent", "asList", "selectFromSequence", "select", "group", "evaluate", "selectRandomNumbers", "sampleRandomNumbers", "selectPrimeNumbers", "samplePrimeNumbers", "substitute", "periodicSet", "intcomma", "pluralize", "lorem", "updateValue", "callAction", "triggerSet", "functionIterates", "module", "footnote", "endpoint", "sort", "shuffle", "solveEquations", "subsetOfReals", "split", "bestFitLine", "hasSameFactoring", "label", "matchesPattern", "matrix", "latex", "a|9|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|1A|1B|1C|1D|1E|1F|1G|1H|1I|1J|1K|1L|1M|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|1Y|1Z|1a|1b|1c|1d|1e|1f|1g|1h|1i|1j|1k|1l|1m|1n|1o|1p|1q|1r|1s|1t|1u|1v|1w|1x|1y|1z|20|21|22|23|24|25|26|27|28|29|2A|2B|2C|2D|2E|2F|2G|2H|2I|2J", "a|2", "o|2L|2", "copySource", "o|2L|2N", "values", "a|2|2P", "hide", "true", "false", "a|2S|2T", "o|2Q|2R|2U", "disabled", "o|2Q|2W|2U", "fixed", "o|2Q|2Y|2U", "fixLocation", "o|2Q|2a|2U", "styleNumber", "o|2L|2c", "isResponse", "o|2Q|2e|2U", "newNamespace", "o|2Q|2g|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h", "type", "isArray", "a|2|2j|2k", "b|F", "o|2l|2R|1N|2m", "modifyIndirectly", "o|2l|2o|1N|2m", "o|2l|2c|1f|2m", "o|2l|2e|1N|2m", "o|2l|2g|1N|2m", "permid", "o|2l|2t|1M|2m", "hidden", "o|2l|2v|1N|2m", "o|2l|2W|1N|2m", "o|2l|2Y|1N|2m", "o|2l|2a|1N|2m", "doenetML", "o|2l|30|1M|2m", "value", "o|2l|32|9|2m", "o|2l|1M|1M|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|33|34", "b|T", "o|8|9|2K|2i|35|36|36", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|1B|1C|1D|1E|1F|1G|1H|1L|1M|1O|1R|1S|1T|1V|1W|1Z|1d|1e|1f|1g|1h|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|28|2C|2E|2I|2J|F|G|H|K", "format", "a|1M|2J", "o|2Q|39|3A", "simplify", "none", "full", "numbers", "numberspreserveorder", "a|3D|3E|3F|3G", "o|2Q|3C|3H", "expand", "o|2Q|3J|2U", "displayDigits", "o|2L|3L", "displayDecimals", "o|2L|3N", "displaySmallAsZero", "o|2L|3P", "padZeros", "o|2Q|3R|2U", "renderMode", "o|2L|3T", "unordered", "o|2Q|3V|2U", "createVectors", "o|2Q|3X|2U", "createIntervals", "o|2Q|3Z|2U", "functionSymbols", "o|2L|3b", "sourcesAreFunctionSymbols", "o|2L|3d", "splitSymbols", "o|2Q|3f|2U", "parseScientificNotation", "o|2Q|3h|2U", "displayBlanks", "o|2Q|3j|2U", "draggable", "o|2Q|3l|2U", "layer", "o|2L|3n", "anchor", "o|2L|3p", "positionFromAnchor", "upperright", "upperleft", "lowerright", "lowerleft", "bottom", "left", "right", "center", "a|3s|3t|3u|3v|6|3w|3x|3y|3z", "o|2Q|3r|40", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|41", "o|2l|39|1M|2m", "o|2l|3C|1M|2m", "o|2l|3J|1N|2m", "o|2l|3T|1M|2m", "o|2l|3X|1N|2m", "o|2l|3Z|1N|2m", "textList", "o|2l|3b|49|2m", "o|2l|3f|1N|2m", "o|2l|3h|1N|2m", "o|2l|3j|1N|2m", "o|2l|3l|1N|2m", "o|2l|3n|1e|2m", "o|2l|3r|1M|2m", "textColor", "o|2l|4H|1M|2m", "backgroundColor", "o|2l|4J|1M|2m", "textStyleDescription", "o|2l|4L|1M|2m", "o|2l|3p|1R|2m", "o|2l|3L|1f|2m", "o|2l|3N|1f|2m", "o|2l|3P|1e|2m", "o|2l|3R|1N|2m", "o|2l|3V|1N|2m", "o|2l|32|A|2m", "o|2l|1e|1e|2m", "o|2l|Q|1N|2m", "isNumeric", "o|2l|4W|1N|2m", "o|2l|2J|2J|2m", "numDimensions", "o|2l|4Z|1f|2m", "indexedArrayDescription", "a|2|2j|2k|4Z|4b", "n|1", "a|2k|2j", "o|4e|2m|1V", "a|4f", "o|4c|1V|1O|36|4d|4g", "list", "a|2k|2j|4Z", "o|4j|36|1O|4d", "a|4k", "o|4c|4i|1O|36|4d|4l", "matrixSize", "numberList", "o|2l|4n|4o|2m", "numRows", "o|2l|4q|1f|2m", "numColumns", "o|2l|4s|1f|2m", "n|2", "o|4e|2m|2I", "a|4v|4v", "o|4c|2I|1O|36|4u|4w", "x", "o|2l|4y|1O|2m", "y", "o|2l|50|1O|2m", "z", "o|2l|52|1O|2m", "numListItems", "o|2l|54|1f|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|4T|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|A|38|42|56|36|36", "o|2l|32|B|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|58|34", "o|8|B|2K|2i|59|36|36", "else", "statement", "introduction", "conclusion", "section", "subsection", "subsubsection", "paragraphs", "aside", "objectives", "problem", "exercise", "question", "activity", "example", "definition", "note", "theorem", "proof", "problems", "exercises", "ol", "ul", "cobwebPolyline", "equilibriumCurve", "orbitalDiagram", "orbitalDiagramInput", "sideBySide", "sbsGroup", "stack", "div", "pre", "paginator", "paginatorControls", "solution", "document", "p", "booleanList", "mathList", "tupleList", "lineSegment", "ray", "polyline", "polygon", "triangle", "rectangle", "regularPolygon", "circle", "parabola", "curve", "controlVectors", "award", "graph", "slider", "spreadsheet", "row", "column", "cellBlock", "tabular", "table", "figure", "markers", "pegboard", "variantControl", "animateFromSequence", "image", "video", "hint", "feedback", "setup", "caption", "subsetOfRealsInput", "regionBetweenCurveXAxis", "regionBetweenCurves", "regionHalfPlane", "codeEditor", "codeViewer", "dataFrame", "summaryStatistics", "legend", "eigenDecomposition", "blockQuote", "contentPicker", "stickyGroup", "a|9|A|B|C|D|5C|5D|5E|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|1A|5Y|1B|1C|5Z|1D|1E|1F|1G|5a|5b|5c|5d|5e|1H|1I|5f|1J|5g|1K|5h|5i|1L|5j|5k|1M|49|5l|1N|5m|1O|5n|5o|4o|1P|1Q|1R|1S|1T|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|1U|5z|1V|1W|1X|60|1Y|1Z|1a|1b|1c|1d|1e|1f|61|1g|1h|1i|1j|62|63|1k|64|65|66|67|68|69|6A|1l|6B|1m|1n|1o|6C|1p|1q|1r|6D|1s|1t|1u|1v|1w|1x|1y|6E|6F|6G|1z|20|6H|21|22|23|24|25|26|6I|27|6J|28|29|2A|2B|6K|2C|2D|2E|6L|6M|6N|6O|6P|2F|6Q|6R|6S|2G|2H|2I|6T|2J|6U|6V|6W", "assignNames", "o|2L|6Y", "o|2L|2e", "rendered", "o|2Q|6b|2U", "createComponentOfType", "o|2L|6d", "numComponents", "o|2L|6f", "o|2Q|1o|2U", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|6a|2h|6c|6e|6g|6h", "o|2l|6b|1N|2m", "a|2n|2p|2q|2s|2u|6j|2w|2x|2y|2z|31", "o|8|5B|6X|6i|6k|2m|36", "forObject", "o|2L|6m", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|6n|3m|3o|3q|41", "hasLatex", "o|2l|6p|1N|2m", "o|2l|32|C|2m", "a|2n|2p|2q|2r|2s|2u|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|6q|34|4Y|6r", "o|8|C|2K|6o|6s|36|36", "o|2l|32|D|2m", "a|2n|2p|2q|2r|2s|2u|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|6q|34|4Y|6u", "o|8|D|2K|6o|6v|36|36", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31", "o|8|5C|6X|2i|6x|36|36", "o|8|5D|6X|2i|6x|36|36", "o|8|5E|6X|2i|6x|36|36", "a|A|C|D|E|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|r|1D|1E|1G|1H|1M|1N|1O|1S|1Y|1d|1e|1f|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|2C|2F|2G|2H|2I|2J|12|13|14|15|16|17|18|19|s|t|u|v|w|x|y|z|10|11", "isLatex", "o|2Q|72|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3m|3o|73|3q|41", "o|2l|72|1N|2m", "o|2l|32|E|2m", "o|2l|1O|1O|2m", "numWords", "o|2l|78|1f|2m", "words", "o|4j|36|1M|4d", "a|7B", "o|4c|7A|1M|36|4d|7C", "numCharacters", "o|2l|7E|1f|2m", "characters", "o|4c|7G|1M|36|4d|7C", "o|4c|4i|1M|36|4d|7C", "a|2n|2p|2q|2r|2s|2u|4E|4F|75|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|76|34|77|4U|79|7D|7F|7H|55|7I", "o|8|E|71|74|7J|36|36", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3m|3o|3q|41", "a|2n|2p|2q|2r|2s|2u|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4Y|34", "o|8|F|2K|7L|7M|36|36", "o|8|G|2K|7L|7M|36|36", "equationTag", "o|2l|7P|1M|2m", "a|2n|2p|2q|2r|2s|2u|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4Y|34|7Q", "o|8|H|2K|7L|7R|36|36", "a|K", "o|8|I|7T|7L|7M|36|2m", "o|8|J|7T|7L|7M|36|2m", "o|2Q|1e|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3m|3o|3q|41|7W", "o|8|K|2K|7X|7R|36|36", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|1B|1C|1D|1E|1F|1G|1H|1L|1M|1O|1R|1S|1T|1V|1W|1Z|1d|1e|1f|1g|1h|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|28|2C|2E|2I|2J|C|D|L|M|N|O|P|Q|R|1N|1Y|2F|2G|2H|1b|5a", "symbolicEquality", "o|2Q|7a|2U", "expandOnCompare", "o|2Q|7c|2U", "simplifyOnCompare", "o|2Q|7e|3H", "unorderedCompare", "o|2Q|7g|2U", "matchByExactPositions", "o|2Q|7i|2U", "allowedErrorInNumbers", "o|2L|7k", "includeErrorInNumberExponents", "o|2Q|7m|2U", "allowedErrorIsAbsolute", "o|2Q|7o|2U", "numSignErrorsMatched", "o|2L|7q", "numPeriodicSetMatchesRequired", "o|2L|7s", "caseInsensitiveMatch", "o|2Q|7u|2U", "matchBlanks", "o|2Q|7w|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|7b|7d|7f|7h|7j|7l|7n|7p|7r|7t|7v|7x", "o|2l|7a|1N|2m", "o|2l|7c|1N|2m", "o|2l|7e|1M|2m", "o|2l|7g|1N|2m", "o|2l|7i|1N|2m", "o|2l|7k|1e|2m", "o|2l|7m|1N|2m", "o|2l|7o|1N|2m", "o|2l|7q|1e|2m", "o|2l|7s|1f|2m", "o|2l|7u|1N|2m", "o|2l|7w|1N|2m", "valuePreOperator", "o|2l|8B|L|2m", "o|2l|32|1N|2m", "a|2n|2p|2q|2r|2s|2u|7z|80|81|82|83|84|85|86|87|88|89|8A|2w|2x|2y|2z|31|34|8C|8D", "o|8|L|7Z|7y|8E|36|36", "a|L|M|N|O|P|Q|R|1N|1b|2F|2H", "a|2n|2p|2q|2r|2s|2u|7z|80|81|82|83|84|85|86|87|88|89|8A|2w|2x|2y|2z|31|8D|34", "o|8|M|8G|7y|8H|36|36", "o|8|N|8G|7y|8H|36|36", "o|8|O|8G|7y|8H|36|36", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|1B|1C|1D|1E|1F|1G|1H|1L|1M|1O|1R|1S|1T|1V|1W|1Z|1d|1e|1f|1g|1h|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|28|2C|2E|2I|2J", "o|8|P|8L|7y|8H|36|36", "o|8|Q|8L|7y|8H|36|36", "limits", "o|2L|8O", "strict", "o|2Q|8Q|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|7b|7d|7f|7h|7j|7l|7n|7p|7r|7t|7v|7x|8P|8R", "o|2l|8O|4o|2m", "o|2l|8Q|1N|2m", "a|2n|2p|2q|2r|2s|2u|7z|80|81|82|83|84|85|86|87|88|89|8A|8T|8U|2w|2x|2y|2z|31|8D|34", "o|8|R|8L|8S|8V|36|36", "forceSymbolic", "o|2Q|8X|2U", "forceNumeric", "o|2Q|8Z|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|41|8Y|8a", "o|2l|8X|1N|2m", "o|2l|8Z|1N|2m", "o|2l|32|S|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8c|8d|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|8e|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|S|8L|8b|8f|36|36", "o|2l|32|T|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8c|8d|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|8h|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|T|8L|8b|8i|36|36", "lowerValue", "o|2L|8k", "upperValue", "o|2L|8m", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|41|8l|8n", "o|2l|8k|1e|2m", "o|2l|8m|1e|2m", "o|2l|32|U|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8p|8q|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|8r|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|U|38|8o|8s|36|36", "o|2l|32|V|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8p|8q|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|8u|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|V|38|8o|8v|36|36", "numDecimals", "o|2L|8x", "numDigits", "o|2L|8z", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|41|8y|90", "o|2l|8x|1e|2m", "o|2l|8z|1e|2m", "o|2l|32|W|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|92|93|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|94|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|W|38|91|95|36|36", "threshold", "o|2L|97", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|41|98", "o|2l|97|1e|2m", "o|2l|32|X|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|9A|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9B|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|X|38|99|9C|36|36", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|41", "o|2l|32|Y|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|9F|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|Y|38|9E|9G|36|36", "o|2l|32|Z|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9I|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|Z|38|42|9J|36|36", "o|2l|32|a|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9L|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|a|38|42|9M|36|36", "o|2l|32|b|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9O|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|b|38|42|9P|36|36", "o|2l|32|c|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9R|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|c|38|42|9S|36|36", "o|2l|32|d|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8c|8d|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9U|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|d|8L|8b|9V|36|36", "o|2l|32|e|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8c|8d|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9X|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|e|8L|8b|9Y|36|36", "population", "o|2Q|9a|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|41|8Y|8a|9b", "o|2l|9a|1N|2m", "o|2l|32|f|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8c|8d|9d|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9e|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|f|8L|9c|9f|36|36", "o|2l|32|g|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8c|8d|9d|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9h|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|g|8L|9c|9i|36|36", "o|2l|32|h|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8c|8d|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9k|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|h|8L|8b|9l|36|36", "o|2l|32|i|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8c|8d|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9n|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|i|8L|8b|9o|36|36", "o|2l|32|j|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8c|8d|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9q|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|j|8L|8b|9r|36|36", "o|2l|32|k|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8c|8d|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9t|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|k|8L|8b|9u|36|36", "o|2l|32|l|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8c|8d|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9w|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|l|8L|8b|9x|36|36", "o|2l|32|m|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|8c|8d|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|9z|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|m|8L|8b|A0|36|36", "operand", "functionargument", "numoperands", "a|A2|1g|A3|A4", "o|2Q|2j|A5", "operandNumber", "o|2L|A7", "argumentNumber", "o|2L|A9", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|41|A6|A8|AA", "o|2l|A7|1e|2m", "o|2l|A9|1e|2m", "o|2l|32|n|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|AC|AD|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|AE|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|n|38|AB|AF|36|36", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|1B|1C|1D|1E|1F|1G|1H|1L|1M|1O|1R|1S|1T|1V|1W|1Z|1d|1e|1f|1g|1h|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|28|2C|2E|2I|2J|C|D|2G", "xscale", "o|2L|AI", "yscale", "o|2L|AK", "numInputs", "o|2L|AM", "numOutputs", "o|2L|AO", "domain", "o|2L|AQ", "labelIsName", "o|2Q|AS|2U", "applyStyleToLabel", "o|2Q|AU|2U", "labelPosition", "a|3s|3t|3u|3v|6|3w|3x|3y", "o|2Q|AW|AX", "minima", "o|2L|AZ", "maxima", "o|2L|Ab", "extrema", "o|2L|Ad", "through", "o|2L|Af", "throughSlopes", "o|2L|Ah", "variables", "o|2L|Aj", "variable", "o|2L|Al", "symbolic", "o|2Q|An|2U", "nearestPointAsCurve", "o|2Q|Ap|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3I|3K|AJ|AL|AN|AP|AR|AT|AV|AY|3o|Aa|Ac|Ae|Ag|Ai|Ak|Am|Ao|3M|3O|3Q|3S|Aq|8l|8n", "expandSpecified", "o|2l|As|1N|2m", "o|2l|AI|1e|2m", "o|2l|AK|1e|2m", "o|2l|AS|1N|2m", "o|2l|AU|1N|2m", "o|2l|AW|1M|2m", "o|2l|2G|2G|2m", "styleDescription", "o|2l|B0|1M|2m", "styleDescriptionWithNoun", "o|2l|B2|1M|2m", "o|2l|AM|1f|2m", "o|2l|AO|1f|2m", "o|4j|36|1i|4d", "a|B6", "o|4c|AQ|1i|36|4d|B7", "o|2l|3J|1M|2m", "o|2l|An|1N|2m", "_variableName", "o|4j|36|BB|4d", "a|BC", "o|4c|Aj|BB|36|4d|BD", "formula", "o|2l|BF|1O|2m", "numMinima", "o|2l|BH|1e|2m", "o|4j|36|1R|4d", "o|4e|2m|1R", "a|BJ|BK", "o|4c|AZ|1e|36|4u|BL", "globalMinimum", "a|BK", "o|4c|BN|1e|36|4d|BO", "globalInfimum", "o|4c|BQ|1e|36|4d|BO", "numMaxima", "o|2l|BS|1e|2m", "o|4c|Ab|1e|36|4u|BL", "globalMaximum", "o|4c|BV|1e|36|4d|BO", "globalSupremum", "o|4c|BX|1e|36|4d|BO", "numExtrema", "o|2l|BZ|1e|2m", "o|4c|Ad|1e|36|4u|BL", "o|2l|Al|BB|2m", "a|2n|2p|2q|2r|2s|2u|At|Au|Av|Aw|Ax|Ay|4F|8p|8q|2w|2x|2y|2z|31|Az|4I|4K|4M|B1|B3|4O|4P|4Q|4R|B4|B5|B8|44|B9|BA|BE|BG|4Y|BI|BM|BP|BR|BT|BU|BW|BY|Ba|Bb|Bc", "o|8|o|AH|Ar|Bd|36|36", "o|8|p|AH|Ar|Bd|36|36", "derivVariables", "o|2L|Bg", "derivVariable", "o|2L|Bi", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3I|3K|AJ|AL|AN|AP|AR|AT|AV|AY|3o|Aa|Ac|Ae|Ag|Ai|Ak|Am|Ao|3M|3O|3Q|3S|Aq|Bh|Bj", "numDerivatives", "o|2l|Bl|1f|2m", "o|4c|Bg|BB|36|4d|BD", "a|2n|2p|2q|2r|2s|2u|At|Au|Av|Aw|Ax|Ay|4F|2w|2x|2y|2z|31|Az|4I|4K|4M|B1|B3|4O|4P|4Q|4R|B4|B5|B8|44|B9|BA|BE|BG|4Y|BI|BM|BP|BR|BT|BU|BW|BY|Ba|Bb|Bm|Bn|Bc", "o|8|q|AH|Bk|Bo|36|36", "o|2l|32|1M|2m", "a|2n|2p|2q|2r|2s|2u|4E|4F|75|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|Bq|34|77|4U|79|7D|7F|7H|55|7I", "o|8|r|8L|74|Br|36|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|34", "o|8|s|2K|2i|Bt|36|36", "o|8|t|2K|2i|Bt|36|36", "o|8|u|2K|2i|Bt|36|36", "o|8|v|2K|2i|Bt|36|36", "o|8|w|2K|2i|Bt|36|36", "o|8|x|2K|2i|Bt|36|36", "o|8|y|2K|2i|Bt|36|36", "o|8|z|2K|2i|Bt|36|36", "o|8|10|2K|2i|Bt|36|36", "o|8|11|2K|2i|Bt|36|36", "a|", "o|8|12|C4|2i|Bt|36|2m", "o|8|13|C4|2i|Bt|36|2m", "o|8|14|C4|2i|Bt|36|2m", "o|8|15|C4|2i|Bt|36|2m", "o|8|16|C4|2i|Bt|36|2m", "o|8|17|C4|2i|Bt|36|2m", "o|8|18|C4|2i|Bt|36|2m", "o|8|19|C4|2i|Bt|36|2m", "a|6C|9|6I|A|B|C|D|5C|5D|5E|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|1A|5Y|1B|1C|5Z|1D|1E|1F|1G|5a|5b|5c|5d|5e|1H|1I|5f|1J|5g|1K|5h|5i|1L|5j|5k|1M|49|5l|1N|5m|1O|5n|5o|4o|1P|1Q|1R|1S|1T|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|1U|5z|1V|1W|1X|60|1Y|1Z|1a|1b|1c|1d|1e|1f|61|1g|1h|1i|1j|62|63|1k|64|65|66|67|68|69|6A|1l|6B|1m|1n|1o|1p|1q|1r|6D|1s|1t|1u|1v|1w|1x|1y|6E|6F|6G|1z|20|6H|21|22|23|24|25|26|27|6J|28|29|2A|2B|6K|2C|2D|2E|6L|6M|6N|6O|6P|2F|6Q|6R|6S|2G|2H|2I|6T|2J|6U|6V|6W", "aggregateScores", "o|2Q|CE|2U", "weight", "o|2L|CG", "sectionWideCheckWork", "o|2Q|CI|2U", "submitLabel", "o|2L|CK", "submitLabelNoCorrectness", "o|2L|CM", "displayDigitsForCreditAchieved", "o|2L|CO", "boxed", "o|2Q|CQ|2U", "includeAutoName", "o|2Q|CS|2U", "includeAutoNumber", "o|2Q|CU|2U", "includeAutoNameIfNoTitle", "o|2Q|CW|2U", "includeAutoNumberIfNoTitle", "o|2Q|CY|2U", "level", "o|2L|Ca", "includeParentNumber", "o|2Q|Cc|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|CF|CH|CJ|CL|CN|CP|CR|CT|CV|CX|CZ|6h|Cb|Cd", "o|2l|CE|1N|2m", "o|2l|CG|1e|2m", "o|2l|CI|1N|2m", "o|2l|CK|1M|2m", "o|2l|CM|1M|2m", "o|2l|CO|1f|2m", "o|2l|CQ|1N|2m", "o|2l|CS|1N|2m", "o|2l|CU|1N|2m", "o|2l|CW|1N|2m", "o|2l|CY|1N|2m", "o|2l|1o|1N|2m", "o|2l|Cc|1N|2m", "sectionNumber", "o|2l|Cs|1M|2m", "o|2l|9|1M|2m", "creditAchieved", "o|2l|Cv|1e|2m", "percentCreditAchieved", "o|2l|Cx|1e|2m", "open", "o|2l|Cz|1N|2m", "a|2n|2p|2q|2r|2s|2u|Cf|Cg|Ch|Ci|Cj|Ck|Cl|Cm|Cn|Co|Cp|Cq|Cr|2w|2x|2y|2z|31|Ct|Cu|Cw|Cy|D0", "o|8|5F|CD|Ce|D1|36|36", "o|8|5G|CD|Ce|D1|36|36", "o|8|5H|CD|Ce|D1|36|36", "o|8|5I|CD|Ce|D1|36|36", "collapsible", "o|2Q|D6|2U", "startOpen", "o|2Q|D8|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|CF|CH|CJ|CL|CN|CP|CR|CT|CV|CX|CZ|6h|Cb|Cd|D7|D9", "o|2l|D6|1N|2m", "a|2n|2p|2q|2r|2s|2u|Cf|Cg|Ch|Ci|Cj|Ck|Cl|Cm|Cn|Co|Cp|Cq|Cr|DB|2w|2x|2y|2z|31|Ct|Cu|Cw|Cy|D0", "o|8|5J|CD|DA|DC|36|36", "o|8|5K|CD|Ce|D1|36|36", "o|8|5L|CD|Ce|D1|36|36", "o|8|5M|CD|Ce|D1|36|36", "o|8|5N|CD|Ce|D1|36|36", "o|8|5O|CD|Ce|D1|36|36", "o|8|5P|CD|Ce|D1|36|36", "o|8|5Q|CD|Ce|D1|36|36", "o|8|5R|CD|Ce|D1|36|36", "o|8|5S|CD|Ce|D1|36|36", "renameTo", "o|2L|DN", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|CF|CH|CJ|CL|CN|CP|CR|CT|CV|CX|CZ|6h|Cb|DO|D7|D9", "a|2n|2p|2q|2r|2s|2u|Cf|Cg|Ch|Ci|Cj|Ck|Cl|Cm|Cn|Co|Cp|Cq|DB|2w|2x|2y|2z|31|Ct|Cu|Cw|Cy|D0", "o|8|5T|CD|DP|DQ|36|36", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|CF|CH|CJ|CL|CN|CP|CR|CT|CV|CX|CZ|6h|Cb|DO", "a|2n|2p|2q|2r|2s|2u|Cf|Cg|Ch|Ci|Cj|Ck|Cl|Cm|Cn|Co|Cp|Cq|2w|2x|2y|2z|31|Ct|Cu|Cw|Cy|D0", "o|8|5U|CD|DS|DT|36|36", "o|8|5V|CD|DS|DT|36|36", "li", "a|DW", "o|2L|2G", "marker", "o|2L|DZ", "cols", "o|2L|Db", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|DY|Cb|Da|Dc", "o|2l|2G|1M|2m", "a|2n|2p|2q|2r|2s|2u|De|2w|2x|2y|2z|31", "o|8|5W|DX|Dd|Df|36|2m", "o|8|5X|DX|Dd|Df|36|2m", "o|8|DW|6X|2i|Bt|2m|36", "a|A", "independentVariable", "o|2L|Dk", "initialIndependentVariableValue", "o|2L|Dm", "chunkSize", "o|2L|Do", "tolerance", "o|2L|Dq", "maxIterations", "o|2L|Ds", "hideInitialCondition", "o|2Q|Du|2U", "initialConditions", "o|2L|Dw", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Dl|Dn|3M|3O|3Q|3S|3U|Dp|Dr|Dt|Dv|Dx|Ak|7W", "o|2l|Dk|BB|2m", "o|2l|Dm|1O|2m", "o|2l|Do|1e|2m", "o|2l|Dq|1e|2m", "o|2l|Ds|1e|2m", "o|2l|Du|1N|2m", "o|2l|1e|1N|2m", "rhss", "o|4c|E6|1O|36|4d|4l", "o|4c|Dw|1O|36|4d|4l", "numericalSolutions", "o|4j|36|1g|4d", "a|EA", "o|4c|E9|1g|36|4d|EB", "rhs", "o|2l|ED|1O|2m", "righthandside", "o|2l|EF|1O|2m", "righthandsides", "o|4c|EH|1O|36|4d|4l", "initialCondition", "o|2l|EJ|1O|2m", "numericalSolution", "o|2l|EL|1g|2m", "a|2n|2p|2q|2r|2s|2u|Dz|E0|46|E1|E2|E3|E4|E5|2w|2x|2y|2z|31|4O|4P|4Q|4R|4I|4K|4M|BE|E7|E8|7Q|4Y|EC|EE|EG|EI|EK|EM", "o|8|1A|Dj|Dy|EN|36|2m", "a|C|D|2G", "verticesDraggable", "o|2Q|EQ|2U", "vertices", "o|2L|ES", "showCoordsWhenDragging", "o|2Q|EU|2U", "rigid", "o|2Q|EW|2U", "preserveSimilarity", "o|2Q|EY|2U", "rotationHandleVertices", "o|2L|Ea", "rotateAround", "centroid", "vertex", "a|Ed|Ee|1R", "o|2Q|Ec|Ef", "rotationCenter", "o|2L|Eh", "rotationVertex", "o|2L|Ej", "allowRotation", "o|2Q|El|2U", "allowTranslation", "o|2Q|En|2U", "allowDilation", "o|2Q|Ep|2U", "minShrink", "o|2L|Er", "attractThreshold", "o|2L|Et", "numPoints", "o|2L|Ev", "numIterationsRequired", "o|2L|Ex", "initialPoint", "o|2L|Ez", "o|2L|1g", "lockToSolution", "o|2Q|F2|2U", "defaultPoint", "o|2L|F4", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|ER|ET|EV|EX|EZ|Eb|Eg|Ei|Ek|Em|Eo|Eq|Es|3M|3O|3Q|3S|Eu|Ew|Am|Ey|F0|F1|F3|F5", "o|2l|3n|1f|2m", "o|2l|EU|1N|2m", "o|2l|EW|1N|2m", "o|2l|El|1N|2m", "o|2l|En|1N|2m", "o|2l|Et|1e|2m", "o|2l|Ev|1e|2m", "o|2l|Ex|1e|2m", "o|2l|EY|1N|2m", "o|2l|Ep|1N|2m", "o|2l|EQ|1N|2m", "o|2l|4Z|1e|2m", "o|4c|ES|1O|36|4u|BL", "length", "o|2l|FK|1e|2m", "o|4c|Ez|1O|36|4d|BO", "correctVertices", "o|4j|36|1N|4d", "a|FO", "o|4c|FN|1N|36|4d|FP", "fractionCorrectVertices", "o|2l|FR|1e|2m", "numGradedVertices", "o|2l|FT|1e|2m", "numCorrectVertices", "o|2l|FV|1e|2m", "fractionCorrectVerticesAdjusted", "o|2l|FX|1e|2m", "numGradedVerticesAdjusted", "o|2l|FZ|1e|2m", "numIterateValues", "o|2l|Fb|1e|2m", "iterateValues", "o|4c|Fd|1O|36|4d|4l", "numVertices", "o|2l|Ff|1e|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|F8|F9|FA|FB|FC|FD|Bc|FE|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|B1|B3|FF|FG|FH|FI|FJ|FL|FM|FQ|FS|FU|FW|FY|Fa|Fc|Fe|Fg", "o|8|5Y|EP|F6|Fh|36|2m", "constraints", "a|C|D|2G|A|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|1B|1G|1O|1R|1S|1V|1i|1j|1p|1s|1x|1y|28|2C|2I|Fj|E|r|1H|1M|1e|1f|1k|1t|1u|1v|1w|1z|20|21|2J|o|p|q|1C|1D|1E|1F|1L|1T|1W|1Z|1d|1g|1h|2E", "o|2L|4y", "o|2L|50", "o|2L|52", "xs", "o|2L|Fo", "o|2L|1S", "hideOffGraphIndicator", "o|2Q|Fr|2U", "stable", "o|2Q|Ft|2U", "switchable", "o|2Q|Fv|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|Fl|Fm|Fn|Fp|Fq|3M|3O|3Q|3S|AY|EV|Fs|Fu|Fw", "o|2l|Ft|1N|2m", "o|2l|Fv|1N|2m", "o|2l|Fr|1N|2m", "o|4c|Fo|1O|36|4d|4l", "o|2l|1S|1S|2m", "constraintUsed", "o|2l|G3|1N|2m", "numDimensionsForConstraints", "o|2l|G5|1e|2m", "o|2l|32|1S|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|Ay|F8|Fy|Fz|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|4I|4K|4M|B1|B3|G0|FI|G1|G2|4Y|G4|G6|4z|51|53|G7", "o|8|1B|Fk|Fx|G8|36|36", "a|C|D|2G|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|1B|1C|1D|1E|1F|1G|1H|1L|1M|1O|1R|1S|1T|1V|1W|1Z|1d|1e|1f|1g|1h|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|28|2C|2E|2I|2J", "equation", "o|2L|GB", "slope", "o|2L|GD", "perpendicularTo", "o|2L|GF", "parallelTo", "o|2L|GH", "a|3s|3t|3u|3v", "o|2Q|AW|GJ", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|GC|Ag|GE|GG|GI|Ak|3M|3O|3Q|3S|GK|Fu|Fw", "points", "o|4c|GM|1O|36|4u|BL", "o|2l|GB|1O|2m", "coeff0", "o|2l|GP|1O|2m", "coeffvar1", "o|2l|GR|1O|2m", "coeffvar2", "o|2l|GT|1O|2m", "o|2l|GD|1O|2m", "xintercept", "o|2l|GW|1O|2m", "yintercept", "o|2l|GY|1O|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|Ay|Fy|Fz|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|4I|4K|4M|B1|B3|FI|BE|GN|GO|GQ|GS|GU|GV|GX|GZ|4Y", "o|8|1C|GA|GL|Ga|36|36", "a|C|D|2G|o|p|q|1g|1h|1U|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|r|1B|1C|1D|1E|1F|1G|1H|1L|1M|1O|1R|1S|1T|1V|1W|1Z|1d|1e|1f|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|28|2C|2E|2I|2J", "flipFunction", "o|2Q|Gd|2U", "numDiscretizationPoints", "o|2L|Gf", "periodic", "o|2Q|Gh|2U", "splineTension", "o|2L|Gj", "extrapolateBackward", "o|2Q|Gl|2U", "extrapolateForward", "o|2Q|Gn|2U", "splineForm", "centripetal", "uniform", "a|Gq|Gr", "o|2Q|Gp|Gs", "parMin", "o|2L|Gu", "parMax", "o|2L|Gw", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|AY|Ge|Gg|Gi|Gk|Gm|Go|Gt|Am|Ag|Gv|Gx|EV|Aq|3M|3O|3Q|3S|Fu|Fw", "o|2l|Gd|1N|2m", "o|2l|Gf|1e|2m", "o|2l|Gh|1N|2m", "o|2l|Gj|1e|2m", "o|2l|Gl|1N|2m", "o|2l|Gn|1N|2m", "o|2l|Gp|1M|2m", "o|2l|Gw|1e|2m", "o|2l|Gu|1e|2m", "throughPoints", "o|4c|H8|1O|36|4u|BL", "vectorControlDirections", "o|4c|HA|1M|36|4d|7C", "hiddenControls", "o|4c|HC|1N|36|4d|FP", "n|3", "o|4j|36|1V|4u", "o|4j|36|1V|4d", "a|HF|HG|4f", "o|4c|5z|1O|36|HE|HH", "controlPoints", "o|4j|36|1R|4u", "a|HK|BJ|BK", "o|4c|HJ|1O|36|HE|HL", "extrapolateBackwardMode", "o|2l|HN|1M|2m", "extrapolateForwardMode", "o|2l|HP|1M|2m", "fs", "o|4c|HR|1g|36|4d|EB", "numXCriticalPoints", "o|2l|HT|1f|2m", "xCriticalPoints", "o|4c|HV|1e|36|4u|BL", "numYCriticalPoints", "o|2l|HX|1f|2m", "yCriticalPoints", "o|4c|HZ|1e|36|4u|BL", "numCurvatureChangePoints", "o|2l|Hb|1f|2m", "curvatureChangePoints", "o|4c|Hd|1e|36|4u|BL", "f", "o|2l|Hf|1g|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|Ay|Gz|H0|H1|H2|H3|H4|H5|F8|Fy|Fz|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|B1|B3|H6|H7|FI|H9|HB|HD|HI|HM|HO|HQ|HS|HU|HW|HY|Ha|Hc|He|Hg", "o|8|5Z|Gc|Gy|Hh|36|36", "symbol", "o|2L|Hj", "atomicNumber", "o|2L|Hl", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Hk|Hm|3M|3O|3Q|3S", "o|2l|Hl|1f|2m", "o|2l|Hj|1M|2m", "o|2l|2|1M|2m", "o|2l|1r|1f|2m", "atomicMass", "o|2l|Hs|1e|2m", "phaseAtSTP", "o|2l|Hu|1M|2m", "chargeOfCommonIon", "o|2l|Hw|1f|2m", "metalCategory", "o|2l|Hy|1M|2m", "groupName", "o|2l|I0|1M|2m", "period", "o|2l|I2|1f|2m", "ionizationEnergy", "o|2l|I4|1e|2m", "meltingPoint", "o|2l|I6|1e|2m", "boilingPoint", "o|2l|I8|1e|2m", "atomicRadius", "o|2l|IA|1f|2m", "density", "o|2l|IC|1e|2m", "electronegativity", "o|2l|IE|1e|2m", "o|2l|1G|1G|2m", "o|2l|5a|5a|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|4O|4P|4Q|4R|4I|4K|4M|Ho|Hp|Hq|Hr|Ht|Hv|Hx|Hz|I1|I3|I5|I7|I9|IB|ID|IF|IG|IH|77|4Y", "o|8|1D|C4|Hn|II|36|2m", "a|1D", "charge", "o|2L|IL", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Hk|Hm|IM", "o|2l|IL|1f|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|4I|4K|4M|Ho|Hp|IO|Hq|Hr|Hz|I1|I3|77|4Y", "o|8|1E|IK|IN|IP|36|2m", "a|1D|1E", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|4I|4K|4M|77|4Y", "o|8|1F|IR|IN|IS|36|2m", "o|2l|32|1G|2m", "o|2l|2J|1M|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|IU|4U|4V|4X|IV|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|1G|38|42|IW|36|36", "a|5o|5a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|1B|1C|1D|1E|1F|1G|1H|1L|1M|1O|1R|1S|1T|1V|1W|1Z|1d|1e|1f|1g|1h|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|28|2C|2E|2I|2J", "labels", "o|2L|IZ", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Ia", "o|2l|32|5a|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|Ic", "o|8|5a|IY|Ib|Id|36|36", "prefill", "o|2L|If", "prefillLabel", "o|2L|Ih", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Ig|Ii", "rows", "o|2l|Ik|5a|2m", "selectedRowIndex", "o|2l|Im|1f|2m", "selectedBoxIndex", "o|2l|Io|1f|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|Ic|Il|4r|In|Ip", "o|8|5b|C4|Ij|Iq|36|2m", "feedbackDefinition", "code", "o|2L|It", "o|2L|1M", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Iu|Iv", "o|8|Is|C4|Iw|6x|2m|2m", "feedbackDefinitions", "a|Is", "o|8|Iy|Iz|2i|6x|2m|2m", "styleDefinition", "lineColor", "o|2L|J2", "lineColorWord", "o|2L|J4", "lineColorDarkMode", "o|2L|J6", "lineColorWordDarkMode", "o|2L|J8", "lineOpacity", "o|2L|JA", "lineWidth", "o|2L|JC", "lineWidthWord", "o|2L|JE", "lineStyle", "o|2L|JG", "lineStyleWord", "o|2L|JI", "markerColor", "o|2L|JK", "markerColorWord", "o|2L|JM", "markerColorDarkMode", "o|2L|JO", "markerColorWordDarkMode", "o|2L|JQ", "markerOpacity", "o|2L|JS", "markerStyle", "o|2L|JU", "markerStyleWord", "o|2L|JW", "markerSize", "o|2L|JY", "fillColor", "o|2L|Ja", "fillColorWord", "o|2L|Jc", "fillColorDarkMode", "o|2L|Je", "fillColorWordDarkMode", "o|2L|Jg", "fillOpacity", "o|2L|Ji", "o|2L|4H", "textColorWord", "o|2L|Jl", "textColorDarkMode", "o|2L|Jn", "textColorWordDarkMode", "o|2L|Jp", "o|2L|4J", "backgroundColorWord", "o|2L|Js", "backgroundColorDarkMode", "o|2L|Ju", "backgroundColorWordDarkMode", "o|2L|Jw", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|J3|J5|J7|J9|JB|JD|JF|JH|JJ|JL|JN|JP|JR|JT|JV|JX|JZ|Jb|Jd|Jf|Jh|Jj|Jk|Jm|Jo|Jq|Jr|Jt|Jv|Jx", "a|2n|2p|2r|2s|2u|2w|2x|2y|2z|31", "o|8|J1|C4|Jy|Jz|2m|2m", "styleDefinitions", "a|J1", "o|8|K1|K2|2i|6x|2m|2m", "a|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|5a|5b|5c|5d|5e|1I|5f|5g|5h|5i|5j|5l|1P|61|63|67|68|69|1l|1m|1n|1q|1r|6E|6F|6G|6H|21|26|6J|29|2A|6K|2D|6O|6P|6R|6U|6V", "width", "o|2L|K5", "widths", "o|2L|K7", "margins", "o|2L|K9", "valign", "o|2L|KB", "valigns", "o|2L|KD", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|K6|K8|KA|KC|KE", "absoluteMeasurements", "o|2l|KG|1N|2m", "gapWidth", "o|2l|KI|1e|2m", "o|4j|36|1e|4d", "a|KK", "o|4c|K7|1e|36|4d|KL", "o|4c|K9|1e|36|4d|KL", "o|4c|KD|1M|36|4d|7C", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|KH|KJ|KM|KN|KO", "o|8|5c|K4|KF|KP|36|2m", "a|5c", "o|8|5d|KR|KF|KP|36|2m", "o|8|5e|6X|2i|6x|36|36", "sortby", "o|2L|KU", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3m|3o|73|3q|41|KV", "o|2l|32|1H|2m", "a|2n|2p|2q|2r|2s|2u|4E|4F|75|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|KX|34|77|4U|79|7D|7F|7H|55|7I", "o|8|1H|71|KW|KY|36|36", "a|1H|A|C|D|E|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|r|1D|1E|1G|1M|1N|1O|1S|1Y|1d|1e|1f|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|2C|2F|2G|2H|2I|2J", "o|8|1I|Ka|2i|6x|36|36", "o|8|5f|6X|2i|6x|36|36", "o|8|1J|6X|2i|6x|36|36", "o|8|5g|6X|2i|6x|36|36", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|4I|4K|4M|34", "o|8|1K|6X|2i|Kf|36|36", "initialPage", "o|2L|Kh", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Ki", "numPages", "o|2l|Kk|1f|2m", "currentPage", "o|2l|Km|1f|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|Kl|Kn", "o|8|5h|6X|Kj|Ko|36|36", "previousLabel", "o|2L|Kq", "nextLabel", "o|2L|Ks", "pageLabel", "o|2L|Ku", "o|2L|5h", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Kr|Kt|Kv|Kw", "o|2l|Kq|1M|2m", "o|2l|Ks|1M|2m", "o|2l|Ku|1M|2m", "disabledDirectly", "o|2l|L1|1N|2m", "a|2n|2p|2q|2r|2s|2u|Ky|Kz|L0|2w|2x|2y|2z|31|L2", "o|8|5i|C4|Kx|L3|36|2m", "a|2I", "o|2L|4q", "o|2L|4s", "showSizeControls", "o|2Q|L8|2U", "defaultEntry", "o|2L|LA", "bindValueTo", "o|2L|LC", "unionFromU", "o|2Q|LE|2U", "minComponentWidth", "o|2L|LG", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|L6|L7|L9|LB|Ig|3B|3c|3g|3i|3M|3O|3Q|3S|LD|LF|LH", "collaborateGroups", "o|2l|LJ|LJ|2m", "o|2l|L8|1N|2m", "o|2l|If|1O|2m", "o|2l|LE|1N|2m", "valueChanged", "o|2l|LO|1N|2m", "immediateValueChanged", "o|2l|LQ|1N|2m", "o|2l|32|1O|2m", "immediateValue", "o|2l|LT|1O|2m", "a|2n|2p|2q|2r|2s|2u|LK|LL|LM|43|4A|4B|4C|LN|2w|2x|2y|2z|31|4O|4P|4Q|4R|LP|LR|4r|4t|LS|LU|4x", "o|8|1L|L5|LI|LV|36|2m", "a|9|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|1A|1B|1C|1D|1E|1F|1G|1H|1I|1J|1K|1L|1M|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|1Y|1Z|1a|1b|1c|1d|1e|1f|1g|1h|1i|1j|1k|1l|1m|1n|1o|1p|1q|1r|1s|1t|1u|1v|1w|1x|1y|1z|20|21|22|23|24|25|26|27|28|29|2A|2B|2C|2D|2E|2F|2G|2H|2I|2J|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|5a|5b|5c|5d|5e|5f|5g|5h|5i|5j|5l|61|63|67|68|69|6E|6F|6G|6H|6J|6K|6O|6P|6R|6U|6V", "message", "o|2l|LY|1M|2m", "a|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|2n|D0|LZ", "o|8|5j|LX|2i|La|36|36", "a|6C|9|B|6I|A|C|D|5C|5D|5E|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|1A|5Y|1B|1C|5Z|1D|1E|1F|1G|5a|5b|5c|5d|5e|1H|1I|5f|1J|5g|1K|5h|5i|1L|5j|5k|1M|49|5l|1N|5m|1O|5n|5o|4o|1P|1Q|1R|1S|1T|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|1U|5z|1V|1W|1X|60|1Y|1Z|1a|1b|1c|1d|1e|1f|61|1g|1h|1i|1j|62|63|1k|64|65|66|67|68|69|6A|1l|6B|1m|1n|1o|1p|1q|1r|6D|1s|1t|1u|1v|1w|1x|1y|6E|6F|6G|1z|20|6H|21|22|23|24|25|26|27|6J|28|29|2A|2B|6K|2C|2D|2E|6L|6M|6N|6O|6P|2F|6Q|6R|6S|2G|2H|2I|6T|2J|6U|6V|6W", "documentWideCheckWork", "o|2Q|Ld|2U", "xmlns", "o|2L|Lf", "o|2L|2j", "a|2M|2O|2b|2h|Le|CL|CN|CP|Lg|Lh", "o|2l|Ld|1N|2m", "o|2l|B|1M|2m", "a|2s|2u|Lj|Ci|Cj|Ck|2w|2x|2y|2z|31|Cu|Lk|Cw|Cy", "o|8|5k|Lc|Li|Ll|36|36", "o|8|1M|71|74|Br|36|36", "a|A|C|D|E|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|r|1D|1E|1G|1H|1M|1N|1O|1S|1Y|1d|1e|1f|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|2C|2F|2G|2H|2I|2J", "o|2L|2Y", "maxNumber", "o|2L|Lq", "a|2M|2O|6Z|2V|2X|Lp|2b|2d|6a|2h|3W|Lr", "o|2l|Lq|1e|2m", "o|2l|6f|1e|2m", "numValues", "o|2l|Lv|1e|2m", "a|2n|2p|2q|2s|2u|4S|Lt|2w|2x|2y|2z|31|Lu|Lw", "o|8|49|Lo|Ls|Lx|36|36", "a|9|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|1A|1B|1C|1D|1E|1F|1G|1H|1I|1J|1K|1L|1M|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|1Y|1Z|1a|1b|1c|1d|1e|1f|1g|1h|1i|1j|1k|1l|1m|1n|1o|1p|1q|1r|1s|1t|1u|1v|1w|1x|1y|1z|20|21|22|23|24|25|26|27|28|29|2A|2B|2C|2D|2E|2F|2G|2H|2I|2J|5W|5X", "o|8|5l|Lz|2i|Bt|36|36", "o|8|1N|7Z|7y|8H|36|36", "o|8|5m|8G|Ls|Lx|36|36", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|LS|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|1O|38|42|M3|36|36", "mergeMathLists", "o|2Q|M5|2U", "o|2L|3R", "a|2M|2O|6Z|2V|2X|Lp|2b|2d|6a|2h|3W|Lr|M6|3M|3O|3Q|M7|3c|3e|3g|3i", "o|2l|M5|1N|2m", "a|2n|2p|2q|2s|2u|4S|Lt|4A|4B|4C|2w|2x|2y|2z|31|M9|Lu|Lw", "o|8|5n|8L|M8|MA|36|36", "o|8|5o|8L|M8|MA|36|36", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|r|1G|1H|1M|1O|1S|1e|1f|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|2C|2I|2J|o|p|q|1B|1C|1D|1E|1F|1L|1R|1T|1V|1W|1Z|1d|1g|1h|28|2E", "a|2M|2O|6Z|2V|2X|Lp|2b|2d|6a|2h|3W|Lr|3M|3O|3Q|M7", "o|8|4o|MD|ME|Lx|36|36", "source", "o|2L|MG", "assignNamesSkip", "o|2L|MI", "prop", "o|2L|MK", "componentIndex", "o|2L|MM", "propIndex", "o|2L|MO", "sourceAttributesToIgnore", "o|2L|MQ", "componentTypes", "o|2L|MS", "a|2M|2O|MH|6Z|2b|2h|MJ|ML|Lr|MN|MP|MR|MT|6h", "o|2l|MM|1f|2m", "o|2l|MO|4o|2m", "stringArray", "o|2l|MQ|MX|2m", "a|2s|2u|Lt|MV|MW|MY|2w|2x|2y|2z|31", "o|8|1P|C4|MU|MZ|36|2m", "target", "o|2L|Mb", "textType", "o|2L|Md", "uri", "o|2L|Mf", "page", "o|2L|Mh", "createButton", "o|2Q|Mj|2U", "a|2M|2O|Mc|2V|2X|2Z|2b|2d|2f|2h|Me|Mg|Mi|Mk", "o|2l|Md|1M|2m", "o|2l|Mf|1M|2m", "o|2l|Mh|1f|2m", "linkText", "o|2l|Mp|1M|2m", "a|2n|2p|2q|2r|2s|2u|Mm|Mn|Mo|2w|2x|2y|2z|31|Mq", "o|8|1Q|6X|Ml|Mr|36|36", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|Fl|Fm|Fn|Fp|Fq|3M|3O|3Q|3S|AY|EV|Fs", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|Ay|F8|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|4I|4K|4M|B1|B3|G0|FI|G1|G2|4Y|G4|G6|4z|51|53|G7", "o|8|1R|Fk|Mt|Mu|36|36", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3W|3a|3c|3e|3g|3i|3k|3m|3o|3q|41", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|48|4A|4B|4C|4D|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|G7|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|47|4z|51|53|55", "o|8|1S|38|Mw|Mx|36|36", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|GC|Ag|GE|GG|GI|Ak|3M|3O|3Q|3S|GK", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|Ay|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|4I|4K|4M|B1|B3|FI|BE|GN|GO|GQ|GS|GU|GV|GX|GZ|4Y", "o|8|1T|GA|Mz|N0|36|36", "endpointsDraggable", "o|2Q|N2|2U", "endpoints", "o|2L|N4", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|N3|N5|EV|GK|3M|3O|3Q|3S", "o|2l|N2|1N|2m", "o|4c|N4|1O|36|4u|BL", "o|2l|FK|1O|2m", "o|2l|GD|1e|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|F8|Ay|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|B1|B3|N7|FI|N8|N9|NA", "o|8|5p|EP|N6|NB|36|2m", "o|2L|28", "direction", "o|2L|NE", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|ND|Ag|NF|3M|3O|3Q|3S", "o|4c|NE|1O|36|4d|4g", "o|4c|Af|1O|36|4d|BO", "o|4c|28|1O|36|4d|BO", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|B1|B3|FI|NH|NI|NJ", "o|8|5q|EP|NG|NK|36|2m", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|ER|ET|EV|EX|EZ|Eb|Eg|Ei|Ek|Em|Eo|Eq|Es|3M|3O|3Q|3S", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|F8|F9|FA|FB|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|B1|B3|FF|FG|FH|Fg|FI|FJ|FL", "o|8|5r|EP|NM|NN|36|2m", "filled", "o|2Q|NP|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|ER|ET|EV|EX|EZ|Eb|Eg|Ei|Ek|Em|Eo|Eq|Es|3M|3O|3Q|3S|NQ", "o|2l|NP|1N|2m", "borderStyleDescription", "o|2l|NT|1M|2m", "fillStyleDescription", "o|2l|NV|1M|2m", "perimeter", "o|2l|NX|1e|2m", "area", "o|2l|NZ|1e|2m", "numSides", "o|2l|Nb|1e|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|F8|F9|FA|FB|NS|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|B1|B3|FF|FG|FH|Fg|FI|FJ|NU|NW|NY|Na|Nc", "o|8|5s|EP|NR|Nd|36|2m", "o|8|5t|EP|NR|Nd|36|2m", "o|2L|3z", "height", "o|2L|Nh", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|ER|ET|EV|EX|EZ|Eb|Eg|Ei|Ek|Em|Eo|Eq|Es|3M|3O|3Q|3S|NQ|Ng|K6|Ni", "o|4c|3z|1O|36|4d|BO", "o|2l|K5|1e|2m", "o|2l|Nh|1e|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|F8|F9|FA|FB|NS|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|B1|B3|FF|FG|FH|Fg|FI|FJ|NU|NW|NY|Na|Nk|Nl|Nm|Nc", "o|8|5u|EP|Nj|Nn|36|2m", "o|2L|Ff", "o|2L|Nb", "circumradius", "o|2L|Nr", "radius", "o|2L|Nt", "inradius", "o|2L|Nv", "apothem", "o|2L|Nx", "sideLength", "o|2L|Nz", "o|2L|NX", "o|2L|NZ", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|ER|ET|EV|EX|Eb|Eg|Ei|Ek|Em|Eo|Eq|Es|3M|3O|3Q|3S|NQ|Np|Nq|Ng|Ns|Nu|Nw|Ny|O0|O1|O2", "o|2l|Ff|1f|2m", "o|2l|Nr|1e|2m", "o|2l|Nv|1e|2m", "o|2l|Nz|1e|2m", "o|2l|Nb|1f|2m", "o|2l|Nt|1e|2m", "o|2l|Nx|1e|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|F8|F9|FA|FB|NS|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|B1|B3|FF|FG|FH|O4|FI|FJ|NU|NW|NY|Na|Nk|O5|O6|O7|O8|O9|OA", "o|8|5v|EP|O3|OB|36|2m", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|AY|Ge|Gg|Gi|Gk|Gm|Go|Gt|Ag|EV|Aq|3M|3O|3Q|3S|Ng|Nu|NQ|Fs", "o|2l|Nt|1O|2m", "diameter", "o|2l|OF|1O|2m", "circumference", "o|2l|OH|1O|2m", "o|2l|NZ|1O|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|Ay|Gz|H0|H1|H2|H3|H4|H5|F8|NS|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|B1|B3|NU|NW|G0|H6|H7|H9|OE|OG|OI|OJ|Nk", "o|8|5w|GA|OD|OK|36|36", "o|2L|Ee", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|AY|Ge|Gg|Gi|Gk|Gm|Go|Gt|Ag|EV|Aq|3M|3O|3Q|3S|OM", "a", "o|2l|OO|1e|2m", "b", "o|2l|OQ|1e|2m", "o|2l|x|1e|2m", "o|4c|Ee|1O|36|4d|BO", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|Ay|Gz|H0|H1|H2|H3|H4|H5|F8|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|B1|B3|H6|H7|H9|OP|OR|OS|OT|GO", "o|8|5x|GA|ON|OU|36|36", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|AY|Ge|Gg|Gi|Gk|Gm|Go|Gt|Am|Ag|Gv|Gx|EV|Aq|3M|3O|3Q|3S", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|Ay|Gz|H0|H1|H2|H3|H4|H5|F8|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|B1|B3|H6|H7|FI|H9|HB|HD|HI|HM|HO|HQ|HS|HU|HW|HY|Ha|Hc|He|Hg", "o|8|5y|Gc|OW|OX|36|36", "a|5z|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|1B|1C|1D|1E|1F|1G|1H|1L|1M|1O|1R|1S|1T|1V|1W|1Z|1d|1e|1f|1g|1h|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|28|2C|2E|2I|2J", "alwaysVisible", "o|2Q|Oa|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Ob", "o|2l|Oa|1N|2m", "a|2n|2p|2q|2r|2s|2u|Od|2w|2x|2y|2z|31", "o|8|1U|OZ|Oc|Oe|36|36", "a|A|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|1G|1O|1S|1V|1i|1j|1p|1s|1x|1y|2C|2I|E|o|p|q|r|1B|1C|1D|1E|1F|1H|1L|1M|1R|1T|1W|1Z|1d|1e|1f|1g|1h|1k|1t|1u|1v|1w|1z|20|21|28|2E|2J", "symmetric", "previous", "next", "both", "a|Oh|Oi|Oj|Ok|3D", "o|2Q|NE|Ol", "pointNumber", "o|2L|On", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Om|Oo", "o|2l|NE|1M|2m", "o|2l|On|1e|2m", "a|2n|2p|2q|2r|2s|2u|Oq|Or|2w|2x|2y|2z|31", "o|8|5z|Og|Op|Os|36|36", "a|C|D|2G|A|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|1B|1G|1O|1R|1S|1V|1i|1j|1p|1s|1x|1y|28|2C|2I|E|r|1H|1M|1e|1f|1k|1t|1u|1v|1w|1z|20|21|2J|o|p|q|1C|1D|1E|1F|1L|1T|1W|1Z|1d|1g|1h|2E", "headDraggable", "o|2Q|Ov|2U", "tailDraggable", "o|2Q|Ox|2U", "displacement", "o|2L|Oz", "head", "o|2L|P1", "tail", "o|2L|P3", "displayWithAngleBrackets", "o|2Q|P5|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|Ow|Oy|Fl|Fm|Fn|Fp|P0|P2|P4|3M|3O|3Q|3S|P6|EV", "o|2l|P5|1N|2m", "o|2l|Ox|1N|2m", "o|2l|Ov|1N|2m", "o|4c|Oz|1O|36|4d|4g", "o|4c|P1|1O|36|4d|BO", "o|4c|P3|1O|36|4d|BO", "magnitude", "o|2l|PE|1O|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|P8|F8|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|4I|4K|4M|B1|B3|P9|PA|FI|PB|PC|PD|PF|4Y|4z|51|53", "o|8|1V|Ou|P7|PG|36|36", "a|C|D|2G|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|r|1G|1H|1M|1O|1S|1e|1f|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|2C|2I|2J|o|p|q|1B|1C|1D|1E|1F|1L|1R|1T|1V|1W|1Z|1d|1g|1h|28|2E", "chooseReflexAngle", "never", "allowed", "always", "a|PK|PL|PM", "o|2Q|PJ|PN", "inDegrees", "o|2Q|PP|2U", "radians", "o|2L|PR", "degrees", "o|2L|PT", "betweenLines", "o|2L|PV", "emphasizeRightAngle", "o|2Q|PX|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|Nu|PO|PQ|PS|PU|Ag|PW|3M|3O|3Q|3S|PY", "o|2l|PJ|1M|2m", "o|2l|PP|1N|2m", "o|2l|PX|1N|2m", "o|2l|PR|1O|2m", "o|2l|PT|1O|2m", "o|2l|1W|1O|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|OE|Pa|Pb|Pc|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|Pd|Pe|LS|Pf", "o|8|1W|PI|PZ|Pg|36|36", "considerAsResponses", "a|60|1L|1Z|1a|1b|1c|Pi|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|1B|1C|1D|1E|1F|1G|1H|1M|1O|1R|1S|1T|1V|1W|1d|1e|1f|1g|1h|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|28|2C|2E|2I|2J|5n|5o|4o|C|D|L|M|N|O|P|Q|R|1N|1Y|2F|2G|2H|49|5m", "handGraded", "o|2Q|Pk|2U", "inline", "o|2Q|Pm|2U", "matchPartial", "o|2Q|Po|2U", "forceFullCheckworkButton", "o|2Q|Pq|2U", "numAwardsCredited", "o|2L|Ps", "maxNumAttempts", "o|2L|Pu", "showCorrectness", "o|2Q|Pw|2U", "disableAfterCorrect", "o|2Q|Py|2U", "selectMultiple", "o|2Q|Q0|2U", "shuffleOrder", "o|2Q|Q2|2U", "expanded", "o|2Q|Q4|2U", "displayDigitsForResponses", "o|2L|Q6", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|CH|Pl|Pn|7b|Pp|Pr|7f|7d|7h|7j|Pt|Pv|7l|7n|7p|7r|7t|7v|7x|Px|Lh|Pz|CL|CN|Q1|Q3|3g|3i|Q5|Q7|CP", "o|2l|Pk|1N|2m", "o|2l|Pm|1N|2m", "o|2l|Po|1N|2m", "o|2l|Pq|1N|2m", "o|2l|Ps|1f|2m", "o|2l|Pu|1f|2m", "o|2l|Py|1N|2m", "o|2l|Q0|1N|2m", "o|2l|Q2|1N|2m", "o|2l|Q4|1N|2m", "o|2l|Q6|1f|2m", "disabledOriginal", "o|2l|QK|1N|2m", "numResponses", "o|2l|QM|1e|2m", "a|2|2k|4Z|4b", "currentResponses", "a|2k|4Z", "o|QQ|36|4d", "a|QR", "o|QO|QP|36|4d|QS", "numSubmittedResponses", "o|2l|QU|1e|2m", "submittedResponses", "o|QO|QW|36|4d|QS", "responseHasBeenSubmitted", "o|2l|QY|1N|2m", "justSubmitted", "o|2l|Qa|1N|2m", "numFeedbacks", "o|2l|Qc|1e|2m", "feedbacks", "o|4j|36|6H|4d", "a|Qf", "o|4c|Qe|6H|36|4d|Qg", "numSubmissions", "o|2l|Qi|1f|2m", "numAttemptsLeft", "o|2l|Qk|1f|2m", "a|2|2k", "currentResponse", "o|Qm|Qn|2m", "submittedResponse", "o|Qm|Qp|2m", "a|2n|2p|2q|2r|2s|2u|Cg|Q9|QA|7z|QB|QC|81|80|82|83|QD|QE|84|85|86|87|88|89|8A|QF|Ci|Cj|QG|QH|4B|4C|QI|QJ|Ck|2w|2y|2z|31|QL|QN|QT|QV|QX|Cw|QZ|Qb|Qd|Qh|Qj|Ql|2x|Qo|Qq", "o|8|1X|Pj|Q8|Qr|36|2m", "a|1Y|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|1B|1C|1D|1E|1F|1G|1H|1L|1M|1O|1R|1S|1T|1V|1W|1Z|1d|1e|1f|1g|1h|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|28|2C|2E|2I|2J|C|D|L|M|N|O|P|Q|R|1N|2F|2G|2H|1b|5a", "credit", "o|2L|Qu", "feedbackCodes", "o|2L|Qw", "feedbackText", "o|2L|Qy", "sourcesAreResponses", "o|2L|R0", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Qv|Pp|7b|7d|7f|7h|7j|7l|7n|7p|7r|7t|7v|7x|Qx|Qz|R1|3g|3i", "o|2l|Qu|1e|2m", "o|2l|Qw|49|2m", "o|2l|Qy|1M|2m", "creditAchievedIfSubmit", "o|2l|R6|1e|2m", "fractionSatisfiedIfSubmit", "o|2l|R8|1e|2m", "fractionSatisfied", "o|2l|RA|1e|2m", "awarded", "o|2l|RC|1N|2m", "o|2l|6H|6H|2m", "a|2n|2p|2q|2r|2s|2u|R3|QB|7z|80|81|82|83|84|85|86|87|88|89|8A|R4|R5|4B|4C|2w|2x|2y|2z|31|R7|R9|RB|Cw|RD|Qd|Qh|RE", "o|8|60|Qt|R2|RF|36|36", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|7b|7d|7f|7h|7j|7l|7n|7p|7r|7t|7v|7x|Pp", "conditionSatisfied", "o|2l|RI|1N|2m", "a|2n|2p|2q|2r|2s|2u|7z|80|81|82|83|84|85|86|87|88|89|8A|QB|2w|2x|2y|2z|31|8D|RB|RJ|34", "o|8|1Y|7Z|RH|RK|2m|36", "prefillLatex", "o|2L|RM", "hideNaN", "o|2Q|RO|2U", "removeStrings", "o|2L|RQ", "minWidth", "o|2L|RS", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Ig|RN|3B|3c|3g|3i|3M|3O|3Q|3S|LD|LF|RP|RR|RT|AT", "o|2l|RM|2J|2m", "o|2l|RO|1N|2m", "o|2l|RS|1f|2m", "rawRendererValue", "o|2l|RY|2J|2m", "a|2n|2p|2q|2r|2s|2u|LK|LM|RV|43|4A|4B|4C|LN|RW|RX|Aw|2w|2x|2y|2z|31|4O|4P|4Q|4R|Az|LP|LS|LR|LU|34|RZ|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|1Z|GA|RU|Ra|36|36", "a|C|D|2G|A|E|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|r|1D|1E|1G|1H|1M|1N|1O|1S|1Y|1d|1e|1f|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|2C|2F|2H|2I|2J", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Ig|LD|Q5|K6|Ni|AT|3m|3q|41", "o|2l|If|1M|2m", "_componentSize", "o|2l|Nh|Rf|2m", "o|2l|K5|Rf|2m", "o|2l|LT|1M|2m", "a|2n|2p|2q|2r|2s|2u|LK|Re|QI|Rg|Aw|4E|4G|2w|2x|2y|2z|31|Az|4N|Rh|LP|Bq|LR|Ri|34|79|7D|7F|7H|55|7I", "o|8|1a|Rc|Rd|Rj|36|36", "a|C|D|2G|L|M|N|O|P|Q|R|1N|1b|2F|2H|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|1B|1C|1D|1E|1F|1G|1H|1L|1M|1O|1R|1S|1T|1V|1W|1Z|1d|1e|1f|1g|1h|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|28|2C|2E|2I|2J", "o|2Q|If|2U", "asToggleButton", "o|2Q|Rn|2U", "o|2Q|LC|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Rm|AT|Ro|Rp|3m|3q|41", "o|2l|If|1N|2m", "o|2l|Rn|1N|2m", "a|2n|2p|2q|2r|2s|2u|LK|Rr|Aw|Rs|4E|4G|2w|2x|2y|2z|31|Az|4N|LP|8D|34", "o|8|1b|Rl|Rq|Rt|36|36", "a|C|D|2G|1d", "preselectChoice", "o|2L|Rw", "placeHolder", "o|2L|Ry", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Q1|Pp|Pn|Q3|Rx|LD|Rz|CL|CN|AT", "numChoices", "o|2l|S1|1e|2m", "choiceTexts", "o|4c|S3|1M|36|4d|7C", "choiceMaths", "o|4c|S5|1O|36|4d|4l", "selectedIndices", "o|4c|S7|1e|36|4d|KL", "selectedValues", "o|QO|S9|36|4d|QS", "selectedIndex", "o|2l|SB|1e|2m", "selectedValue", "o|Qm|SD|2m", "o|QO|2P|36|4d|QS", "valueToRecordOnSubmit", "o|4c|SG|1e|36|4d|KL", "a|2n|2p|2q|2r|2s|2u|LK|QG|QB|QH|Ci|Cj|Aw|2w|2x|2y|2z|31|Az|QA|S2|S4|S6|LP|S8|SA|Qd|Qh|SC|SE|SF|SH", "o|8|1c|Rv|S0|SI|36|2m", "preSelect", "o|2Q|SK|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Qv|Qx|Qz|SL", "selected", "o|2l|SN|1N|2m", "submitted", "o|2l|SP|1N|2m", "feedbacktext", "o|2l|Qe|SR|2m", "a|2n|2p|2q|2r|2s|2u|R3|R4|R5|2w|2x|2y|2z|31|34|77|SO|SQ|SS", "o|8|1d|6X|SM|ST|36|36", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|r|1G|1H|1M|1O|1S|1e|1f|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|2C|2I|2J|o|p|q|1B|1C|1D|1E|1F|1L|1R|1T|1V|1W|1Z|1d|1g|1h|28|2E|C|D|L|M|N|O|P|Q|R|1N|1Y|2F|2G|2H|1b", "renderAsMath", "o|2Q|SW|2U", "convertBoolean", "o|2Q|SY|2U", "valueOnNaN", "o|2L|Sa", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3M|3O|3Q|3S|SX|SZ|Sb|3m|3o|3q|41", "o|2l|SW|1N|2m", "o|2l|32|1e|2m", "a|2n|2p|2q|2r|2s|2u|Sd|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|Se|34|77|4Y", "o|8|1e|SV|Sc|Sf|36|36", "valuePreRound", "o|2l|Sh|1f|2m", "o|2l|32|1f|2m", "a|2n|2p|2q|2r|2s|2u|Sd|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|34|77|4Y|Si|Sj", "o|8|1f|SV|Sc|Sk|36|36", "a|C|D|A|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|5Y|1B|1C|5Z|1G|1I|1O|1P|1R|1S|1T|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|1V|1W|1g|1h|1i|1j|1l|6B|1m|1n|1p|1q|1r|1s|1x|1y|26|28|29|2A|2C|2D|2E|6L|6M|6N|6S|2I|6W|6E|E|L|M|N|O|P|Q|R|r|1D|1E|1H|1M|1N|1Y|1d|1e|1f|1k|1t|1u|1v|1w|1z|20|21|2F|2G|2H|2J|1F|1L|1Z|F|G|H|K|I|J|22|23|24|1b|1a|61", "xmin", "o|2L|Sn", "xmax", "o|2L|Sp", "ymin", "o|2L|Sr", "ymax", "o|2L|St", "size", "tiny", "small", "medium", "large", "a|Sw|Sx|Sy|Sz|3E", "o|2Q|Sv|T0", "aspectRatio", "o|2L|T2", "displayMode", "block", "a|T5|Pm", "o|2Q|T4|T6", "horizontalAlign", "a|3z|3x|3y", "o|2Q|T8|T9", "identicalAxisScales", "o|2Q|TB|2U", "displayXAxis", "o|2Q|TD|2U", "displayYAxis", "o|2Q|TF|2U", "displayXAxisTickLabels", "o|2Q|TH|2U", "displayYAxisTickLabels", "o|2Q|TJ|2U", "xlabelPosition", "a|3y|3x", "o|2Q|TL|TM", "xTickScaleFactor", "o|2L|TO", "ylabelPosition", "a|6|3w", "o|2Q|TQ|TR", "ylabelAlignment", "a|3x|3y", "o|2Q|TT|TU", "yTickScaleFactor", "o|2L|TW", "showNavigation", "o|2Q|TY|2U", "fixAxes", "o|2Q|Ta|2U", "grid", "o|2L|Tc", "showBorder", "o|2Q|Te|2U", "hideOffGraphIndicators", "o|2Q|Tg|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|So|Sq|Ss|Su|K6|T1|T3|T7|TA|TC|TE|TG|TI|TK|TN|TP|TS|TV|TX|TZ|Tb|Td|3M|3O|3Q|3S|Tf|Th", "o|2l|T4|1M|2m", "o|2l|T8|1M|2m", "o|2l|TB|1N|2m", "o|2l|TD|1N|2m", "o|2l|TF|1N|2m", "o|2l|TH|1N|2m", "o|2l|TJ|1N|2m", "o|2l|TL|1M|2m", "o|2l|TO|1O|2m", "o|2l|TQ|1M|2m", "o|2l|TT|1M|2m", "o|2l|TW|1O|2m", "o|2l|TY|1N|2m", "o|2l|Ta|1N|2m", "o|2l|Te|1N|2m", "o|2l|Tg|1N|2m", "o|2l|C|2G|2m", "o|2l|D|2G|2m", "o|2l|Sv|1M|2m", "o|2l|T2|1e|2m", "o|2l|Sn|1e|2m", "o|2l|Sp|1e|2m", "o|2l|Sr|1e|2m", "o|2l|St|1e|2m", "o|Qm|Tc|2m", "a|2n|2p|2q|2r|2s|2u|Tj|Tk|Tl|Tm|Tn|To|Tp|Tq|Tr|Ts|Tt|Tu|Tv|Tw|Tx|Ty|2w|2x|2y|2z|31|4O|4P|4Q|4R|Tz|U0|U1|Rh|U2|U3|U4|U5|U6|Au|Av|U7", "o|8|61|Sm|Ti|U8|36|2m", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3I|3K|AJ|AL|AN|AP|AR|AT|AV|AY|3o|Aa|Ac|Ae|Ag|Ai|Ak|Am|Ao|3M|3O|3Q|3S|Aq", "a|2n|2p|2q|2r|2s|2u|At|Au|Av|Aw|Ax|Ay|4F|2w|2x|2y|2z|31|Az|4I|4K|4M|B1|B3|4O|4P|4Q|4R|B4|B5|B8|44|B9|BA|BE|BG|4Y|BI|BM|BP|BR|BT|BU|BW|BY|Ba|Bb|Bc", "o|8|1g|AH|UA|UB|36|36", "a|o|p|q|1g|1h|C|D|2G", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3I|3K|AJ|AL|AR|AT|AV|AY|3o|Ai|Ak|Am|Ao|3M|3O|3Q|3S|Aq", "a|2n|2p|2q|2r|2s|2u|At|Au|Av|Aw|Ax|Ay|4F|2w|2x|2y|2z|31|Az|4I|4K|4M|B1|B3|4O|4P|4Q|4R|B4|B5|44|B9|BA|BE|BG|4Y|BI|BM|BP|BR|BT|BU|BW|BY|Ba|Bb|Bc", "o|8|1h|UD|UE|UF|36|2m", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3W|3Y|3c|3e|3g|3i|3k|3m|3o|3q|41", "o|2l|32|1i|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|4A|4B|4C|4D|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|UI|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|48|4z|51|53|55", "o|8|1i|38|UH|UJ|36|36", "template", "o|8|UL|6X|6i|6k|2m|36", "option", "selectForVariants", "o|2L|UO", "selectWeight", "o|2L|UQ", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|6a|2h|6c|6e|6g|6h|UP|UR", "textListFromString", "o|2l|UO|UT|2m", "o|2l|UQ|1e|2m", "a|2n|2p|2q|2s|2u|6j|UU|UV|2w|2x|2y|2z|31", "o|8|UN|6X|US|UW|2m|36", "letters", "a|1e|1O|UY", "o|2Q|2j|UZ", "from", "o|2L|Ub", "to", "o|2L|Ud", "step", "o|2L|Uf", "o|2L|FK", "exclude", "o|2L|Ui", "a|2M|2O|6Z|2V|2X|Lp|2b|2d|2f|2h|3M|3O|3Q|M7|Ua|Uc|Ue|Ug|Uh|Uj|6h", "o|8|1j|C4|Uk|6x|36|2m", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|r|1G|1H|1M|1O|1S|1e|1f|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|2C|2I|2J|C|D|L|M|N|O|P|Q|R|1D|1E|1N|1Y|1d|2F|2G|2H|6A", "a|1e|1M", "o|2Q|2j|Un", "initialValue", "o|2L|Up", "showControls", "o|2Q|Ur|2U", "showTicks", "o|2Q|Ut|2U", "showValue", "o|2Q|Uv|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Uo|K6|Ni|Uq|AT|Us|Uu|Uw|Uc|Ue|Ug|3M|3O|3Q|3S|LD", "o|2l|Ur|1N|2m", "o|2l|Ut|1N|2m", "o|2l|Uv|1N|2m", "o|2l|Ub|1e|2m", "o|2l|Ud|1e|2m", "o|2l|Uf|1e|2m", "items", "o|Qm|V4|2m", "numItems", "o|2l|V6|1f|2m", "o|Qm|32|2m", "a|2n|2p|2q|2r|2s|2u|Rh|Rg|Aw|Uy|Uz|V0|V1|V2|V3|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|V5|V7|V8", "o|8|62|Um|Ux|V9|36|2m", "a|1k|64|65|66|6Q", "minNumRows", "o|2L|VC", "minNumColumns", "o|2L|VE", "columnHeaders", "o|2Q|VG|2U", "rowHeaders", "o|2Q|VI|2U", "fixedRowsTop", "o|2L|VK", "fixedColumnsLeft", "o|2L|VM", "hiddenColumns", "o|2L|VO", "hiddenRows", "o|2L|VQ", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|K6|VD|VF|Ni|VH|VJ|VL|VN|VP|VR", "o|2l|VC|1e|2m", "o|2l|VE|1e|2m", "o|2l|VG|1N|2m", "o|2l|VI|1N|2m", "o|2l|VK|1f|2m", "o|2l|VM|1f|2m", "o|2l|VO|4o|2m", "o|2l|VQ|4o|2m", "o|2l|4q|1e|2m", "o|2l|4s|1e|2m", "cells", "o|4e|2m|66", "o|4e|2m|64", "a|Ve|Vf", "o|4c|Vd|1k|36|4u|Vg", "evaluatedCells", "o|4c|Vi|1k|36|4u|Vg", "pointsInCells", "a|HK|BJ", "o|4c|Vk|1R|36|4u|Vl", "a|2n|2p|2q|2r|2s|2u|Rh|VT|VU|VV|VW|VX|VY|VZ|Va|2w|2x|2y|2z|31|Vb|Vc|Rg|Vh|Vj|Vm", "o|8|63|VB|VS|Vn|36|2m", "a|A|E|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|1B|1C|1D|1E|1F|1G|1H|1L|1M|1O|1R|1S|1T|1V|1W|1Z|1d|1e|1f|1g|1h|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|28|2C|2E|2I|2J|9|B|C|D|5C|5D|5E|F|G|H|I|J|K|L|M|N|O|P|Q|R|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|1A|5Y|5Z|5a|5b|5c|5d|5e|1I|5f|1J|5g|1K|5h|5i|5j|5k|49|5l|1N|5m|5n|5o|4o|1P|1Q|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|1U|5z|1X|60|1Y|1a|1b|1c|61|62|63|64|65|66|67|68|69|6A|1l|6B|1m|1n|1o|6C|1q|1r|6D|6E|6F|6G|6H|22|23|24|25|26|6I|27|6J|29|2A|2B|6K|2D|6L|6M|6N|6O|6P|2F|6Q|6R|6S|2G|2H|6T|6U|6V|6W", "rowNum", "o|2L|Vq", "colNum", "o|2L|Vs", "colSpan", "o|2L|Vu", "halign", "o|2L|Vw", "o|2L|3w", "o|2L|3y", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Vr|Vt|Vv|Vx|Vy|Vz|Ig", "o|2l|Vq|1M|2m", "o|2l|Vs|1M|2m", "o|2l|Vu|1f|2m", "o|2l|Vw|1M|2m", "o|2l|3w|1M|2m", "o|2l|3y|1M|2m", "inHeader", "o|2l|W7|1N|2m", "a|2n|2p|2q|2r|2s|2u|W1|W2|W3|Re|2w|2x|2y|2z|31|W4|W5|W6|W8|34|77|4U", "o|8|1k|Vp|W0|W9|36|36", "a|1k", "header", "o|2Q|WC|2U", "o|2L|3x", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Vr|WD|Vx|KC|WE|Vy|3c|3e|3g|3i", "o|2l|WC|1N|2m", "o|2l|KB|1M|2m", "o|2l|3x|1M|2m", "a|2n|2p|2q|2r|2s|2u|W1|WG|2w|2x|2y|2z|31|W4|WH|WI|W5", "o|8|64|WB|WF|WJ|36|2m", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Vt|3c|3e|3g|3i", "a|2n|2p|2q|2r|2s|2u|W2|2w|2x|2y|2z|31", "o|8|65|WB|WL|WM|36|2m", "a|1k|64|65|66", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Vr|Vt", "a|2n|2p|2q|2r|2s|2u|W1|W2|2w|2x|2y|2z|31", "o|8|66|WO|WP|WQ|36|2m", "a|64", "justify", "a|3x|3z|3y|WT", "o|2Q|Vw|WU", "middle", "a|6|WW|3w", "o|2Q|KB|WX", "minor", "major", "a|3D|WZ|Sy|Wa", "o|2Q|6|Wb", "o|2Q|3x|Wb", "o|2Q|3w|Wb", "o|2Q|3y|Wb", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|K6|Ni|WV|WY|Wc|Wd|We|Wf", "o|2l|6|1M|2m", "a|2n|2p|2q|2r|2s|2u|Rh|Rg|W4|WH|Wh|WI|W5|W6|2w|2x|2y|2z|31", "o|8|67|WS|Wg|Wi|36|2m", "suppressTableNameInTitle", "o|2Q|Wk|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Wl|7W", "tableEnumeration", "o|2l|Wn|1M|2m", "tableName", "o|2l|Wp|1M|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|Wo|Wq|Cu", "o|8|68|LX|Wm|Wr|36|36", "a|6J|9|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|1A|1B|1C|1D|1E|1F|1G|1H|1I|1J|1K|1L|1M|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|1Y|1Z|1a|1b|1c|1d|1e|1f|1g|1h|1i|1j|1k|1l|1m|1n|1o|1p|1q|1r|1s|1t|1u|1v|1w|1x|1y|1z|20|21|22|23|24|25|26|27|28|29|2A|2B|2C|2D|2E|2F|2G|2H|2I|2J|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|5a|5b|5c|5d|5e|5f|5g|5h|5i|5j|5l|61|63|67|68|69|6E|6F|6G|6H|6K|6O|6P|6R|6U|6V", "suppressFigureNameInCaption", "o|2Q|Wu|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Wv|7W", "figureEnumeration", "o|2l|Wx|1M|2m", "figureName", "o|2l|Wz|1M|2m", "o|2l|6J|1M|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|Wy|X0|X1", "o|8|69|Wt|Ww|X2|36|36", "markerType", "o|2l|X4|1M|2m", "o|QO|6A|36|4d|QS", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|X5|X6", "o|8|6A|Lo|2i|X7|36|2m", "sources", "a|UL|X9", "behavior", "o|2L|XB", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|6a|2h|MJ|XC|6h", "o|2l|XB|1M|2m", "a|2n|2p|2q|2s|2u|XE|2w|2x|2y|2z|31", "o|8|1l|XA|XD|XF|36|2m", "alias", "o|2L|XH", "indexAlias", "o|2L|XJ", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|XI|XK", "o|8|X9|6X|XL|6x|2m|36", "dx", "o|2L|XN", "dy", "o|2L|XP", "xoffset", "o|2L|XR", "yoffset", "o|2L|XT", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|XO|XQ|XS|XU", "o|2l|XN|1e|2m", "o|2l|XP|1e|2m", "o|2l|XR|1e|2m", "o|2l|XT|1e|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|XW|XX|XY|XZ|2w|2x|2y|2z|31|Az", "o|8|6B|EP|XV|Xa|36|2m", "constrainToGrid", "constrainToGraph", "attractToGrid", "constrainTo", "attractTo", "constraintUnion", "attractToConstraint", "constrainToInterior", "a|Xc|Xd|Xe|Xf|Xg|Xh|Xi|Xj", "scales", "o|2l|Xl|1e|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|Xm|G4", "o|8|Fj|Xk|2i|Xn|2m|2m", "dz", "o|2L|Xp", "zoffset", "o|2L|Xr", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|XO|XQ|Xq|XS|XU|Xs", "o|2l|Xp|1e|2m", "o|2l|Xr|1e|2m", "a|2n|2p|2q|2r|2s|2u|XW|XX|Xu|XY|XZ|Xv|2w|2x|2y|2z|31", "o|8|Xc|C4|Xt|Xw|2m|2m", "buffer", "o|2L|Xy", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Xz", "o|2l|Xy|1e|2m", "a|2n|2p|2q|2r|2s|2u|Y1|2w|2x|2y|2z|31", "o|8|Xd|C4|Y0|Y2|2m|2m", "xthreshold", "o|2L|Y4", "ythreshold", "o|2L|Y6", "zthreshold", "o|2L|Y8", "includeGridlines", "o|2Q|YA|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|XO|XQ|Xq|XS|XU|Xs|Y5|Y7|Y9|YB", "o|2l|Y4|1e|2m", "o|2l|Y6|1e|2m", "o|2l|Y8|1e|2m", "o|2l|YA|1N|2m", "a|2n|2p|2q|2r|2s|2u|XW|XX|Xu|XY|XZ|Xv|YD|YE|YF|YG|2w|2x|2y|2z|31", "o|8|Xe|C4|YC|YH|2m|2m", "a|A|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|5Y|1B|1C|5Z|1G|1I|1O|1P|1R|1S|1T|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|1V|1W|1g|1h|1i|1j|1l|6B|1m|1n|1p|1q|1r|1s|1x|1y|26|28|29|2A|2C|2D|2E|6L|6M|6N|6S|2I|6W", "relativeToGraphScales", "o|2Q|YK|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|YL", "o|2l|YK|1N|2m", "a|2n|2p|2q|2r|2s|2u|YN|2w|2x|2y|2z|31", "o|8|Xf|YJ|YM|YO|2m|2m", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|YL|98", "a|2n|2p|2q|2r|2s|2u|YN|2w|2x|2y|2z|31|9A", "o|8|Xg|YJ|YQ|YR|2m|2m", "o|8|Xh|Xk|2i|6x|2m|2m", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|98", "a|2n|2p|2q|2r|2s|2u|9A|2w|2x|2y|2z|31", "o|8|Xi|Xk|YU|YV|2m|2m", "o|8|Xj|YJ|YM|YO|2m|2m", "a|1C|1T|2E|5p|5w|5s|5t|5u|5v|5Y|5r", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|2f|2h|MJ|6h", "o|8|1m|YY|YZ|Jz|36|2m", "case", "a|Yb|5B|9|A|B|C|D|5C|5D|5E|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|1A|5Y|1B|1C|5Z|1D|1E|1F|1G|5a|5b|5c|5d|5e|1H|1I|5f|1J|5g|1K|5h|5i|1L|5j|5k|1M|49|5l|1N|5m|1O|5n|5o|4o|1P|1Q|1R|1S|1T|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|1U|5z|1V|1W|1X|60|1Y|1Z|1a|1b|1c|1d|1e|1f|61|1g|1h|1i|1j|62|63|1k|64|65|66|67|68|69|6A|1l|6B|1m|1n|1o|6C|1p|1q|1r|6D|1s|1t|1u|1v|1w|1x|1y|6E|6F|6G|1z|20|6H|21|22|23|24|25|26|6I|27|6J|28|29|2A|2B|6K|2C|2D|2E|6L|6M|6N|6O|6P|2F|6Q|6R|6S|2G|2H|2I|6T|2J|6U|6V|6W", "condition", "o|2Q|Yd|2U", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|2f|2h|MJ|Ye", "o|8|1n|Yc|Yf|6x|36|36", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|34|4Y", "o|8|1o|2K|2i|Yh|36|36", "numVariants", "o|2L|Yj", "uniqueVariants", "o|2Q|Yl|2U", "variantsToInclude", "o|2L|Yn", "variantsToExclude", "o|2L|Yp", "variantNames", "o|2L|Yr", "seeds", "o|2L|Yt", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Yk|Ym|Yo|Yq|Ys|Yu", "o|8|6C|C4|Yv|6x|36|2m", "numToSelect", "o|2L|Yx", "withReplacement", "o|2Q|Yz|2U", "sortResults", "o|2Q|Z1|2U", "excludeCombinations", "o|2L|Z3", "a|2M|2O|6Z|2V|2X|Lp|2b|2d|2f|2h|3M|3O|3Q|M7|Ua|Uc|Ue|Ug|Uh|Uj|6h|MJ|Yy|Z0|Z2|Z4", "o|2l|Yx|1f|2m", "o|2l|Yz|1N|2m", "o|2l|Z1|1N|2m", "a|2n|2p|2q|2r|2s|2u|Z6|Z7|Z8|2w|2x|2y|2z|31", "o|8|1p|C4|Z5|Z9|36|2m", "a|UN", "addLevelToAssignNames", "o|2Q|ZC|2U", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|2f|2h|MJ|Yy|Z0|Lh|ZD|6h", "a|2n|2p|2q|2r|2s|2u|Z6|Z7|2w|2x|2y|2z|31", "o|8|1q|ZB|ZE|ZF|36|36", "o|8|1r|6X|6i|6k|36|36", "animationOn", "o|2Q|ZI|2U", "animationMode", "increase", "decrease", "increase once", "decrease once", "oscillate", "a|ZL|ZM|ZN|ZO|ZP", "o|2Q|ZK|ZQ", "animationInterval", "o|2L|ZS", "allowAdjustmentsWhileRunning", "o|2Q|ZU|2U", "a|2M|2O|Mc|2V|2X|2Z|2b|2d|2f|2h|Ua|Uc|Ue|Ug|Uh|Uj|ZJ|ZR|ZT|ZV", "targetSubnames", "o|2l|ZX|MX|2m", "targetSubnamesComponentIndex", "o|2l|ZZ|4o|2m", "o|2l|ZI|1N|2m", "o|2l|ZK|1M|2m", "o|2l|ZS|1e|2m", "o|2l|ZU|1N|2m", "currentAnimationDirection", "o|2l|Zf|1M|2m", "a|2n|2p|2q|2r|2s|2u|MV|MW|ZY|Za|Zb|Zc|Zd|Ze|2w|2x|2y|2z|31|SC|V8|Zg", "o|8|6D|C4|ZW|Zh|36|2m", "input", "o|2L|Zj", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|41|8Y|8a|F1|Zk", "o|2l|32|1s|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|4S|47|48|4A|4B|4C|4D|4E|4F|4G|8c|8d|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|Zm|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|BG|4z|51|53|55", "o|8|1s|C4|Zl|Zn|36|2m", "discreteuniform", "gaussian", "a|Gr|Zp|Zq", "o|2Q|2j|Zr", "o|2L|d", "o|2L|g", "o|2L|f", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|2f|2h|MJ|Zs|Zt|Zu|Zv|Uc|Ue|Ug|Uj|3M|3O|3Q|M7|6h|Yy", "o|2l|2j|1M|2m", "o|2l|d|1e|2m", "o|2l|f|1e|2m", "o|2l|g|1e|2m", "a|2n|2p|2q|2r|2s|2u|Zx|Z6|2w|2x|2y|2z|31|V3|V1|V2|Zy|Zz|a0", "o|8|1t|C4|Zw|a1|36|2m", "numSamples", "o|2L|a3", "variantDeterminesSeed", "o|2Q|a5|2U", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|2f|2h|MJ|a4|Zs|Zt|Zu|Zv|Uc|Ue|Ug|Uj|3M|3O|3Q|M7|a6|6h", "o|2l|a3|1e|2m", "o|2l|a5|1N|2m", "a|2n|2p|2q|2r|2s|2u|a8|Zx|a9|2w|2x|2y|2z|31|V3|V1|V2|Zy|Zz|a0", "o|8|1u|C4|a7|aA|36|2m", "minValue", "o|2L|aC", "maxValue", "o|2L|aE", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|2f|2h|aD|aF|Uj|MJ|Yy|Z0|Z2|Z4|6h", "o|2l|aC|1f|2m", "o|2l|aE|1f|2m", "o|2l|Ui|4o|2m", "a|2n|2p|2q|2r|2s|2u|aH|aI|aJ|Z6|Z7|Z8|2w|2x|2y|2z|31", "o|8|1v|C4|aG|aK|36|2m", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|2f|2h|MJ|a4|aD|aF|Uj|a6|6h", "a|2n|2p|2q|2r|2s|2u|a8|aH|aI|aJ|a9|2w|2x|2y|2z|31", "o|8|1w|C4|aM|aN|36|2m", "a|1O|1M", "o|2Q|2j|aP", "match", "o|2L|aR", "replacement", "o|2L|aT", "matchWholeWord", "o|2Q|aV|2U", "matchCase", "o|2Q|aX|2U", "preserveCase", "o|2Q|aZ|2U", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|2f|2h|MJ|aQ|aS|aU|3I|3M|3O|3Q|3S|aW|aY|aa", "o|2l|aV|1N|2m", "o|2l|aX|1N|2m", "o|2l|aZ|1N|2m", "a|2n|2p|2q|2r|2s|2u|Zx|44|ac|ad|ae|2w|2x|2y|2z|31|4O|4P|4Q|4R", "o|8|1x|6X|ab|af|36|36", "minIndex", "o|2L|ah", "maxIndex", "o|2L|aj", "offsets", "o|2L|al", "o|2L|I2", "minIndexAsList", "o|2L|ao", "maxIndexAsList", "o|2L|aq", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|41|ai|ak|am|an|ap|ar", "o|2l|ah|1f|2m", "o|2l|aj|1f|2m", "o|2l|al|5n|2m", "o|2l|I2|1O|2m", "o|2l|ao|1f|2m", "o|2l|aq|1f|2m", "o|2l|32|1y|2m", "numOffsets", "o|2l|b0|1f|2m", "redundantOffsets", "o|2l|b2|1N|2m", "o|2l|1o|5n|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|at|au|av|aw|ax|ay|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|az|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|b1|b3|b4|4z|51|53|55", "o|8|1y|C4|as|b5|36|2m", "o|2L|B", "asFileName", "o|2L|b8", "mimeType", "o|2L|bA", "rotate", "o|2L|bC", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|K6|T1|T3|T7|TA|b7|MH|b9|bB|3m|3o|3q|41|bD", "o|2l|MG|1M|2m", "o|2l|b8|1M|2m", "o|2l|bA|1M|2m", "o|2l|bC|1e|2m", "a|2n|2p|2q|2r|2s|2u|Tj|Tk|Lk|bF|bG|bH|4E|4F|4G|bI|2w|2x|2y|2z|31|4N|U1|Rh|U2", "o|8|6E|C4|bE|bJ|36|2m", "youtube", "o|2L|bL", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|K6|T1|T3|T7|TA|bM|MH", "o|2l|bL|1M|2m", "state", "o|2l|bP|1M|2m", "time", "o|2l|bR|1e|2m", "duration", "o|2l|bT|1e|2m", "secondsWatched", "o|2l|bV|1e|2m", "fractionWatched", "o|2l|bX|1e|2m", "a|2n|2p|2q|2r|2s|2u|Tj|Tk|bO|bF|2w|2x|2y|2z|31|U1|Rh|U2|bQ|bS|bU|bW|bY", "o|8|6F|C4|bN|bZ|36|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|D0|Cu", "o|8|6G|6X|2i|bb|36|36", "originalValue", "o|2l|bd|1z|2m", "o|2l|32|1z|2m", "a|2n|2p|2q|2r|2s|2u|4E|4F|75|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|34|77|4U|79|7D|7F|7H|55|7I|be|bf", "o|8|1z|71|74|bg|36|36", "pluralForm", "o|2L|bi", "basedOnNumber", "o|2L|bk", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3m|3o|73|3q|41|bj|bl", "o|2l|bi|1M|2m", "o|2l|bk|1e|2m", "valuePrePluralize", "o|2l|bp|20|2m", "a|2n|2p|2q|2r|2s|2u|4E|4F|75|4G|bn|bo|2w|2x|2y|2z|31|4I|4K|4M|4N|34|77|4U|79|7D|7F|7H|55|7I|bq|Bq", "o|8|20|71|bm|br|36|36", "updateWith", "o|2L|bt", "a|2M|2O|2X|2Z|2b|2d|2f|2h|Ye|bu", "a|2p|2q|2r|2s|2u|2w|2x|2y|2z|31", "o|8|6H|6X|bv|bw|36|36", "o|8|Pi|6X|2i|6x|2m|36", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|6a|2h|6c|6e|6g|6h|Ye", "a|2n|2p|2q|2s|2u|6j|2w|2x|2y|2z|31|RJ", "o|8|Yb|6X|bz|c0|2m|36", "minSentencesPerParagraph", "o|2L|c2", "maxSentencesPerParagraph", "o|2L|c4", "minWordsPerSentence", "o|2L|c6", "maxWordsPerSentence", "o|2L|c8", "generateWords", "o|2L|cA", "generateSentences", "o|2L|cC", "generateParagraphs", "o|2L|cE", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|2f|2h|c3|c5|c7|c9|cB|cD|cF", "o|2l|c2|1e|2m", "o|2l|c4|1e|2m", "o|2l|c6|1e|2m", "o|2l|c8|1e|2m", "a|2n|2p|2q|2r|2s|2u|cH|cI|cJ|cK|2w|2x|2y|2z|31", "o|8|21|C4|cG|cL|36|2m", "a|1O|1e|1N|1M", "o|2Q|2j|cN", "newValue", "o|2L|cP", "triggerWhen", "o|2Q|cR|2U", "triggerWith", "o|2L|cT", "triggerWhenObjectsClicked", "o|2L|cV", "triggerWhenObjectsFocused", "o|2L|cX", "a|2M|2O|Mc|2V|2X|2Z|2b|2d|2f|2h|AT|cO|cQ|3m|3q|41|cS|cU|cW|cY|3I", "a|2n|2p|2q|2r|2s|2u|Aw|MV|MW|ZY|Za|4E|4G|44|2w|2x|2y|2z|31|Az|4N", "o|8|22|EP|cZ|ca|36|2m", "actionName", "o|2L|cc", "o|2L|3F", "o|2L|1e", "a|2M|2O|Mc|2V|2X|2Z|2b|2d|2f|2h|AT|cd|3m|3q|41|cS|cU|cW|cY|ce|cf", "o|2l|cc|1M|2m", "a|2n|2p|2q|2r|2s|2u|Aw|ch|4E|4G|2w|2x|2y|2z|31|Az|4N", "o|8|23|EP|cg|ci|36|2m", "a|22|23|C|D|2G", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|3m|3q|41|cS|cU|cW|cY", "a|2n|2p|2q|2r|2s|2u|Aw|4E|4G|2w|2x|2y|2z|31|Az|4N", "o|8|24|ck|cl|cm|36|2m", "numIterates", "o|2L|co", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|cp|8Y|8a|Uq|F1|3M|3O|3Q|3S", "o|2l|co|1f|2m", "allIterates", "o|2l|cs|5n|2m", "allIteratesWithInitial", "o|2l|cu|5n|2m", "iterates", "o|4c|cw|1O|36|4d|4l", "finalIterate", "o|2l|cy|1O|2m", "a|2n|2p|2q|2r|2s|2u|cr|8c|8d|2w|2x|2y|2z|31|4O|4P|4Q|4R|4a|ct|cv|cx|cz", "o|8|25|C4|cq|d0|36|2m", "a|2M|2O|6Z|2V|2X|2Z|2b|6a|2h|6c|6e|6g|6h", "a|2n|2p|2s|2u|6j|2w|2x|2y|2z|31", "o|8|26|6X|d2|d3|36|36", "customAttribute", "componentType", "o|2L|d6", "attribute", "o|2L|d8", "defaultValue", "o|2L|dA", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|2f|2h|d7|d9|dB", "o|8|d5|C4|dC|6x|2m|2m", "a|K1|Iy|9|A|B|C|D|5C|5D|5E|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|1A|5Y|1B|1C|5Z|1D|1E|1F|1G|5a|5b|5c|5d|5e|1H|1I|5f|1J|5g|1K|5h|5i|1L|5j|5k|1M|49|5l|1N|5m|1O|5n|5o|4o|1P|1Q|1R|1S|1T|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|1U|5z|1V|1W|1X|60|1Y|1Z|1a|1b|1c|1d|1e|1f|61|1g|1h|1i|1j|62|63|1k|64|65|66|67|68|69|6A|1l|6B|1m|1n|1o|6C|1p|1q|1r|6D|1s|1t|1u|1v|1w|1x|1y|6E|6F|6G|1z|20|6H|21|22|23|24|25|26|6I|27|6J|28|29|2A|2B|6K|2C|2D|2E|6L|6M|6N|6O|6P|2F|6Q|6R|6S|2G|2H|2I|6T|2J|6U|6V|6W|d5", "o|8|6I|dE|2i|6x|36|36", "footnoteTag", "o|2l|dG|1M|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|34|dH", "o|8|27|2K|2i|dI|36|36", "o|8|6J|LX|2i|Bt|36|36", "o|2Q|Cz|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|3m|Fl|Fm|Fn|Fp|Fq|3M|3O|3Q|3S|AY|EV|Fs|dL|Fw", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|4E|Ay|F8|D0|Fz|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|4I|4K|4M|B1|B3|G0|FI|G1|G2|4Y|G4|G6|4z|51|53|G7", "o|8|28|Fk|dM|dN|36|36", "sortVectorsBy", "a|Oz|P3", "o|2Q|dP|dQ", "sortByComponent", "o|2L|dS", "sortByProp", "o|2L|dU", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|2f|2h|MJ|dR|dT|dV|Lh|6h", "o|2l|dP|1M|2m", "o|2l|dS|1f|2m", "a|2n|2p|2q|2r|2s|2u|dX|dY|2w|2x|2y|2z|31", "o|8|29|6X|dW|dZ|36|36", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|2f|2h|MJ|Lh|6h", "o|8|2A|6X|db|6x|36|36", "minVar", "o|2L|dd", "maxVar", "o|2L|df", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Ak|Gg|de|dg", "numSolutions", "o|2l|di|1f|2m", "solutions", "o|4c|dk|1O|36|4d|4l", "a|2n|2p|2q|2r|2s|2u|H0|2w|2x|2y|2z|31|BE|dj|dl|Bc", "o|8|2B|8L|dh|dm|36|36", "o|2L|C", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|So|Sq|K6|Ni|do|XO|Am|3B|Ig|LD", "o|2l|C|1M|2m", "subsetValue", "o|2l|dr|2C|2m", "o|4c|GM|1O|36|4d|4l", "pointsClosed", "o|4c|du|1N|36|4d|FP", "intervals", "o|4c|dw|1O|36|4d|4l", "isolatedPoints", "o|4c|dy|1O|36|4d|4l", "a|2n|2p|2q|2r|2s|2u|U3|U4|Rh|Rg|dq|XW|Bc|43|Re|2w|2x|2y|2z|31|ds|dt|dv|dx|dz", "o|8|6K|C4|dp|e0|36|2m", "inequalities", "a|dw|e2", "o|2Q|T4|e3", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|41|Am|e4", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|Tj|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|LS|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|dt|dv|dx|dz|4z|51|53|55", "o|8|2C|38|e5|e6|36|36", "a|1M", "o|2Q|2j|e8", "splitBy", "letter", "word", "comma", "a|eB|eC|eD", "o|2Q|eA|eE", "a|2M|2O|6Z|2V|2X|2Z|2b|2d|2f|2h|MJ|e9|eF", "o|8|2D|6X|eG|6x|36|36", "data", "o|2L|eI", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|GG|GI|Ak|3M|3O|3Q|3S|GK|eJ", "o|4c|eI|1O|36|4u|BL", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|Ay|2w|2x|2y|2z|31|Az|4O|4P|4Q|4R|4I|4K|4M|B1|B3|FI|BE|GN|GO|GQ|GS|GU|GV|GX|GZ|4Y|4E|eL", "o|8|2E|EP|eK|eM|36|2m", "boundaryValues", "o|2L|eO", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|eP|F1", "o|2l|eO|4o|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|eR|2w|2x|2y|2z|31|Az|B1|B3", "o|8|6L|EP|eQ|eS|36|2m", "a|C|D|2G|o|p|q|1g|1h", "flipFunctions", "o|2Q|eV|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|eP|eW", "o|2l|eV|1N|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|eR|eY|2w|2x|2y|2z|31|Az|B1|B3", "o|8|6M|eU|eX|eZ|36|2m", "horizontal", "o|2Q|eb|2U", "boundaryValue", "o|2L|ed", "greaterThan", "o|2Q|ef|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|ec|ee|eg", "o|2l|eb|1N|2m", "o|2l|ed|1e|2m", "o|2l|ef|1N|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|ei|ej|ek|2w|2x|2y|2z|31|Az", "o|8|6N|EP|eh|el|36|2m", "viewerRatio", "o|2L|en", "showResults", "o|2Q|ep|2U", "showFormatter", "o|2Q|er|2U", "resultsLocation", "a|3w|3x|3y", "o|2Q|et|eu", "renderedName", "o|2L|ew", "staticName", "o|2L|ey", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|Ig|LD|K6|Ni|eo|eq|es|ev|ex|ez", "o|2l|ep|1N|2m", "o|2l|er|1N|2m", "o|2l|et|1M|2m", "a|2n|2p|2q|2r|2s|2u|Re|Rh|Rg|f1|f2|f3|2w|2x|2y|2z|31|LP|Bq|LR|Ri|34", "o|8|6O|6X|f0|f4|36|36", "codeSource", "o|2L|f6", "hasCodeEditorParent", "o|2Q|f8|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|f7|K6|Ni|f9|ex", "o|2l|f8|1N|2m", "locationFromParent", "o|2l|fC|1M|2m", "codeChanged", "o|2l|fE|1N|2m", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|fB|fD|Rh|Rg|fF", "o|8|6P|C4|fA|fG|36|2m", "restrictDivision", "o|2Q|fI|2U", "monomialFactorMustMatch", "o|2Q|fK|2U", "allowOnlySignDifferences", "o|2Q|fM|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|7b|7d|7f|7h|7j|7l|7n|7p|7r|7t|7v|7x|Am|fJ|fL|fN", "o|8|2F|8L|fO|8H|36|2m", "hasHeader", "o|2Q|fQ|2U", "columnTypes", "o|2L|fS", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|MH|fR|fT", "o|2l|fQ|1N|2m", "o|2l|fS|49|2m", "columnNames", "o|2l|fX|49|2m", "means", "o|4c|fZ|1e|36|4d|KL", "a|2n|2p|2q|2r|2s|2u|bF|fV|2w|2x|2y|2z|31|4r|4t|fW|fY|fa", "o|8|6Q|C4|fU|fb|36|2m", "o|2L|65", "statisticsToDisplay", "o|2L|fe", "byCategoryColumn", "o|2L|fg", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|MH|fd|ff|fh|3M|3O|3Q|3S", "o|2l|fg|1M|2m", "o|2l|fe|49|2m", "columnName", "o|2l|fl|1M|2m", "o|2l|h|1f|2m", "o|2l|S|1e|2m", "stdev", "o|2l|fp|1e|2m", "stderr", "o|2l|fr|1e|2m", "minimum", "o|2l|ft|1e|2m", "maximum", "o|2l|fv|1e|2m", "o|2l|e|1e|2m", "quartile1", "o|2l|fy|1e|2m", "quartile3", "o|2l|g0|1e|2m", "range", "o|2l|g2|1e|2m", "a|2n|2p|2q|2r|2s|2u|fj|2w|2x|2y|2z|31|4O|4P|4Q|4R|fk|fm|fn|fo|Zy|fq|Zz|fs|fu|fw|fx|fz|g1|g3", "o|8|6R|C4|fi|g4|36|2m", "position", "o|2Q|g6|GJ", "displayClosedSwatches", "o|2Q|g8|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|g7|g9", "o|2l|g6|1M|2m", "o|2l|g8|1N|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|gB|gC|2w|2x|2y|2z|31|Az", "o|8|6S|EP|gA|gD|36|2m", "o|2l|32|2G|2m", "a|2n|2p|2q|2r|2s|2u|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|6q|34|4Y|gF", "o|8|2G|2K|6o|gG|36|36", "pattern", "o|2L|gI", "allowImplicitIdentities", "o|2Q|gK|2U", "allowPermutations", "o|2Q|gM|2U", "requireNumericMatches", "o|2Q|gO|2U", "requireVariableMatches", "o|2Q|gQ|2U", "excludeMatches", "o|2L|gS", "matchExpressionWithBlanks", "o|2Q|gU|2U", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|7b|7d|7f|7h|7j|7l|7n|7p|7r|7t|7v|7x|gJ|gL|gN|gP|gR|gT|gV", "o|2l|gK|1N|2m", "o|2l|gM|1N|2m", "o|2l|gO|1N|2m", "o|2l|gQ|1N|2m", "o|2l|gS|5n|2m", "o|2l|gU|1N|2m", "numMatches", "o|2l|gd|1e|2m", "patternMatches", "o|4c|gf|1O|36|4d|4l", "a|2n|2p|2q|2r|2s|2u|7z|80|81|82|83|84|85|86|87|88|89|8A|gX|gY|gZ|ga|gb|gc|2w|2x|2y|2z|31|8D|34|ge|gg", "o|8|2H|8L|gW|gh|36|36", "a|64|65", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3B|3I|3K|3M|3O|3Q|3S|3U|3W|3Y|3a|3c|3e|3g|3i|3k|3m|3o|3q|41|LB|L6|L7", "o|2l|32|2I|2m", "a|2n|2p|2q|2r|2s|2u|43|44|45|46|47|48|4A|4B|4C|4D|4E|4F|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|4O|4P|4Q|4R|4S|gl|4U|4V|4X|4Y|34|4a|4h|4m|4p|4r|4t|4x|4z|51|53|55", "o|8|2I|gj|gk|gm|36|2m", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|3M|3O|3Q|3S", "eigenvalues", "o|4c|gp|1e|36|4d|KL", "eigenvectors", "a|HG|4f", "o|4c|gr|1e|36|4u|gs", "a|2n|2p|2q|2r|2s|2u|2w|2x|2y|2z|31|4O|4P|4Q|4R|gq|gt", "o|8|6T|8L|go|gu|36|2m", "a|A|C|D|E|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|r|1D|1E|1G|1H|1M|1N|1O|1S|1Y|1d|1e|1f|1i|1j|1k|1p|1s|1t|1u|1v|1w|1x|1y|1z|20|21|2C|2F|2G|2H|2I|2J|12|13|14|15|16|17|18|19|s|t|u|v|w|x|y|z|10|11|o|p|q|1B|1C|1F|1L|1R|1T|1V|1W|1Z|1g|1h|28|2E|F|G|H|K|I|J", "o|2l|32|2J|2m", "a|2n|2p|2q|2r|2s|2u|4E|4F|75|4G|2w|2x|2y|2z|31|4I|4K|4M|4N|gx|34|77|4U|79|7D|7F|7H|55|7I|4Y", "o|8|2J|gw|74|gy|36|36", "o|8|6U|6X|2i|6x|36|36", "separateByTopic", "o|2Q|h1|2U", "defaultTopicLabel", "o|2L|h3", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|h2|DY|h4", "o|2l|h1|1N|2m", "a|2n|2p|2q|2r|2s|2u|h6|2w|2x|2y|2z|31", "o|8|6V|6X|h5|h7|36|36", "a|C|D|2G|A|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|5Y|1B|1C|5Z|1G|1I|1O|1P|1R|1S|1T|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|1V|1W|1g|1h|1i|1j|1l|6B|1m|1n|1p|1q|1r|1s|1x|1y|26|28|29|2A|2C|2D|2E|6L|6M|6N|6S|2I|6W", "angleThreshold", "o|2L|hA", "a|2M|2O|2V|2X|2Z|2b|2d|2f|2h|AT|AV|3o|YL|98|hB", "o|2l|hA|1e|2m", "a|2n|2p|2q|2r|2s|2u|Aw|Ax|F7|YN|hD|2w|2x|2y|2z|31|Az|Xm|9A", "o|8|6W|h9|hC|hE|36|2m", "a|37|57|5A|6l|6t|6w|6y|6z|70|7K|7N|7O|7S|7U|7V|7Y|8F|8I|8J|8K|8M|8N|8W|8g|8j|8t|8w|96|9D|9H|9K|9N|9Q|9T|9W|9Z|9g|9j|9m|9p|9s|9v|9y|A1|AG|Be|Bf|Bp|Bs|Bu|Bv|Bw|Bx|By|Bz|C0|C1|C2|C3|C5|C6|C7|C8|C9|CA|CB|CC|D2|D3|D4|D5|DD|DE|DF|DG|DH|DI|DJ|DK|DL|DM|DR|DU|DV|Dg|Dh|Di|EO|Fi|G9|Gb|Hi|IJ|IQ|IT|IX|Ie|Ir|Ix|J0|K0|K3|KQ|KS|KT|KZ|Kb|Kc|Kd|Ke|Kg|Kp|L4|LW|Lb|Lm|Ln|Ly|M0|M1|M2|M4|MB|MC|MF|Ma|Ms|Mv|My|N1|NC|NL|NO|Ne|Nf|No|OC|OL|OV|OY|Of|Ot|PH|Ph|Qs|RG|RL|Rb|Rk|Ru|SJ|SU|Sg|Sl|U9|UC|UG|UK|UM|UX|Ul|VA|Vo|WA|WK|WN|WR|Wj|Ws|X3|X8|XG|XM|Xb|Xo|Xx|Y3|YI|YP|YS|YT|YW|YX|Ya|Yg|Yi|Yw|ZA|ZG|ZH|Zi|Zo|a2|aB|aL|aO|ag|b6|bK|ba|bc|bh|bs|bx|by|c1|cM|cb|cj|cn|d1|d4|dD|dF|dJ|dK|dO|da|dc|dn|e1|e7|eH|eN|eT|ea|em|f5|fH|fP|fc|g5|gE|gH|gi|gn|gv|gz|h0|h8|hF", "o|1|hG"], "hH"]);
31217
+ dist.decompress([["startType", "refs", "a|0|1", "title", "rightHandSide", "description", "xlabel", "ylabel", "statement", "introduction", "conclusion", "topic", "m", "me", "men", "md", "mdn", "mrow", "not", "and", "or", "xor", "isInteger", "isNumber", "isBetween", "sum", "product", "clampNumber", "wrapNumberPeriodic", "round", "setSmallToZero", "convertSetToList", "ceil", "floor", "abs", "sign", "mean", "median", "variance", "standardDeviation", "count", "min", "max", "mod", "gcd", "lcm", "extractMath", "clampFunction", "wrapFunctionPeriodic", "derivative", "extractMathOperator", "em", "alert", "q", "sq", "term", "c", "tag", "tage", "tagc", "attr", "ndash", "mdash", "nbsp", "ellipsis", "lq", "rq", "lsq", "rsq", "section", "subsection", "subsubsection", "paragraphs", "aside", "objectives", "problem", "exercise", "question", "activity", "example", "definition", "note", "theorem", "proof", "problems", "exercises", "ol", "ul", "odesystem", "cobwebPolyline", "equilibriumPoint", "equilibriumLine", "equilibriumCurve", "atom", "ion", "ionicCompound", "electronConfiguration", "orbitalDiagram", "orbitalDiagramInput", "sideBySide", "sbsGroup", "stack", "h", "idx", "div", "span", "pre", "displayDoenetML", "paginator", "paginatorControls", "matrixInput", "solution", "document", "text", "textList", "p", "boolean", "booleanList", "math", "mathList", "tupleList", "numberList", "collect", "ref", "point", "coords", "line", "lineSegment", "ray", "polyline", "polygon", "triangle", "rectangle", "regularPolygon", "circle", "parabola", "curve", "bezierControls", "controlVectors", "vector", "angle", "answer", "award", "mathInput", "textInput", "booleanInput", "choiceInput", "choice", "number", "integer", "graph", "function", "piecewiseFunction", "interval", "sequence", "slider", "spreadsheet", "cell", "row", "column", "cellBlock", "tabular", "table", "figure", "markers", "map", "pegboard", "intersection", "conditionalContent", "asList", "variantControl", "selectFromSequence", "select", "group", "animateFromSequence", "evaluate", "selectRandomNumbers", "sampleRandomNumbers", "selectPrimeNumbers", "samplePrimeNumbers", "substitute", "periodicSet", "image", "video", "hint", "intcomma", "pluralize", "feedback", "lorem", "updateValue", "callAction", "triggerSet", "functionIterates", "module", "setup", "footnote", "caption", "endpoint", "sort", "shuffle", "solveEquations", "subsetOfRealsInput", "subsetOfReals", "split", "bestFitLine", "regionBetweenCurveXAxis", "regionBetweenCurves", "regionHalfPlane", "codeEditor", "codeViewer", "hasSameFactoring", "dataFrame", "summaryStatistics", "legend", "label", "matchesPattern", "matrix", "eigenDecomposition", "latex", "blockQuote", "contentPicker", "stickyGroup", "a|3|4|5|6|7|8|9|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|1A|1B|1C|1D|1E|1F|1G|1H|1I|1J|1K|1L|1M|1N|1O|1P|1Q|1R|1S|1T|1U|1V|1W|1X|1Y|1Z|1a|1b|1c|1d|1e|1f|1g|1h|1i|1j|1k|1l|1m|1n|1o|1p|1q|1r|1s|1t|1u|1v|1w|1x|1y|1z|20|21|22|23|24|25|26|27|28|29|2A|2B|2C|2D|2E|2F|2G|2H|2I|2J|2K|2L|2M|2N|2O|2P|2Q|2R|2S|2T|2U|2V|2W|2X|2Y|2Z|2a|2b|2c|2d|2e|2f|2g|2h|2i|2j|2k|2l|2m|2n|2o|2p|2q|2r|2s|2t|2u|2v|2w|2x|2y|2z|30|31|32|33|34|35|36|37|38|39|3A|3B|3C|3D|3E|3F|3G|3H|3I|3J|3K|3L|3M|3N|3O|3P|3Q|3R|3S|3T|3U|3V|3W|3X|3Y|3Z", "else", "li", "feedbackDefinition", "feedbackDefinitions", "styleDefinition", "styleDefinitions", "when", "template", "option", "sources", "constraints", "constrainToGrid", "constrainToGraph", "attractToGrid", "constrainTo", "attractTo", "constraintUnion", "attractToConstraint", "constrainToInterior", "considerAsResponses", "case", "customAttribute", "a|3|4|5|3b|6|7|8|9|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|10|11|12|13|14|15|16|17|18|19|1A|1B|1C|1D|1E|1F|1G|1H|1I|1J|1K|1L|1M|1N|1O|1P|3c|1Q|1R|1S|1T|1U|1V|1W|1X|1Y|1Z|1a|3d|3e|3f|3g|1b|1c|1d|1e|1f|1g|1h|1i|1j|1k|1l|1m|1n|1o|1p|1q|1r|1s|1t|1u|1v|1w|1x|1y|1z|20|21|22|23|24|25|26|27|28|29|2A|2B|2C|2D|2E|2F|2G|2H|2I|3h|2J|2K|2L|2M|2N|2O|2P|2Q|2R|2S|2T|3i|3j|2U|2V|2W|2X|2Y|2Z|2a|2b|2c|2d|2e|2f|3k|2g|3l|3m|3n|3o|3p|3q|3r|3s|3t|2h|2i|2j|2k|2l|2m|2n|2o|2p|2q|2r|2s|2t|2u|2v|2w|2x|2y|2z|30|31|3u|3v|32|33|34|35|36|37|3w|38|39|3A|3B|3C|3D|3E|3F|3G|3H|3I|3J|3K|3L|3M|3N|3O|3P|3Q|3R|3S|3T|3U|3V|3W|3X|3Y|3Z", "type", "name", "attributes", "children", "textChildrenAllowed", "properties", "a|3y|3z|40|41|42|43", "element", "copySource", "hide", "disabled", "fixed", "fixLocation", "styleNumber", "isResponse", "newNamespace", "a|3z|46|47|48|49|4A|4B|4C|4D", "optional", "a|4F|3y", "b|T", "string", "a|4I", "o|4G|4H|4J", "true", "false", "a|4L|4M", "o|4G|4H|4N", "o|4E|4K|4K|4O|4O|4O|4O|4K|4O|4O", "a|1z", "o|4Q|3", "o|4Q|4", "o|4Q|5", "o|4Q|6", "o|4Q|7", "o|4Q|B", "o|4Q|C", "o|4Q|D", "o|4Q|E", "o|4Q|F", "o|4Q|G", "o|4Q|H", "o|4Q|I", "o|4Q|J", "o|4Q|K", "o|4Q|L", "o|4Q|M", "o|4Q|N", "o|4Q|O", "o|4Q|P", "o|4Q|Q", "o|4Q|R", "o|4Q|S", "o|4Q|T", "o|4Q|U", "o|4Q|V", "o|4Q|W", "o|4Q|X", "o|4Q|Y", "o|4Q|Z", "o|4Q|a", "o|4Q|b", "o|4Q|c", "o|4Q|d", "o|4Q|e", "o|4Q|f", "o|4Q|g", "o|4Q|h", "o|4Q|i", "o|4Q|j", "o|4Q|k", "o|4Q|l", "o|4Q|m", "o|4Q|n", "o|4Q|o", "o|4Q|p", "o|4Q|q", "o|4Q|r", "o|4Q|s", "o|4Q|t", "o|4Q|u", "o|4Q|v", "o|4Q|w", "o|4Q|x", "o|4Q|y", "o|4Q|z", "o|4Q|10", "o|4Q|11", "o|4Q|12", "o|4Q|13", "o|4Q|14", "o|4Q|15", "o|4Q|16", "o|4Q|1Q", "o|4Q|1S", "o|4Q|1T", "o|4Q|1V", "o|4Q|1W", "o|4Q|1X", "o|4Q|1Y", "o|4Q|1e", "o|4Q|1f", "o|4Q|1h", "o|4Q|1j", "o|4Q|1m", "o|4Q|1p", "o|4Q|1s", "o|4Q|1u", "o|4Q|1y", "o|4Q|1z", "o|4Q|20", "o|4Q|21", "o|4Q|22", "o|4Q|2D", "o|4Q|2F", "o|4Q|2G", "o|4Q|2H", "o|4Q|3h", "o|4Q|2J", "o|4Q|2K", "o|4Q|2L", "o|4Q|2M", "o|4Q|2N", "o|4Q|2O", "o|4Q|2P", "o|4Q|2R", "o|4Q|2S", "o|4Q|2T", "o|4Q|2U", "o|4Q|2X", "o|4Q|2f", "o|4Q|2h", "o|4Q|2i", "o|4Q|2j", "o|4Q|2l", "o|4Q|2m", "o|4Q|2n", "o|4Q|2p", "o|4Q|2q", "o|4Q|2r", "o|4Q|2s", "o|4Q|2t", "o|4Q|2u", "o|4Q|2v", "o|4Q|2z", "o|4Q|30", "o|4Q|32", "o|4Q|33", "o|4Q|34", "o|4Q|35", "o|4Q|36", "o|4Q|37", "o|4Q|39", "o|4Q|3B", "o|4Q|3C", "o|4Q|3D", "o|4Q|3E", "o|4Q|3G", "o|4Q|3H", "o|4Q|3I", "o|4Q|3O", "o|4Q|3S", "o|4Q|3T", "o|4Q|3U", "o|4Q|3W", "a|4R|4S|4T|4U|4V|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|5Y|5Z|5a|5b|5c|5d|5e|5f|5g|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|5z|60|61|62|63|64|65|66|67|68|69|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6N|6O|6P|6Q|6R|6S|6T|6U|6V|6W|6X|6Y|6Z|6a|6b", "isArray", "a|3z|3y|6d", "b|F", "o|6e|47|1s|6f", "modifyIndirectly", "o|6e|6h|1s|6f", "o|6e|4B|2P|6f", "o|6e|4C|1s|6f", "o|6e|4D|1s|6f", "permid", "o|6e|6m|1p|6f", "hidden", "o|6e|6o|1s|6f", "o|6e|48|1s|6f", "o|6e|49|1s|6f", "o|6e|4A|1s|6f", "doenetML", "o|6e|6t|1p|6f", "value", "o|6e|6v|3|6f", "o|6e|1p|1p|6f", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|6w|6x", "o|44|45|3|4P|6c|4H|6y", "format", "simplify", "expand", "displayDigits", "displayDecimals", "displaySmallAsZero", "padZeros", "renderMode", "unordered", "createVectors", "createIntervals", "functionSymbols", "sourcesAreFunctionSymbols", "splitSymbols", "parseScientificNotation", "displayBlanks", "draggable", "layer", "anchor", "positionFromAnchor", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J", "a|1p|3W", "o|4G|4H|7L", "none", "full", "numbers", "numberspreserveorder", "a|7N|7O|7P|7Q", "o|4G|4H|7R", "upperright", "upperleft", "lowerright", "lowerleft", "top", "bottom", "left", "right", "center", "a|7T|7U|7V|7W|7X|7Y|7Z|7a|7b", "o|4G|4H|7c", "o|7K|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d", "a|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5T|5U|5V|5W|5X|5Y|5Z|5d|5e|5g|5j|5k|5l|5n|5o|5r|5v|5w|5x|5y|5z|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6Q|6U|6W|6a|6b|4X|4Y|4Z|4c", "o|6e|70|1p|6f", "o|6e|71|1p|6f", "o|6e|72|1s|6f", "o|6e|77|1p|6f", "o|6e|79|1s|6f", "o|6e|7A|1s|6f", "o|6e|7B|1q|6f", "o|6e|7D|1s|6f", "o|6e|7E|1s|6f", "o|6e|7F|1s|6f", "o|6e|7G|1s|6f", "o|6e|7H|2O|6f", "o|6e|7J|1p|6f", "textColor", "o|6e|7t|1p|6f", "backgroundColor", "o|6e|7v|1p|6f", "textStyleDescription", "o|6e|7x|1p|6f", "o|6e|7I|20|6f", "o|6e|73|2P|6f", "o|6e|74|2P|6f", "o|6e|75|2O|6f", "o|6e|76|1s|6f", "o|6e|78|1s|6f", "o|6e|6v|4|6f", "o|6e|2O|2O|6f", "o|6e|N|1s|6f", "isNumeric", "o|6e|88|1s|6f", "o|6e|3W|3W|6f", "numDimensions", "o|6e|8B|2P|6f", "indexedArrayDescription", "a|3z|3y|6d|8B|8D", "n|1", "a|6d|3y", "o|8G|6f|2F", "a|8H", "o|8E|2F|1u|4H|8F|8I", "list", "a|6d|3y|8B", "o|8L|4H|1u|8F", "a|8M", "o|8E|8K|1u|4H|8F|8N", "matrixSize", "o|6e|8P|1x|6f", "numRows", "o|6e|8R|2P|6f", "numColumns", "o|6e|8T|2P|6f", "n|2", "o|8G|6f|3U", "a|8W|8W", "o|8E|3U|1u|4H|8V|8X", "x", "o|6e|8Z|1u|6f", "y", "o|6e|8b|1u|6f", "z", "o|6e|8d|1u|6f", "numListItems", "o|6e|8f|2P|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|85|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|4|7e|7f|4H|8h", "o|6e|6v|5|6f", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|8j|6x", "o|44|45|5|4P|6c|4H|8k", "assignNames", "rendered", "createComponentOfType", "numComponents", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|8n|8o|8p|2j", "o|8q|4K|4K|4K|4O|4O|4O|4O|4K|4K|4O|4O|4K|4K|4O", "o|4Q|8", "o|4Q|9", "o|4Q|A", "o|4Q|17", "o|4Q|18", "o|4Q|19", "o|4Q|1A", "o|4Q|1B", "o|4Q|1C", "o|4Q|1D", "o|4Q|1E", "o|4Q|1F", "o|4Q|1G", "o|4Q|1H", "o|4Q|1I", "o|4Q|1J", "o|4Q|1K", "o|4Q|1L", "o|4Q|1M", "o|4Q|1N", "o|4Q|1O", "o|4Q|1P", "o|4Q|1R", "o|4Q|1U", "o|4Q|1Z", "o|4Q|1a", "o|4Q|1b", "o|4Q|1c", "o|4Q|1d", "o|4Q|1g", "o|4Q|1i", "o|4Q|1k", "o|4Q|1l", "o|4Q|1n", "o|4Q|1o", "o|4Q|1q", "o|4Q|1r", "o|4Q|1t", "o|4Q|1v", "o|4Q|1w", "o|4Q|1x", "o|4Q|23", "o|4Q|24", "o|4Q|25", "o|4Q|26", "o|4Q|27", "o|4Q|28", "o|4Q|29", "o|4Q|2A", "o|4Q|2B", "o|4Q|2C", "o|4Q|2E", "o|4Q|2I", "o|4Q|2Q", "o|4Q|2V", "o|4Q|2W", "o|4Q|2Y", "o|4Q|2Z", "o|4Q|2a", "o|4Q|2b", "o|4Q|2c", "o|4Q|2d", "o|4Q|2e", "o|4Q|2g", "o|4Q|2k", "o|4Q|2o", "o|4Q|2w", "o|4Q|2x", "o|4Q|2y", "o|4Q|31", "o|4Q|38", "o|4Q|3A", "o|4Q|3F", "o|4Q|3J", "o|4Q|3K", "o|4Q|3L", "o|4Q|3M", "o|4Q|3N", "o|4Q|3P", "o|4Q|3Q", "o|4Q|3R", "o|4Q|3V", "o|4Q|3X", "o|4Q|3Y", "o|4Q|3Z", "a|4R|4S|4T|4U|4V|8s|8t|8u|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|9A|9B|9C|9D|5S|9E|5T|5U|9F|5V|5W|5X|5Y|9G|9H|9I|9J|9K|5Z|5a|9L|5b|9M|5c|9N|9O|5d|9P|9Q|5e|9R|9S|5f|9T|5g|9U|9V|9W|5h|5i|5j|5k|5l|9X|9Y|9Z|9a|9b|9c|9d|9e|9f|9g|5m|9h|5n|5o|5p|9i|5q|5r|5s|5t|5u|5v|5w|5x|9j|5y|5z|60|61|9k|9l|62|9m|9n|9o|9p|9q|9r|9s|63|9t|64|65|66|9u|67|68|69|9v|6A|6B|6C|6D|6E|6F|6G|9w|9x|9y|6H|6I|9z|6J|6K|6L|6M|6N|6O|A0|6P|A1|6Q|6R|6S|6T|A2|6U|6V|6W|A3|A4|A5|A6|A7|6X|A8|A9|AA|6Y|6Z|6a|AB|6b|AC|AD|AE", "o|6e|8n|1s|6f", "a|6g|6i|6j|6l|6n|AG|6p|6q|6r|6s|6u", "o|44|45|3b|8r|AF|4H|AH", "forObject", "a|3z|46|47|48|49|4A|4B|4C|4D|AJ|7G|7H|7I|7J", "o|AK|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O|4K|4K|7d", "hasLatex", "o|6e|AM|1s|6f", "o|6e|6v|6|6f", "a|6g|6i|6j|6k|6l|6n|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|AN|6x|8A|AO", "o|44|45|6|AL|6c|4H|AP", "o|6e|6v|7|6f", "a|6g|6i|6j|6k|6l|6n|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|AN|6x|8A|AR", "o|44|45|7|AL|6c|4H|AS", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u", "o|44|45|8|4P|AF|4H|AU", "o|44|45|9|4P|AF|4H|AU", "o|44|45|A|4P|AF|4H|AU", "isLatex", "a|3z|46|47|48|49|4A|4B|4C|4D|7G|7H|AY|7I|7J", "o|AZ|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4K|4O|4K|7d", "a|4S|4U|4V|4W|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|59|5V|5W|5Y|5Z|5e|5f|5g|5k|5q|5v|5w|5x|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6U|6X|6Y|6Z|6a|6b|5K|5L|5M|5N|5O|5P|5Q|5R|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J", "o|6e|AY|1s|6f", "o|6e|6v|B|6f", "o|6e|1u|1u|6f", "numWords", "o|6e|Af|2P|6f", "words", "o|8L|4H|1p|8F", "a|Ai", "o|8E|Ah|1p|4H|8F|Aj", "numCharacters", "o|6e|Al|2P|6f", "characters", "o|8E|An|1p|4H|8F|Aj", "o|8E|8K|1p|4H|8F|Aj", "a|6g|6i|6j|6k|6l|6n|7q|7r|Ac|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|Ad|6x|Ae|86|Ag|Ak|Am|Ao|8g|Ap", "o|44|45|B|Aa|Ab|4H|Aq", "a|3z|46|47|48|49|4A|4B|4C|4D|7G|7H|7I|7J", "o|As|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4K|4K|7d", "a|6g|6i|6j|6k|6l|6n|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|8A|6x", "o|44|45|C|At|6c|4H|Au", "o|44|45|D|At|6c|4H|Au", "equationTag", "o|6e|Ax|1p|6f", "a|6g|6i|6j|6k|6l|6n|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|8A|6x|Ay", "o|44|45|E|At|6c|4H|Az", "a|4c", "o|44|45|F|At|B1|6f|Au", "o|44|45|G|At|B1|6f|Au", "a|3z|46|47|48|49|4A|4B|4C|4D|7G|7H|7I|7J|2O", "o|B4|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4K|4K|7d|4O", "o|44|45|H|B5|6c|4H|Az", "symbolicEquality", "expandOnCompare", "simplifyOnCompare", "unorderedCompare", "matchByExactPositions", "allowedErrorInNumbers", "includeErrorInNumberExponents", "allowedErrorIsAbsolute", "numSignErrorsMatched", "numPeriodicSetMatchesRequired", "caseInsensitiveMatch", "matchBlanks", "a|3z|46|47|48|49|4A|4B|4C|4D|B7|B8|B9|BA|BB|BC|BD|BE|BF|BG|BH|BI", "o|BJ|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|7S|4O|4O|4K|4O|4O|4K|4K|4O|4O", "a|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5T|5U|5V|5W|5X|5Y|5Z|5d|5e|5g|5j|5k|5l|5n|5o|5r|5v|5w|5x|5y|5z|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6Q|6U|6W|6a|6b|4U|4V|4d|4e|4f|4g|4h|4i|4j|5f|5q|6X|6Y|6Z|5t|9G", "o|6e|B7|1s|6f", "o|6e|B8|1s|6f", "o|6e|B9|1p|6f", "o|6e|BA|1s|6f", "o|6e|BB|1s|6f", "o|6e|BC|2O|6f", "o|6e|BD|1s|6f", "o|6e|BE|1s|6f", "o|6e|BF|2O|6f", "o|6e|BG|2P|6f", "o|6e|BH|1s|6f", "o|6e|BI|1s|6f", "valuePreOperator", "o|6e|BY|I|6f", "o|6e|6v|1s|6f", "a|6g|6i|6j|6k|6l|6n|BM|BN|BO|BP|BQ|BR|BS|BT|BU|BV|BW|BX|6p|6q|6r|6s|6u|6x|BZ|Ba", "o|44|45|I|BK|BL|4H|Bb", "a|4d|4e|4f|4g|4h|4i|4j|5f|5t|6X|6Z", "a|6g|6i|6j|6k|6l|6n|BM|BN|BO|BP|BQ|BR|BS|BT|BU|BV|BW|BX|6p|6q|6r|6s|6u|Ba|6x", "o|44|45|J|BK|Bd|4H|Be", "o|44|45|K|BK|Bd|4H|Be", "o|44|45|L|BK|Bd|4H|Be", "a|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5T|5U|5V|5W|5X|5Y|5Z|5d|5e|5g|5j|5k|5l|5n|5o|5r|5v|5w|5x|5y|5z|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6Q|6U|6W|6a|6b", "o|44|45|M|BK|Bi|4H|Be", "o|44|45|N|BK|Bi|4H|Be", "limits", "strict", "a|3z|46|47|48|49|4A|4B|4C|4D|B7|B8|B9|BA|BB|BC|BD|BE|BF|BG|BH|BI|Bl|Bm", "o|Bn|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|7S|4O|4O|4K|4O|4O|4K|4K|4O|4O|4K|4O", "o|6e|Bl|1x|6f", "o|6e|Bm|1s|6f", "a|6g|6i|6j|6k|6l|6n|BM|BN|BO|BP|BQ|BR|BS|BT|BU|BV|BW|BX|Bp|Bq|6p|6q|6r|6s|6u|Ba|6x", "o|44|45|O|Bo|Bi|4H|Br", "forceSymbolic", "forceNumeric", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|Bt|Bu", "o|Bv|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d|4O|4O", "o|6e|Bt|1s|6f", "o|6e|Bu|1s|6f", "o|6e|6v|P|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|Bx|By|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|Bz|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|P|Bw|Bi|4H|C0", "o|6e|6v|Q|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|Bx|By|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|C2|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|Q|Bw|Bi|4H|C3", "lowerValue", "upperValue", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|C5|C6", "o|C7|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d|4K|4K", "o|6e|C5|2O|6f", "o|6e|C6|2O|6f", "o|6e|6v|R|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|C9|CA|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|CB|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|R|C8|7f|4H|CC", "o|6e|6v|S|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|C9|CA|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|CE|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|S|C8|7f|4H|CF", "numDecimals", "numDigits", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|CH|CI", "o|CJ|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d|4K|4K", "o|6e|CH|2O|6f", "o|6e|CI|2O|6f", "o|6e|6v|T|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|CL|CM|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|CN|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|T|CK|7f|4H|CO", "threshold", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|CQ", "o|CR|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d|4K", "o|6e|CQ|2O|6f", "o|6e|6v|U|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|CT|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|CU|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|U|CS|7f|4H|CV", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J", "o|CX|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d", "o|6e|6v|V|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|CZ|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|V|CY|7f|4H|Ca", "o|6e|6v|W|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|Cc|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|W|7e|7f|4H|Cd", "o|6e|6v|X|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|Cf|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|X|7e|7f|4H|Cg", "o|6e|6v|Y|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|Ci|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|Y|7e|7f|4H|Cj", "o|6e|6v|Z|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|Cl|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|Z|7e|7f|4H|Cm", "o|6e|6v|a|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|Bx|By|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|Co|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|a|Bw|Bi|4H|Cp", "o|6e|6v|b|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|Bx|By|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|Cr|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|b|Bw|Bi|4H|Cs", "population", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|Bt|Bu|Cu", "o|Cv|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d|4O|4O|4O", "o|6e|Cu|1s|6f", "o|6e|6v|c|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|Bx|By|Cx|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|Cy|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|c|Cw|Bi|4H|Cz", "o|6e|6v|d|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|Bx|By|Cx|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|D1|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|d|Cw|Bi|4H|D2", "o|6e|6v|e|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|Bx|By|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|D4|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|e|Bw|Bi|4H|D5", "o|6e|6v|f|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|Bx|By|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|D7|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|f|Bw|Bi|4H|D8", "o|6e|6v|g|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|Bx|By|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|DA|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|g|Bw|Bi|4H|DB", "o|6e|6v|h|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|Bx|By|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|DD|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|h|Bw|Bi|4H|DE", "o|6e|6v|i|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|Bx|By|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|DG|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|i|Bw|Bi|4H|DH", "o|6e|6v|j|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|Bx|By|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|DJ|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|j|Bw|Bi|4H|DK", "operandNumber", "argumentNumber", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|3y|DM|DN", "operand", "functionargument", "numoperands", "a|DP|2R|DQ|DR", "o|4G|4H|DS", "o|DO|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d|DT|4K|4K", "o|6e|DM|2O|6f", "o|6e|DN|2O|6f", "o|6e|6v|k|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|DV|DW|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|DX|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|k|DU|7f|4H|DY", "xscale", "yscale", "numInputs", "numOutputs", "domain", "labelIsName", "applyStyleToLabel", "labelPosition", "minima", "maxima", "extrema", "through", "throughSlopes", "variables", "variable", "symbolic", "nearestPointAsCurve", "a|3z|46|47|48|49|4A|4B|4C|4D|71|72|Da|Db|Dc|Dd|De|Df|Dg|Dh|7H|Di|Dj|Dk|Dl|Dm|Dn|Do|Dp|73|74|75|76|Dq|C5|C6", "a|7T|7U|7V|7W|7X|7Y|7Z|7a", "o|4G|4H|Ds", "o|Dr|4K|4K|4O|4O|4O|4O|4K|4O|4O|7S|4O|4K|4K|4K|4K|4K|4O|4O|Dt|4K|4K|4K|4K|4K|4K|4K|4K|4O|4K|4K|4K|4O|4O|4K|4K", "a|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5T|5U|5V|5W|5X|5Y|5Z|5d|5e|5g|5j|5k|5l|5n|5o|5r|5v|5w|5x|5y|5z|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6Q|6U|6W|6a|6b|4U|4V|6Y", "expandSpecified", "o|6e|Dw|1s|6f", "o|6e|Da|2O|6f", "o|6e|Db|2O|6f", "o|6e|Df|1s|6f", "o|6e|Dg|1s|6f", "o|6e|Dh|1p|6f", "o|6e|3S|3S|6f", "styleDescription", "o|6e|E4|1p|6f", "styleDescriptionWithNoun", "o|6e|E6|1p|6f", "o|6e|Dc|2P|6f", "o|6e|Dd|2P|6f", "o|8L|4H|2T|8F", "a|EA", "o|8E|De|2T|4H|8F|EB", "o|6e|72|1p|6f", "o|6e|Dp|1s|6f", "_variableName", "o|8L|4H|EF|8F", "a|EG", "o|8E|Dn|EF|4H|8F|EH", "formula", "o|6e|EJ|1u|6f", "numMinima", "o|6e|EL|2O|6f", "o|8L|4H|20|8F", "o|8G|6f|20", "a|EN|EO", "o|8E|Di|2O|4H|8V|EP", "globalMinimum", "a|EO", "o|8E|ER|2O|4H|8F|ES", "globalInfimum", "o|8E|EU|2O|4H|8F|ES", "numMaxima", "o|6e|EW|2O|6f", "o|8E|Dj|2O|4H|8V|EP", "globalMaximum", "o|8E|EZ|2O|4H|8F|ES", "globalSupremum", "o|8E|Eb|2O|4H|8F|ES", "numExtrema", "o|6e|Ed|2O|6f", "o|8E|Dk|2O|4H|8V|EP", "o|6e|Do|EF|6f", "a|6g|6i|6j|6k|6l|6n|Dx|Dy|Dz|E0|E1|E2|7r|C9|CA|6p|6q|6r|6s|6u|E3|7u|7w|7y|E5|E7|80|81|82|83|E8|E9|EC|7h|ED|EE|EI|EK|8A|EM|EQ|ET|EV|EX|EY|Ea|Ec|Ee|Ef|Eg", "o|44|45|l|Du|Dv|4H|Eh", "o|44|45|m|Du|Dv|4H|Eh", "derivVariables", "derivVariable", "a|3z|46|47|48|49|4A|4B|4C|4D|71|72|Da|Db|Dc|Dd|De|Df|Dg|Dh|7H|Di|Dj|Dk|Dl|Dm|Dn|Do|Dp|73|74|75|76|Dq|Ek|El", "o|Em|4K|4K|4O|4O|4O|4O|4K|4O|4O|7S|4O|4K|4K|4K|4K|4K|4O|4O|Dt|4K|4K|4K|4K|4K|4K|4K|4K|4O|4K|4K|4K|4O|4O|4K|4K", "numDerivatives", "o|6e|Eo|2P|6f", "o|8E|Ek|EF|4H|8F|EH", "a|6g|6i|6j|6k|6l|6n|Dx|Dy|Dz|E0|E1|E2|7r|6p|6q|6r|6s|6u|E3|7u|7w|7y|E5|E7|80|81|82|83|E8|E9|EC|7h|ED|EE|EI|EK|8A|EM|EQ|ET|EV|EX|EY|Ea|Ec|Ee|Ef|Ep|Eq|Eg", "o|44|45|n|En|Dv|4H|Er", "o|6e|6v|1p|6f", "a|6g|6i|6j|6k|6l|6n|7q|7r|Ac|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|Et|6x|Ae|86|Ag|Ak|Am|Ao|8g|Ap", "o|44|45|o|Aa|Bi|6f|Eu", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|6x", "o|44|45|p|4P|6c|4H|Ew", "o|44|45|q|4P|6c|4H|Ew", "o|44|45|r|4P|6c|4H|Ew", "o|44|45|s|4P|6c|4H|Ew", "o|44|45|t|4P|6c|4H|Ew", "o|44|45|u|4P|6c|4H|Ew", "o|44|45|v|4P|6c|4H|Ew", "o|44|45|w|4P|6c|4H|Ew", "o|44|45|x|4P|6c|4H|Ew", "o|44|45|y|4P|6c|4H|Ew", "a|", "o|44|45|z|4P|F7|6f|Ew", "o|44|45|10|4P|F7|6f|Ew", "o|44|45|11|4P|F7|6f|Ew", "o|44|45|12|4P|F7|6f|Ew", "o|44|45|13|4P|F7|6f|Ew", "o|44|45|14|4P|F7|6f|Ew", "o|44|45|15|4P|F7|6f|Ew", "o|44|45|16|4P|F7|6f|Ew", "aggregateScores", "weight", "sectionWideCheckWork", "submitLabel", "submitLabelNoCorrectness", "displayDigitsForCreditAchieved", "boxed", "includeAutoName", "includeAutoNumber", "includeAutoNameIfNoTitle", "includeAutoNumberIfNoTitle", "level", "includeParentNumber", "a|3z|46|47|48|49|4A|4B|4C|4D|FG|FH|FI|FJ|FK|FL|FM|FN|FO|FP|FQ|2j|FR|FS", "o|FT|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4K|4O|4K|4K|4K|4O|4O|4O|4O|4O|4O|4K|4O", "a|9u|4R|A0|4S|4T|4U|4V|8s|8t|8u|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|9A|9B|9C|9D|5S|9E|5T|5U|9F|5V|5W|5X|5Y|9G|9H|9I|9J|9K|5Z|5a|9L|5b|9M|5c|9N|9O|5d|9P|9Q|5e|9R|9S|5f|9T|5g|9U|9V|9W|5h|5i|5j|5k|5l|9X|9Y|9Z|9a|9b|9c|9d|9e|9f|9g|5m|9h|5n|5o|5p|9i|5q|5r|5s|5t|5u|5v|5w|5x|9j|5y|5z|60|61|9k|9l|62|9m|9n|9o|9p|9q|9r|9s|63|9t|64|65|66|67|68|69|9v|6A|6B|6C|6D|6E|6F|6G|9w|9x|9y|6H|6I|9z|6J|6K|6L|6M|6N|6O|6P|A1|6Q|6R|6S|6T|A2|6U|6V|6W|A3|A4|A5|A6|A7|6X|A8|A9|AA|6Y|6Z|6a|AB|6b|AC|AD|AE", "o|6e|FG|1s|6f", "o|6e|FH|2O|6f", "o|6e|FI|1s|6f", "o|6e|FJ|1p|6f", "o|6e|FK|1p|6f", "o|6e|FL|2P|6f", "o|6e|FM|1s|6f", "o|6e|FN|1s|6f", "o|6e|FO|1s|6f", "o|6e|FP|1s|6f", "o|6e|FQ|1s|6f", "o|6e|2j|1s|6f", "o|6e|FS|1s|6f", "sectionNumber", "o|6e|Fj|1p|6f", "o|6e|3|1p|6f", "creditAchieved", "o|6e|Fm|2O|6f", "percentCreditAchieved", "o|6e|Fo|2O|6f", "open", "o|6e|Fq|1s|6f", "a|6g|6i|6j|6k|6l|6n|FW|FX|FY|FZ|Fa|Fb|Fc|Fd|Fe|Ff|Fg|Fh|Fi|6p|6q|6r|6s|6u|Fk|Fl|Fn|Fp|Fr", "o|44|45|17|FU|FV|4H|Fs", "o|44|45|18|FU|FV|4H|Fs", "o|44|45|19|FU|FV|4H|Fs", "o|44|45|1A|FU|FV|4H|Fs", "collapsible", "startOpen", "a|3z|46|47|48|49|4A|4B|4C|4D|FG|FH|FI|FJ|FK|FL|FM|FN|FO|FP|FQ|2j|FR|FS|Fx|Fy", "o|Fz|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4K|4O|4K|4K|4K|4O|4O|4O|4O|4O|4O|4K|4O|4O|4O", "o|6e|Fx|1s|6f", "a|6g|6i|6j|6k|6l|6n|FW|FX|FY|FZ|Fa|Fb|Fc|Fd|Fe|Ff|Fg|Fh|Fi|G1|6p|6q|6r|6s|6u|Fk|Fl|Fn|Fp|Fr", "o|44|45|1B|G0|FV|4H|G2", "o|44|45|1C|FU|FV|4H|Fs", "o|44|45|1D|FU|FV|4H|Fs", "o|44|45|1E|FU|FV|4H|Fs", "o|44|45|1F|FU|FV|4H|Fs", "o|44|45|1G|FU|FV|4H|Fs", "o|44|45|1H|FU|FV|4H|Fs", "o|44|45|1I|FU|FV|4H|Fs", "o|44|45|1J|FU|FV|4H|Fs", "o|44|45|1K|FU|FV|4H|Fs", "renameTo", "a|3z|46|47|48|49|4A|4B|4C|4D|FG|FH|FI|FJ|FK|FL|FM|FN|FO|FP|FQ|2j|FR|GD|Fx|Fy", "o|GE|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4K|4O|4K|4K|4K|4O|4O|4O|4O|4O|4O|4K|4K|4O|4O", "a|6g|6i|6j|6k|6l|6n|FW|FX|FY|FZ|Fa|Fb|Fc|Fd|Fe|Ff|Fg|Fh|G1|6p|6q|6r|6s|6u|Fk|Fl|Fn|Fp|Fr", "o|44|45|1L|GF|FV|4H|GG", "a|3z|46|47|48|49|4A|4B|4C|4D|FG|FH|FI|FJ|FK|FL|FM|FN|FO|FP|FQ|2j|FR|GD", "o|GI|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4K|4O|4K|4K|4K|4O|4O|4O|4O|4O|4O|4K|4K", "a|6g|6i|6j|6k|6l|6n|FW|FX|FY|FZ|Fa|Fb|Fc|Fd|Fe|Ff|Fg|Fh|6p|6q|6r|6s|6u|Fk|Fl|Fn|Fp|Fr", "o|44|45|1M|GJ|FV|4H|GK", "o|44|45|1N|GJ|FV|4H|GK", "marker", "cols", "a|3z|46|47|48|49|4A|4B|4C|4D|3S|FR|GN|GO", "o|GP|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K", "o|4Q|3c", "a|GR", "o|6e|3S|1p|6f", "a|6g|6i|6j|6k|6l|6n|GT|6p|6q|6r|6s|6u", "o|44|45|1O|GQ|GS|6f|GU", "o|44|45|1P|GQ|GS|6f|GU", "o|44|45|3c|4P|AF|4H|Ew", "independentVariable", "initialIndependentVariableValue", "chunkSize", "tolerance", "maxIterations", "hideInitialCondition", "initialConditions", "a|3z|46|47|48|49|4A|4B|4C|4D|GY|GZ|73|74|75|76|77|Ga|Gb|Gc|Gd|Ge|Dn|2O", "o|Gf|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|4O|4K|4K|4K|4K|4O|4K|4K|4O", "a|4S", "o|6e|GY|EF|6f", "o|6e|GZ|1u|6f", "o|6e|Ga|2O|6f", "o|6e|Gb|2O|6f", "o|6e|Gc|2O|6f", "o|6e|Gd|1s|6f", "o|6e|2O|1s|6f", "rhss", "o|8E|Gp|1u|4H|8F|8N", "o|8E|Ge|1u|4H|8F|8N", "numericalSolutions", "o|8L|4H|2R|8F", "a|Gt", "o|8E|Gs|2R|4H|8F|Gu", "rhs", "o|6e|Gw|1u|6f", "righthandside", "o|6e|Gy|1u|6f", "righthandsides", "o|8E|H0|1u|4H|8F|8N", "initialCondition", "o|6e|H2|1u|6f", "numericalSolution", "o|6e|H4|2R|6f", "a|6g|6i|6j|6k|6l|6n|Gi|Gj|7j|Gk|Gl|Gm|Gn|Go|6p|6q|6r|6s|6u|80|81|82|83|7u|7w|7y|EI|Gq|Gr|Ay|8A|Gv|Gx|Gz|H1|H3|H5", "o|44|45|1Q|Gg|Gh|6f|H6", "verticesDraggable", "vertices", "showCoordsWhenDragging", "rigid", "preserveSimilarity", "rotationHandleVertices", "rotateAround", "rotationCenter", "rotationVertex", "allowRotation", "allowTranslation", "allowDilation", "minShrink", "attractThreshold", "numPoints", "numIterationsRequired", "initialPoint", "lockToSolution", "defaultPoint", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|H8|H9|HA|HB|HC|HD|HE|HF|HG|HH|HI|HJ|HK|73|74|75|76|HL|HM|Do|HN|HO|2R|HP|HQ", "centroid", "vertex", "a|HS|HT|20", "o|4G|4H|HU", "o|HR|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O|4O|4O|4K|HV|4K|4K|4O|4O|4O|4K|4K|4K|4K|4O|4K|4K|4K|4K|4K|4K|4O|4K", "a|4U|4V|6Y", "o|6e|7H|2P|6f", "o|6e|HA|1s|6f", "o|6e|HB|1s|6f", "o|6e|HH|1s|6f", "o|6e|HI|1s|6f", "o|6e|HL|2O|6f", "o|6e|HM|2O|6f", "o|6e|HN|2O|6f", "o|6e|HC|1s|6f", "o|6e|HJ|1s|6f", "o|6e|H8|1s|6f", "o|6e|8B|2O|6f", "o|8E|H9|1u|4H|8V|EP", "length", "o|6e|Hl|2O|6f", "o|8E|HO|1u|4H|8F|ES", "correctVertices", "o|8L|4H|1s|8F", "a|Hp", "o|8E|Ho|1s|4H|8F|Hq", "fractionCorrectVertices", "o|6e|Hs|2O|6f", "numGradedVertices", "o|6e|Hu|2O|6f", "numCorrectVertices", "o|6e|Hw|2O|6f", "fractionCorrectVerticesAdjusted", "o|6e|Hy|2O|6f", "numGradedVerticesAdjusted", "o|6e|I0|2O|6f", "numIterateValues", "o|6e|I2|2O|6f", "iterateValues", "o|8E|I4|1u|4H|8F|8N", "numVertices", "o|6e|I6|2O|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|HZ|Ha|Hb|Hc|Hd|He|Eg|Hf|6p|6q|6r|6s|6u|E3|80|81|82|83|E5|E7|Hg|Hh|Hi|Hj|Hk|Hm|Hn|Hr|Ht|Hv|Hx|Hz|I1|I3|I5|I7", "o|44|45|1R|HW|HX|6f|I8", "xs", "hideOffGraphIndicator", "stable", "switchable", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|8Z|8b|8d|IA|21|73|74|75|76|Dh|HA|IB|IC|ID", "o|IE|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4K|4K|4K|4K|4K|4K|4K|4K|4O|Dt|4O|4O|4O|4O", "o|4Q|3l", "a|4U|4V|6Y|4S|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|5T|5Y|5g|5j|5k|5n|60|61|67|6A|6F|6G|6Q|6U|6a|IG|4W|59|5Z|5e|5w|5x|62|6B|6C|6D|6E|6H|6I|6J|6b|56|57|58|5U|5V|5W|5X|5d|5l|5o|5r|5v|5y|5z|6W", "o|6e|IC|1s|6f", "o|6e|ID|1s|6f", "o|6e|IB|1s|6f", "o|8E|IA|1u|4H|8F|8N", "o|6e|21|21|6f", "constraintUsed", "o|6e|IN|1s|6f", "numDimensionsForConstraints", "o|6e|IP|2O|6f", "o|6e|6v|21|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|E2|HZ|II|IJ|6p|6q|6r|6s|6u|E3|80|81|82|83|7u|7w|7y|E5|E7|IK|Hj|IL|IM|8A|IO|IQ|8a|8c|8e|IR", "o|44|45|1S|IF|IH|4H|IS", "equation", "slope", "perpendicularTo", "parallelTo", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|IU|Dl|IV|IW|IX|Dn|73|74|75|76|Dh|IC|ID", "a|7T|7U|7V|7W", "o|4G|4H|IZ", "o|IY|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4K|4K|4K|4K|4K|4K|4K|4K|4K|4O|Ia|4O|4O", "a|4U|4V|6Y|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5T|5U|5V|5W|5X|5Y|5Z|5d|5e|5g|5j|5k|5l|5n|5o|5r|5v|5w|5x|5y|5z|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6Q|6U|6W|6a|6b", "points", "o|8E|Id|1u|4H|8V|EP", "o|6e|IU|1u|6f", "coeff0", "o|6e|Ig|1u|6f", "coeffvar1", "o|6e|Ii|1u|6f", "coeffvar2", "o|6e|Ik|1u|6f", "o|6e|IV|1u|6f", "xintercept", "o|6e|In|1u|6f", "yintercept", "o|6e|Ip|1u|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|E2|II|IJ|6p|6q|6r|6s|6u|E3|80|81|82|83|7u|7w|7y|E5|E7|Hj|EI|Ie|If|Ih|Ij|Il|Im|Io|Iq|8A", "o|44|45|1T|Ib|Ic|4H|Ir", "flipFunction", "numDiscretizationPoints", "periodic", "splineTension", "extrapolateBackward", "extrapolateForward", "splineForm", "parMin", "parMax", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|Dh|It|Iu|Iv|Iw|Ix|Iy|Iz|Do|Dl|J0|J1|HA|Dq|73|74|75|76|IC|ID", "centripetal", "uniform", "a|J3|J4", "o|4G|4H|J5", "o|J2|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|Dt|4O|4K|4O|4K|4O|4O|J6|4K|4K|4K|4K|4O|4O|4K|4K|4K|4O|4O|4O", "a|4U|4V|6Y|56|57|58|5y|5z|5m|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|59|5T|5U|5V|5W|5X|5Y|5Z|5d|5e|5g|5j|5k|5l|5n|5o|5r|5v|5w|5x|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6Q|6U|6W|6a|6b", "o|6e|It|1s|6f", "o|6e|Iu|2O|6f", "o|6e|Iv|1s|6f", "o|6e|Iw|2O|6f", "o|6e|Ix|1s|6f", "o|6e|Iy|1s|6f", "o|6e|Iz|1p|6f", "o|6e|J1|2O|6f", "o|6e|J0|2O|6f", "throughPoints", "o|8E|JI|1u|4H|8V|EP", "vectorControlDirections", "o|8E|JK|1p|4H|8F|Aj", "hiddenControls", "o|8E|JM|1s|4H|8F|Hq", "n|3", "o|8L|4H|2F|8V", "o|8L|4H|2F|8F", "a|JP|JQ|8H", "o|8E|2E|1u|4H|JO|JR", "controlPoints", "o|8L|4H|20|8V", "a|JU|EN|EO", "o|8E|JT|1u|4H|JO|JV", "extrapolateBackwardMode", "o|6e|JX|1p|6f", "extrapolateForwardMode", "o|6e|JZ|1p|6f", "fs", "o|8E|Jb|2R|4H|8F|Gu", "numXCriticalPoints", "o|6e|Jd|2P|6f", "xCriticalPoints", "o|8E|Jf|2O|4H|8V|EP", "numYCriticalPoints", "o|6e|Jh|2P|6f", "yCriticalPoints", "o|8E|Jj|2O|4H|8V|EP", "numCurvatureChangePoints", "o|6e|Jl|2P|6f", "curvatureChangePoints", "o|8E|Jn|2O|4H|8V|EP", "f", "o|6e|Jp|2R|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|E2|J9|JA|JB|JC|JD|JE|JF|HZ|II|IJ|6p|6q|6r|6s|6u|E3|80|81|82|83|E5|E7|JG|JH|Hj|JJ|JL|JN|JS|JW|JY|Ja|Jc|Je|Jg|Ji|Jk|Jm|Jo|Jq", "o|44|45|1U|J7|J8|4H|Jr", "symbol", "atomicNumber", "a|3z|46|47|48|49|4A|4B|4C|4D|Jt|Ju|73|74|75|76", "o|Jv|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|4O", "o|6e|Ju|2P|6f", "o|6e|Jt|1p|6f", "o|6e|3z|1p|6f", "o|6e|2n|2P|6f", "atomicMass", "o|6e|K1|2O|6f", "phaseAtSTP", "o|6e|K3|1p|6f", "chargeOfCommonIon", "o|6e|K5|2P|6f", "metalCategory", "o|6e|K7|1p|6f", "groupName", "o|6e|K9|1p|6f", "period", "o|6e|KB|2P|6f", "ionizationEnergy", "o|6e|KD|2O|6f", "meltingPoint", "o|6e|KF|2O|6f", "boilingPoint", "o|6e|KH|2O|6f", "atomicRadius", "o|6e|KJ|2P|6f", "density", "o|6e|KL|2O|6f", "electronegativity", "o|6e|KN|2O|6f", "o|6e|1Y|1Y|6f", "o|6e|1Z|1Z|6f", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|80|81|82|83|7u|7w|7y|Jx|Jy|Jz|K0|K2|K4|K6|K8|KA|KC|KE|KG|KI|KK|KM|KO|KP|KQ|Ae|8A", "o|44|45|1V|Jw|F7|6f|KR", "charge", "a|3z|46|47|48|49|4A|4B|4C|4D|Jt|Ju|KT", "o|KU|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K", "a|5V", "o|6e|KT|2P|6f", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|7u|7w|7y|Jx|Jy|KX|Jz|K0|K8|KA|KC|Ae|8A", "o|44|45|1W|KV|KW|6f|KY", "a|5V|5W", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|7u|7w|7y|Ae|8A", "o|44|45|1X|KV|Ka|6f|Kb", "o|6e|6v|1Y|6f", "o|6e|3W|1p|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|Kd|86|87|89|Ke|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|1Y|7e|7f|4H|Kf", "labels", "a|3z|46|47|48|49|4A|4B|4C|4D|Kh", "o|Ki|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K", "a|9V|9G|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5T|5U|5V|5W|5X|5Y|5Z|5d|5e|5g|5j|5k|5l|5n|5o|5r|5v|5w|5x|5y|5z|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6Q|6U|6W|6a|6b", "o|6e|6v|1Z|6f", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|Kl", "o|44|45|1Z|Kj|Kk|4H|Km", "prefill", "prefillLabel", "a|3z|46|47|48|49|4A|4B|4C|4D|Ko|Kp", "o|Kq|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K", "rows", "o|6e|Ks|1Z|6f", "selectedRowIndex", "o|6e|Ku|2P|6f", "selectedBoxIndex", "o|6e|Kw|2P|6f", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|Kl|Kt|8S|Kv|Kx", "o|44|45|1a|Kr|F7|6f|Ky", "code", "a|3z|46|47|48|49|4A|4B|4C|4D|L0|1p", "o|L1|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K", "o|44|45|3d|L2|F7|6f|AU", "o|4Q|3d", "a|L4", "o|44|45|3e|4P|L5|6f|AU", "lineColor", "lineColorWord", "lineColorDarkMode", "lineColorWordDarkMode", "lineOpacity", "lineWidth", "lineWidthWord", "lineStyle", "lineStyleWord", "markerColor", "markerColorWord", "markerColorDarkMode", "markerColorWordDarkMode", "markerOpacity", "markerStyle", "markerStyleWord", "markerSize", "fillColor", "fillColorWord", "fillColorDarkMode", "fillColorWordDarkMode", "fillOpacity", "textColorWord", "textColorDarkMode", "textColorWordDarkMode", "backgroundColorWord", "backgroundColorDarkMode", "backgroundColorWordDarkMode", "a|3z|46|47|48|49|4A|4B|4C|4D|L7|L8|L9|LA|LB|LC|LD|LE|LF|LG|LH|LI|LJ|LK|LL|LM|LN|LO|LP|LQ|LR|LS|7t|LT|LU|LV|7v|LW|LX|LY", "o|LZ|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K", "a|6g|6i|6k|6l|6n|6p|6q|6r|6s|6u", "o|44|45|3f|La|F7|6f|Lb", "o|4Q|3f", "a|Ld", "o|44|45|3g|4P|Le|6f|AU", "width", "widths", "margins", "valign", "valigns", "a|3z|46|47|48|49|4A|4B|4C|4D|Lg|Lh|Li|Lj|Lk", "o|Ll|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K", "a|8s|8t|8u|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|9A|9B|9C|9D|9G|9H|9I|9J|9K|5a|9L|9M|9N|9O|9P|9S|5h|9j|9l|9p|9q|9r|63|64|65|68|69|9w|9x|9y|9z|6J|6O|A1|6R|6S|A2|6V|A6|A7|A9|AC|AD", "absoluteMeasurements", "o|6e|Lo|1s|6f", "gapWidth", "o|6e|Lq|2O|6f", "o|8L|4H|2O|8F", "a|Ls", "o|8E|Lh|2O|4H|8F|Lt", "o|8E|Li|2O|4H|8F|Lt", "o|8E|Lk|1p|4H|8F|Aj", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|Lp|Lr|Lu|Lv|Lw", "o|44|45|1b|Lm|Ln|6f|Lx", "a|9I", "o|44|45|1c|Lm|Lz|6f|Lx", "o|44|45|1d|4P|AF|4H|AU", "sortby", "a|3z|46|47|48|49|4A|4B|4C|4D|7G|7H|AY|7I|7J|M2", "o|M3|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4K|4O|4K|7d|4K", "o|6e|6v|1e|6f", "a|6g|6i|6j|6k|6l|6n|7q|7r|Ac|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|M5|6x|Ae|86|Ag|Ak|Am|Ao|8g|Ap", "o|44|45|1e|M4|Ab|4H|M6", "a|5Z|4S|4U|4V|4W|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|59|5V|5W|5Y|5e|5f|5g|5k|5q|5v|5w|5x|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6U|6X|6Y|6Z|6a|6b", "o|44|45|1f|4P|M8|4H|AU", "o|44|45|1g|4P|AF|4H|AU", "o|44|45|1h|4P|AF|4H|AU", "o|44|45|1i|4P|AF|4H|AU", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|7u|7w|7y|6x", "o|44|45|1j|4P|AF|4H|MD", "initialPage", "a|3z|46|47|48|49|4A|4B|4C|4D|MF", "o|MG|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K", "numPages", "o|6e|MI|2P|6f", "currentPage", "o|6e|MK|2P|6f", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|MJ|ML", "o|44|45|1k|MH|AF|4H|MM", "previousLabel", "nextLabel", "pageLabel", "a|3z|46|47|48|49|4A|4B|4C|4D|MO|MP|MQ|1k", "o|MR|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K", "o|6e|MO|1p|6f", "o|6e|MP|1p|6f", "o|6e|MQ|1p|6f", "disabledDirectly", "o|6e|MW|1s|6f", "a|6g|6i|6j|6k|6l|6n|MT|MU|MV|6p|6q|6r|6s|6u|MX", "o|44|45|1l|MS|F7|6f|MY", "showSizeControls", "defaultEntry", "bindValueTo", "unionFromU", "minComponentWidth", "a|3z|46|47|48|49|4A|4B|4C|4D|8R|8T|Ma|Mb|Ko|70|7B|7D|7E|73|74|75|76|Mc|Md|Me", "o|Mf|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4O|4K|4K|7M|4K|4O|4O|4K|4K|4K|4O|4K|4O|4K", "a|6a", "collaborateGroups", "o|6e|Mi|Mi|6f", "o|6e|Ma|1s|6f", "o|6e|Ko|1u|6f", "o|6e|Md|1s|6f", "valueChanged", "o|6e|Mn|1s|6f", "immediateValueChanged", "o|6e|Mp|1s|6f", "o|6e|6v|1u|6f", "immediateValue", "o|6e|Ms|1u|6f", "a|6g|6i|6j|6k|6l|6n|Mj|Mk|Ml|7g|7m|7n|7o|Mm|6p|6q|6r|6s|6u|80|81|82|83|Mo|Mq|8S|8U|Mr|Mt|8Y", "o|44|45|1m|Mg|Mh|6f|Mu", "a|4R|4S|4T|4U|4V|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|5Y|5Z|5a|5b|5c|5d|5e|5f|5g|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|5z|60|61|62|63|64|65|66|67|68|69|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6N|6O|6P|6Q|6R|6S|6T|6U|6V|6W|6X|6Y|6Z|6a|6b|8s|8t|8u|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|9A|9B|9C|9D|9G|9H|9I|9J|9K|9L|9M|9N|9O|9P|9S|9j|9l|9p|9q|9r|9w|9x|9y|9z|A1|A2|A6|A7|A9|AC|AD", "message", "o|6e|Mx|1p|6f", "a|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|6g|Fr|My", "o|44|45|1n|4P|Mw|4H|Mz", "documentWideCheckWork", "xmlns", "a|3z|46|4A|4D|N1|FJ|FK|FL|N2|3y", "o|N3|4K|4K|4O|4O|4O|4K|4K|4K|4K|4K", "a|9u|4R|4T|A0|4S|4U|4V|8s|8t|8u|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|9A|9B|9C|9D|5S|9E|5T|5U|9F|5V|5W|5X|5Y|9G|9H|9I|9J|9K|5Z|5a|9L|5b|9M|5c|9N|9O|5d|9P|9Q|5e|9R|9S|5f|9T|5g|9U|9V|9W|5h|5i|5j|5k|5l|9X|9Y|9Z|9a|9b|9c|9d|9e|9f|9g|5m|9h|5n|5o|5p|9i|5q|5r|5s|5t|5u|5v|5w|5x|9j|5y|5z|60|61|9k|9l|62|9m|9n|9o|9p|9q|9r|9s|63|9t|64|65|66|67|68|69|9v|6A|6B|6C|6D|6E|6F|6G|9w|9x|9y|6H|6I|9z|6J|6K|6L|6M|6N|6O|6P|A1|6Q|6R|6S|6T|A2|6U|6V|6W|A3|A4|A5|A6|A7|6X|A8|A9|AA|6Y|6Z|6a|AB|6b|AC|AD|AE", "o|6e|N1|1s|6f", "o|6e|5|1p|6f", "a|6l|6n|N6|FZ|Fa|Fb|6p|6q|6r|6s|6u|Fl|N7|Fn|Fp", "o|44|45|1o|N4|N5|4H|N8", "o|44|45|1p|Aa|Ab|4H|Eu", "maxNumber", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|78|NB", "o|NC|4K|4K|4K|4O|4O|4K|4O|4K|4K|4O|4O|4K", "a|4S|4U|4V|4W|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|59|5V|5W|5Y|5Z|5e|5f|5g|5k|5q|5v|5w|5x|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6U|6X|6Y|6Z|6a|6b", "o|6e|NB|2O|6f", "o|6e|8p|2O|6f", "numValues", "o|6e|NH|2O|6f", "a|6g|6i|6j|6l|6n|84|NF|6p|6q|6r|6s|6u|NG|NI", "o|44|45|1q|ND|NE|4H|NJ", "a|4R|4S|4T|4U|4V|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|5Y|5Z|5a|5b|5c|5d|5e|5f|5g|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|5z|60|61|62|63|64|65|66|67|68|69|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6N|6O|6P|6Q|6R|6S|6T|6U|6V|6W|6X|6Y|6Z|6a|6b|9C|9D", "o|44|45|1r|4P|NL|4H|Ew", "o|44|45|1s|BK|BL|4H|Be", "o|44|45|1t|ND|Bd|4H|NJ", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|Mr|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|1u|7e|7f|4H|NP", "mergeMathLists", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|78|NB|NR|73|74|75|76|7B|7C|7D|7E", "o|NS|4K|4K|4K|4O|4O|4K|4O|4K|4K|4O|4O|4K|4O|4K|4K|4K|4K|4K|4K|4O|4O", "o|6e|NR|1s|6f", "a|6g|6i|6j|6l|6n|84|NF|7m|7n|7o|6p|6q|6r|6s|6u|NU|NG|NI", "o|44|45|1v|NT|Bi|4H|NV", "o|44|45|1w|NT|Bi|4H|NV", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|78|NB|73|74|75|76", "o|NY|4K|4K|4K|4O|4O|4K|4O|4K|4K|4O|4O|4K|4K|4K|4K|4K", "a|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|59|5Y|5Z|5e|5g|5k|5w|5x|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6U|6a|6b|56|57|58|5T|5U|5V|5W|5X|5d|5j|5l|5n|5o|5r|5v|5y|5z|6Q|6W", "o|44|45|1x|NZ|Na|4H|NJ", "source", "assignNamesSkip", "prop", "componentIndex", "propIndex", "sourceAttributesToIgnore", "componentTypes", "a|3z|46|Nc|8m|4A|4D|Nd|Ne|NB|Nf|Ng|Nh|Ni|2j", "o|Nj|4K|4K|4K|4K|4O|4O|4K|4K|4K|4K|4K|4K|4K|4O", "o|6e|Nf|2P|6f", "o|6e|Ng|1x|6f", "stringArray", "o|6e|Nh|Nn|6f", "a|6l|6n|NF|Nl|Nm|No|6p|6q|6r|6s|6u", "o|44|45|1y|Nk|F7|6f|Np", "target", "textType", "uri", "page", "createButton", "a|3z|46|Nr|47|48|49|4A|4B|4C|4D|Ns|Nt|Nu|Nv", "o|Nw|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4O", "o|6e|Ns|1p|6f", "o|6e|Nt|1p|6f", "o|6e|Nu|2P|6f", "linkText", "o|6e|O1|1p|6f", "a|6g|6i|6j|6k|6l|6n|Ny|Nz|O0|6p|6q|6r|6s|6u|O2", "o|44|45|1z|Nx|AF|4H|O3", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|8Z|8b|8d|IA|21|73|74|75|76|Dh|HA|IB", "o|O5|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4K|4K|4K|4K|4K|4K|4K|4K|4O|Dt|4O|4O", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|E2|HZ|6p|6q|6r|6s|6u|E3|80|81|82|83|7u|7w|7y|E5|E7|IK|Hj|IL|IM|8A|IO|IQ|8a|8c|8e|IR", "o|44|45|20|O6|IH|4H|O7", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|78|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J", "o|O9|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7l|7m|7n|7o|7p|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|IR|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|7k|8a|8c|8e|8g", "o|44|45|21|OA|7f|4H|OB", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|IU|Dl|IV|IW|IX|Dn|73|74|75|76|Dh", "o|OD|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4K|4K|4K|4K|4K|4K|4K|4K|4K|4O|Ia", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|E2|6p|6q|6r|6s|6u|E3|80|81|82|83|7u|7w|7y|E5|E7|Hj|EI|Ie|If|Ih|Ij|Il|Im|Io|Iq|8A", "o|44|45|22|OE|Ic|4H|OF", "endpointsDraggable", "endpoints", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|OH|OI|HA|Dh|73|74|75|76", "o|OJ|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O|Ia|4K|4K|4K|4O", "o|6e|OH|1s|6f", "o|8E|OI|1u|4H|8V|EP", "o|6e|Hl|1u|6f", "o|6e|IV|2O|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|HZ|E2|6p|6q|6r|6s|6u|E3|80|81|82|83|E5|E7|OL|Hj|OM|ON|OO", "o|44|45|23|OK|HX|6f|OP", "direction", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|3B|Dl|OR|73|74|75|76", "o|OS|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4K|4K|4K|4K|4K|4K|4O", "o|8E|OR|1u|4H|8F|8I", "o|8E|Dl|1u|4H|8F|ES", "o|8E|3B|1u|4H|8F|ES", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|6p|6q|6r|6s|6u|E3|80|81|82|83|E5|E7|Hj|OU|OV|OW", "o|44|45|24|OT|HX|6f|OX", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|H8|H9|HA|HB|HC|HD|HE|HF|HG|HH|HI|HJ|HK|73|74|75|76", "o|OZ|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O|4O|4O|4K|HV|4K|4K|4O|4O|4O|4K|4K|4K|4K|4O", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|HZ|Ha|Hb|Hc|6p|6q|6r|6s|6u|E3|80|81|82|83|E5|E7|Hg|Hh|Hi|I7|Hj|Hk|Hm", "o|44|45|25|Oa|HX|6f|Ob", "filled", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|H8|H9|HA|HB|HC|HD|HE|HF|HG|HH|HI|HJ|HK|73|74|75|76|Od", "o|Oe|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O|4O|4O|4K|HV|4K|4K|4O|4O|4O|4K|4K|4K|4K|4O|4O", "o|6e|Od|1s|6f", "borderStyleDescription", "o|6e|Oh|1p|6f", "fillStyleDescription", "o|6e|Oj|1p|6f", "perimeter", "o|6e|Ol|2O|6f", "area", "o|6e|On|2O|6f", "numSides", "o|6e|Op|2O|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|HZ|Ha|Hb|Hc|Og|6p|6q|6r|6s|6u|E3|80|81|82|83|E5|E7|Hg|Hh|Hi|I7|Hj|Hk|Oi|Ok|Om|Oo|Oq", "o|44|45|26|Of|HX|6f|Or", "o|44|45|27|Of|HX|6f|Or", "height", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|H8|H9|HA|HB|HC|HD|HE|HF|HG|HH|HI|HJ|HK|73|74|75|76|Od|7b|Lg|Ou", "o|Ov|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O|4O|4O|4K|HV|4K|4K|4O|4O|4O|4K|4K|4K|4K|4O|4O|4K|4K|4K", "o|8E|7b|1u|4H|8F|ES", "o|6e|Lg|2O|6f", "o|6e|Ou|2O|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|HZ|Ha|Hb|Hc|Og|6p|6q|6r|6s|6u|E3|80|81|82|83|E5|E7|Hg|Hh|Hi|I7|Hj|Hk|Oi|Ok|Om|Oo|Ox|Oy|Oz|Oq", "o|44|45|28|Ow|HX|6f|P0", "circumradius", "radius", "inradius", "apothem", "sideLength", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|H8|H9|HA|HB|HD|HE|HF|HG|HH|HI|HJ|HK|73|74|75|76|Od|I6|Op|7b|P2|P3|P4|P5|P6|Ol|On", "o|P7|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O|4O|4K|HV|4K|4K|4O|4O|4O|4K|4K|4K|4K|4O|4O|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K", "o|6e|I6|2P|6f", "o|6e|P2|2O|6f", "o|6e|P4|2O|6f", "o|6e|P6|2O|6f", "o|6e|Op|2P|6f", "o|6e|P3|2O|6f", "o|6e|P5|2O|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|HZ|Ha|Hb|Hc|Og|6p|6q|6r|6s|6u|E3|80|81|82|83|E5|E7|Hg|Hh|Hi|P9|Hj|Hk|Oi|Ok|Om|Oo|Ox|PA|PB|PC|PD|PE|PF", "o|44|45|29|P8|HX|6f|PG", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|Dh|It|Iu|Iv|Iw|Ix|Iy|Iz|Dl|HA|Dq|73|74|75|76|7b|P3|Od|IB", "o|PI|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|Dt|4O|4K|4O|4K|4O|4O|J6|4K|4O|4O|4K|4K|4K|4O|4K|4K|4O|4O", "o|6e|P3|1u|6f", "diameter", "o|6e|PL|1u|6f", "circumference", "o|6e|PN|1u|6f", "o|6e|On|1u|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|E2|J9|JA|JB|JC|JD|JE|JF|HZ|Og|6p|6q|6r|6s|6u|E3|80|81|82|83|E5|E7|Oi|Ok|IK|JG|JH|JJ|PK|PM|PO|PP|Ox", "o|44|45|2A|PJ|Ic|4H|PQ", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|Dh|It|Iu|Iv|Iw|Ix|Iy|Iz|Dl|HA|Dq|73|74|75|76|HT", "o|PS|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|Dt|4O|4K|4O|4K|4O|4O|J6|4K|4O|4O|4K|4K|4K|4O|4K", "a", "o|6e|PU|2O|6f", "b", "o|6e|PW|2O|6f", "o|6e|u|2O|6f", "o|8E|HT|1u|4H|8F|ES", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|E2|J9|JA|JB|JC|JD|JE|JF|HZ|6p|6q|6r|6s|6u|E3|80|81|82|83|E5|E7|JG|JH|JJ|PV|PX|PY|PZ|If", "o|44|45|2B|PT|Ic|4H|Pa", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|Dh|It|Iu|Iv|Iw|Ix|Iy|Iz|Do|Dl|J0|J1|HA|Dq|73|74|75|76", "o|Pc|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|Dt|4O|4K|4O|4K|4O|4O|J6|4K|4K|4K|4K|4O|4O|4K|4K|4K|4O", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|E2|J9|JA|JB|JC|JD|JE|JF|HZ|6p|6q|6r|6s|6u|E3|80|81|82|83|E5|E7|JG|JH|Hj|JJ|JL|JN|JS|JW|JY|Ja|Jc|Je|Jg|Ji|Jk|Jm|Jo|Jq", "o|44|45|2C|Pd|J8|4H|Pe", "alwaysVisible", "a|3z|46|47|48|49|4A|4B|4C|4D|Pg", "o|Ph|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O", "a|9h|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5T|5U|5V|5W|5X|5Y|5Z|5d|5e|5g|5j|5k|5l|5n|5o|5r|5v|5w|5x|5y|5z|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6Q|6U|6W|6a|6b", "o|6e|Pg|1s|6f", "a|6g|6i|6j|6k|6l|6n|Pk|6p|6q|6r|6s|6u", "o|44|45|2D|Pi|Pj|4H|Pl", "pointNumber", "a|3z|46|47|48|49|4A|4B|4C|4D|OR|Pn", "symmetric", "previous", "next", "both", "a|Pp|Pq|Pr|Ps|7N", "o|4G|4H|Pt", "o|Po|4K|4K|4O|4O|4O|4O|4K|4O|4O|Pu|4K", "a|4S|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|5Y|5g|5k|5n|60|61|67|6A|6F|6G|6U|6a|4W|56|57|58|59|5T|5U|5V|5W|5X|5Z|5d|5e|5j|5l|5o|5r|5v|5w|5x|5y|5z|62|6B|6C|6D|6E|6H|6I|6J|6Q|6W|6b", "o|6e|OR|1p|6f", "o|6e|Pn|2O|6f", "a|6g|6i|6j|6k|6l|6n|Px|Py|6p|6q|6r|6s|6u", "o|44|45|2E|Pv|Pw|4H|Pz", "headDraggable", "tailDraggable", "displacement", "head", "tail", "displayWithAngleBrackets", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|Q1|Q2|8Z|8b|8d|IA|Q3|Q4|Q5|73|74|75|76|Q6|HA", "o|Q7|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4O|4O|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4O|4O|4O", "a|4U|4V|6Y|4S|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|5T|5Y|5g|5j|5k|5n|60|61|67|6A|6F|6G|6Q|6U|6a|4W|59|5Z|5e|5w|5x|62|6B|6C|6D|6E|6H|6I|6J|6b|56|57|58|5U|5V|5W|5X|5d|5l|5o|5r|5v|5y|5z|6W", "o|6e|Q6|1s|6f", "o|6e|Q2|1s|6f", "o|6e|Q1|1s|6f", "o|8E|Q3|1u|4H|8F|8I", "o|8E|Q4|1u|4H|8F|ES", "o|8E|Q5|1u|4H|8F|ES", "magnitude", "o|6e|QG|1u|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|QA|HZ|6p|6q|6r|6s|6u|E3|80|81|82|83|7u|7w|7y|E5|E7|QB|QC|Hj|QD|QE|QF|QH|8A|8a|8c|8e", "o|44|45|2F|Q8|Q9|4H|QI", "chooseReflexAngle", "inDegrees", "radians", "degrees", "betweenLines", "emphasizeRightAngle", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|P3|QK|QL|QM|QN|Dl|QO|73|74|75|76|QP", "never", "allowed", "always", "a|QR|QS|QT", "o|4G|4H|QU", "o|QQ|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4K|QV|4O|4K|4K|4K|4K|4K|4K|4K|4O|4O", "a|4U|4V|6Y|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|59|5Y|5Z|5e|5g|5k|5w|5x|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6U|6a|6b|56|57|58|5T|5U|5V|5W|5X|5d|5j|5l|5n|5o|5r|5v|5y|5z|6Q|6W", "o|6e|QK|1p|6f", "o|6e|QL|1s|6f", "o|6e|QP|1s|6f", "o|6e|QM|1u|6f", "o|6e|QN|1u|6f", "o|6e|2G|1u|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|PK|QY|QZ|Qa|6p|6q|6r|6s|6u|E3|80|81|82|83|Qb|Qc|Mr|Qd", "o|44|45|2G|QW|QX|4H|Qe", "handGraded", "inline", "matchPartial", "forceFullCheckworkButton", "numAwardsCredited", "maxNumAttempts", "showCorrectness", "disableAfterCorrect", "selectMultiple", "shuffleOrder", "expanded", "displayDigitsForResponses", "a|3z|46|47|48|49|4A|4B|4C|4D|FH|Qg|Qh|B7|Qi|Qj|B9|B8|BA|BB|Qk|Ql|BC|BD|BE|BF|BG|BH|BI|Qm|3y|Qn|FJ|FK|Qo|Qp|7D|7E|Qq|Qr|FL", "o|Qs|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O|4O|4O|4O|4O|7S|4O|4O|4O|4K|4K|4K|4O|4O|4K|4K|4O|4O|4O|4K|4O|4K|4K|4O|4O|4O|4O|4O|4K|4K", "o|4Q|3u", "a|9i|5d|5r|5s|5t|5u|Qu|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5T|5U|5V|5W|5X|5Y|5Z|5e|5g|5j|5k|5l|5n|5o|5v|5w|5x|5y|5z|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6Q|6U|6W|6a|6b|9U|9V|9W|4U|4V|4d|4e|4f|4g|4h|4i|4j|5f|5q|6X|6Y|6Z|9R|9T", "o|6e|Qg|1s|6f", "o|6e|Qh|1s|6f", "o|6e|Qi|1s|6f", "o|6e|Qj|1s|6f", "o|6e|Qk|2P|6f", "o|6e|Ql|2P|6f", "o|6e|Qn|1s|6f", "o|6e|Qo|1s|6f", "o|6e|Qp|1s|6f", "o|6e|Qq|1s|6f", "o|6e|Qr|2P|6f", "disabledOriginal", "o|6e|R7|1s|6f", "numResponses", "o|6e|R9|2O|6f", "a|3z|6d|8B|8D", "currentResponses", "a|6d|8B", "o|RD|4H|8F", "a|RE", "o|RB|RC|4H|8F|RF", "numSubmittedResponses", "o|6e|RH|2O|6f", "submittedResponses", "o|RB|RJ|4H|8F|RF", "responseHasBeenSubmitted", "o|6e|RL|1s|6f", "justSubmitted", "o|6e|RN|1s|6f", "numFeedbacks", "o|6e|RP|2O|6f", "feedbacks", "o|8L|4H|31|8F", "a|RS", "o|8E|RR|31|4H|8F|RT", "numSubmissions", "o|6e|RV|2P|6f", "numAttemptsLeft", "o|6e|RX|2P|6f", "a|3z|6d", "currentResponse", "o|RZ|Ra|6f", "submittedResponse", "o|RZ|Rc|6f", "a|6g|6i|6j|6k|6l|6n|FX|Qw|Qx|BM|Qy|Qz|BO|BN|BP|BQ|R0|R1|BR|BS|BT|BU|BV|BW|BX|R2|FZ|Fa|R3|R4|7n|7o|R5|R6|Fb|6p|6r|6s|6u|R8|RA|RG|RI|RK|Fn|RM|RO|RQ|RU|RW|RY|6q|Rb|Rd", "o|44|45|2H|Qt|Qv|6f|Re", "credit", "feedbackCodes", "feedbackText", "sourcesAreResponses", "a|3z|46|47|48|49|4A|4B|4C|4D|Rg|Qi|B7|B8|B9|BA|BB|BC|BD|BE|BF|BG|BH|BI|Rh|Ri|Rj|7D|7E", "o|Rk|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O|4O|4O|7S|4O|4O|4K|4O|4O|4K|4K|4O|4O|4K|4K|4K|4O|4O", "a|5q|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5T|5U|5V|5W|5X|5Y|5Z|5d|5e|5g|5j|5k|5l|5n|5o|5r|5v|5w|5x|5y|5z|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6Q|6U|6W|6a|6b|4U|4V|4d|4e|4f|4g|4h|4i|4j|5f|6X|6Y|6Z|5t|9G", "o|6e|Rg|2O|6f", "o|6e|Rh|1q|6f", "o|6e|Ri|1p|6f", "creditAchievedIfSubmit", "o|6e|Rq|2O|6f", "fractionSatisfiedIfSubmit", "o|6e|Rs|2O|6f", "fractionSatisfied", "o|6e|Ru|2O|6f", "awarded", "o|6e|Rw|1s|6f", "o|6e|31|31|6f", "a|6g|6i|6j|6k|6l|6n|Rn|Qy|BM|BN|BO|BP|BQ|BR|BS|BT|BU|BV|BW|BX|Ro|Rp|7n|7o|6p|6q|6r|6s|6u|Rr|Rt|Rv|Fn|Rx|RQ|RU|Ry", "o|44|45|2I|Rl|Rm|4H|Rz", "a|3z|46|47|48|49|4A|4B|4C|4D|B7|B8|B9|BA|BB|BC|BD|BE|BF|BG|BH|BI|Qi", "o|S1|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|7S|4O|4O|4K|4O|4O|4K|4K|4O|4O|4O", "conditionSatisfied", "o|6e|S3|1s|6f", "a|6g|6i|6j|6k|6l|6n|BM|BN|BO|BP|BQ|BR|BS|BT|BU|BV|BW|BX|Qy|6p|6q|6r|6s|6u|Ba|Rv|S4|6x", "o|44|45|3h|S2|BL|4H|S5", "prefillLatex", "hideNaN", "removeStrings", "minWidth", "a|3z|46|47|48|49|4A|4B|4C|4D|Ko|S7|70|7B|7D|7E|73|74|75|76|Mc|Md|S8|S9|SA|Df", "o|SB|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|7M|4K|4O|4O|4K|4K|4K|4O|4K|4O|4O|4K|4K|4O", "o|6e|S7|3W|6f", "o|6e|S8|1s|6f", "o|6e|SA|2P|6f", "rawRendererValue", "o|6e|SG|3W|6f", "a|6g|6i|6j|6k|6l|6n|Mj|Ml|SD|7g|7m|7n|7o|Mm|SE|SF|E0|6p|6q|6r|6s|6u|80|81|82|83|E3|Mo|Mr|Mq|Mt|6x|SH|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|2J|SC|Ic|4H|SI", "a|3z|46|47|48|49|4A|4B|4C|4D|Ko|Mc|Qq|Lg|Ou|Df|7G|7I|7J", "o|SK|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4O|4K|4K|4O|4O|4K|7d", "a|4U|4V|6Y|4S|4W|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|59|5V|5W|5Y|5Z|5e|5f|5g|5k|5q|5v|5w|5x|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6U|6X|6Z|6a|6b", "o|6e|Ko|1p|6f", "_componentSize", "o|6e|Ou|SO|6f", "o|6e|Lg|SO|6f", "o|6e|Ms|1p|6f", "a|6g|6i|6j|6k|6l|6n|Mj|SN|R5|SP|E0|7q|7s|6p|6q|6r|6s|6u|E3|7z|SQ|Mo|Et|Mq|SR|6x|Ag|Ak|Am|Ao|8g|Ap", "o|44|45|2K|SL|SM|4H|SS", "asToggleButton", "a|3z|46|47|48|49|4A|4B|4C|4D|Ko|Df|SU|Mc|7G|7I|7J", "o|SV|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4O|4O|4O|4K|7d", "a|4U|4V|6Y|4d|4e|4f|4g|4h|4i|4j|5f|5t|6X|6Z|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5T|5U|5V|5W|5X|5Y|5Z|5d|5e|5g|5j|5k|5l|5n|5o|5r|5v|5w|5x|5y|5z|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6Q|6U|6W|6a|6b", "o|6e|Ko|1s|6f", "o|6e|SU|1s|6f", "a|6g|6i|6j|6k|6l|6n|Mj|SY|E0|SZ|7q|7s|6p|6q|6r|6s|6u|E3|7z|Mo|Ba|6x", "o|44|45|2L|SW|SX|4H|Sa", "preselectChoice", "placeHolder", "a|3z|46|47|48|49|4A|4B|4C|4D|Qo|Qi|Qh|Qp|Sc|Mc|Sd|FJ|FK|Df", "o|Se|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4O|4O|4K|4K|4K|4K|4K|4O", "a|4U|4V|6Y|5v", "numChoices", "o|6e|Sh|2O|6f", "choiceTexts", "o|8E|Sj|1p|4H|8F|Aj", "choiceMaths", "o|8E|Sl|1u|4H|8F|8N", "selectedIndices", "o|8E|Sn|2O|4H|8F|Lt", "selectedValues", "o|RB|Sp|4H|8F|RF", "selectedIndex", "o|6e|Sr|2O|6f", "selectedValue", "o|RZ|St|6f", "values", "o|RB|Sv|4H|8F|RF", "valueToRecordOnSubmit", "o|8E|Sx|2O|4H|8F|Lt", "a|6g|6i|6j|6k|6l|6n|Mj|R3|Qy|R4|FZ|Fa|E0|6p|6q|6r|6s|6u|E3|Qx|Si|Sk|Sm|Mo|So|Sq|RQ|RU|Ss|Su|Sw|Sy", "o|44|45|2M|Sf|Sg|6f|Sz", "preSelect", "a|3z|46|47|48|49|4A|4B|4C|4D|Rg|Rh|Ri|T1", "o|T2|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4O", "selected", "o|6e|T4|1s|6f", "submitted", "o|6e|T6|1s|6f", "feedbacktext", "o|6e|RR|T8|6f", "a|6g|6i|6j|6k|6l|6n|Rn|Ro|Rp|6p|6q|6r|6s|6u|6x|Ae|T5|T7|T9", "o|44|45|2N|T3|AF|4H|TA", "renderAsMath", "convertBoolean", "valueOnNaN", "a|3z|46|47|48|49|4A|4B|4C|4D|73|74|75|76|TC|TD|TE|7G|7H|7I|7J", "o|TF|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4O|4O|4O|4K|4O|4K|4K|7d", "a|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|59|5Y|5Z|5e|5g|5k|5w|5x|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6U|6a|6b|56|57|58|5T|5U|5V|5W|5X|5d|5j|5l|5n|5o|5r|5v|5y|5z|6Q|6W|4U|4V|4d|4e|4f|4g|4h|4i|4j|5f|5q|6X|6Y|6Z|5t", "o|6e|TC|1s|6f", "o|6e|6v|2O|6f", "a|6g|6i|6j|6k|6l|6n|TI|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|TJ|6x|Ae|8A", "o|44|45|2O|TG|TH|4H|TK", "valuePreRound", "o|6e|TM|2P|6f", "o|6e|6v|2P|6f", "a|6g|6i|6j|6k|6l|6n|TI|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|6x|Ae|8A|TN|TO", "o|44|45|2P|TG|TH|4H|TP", "xmin", "xmax", "ymin", "ymax", "size", "aspectRatio", "displayMode", "horizontalAlign", "identicalAxisScales", "displayXAxis", "displayYAxis", "displayXAxisTickLabels", "displayYAxisTickLabels", "xlabelPosition", "xTickScaleFactor", "ylabelPosition", "ylabelAlignment", "yTickScaleFactor", "showNavigation", "fixAxes", "grid", "showBorder", "hideOffGraphIndicators", "a|3z|46|47|48|49|4A|4B|4C|4D|TR|TS|TT|TU|Lg|TV|TW|TX|TY|TZ|Ta|Tb|Tc|Td|Te|Tf|Tg|Th|Ti|Tj|Tk|Tl|73|74|75|76|Tm|Tn", "tiny", "small", "medium", "large", "a|Tp|Tq|Tr|Ts|7O", "o|4G|4H|Tt", "block", "a|Tv|Qh", "o|4G|4H|Tw", "a|7b|7Z|7a", "o|4G|4H|Ty", "a|7a|7Z", "o|4G|4H|U0", "a|7X|7Y", "o|4G|4H|U2", "a|7Z|7a", "o|4G|4H|U4", "o|To|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|Tu|4K|Tx|Tz|4O|4O|4O|4O|4O|U1|4K|U3|U5|4K|4O|4O|4K|4K|4K|4K|4O|4O|4O", "a|4U|4V|4S|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|9E|5T|5U|9F|5Y|5a|5g|5h|5j|5k|5l|9X|9Y|9Z|9a|9b|9c|9d|9e|9f|9g|5n|5o|5y|5z|60|61|63|9t|64|65|67|68|69|6A|6F|6G|6O|6Q|6R|6S|6U|6V|6W|A3|A4|A5|AA|6a|AE|9w|4W|4d|4e|4f|4g|4h|4i|4j|59|5V|5W|5Z|5e|5f|5q|5v|5w|5x|62|6B|6C|6D|6E|6H|6I|6J|6X|6Y|6Z|6b|5X|5d|5r|4X|4Y|4Z|4c|4a|4b|6K|6L|6M|5t|5s|9j", "o|6e|TX|1p|6f", "o|6e|TY|1p|6f", "o|6e|TZ|1s|6f", "o|6e|Ta|1s|6f", "o|6e|Tb|1s|6f", "o|6e|Tc|1s|6f", "o|6e|Td|1s|6f", "o|6e|Te|1p|6f", "o|6e|Tf|1u|6f", "o|6e|Tg|1p|6f", "o|6e|Th|1p|6f", "o|6e|Ti|1u|6f", "o|6e|Tj|1s|6f", "o|6e|Tk|1s|6f", "o|6e|Tm|1s|6f", "o|6e|Tn|1s|6f", "o|6e|6|3S|6f", "o|6e|7|3S|6f", "o|6e|TV|1p|6f", "o|6e|TW|2O|6f", "o|6e|TR|2O|6f", "o|6e|TS|2O|6f", "o|6e|TT|2O|6f", "o|6e|TU|2O|6f", "o|RZ|Tl|6f", "a|6g|6i|6j|6k|6l|6n|U8|U9|UA|UB|UC|UD|UE|UF|UG|UH|UI|UJ|UK|UL|UM|UN|6p|6q|6r|6s|6u|80|81|82|83|UO|UP|UQ|SQ|UR|US|UT|UU|UV|Dy|Dz|UW", "o|44|45|2Q|U6|U7|6f|UX", "a|3z|46|47|48|49|4A|4B|4C|4D|71|72|Da|Db|Dc|Dd|De|Df|Dg|Dh|7H|Di|Dj|Dk|Dl|Dm|Dn|Do|Dp|73|74|75|76|Dq", "o|UZ|4K|4K|4O|4O|4O|4O|4K|4O|4O|7S|4O|4K|4K|4K|4K|4K|4O|4O|Dt|4K|4K|4K|4K|4K|4K|4K|4K|4O|4K|4K|4K|4O|4O", "a|6g|6i|6j|6k|6l|6n|Dx|Dy|Dz|E0|E1|E2|7r|6p|6q|6r|6s|6u|E3|7u|7w|7y|E5|E7|80|81|82|83|E8|E9|EC|7h|ED|EE|EI|EK|8A|EM|EQ|ET|EV|EX|EY|Ea|Ec|Ee|Ef|Eg", "o|44|45|2R|Ua|Dv|4H|Ub", "a|3z|46|47|48|49|4A|4B|4C|4D|71|72|Da|Db|De|Df|Dg|Dh|7H|Dm|Dn|Do|Dp|73|74|75|76|Dq", "o|Ud|4K|4K|4O|4O|4O|4O|4K|4O|4O|7S|4O|4K|4K|4K|4O|4O|Dt|4K|4K|4K|4K|4O|4K|4K|4K|4O|4O", "a|56|57|58|5y|5z|4U|4V|6Y", "a|6g|6i|6j|6k|6l|6n|Dx|Dy|Dz|E0|E1|E2|7r|6p|6q|6r|6s|6u|E3|7u|7w|7y|E5|E7|80|81|82|83|E8|E9|7h|ED|EE|EI|EK|8A|EM|EQ|ET|EV|EX|EY|Ea|Ec|Ee|Ef|Eg", "o|44|45|2S|Ue|Uf|6f|Ug", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|78|79|7B|7C|7D|7E|7F|7G|7H|7I|7J", "o|Ui|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d", "o|6e|6v|2T|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7m|7n|7o|7p|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|Uk|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|7l|8a|8c|8e|8g", "o|44|45|2T|Uj|7f|4H|Ul", "o|44|45|3i|8r|AF|4H|AH", "selectForVariants", "selectWeight", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|8n|8o|8p|2j|Uo|Up", "o|Uq|4K|4K|4K|4O|4O|4O|4O|4K|4K|4O|4O|4K|4K|4O|4K|4K", "textListFromString", "o|6e|Uo|Us|6f", "o|6e|Up|2O|6f", "a|6g|6i|6j|6l|6n|AG|Ut|Uu|6p|6q|6r|6s|6u", "o|44|45|3j|Ur|AF|4H|Uv", "from", "to", "step", "exclude", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|73|74|75|76|3y|Ux|Uy|Uz|Hl|V0|2j", "letters", "a|2O|1u|V2", "o|4G|4H|V3", "o|V1|4K|4K|4K|4O|4O|4K|4O|4K|4O|4O|4K|4K|4K|4K|V4|4K|4K|4K|4K|4K|4O", "o|44|45|2U|V5|F7|6f|AU", "initialValue", "showControls", "showTicks", "showValue", "a|3z|46|47|48|49|4A|4B|4C|4D|3y|Lg|Ou|V7|Df|V8|V9|VA|Ux|Uy|Uz|73|74|75|76|Mc", "a|2O|1p", "o|4G|4H|VC", "o|VB|4K|4K|4O|4O|4O|4O|4K|4O|4O|VD|4K|4K|4K|4O|4O|4O|4O|4K|4K|4K|4K|4K|4K|4O|4K", "a|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|59|5Y|5Z|5e|5g|5k|5w|5x|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6U|6a|6b|4U|4V|4d|4e|4f|4g|4h|4i|4j|5V|5W|5f|5q|5v|6X|6Y|6Z|9s", "o|6e|V8|1s|6f", "o|6e|V9|1s|6f", "o|6e|VA|1s|6f", "o|6e|Ux|2O|6f", "o|6e|Uy|2O|6f", "o|6e|Uz|2O|6f", "items", "o|RZ|VM|6f", "numItems", "o|6e|VO|2P|6f", "o|RZ|6v|6f", "a|6g|6i|6j|6k|6l|6n|SQ|SP|E0|VG|VH|VI|VJ|VK|VL|6p|6q|6r|6s|6u|E3|80|81|82|83|VN|VP|VQ", "o|44|45|2V|VE|VF|6f|VR", "minNumRows", "minNumColumns", "columnHeaders", "rowHeaders", "fixedRowsTop", "fixedColumnsLeft", "hiddenColumns", "hiddenRows", "a|3z|46|47|48|49|4A|4B|4C|4D|Lg|VT|VU|Ou|VV|VW|VX|VY|VZ|Va", "o|Vb|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4O|4O|4K|4K|4K|4K", "a|62|9m|9n|9o|A8", "o|6e|VT|2O|6f", "o|6e|VU|2O|6f", "o|6e|VV|1s|6f", "o|6e|VW|1s|6f", "o|6e|VX|2P|6f", "o|6e|VY|2P|6f", "o|6e|VZ|1x|6f", "o|6e|Va|1x|6f", "o|6e|8R|2O|6f", "o|6e|8T|2O|6f", "cells", "o|8G|6f|2a", "o|8G|6f|2Y", "a|Vp|Vq", "o|8E|Vo|2X|4H|8V|Vr", "evaluatedCells", "o|8E|Vt|2X|4H|8V|Vr", "pointsInCells", "a|JU|EN", "o|8E|Vv|20|4H|8V|Vw", "a|6g|6i|6j|6k|6l|6n|SQ|Ve|Vf|Vg|Vh|Vi|Vj|Vk|Vl|6p|6q|6r|6s|6u|Vm|Vn|SP|Vs|Vu|Vx", "o|44|45|2W|Vc|Vd|6f|Vy", "rowNum", "colNum", "colSpan", "halign", "a|3z|46|47|48|49|4A|4B|4C|4D|W0|W1|W2|W3|7Y|7a|Ko", "o|W4|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|4K|4K", "a|4S|4W|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5T|5U|5V|5W|5X|5Y|5Z|5d|5e|5g|5j|5k|5l|5n|5o|5r|5v|5w|5x|5y|5z|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6Q|6U|6W|6a|6b|4R|4T|4U|4V|8s|8t|8u|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|9A|9B|9C|9D|5S|9E|9F|9G|9H|9I|9J|9K|5a|9L|5b|9M|5c|9N|9O|9P|9Q|9R|9S|5f|9T|9U|9V|9W|5h|5i|9X|9Y|9Z|9a|9b|9c|9d|9e|9f|9g|5m|9h|5p|9i|5q|5s|5t|5u|9j|9k|9l|9m|9n|9o|9p|9q|9r|9s|63|9t|64|65|66|9u|68|69|9v|9w|9x|9y|9z|6K|6L|6M|6N|6O|A0|6P|A1|6R|6S|6T|A2|6V|A3|A4|A5|A6|A7|6X|A8|A9|AA|6Y|6Z|AB|AC|AD|AE", "o|6e|W0|1p|6f", "o|6e|W1|1p|6f", "o|6e|W2|2P|6f", "o|6e|W3|1p|6f", "o|6e|7Y|1p|6f", "o|6e|7a|1p|6f", "inHeader", "o|6e|WD|1s|6f", "a|6g|6i|6j|6k|6l|6n|W7|W8|W9|SN|6p|6q|6r|6s|6u|WA|WB|WC|WE|6x|Ae|86", "o|44|45|2X|W5|W6|4H|WF", "header", "a|3z|46|47|48|49|4A|4B|4C|4D|W0|WH|W3|Lj|7Z|7Y|7B|7C|7D|7E", "o|WI|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O|4K|4K|4K|4K|4K|4K|4O|4O", "a|62", "o|6e|WH|1s|6f", "o|6e|Lj|1p|6f", "o|6e|7Z|1p|6f", "a|6g|6i|6j|6k|6l|6n|W7|WL|6p|6q|6r|6s|6u|WA|WM|WN|WB", "o|44|45|2Y|WJ|WK|6f|WO", "a|3z|46|47|48|49|4A|4B|4C|4D|W1|7B|7C|7D|7E", "o|WQ|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4O|4O", "a|6g|6i|6j|6k|6l|6n|W8|6p|6q|6r|6s|6u", "o|44|45|2Z|WR|WK|6f|WS", "a|3z|46|47|48|49|4A|4B|4C|4D|W0|W1", "o|WU|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K", "a|62|9m|9n|9o", "a|6g|6i|6j|6k|6l|6n|W7|W8|6p|6q|6r|6s|6u", "o|44|45|2a|WV|WW|6f|WX", "a|3z|46|47|48|49|4A|4B|4C|4D|Lg|Ou|W3|Lj|7X|7Z|7Y|7a", "justify", "a|7Z|7b|7a|Wa", "o|4G|4H|Wb", "middle", "a|7X|Wd|7Y", "o|4G|4H|We", "minor", "major", "a|7N|Wg|Tr|Wh", "o|4G|4H|Wi", "o|WZ|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|Wc|Wf|Wj|Wj|Wj|Wj", "a|9m", "o|6e|7X|1p|6f", "a|6g|6i|6j|6k|6l|6n|SQ|SP|WA|WM|Wm|WN|WB|WC|6p|6q|6r|6s|6u", "o|44|45|2b|Wk|Wl|6f|Wn", "suppressTableNameInTitle", "a|3z|46|47|48|49|4A|4B|4C|4D|Wp|2O", "o|Wq|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O", "tableEnumeration", "o|6e|Ws|1p|6f", "tableName", "o|6e|Wu|1p|6f", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|Wt|Wv|Fl", "o|44|45|2c|Wr|Mw|4H|Ww", "suppressFigureNameInCaption", "a|3z|46|47|48|49|4A|4B|4C|4D|Wy|2O", "o|Wz|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O", "a|A1|4R|4S|4T|4U|4V|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|5S|5T|5U|5V|5W|5X|5Y|5Z|5a|5b|5c|5d|5e|5f|5g|5h|5i|5j|5k|5l|5m|5n|5o|5p|5q|5r|5s|5t|5u|5v|5w|5x|5y|5z|60|61|62|63|64|65|66|67|68|69|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6K|6L|6M|6N|6O|6P|6Q|6R|6S|6T|6U|6V|6W|6X|6Y|6Z|6a|6b|8s|8t|8u|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|9A|9B|9C|9D|9G|9H|9I|9J|9K|9L|9M|9N|9O|9P|9S|9j|9l|9p|9q|9r|9w|9x|9y|9z|A2|A6|A7|A9|AC|AD", "figureEnumeration", "o|6e|X2|1p|6f", "figureName", "o|6e|X4|1p|6f", "o|6e|3A|1p|6f", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|X3|X5|X6", "o|44|45|2d|X0|X1|4H|X7", "markerType", "o|6e|X9|1p|6f", "o|RB|2e|4H|8F|RF", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|XA|XB", "o|44|45|2e|4P|NE|6f|XC", "behavior", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|Nd|XE|2j", "o|XF|4K|4K|4K|4O|4O|4O|4O|4K|4K|4O|4K|4K|4O", "o|4Q|3i", "o|4Q|3k", "a|XH|XI", "o|6e|XE|1p|6f", "a|6g|6i|6j|6l|6n|XK|6p|6q|6r|6s|6u", "o|44|45|2f|XG|XJ|6f|XL", "alias", "indexAlias", "a|3z|46|47|48|49|4A|4B|4C|4D|XN|XO", "o|XP|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K", "o|44|45|3k|XQ|AF|4H|AU", "dx", "dy", "xoffset", "yoffset", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|XS|XT|XU|XV", "o|XW|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4K|4K|4K|4K", "o|6e|XS|2O|6f", "o|6e|XT|2O|6f", "o|6e|XU|2O|6f", "o|6e|XV|2O|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|XY|XZ|Xa|Xb|6p|6q|6r|6s|6u|E3", "o|44|45|2g|XX|HX|6f|Xc", "o|4Q|3m", "o|4Q|3n", "o|4Q|3o", "o|4Q|3p", "o|4Q|3q", "o|4Q|3r", "o|4Q|3s", "o|4Q|3t", "a|Xe|Xf|Xg|Xh|Xi|Xj|Xk|Xl", "scales", "o|6e|Xn|2O|6f", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|Xo|IO", "o|44|45|3l|4P|Xm|6f|Xp", "dz", "zoffset", "a|3z|46|47|48|49|4A|4B|4C|4D|XS|XT|Xr|XU|XV|Xs", "o|Xt|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|4K", "o|6e|Xr|2O|6f", "o|6e|Xs|2O|6f", "a|6g|6i|6j|6k|6l|6n|XY|XZ|Xv|Xa|Xb|Xw|6p|6q|6r|6s|6u", "o|44|45|3m|Xu|F7|6f|Xx", "buffer", "a|3z|46|47|48|49|4A|4B|4C|4D|Xz", "o|Y0|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K", "o|6e|Xz|2O|6f", "a|6g|6i|6j|6k|6l|6n|Y2|6p|6q|6r|6s|6u", "o|44|45|3n|Y1|F7|6f|Y3", "xthreshold", "ythreshold", "zthreshold", "includeGridlines", "a|3z|46|47|48|49|4A|4B|4C|4D|XS|XT|Xr|XU|XV|Xs|Y5|Y6|Y7|Y8", "o|Y9|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|4K|4K|4K|4K|4O", "o|6e|Y5|2O|6f", "o|6e|Y6|2O|6f", "o|6e|Y7|2O|6f", "o|6e|Y8|1s|6f", "a|6g|6i|6j|6k|6l|6n|XY|XZ|Xv|Xa|Xb|Xw|YB|YC|YD|YE|6p|6q|6r|6s|6u", "o|44|45|3o|YA|F7|6f|YF", "relativeToGraphScales", "a|3z|46|47|48|49|4A|4B|4C|4D|YH", "o|YI|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O", "a|4S|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|9E|5T|5U|9F|5Y|5a|5g|5h|5j|5k|5l|9X|9Y|9Z|9a|9b|9c|9d|9e|9f|9g|5n|5o|5y|5z|60|61|63|9t|64|65|67|68|69|6A|6F|6G|6O|6Q|6R|6S|6U|6V|6W|A3|A4|A5|AA|6a|AE", "o|6e|YH|1s|6f", "a|6g|6i|6j|6k|6l|6n|YL|6p|6q|6r|6s|6u", "o|44|45|3p|YJ|YK|6f|YM", "a|3z|46|47|48|49|4A|4B|4C|4D|YH|CQ", "o|YO|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4K", "a|6g|6i|6j|6k|6l|6n|YL|6p|6q|6r|6s|6u|CT", "o|44|45|3q|YP|YK|6f|YQ", "o|44|45|3r|4P|Xm|6f|AU", "a|3z|46|47|48|49|4A|4B|4C|4D|CQ", "o|YT|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K", "a|6g|6i|6j|6k|6l|6n|CT|6p|6q|6r|6s|6u", "o|44|45|3s|YU|Xm|6f|YV", "o|44|45|3t|YJ|YK|6f|YM", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|Nd|2j", "o|YY|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O", "a|5U|5l|6W|9X|9e|9a|9b|9c|9d|9E|9Z", "o|44|45|2h|YZ|Ya|6f|Lb", "condition", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|Nd|Yc", "o|Yd|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O", "o|4Q|3v", "o|4Q|3b", "a|Yf|Yg|4R|4S|4T|4U|4V|8s|8t|8u|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|9A|9B|9C|9D|5S|9E|5T|5U|9F|5V|5W|5X|5Y|9G|9H|9I|9J|9K|5Z|5a|9L|5b|9M|5c|9N|9O|5d|9P|9Q|5e|9R|9S|5f|9T|5g|9U|9V|9W|5h|5i|5j|5k|5l|9X|9Y|9Z|9a|9b|9c|9d|9e|9f|9g|5m|9h|5n|5o|5p|9i|5q|5r|5s|5t|5u|5v|5w|5x|9j|5y|5z|60|61|9k|9l|62|9m|9n|9o|9p|9q|9r|9s|63|9t|64|65|66|9u|67|68|69|9v|6A|6B|6C|6D|6E|6F|6G|9w|9x|9y|6H|6I|9z|6J|6K|6L|6M|6N|6O|A0|6P|A1|6Q|6R|6S|6T|A2|6U|6V|6W|A3|A4|A5|A6|A7|6X|A8|A9|AA|6Y|6Z|6a|AB|6b|AC|AD|AE", "o|44|45|2i|Ye|Yh|4H|AU", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|6x|8A", "o|44|45|2j|4P|6c|4H|Yj", "numVariants", "uniqueVariants", "variantsToInclude", "variantsToExclude", "variantNames", "seeds", "a|3z|46|47|48|49|4A|4B|4C|4D|Yl|Ym|Yn|Yo|Yp|Yq", "o|Yr|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O|4K|4K|4K|4K", "o|44|45|2k|Ys|F7|6f|AU", "numToSelect", "withReplacement", "sortResults", "excludeCombinations", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|73|74|75|76|3y|Ux|Uy|Uz|Hl|V0|2j|Nd|Yu|Yv|Yw|Yx", "o|Yy|4K|4K|4K|4O|4O|4K|4O|4K|4O|4O|4K|4K|4K|4K|V4|4K|4K|4K|4K|4K|4O|4K|4K|4O|4O|4K", "o|6e|Yu|2P|6f", "o|6e|Yv|1s|6f", "o|6e|Yw|1s|6f", "a|6g|6i|6j|6k|6l|6n|Z0|Z1|Z2|6p|6q|6r|6s|6u", "o|44|45|2l|Yz|F7|6f|Z3", "addLevelToAssignNames", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|Nd|Yu|Yv|3y|Z5|2j", "o|Z6|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4O|4K|4O|4O", "o|4Q|3j", "a|Z8", "a|6g|6i|6j|6k|6l|6n|Z0|Z1|6p|6q|6r|6s|6u", "o|44|45|2m|Z7|Z9|4H|ZA", "o|44|45|2n|8r|AF|4H|AH", "animationOn", "animationMode", "animationInterval", "allowAdjustmentsWhileRunning", "a|3z|46|Nr|47|48|49|4A|4B|4C|4D|3y|Ux|Uy|Uz|Hl|V0|ZD|ZE|ZF|ZG", "increase", "decrease", "increase once", "decrease once", "oscillate", "a|ZI|ZJ|ZK|ZL|ZM", "o|4G|4H|ZN", "o|ZH|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|V4|4K|4K|4K|4K|4K|4O|ZO|4K|4O", "targetSubnames", "o|6e|ZQ|Nn|6f", "targetSubnamesComponentIndex", "o|6e|ZS|1x|6f", "o|6e|ZD|1s|6f", "o|6e|ZE|1p|6f", "o|6e|ZF|2O|6f", "o|6e|ZG|1s|6f", "currentAnimationDirection", "o|6e|ZY|1p|6f", "a|6g|6i|6j|6k|6l|6n|Nl|Nm|ZR|ZT|ZU|ZV|ZW|ZX|6p|6q|6r|6s|6u|Ss|VQ|ZZ", "o|44|45|2o|ZP|F7|6f|Za", "input", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|Bt|Bu|2R|Zc", "o|Zd|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d|4O|4O|4K|4K", "o|6e|6v|2p|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|84|7k|7l|7m|7n|7o|7p|7q|7r|7s|Bx|By|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|Zf|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|EK|8a|8c|8e|8g", "o|44|45|2p|Ze|F7|6f|Zg", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|Nd|3y|a|d|c|Ux|Uy|Uz|V0|73|74|75|76|2j|Yu", "discreteuniform", "gaussian", "a|J4|Zj|Zk", "o|4G|4H|Zl", "o|Zi|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|Zm|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4O|4K", "o|6e|3y|1p|6f", "o|6e|a|2O|6f", "o|6e|c|2O|6f", "o|6e|d|2O|6f", "a|6g|6i|6j|6k|6l|6n|Zo|Z0|6p|6q|6r|6s|6u|VL|VJ|VK|Zp|Zq|Zr", "o|44|45|2q|Zn|F7|6f|Zs", "numSamples", "variantDeterminesSeed", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|Nd|Zu|3y|a|d|c|Ux|Uy|Uz|V0|73|74|75|76|Zv|2j", "o|Zw|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|Zm|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4K|4O|4O", "o|6e|Zu|2O|6f", "o|6e|Zv|1s|6f", "a|6g|6i|6j|6k|6l|6n|Zy|Zo|Zz|6p|6q|6r|6s|6u|VL|VJ|VK|Zp|Zq|Zr", "o|44|45|2r|Zx|F7|6f|a0", "minValue", "maxValue", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|a2|a3|V0|Nd|Yu|Yv|Yw|Yx|2j", "o|a4|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|4O|4O|4K|4O", "o|6e|a2|2P|6f", "o|6e|a3|2P|6f", "o|6e|V0|1x|6f", "a|6g|6i|6j|6k|6l|6n|a6|a7|a8|Z0|Z1|Z2|6p|6q|6r|6s|6u", "o|44|45|2s|a5|F7|6f|a9", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|Nd|Zu|a2|a3|V0|Zv|2j", "o|aB|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|4O|4O", "a|6g|6i|6j|6k|6l|6n|Zy|a6|a7|a8|Zz|6p|6q|6r|6s|6u", "o|44|45|2t|aC|F7|6f|aD", "match", "replacement", "matchWholeWord", "matchCase", "preserveCase", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|Nd|3y|aF|aG|71|73|74|75|76|aH|aI|aJ", "a|1u|1p", "o|4G|4H|aL", "o|aK|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|aM|4K|4K|7S|4K|4K|4K|4O|4O|4O|4O", "o|6e|aH|1s|6f", "o|6e|aI|1s|6f", "o|6e|aJ|1s|6f", "a|6g|6i|6j|6k|6l|6n|Zo|7h|aO|aP|aQ|6p|6q|6r|6s|6u|80|81|82|83", "o|44|45|2u|aN|AF|4H|aR", "minIndex", "maxIndex", "offsets", "minIndexAsList", "maxIndexAsList", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|aT|aU|aV|KB|aW|aX", "o|aY|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d|4K|4K|4K|4K|4K|4K", "o|6e|aT|2P|6f", "o|6e|aU|2P|6f", "o|6e|aV|1v|6f", "o|6e|KB|1u|6f", "o|6e|aW|2P|6f", "o|6e|aX|2P|6f", "o|6e|6v|2v|6f", "numOffsets", "o|6e|ah|2P|6f", "redundantOffsets", "o|6e|aj|1s|6f", "o|6e|2j|1v|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|aa|ab|ac|ad|ae|af|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|ag|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|ai|ak|al|8a|8c|8e|8g", "o|44|45|2v|aZ|F7|6f|am", "asFileName", "mimeType", "rotate", "a|3z|46|47|48|49|4A|4B|4C|4D|Lg|TV|TW|TX|TY|5|Nc|ao|ap|7G|7H|7I|7J|aq", "o|ar|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|Tu|4K|Tx|Tz|4K|4K|4K|4K|4O|4K|4K|7d|4K", "o|6e|Nc|1p|6f", "o|6e|ao|1p|6f", "o|6e|ap|1p|6f", "o|6e|aq|2O|6f", "a|6g|6i|6j|6k|6l|6n|U8|U9|N7|at|au|av|7q|7r|7s|aw|6p|6q|6r|6s|6u|7z|UQ|SQ|UR", "o|44|45|2w|as|F7|6f|ax", "youtube", "a|3z|46|47|48|49|4A|4B|4C|4D|Lg|TV|TW|TX|TY|az|Nc", "o|b0|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|Tu|4K|Tx|Tz|4K|4K", "o|6e|az|1p|6f", "state", "o|6e|b3|1p|6f", "time", "o|6e|b5|2O|6f", "duration", "o|6e|b7|2O|6f", "secondsWatched", "o|6e|b9|2O|6f", "fractionWatched", "o|6e|bB|2O|6f", "a|6g|6i|6j|6k|6l|6n|U8|U9|b2|at|6p|6q|6r|6s|6u|UQ|SQ|UR|b4|b6|b8|bA|bC", "o|44|45|2x|b1|F7|6f|bD", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|Fr|Fl", "o|44|45|2y|4P|AF|4H|bF", "originalValue", "o|6e|bH|2z|6f", "o|6e|6v|2z|6f", "a|6g|6i|6j|6k|6l|6n|7q|7r|Ac|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|6x|Ae|86|Ag|Ak|Am|Ao|8g|Ap|bI|bJ", "o|44|45|2z|Aa|Ab|4H|bK", "pluralForm", "basedOnNumber", "a|3z|46|47|48|49|4A|4B|4C|4D|7G|7H|AY|7I|7J|bM|bN", "o|bO|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4K|4O|4K|7d|4K|4K", "o|6e|bM|1p|6f", "o|6e|bN|2O|6f", "valuePrePluralize", "o|6e|bS|30|6f", "a|6g|6i|6j|6k|6l|6n|7q|7r|Ac|7s|bQ|bR|6p|6q|6r|6s|6u|7u|7w|7y|7z|6x|Ae|86|Ag|Ak|Am|Ao|8g|Ap|bT|Et", "o|44|45|30|bP|Ab|4H|bU", "updateWith", "a|3z|46|48|49|4A|4B|4C|4D|Yc|bW", "o|bX|4K|4K|4O|4O|4O|4K|4O|4O|4O|4K", "a|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u", "o|44|45|31|bY|AF|4H|bZ", "o|44|45|3u|4P|AF|4H|AU", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|8n|8o|8p|2j|Yc", "o|bc|4K|4K|4K|4O|4O|4O|4O|4K|4K|4O|4O|4K|4K|4O|4O", "a|6g|6i|6j|6l|6n|AG|6p|6q|6r|6s|6u|S4", "o|44|45|3v|bd|AF|4H|be", "minSentencesPerParagraph", "maxSentencesPerParagraph", "minWordsPerSentence", "maxWordsPerSentence", "generateWords", "generateSentences", "generateParagraphs", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|bg|bh|bi|bj|bk|bl|bm", "o|bn|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|4K|4K", "o|6e|bg|2O|6f", "o|6e|bh|2O|6f", "o|6e|bi|2O|6f", "o|6e|bj|2O|6f", "a|6g|6i|6j|6k|6l|6n|bp|bq|br|bs|6p|6q|6r|6s|6u", "o|44|45|32|bo|F7|6f|bt", "newValue", "triggerWhen", "triggerWith", "triggerWhenObjectsClicked", "triggerWhenObjectsFocused", "a|3z|46|Nr|47|48|49|4A|4B|4C|4D|Df|3y|bv|7G|7I|7J|bw|bx|by|bz|71", "a|1u|2O|1s|1p", "o|4G|4H|c1", "o|c0|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|c2|4K|4O|4K|7d|4O|4K|4K|4K|7S", "a|6g|6i|6j|6k|6l|6n|E0|Nl|Nm|ZR|ZT|7q|7s|7h|6p|6q|6r|6s|6u|E3|7z", "o|44|45|33|c3|HX|6f|c4", "actionName", "a|3z|46|Nr|47|48|49|4A|4B|4C|4D|Df|c6|7G|7I|7J|bw|bx|by|bz|7P|2O", "o|c7|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4K|4O|4K|7d|4O|4K|4K|4K|4K|4K", "o|6e|c6|1p|6f", "a|6g|6i|6j|6k|6l|6n|E0|c9|7q|7s|6p|6q|6r|6s|6u|E3|7z", "o|44|45|34|c8|HX|6f|cA", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|7G|7I|7J|bw|bx|by|bz", "o|cC|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|7d|4O|4K|4K|4K", "a|6K|6L|4U|4V|6Y", "a|6g|6i|6j|6k|6l|6n|E0|7q|7s|6p|6q|6r|6s|6u|E3|7z", "o|44|45|35|cD|cE|6f|cF", "numIterates", "a|3z|46|47|48|49|4A|4B|4C|4D|cH|Bt|Bu|V7|2R|73|74|75|76", "o|cI|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|4O", "o|6e|cH|2P|6f", "allIterates", "o|6e|cL|1v|6f", "allIteratesWithInitial", "o|6e|cN|1v|6f", "iterates", "o|8E|cP|1u|4H|8F|8N", "finalIterate", "o|6e|cR|1u|6f", "a|6g|6i|6j|6k|6l|6n|cK|Bx|By|6p|6q|6r|6s|6u|80|81|82|83|8C|cM|cO|cQ|cS", "o|44|45|36|cJ|F7|6f|cT", "a|3z|46|8m|47|48|49|4A|4C|4D|8n|8o|8p|2j", "o|cV|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4O", "a|6g|6i|6l|6n|AG|6p|6q|6r|6s|6u", "o|44|45|37|cW|AF|4H|cX", "componentType", "attribute", "defaultValue", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|cZ|ca|cb", "o|cc|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K", "o|44|45|3w|cd|F7|6f|AU", "o|4Q|3g", "o|4Q|3e", "o|4Q|3w", "a|cf|cg|4R|4S|4T|4U|4V|8s|8t|8u|4W|4X|4Y|4Z|4a|4b|4c|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|59|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|5K|5L|5M|5N|5O|5P|5Q|5R|8v|8w|8x|8y|8z|90|91|92|93|94|95|96|97|98|99|9A|9B|9C|9D|5S|9E|5T|5U|9F|5V|5W|5X|5Y|9G|9H|9I|9J|9K|5Z|5a|9L|5b|9M|5c|9N|9O|5d|9P|9Q|5e|9R|9S|5f|9T|5g|9U|9V|9W|5h|5i|5j|5k|5l|9X|9Y|9Z|9a|9b|9c|9d|9e|9f|9g|5m|9h|5n|5o|5p|9i|5q|5r|5s|5t|5u|5v|5w|5x|9j|5y|5z|60|61|9k|9l|62|9m|9n|9o|9p|9q|9r|9s|63|9t|64|65|66|9u|67|68|69|9v|6A|6B|6C|6D|6E|6F|6G|9w|9x|9y|6H|6I|9z|6J|6K|6L|6M|6N|6O|A0|6P|A1|6Q|6R|6S|6T|A2|6U|6V|6W|A3|A4|A5|A6|A7|6X|A8|A9|AA|6Y|6Z|6a|AB|6b|AC|AD|AE|ch", "o|44|45|38|4P|ci|4H|AU", "footnoteTag", "o|6e|ck|1p|6f", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|6x|cl", "o|44|45|39|4P|6c|4H|cm", "o|44|45|3A|4P|Mw|4H|Ew", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|7G|8Z|8b|8d|IA|21|73|74|75|76|Dh|HA|IB|Fq|ID", "o|cp|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4K|4K|4K|4K|4K|4K|4K|4K|4O|Dt|4O|4O|4O|4O", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|7q|E2|HZ|Fr|IJ|6p|6q|6r|6s|6u|E3|80|81|82|83|7u|7w|7y|E5|E7|IK|Hj|IL|IM|8A|IO|IQ|8a|8c|8e|IR", "o|44|45|3B|cq|IH|4H|cr", "sortVectorsBy", "sortByComponent", "sortByProp", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|Nd|ct|cu|cv|3y|2j", "a|Q3|Q5", "o|4G|4H|cx", "o|cw|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|cy|4K|4K|4K|4O", "o|6e|ct|1p|6f", "o|6e|cu|2P|6f", "a|6g|6i|6j|6k|6l|6n|d0|d1|6p|6q|6r|6s|6u", "o|44|45|3C|cz|AF|4H|d2", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|Nd|3y|2j", "o|d4|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4O", "o|44|45|3D|d5|AF|4H|AU", "minVar", "maxVar", "a|3z|46|47|48|49|4A|4B|4C|4D|Dn|Iu|d7|d8", "o|d9|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K", "numSolutions", "o|6e|dB|2P|6f", "solutions", "o|8E|dD|1u|4H|8F|8N", "a|6g|6i|6j|6k|6l|6n|JA|6p|6q|6r|6s|6u|EI|dC|dE|Eg", "o|44|45|3E|dA|Bi|4H|dF", "a|3z|46|47|48|49|4A|4B|4C|4D|TR|TS|Lg|Ou|6|XS|Do|70|Ko|Mc", "o|dH|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|4K|4K|7M|4K|4K", "o|6e|6|1p|6f", "subsetValue", "o|6e|dK|3G|6f", "o|8E|Id|1u|4H|8F|8N", "pointsClosed", "o|8E|dN|1s|4H|8F|Hq", "intervals", "o|8E|dP|1u|4H|8F|8N", "isolatedPoints", "o|8E|dR|1u|4H|8F|8N", "a|6g|6i|6j|6k|6l|6n|US|UT|SQ|SP|dJ|XY|Eg|7g|SN|6p|6q|6r|6s|6u|dL|dM|dO|dQ|dS", "o|44|45|3F|dI|F7|6f|dT", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|Do|TX", "inequalities", "a|dP|dW", "o|4G|4H|dX", "o|dV|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d|4K|dY", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|U8|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|Mr|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|dM|dO|dQ|dS|8a|8c|8e|8g", "o|44|45|3G|dZ|7f|4H|da", "splitBy", "a|3z|46|8m|47|48|49|4A|4B|4C|4D|Nd|3y|dc", "a|1p", "o|4G|4H|de", "letter", "word", "comma", "a|dg|dh|di", "o|4G|4H|dj", "o|dd|4K|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|df|dk", "o|44|45|3H|dl|AF|4H|AU", "data", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|IW|IX|Dn|73|74|75|76|Dh|dn", "o|do|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4K|4K|4K|4K|4K|4K|4O|Ia|4K", "o|8E|dn|1u|4H|8V|EP", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|E2|6p|6q|6r|6s|6u|E3|80|81|82|83|7u|7w|7y|E5|E7|Hj|EI|Ie|If|Ih|Ij|Il|Im|Io|Iq|8A|7q|dq", "o|44|45|3I|dp|HX|6f|dr", "boundaryValues", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|dt|2R", "o|du|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4K|4K", "o|6e|dt|1x|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|dw|6p|6q|6r|6s|6u|E3|E5|E7", "o|44|45|3J|dv|HX|6f|dx", "flipFunctions", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|dt|dz", "o|e0|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4K|4O", "a|4U|4V|6Y|56|57|58|5y|5z", "o|6e|dz|1s|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|dw|e3|6p|6q|6r|6s|6u|E3|E5|E7", "o|44|45|3K|e1|e2|6f|e4", "horizontal", "boundaryValue", "greaterThan", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|e6|e7|e8", "o|e9|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4K|4O", "o|6e|e6|1s|6f", "o|6e|e7|2O|6f", "o|6e|e8|1s|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|eB|eC|eD|6p|6q|6r|6s|6u|E3", "o|44|45|3L|eA|HX|6f|eE", "viewerRatio", "showResults", "showFormatter", "resultsLocation", "renderedName", "staticName", "a|3z|46|47|48|49|4A|4B|4C|4D|Ko|Mc|Lg|Ou|eG|eH|eI|eJ|eK|eL", "a|7Y|7Z|7a", "o|4G|4H|eN", "o|eM|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|4O|4O|eO|4K|4K", "o|6e|eH|1s|6f", "o|6e|eI|1s|6f", "o|6e|eJ|1p|6f", "a|6g|6i|6j|6k|6l|6n|SN|SQ|SP|eQ|eR|eS|6p|6q|6r|6s|6u|Mo|Et|Mq|SR|6x", "o|44|45|3M|eP|AF|4H|eT", "codeSource", "hasCodeEditorParent", "a|3z|46|47|48|49|4A|4B|4C|4D|eV|Lg|Ou|eW|eK", "o|eX|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4O|4K", "o|6e|eW|1s|6f", "locationFromParent", "o|6e|ea|1p|6f", "codeChanged", "o|6e|ec|1s|6f", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|eZ|eb|SQ|SP|ed", "o|44|45|3N|eY|F7|6f|ee", "restrictDivision", "monomialFactorMustMatch", "allowOnlySignDifferences", "a|3z|46|47|48|49|4A|4B|4C|4D|B7|B8|B9|BA|BB|BC|BD|BE|BF|BG|BH|BI|Do|eg|eh|ei", "o|ej|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|7S|4O|4O|4K|4O|4O|4K|4K|4O|4O|4K|4O|4O|4O", "o|44|45|3O|ek|Bi|6f|Be", "hasHeader", "columnTypes", "a|3z|46|47|48|49|4A|4B|4C|4D|Nc|em|en", "o|eo|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4O|4K", "o|6e|em|1s|6f", "o|6e|en|1q|6f", "columnNames", "o|6e|es|1q|6f", "means", "o|8E|eu|2O|4H|8F|Lt", "a|6g|6i|6j|6k|6l|6n|at|eq|6p|6q|6r|6s|6u|8S|8U|er|et|ev", "o|44|45|3P|ep|F7|6f|ew", "statisticsToDisplay", "byCategoryColumn", "a|3z|46|47|48|49|4A|4B|4C|4D|Nc|2Z|ey|ez|73|74|75|76", "o|f0|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4K|4K|4K|4K|4O", "o|6e|ez|1p|6f", "o|6e|ey|1q|6f", "columnName", "o|6e|f4|1p|6f", "o|6e|e|2P|6f", "o|6e|P|2O|6f", "stdev", "o|6e|f8|2O|6f", "stderr", "o|6e|fA|2O|6f", "minimum", "o|6e|fC|2O|6f", "maximum", "o|6e|fE|2O|6f", "o|6e|b|2O|6f", "quartile1", "o|6e|fH|2O|6f", "quartile3", "o|6e|fJ|2O|6f", "range", "o|6e|fL|2O|6f", "a|6g|6i|6j|6k|6l|6n|f2|6p|6q|6r|6s|6u|80|81|82|83|f3|f5|f6|f7|Zp|f9|Zq|fB|fD|fF|fG|fI|fK|fM", "o|44|45|3Q|f1|F7|6f|fN", "position", "displayClosedSwatches", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|fP|fQ", "o|fR|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|Ia|4O", "o|6e|fP|1p|6f", "o|6e|fQ|1s|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|fT|fU|6p|6q|6r|6s|6u|E3", "o|44|45|3R|fS|HX|6f|fV", "o|6e|6v|3S|6f", "a|6g|6i|6j|6k|6l|6n|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|AN|6x|8A|fX", "o|44|45|3S|AL|6c|4H|fY", "pattern", "allowImplicitIdentities", "allowPermutations", "requireNumericMatches", "requireVariableMatches", "excludeMatches", "matchExpressionWithBlanks", "a|3z|46|47|48|49|4A|4B|4C|4D|B7|B8|B9|BA|BB|BC|BD|BE|BF|BG|BH|BI|fa|fb|fc|fd|fe|ff|fg", "o|fh|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|7S|4O|4O|4K|4O|4O|4K|4K|4O|4O|4K|4O|4O|4O|4O|4K|4O", "o|6e|fb|1s|6f", "o|6e|fc|1s|6f", "o|6e|fd|1s|6f", "o|6e|fe|1s|6f", "o|6e|ff|1v|6f", "o|6e|fg|1s|6f", "numMatches", "o|6e|fp|2O|6f", "patternMatches", "o|8E|fr|1u|4H|8F|8N", "a|6g|6i|6j|6k|6l|6n|BM|BN|BO|BP|BQ|BR|BS|BT|BU|BV|BW|BX|fj|fk|fl|fm|fn|fo|6p|6q|6r|6s|6u|Ba|6x|fq|fs", "o|44|45|3T|fi|Bi|4H|ft", "a|3z|46|47|48|49|4A|4B|4C|4D|70|71|72|73|74|75|76|77|78|79|7A|7B|7C|7D|7E|7F|7G|7H|7I|7J|Mb|8R|8T", "o|fv|4K|4K|4O|4O|4O|4O|4K|4O|4O|7M|7S|4O|4K|4K|4K|4O|4K|4O|4O|4O|4K|4K|4O|4O|4O|4O|4K|4K|7d|4K|4K|4K", "a|9m|9n", "o|6e|6v|3U|6f", "a|6g|6i|6j|6k|6l|6n|7g|7h|7i|7j|7k|7l|7m|7n|7o|7p|7q|7r|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|80|81|82|83|84|fy|86|87|89|8A|6x|8C|8J|8O|8Q|8S|8U|8Y|8a|8c|8e|8g", "o|44|45|3U|fw|fx|6f|fz", "a|3z|46|47|48|49|4A|4B|4C|4D|73|74|75|76", "o|g1|4K|4K|4O|4O|4O|4O|4K|4O|4O|4K|4K|4K|4O", "eigenvalues", "o|8E|g3|2O|4H|8F|Lt", "eigenvectors", "a|JQ|8H", "o|8E|g5|2O|4H|8V|g6", "a|6g|6i|6j|6k|6l|6n|6p|6q|6r|6s|6u|80|81|82|83|g4|g7", "o|44|45|3V|g2|Bi|6f|g8", "a|4S|4U|4V|4W|4d|4e|4f|4g|4h|4i|4j|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|59|5V|5W|5Y|5Z|5e|5f|5g|5k|5q|5v|5w|5x|60|61|62|67|6A|6B|6C|6D|6E|6F|6G|6H|6I|6J|6U|6X|6Y|6Z|6a|6b|5K|5L|5M|5N|5O|5P|5Q|5R|5A|5B|5C|5D|5E|5F|5G|5H|5I|5J|56|57|58|5T|5U|5X|5d|5j|5l|5n|5o|5r|5y|5z|6Q|6W|4X|4Y|4Z|4c|4a|4b", "o|6e|6v|3W|6f", "a|6g|6i|6j|6k|6l|6n|7q|7r|Ac|7s|6p|6q|6r|6s|6u|7u|7w|7y|7z|gB|6x|Ae|86|Ag|Ak|Am|Ao|8g|Ap|8A", "o|44|45|3W|Aa|gA|4H|gC", "o|44|45|3X|4P|AF|4H|AU", "separateByTopic", "defaultTopicLabel", "a|3z|46|47|48|49|4A|4B|4C|4D|gF|3S|gG", "o|gH|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4K|4K", "o|6e|gF|1s|6f", "a|6g|6i|6j|6k|6l|6n|gJ|6p|6q|6r|6s|6u", "o|44|45|3Y|gI|AF|4H|gK", "angleThreshold", "a|3z|46|47|48|49|4A|4B|4C|4D|Df|Dg|7H|YH|CQ|gM", "o|gN|4K|4K|4O|4O|4O|4O|4K|4O|4O|4O|4O|4K|4O|4K|4K", "a|4U|4V|6Y|4S|4k|4l|4m|4n|4o|4p|4q|4r|4s|4t|4u|4v|4w|4x|4y|4z|50|51|52|53|54|55|56|57|58|9E|5T|5U|9F|5Y|5a|5g|5h|5j|5k|5l|9X|9Y|9Z|9a|9b|9c|9d|9e|9f|9g|5n|5o|5y|5z|60|61|63|9t|64|65|67|68|69|6A|6F|6G|6O|6Q|6R|6S|6U|6V|6W|A3|A4|A5|AA|6a|AE", "o|6e|gM|2O|6f", "a|6g|6i|6j|6k|6l|6n|E0|E1|HY|YL|gQ|6p|6q|6r|6s|6u|E3|Xo|CT", "o|44|45|3Z|gO|gP|6f|gR", "o|3x|6z|8i|8l|AI|AQ|AT|AV|AW|AX|Ar|Av|Aw|B0|B2|B3|B6|Bc|Bf|Bg|Bh|Bj|Bk|Bs|C1|C4|CD|CG|CP|CW|Cb|Ce|Ch|Ck|Cn|Cq|Ct|D0|D3|D6|D9|DC|DF|DI|DL|DZ|Ei|Ej|Es|Ev|Ex|Ey|Ez|F0|F1|F2|F3|F4|F5|F6|F8|F9|FA|FB|FC|FD|FE|FF|Ft|Fu|Fv|Fw|G3|G4|G5|G6|G7|G8|G9|GA|GB|GC|GH|GL|GM|GV|GW|GX|H7|I9|IT|Is|Js|KS|KZ|Kc|Kg|Kn|Kz|L3|L6|Lc|Lf|Ly|M0|M1|M7|M9|MA|MB|MC|ME|MN|MZ|Mv|N0|N9|NA|NK|NM|NN|NO|NQ|NW|NX|Nb|Nq|O4|O8|OC|OG|OQ|OY|Oc|Os|Ot|P1|PH|PR|Pb|Pf|Pm|Q0|QJ|Qf|Rf|S0|S6|SJ|ST|Sb|T0|TB|TL|TQ|UY|Uc|Uh|Um|Un|Uw|V6|VS|Vz|WG|WP|WT|WY|Wo|Wx|X8|XD|XM|XR|Xd|Xq|Xy|Y4|YG|YN|YR|YS|YW|YX|Yb|Yi|Yk|Yt|Z4|ZB|ZC|Zb|Zh|Zt|a1|aA|aE|aS|an|ay|bE|bG|bL|bV|ba|bb|bf|bu|c5|cB|cG|cU|cY|ce|cj|cn|co|cs|d3|d6|dG|dU|db|dm|ds|dy|e5|eF|eU|ef|el|ex|fO|fW|fZ|fu|g0|g9|gD|gE|gL|gS", "o|2|3a|gT"], "gU"]);
32556
31218
  // @generated by Peggy 4.0.3.
32557
31219
  //
32558
31220
  // https://peggyjs.org/
@@ -38645,12 +37307,12 @@ function isPlainObject2(value) {
38645
37307
  if (typeof value !== "object" || value === null) {
38646
37308
  return false;
38647
37309
  }
38648
- const prototype2 = Object.getPrototypeOf(value);
38649
- return (prototype2 === null || prototype2 === Object.prototype || Object.getPrototypeOf(prototype2) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
37310
+ const prototype = Object.getPrototypeOf(value);
37311
+ return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
38650
37312
  }
38651
37313
  function trough() {
38652
37314
  const fns = [];
38653
- const pipeline = { run, use: use2 };
37315
+ const pipeline = { run, use };
38654
37316
  return pipeline;
38655
37317
  function run(...values2) {
38656
37318
  let middlewareIndex = -1;
@@ -38679,7 +37341,7 @@ function trough() {
38679
37341
  }
38680
37342
  }
38681
37343
  }
38682
- function use2(middelware) {
37344
+ function use(middelware) {
38683
37345
  if (typeof middelware !== "function") {
38684
37346
  throw new TypeError(
38685
37347
  "Expected `middelware` to be a function, not " + middelware
@@ -40258,9 +38920,9 @@ function isUint8Array(value) {
40258
38920
  );
40259
38921
  }
40260
38922
  var __defProp2 = Object.defineProperty;
40261
- var __export = (target, all3) => {
40262
- for (var name2 in all3)
40263
- __defProp2(target, name2, { get: all3[name2], enumerable: true });
38923
+ var __export = (target, all2) => {
38924
+ for (var name2 in all2)
38925
+ __defProp2(target, name2, { get: all2[name2], enumerable: true });
40264
38926
  };
40265
38927
  var public_exports = {};
40266
38928
  __export(public_exports, {
@@ -42644,13 +41306,13 @@ var hamt_1 = createCommonjsModule(function(module) {
42644
41306
  Map2.prototype.fold = function(f2, z2) {
42645
41307
  return fold(f2, z2, this);
42646
41308
  };
42647
- var forEach3 = hamt.forEach = function(f2, map2) {
41309
+ var forEach2 = hamt.forEach = function(f2, map2) {
42648
41310
  return fold(function(_2, value, key) {
42649
41311
  return f2(value, key, map2);
42650
41312
  }, null, map2);
42651
41313
  };
42652
41314
  Map2.prototype.forEach = function(f2) {
42653
- return forEach3(f2, this);
41315
+ return forEach2(f2, this);
42654
41316
  };
42655
41317
  var count = hamt.count = function(map2) {
42656
41318
  return map2._size;
@@ -50899,7 +49561,7 @@ function ExternalVirtualKeyboard() {
50899
49561
  }
50900
49562
  );
50901
49563
  }
50902
- const version = "0.7.0-alpha20";
49564
+ const version = "0.7.0-alpha23";
50903
49565
  const latestDoenetmlVersion = version;
50904
49566
  function DoenetViewer({
50905
49567
  doenetML,
@@ -50938,7 +49600,7 @@ function DoenetViewer({
50938
49600
  }
50939
49601
  React__default__default.useEffect(() => {
50940
49602
  const listener3 = (event) => {
50941
- var _a, _b, _c, _d, _e2, _f, _g, _h, _i, _j, _k, _l, _m;
49603
+ var _a, _b, _c, _d, _e2, _f, _g, _h;
50942
49604
  if (event.data.subject === "SPLICE.getState.response") {
50943
49605
  (_b = (_a = ref.current) == null ? void 0 : _a.contentWindow) == null ? void 0 : _b.postMessage(event.data);
50944
49606
  return;
@@ -50946,54 +49608,33 @@ function DoenetViewer({
50946
49608
  if (event.origin !== window.location.origin || ((_c = event.data) == null ? void 0 : _c.origin) !== id2) {
50947
49609
  return;
50948
49610
  }
50949
- const data2 = event.data.data;
50950
- if (data2.error) {
50951
- return setInErrorState(data2.error);
49611
+ const data = event.data.data;
49612
+ if (data.error) {
49613
+ return setInErrorState(data.error);
50952
49614
  }
50953
- switch (data2.callback) {
49615
+ switch (data.callback) {
50954
49616
  case "updateCreditAchievedCallback": {
50955
49617
  return (_d = doenetViewerProps.updateCreditAchievedCallback) == null ? void 0 : _d.call(
50956
49618
  doenetViewerProps,
50957
- data2.args
50958
- );
50959
- }
50960
- case "updateActivityStatusCallback": {
50961
- return (_e2 = doenetViewerProps.updateActivityStatusCallback) == null ? void 0 : _e2.call(
50962
- doenetViewerProps,
50963
- data2.args
49619
+ data.args
50964
49620
  );
50965
49621
  }
50966
49622
  case "updateAttemptNumber": {
50967
- return (_f = doenetViewerProps.updateAttemptNumber) == null ? void 0 : _f.call(doenetViewerProps, data2.args);
50968
- }
50969
- case "pageChangedCallback": {
50970
- return (_g = doenetViewerProps.pageChangedCallback) == null ? void 0 : _g.call(doenetViewerProps, data2.args);
50971
- }
50972
- case "cidChangedCallback": {
50973
- return (_h = doenetViewerProps.cidChangedCallback) == null ? void 0 : _h.call(doenetViewerProps, data2.args);
50974
- }
50975
- case "checkIfCidChanged": {
50976
- return (_i = doenetViewerProps.checkIfCidChanged) == null ? void 0 : _i.call(doenetViewerProps, data2.args);
50977
- }
50978
- case "setActivityAsCompleted": {
50979
- return (_j = doenetViewerProps.setActivityAsCompleted) == null ? void 0 : _j.call(
50980
- doenetViewerProps,
50981
- data2.args
50982
- );
49623
+ return (_e2 = doenetViewerProps.updateAttemptNumber) == null ? void 0 : _e2.call(doenetViewerProps, data.args);
50983
49624
  }
50984
49625
  case "setIsInErrorState": {
50985
- return (_k = doenetViewerProps.setIsInErrorState) == null ? void 0 : _k.call(doenetViewerProps, data2.args);
49626
+ return (_f = doenetViewerProps.setIsInErrorState) == null ? void 0 : _f.call(doenetViewerProps, data.args);
50986
49627
  }
50987
49628
  case "generatedVariantCallback": {
50988
- return (_l = doenetViewerProps.generatedVariantCallback) == null ? void 0 : _l.call(
49629
+ return (_g = doenetViewerProps.generatedVariantCallback) == null ? void 0 : _g.call(
50989
49630
  doenetViewerProps,
50990
- data2.args
49631
+ data.args
50991
49632
  );
50992
49633
  }
50993
49634
  case "setErrorsAndWarningsCallback": {
50994
- return (_m = doenetViewerProps.setErrorsAndWarningsCallback) == null ? void 0 : _m.call(
49635
+ return (_h = doenetViewerProps.setErrorsAndWarningsCallback) == null ? void 0 : _h.call(
50995
49636
  doenetViewerProps,
50996
- data2.args
49637
+ data.args
50997
49638
  );
50998
49639
  }
50999
49640
  }
@@ -51103,21 +49744,21 @@ function DoenetEditor({
51103
49744
  if (event.origin !== window.location.origin || ((_a = event.data) == null ? void 0 : _a.origin) !== id2) {
51104
49745
  return;
51105
49746
  }
51106
- const data2 = event.data.data;
51107
- if (data2.error) {
51108
- return setInErrorState(data2.error);
49747
+ const data = event.data.data;
49748
+ if (data.error) {
49749
+ return setInErrorState(data.error);
51109
49750
  }
51110
- switch (data2.callback) {
49751
+ switch (data.callback) {
51111
49752
  case "doenetmlChangeCallback": {
51112
49753
  return (_b = doenetEditorProps.doenetmlChangeCallback) == null ? void 0 : _b.call(
51113
49754
  doenetEditorProps,
51114
- data2.args
49755
+ data.args
51115
49756
  );
51116
49757
  }
51117
49758
  case "immediateDoenetmlChangeCallback": {
51118
49759
  return (_c = doenetEditorProps.immediateDoenetmlChangeCallback) == null ? void 0 : _c.call(
51119
49760
  doenetEditorProps,
51120
- data2.args
49761
+ data.args
51121
49762
  );
51122
49763
  }
51123
49764
  }