@wandelbots/wandelbots-js-react-components 3.3.2 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1457,7 +1457,7 @@ const tg = (e) => /* @__PURE__ */ b.jsx(ju, { ...e, viewBox: "0 0 10 8", childre
1457
1457
  fill: "currentColor",
1458
1458
  fillOpacity: "0.56"
1459
1459
  }
1460
- ) }), nM = Ve(
1460
+ ) }), rM = Ve(
1461
1461
  de((e) => {
1462
1462
  const {
1463
1463
  appIcon: t,
@@ -14575,7 +14575,7 @@ const eS = (e) => {
14575
14575
  isPaused: C
14576
14576
  }
14577
14577
  };
14578
- }, rM = Ve(
14578
+ }, iM = Ve(
14579
14579
  de(
14580
14580
  ({
14581
14581
  onCycleComplete: e,
@@ -16003,10 +16003,14 @@ const VS = Ve(
16003
16003
  }), "OpenWith"), WS = sn(/* @__PURE__ */ b.jsx("path", {
16004
16004
  d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92-1.31-2.92-2.92-2.92"
16005
16005
  }), "Share");
16006
+ function HS(...e) {
16007
+ const t = "THREE." + e.shift();
16008
+ console.warn(t, ...e);
16009
+ }
16006
16010
  function At(e, t, n) {
16007
16011
  return Math.max(t, Math.min(n, e));
16008
16012
  }
16009
- class HS {
16013
+ class YS {
16010
16014
  /**
16011
16015
  * Constructs a new quaternion.
16012
16016
  *
@@ -16020,7 +16024,7 @@ class HS {
16020
16024
  }
16021
16025
  /**
16022
16026
  * Interpolates between two quaternions via SLERP. This implementation assumes the
16023
- * quaternion data are managed in flat arrays.
16027
+ * quaternion data are managed in flat arrays.
16024
16028
  *
16025
16029
  * @param {Array<number>} dst - The destination array.
16026
16030
  * @param {number} dstOffset - An offset into the destination array.
@@ -16032,27 +16036,26 @@ class HS {
16032
16036
  * @see {@link Quaternion#slerp}
16033
16037
  */
16034
16038
  static slerpFlat(t, n, r, i, o, s, a) {
16035
- let l = r[i + 0], c = r[i + 1], u = r[i + 2], d = r[i + 3];
16036
- const h = o[s + 0], f = o[s + 1], g = o[s + 2], p = o[s + 3];
16037
- if (a === 0) {
16039
+ let l = r[i + 0], c = r[i + 1], u = r[i + 2], d = r[i + 3], h = o[s + 0], f = o[s + 1], g = o[s + 2], p = o[s + 3];
16040
+ if (a <= 0) {
16038
16041
  t[n + 0] = l, t[n + 1] = c, t[n + 2] = u, t[n + 3] = d;
16039
16042
  return;
16040
16043
  }
16041
- if (a === 1) {
16044
+ if (a >= 1) {
16042
16045
  t[n + 0] = h, t[n + 1] = f, t[n + 2] = g, t[n + 3] = p;
16043
16046
  return;
16044
16047
  }
16045
16048
  if (d !== p || l !== h || c !== f || u !== g) {
16046
- let m = 1 - a;
16047
- const v = l * h + c * f + u * g + d * p, E = v >= 0 ? 1 : -1, S = 1 - v * v;
16048
- if (S > Number.EPSILON) {
16049
- const _ = Math.sqrt(S), w = Math.atan2(_, v * E);
16050
- m = Math.sin(m * w) / _, a = Math.sin(a * w) / _;
16051
- }
16052
- const C = a * E;
16053
- if (l = l * m + h * C, c = c * m + f * C, u = u * m + g * C, d = d * m + p * C, m === 1 - a) {
16054
- const _ = 1 / Math.sqrt(l * l + c * c + u * u + d * d);
16055
- l *= _, c *= _, u *= _, d *= _;
16049
+ let m = l * h + c * f + u * g + d * p;
16050
+ m < 0 && (h = -h, f = -f, g = -g, p = -p, m = -m);
16051
+ let v = 1 - a;
16052
+ if (m < 0.9995) {
16053
+ const E = Math.acos(m), S = Math.sin(E);
16054
+ v = Math.sin(v * E) / S, a = Math.sin(a * E) / S, l = l * v + h * a, c = c * v + f * a, u = u * v + g * a, d = d * v + p * a;
16055
+ } else {
16056
+ l = l * v + h * a, c = c * v + f * a, u = u * v + g * a, d = d * v + p * a;
16057
+ const E = 1 / Math.sqrt(l * l + c * c + u * u + d * d);
16058
+ l *= E, c *= E, u *= E, d *= E;
16056
16059
  }
16057
16060
  }
16058
16061
  t[n] = l, t[n + 1] = c, t[n + 2] = u, t[n + 3] = d;
@@ -16181,7 +16184,7 @@ class HS {
16181
16184
  this._x = h * u * d - c * f * g, this._y = c * f * d - h * u * g, this._z = c * u * g + h * f * d, this._w = c * u * d + h * f * g;
16182
16185
  break;
16183
16186
  default:
16184
- console.warn("THREE.Quaternion: .setFromEuler() encountered an unknown order: " + s);
16187
+ HS("Quaternion: .setFromEuler() encountered an unknown order: " + s);
16185
16188
  }
16186
16189
  return n === !0 && this._onChangeCallback(), this;
16187
16190
  }
@@ -16229,7 +16232,7 @@ class HS {
16229
16232
  */
16230
16233
  setFromUnitVectors(t, n) {
16231
16234
  let r = t.dot(n) + 1;
16232
- return r < Number.EPSILON ? (r = 0, Math.abs(t.x) > Math.abs(t.z) ? (this._x = -t.y, this._y = t.x, this._z = 0, this._w = r) : (this._x = 0, this._y = -t.z, this._z = t.y, this._w = r)) : (this._x = t.y * n.z - t.z * n.y, this._y = t.z * n.x - t.x * n.z, this._z = t.x * n.y - t.y * n.x, this._w = r), this.normalize();
16235
+ return r < 1e-8 ? (r = 0, Math.abs(t.x) > Math.abs(t.z) ? (this._x = -t.y, this._y = t.x, this._z = 0, this._w = r) : (this._x = 0, this._y = -t.z, this._z = t.y, this._w = r)) : (this._x = t.y * n.z - t.z * n.y, this._y = t.z * n.x - t.x * n.z, this._z = t.x * n.y - t.y * n.x, this._w = r), this.normalize();
16233
16236
  }
16234
16237
  /**
16235
16238
  * Returns the angle between this quaternion and the given one in radians.
@@ -16358,19 +16361,17 @@ class HS {
16358
16361
  * @return {Quaternion} A reference to this quaternion.
16359
16362
  */
16360
16363
  slerp(t, n) {
16361
- if (n === 0) return this;
16362
- if (n === 1) return this.copy(t);
16363
- const r = this._x, i = this._y, o = this._z, s = this._w;
16364
- let a = s * t._w + r * t._x + i * t._y + o * t._z;
16365
- if (a < 0 ? (this._w = -t._w, this._x = -t._x, this._y = -t._y, this._z = -t._z, a = -a) : this.copy(t), a >= 1)
16366
- return this._w = s, this._x = r, this._y = i, this._z = o, this;
16367
- const l = 1 - a * a;
16368
- if (l <= Number.EPSILON) {
16369
- const f = 1 - n;
16370
- return this._w = f * s + n * this._w, this._x = f * r + n * this._x, this._y = f * i + n * this._y, this._z = f * o + n * this._z, this.normalize(), this;
16371
- }
16372
- const c = Math.sqrt(l), u = Math.atan2(c, a), d = Math.sin((1 - n) * u) / c, h = Math.sin(n * u) / c;
16373
- return this._w = s * d + this._w * h, this._x = r * d + this._x * h, this._y = i * d + this._y * h, this._z = o * d + this._z * h, this._onChangeCallback(), this;
16364
+ if (n <= 0) return this;
16365
+ if (n >= 1) return this.copy(t);
16366
+ let r = t._x, i = t._y, o = t._z, s = t._w, a = this.dot(t);
16367
+ a < 0 && (r = -r, i = -i, o = -o, s = -s, a = -a);
16368
+ let l = 1 - n;
16369
+ if (a < 0.9995) {
16370
+ const c = Math.acos(a), u = Math.sin(c);
16371
+ l = Math.sin(l * c) / u, n = Math.sin(n * c) / u, this._x = this._x * l + r * n, this._y = this._y * l + i * n, this._z = this._z * l + o * n, this._w = this._w * l + s * n, this._onChangeCallback();
16372
+ } else
16373
+ this._x = this._x * l + r * n, this._y = this._y * l + i * n, this._z = this._z * l + o * n, this._w = this._w * l + s * n, this.normalize();
16374
+ return this;
16374
16375
  }
16375
16376
  /**
16376
16377
  * Performs a spherical linear interpolation between the given quaternions
@@ -16885,7 +16886,6 @@ class Zn {
16885
16886
  dot(t) {
16886
16887
  return this.x * t.x + this.y * t.y + this.z * t.z;
16887
16888
  }
16888
- // TODO lengthSquared?
16889
16889
  /**
16890
16890
  * Computes the square of the Euclidean length (straight-line length) from
16891
16891
  * (0, 0, 0) to (x, y, z). If you are comparing the lengths of vectors, you should
@@ -17215,7 +17215,7 @@ class Zn {
17215
17215
  yield this.x, yield this.y, yield this.z;
17216
17216
  }
17217
17217
  }
17218
- const ys = /* @__PURE__ */ new Zn(), ru = /* @__PURE__ */ new HS();
17218
+ const ys = /* @__PURE__ */ new Zn(), ru = /* @__PURE__ */ new YS();
17219
17219
  function Gh(e, t, n) {
17220
17220
  if (t.length !== e.length)
17221
17221
  return !0;
@@ -17227,7 +17227,7 @@ function Gh(e, t, n) {
17227
17227
  return !1;
17228
17228
  return !0;
17229
17229
  }
17230
- function YS(e, t, n) {
17230
+ function qS(e, t, n) {
17231
17231
  if (e === void 0 && t || e && t === void 0 || (e == null ? void 0 : e.orientation) === void 0 || (t == null ? void 0 : t.orientation) === void 0 || (e == null ? void 0 : e.position) === void 0 || (t == null ? void 0 : t.position) === void 0)
17232
17232
  return !1;
17233
17233
  if (e === void 0 || t === void 0)
@@ -17236,13 +17236,13 @@ function YS(e, t, n) {
17236
17236
  return r += Math.abs(e.orientation[0] - t.orientation[0]), r += Math.abs(e.orientation[1] - t.orientation[1]), r += Math.abs(e.orientation[2] - t.orientation[2]), r += Math.abs(e.position[0] - t.position[0]), r += Math.abs(e.position[1] - t.position[1]), r += Math.abs(e.position[2] - t.position[2]), r <= n;
17237
17237
  }
17238
17238
  function Bh(e, t, n) {
17239
- return e.coordinate_system === t.coordinate_system && e.tcp === t.tcp && YS(
17239
+ return e.coordinate_system === t.coordinate_system && e.tcp === t.tcp && qS(
17240
17240
  e.tcp_pose,
17241
17241
  t.tcp_pose,
17242
17242
  n
17243
17243
  );
17244
17244
  }
17245
- function qS(e, t) {
17245
+ function KS(e, t) {
17246
17246
  const n = new pl(
17247
17247
  t[0],
17248
17248
  t[1],
@@ -17281,7 +17281,7 @@ class tl {
17281
17281
  var u, d, h;
17282
17282
  this.rapidlyChangingMotionState.tcp_pose == null ? this.rapidlyChangingMotionState.tcp_pose = l.tcp_pose : (u = l.tcp_pose) != null && u.orientation && ((d = l.tcp_pose) != null && d.position) && ((h = this.rapidlyChangingMotionState.tcp_pose) != null && h.orientation) ? this.rapidlyChangingMotionState.tcp_pose = {
17283
17283
  position: l.tcp_pose.position,
17284
- orientation: qS(
17284
+ orientation: KS(
17285
17285
  l.tcp_pose.orientation,
17286
17286
  this.rapidlyChangingMotionState.tcp_pose.orientation
17287
17287
  )
@@ -17673,25 +17673,25 @@ class nl {
17673
17673
  });
17674
17674
  }
17675
17675
  }
17676
- var KS = "[object AsyncFunction]", JS = "[object Function]", XS = "[object GeneratorFunction]", ZS = "[object Proxy]";
17676
+ var JS = "[object AsyncFunction]", XS = "[object Function]", ZS = "[object GeneratorFunction]", QS = "[object Proxy]";
17677
17677
  function Vh(e) {
17678
17678
  if (!wn(e))
17679
17679
  return !1;
17680
17680
  var t = On(e);
17681
- return t == JS || t == XS || t == KS || t == ZS;
17681
+ return t == XS || t == ZS || t == JS || t == QS;
17682
17682
  }
17683
17683
  var bs = Ct["__core-js_shared__"], su = (function() {
17684
17684
  var e = /[^.]+$/.exec(bs && bs.keys && bs.keys.IE_PROTO || "");
17685
17685
  return e ? "Symbol(src)_1." + e : "";
17686
17686
  })();
17687
- function QS(e) {
17687
+ function eC(e) {
17688
17688
  return !!su && su in e;
17689
17689
  }
17690
- var eC = Function.prototype, tC = eC.toString;
17690
+ var tC = Function.prototype, nC = tC.toString;
17691
17691
  function Rn(e) {
17692
17692
  if (e != null) {
17693
17693
  try {
17694
- return tC.call(e);
17694
+ return nC.call(e);
17695
17695
  } catch {
17696
17696
  }
17697
17697
  try {
@@ -17701,21 +17701,21 @@ function Rn(e) {
17701
17701
  }
17702
17702
  return "";
17703
17703
  }
17704
- var nC = /[\\^$.*+?()[\]{}|]/g, rC = /^\[object .+?Constructor\]$/, iC = Function.prototype, oC = Object.prototype, sC = iC.toString, aC = oC.hasOwnProperty, lC = RegExp(
17705
- "^" + sC.call(aC).replace(nC, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
17704
+ var rC = /[\\^$.*+?()[\]{}|]/g, iC = /^\[object .+?Constructor\]$/, oC = Function.prototype, sC = Object.prototype, aC = oC.toString, lC = sC.hasOwnProperty, cC = RegExp(
17705
+ "^" + aC.call(lC).replace(rC, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
17706
17706
  );
17707
- function cC(e) {
17708
- if (!wn(e) || QS(e))
17707
+ function uC(e) {
17708
+ if (!wn(e) || eC(e))
17709
17709
  return !1;
17710
- var t = Vh(e) ? lC : rC;
17710
+ var t = Vh(e) ? cC : iC;
17711
17711
  return t.test(Rn(e));
17712
17712
  }
17713
- function uC(e, t) {
17713
+ function dC(e, t) {
17714
17714
  return e == null ? void 0 : e[t];
17715
17715
  }
17716
17716
  function Pn(e, t) {
17717
- var n = uC(e, t);
17718
- return cC(n) ? n : void 0;
17717
+ var n = dC(e, t);
17718
+ return uC(n) ? n : void 0;
17719
17719
  }
17720
17720
  var au = (function() {
17721
17721
  try {
@@ -17724,7 +17724,7 @@ var au = (function() {
17724
17724
  } catch {
17725
17725
  }
17726
17726
  })();
17727
- function dC(e, t, n) {
17727
+ function hC(e, t, n) {
17728
17728
  t == "__proto__" && au ? au(e, t, {
17729
17729
  configurable: !0,
17730
17730
  enumerable: !0,
@@ -17732,14 +17732,14 @@ function dC(e, t, n) {
17732
17732
  writable: !0
17733
17733
  }) : e[t] = n;
17734
17734
  }
17735
- function hC(e, t, n, r) {
17735
+ function fC(e, t, n, r) {
17736
17736
  for (var i = -1, o = e == null ? 0 : e.length; ++i < o; ) {
17737
17737
  var s = e[i];
17738
17738
  t(r, s, n(s), e);
17739
17739
  }
17740
17740
  return r;
17741
17741
  }
17742
- function fC(e) {
17742
+ function pC(e) {
17743
17743
  return function(t, n, r) {
17744
17744
  for (var i = -1, o = Object(t), s = r(t), a = s.length; a--; ) {
17745
17745
  var l = s[++i];
@@ -17749,90 +17749,90 @@ function fC(e) {
17749
17749
  return t;
17750
17750
  };
17751
17751
  }
17752
- var pC = fC();
17753
- function gC(e, t) {
17752
+ var gC = pC();
17753
+ function mC(e, t) {
17754
17754
  for (var n = -1, r = Array(e); ++n < e; )
17755
17755
  r[n] = t(n);
17756
17756
  return r;
17757
17757
  }
17758
- var mC = "[object Arguments]";
17758
+ var yC = "[object Arguments]";
17759
17759
  function lu(e) {
17760
- return Sn(e) && On(e) == mC;
17760
+ return Sn(e) && On(e) == yC;
17761
17761
  }
17762
- var Uh = Object.prototype, yC = Uh.hasOwnProperty, bC = Uh.propertyIsEnumerable, Wh = lu(/* @__PURE__ */ (function() {
17762
+ var Uh = Object.prototype, bC = Uh.hasOwnProperty, xC = Uh.propertyIsEnumerable, Wh = lu(/* @__PURE__ */ (function() {
17763
17763
  return arguments;
17764
17764
  })()) ? lu : function(e) {
17765
- return Sn(e) && yC.call(e, "callee") && !bC.call(e, "callee");
17765
+ return Sn(e) && bC.call(e, "callee") && !xC.call(e, "callee");
17766
17766
  }, wt = Array.isArray;
17767
- function xC() {
17767
+ function vC() {
17768
17768
  return !1;
17769
17769
  }
17770
- var Hh = typeof exports == "object" && exports && !exports.nodeType && exports, cu = Hh && typeof module == "object" && module && !module.nodeType && module, vC = cu && cu.exports === Hh, uu = vC ? Ct.Buffer : void 0, wC = uu ? uu.isBuffer : void 0, Gs = wC || xC, SC = 9007199254740991, CC = /^(?:0|[1-9]\d*)$/;
17770
+ var Hh = typeof exports == "object" && exports && !exports.nodeType && exports, cu = Hh && typeof module == "object" && module && !module.nodeType && module, wC = cu && cu.exports === Hh, uu = wC ? Ct.Buffer : void 0, SC = uu ? uu.isBuffer : void 0, Gs = SC || vC, CC = 9007199254740991, TC = /^(?:0|[1-9]\d*)$/;
17771
17771
  function Yh(e, t) {
17772
17772
  var n = typeof e;
17773
- return t = t ?? SC, !!t && (n == "number" || n != "symbol" && CC.test(e)) && e > -1 && e % 1 == 0 && e < t;
17773
+ return t = t ?? CC, !!t && (n == "number" || n != "symbol" && TC.test(e)) && e > -1 && e % 1 == 0 && e < t;
17774
17774
  }
17775
- var TC = 9007199254740991;
17775
+ var EC = 9007199254740991;
17776
17776
  function rl(e) {
17777
- return typeof e == "number" && e > -1 && e % 1 == 0 && e <= TC;
17777
+ return typeof e == "number" && e > -1 && e % 1 == 0 && e <= EC;
17778
17778
  }
17779
- var EC = "[object Arguments]", _C = "[object Array]", MC = "[object Boolean]", IC = "[object Date]", AC = "[object Error]", kC = "[object Function]", OC = "[object Map]", RC = "[object Number]", PC = "[object Object]", DC = "[object RegExp]", $C = "[object Set]", jC = "[object String]", LC = "[object WeakMap]", NC = "[object ArrayBuffer]", zC = "[object DataView]", FC = "[object Float32Array]", GC = "[object Float64Array]", BC = "[object Int8Array]", VC = "[object Int16Array]", UC = "[object Int32Array]", WC = "[object Uint8Array]", HC = "[object Uint8ClampedArray]", YC = "[object Uint16Array]", qC = "[object Uint32Array]", he = {};
17780
- he[FC] = he[GC] = he[BC] = he[VC] = he[UC] = he[WC] = he[HC] = he[YC] = he[qC] = !0;
17781
- he[EC] = he[_C] = he[NC] = he[MC] = he[zC] = he[IC] = he[AC] = he[kC] = he[OC] = he[RC] = he[PC] = he[DC] = he[$C] = he[jC] = he[LC] = !1;
17782
- function KC(e) {
17779
+ var _C = "[object Arguments]", MC = "[object Array]", IC = "[object Boolean]", AC = "[object Date]", kC = "[object Error]", OC = "[object Function]", RC = "[object Map]", PC = "[object Number]", DC = "[object Object]", $C = "[object RegExp]", jC = "[object Set]", LC = "[object String]", NC = "[object WeakMap]", zC = "[object ArrayBuffer]", FC = "[object DataView]", GC = "[object Float32Array]", BC = "[object Float64Array]", VC = "[object Int8Array]", UC = "[object Int16Array]", WC = "[object Int32Array]", HC = "[object Uint8Array]", YC = "[object Uint8ClampedArray]", qC = "[object Uint16Array]", KC = "[object Uint32Array]", he = {};
17780
+ he[GC] = he[BC] = he[VC] = he[UC] = he[WC] = he[HC] = he[YC] = he[qC] = he[KC] = !0;
17781
+ he[_C] = he[MC] = he[zC] = he[IC] = he[FC] = he[AC] = he[kC] = he[OC] = he[RC] = he[PC] = he[DC] = he[$C] = he[jC] = he[LC] = he[NC] = !1;
17782
+ function JC(e) {
17783
17783
  return Sn(e) && rl(e.length) && !!he[On(e)];
17784
17784
  }
17785
- function JC(e) {
17785
+ function XC(e) {
17786
17786
  return function(t) {
17787
17787
  return e(t);
17788
17788
  };
17789
17789
  }
17790
- var qh = typeof exports == "object" && exports && !exports.nodeType && exports, _r = qh && typeof module == "object" && module && !module.nodeType && module, XC = _r && _r.exports === qh, xs = XC && zh.process, du = (function() {
17790
+ var qh = typeof exports == "object" && exports && !exports.nodeType && exports, _r = qh && typeof module == "object" && module && !module.nodeType && module, ZC = _r && _r.exports === qh, xs = ZC && zh.process, du = (function() {
17791
17791
  try {
17792
17792
  var e = _r && _r.require && _r.require("util").types;
17793
17793
  return e || xs && xs.binding && xs.binding("util");
17794
17794
  } catch {
17795
17795
  }
17796
- })(), hu = du && du.isTypedArray, Kh = hu ? JC(hu) : KC, ZC = Object.prototype, QC = ZC.hasOwnProperty;
17797
- function eT(e, t) {
17798
- var n = wt(e), r = !n && Wh(e), i = !n && !r && Gs(e), o = !n && !r && !i && Kh(e), s = n || r || i || o, a = s ? gC(e.length, String) : [], l = a.length;
17796
+ })(), hu = du && du.isTypedArray, Kh = hu ? XC(hu) : JC, QC = Object.prototype, eT = QC.hasOwnProperty;
17797
+ function tT(e, t) {
17798
+ var n = wt(e), r = !n && Wh(e), i = !n && !r && Gs(e), o = !n && !r && !i && Kh(e), s = n || r || i || o, a = s ? mC(e.length, String) : [], l = a.length;
17799
17799
  for (var c in e)
17800
- QC.call(e, c) && !(s && // Safari 9 has enumerable `arguments.length` in strict mode.
17800
+ eT.call(e, c) && !(s && // Safari 9 has enumerable `arguments.length` in strict mode.
17801
17801
  (c == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
17802
17802
  i && (c == "offset" || c == "parent") || // PhantomJS 2 has enumerable non-index properties on typed arrays.
17803
17803
  o && (c == "buffer" || c == "byteLength" || c == "byteOffset") || // Skip index properties.
17804
17804
  Yh(c, l))) && a.push(c);
17805
17805
  return a;
17806
17806
  }
17807
- var tT = Object.prototype;
17808
- function nT(e) {
17809
- var t = e && e.constructor, n = typeof t == "function" && t.prototype || tT;
17807
+ var nT = Object.prototype;
17808
+ function rT(e) {
17809
+ var t = e && e.constructor, n = typeof t == "function" && t.prototype || nT;
17810
17810
  return e === n;
17811
17811
  }
17812
- function rT(e, t) {
17812
+ function iT(e, t) {
17813
17813
  return function(n) {
17814
17814
  return e(t(n));
17815
17815
  };
17816
17816
  }
17817
- var iT = rT(Object.keys, Object), oT = Object.prototype, sT = oT.hasOwnProperty;
17818
- function aT(e) {
17819
- if (!nT(e))
17820
- return iT(e);
17817
+ var oT = iT(Object.keys, Object), sT = Object.prototype, aT = sT.hasOwnProperty;
17818
+ function lT(e) {
17819
+ if (!rT(e))
17820
+ return oT(e);
17821
17821
  var t = [];
17822
17822
  for (var n in Object(e))
17823
- sT.call(e, n) && n != "constructor" && t.push(n);
17823
+ aT.call(e, n) && n != "constructor" && t.push(n);
17824
17824
  return t;
17825
17825
  }
17826
17826
  function Jh(e) {
17827
17827
  return e != null && rl(e.length) && !Vh(e);
17828
17828
  }
17829
17829
  function il(e) {
17830
- return Jh(e) ? eT(e) : aT(e);
17831
- }
17832
- function lT(e, t) {
17833
- return e && pC(e, t, il);
17830
+ return Jh(e) ? tT(e) : lT(e);
17834
17831
  }
17835
17832
  function cT(e, t) {
17833
+ return e && gC(e, t, il);
17834
+ }
17835
+ function uT(e, t) {
17836
17836
  return function(n, r) {
17837
17837
  if (n == null)
17838
17838
  return n;
@@ -17843,13 +17843,13 @@ function cT(e, t) {
17843
17843
  return n;
17844
17844
  };
17845
17845
  }
17846
- var uT = cT(lT);
17847
- function dT(e, t, n, r) {
17848
- return uT(e, function(i, o, s) {
17846
+ var dT = uT(cT);
17847
+ function hT(e, t, n, r) {
17848
+ return dT(e, function(i, o, s) {
17849
17849
  t(r, i, n(i), s);
17850
17850
  }), r;
17851
17851
  }
17852
- function hT() {
17852
+ function fT() {
17853
17853
  this.__data__ = [], this.size = 0;
17854
17854
  }
17855
17855
  function Xh(e, t) {
@@ -17861,22 +17861,22 @@ function Ro(e, t) {
17861
17861
  return n;
17862
17862
  return -1;
17863
17863
  }
17864
- var fT = Array.prototype, pT = fT.splice;
17865
- function gT(e) {
17864
+ var pT = Array.prototype, gT = pT.splice;
17865
+ function mT(e) {
17866
17866
  var t = this.__data__, n = Ro(t, e);
17867
17867
  if (n < 0)
17868
17868
  return !1;
17869
17869
  var r = t.length - 1;
17870
- return n == r ? t.pop() : pT.call(t, n, 1), --this.size, !0;
17870
+ return n == r ? t.pop() : gT.call(t, n, 1), --this.size, !0;
17871
17871
  }
17872
- function mT(e) {
17872
+ function yT(e) {
17873
17873
  var t = this.__data__, n = Ro(t, e);
17874
17874
  return n < 0 ? void 0 : t[n][1];
17875
17875
  }
17876
- function yT(e) {
17876
+ function bT(e) {
17877
17877
  return Ro(this.__data__, e) > -1;
17878
17878
  }
17879
- function bT(e, t) {
17879
+ function xT(e, t) {
17880
17880
  var n = this.__data__, r = Ro(n, e);
17881
17881
  return r < 0 ? (++this.size, n.push([e, t])) : n[r][1] = t, this;
17882
17882
  }
@@ -17887,50 +17887,50 @@ function Gt(e) {
17887
17887
  this.set(r[0], r[1]);
17888
17888
  }
17889
17889
  }
17890
- Gt.prototype.clear = hT;
17891
- Gt.prototype.delete = gT;
17892
- Gt.prototype.get = mT;
17893
- Gt.prototype.has = yT;
17894
- Gt.prototype.set = bT;
17895
- function xT() {
17890
+ Gt.prototype.clear = fT;
17891
+ Gt.prototype.delete = mT;
17892
+ Gt.prototype.get = yT;
17893
+ Gt.prototype.has = bT;
17894
+ Gt.prototype.set = xT;
17895
+ function vT() {
17896
17896
  this.__data__ = new Gt(), this.size = 0;
17897
17897
  }
17898
- function vT(e) {
17898
+ function wT(e) {
17899
17899
  var t = this.__data__, n = t.delete(e);
17900
17900
  return this.size = t.size, n;
17901
17901
  }
17902
- function wT(e) {
17902
+ function ST(e) {
17903
17903
  return this.__data__.get(e);
17904
17904
  }
17905
- function ST(e) {
17905
+ function CT(e) {
17906
17906
  return this.__data__.has(e);
17907
17907
  }
17908
17908
  var jr = Pn(Ct, "Map"), Lr = Pn(Object, "create");
17909
- function CT() {
17909
+ function TT() {
17910
17910
  this.__data__ = Lr ? Lr(null) : {}, this.size = 0;
17911
17911
  }
17912
- function TT(e) {
17912
+ function ET(e) {
17913
17913
  var t = this.has(e) && delete this.__data__[e];
17914
17914
  return this.size -= t ? 1 : 0, t;
17915
17915
  }
17916
- var ET = "__lodash_hash_undefined__", _T = Object.prototype, MT = _T.hasOwnProperty;
17917
- function IT(e) {
17916
+ var _T = "__lodash_hash_undefined__", MT = Object.prototype, IT = MT.hasOwnProperty;
17917
+ function AT(e) {
17918
17918
  var t = this.__data__;
17919
17919
  if (Lr) {
17920
17920
  var n = t[e];
17921
- return n === ET ? void 0 : n;
17921
+ return n === _T ? void 0 : n;
17922
17922
  }
17923
- return MT.call(t, e) ? t[e] : void 0;
17923
+ return IT.call(t, e) ? t[e] : void 0;
17924
17924
  }
17925
- var AT = Object.prototype, kT = AT.hasOwnProperty;
17926
- function OT(e) {
17925
+ var kT = Object.prototype, OT = kT.hasOwnProperty;
17926
+ function RT(e) {
17927
17927
  var t = this.__data__;
17928
- return Lr ? t[e] !== void 0 : kT.call(t, e);
17928
+ return Lr ? t[e] !== void 0 : OT.call(t, e);
17929
17929
  }
17930
- var RT = "__lodash_hash_undefined__";
17931
- function PT(e, t) {
17930
+ var PT = "__lodash_hash_undefined__";
17931
+ function DT(e, t) {
17932
17932
  var n = this.__data__;
17933
- return this.size += this.has(e) ? 0 : 1, n[e] = Lr && t === void 0 ? RT : t, this;
17933
+ return this.size += this.has(e) ? 0 : 1, n[e] = Lr && t === void 0 ? PT : t, this;
17934
17934
  }
17935
17935
  function Cn(e) {
17936
17936
  var t = -1, n = e == null ? 0 : e.length;
@@ -17939,37 +17939,37 @@ function Cn(e) {
17939
17939
  this.set(r[0], r[1]);
17940
17940
  }
17941
17941
  }
17942
- Cn.prototype.clear = CT;
17943
- Cn.prototype.delete = TT;
17944
- Cn.prototype.get = IT;
17945
- Cn.prototype.has = OT;
17946
- Cn.prototype.set = PT;
17947
- function DT() {
17942
+ Cn.prototype.clear = TT;
17943
+ Cn.prototype.delete = ET;
17944
+ Cn.prototype.get = AT;
17945
+ Cn.prototype.has = RT;
17946
+ Cn.prototype.set = DT;
17947
+ function $T() {
17948
17948
  this.size = 0, this.__data__ = {
17949
17949
  hash: new Cn(),
17950
17950
  map: new (jr || Gt)(),
17951
17951
  string: new Cn()
17952
17952
  };
17953
17953
  }
17954
- function $T(e) {
17954
+ function jT(e) {
17955
17955
  var t = typeof e;
17956
17956
  return t == "string" || t == "number" || t == "symbol" || t == "boolean" ? e !== "__proto__" : e === null;
17957
17957
  }
17958
17958
  function Po(e, t) {
17959
17959
  var n = e.__data__;
17960
- return $T(t) ? n[typeof t == "string" ? "string" : "hash"] : n.map;
17960
+ return jT(t) ? n[typeof t == "string" ? "string" : "hash"] : n.map;
17961
17961
  }
17962
- function jT(e) {
17962
+ function LT(e) {
17963
17963
  var t = Po(this, e).delete(e);
17964
17964
  return this.size -= t ? 1 : 0, t;
17965
17965
  }
17966
- function LT(e) {
17966
+ function NT(e) {
17967
17967
  return Po(this, e).get(e);
17968
17968
  }
17969
- function NT(e) {
17969
+ function zT(e) {
17970
17970
  return Po(this, e).has(e);
17971
17971
  }
17972
- function zT(e, t) {
17972
+ function FT(e, t) {
17973
17973
  var n = Po(this, e), r = n.size;
17974
17974
  return n.set(e, t), this.size += n.size == r ? 0 : 1, this;
17975
17975
  }
@@ -17980,17 +17980,17 @@ function Bt(e) {
17980
17980
  this.set(r[0], r[1]);
17981
17981
  }
17982
17982
  }
17983
- Bt.prototype.clear = DT;
17984
- Bt.prototype.delete = jT;
17985
- Bt.prototype.get = LT;
17986
- Bt.prototype.has = NT;
17987
- Bt.prototype.set = zT;
17988
- var FT = 200;
17989
- function GT(e, t) {
17983
+ Bt.prototype.clear = $T;
17984
+ Bt.prototype.delete = LT;
17985
+ Bt.prototype.get = NT;
17986
+ Bt.prototype.has = zT;
17987
+ Bt.prototype.set = FT;
17988
+ var GT = 200;
17989
+ function BT(e, t) {
17990
17990
  var n = this.__data__;
17991
17991
  if (n instanceof Gt) {
17992
17992
  var r = n.__data__;
17993
- if (!jr || r.length < FT - 1)
17993
+ if (!jr || r.length < GT - 1)
17994
17994
  return r.push([e, t]), this.size = ++n.size, this;
17995
17995
  n = this.__data__ = new Bt(r);
17996
17996
  }
@@ -18000,16 +18000,16 @@ function Pt(e) {
18000
18000
  var t = this.__data__ = new Gt(e);
18001
18001
  this.size = t.size;
18002
18002
  }
18003
- Pt.prototype.clear = xT;
18004
- Pt.prototype.delete = vT;
18005
- Pt.prototype.get = wT;
18006
- Pt.prototype.has = ST;
18007
- Pt.prototype.set = GT;
18008
- var BT = "__lodash_hash_undefined__";
18009
- function VT(e) {
18010
- return this.__data__.set(e, BT), this;
18011
- }
18003
+ Pt.prototype.clear = vT;
18004
+ Pt.prototype.delete = wT;
18005
+ Pt.prototype.get = ST;
18006
+ Pt.prototype.has = CT;
18007
+ Pt.prototype.set = BT;
18008
+ var VT = "__lodash_hash_undefined__";
18012
18009
  function UT(e) {
18010
+ return this.__data__.set(e, VT), this;
18011
+ }
18012
+ function WT(e) {
18013
18013
  return this.__data__.has(e);
18014
18014
  }
18015
18015
  function Wi(e) {
@@ -18017,26 +18017,26 @@ function Wi(e) {
18017
18017
  for (this.__data__ = new Bt(); ++t < n; )
18018
18018
  this.add(e[t]);
18019
18019
  }
18020
- Wi.prototype.add = Wi.prototype.push = VT;
18021
- Wi.prototype.has = UT;
18022
- function WT(e, t) {
18020
+ Wi.prototype.add = Wi.prototype.push = UT;
18021
+ Wi.prototype.has = WT;
18022
+ function HT(e, t) {
18023
18023
  for (var n = -1, r = e == null ? 0 : e.length; ++n < r; )
18024
18024
  if (t(e[n], n, e))
18025
18025
  return !0;
18026
18026
  return !1;
18027
18027
  }
18028
- function HT(e, t) {
18028
+ function YT(e, t) {
18029
18029
  return e.has(t);
18030
18030
  }
18031
- var YT = 1, qT = 2;
18031
+ var qT = 1, KT = 2;
18032
18032
  function Zh(e, t, n, r, i, o) {
18033
- var s = n & YT, a = e.length, l = t.length;
18033
+ var s = n & qT, a = e.length, l = t.length;
18034
18034
  if (a != l && !(s && l > a))
18035
18035
  return !1;
18036
18036
  var c = o.get(e), u = o.get(t);
18037
18037
  if (c && u)
18038
18038
  return c == t && u == e;
18039
- var d = -1, h = !0, f = n & qT ? new Wi() : void 0;
18039
+ var d = -1, h = !0, f = n & KT ? new Wi() : void 0;
18040
18040
  for (o.set(e, t), o.set(t, e); ++d < a; ) {
18041
18041
  var g = e[d], p = t[d];
18042
18042
  if (r)
@@ -18048,8 +18048,8 @@ function Zh(e, t, n, r, i, o) {
18048
18048
  break;
18049
18049
  }
18050
18050
  if (f) {
18051
- if (!WT(t, function(v, E) {
18052
- if (!HT(f, E) && (g === v || i(g, v, n, r, o)))
18051
+ if (!HT(t, function(v, E) {
18052
+ if (!YT(f, E) && (g === v || i(g, v, n, r, o)))
18053
18053
  return f.push(E);
18054
18054
  })) {
18055
18055
  h = !1;
@@ -18063,89 +18063,89 @@ function Zh(e, t, n, r, i, o) {
18063
18063
  return o.delete(e), o.delete(t), h;
18064
18064
  }
18065
18065
  var fu = Ct.Uint8Array;
18066
- function KT(e) {
18066
+ function JT(e) {
18067
18067
  var t = -1, n = Array(e.size);
18068
18068
  return e.forEach(function(r, i) {
18069
18069
  n[++t] = [i, r];
18070
18070
  }), n;
18071
18071
  }
18072
- function JT(e) {
18072
+ function XT(e) {
18073
18073
  var t = -1, n = Array(e.size);
18074
18074
  return e.forEach(function(r) {
18075
18075
  n[++t] = r;
18076
18076
  }), n;
18077
18077
  }
18078
- var XT = 1, ZT = 2, QT = "[object Boolean]", e5 = "[object Date]", t5 = "[object Error]", n5 = "[object Map]", r5 = "[object Number]", i5 = "[object RegExp]", o5 = "[object Set]", s5 = "[object String]", a5 = "[object Symbol]", l5 = "[object ArrayBuffer]", c5 = "[object DataView]", pu = Zt ? Zt.prototype : void 0, vs = pu ? pu.valueOf : void 0;
18079
- function u5(e, t, n, r, i, o, s) {
18078
+ var ZT = 1, QT = 2, e5 = "[object Boolean]", t5 = "[object Date]", n5 = "[object Error]", r5 = "[object Map]", i5 = "[object Number]", o5 = "[object RegExp]", s5 = "[object Set]", a5 = "[object String]", l5 = "[object Symbol]", c5 = "[object ArrayBuffer]", u5 = "[object DataView]", pu = Zt ? Zt.prototype : void 0, vs = pu ? pu.valueOf : void 0;
18079
+ function d5(e, t, n, r, i, o, s) {
18080
18080
  switch (n) {
18081
- case c5:
18081
+ case u5:
18082
18082
  if (e.byteLength != t.byteLength || e.byteOffset != t.byteOffset)
18083
18083
  return !1;
18084
18084
  e = e.buffer, t = t.buffer;
18085
- case l5:
18085
+ case c5:
18086
18086
  return !(e.byteLength != t.byteLength || !o(new fu(e), new fu(t)));
18087
- case QT:
18088
18087
  case e5:
18089
- case r5:
18090
- return Xh(+e, +t);
18091
18088
  case t5:
18092
- return e.name == t.name && e.message == t.message;
18093
18089
  case i5:
18094
- case s5:
18095
- return e == t + "";
18090
+ return Xh(+e, +t);
18096
18091
  case n5:
18097
- var a = KT;
18092
+ return e.name == t.name && e.message == t.message;
18098
18093
  case o5:
18099
- var l = r & XT;
18100
- if (a || (a = JT), e.size != t.size && !l)
18094
+ case a5:
18095
+ return e == t + "";
18096
+ case r5:
18097
+ var a = JT;
18098
+ case s5:
18099
+ var l = r & ZT;
18100
+ if (a || (a = XT), e.size != t.size && !l)
18101
18101
  return !1;
18102
18102
  var c = s.get(e);
18103
18103
  if (c)
18104
18104
  return c == t;
18105
- r |= ZT, s.set(e, t);
18105
+ r |= QT, s.set(e, t);
18106
18106
  var u = Zh(a(e), a(t), r, i, o, s);
18107
18107
  return s.delete(e), u;
18108
- case a5:
18108
+ case l5:
18109
18109
  if (vs)
18110
18110
  return vs.call(e) == vs.call(t);
18111
18111
  }
18112
18112
  return !1;
18113
18113
  }
18114
- function d5(e, t) {
18114
+ function h5(e, t) {
18115
18115
  for (var n = -1, r = t.length, i = e.length; ++n < r; )
18116
18116
  e[i + n] = t[n];
18117
18117
  return e;
18118
18118
  }
18119
- function h5(e, t, n) {
18119
+ function f5(e, t, n) {
18120
18120
  var r = t(e);
18121
- return wt(e) ? r : d5(r, n(e));
18121
+ return wt(e) ? r : h5(r, n(e));
18122
18122
  }
18123
- function f5(e, t) {
18123
+ function p5(e, t) {
18124
18124
  for (var n = -1, r = e == null ? 0 : e.length, i = 0, o = []; ++n < r; ) {
18125
18125
  var s = e[n];
18126
18126
  t(s, n, e) && (o[i++] = s);
18127
18127
  }
18128
18128
  return o;
18129
18129
  }
18130
- function p5() {
18130
+ function g5() {
18131
18131
  return [];
18132
18132
  }
18133
- var g5 = Object.prototype, m5 = g5.propertyIsEnumerable, gu = Object.getOwnPropertySymbols, y5 = gu ? function(e) {
18134
- return e == null ? [] : (e = Object(e), f5(gu(e), function(t) {
18135
- return m5.call(e, t);
18133
+ var m5 = Object.prototype, y5 = m5.propertyIsEnumerable, gu = Object.getOwnPropertySymbols, b5 = gu ? function(e) {
18134
+ return e == null ? [] : (e = Object(e), p5(gu(e), function(t) {
18135
+ return y5.call(e, t);
18136
18136
  }));
18137
- } : p5;
18137
+ } : g5;
18138
18138
  function mu(e) {
18139
- return h5(e, il, y5);
18139
+ return f5(e, il, b5);
18140
18140
  }
18141
- var b5 = 1, x5 = Object.prototype, v5 = x5.hasOwnProperty;
18142
- function w5(e, t, n, r, i, o) {
18143
- var s = n & b5, a = mu(e), l = a.length, c = mu(t), u = c.length;
18141
+ var x5 = 1, v5 = Object.prototype, w5 = v5.hasOwnProperty;
18142
+ function S5(e, t, n, r, i, o) {
18143
+ var s = n & x5, a = mu(e), l = a.length, c = mu(t), u = c.length;
18144
18144
  if (l != u && !s)
18145
18145
  return !1;
18146
18146
  for (var d = l; d--; ) {
18147
18147
  var h = a[d];
18148
- if (!(s ? h in t : v5.call(t, h)))
18148
+ if (!(s ? h in t : w5.call(t, h)))
18149
18149
  return !1;
18150
18150
  }
18151
18151
  var f = o.get(e), g = o.get(t);
@@ -18170,26 +18170,26 @@ function w5(e, t, n, r, i, o) {
18170
18170
  }
18171
18171
  return o.delete(e), o.delete(t), p;
18172
18172
  }
18173
- var Bs = Pn(Ct, "DataView"), Vs = Pn(Ct, "Promise"), Us = Pn(Ct, "Set"), Ws = Pn(Ct, "WeakMap"), yu = "[object Map]", S5 = "[object Object]", bu = "[object Promise]", xu = "[object Set]", vu = "[object WeakMap]", wu = "[object DataView]", C5 = Rn(Bs), T5 = Rn(jr), E5 = Rn(Vs), _5 = Rn(Us), M5 = Rn(Ws), Yt = On;
18173
+ var Bs = Pn(Ct, "DataView"), Vs = Pn(Ct, "Promise"), Us = Pn(Ct, "Set"), Ws = Pn(Ct, "WeakMap"), yu = "[object Map]", C5 = "[object Object]", bu = "[object Promise]", xu = "[object Set]", vu = "[object WeakMap]", wu = "[object DataView]", T5 = Rn(Bs), E5 = Rn(jr), _5 = Rn(Vs), M5 = Rn(Us), I5 = Rn(Ws), Yt = On;
18174
18174
  (Bs && Yt(new Bs(new ArrayBuffer(1))) != wu || jr && Yt(new jr()) != yu || Vs && Yt(Vs.resolve()) != bu || Us && Yt(new Us()) != xu || Ws && Yt(new Ws()) != vu) && (Yt = function(e) {
18175
- var t = On(e), n = t == S5 ? e.constructor : void 0, r = n ? Rn(n) : "";
18175
+ var t = On(e), n = t == C5 ? e.constructor : void 0, r = n ? Rn(n) : "";
18176
18176
  if (r)
18177
18177
  switch (r) {
18178
- case C5:
18179
- return wu;
18180
18178
  case T5:
18181
- return yu;
18179
+ return wu;
18182
18180
  case E5:
18183
- return bu;
18181
+ return yu;
18184
18182
  case _5:
18185
- return xu;
18183
+ return bu;
18186
18184
  case M5:
18185
+ return xu;
18186
+ case I5:
18187
18187
  return vu;
18188
18188
  }
18189
18189
  return t;
18190
18190
  });
18191
- var I5 = 1, Su = "[object Arguments]", Cu = "[object Array]", ui = "[object Object]", A5 = Object.prototype, Tu = A5.hasOwnProperty;
18192
- function k5(e, t, n, r, i, o) {
18191
+ var A5 = 1, Su = "[object Arguments]", Cu = "[object Array]", ui = "[object Object]", k5 = Object.prototype, Tu = k5.hasOwnProperty;
18192
+ function O5(e, t, n, r, i, o) {
18193
18193
  var s = wt(e), a = wt(t), l = s ? Cu : Yt(e), c = a ? Cu : Yt(t);
18194
18194
  l = l == Su ? ui : l, c = c == Su ? ui : c;
18195
18195
  var u = l == ui, d = c == ui, h = l == c;
@@ -18199,21 +18199,21 @@ function k5(e, t, n, r, i, o) {
18199
18199
  s = !0, u = !1;
18200
18200
  }
18201
18201
  if (h && !u)
18202
- return o || (o = new Pt()), s || Kh(e) ? Zh(e, t, n, r, i, o) : u5(e, t, l, n, r, i, o);
18203
- if (!(n & I5)) {
18202
+ return o || (o = new Pt()), s || Kh(e) ? Zh(e, t, n, r, i, o) : d5(e, t, l, n, r, i, o);
18203
+ if (!(n & A5)) {
18204
18204
  var f = u && Tu.call(e, "__wrapped__"), g = d && Tu.call(t, "__wrapped__");
18205
18205
  if (f || g) {
18206
18206
  var p = f ? e.value() : e, m = g ? t.value() : t;
18207
18207
  return o || (o = new Pt()), i(p, m, n, r, o);
18208
18208
  }
18209
18209
  }
18210
- return h ? (o || (o = new Pt()), w5(e, t, n, r, i, o)) : !1;
18210
+ return h ? (o || (o = new Pt()), S5(e, t, n, r, i, o)) : !1;
18211
18211
  }
18212
18212
  function Do(e, t, n, r, i) {
18213
- return e === t ? !0 : e == null || t == null || !Sn(e) && !Sn(t) ? e !== e && t !== t : k5(e, t, n, r, Do, i);
18213
+ return e === t ? !0 : e == null || t == null || !Sn(e) && !Sn(t) ? e !== e && t !== t : O5(e, t, n, r, Do, i);
18214
18214
  }
18215
- var O5 = 1, R5 = 2;
18216
- function P5(e, t, n, r) {
18215
+ var R5 = 1, P5 = 2;
18216
+ function D5(e, t, n, r) {
18217
18217
  var i = n.length, o = i;
18218
18218
  if (e == null)
18219
18219
  return !o;
@@ -18230,7 +18230,7 @@ function P5(e, t, n, r) {
18230
18230
  return !1;
18231
18231
  } else {
18232
18232
  var u = new Pt(), d;
18233
- if (!(d === void 0 ? Do(c, l, O5 | R5, r, u) : d))
18233
+ if (!(d === void 0 ? Do(c, l, R5 | P5, r, u) : d))
18234
18234
  return !1;
18235
18235
  }
18236
18236
  }
@@ -18239,7 +18239,7 @@ function P5(e, t, n, r) {
18239
18239
  function Qh(e) {
18240
18240
  return e === e && !wn(e);
18241
18241
  }
18242
- function D5(e) {
18242
+ function $5(e) {
18243
18243
  for (var t = il(e), n = t.length; n--; ) {
18244
18244
  var r = t[n], i = e[r];
18245
18245
  t[n] = [r, i, Qh(i)];
@@ -18251,23 +18251,23 @@ function ef(e, t) {
18251
18251
  return n == null ? !1 : n[e] === t && (t !== void 0 || e in Object(n));
18252
18252
  };
18253
18253
  }
18254
- function $5(e) {
18255
- var t = D5(e);
18254
+ function j5(e) {
18255
+ var t = $5(e);
18256
18256
  return t.length == 1 && t[0][2] ? ef(t[0][0], t[0][1]) : function(n) {
18257
- return n === e || P5(n, e, t);
18257
+ return n === e || D5(n, e, t);
18258
18258
  };
18259
18259
  }
18260
- var j5 = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, L5 = /^\w*$/;
18260
+ var L5 = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, N5 = /^\w*$/;
18261
18261
  function ol(e, t) {
18262
18262
  if (wt(e))
18263
18263
  return !1;
18264
18264
  var n = typeof e;
18265
- return n == "number" || n == "symbol" || n == "boolean" || e == null || Oo(e) ? !0 : L5.test(e) || !j5.test(e) || t != null && e in Object(t);
18265
+ return n == "number" || n == "symbol" || n == "boolean" || e == null || Oo(e) ? !0 : N5.test(e) || !L5.test(e) || t != null && e in Object(t);
18266
18266
  }
18267
- var N5 = "Expected a function";
18267
+ var z5 = "Expected a function";
18268
18268
  function sl(e, t) {
18269
18269
  if (typeof e != "function" || t != null && typeof t != "function")
18270
- throw new TypeError(N5);
18270
+ throw new TypeError(z5);
18271
18271
  var n = function() {
18272
18272
  var r = arguments, i = t ? t.apply(this, r) : r[0], o = n.cache;
18273
18273
  if (o.has(i))
@@ -18278,20 +18278,20 @@ function sl(e, t) {
18278
18278
  return n.cache = new (sl.Cache || Bt)(), n;
18279
18279
  }
18280
18280
  sl.Cache = Bt;
18281
- var z5 = 500;
18282
- function F5(e) {
18281
+ var F5 = 500;
18282
+ function G5(e) {
18283
18283
  var t = sl(e, function(r) {
18284
- return n.size === z5 && n.clear(), r;
18284
+ return n.size === F5 && n.clear(), r;
18285
18285
  }), n = t.cache;
18286
18286
  return t;
18287
18287
  }
18288
- var G5 = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g, B5 = /\\(\\)?/g, V5 = F5(function(e) {
18288
+ var B5 = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g, V5 = /\\(\\)?/g, U5 = G5(function(e) {
18289
18289
  var t = [];
18290
- return e.charCodeAt(0) === 46 && t.push(""), e.replace(G5, function(n, r, i, o) {
18291
- t.push(i ? o.replace(B5, "$1") : r || n);
18290
+ return e.charCodeAt(0) === 46 && t.push(""), e.replace(B5, function(n, r, i, o) {
18291
+ t.push(i ? o.replace(V5, "$1") : r || n);
18292
18292
  }), t;
18293
18293
  });
18294
- function U5(e, t) {
18294
+ function W5(e, t) {
18295
18295
  for (var n = -1, r = e == null ? 0 : e.length, i = Array(r); ++n < r; )
18296
18296
  i[n] = t(e[n], n, e);
18297
18297
  return i;
@@ -18301,7 +18301,7 @@ function tf(e) {
18301
18301
  if (typeof e == "string")
18302
18302
  return e;
18303
18303
  if (wt(e))
18304
- return U5(e, tf) + "";
18304
+ return W5(e, tf) + "";
18305
18305
  if (Oo(e))
18306
18306
  return _u ? _u.call(e) : "";
18307
18307
  var t = e + "";
@@ -18311,7 +18311,7 @@ function nf(e) {
18311
18311
  return e == null ? "" : tf(e);
18312
18312
  }
18313
18313
  function rf(e, t) {
18314
- return wt(e) ? e : ol(e, t) ? [e] : V5(nf(e));
18314
+ return wt(e) ? e : ol(e, t) ? [e] : U5(nf(e));
18315
18315
  }
18316
18316
  function $o(e) {
18317
18317
  if (typeof e == "string" || Oo(e))
@@ -18325,14 +18325,14 @@ function of(e, t) {
18325
18325
  e = e[$o(t[n++])];
18326
18326
  return n && n == r ? e : void 0;
18327
18327
  }
18328
- function W5(e, t, n) {
18328
+ function H5(e, t, n) {
18329
18329
  var r = e == null ? void 0 : of(e, t);
18330
18330
  return r === void 0 ? n : r;
18331
18331
  }
18332
- function H5(e, t) {
18332
+ function Y5(e, t) {
18333
18333
  return e != null && t in Object(e);
18334
18334
  }
18335
- function Y5(e, t, n) {
18335
+ function q5(e, t, n) {
18336
18336
  t = rf(t, e);
18337
18337
  for (var r = -1, i = t.length, o = !1; ++r < i; ) {
18338
18338
  var s = $o(t[r]);
@@ -18342,46 +18342,46 @@ function Y5(e, t, n) {
18342
18342
  }
18343
18343
  return o || ++r != i ? o : (i = e == null ? 0 : e.length, !!i && rl(i) && Yh(s, i) && (wt(e) || Wh(e)));
18344
18344
  }
18345
- function q5(e, t) {
18346
- return e != null && Y5(e, t, H5);
18345
+ function K5(e, t) {
18346
+ return e != null && q5(e, t, Y5);
18347
18347
  }
18348
- var K5 = 1, J5 = 2;
18349
- function X5(e, t) {
18348
+ var J5 = 1, X5 = 2;
18349
+ function Z5(e, t) {
18350
18350
  return ol(e) && Qh(t) ? ef($o(e), t) : function(n) {
18351
- var r = W5(n, e);
18352
- return r === void 0 && r === t ? q5(n, e) : Do(t, r, K5 | J5);
18351
+ var r = H5(n, e);
18352
+ return r === void 0 && r === t ? K5(n, e) : Do(t, r, J5 | X5);
18353
18353
  };
18354
18354
  }
18355
- function Z5(e) {
18355
+ function Q5(e) {
18356
18356
  return e;
18357
18357
  }
18358
- function Q5(e) {
18358
+ function eE(e) {
18359
18359
  return function(t) {
18360
18360
  return t == null ? void 0 : t[e];
18361
18361
  };
18362
18362
  }
18363
- function eE(e) {
18363
+ function tE(e) {
18364
18364
  return function(t) {
18365
18365
  return of(t, e);
18366
18366
  };
18367
18367
  }
18368
- function tE(e) {
18369
- return ol(e) ? Q5($o(e)) : eE(e);
18370
- }
18371
18368
  function nE(e) {
18372
- return typeof e == "function" ? e : e == null ? Z5 : typeof e == "object" ? wt(e) ? X5(e[0], e[1]) : $5(e) : tE(e);
18369
+ return ol(e) ? eE($o(e)) : tE(e);
18370
+ }
18371
+ function rE(e) {
18372
+ return typeof e == "function" ? e : e == null ? Q5 : typeof e == "object" ? wt(e) ? Z5(e[0], e[1]) : j5(e) : nE(e);
18373
18373
  }
18374
- function rE(e, t) {
18374
+ function iE(e, t) {
18375
18375
  return function(n, r) {
18376
- var i = wt(n) ? hC : dT, o = {};
18377
- return i(n, e, nE(r), o);
18376
+ var i = wt(n) ? fC : hT, o = {};
18377
+ return i(n, e, rE(r), o);
18378
18378
  };
18379
18379
  }
18380
- var di = rE(function(e, t, n) {
18381
- dC(e, n, t);
18382
- }), iE = 0;
18383
- function oE(e) {
18384
- var t = ++iE;
18380
+ var di = iE(function(e, t, n) {
18381
+ hC(e, n, t);
18382
+ }), oE = 0;
18383
+ function sE(e) {
18384
+ var t = ++oE;
18385
18385
  return nf(e) + t;
18386
18386
  }
18387
18387
  const Hs = [
@@ -18389,10 +18389,10 @@ const Hs = [
18389
18389
  { id: "1", mm: 1, degrees: 0.5 },
18390
18390
  { id: "5", mm: 5, degrees: 2.5 },
18391
18391
  { id: "10", mm: 10, degrees: 5 }
18392
- ], sE = [
18392
+ ], aE = [
18393
18393
  { id: "continuous" },
18394
18394
  ...Hs
18395
- ], aE = ["coordsys", "tool"];
18395
+ ], lE = ["coordsys", "tool"];
18396
18396
  class al {
18397
18397
  constructor(t, n, r, i) {
18398
18398
  var o, s;
@@ -18485,7 +18485,7 @@ class al {
18485
18485
  ];
18486
18486
  }
18487
18487
  get incrementOptions() {
18488
- return sE;
18488
+ return aE;
18489
18489
  }
18490
18490
  get discreteIncrementOptions() {
18491
18491
  return Hs;
@@ -18584,7 +18584,7 @@ class al {
18584
18584
  }
18585
18585
  /** Lock the UI until the given async callback resolves */
18586
18586
  async withMotionLock(t) {
18587
- const n = oE();
18587
+ const n = sE();
18588
18588
  this.lock(n);
18589
18589
  try {
18590
18590
  return await t();
@@ -18593,7 +18593,7 @@ class al {
18593
18593
  }
18594
18594
  }
18595
18595
  }
18596
- const lE = de(({ store: e }) => {
18596
+ const cE = de(({ store: e }) => {
18597
18597
  const { t } = Le();
18598
18598
  return /* @__PURE__ */ b.jsx(
18599
18599
  Lu,
@@ -18624,24 +18624,24 @@ const lE = de(({ store: e }) => {
18624
18624
  ] })
18625
18625
  }
18626
18626
  );
18627
- }), cE = ({
18627
+ }), uE = ({
18628
18628
  title: e,
18629
18629
  titleId: t,
18630
18630
  ...n
18631
- }, r) => /* @__PURE__ */ k.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 19, height: 10, fill: "none", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { fill: "#fff", fillRule: "evenodd", d: "M5.131.312a.9.9 0 0 1 0 1.272L3.07 3.645h12.44l-2.06-2.061A.9.9 0 0 1 14.72.313l3.596 3.596a.9.9 0 0 1 0 1.271l-3.596 3.597a.9.9 0 0 1-1.271-1.272l2.061-2.062H3.07L5.13 7.505A.9.9 0 0 1 3.86 8.777L.263 5.18a.9.9 0 0 1 0-1.271L3.86.312a.9.9 0 0 1 1.271 0", clipRule: "evenodd" })), uE = Re(cE), dE = ({
18631
+ }, r) => /* @__PURE__ */ k.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 19, height: 10, fill: "none", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { fill: "#fff", fillRule: "evenodd", d: "M5.131.312a.9.9 0 0 1 0 1.272L3.07 3.645h12.44l-2.06-2.061A.9.9 0 0 1 14.72.313l3.596 3.596a.9.9 0 0 1 0 1.271l-3.596 3.597a.9.9 0 0 1-1.271-1.272l2.061-2.062H3.07L5.13 7.505A.9.9 0 0 1 3.86 8.777L.263 5.18a.9.9 0 0 1 0-1.271L3.86.312a.9.9 0 0 1 1.271 0", clipRule: "evenodd" })), dE = Re(uE), hE = ({
18632
18632
  title: e,
18633
18633
  titleId: t,
18634
18634
  ...n
18635
- }, r) => /* @__PURE__ */ k.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 19, height: 10, fill: "none", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { fill: "#fff", fillRule: "evenodd", d: "M5.131.312a.9.9 0 0 1 0 1.272L3.07 3.645h12.44l-2.06-2.061A.9.9 0 0 1 14.72.313l3.596 3.596a.9.9 0 0 1 0 1.271l-3.596 3.597a.9.9 0 0 1-1.271-1.272l2.061-2.062H3.07L5.13 7.505A.9.9 0 0 1 3.86 8.777L.263 5.18a.9.9 0 0 1 0-1.271L3.86.312a.9.9 0 0 1 1.271 0", clipRule: "evenodd" })), hE = Re(dE), fE = ({
18635
+ }, r) => /* @__PURE__ */ k.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 19, height: 10, fill: "none", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { fill: "#fff", fillRule: "evenodd", d: "M5.131.312a.9.9 0 0 1 0 1.272L3.07 3.645h12.44l-2.06-2.061A.9.9 0 0 1 14.72.313l3.596 3.596a.9.9 0 0 1 0 1.271l-3.596 3.597a.9.9 0 0 1-1.271-1.272l2.061-2.062H3.07L5.13 7.505A.9.9 0 0 1 3.86 8.777L.263 5.18a.9.9 0 0 1 0-1.271L3.86.312a.9.9 0 0 1 1.271 0", clipRule: "evenodd" })), fE = Re(hE), pE = ({
18636
18636
  title: e,
18637
18637
  titleId: t,
18638
18638
  ...n
18639
- }, r) => /* @__PURE__ */ k.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 10, height: 19, fill: "none", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { fill: "#fff", fillRule: "evenodd", d: "M9.522 14.811A.899.899 0 1 0 8.25 13.54L6.19 15.601V3.16L8.25 5.221A.9.9 0 0 0 9.522 3.95L5.926.354a.9.9 0 0 0-1.272 0L1.058 3.95a.9.9 0 1 0 1.271 1.271L4.391 3.16v12.442L2.329 13.54a.899.899 0 1 0-1.271 1.271l3.596 3.597a.9.9 0 0 0 1.272 0z", clipRule: "evenodd" })), pE = Re(fE), gE = ({
18639
+ }, r) => /* @__PURE__ */ k.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 10, height: 19, fill: "none", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { fill: "#fff", fillRule: "evenodd", d: "M9.522 14.811A.899.899 0 1 0 8.25 13.54L6.19 15.601V3.16L8.25 5.221A.9.9 0 0 0 9.522 3.95L5.926.354a.9.9 0 0 0-1.272 0L1.058 3.95a.9.9 0 1 0 1.271 1.271L4.391 3.16v12.442L2.329 13.54a.899.899 0 1 0-1.271 1.271l3.596 3.597a.9.9 0 0 0 1.272 0z", clipRule: "evenodd" })), gE = Re(pE), mE = ({
18640
18640
  title: e,
18641
18641
  titleId: t,
18642
18642
  ...n
18643
- }, r) => /* @__PURE__ */ k.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M8 16C5.76667 16 3.875 15.225 2.325 13.675C0.775 12.125 0 10.2333 0 8C0 5.76667 0.775 3.875 2.325 2.325C3.875 0.775 5.76667 0 8 0C9.15 0 10.25 0.2375 11.3 0.7125C12.35 1.1875 13.25 1.86667 14 2.75V0H16V7H9V5H13.2C12.6667 4.06667 11.9375 3.33333 11.0125 2.8C10.0875 2.26667 9.08333 2 8 2C6.33333 2 4.91667 2.58333 3.75 3.75C2.58333 4.91667 2 6.33333 2 8C2 9.66667 2.58333 11.0833 3.75 12.25C4.91667 13.4167 6.33333 14 8 14C9.28333 14 10.4417 13.6333 11.475 12.9C11.0583 14.1 12.5083 12.1667 11.475 12.9L12.9 14.325C11.4667 15.4417 9.83333 16 8 16Z", fill: "white" })), mE = Re(gE);
18644
- function yE(e, t) {
18643
+ }, r) => /* @__PURE__ */ k.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M8 16C5.76667 16 3.875 15.225 2.325 13.675C0.775 12.125 0 10.2333 0 8C0 5.76667 0.775 3.875 2.325 2.325C3.875 0.775 5.76667 0 8 0C9.15 0 10.25 0.2375 11.3 0.7125C12.35 1.1875 13.25 1.86667 14 2.75V0H16V7H9V5H13.2C12.6667 4.06667 11.9375 3.33333 11.0125 2.8C10.0875 2.26667 9.08333 2 8 2C6.33333 2 4.91667 2.58333 3.75 3.75C2.58333 4.91667 2 6.33333 2 8C2 9.66667 2.58333 11.0833 3.75 12.25C4.91667 13.4167 6.33333 14 8 14C9.28333 14 10.4417 13.6333 11.475 12.9C11.0583 14.1 12.5083 12.1667 11.475 12.9L12.9 14.325C11.4667 15.4417 9.83333 16 8 16Z", fill: "white" })), yE = Re(mE);
18644
+ function bE(e, t) {
18645
18645
  return Do(e, t);
18646
18646
  }
18647
18647
  const sf = ({
@@ -18652,7 +18652,7 @@ const sf = ({
18652
18652
  ), i = ge(n);
18653
18653
  Ks(() => {
18654
18654
  const s = e.jogger.motionStream.rapidlyChangingMotionState.joint_limit_reached.limit_reached;
18655
- yE(i.current, s) || (i.current = s, r(s));
18655
+ bE(i.current, s) || (i.current = s, r(s));
18656
18656
  });
18657
18657
  const o = [];
18658
18658
  for (const [s, a] of n.entries())
@@ -18672,7 +18672,7 @@ const sf = ({
18672
18672
  })
18673
18673
  }
18674
18674
  );
18675
- }, bE = qs(Of)(({ theme: e }) => ({
18675
+ }, xE = qs(Of)(({ theme: e }) => ({
18676
18676
  "&.MuiFormControl-root": {
18677
18677
  ".MuiSelect-select": {
18678
18678
  paddingTop: "20px",
@@ -18693,12 +18693,12 @@ function hi({
18693
18693
  labelValue: e,
18694
18694
  ...t
18695
18695
  }) {
18696
- return /* @__PURE__ */ b.jsxs(bE, { fullWidth: !0, variant: "filled", children: [
18696
+ return /* @__PURE__ */ b.jsxs(xE, { fullWidth: !0, variant: "filled", children: [
18697
18697
  /* @__PURE__ */ b.jsx(Af, { id: t.labelId, children: e }),
18698
18698
  /* @__PURE__ */ b.jsx(kf, { ...t })
18699
18699
  ] });
18700
18700
  }
18701
- const xE = de(({ store: e }) => {
18701
+ const vE = de(({ store: e }) => {
18702
18702
  var o;
18703
18703
  const { t } = Le(), n = Ki(), r = [];
18704
18704
  function i(s) {
@@ -18751,7 +18751,7 @@ const xE = de(({ store: e }) => {
18751
18751
  value: e.selectedOrientation,
18752
18752
  onChange: (s) => e.setSelectedOrientation(s.target.value),
18753
18753
  disabled: e.isLocked,
18754
- children: aE.map((s) => /* @__PURE__ */ b.jsx(Un, { value: s, children: i(s) }, s))
18754
+ children: lE.map((s) => /* @__PURE__ */ b.jsx(Un, { value: s, children: i(s) }, s))
18755
18755
  },
18756
18756
  "orientation"
18757
18757
  )
@@ -18796,7 +18796,7 @@ const xE = de(({ store: e }) => {
18796
18796
  ))
18797
18797
  }
18798
18798
  );
18799
- }), vE = qs(Rf)(({ theme: e }) => {
18799
+ }), wE = qs(Rf)(({ theme: e }) => {
18800
18800
  var t;
18801
18801
  return {
18802
18802
  "&.MuiToggleButtonGroup-root": {
@@ -18827,7 +18827,7 @@ function Mu(e, t) {
18827
18827
  function Mr(e) {
18828
18828
  return typeof e == "string";
18829
18829
  }
18830
- function wE(e, t, n) {
18830
+ function SE(e, t, n) {
18831
18831
  return e === void 0 || Mr(e) ? t : {
18832
18832
  ...t,
18833
18833
  ownerState: {
@@ -18852,7 +18852,7 @@ function Iu(e) {
18852
18852
  t[n] = e[n];
18853
18853
  }), t;
18854
18854
  }
18855
- function SE(e) {
18855
+ function CE(e) {
18856
18856
  const {
18857
18857
  getSlotProps: t,
18858
18858
  additionalProps: n,
@@ -18894,7 +18894,7 @@ function SE(e) {
18894
18894
  internalRef: c.ref
18895
18895
  };
18896
18896
  }
18897
- function CE(e, t, n) {
18897
+ function TE(e, t, n) {
18898
18898
  return typeof e == "function" ? e(t, n) : e;
18899
18899
  }
18900
18900
  function Wt(e) {
@@ -18905,14 +18905,14 @@ function Wt(e) {
18905
18905
  ownerState: r,
18906
18906
  skipResolvingSlotProps: i = !1,
18907
18907
  ...o
18908
- } = e, s = i ? {} : CE(n, r), {
18908
+ } = e, s = i ? {} : TE(n, r), {
18909
18909
  props: a,
18910
18910
  internalRef: l
18911
- } = SE({
18911
+ } = CE({
18912
18912
  ...o,
18913
18913
  externalSlotProps: s
18914
18914
  }), c = ho(l, s == null ? void 0 : s.ref, (d = e.additionalProps) == null ? void 0 : d.ref);
18915
- return wE(t, {
18915
+ return SE(t, {
18916
18916
  ...a,
18917
18917
  ref: c
18918
18918
  }, r);
@@ -18926,7 +18926,7 @@ function Au(e) {
18926
18926
  }
18927
18927
  return !1;
18928
18928
  }
18929
- const TE = {
18929
+ const EE = {
18930
18930
  border: 0,
18931
18931
  clip: "rect(0 0 0 0)",
18932
18932
  height: "1px",
@@ -18937,10 +18937,10 @@ const TE = {
18937
18937
  whiteSpace: "nowrap",
18938
18938
  width: "1px"
18939
18939
  };
18940
- function EE(e, t, n = (r, i) => r === i) {
18940
+ function _E(e, t, n = (r, i) => r === i) {
18941
18941
  return e.length === t.length && e.every((r, i) => n(r, t[i]));
18942
18942
  }
18943
- const _E = 2;
18943
+ const ME = 2;
18944
18944
  function Vn(e, t, n, r, i) {
18945
18945
  return n === 1 ? Math.min(e + t, i) : Math.max(e - t, r);
18946
18946
  }
@@ -18980,10 +18980,10 @@ function fi(e, t) {
18980
18980
  function Hi(e, t, n) {
18981
18981
  return (e - t) * 100 / (n - t);
18982
18982
  }
18983
- function ME(e, t, n) {
18983
+ function IE(e, t, n) {
18984
18984
  return (n - t) * e + t;
18985
18985
  }
18986
- function IE(e) {
18986
+ function AE(e) {
18987
18987
  if (Math.abs(e) < 1) {
18988
18988
  const n = e.toExponential().split("e-"), r = n[0].split(".")[1];
18989
18989
  return (r ? r.length : 0) + parseInt(n[1], 10);
@@ -18991,9 +18991,9 @@ function IE(e) {
18991
18991
  const t = e.toString().split(".")[1];
18992
18992
  return t ? t.length : 0;
18993
18993
  }
18994
- function AE(e, t, n) {
18994
+ function kE(e, t, n) {
18995
18995
  const r = Math.round((e - n) / t) * t + n;
18996
- return Number(r.toFixed(IE(t)));
18996
+ return Number(r.toFixed(AE(t)));
18997
18997
  }
18998
18998
  function Ou({
18999
18999
  values: e,
@@ -19013,9 +19013,9 @@ function pi({
19013
19013
  (!((i = e.current) != null && i.contains(r.activeElement)) || Number((o = r == null ? void 0 : r.activeElement) == null ? void 0 : o.getAttribute("data-index")) !== t) && ((s = e.current) == null || s.querySelector(`[type="range"][data-index="${t}"]`).focus()), n && n(t);
19014
19014
  }
19015
19015
  function gi(e, t) {
19016
- return typeof e == "number" && typeof t == "number" ? e === t : typeof e == "object" && typeof t == "object" ? EE(e, t) : !1;
19016
+ return typeof e == "number" && typeof t == "number" ? e === t : typeof e == "object" && typeof t == "object" ? _E(e, t) : !1;
19017
19017
  }
19018
- const kE = {
19018
+ const OE = {
19019
19019
  horizontal: {
19020
19020
  offset: (e) => ({
19021
19021
  left: `${e}%`
@@ -19040,12 +19040,12 @@ const kE = {
19040
19040
  height: `${e}%`
19041
19041
  })
19042
19042
  }
19043
- }, OE = (e) => e;
19043
+ }, RE = (e) => e;
19044
19044
  let mi;
19045
19045
  function Ru() {
19046
19046
  return mi === void 0 && (typeof CSS < "u" && typeof CSS.supports == "function" ? mi = CSS.supports("touch-action", "none") : mi = !0), mi;
19047
19047
  }
19048
- function RE(e) {
19048
+ function PE(e) {
19049
19049
  const {
19050
19050
  "aria-labelledby": t,
19051
19051
  defaultValue: n,
@@ -19060,7 +19060,7 @@ function RE(e) {
19060
19060
  onChangeCommitted: d,
19061
19061
  orientation: h = "horizontal",
19062
19062
  rootRef: f,
19063
- scale: g = OE,
19063
+ scale: g = RE,
19064
19064
  step: p = 1,
19065
19065
  shiftStep: m = 10,
19066
19066
  tabIndex: v,
@@ -19179,8 +19179,8 @@ function RE(e) {
19179
19179
  let Ne;
19180
19180
  G.startsWith("vertical") ? Ne = (Y - L.y) / ue : Ne = (L.x - Me) / te, G.includes("-reverse") && (Ne = 1 - Ne);
19181
19181
  let Se;
19182
- if (Se = ME(Ne, l, a), p)
19183
- Se = AE(Se, p, l);
19182
+ if (Se = IE(Ne, l, a), p)
19183
+ Se = kE(Se, p, l);
19184
19184
  else {
19185
19185
  const dr = ku(z, Se);
19186
19186
  Se = z[dr];
@@ -19219,7 +19219,7 @@ function RE(e) {
19219
19219
  sliderRef: Z,
19220
19220
  activeIndex: te,
19221
19221
  setActive: _
19222
- }), I(W), !A && D.current > _E && R(!0), M && !gi(W, y) && M(L, W, te);
19222
+ }), I(W), !A && D.current > ME && R(!0), M && !gi(W, y) && M(L, W, te);
19223
19223
  }), $ = bt((L) => {
19224
19224
  const B = fi(L, S);
19225
19225
  if (R(!1), !B)
@@ -19336,7 +19336,7 @@ function RE(e) {
19336
19336
  return h === "vertical" && (Dn = o ? "vertical-rl" : "vertical-lr"), {
19337
19337
  active: C,
19338
19338
  axis: G,
19339
- axisProps: kE,
19339
+ axisProps: OE,
19340
19340
  dragging: A,
19341
19341
  focusedThumbIndex: q,
19342
19342
  getHiddenInputProps: (L = {}) => {
@@ -19364,7 +19364,7 @@ function RE(e) {
19364
19364
  ...L,
19365
19365
  ...te,
19366
19366
  style: {
19367
- ...TE,
19367
+ ...EE,
19368
19368
  direction: o ? "rtl" : "ltr",
19369
19369
  // So that VoiceOver's focus indicator matches the thumb's dimensions
19370
19370
  width: "100%",
@@ -19385,12 +19385,12 @@ function RE(e) {
19385
19385
  getThumbStyle: Kr
19386
19386
  };
19387
19387
  }
19388
- const PE = (e) => !e || !Mr(e);
19389
- function DE(e) {
19388
+ const DE = (e) => !e || !Mr(e);
19389
+ function $E(e) {
19390
19390
  return typeof e.main == "string";
19391
19391
  }
19392
- function $E(e, t = []) {
19393
- if (!DE(e))
19392
+ function jE(e, t = []) {
19393
+ if (!$E(e))
19394
19394
  return !1;
19395
19395
  for (const n of t)
19396
19396
  if (!e.hasOwnProperty(n) || typeof e[n] != "string")
@@ -19398,12 +19398,12 @@ function $E(e, t = []) {
19398
19398
  return !0;
19399
19399
  }
19400
19400
  function ll(e = []) {
19401
- return ([, t]) => t && $E(t, e);
19401
+ return ([, t]) => t && jE(t, e);
19402
19402
  }
19403
- function jE(e) {
19403
+ function LE(e) {
19404
19404
  return Tn("MuiSlider", e);
19405
19405
  }
19406
- const rt = ao("MuiSlider", ["root", "active", "colorPrimary", "colorSecondary", "colorError", "colorInfo", "colorSuccess", "colorWarning", "disabled", "dragging", "focusVisible", "mark", "markActive", "marked", "markLabel", "markLabelActive", "rail", "sizeSmall", "thumb", "thumbColorPrimary", "thumbColorSecondary", "thumbColorError", "thumbColorSuccess", "thumbColorInfo", "thumbColorWarning", "track", "trackInverted", "trackFalse", "thumbSizeSmall", "valueLabel", "valueLabelOpen", "valueLabelCircle", "valueLabelLabel", "vertical"]), LE = (e) => {
19406
+ const rt = ao("MuiSlider", ["root", "active", "colorPrimary", "colorSecondary", "colorError", "colorInfo", "colorSuccess", "colorWarning", "disabled", "dragging", "focusVisible", "mark", "markActive", "marked", "markLabel", "markLabelActive", "rail", "sizeSmall", "thumb", "thumbColorPrimary", "thumbColorSecondary", "thumbColorError", "thumbColorSuccess", "thumbColorInfo", "thumbColorWarning", "track", "trackInverted", "trackFalse", "thumbSizeSmall", "valueLabel", "valueLabelOpen", "valueLabelCircle", "valueLabelLabel", "vertical"]), NE = (e) => {
19407
19407
  const {
19408
19408
  open: t
19409
19409
  } = e;
@@ -19418,7 +19418,7 @@ function lf(e) {
19418
19418
  children: t,
19419
19419
  className: n,
19420
19420
  value: r
19421
- } = e, i = LE(e);
19421
+ } = e, i = NE(e);
19422
19422
  return t ? /* @__PURE__ */ k.cloneElement(t, {
19423
19423
  className: t.props.className
19424
19424
  }, /* @__PURE__ */ b.jsxs(k.Fragment, {
@@ -19443,7 +19443,7 @@ process.env.NODE_ENV !== "production" && (lf.propTypes = {
19443
19443
  function Pu(e) {
19444
19444
  return e;
19445
19445
  }
19446
- const NE = Je("span", {
19446
+ const zE = Je("span", {
19447
19447
  name: "MuiSlider",
19448
19448
  slot: "Root",
19449
19449
  overridesResolver: (e, t) => {
@@ -19543,7 +19543,7 @@ const NE = Je("span", {
19543
19543
  marginRight: 44
19544
19544
  }
19545
19545
  }]
19546
- }))), zE = Je("span", {
19546
+ }))), FE = Je("span", {
19547
19547
  name: "MuiSlider",
19548
19548
  slot: "Rail"
19549
19549
  })({
@@ -19580,7 +19580,7 @@ const NE = Je("span", {
19580
19580
  opacity: 1
19581
19581
  }
19582
19582
  }]
19583
- }), FE = Je("span", {
19583
+ }), GE = Je("span", {
19584
19584
  name: "MuiSlider",
19585
19585
  slot: "Track"
19586
19586
  })(kn(({
@@ -19647,7 +19647,7 @@ const NE = Je("span", {
19647
19647
  }
19648
19648
  }
19649
19649
  }))]
19650
- }))), GE = Je("span", {
19650
+ }))), BE = Je("span", {
19651
19651
  name: "MuiSlider",
19652
19652
  slot: "Thumb",
19653
19653
  overridesResolver: (e, t) => {
@@ -19845,7 +19845,7 @@ process.env.NODE_ENV !== "production" && (cf.propTypes = {
19845
19845
  */
19846
19846
  value: x.node
19847
19847
  });
19848
- const BE = Je("span", {
19848
+ const VE = Je("span", {
19849
19849
  name: "MuiSlider",
19850
19850
  slot: "Mark",
19851
19851
  shouldForwardProp: (e) => na(e) && e !== "markActive",
@@ -19888,7 +19888,7 @@ const BE = Je("span", {
19888
19888
  opacity: 0.8
19889
19889
  }
19890
19890
  }]
19891
- }))), VE = Je("span", {
19891
+ }))), UE = Je("span", {
19892
19892
  name: "MuiSlider",
19893
19893
  slot: "MarkLabel",
19894
19894
  shouldForwardProp: (e) => na(e) && e !== "markLabelActive"
@@ -19929,7 +19929,7 @@ const BE = Je("span", {
19929
19929
  color: (e.vars || e).palette.text.primary
19930
19930
  }
19931
19931
  }]
19932
- }))), UE = (e) => {
19932
+ }))), WE = (e) => {
19933
19933
  const {
19934
19934
  disabled: t,
19935
19935
  dragging: n,
@@ -19953,8 +19953,8 @@ const BE = Je("span", {
19953
19953
  disabled: ["disabled"],
19954
19954
  focusVisible: ["focusVisible"]
19955
19955
  };
19956
- return Nr(c, jE, s);
19957
- }, WE = ({
19956
+ return Nr(c, LE, s);
19957
+ }, HE = ({
19958
19958
  children: e
19959
19959
  }) => e, uf = /* @__PURE__ */ k.forwardRef(function(t, n) {
19960
19960
  const r = el({
@@ -20028,18 +20028,18 @@ const BE = Je("span", {
20028
20028
  trackOffset: ee,
20029
20029
  trackLeap: ke,
20030
20030
  getThumbStyle: _e
20031
- } = RE({
20031
+ } = PE({
20032
20032
  ...Z,
20033
20033
  rootRef: n
20034
20034
  });
20035
20035
  Z.marked = $.length > 0 && $.some((we) => we.label), Z.dragging = X, Z.focusedThumbIndex = G;
20036
- const pe = UE(Z), Vt = (M == null ? void 0 : M.root) ?? c.Root ?? NE, Hr = (M == null ? void 0 : M.rail) ?? c.Rail ?? zE, Yr = (M == null ? void 0 : M.track) ?? c.Track ?? FE, qr = (M == null ? void 0 : M.thumb) ?? c.Thumb ?? GE, Kr = (M == null ? void 0 : M.valueLabel) ?? c.ValueLabel ?? cf, Dn = (M == null ? void 0 : M.mark) ?? c.Mark ?? BE, Jr = (M == null ? void 0 : M.markLabel) ?? c.MarkLabel ?? VE, L = (M == null ? void 0 : M.input) ?? c.Input ?? "input", B = (I == null ? void 0 : I.root) ?? u.root, W = (I == null ? void 0 : I.rail) ?? u.rail, te = (I == null ? void 0 : I.track) ?? u.track, ue = (I == null ? void 0 : I.thumb) ?? u.thumb, Y = (I == null ? void 0 : I.valueLabel) ?? u.valueLabel, Me = (I == null ? void 0 : I.mark) ?? u.mark, Ne = (I == null ? void 0 : I.markLabel) ?? u.markLabel, Se = (I == null ? void 0 : I.input) ?? u.input, Xe = Wt({
20036
+ const pe = WE(Z), Vt = (M == null ? void 0 : M.root) ?? c.Root ?? zE, Hr = (M == null ? void 0 : M.rail) ?? c.Rail ?? FE, Yr = (M == null ? void 0 : M.track) ?? c.Track ?? GE, qr = (M == null ? void 0 : M.thumb) ?? c.Thumb ?? BE, Kr = (M == null ? void 0 : M.valueLabel) ?? c.ValueLabel ?? cf, Dn = (M == null ? void 0 : M.mark) ?? c.Mark ?? VE, Jr = (M == null ? void 0 : M.markLabel) ?? c.MarkLabel ?? UE, L = (M == null ? void 0 : M.input) ?? c.Input ?? "input", B = (I == null ? void 0 : I.root) ?? u.root, W = (I == null ? void 0 : I.rail) ?? u.rail, te = (I == null ? void 0 : I.track) ?? u.track, ue = (I == null ? void 0 : I.thumb) ?? u.thumb, Y = (I == null ? void 0 : I.valueLabel) ?? u.valueLabel, Me = (I == null ? void 0 : I.mark) ?? u.mark, Ne = (I == null ? void 0 : I.markLabel) ?? u.markLabel, Se = (I == null ? void 0 : I.input) ?? u.input, Xe = Wt({
20037
20037
  elementType: Vt,
20038
20038
  getSlotProps: Tt,
20039
20039
  externalSlotProps: B,
20040
20040
  externalForwardedProps: ce,
20041
20041
  additionalProps: {
20042
- ...PE(Vt) && {
20042
+ ...DE(Vt) && {
20043
20043
  as: l
20044
20044
  }
20045
20045
  },
@@ -20137,7 +20137,7 @@ const BE = Je("span", {
20137
20137
  }) : null]
20138
20138
  }, Oe);
20139
20139
  }), re.map((we, Oe) => {
20140
- const Fo = Hi(we, C, S), Xr = Ue[qe].offset(Fo), Mt = z === "off" ? WE : Kr;
20140
+ const Fo = Hi(we, C, S), Xr = Ue[qe].offset(Fo), Mt = z === "off" ? HE : Kr;
20141
20141
  return (
20142
20142
  /* TODO v6: Change component structure. It will help in avoiding the complicated React.cloneElement API added in SliderValueLabel component. Should be: Thumb -> Input, ValueLabel. Follow Joy UI's Slider structure. */
20143
20143
  /* @__PURE__ */ b.jsx(Mt, {
@@ -20439,15 +20439,15 @@ process.env.NODE_ENV !== "production" && (uf.propTypes = {
20439
20439
  */
20440
20440
  valueLabelFormat: x.oneOfType([x.func, x.string])
20441
20441
  });
20442
- var HE = "[object Number]";
20443
- function YE(e) {
20444
- return typeof e == "number" || Sn(e) && On(e) == HE;
20442
+ var YE = "[object Number]";
20443
+ function qE(e) {
20444
+ return typeof e == "number" || Sn(e) && On(e) == YE;
20445
20445
  }
20446
- const qE = de((e) => {
20446
+ const KE = de((e) => {
20447
20447
  var o, s, a;
20448
20448
  const t = je(), { store: n } = e, { t: r } = Le();
20449
20449
  function i(l, c) {
20450
- c === e.velocity || !YE(c) || e.onVelocityChange(c);
20450
+ c === e.velocity || !qE(c) || e.onVelocityChange(c);
20451
20451
  }
20452
20452
  return /* @__PURE__ */ b.jsxs(be, { direction: "row", gap: 2, alignItems: "center", children: [
20453
20453
  n.showVelocityLegend && /* @__PURE__ */ b.jsx(
@@ -20524,7 +20524,7 @@ const hf = de(
20524
20524
  }
20525
20525
  }));
20526
20526
  return /* @__PURE__ */ b.jsx(
20527
- qE,
20527
+ KE,
20528
20528
  {
20529
20529
  store: e,
20530
20530
  velocity: e.velocityInDisplayUnits,
@@ -20547,7 +20547,7 @@ const hf = de(
20547
20547
  }
20548
20548
  );
20549
20549
  }
20550
- ), KE = de(
20550
+ ), JE = de(
20551
20551
  ({
20552
20552
  store: e,
20553
20553
  children: t
@@ -20621,17 +20621,17 @@ const hf = de(
20621
20621
  const c = [
20622
20622
  {
20623
20623
  id: "x",
20624
- icon: /* @__PURE__ */ b.jsx(uE, {}),
20624
+ icon: /* @__PURE__ */ b.jsx(dE, {}),
20625
20625
  colors: l("X", e.selectedCartesianMotionType, r)
20626
20626
  },
20627
20627
  {
20628
20628
  id: "y",
20629
- icon: /* @__PURE__ */ b.jsx(hE, {}),
20629
+ icon: /* @__PURE__ */ b.jsx(fE, {}),
20630
20630
  colors: l("Y", e.selectedCartesianMotionType, r)
20631
20631
  },
20632
20632
  {
20633
20633
  id: "z",
20634
- icon: /* @__PURE__ */ b.jsx(pE, {}),
20634
+ icon: /* @__PURE__ */ b.jsx(gE, {}),
20635
20635
  colors: l("Z", e.selectedCartesianMotionType, r)
20636
20636
  }
20637
20637
  ];
@@ -20645,7 +20645,7 @@ const hf = de(
20645
20645
  }
20646
20646
  return /* @__PURE__ */ b.jsxs(be, { flexGrow: 1, gap: 2, sx: { padding: "18px 24px" }, children: [
20647
20647
  /* @__PURE__ */ b.jsxs(be, { gap: 2, children: [
20648
- /* @__PURE__ */ b.jsx(xE, { store: e }),
20648
+ /* @__PURE__ */ b.jsx(vE, { store: e }),
20649
20649
  /* @__PURE__ */ b.jsx(hf, { store: e }),
20650
20650
  /* @__PURE__ */ b.jsx(Kt, {})
20651
20651
  ] }),
@@ -20666,7 +20666,7 @@ const hf = de(
20666
20666
  sx: { flexGrow: 1 },
20667
20667
  children: [
20668
20668
  /* @__PURE__ */ b.jsxs(
20669
- vE,
20669
+ wE,
20670
20670
  {
20671
20671
  value: e.selectedCartesianMotionType,
20672
20672
  onChange: i,
@@ -20725,7 +20725,7 @@ const hf = de(
20725
20725
  disabled: e.isLocked,
20726
20726
  activeJoggingDirection: ((f = e.incrementJogInProgress) == null ? void 0 : f.axis) === h.id ? e.incrementJogInProgress.direction : void 0,
20727
20727
  label: /* @__PURE__ */ b.jsxs(b.Fragment, { children: [
20728
- /* @__PURE__ */ b.jsx(mE, {}),
20728
+ /* @__PURE__ */ b.jsx(yE, {}),
20729
20729
  /* @__PURE__ */ b.jsx(
20730
20730
  Q,
20731
20731
  {
@@ -20763,7 +20763,7 @@ const hf = de(
20763
20763
  t
20764
20764
  ] });
20765
20765
  }
20766
- ), JE = de(
20766
+ ), XE = de(
20767
20767
  ({ store: e, children: t }) => {
20768
20768
  const n = je();
20769
20769
  async function r(o) {
@@ -20833,7 +20833,7 @@ const hf = de(
20833
20833
  t
20834
20834
  ] });
20835
20835
  }
20836
- ), iM = Ve(
20836
+ ), oM = Ve(
20837
20837
  de((e) => {
20838
20838
  const t = xp(e.nova) ? new Qp({ instanceUrl: e.nova }) : e.nova, n = Yi(() => ({
20839
20839
  joggingStore: null,
@@ -20872,7 +20872,7 @@ const hf = de(
20872
20872
  ...e.sx
20873
20873
  },
20874
20874
  children: n.joggingStore ? /* @__PURE__ */ b.jsx(
20875
- XE,
20875
+ ZE,
20876
20876
  {
20877
20877
  store: n.joggingStore,
20878
20878
  children: e.children
@@ -20881,7 +20881,7 @@ const hf = de(
20881
20881
  }
20882
20882
  );
20883
20883
  })
20884
- ), XE = de(
20884
+ ), ZE = de(
20885
20885
  ({
20886
20886
  store: e,
20887
20887
  children: t
@@ -20889,9 +20889,9 @@ const hf = de(
20889
20889
  const { t: n } = Le();
20890
20890
  function r() {
20891
20891
  if (e.currentTab.id === "cartesian")
20892
- return /* @__PURE__ */ b.jsx(b.Fragment, { children: /* @__PURE__ */ b.jsx(KE, { store: e, children: t }) });
20893
- if (e.currentTab.id === "joint")
20894
20892
  return /* @__PURE__ */ b.jsx(b.Fragment, { children: /* @__PURE__ */ b.jsx(JE, { store: e, children: t }) });
20893
+ if (e.currentTab.id === "joint")
20894
+ return /* @__PURE__ */ b.jsx(b.Fragment, { children: /* @__PURE__ */ b.jsx(XE, { store: e, children: t }) });
20895
20895
  }
20896
20896
  return /* @__PURE__ */ b.jsxs(be, { flexGrow: 1, sx: { overflow: "hidden" }, children: [
20897
20897
  /* @__PURE__ */ b.jsx(
@@ -20926,7 +20926,7 @@ const hf = de(
20926
20926
  children: r()
20927
20927
  }
20928
20928
  ),
20929
- e.blocked && /* @__PURE__ */ b.jsx(lE, { store: e })
20929
+ e.blocked && /* @__PURE__ */ b.jsx(cE, { store: e })
20930
20930
  ] });
20931
20931
  }
20932
20932
  ), ff = (e) => {
@@ -20988,7 +20988,7 @@ const hf = de(
20988
20988
  )
20989
20989
  }
20990
20990
  ) });
20991
- }, oM = Ve(
20991
+ }, sM = Ve(
20992
20992
  de(({ tcpPose: e, showCopyButton: t = !1 }) => {
20993
20993
  const [n, r] = $e(null), i = eg(e), o = async () => {
20994
20994
  try {
@@ -21022,7 +21022,7 @@ const hf = de(
21022
21022
  }
21023
21023
  );
21024
21024
  })
21025
- ), sM = Ve(
21025
+ ), aM = Ve(
21026
21026
  de(({ joints: e, showCopyButton: t = !1 }) => {
21027
21027
  const [n, r] = $e(null), i = `[${e.map((s) => parseFloat(s.toFixed(4))).join(", ")}]`, o = async () => {
21028
21028
  try {
@@ -21057,7 +21057,7 @@ const hf = de(
21057
21057
  );
21058
21058
  })
21059
21059
  );
21060
- class ZE {
21060
+ class QE {
21061
21061
  constructor() {
21062
21062
  this.messages = [], this.addMessage = (t, n = "info") => {
21063
21063
  const r = {
@@ -21089,7 +21089,7 @@ const jo = (e, t, n) => ({
21089
21089
  timestamp: /* @__PURE__ */ new Date(),
21090
21090
  message: e,
21091
21091
  level: t
21092
- }), aM = (e, t) => jo(e, "debug", t), lM = (e, t) => jo(e, "info", t), cM = (e, t) => jo(e, "warning", t), uM = (e, t) => jo(e, "error", t), QE = Ve(
21092
+ }), lM = (e, t) => jo(e, "debug", t), cM = (e, t) => jo(e, "info", t), uM = (e, t) => jo(e, "warning", t), dM = (e, t) => jo(e, "error", t), e_ = Ve(
21093
21093
  de((e) => {
21094
21094
  var u;
21095
21095
  const { messages: t = [], onClear: n, height: r = 400, sx: i } = e, o = je(), s = ge(null);
@@ -21358,7 +21358,7 @@ const jo = (e, t, n) => ({
21358
21358
  }
21359
21359
  );
21360
21360
  })
21361
- ), dM = Ve(
21361
+ ), hM = Ve(
21362
21362
  de((e) => {
21363
21363
  const { store: t, onStoreReady: n, ...r } = e, i = ge(n);
21364
21364
  xe(() => {
@@ -21366,13 +21366,13 @@ const jo = (e, t, n) => ({
21366
21366
  }, [n]);
21367
21367
  const o = yi(() => {
21368
21368
  var l;
21369
- const a = t || new ZE();
21369
+ const a = t || new QE();
21370
21370
  return (l = i.current) == null || l.call(i, a), a;
21371
21371
  }, [t]), s = () => {
21372
21372
  o.clearMessages();
21373
21373
  };
21374
21374
  return /* @__PURE__ */ b.jsx(
21375
- QE,
21375
+ e_,
21376
21376
  {
21377
21377
  ...r,
21378
21378
  messages: o.messages,
@@ -21381,15 +21381,15 @@ const jo = (e, t, n) => ({
21381
21381
  );
21382
21382
  })
21383
21383
  );
21384
- function e_() {
21384
+ function t_() {
21385
21385
  const e = window.location.href;
21386
21386
  return e.substring(
21387
21387
  0,
21388
21388
  e.indexOf("/", e.indexOf("//") + 2)
21389
21389
  );
21390
21390
  }
21391
- function hM({
21392
- baseUrl: e = e_(),
21391
+ function fM({
21392
+ baseUrl: e = t_(),
21393
21393
  ...t
21394
21394
  }) {
21395
21395
  return /* @__PURE__ */ b.jsxs(
@@ -21460,15 +21460,15 @@ function hM({
21460
21460
  }
21461
21461
  );
21462
21462
  }
21463
- const t_ = sn(/* @__PURE__ */ b.jsx("path", {
21463
+ const n_ = sn(/* @__PURE__ */ b.jsx("path", {
21464
21464
  d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m1 15h-2v-2h2zm0-4h-2V7h2z"
21465
- }), "Error"), n_ = ({
21465
+ }), "Error"), r_ = ({
21466
21466
  title: e,
21467
21467
  titleId: t,
21468
21468
  ...n
21469
- }, r) => /* @__PURE__ */ k.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 18, height: 18, fill: "none", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { fill: "#38C6F4", fillRule: "evenodd", d: "M6.359 14.25v2.934h7.63v-3.521L10.196 9.87 9 8.674l.859-.859.337-.337.858-.858.565.565.631.63.565.565 1.196-1.195.543-.544 1.196-1.195-1.196-1.196-2.304-2.304L11.054.75 9.86 1.946 3.446 8.359 2.25 9.554l1.196 1.196 2.913 2.913zm1.69 0v1.244h4.249v-1.13L7.804 9.87 6.608 8.674l1.196-1.196L9.86 5.424l.007-.008-.543-.543-4.681 4.681 2.912 2.913.496.496v.113h2.124l1.174 1.174zm3.005-10.022-.294.294-.543-.543.837-.837 2.304 2.304-.543.543-.565-.565z", clipRule: "evenodd" })), r_ = Re(n_);
21469
+ }, r) => /* @__PURE__ */ k.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 18, height: 18, fill: "none", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { fill: "#38C6F4", fillRule: "evenodd", d: "M6.359 14.25v2.934h7.63v-3.521L10.196 9.87 9 8.674l.859-.859.337-.337.858-.858.565.565.631.63.565.565 1.196-1.195.543-.544 1.196-1.195-1.196-1.196-2.304-2.304L11.054.75 9.86 1.946 3.446 8.359 2.25 9.554l1.196 1.196 2.913 2.913zm1.69 0v1.244h4.249v-1.13L7.804 9.87 6.608 8.674l1.196-1.196L9.86 5.424l.007-.008-.543-.543-4.681 4.681 2.912 2.913.496.496v.113h2.124l1.174 1.174zm3.005-10.022-.294.294-.543-.543.837-.837 2.304 2.304-.543.543-.565-.565z", clipRule: "evenodd" })), i_ = Re(r_);
21470
21470
  var pf = /* @__PURE__ */ ((e) => (e.PRECONDITION_NOT_FULFILLED = "PRECONDITION_NOT_FULFILLED", e.ROBOT_DISCONNECTED = "ROBOT_DISCONNECTED", e.CELL_OPEN = "CELL_OPEN", e.E_STOP = "E_STOP", e.MANUAL_MODE = "MANUAL_MODE", e.READY = "READY", e))(pf || {});
21471
- const i_ = Ve(
21471
+ const o_ = Ve(
21472
21472
  de(({ setupState: e, className: t }) => {
21473
21473
  const n = je(), { t: r } = Le(), i = () => {
21474
21474
  var c, u, d, h, f, g, p;
@@ -21575,13 +21575,13 @@ const i_ = Ve(
21575
21575
  }
21576
21576
  );
21577
21577
  })
21578
- ), fM = Ve(
21578
+ ), pM = Ve(
21579
21579
  de(
21580
21580
  ({
21581
21581
  robotName: e,
21582
21582
  robotType: t,
21583
21583
  setupState: n,
21584
- PreconditionComponent: r = i_,
21584
+ PreconditionComponent: r = o_,
21585
21585
  className: i
21586
21586
  }) => {
21587
21587
  var l;
@@ -21628,10 +21628,10 @@ const i_ = Ve(
21628
21628
  fill: `${o.palette.primary.main} !important`
21629
21629
  }
21630
21630
  },
21631
- children: /* @__PURE__ */ b.jsx(r_, {})
21631
+ children: /* @__PURE__ */ b.jsx(i_, {})
21632
21632
  }
21633
21633
  ) : /* @__PURE__ */ b.jsx(
21634
- t_,
21634
+ n_,
21635
21635
  {
21636
21636
  sx: {
21637
21637
  color: o.palette.error.main,
@@ -21681,15 +21681,15 @@ const i_ = Ve(
21681
21681
  );
21682
21682
  }
21683
21683
  )
21684
- ), o_ = ({
21684
+ ), s_ = ({
21685
21685
  title: e,
21686
21686
  titleId: t,
21687
21687
  ...n
21688
- }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M5.248 21c-.334 0-.619-.116-.853-.35a1.153 1.153 0 0 1-.351-.848c0-.333.117-.616.351-.85.234-.233.519-.35.853-.35H7.24L4.558 9.87a2.881 2.881 0 0 1-1.126-1.042A2.77 2.77 0 0 1 3 7.317c0-.793.28-1.467.838-2.023a2.774 2.774 0 0 1 2.033-.834 2.71 2.71 0 0 1 1.728.585c.494.389.832.887 1.014 1.493h3.58V5.239c0-.22.076-.406.226-.555a.76.76 0 0 1 .558-.224c.136 0 .263.035.381.104.118.07.209.167.273.292v.14l1.835-1.702a.979.979 0 0 1 .52-.279.881.881 0 0 1 .58.091l4.01 1.85a.74.74 0 0 1 .36.364.537.537 0 0 1-.002.474.592.592 0 0 1-.366.323.657.657 0 0 1-.477-.039l-3.858-1.774L13.76 6.59v1.454l2.473 2.233 3.858-1.774a.648.648 0 0 1 .485-.03.571.571 0 0 1 .358.314.513.513 0 0 1 .01.482.79.79 0 0 1-.367.357l-4.011 1.882a.881.881 0 0 1-.58.09.979.979 0 0 1-.52-.278L13.63 9.638v.14a.92.92 0 0 1-.273.275.665.665 0 0 1-.381.12.76.76 0 0 1-.558-.224.752.752 0 0 1-.225-.555V8.096h-3.58a2.82 2.82 0 0 1-.215.54 2.552 2.552 0 0 1-.323.479l5.139 9.488h2.673c.335 0 .62.116.854.35.234.233.35.516.35.849 0 .332-.116.615-.35.849a1.167 1.167 0 0 1-.854.349H5.248Zm.623-12.385c.362 0 .67-.126.924-.378a1.25 1.25 0 0 0 .38-.92 1.25 1.25 0 0 0-.38-.92 1.261 1.261 0 0 0-.924-.379 1.26 1.26 0 0 0-.925.379 1.25 1.25 0 0 0-.38.92c0 .36.127.667.38.92.254.252.562.378.925.378Z" })), s_ = Re(o_), a_ = ({
21688
+ }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M5.248 21c-.334 0-.619-.116-.853-.35a1.153 1.153 0 0 1-.351-.848c0-.333.117-.616.351-.85.234-.233.519-.35.853-.35H7.24L4.558 9.87a2.881 2.881 0 0 1-1.126-1.042A2.77 2.77 0 0 1 3 7.317c0-.793.28-1.467.838-2.023a2.774 2.774 0 0 1 2.033-.834 2.71 2.71 0 0 1 1.728.585c.494.389.832.887 1.014 1.493h3.58V5.239c0-.22.076-.406.226-.555a.76.76 0 0 1 .558-.224c.136 0 .263.035.381.104.118.07.209.167.273.292v.14l1.835-1.702a.979.979 0 0 1 .52-.279.881.881 0 0 1 .58.091l4.01 1.85a.74.74 0 0 1 .36.364.537.537 0 0 1-.002.474.592.592 0 0 1-.366.323.657.657 0 0 1-.477-.039l-3.858-1.774L13.76 6.59v1.454l2.473 2.233 3.858-1.774a.648.648 0 0 1 .485-.03.571.571 0 0 1 .358.314.513.513 0 0 1 .01.482.79.79 0 0 1-.367.357l-4.011 1.882a.881.881 0 0 1-.58.09.979.979 0 0 1-.52-.278L13.63 9.638v.14a.92.92 0 0 1-.273.275.665.665 0 0 1-.381.12.76.76 0 0 1-.558-.224.752.752 0 0 1-.225-.555V8.096h-3.58a2.82 2.82 0 0 1-.215.54 2.552 2.552 0 0 1-.323.479l5.139 9.488h2.673c.335 0 .62.116.854.35.234.233.35.516.35.849 0 .332-.116.615-.35.849a1.167 1.167 0 0 1-.854.349H5.248Zm.623-12.385c.362 0 .67-.126.924-.378a1.25 1.25 0 0 0 .38-.92 1.25 1.25 0 0 0-.38-.92 1.261 1.261 0 0 0-.924-.379 1.26 1.26 0 0 0-.925.379 1.25 1.25 0 0 0-.38.92c0 .36.127.667.38.92.254.252.562.378.925.378Z" })), a_ = Re(s_), l_ = ({
21689
21689
  title: e,
21690
21690
  titleId: t,
21691
21691
  ...n
21692
- }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "m13.37 9.12 1.69 1.69 2.99-2.99-3.73-3.73-.95-.95-7.66 7.66-.95.95 3.99 3.99v3.44h7.55v-3.55l-4.72-4.72 1.79-1.79Zm-.91-2.99.91-.91 2.6 2.6-.91.91-2.6-2.6Zm-2.25 10.24h3.74l-1.34-1.34-.04-.04h-2.5l-3.25-3.25 4.59-4.59.92.92L9.5 10.9l5.33 5.33v1.48H10.2v-1.35l.01.01ZM2 2v4.99h1.41V3.4h3.58V2H2ZM22.21 2h-4.98v1.41h3.59v3.58h1.4V2h-.01ZM20.81 20.65h-3.58v1.4h4.98v-4.99h-1.4v3.59ZM3.4 17.06H2v4.98h4.99v-1.4H3.4v-3.58Z" })), l_ = Re(a_), mt = de(
21692
+ }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "m13.37 9.12 1.69 1.69 2.99-2.99-3.73-3.73-.95-.95-7.66 7.66-.95.95 3.99 3.99v3.44h7.55v-3.55l-4.72-4.72 1.79-1.79Zm-.91-2.99.91-.91 2.6 2.6-.91.91-2.6-2.6Zm-2.25 10.24h3.74l-1.34-1.34-.04-.04h-2.5l-3.25-3.25 4.59-4.59.92.92L9.5 10.9l5.33 5.33v1.48H10.2v-1.35l.01.01ZM2 2v4.99h1.41V3.4h3.58V2H2ZM22.21 2h-4.98v1.41h3.59v3.58h1.4V2h-.01ZM20.81 20.65h-3.58v1.4h4.98v-4.99h-1.4v3.59ZM3.4 17.06H2v4.98h4.99v-1.4H3.4v-3.58Z" })), c_ = Re(l_), mt = de(
21693
21693
  ({
21694
21694
  id: e,
21695
21695
  icon: t,
@@ -21794,7 +21794,7 @@ const i_ = Ve(
21794
21794
  )
21795
21795
  ] });
21796
21796
  }
21797
- ), c_ = de(
21797
+ ), u_ = de(
21798
21798
  ({
21799
21799
  isVirtual: e,
21800
21800
  motionGroupId: t,
@@ -21807,7 +21807,7 @@ const i_ = Ve(
21807
21807
  mt,
21808
21808
  {
21809
21809
  id: `motion-group-virtual-${s}`,
21810
- icon: l_,
21810
+ icon: c_,
21811
21811
  color: o.palette.tertiary.main,
21812
21812
  name: a("SafetyBar.ControllerType.Virtual.lb"),
21813
21813
  label: i ? null : a("SafetyBar.ControllerType.Virtual.lb"),
@@ -21832,7 +21832,7 @@ const i_ = Ve(
21832
21832
  mt,
21833
21833
  {
21834
21834
  id: `motion-group-physical-${s}`,
21835
- icon: s_,
21835
+ icon: a_,
21836
21836
  color: o.palette.primary.main,
21837
21837
  name: a("SafetyBar.ControllerType.Physical.lb"),
21838
21838
  label: i ? null : a("SafetyBar.ControllerType.Physical.lb"),
@@ -21851,19 +21851,19 @@ const i_ = Ve(
21851
21851
  }
21852
21852
  );
21853
21853
  }
21854
- ), u_ = ({
21854
+ ), d_ = ({
21855
21855
  title: e,
21856
21856
  titleId: t,
21857
21857
  ...n
21858
- }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15.306 2.768c0-.424.344-.768.768-.768h.406C19.53 2 22 4.551 22 7.699c0 3.237-2.51 5.587-5.31 5.703-.84 1.595-2.478 2.677-4.36 2.677a4.845 4.845 0 0 1-3.146-1.163c-.6 1.783 0 3.922 1.79 4.99 1.929 1.149 4.395.467 5.508-1.524l.212-.378a.75.75 0 1 1 1.308.732l-.231.414c-1.524 2.725-4.9 3.66-7.54 2.085-2.716-1.618-3.432-5.037-2.129-7.599a5.22 5.22 0 0 1-.73-2.677c0-2.192 1.335-4.063 3.212-4.793-1.195-1.427-3.29-1.96-5.08-.892-1.928 1.15-2.589 3.696-1.475 5.687l.231.413a.75.75 0 0 1-1.308.732l-.212-.377c-1.524-2.726-.62-6.211 2.02-7.785 2.716-1.619 5.943-.55 7.44 1.897l.13-.001c2.739 0 4.96 2.292 4.96 5.12 0 .284-.023.563-.066.834 1.795-.354 3.288-1.96 3.288-4.095 0-2.3-1.805-4.163-4.032-4.163h-.406a.768.768 0 0 1-.768-.768Zm.496 8.191c0 .286-.033.564-.094.831a3.62 3.62 0 0 1-.672 1.415 3.425 3.425 0 0 1-2.706 1.338 3.402 3.402 0 0 1-2.384-.98 3.598 3.598 0 0 1-.852-1.306 3.677 3.677 0 0 1-.235-1.298c0-1.623 1.046-2.994 2.48-3.435a3.37 3.37 0 0 1 1.522-.107c1.665.264 2.94 1.75 2.94 3.542Z" })), d_ = Re(u_), h_ = ({
21858
+ }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15.306 2.768c0-.424.344-.768.768-.768h.406C19.53 2 22 4.551 22 7.699c0 3.237-2.51 5.587-5.31 5.703-.84 1.595-2.478 2.677-4.36 2.677a4.845 4.845 0 0 1-3.146-1.163c-.6 1.783 0 3.922 1.79 4.99 1.929 1.149 4.395.467 5.508-1.524l.212-.378a.75.75 0 1 1 1.308.732l-.231.414c-1.524 2.725-4.9 3.66-7.54 2.085-2.716-1.618-3.432-5.037-2.129-7.599a5.22 5.22 0 0 1-.73-2.677c0-2.192 1.335-4.063 3.212-4.793-1.195-1.427-3.29-1.96-5.08-.892-1.928 1.15-2.589 3.696-1.475 5.687l.231.413a.75.75 0 0 1-1.308.732l-.212-.377c-1.524-2.726-.62-6.211 2.02-7.785 2.716-1.619 5.943-.55 7.44 1.897l.13-.001c2.739 0 4.96 2.292 4.96 5.12 0 .284-.023.563-.066.834 1.795-.354 3.288-1.96 3.288-4.095 0-2.3-1.805-4.163-4.032-4.163h-.406a.768.768 0 0 1-.768-.768Zm.496 8.191c0 .286-.033.564-.094.831a3.62 3.62 0 0 1-.672 1.415 3.425 3.425 0 0 1-2.706 1.338 3.402 3.402 0 0 1-2.384-.98 3.598 3.598 0 0 1-.852-1.306 3.677 3.677 0 0 1-.235-1.298c0-1.623 1.046-2.994 2.48-3.435a3.37 3.37 0 0 1 1.522-.107c1.665.264 2.94 1.75 2.94 3.542Z" })), h_ = Re(d_), f_ = ({
21859
21859
  title: e,
21860
21860
  titleId: t,
21861
21861
  ...n
21862
- }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, fill: "none", xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M19.763 16.432 13.516 5.864c-.674-1.152-2.358-1.152-3.049 0l-6.23 10.568C3.563 17.567 4.405 19 5.753 19H18.23c1.364 0 2.206-1.432 1.532-2.568ZM12 8.498c.539 0 .96.428.96.938v.066l-.32 4.708a.639.639 0 0 1-.64.592.639.639 0 0 1-.64-.592l-.32-4.708A.953.953 0 0 1 12 8.498Zm0 8.79c-.556 0-1.01-.444-1.01-.987 0-.544.454-.988 1.01-.988s1.01.444 1.01.988c0 .542-.454.987-1.01.987Z", fill: "#fff", fillOpacity: 0.56 })), f_ = Re(h_), p_ = ({
21862
+ }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, fill: "none", xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M19.763 16.432 13.516 5.864c-.674-1.152-2.358-1.152-3.049 0l-6.23 10.568C3.563 17.567 4.405 19 5.753 19H18.23c1.364 0 2.206-1.432 1.532-2.568ZM12 8.498c.539 0 .96.428.96.938v.066l-.32 4.708a.639.639 0 0 1-.64.592.639.639 0 0 1-.64-.592l-.32-4.708A.953.953 0 0 1 12 8.498Zm0 8.79c-.556 0-1.01-.444-1.01-.987 0-.544.454-.988 1.01-.988s1.01.444 1.01.988c0 .542-.454.987-1.01.987Z", fill: "#fff", fillOpacity: 0.56 })), p_ = Re(f_), g_ = ({
21863
21863
  title: e,
21864
21864
  titleId: t,
21865
21865
  ...n
21866
- }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, fill: "none", xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M12.953 5.09a1.497 1.497 0 0 0-1.653-.518l-1.35.43a1.504 1.504 0 0 0-1.726-.376L2.858 6.97c-.736.321-1.06 1.155-.726 1.862.334.707 1.202 1.02 1.937.698l4.27-1.865 1.466 1.973v.402c0 .873-.627 1.63-1.512 1.827l-2.56.567c-1.329.295-2.27 1.431-2.27 2.74v.107c0 .26.22.469.489.469h11.117c1.329 0 2.618.435 3.656 1.233l1.665 1.28A1 1 0 0 0 22 17.47V11.062c0-.312-.108-.616-.308-.863l-3.415-4.218a1.5 1.5 0 0 0-1.618-.471l-.378.12-.866-.475a1.516 1.516 0 0 0-1.188-.114l-1.06.338-.214-.289Z" })), g_ = Re(p_), m_ = de(
21866
+ }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, fill: "none", xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M12.953 5.09a1.497 1.497 0 0 0-1.653-.518l-1.35.43a1.504 1.504 0 0 0-1.726-.376L2.858 6.97c-.736.321-1.06 1.155-.726 1.862.334.707 1.202 1.02 1.937.698l4.27-1.865 1.466 1.973v.402c0 .873-.627 1.63-1.512 1.827l-2.56.567c-1.329.295-2.27 1.431-2.27 2.74v.107c0 .26.22.469.489.469h11.117c1.329 0 2.618.435 3.656 1.233l1.665 1.28A1 1 0 0 0 22 17.47V11.062c0-.312-.108-.616-.308-.863l-3.415-4.218a1.5 1.5 0 0 0-1.618-.471l-.378.12-.866-.475a1.516 1.516 0 0 0-1.188-.114l-1.06.338-.214-.289Z" })), m_ = Re(g_), y_ = de(
21867
21867
  ({
21868
21868
  operationMode: e,
21869
21869
  anchorOrigin: t,
@@ -21877,7 +21877,7 @@ const i_ = Ve(
21877
21877
  mt,
21878
21878
  {
21879
21879
  id: `operation-mode-auto-${s}`,
21880
- icon: d_,
21880
+ icon: h_,
21881
21881
  title: i("SafetyBar.OperationMode.ti"),
21882
21882
  name: i("SafetyBar.OperationMode.Automatic.ti"),
21883
21883
  label: r ? null : i("SafetyBar.OperationMode.Automatic.ti"),
@@ -21894,7 +21894,7 @@ const i_ = Ve(
21894
21894
  mt,
21895
21895
  {
21896
21896
  id: `operation-mode-manual-${s}`,
21897
- icon: g_,
21897
+ icon: m_,
21898
21898
  color: o.palette.warning.main,
21899
21899
  title: i("SafetyBar.OperationMode.ti"),
21900
21900
  name: i("SafetyBar.OperationMode.Manual.lb"),
@@ -21910,7 +21910,7 @@ const i_ = Ve(
21910
21910
  mt,
21911
21911
  {
21912
21912
  id: `operation-mode-error-${s}`,
21913
- icon: f_,
21913
+ icon: p_,
21914
21914
  color: o.palette.warning.main,
21915
21915
  title: i("SafetyBar.OperationMode.ti"),
21916
21916
  name: i("SafetyBar.OperationMode.Error.lb"),
@@ -21923,27 +21923,27 @@ const i_ = Ve(
21923
21923
  );
21924
21924
  }
21925
21925
  }
21926
- ), y_ = ({
21926
+ ), b_ = ({
21927
21927
  title: e,
21928
21928
  titleId: t,
21929
21929
  ...n
21930
- }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M19.763 16.432 13.516 5.864c-.674-1.152-2.358-1.152-3.049 0l-6.23 10.568C3.563 17.567 4.405 19 5.753 19H18.23c1.364 0 2.206-1.432 1.532-2.568ZM12 8.498c.539 0 .96.428.96.938v.066l-.32 4.708a.639.639 0 0 1-.64.592.639.639 0 0 1-.64-.592l-.32-4.708A.953.953 0 0 1 12 8.498Zm0 8.79c-.556 0-1.01-.444-1.01-.987 0-.544.454-.988 1.01-.988s1.01.444 1.01.988c0 .542-.454.987-1.01.987Z" })), b_ = Re(y_), x_ = ({
21930
+ }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M19.763 16.432 13.516 5.864c-.674-1.152-2.358-1.152-3.049 0l-6.23 10.568C3.563 17.567 4.405 19 5.753 19H18.23c1.364 0 2.206-1.432 1.532-2.568ZM12 8.498c.539 0 .96.428.96.938v.066l-.32 4.708a.639.639 0 0 1-.64.592.639.639 0 0 1-.64-.592l-.32-4.708A.953.953 0 0 1 12 8.498Zm0 8.79c-.556 0-1.01-.444-1.01-.987 0-.544.454-.988 1.01-.988s1.01.444 1.01.988c0 .542-.454.987-1.01.987Z" })), x_ = Re(b_), v_ = ({
21931
21931
  title: e,
21932
21932
  titleId: t,
21933
21933
  ...n
21934
- }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M10.24 10.636 12 13.764l1.76-3.128h-3.52Z" }), /* @__PURE__ */ k.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M18.364 12a6.364 6.364 0 1 1-12.728 0 6.364 6.364 0 0 1 12.728 0ZM7.909 9.273 12 16.546l4.09-7.273H7.91Z" }), /* @__PURE__ */ k.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-1.364 0a8.636 8.636 0 1 1-17.273 0 8.636 8.636 0 0 1 17.273 0Z" })), v_ = Re(x_), w_ = ({
21934
+ }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M10.24 10.636 12 13.764l1.76-3.128h-3.52Z" }), /* @__PURE__ */ k.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M18.364 12a6.364 6.364 0 1 1-12.728 0 6.364 6.364 0 0 1 12.728 0ZM7.909 9.273 12 16.546l4.09-7.273H7.91Z" }), /* @__PURE__ */ k.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-1.364 0a8.636 8.636 0 1 1-17.273 0 8.636 8.636 0 0 1 17.273 0Z" })), w_ = Re(v_), S_ = ({
21935
21935
  title: e,
21936
21936
  titleId: t,
21937
21937
  ...n
21938
- }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, fill: "none", xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M9.057 15.115c-1.681 0-3.111-.59-4.29-1.768C3.59 12.17 3 10.74 3 9.057c0-.29.021-.582.064-.876a4.1 4.1 0 0 1 .214-.844.78.78 0 0 1 .273-.36c.115-.077.244-.133.389-.168a.857.857 0 0 1 .437.008c.146.04.28.12.4.24l2.806 2.787 2.26-2.261-2.775-2.786a.903.903 0 0 1-.241-.405.875.875 0 0 1-.008-.442 1.13 1.13 0 0 1 .174-.389.82.82 0 0 1 .355-.273c.268-.107.548-.182.838-.224.29-.043.581-.064.871-.064 1.682 0 3.112.59 4.29 1.768 1.179 1.178 1.768 2.608 1.768 4.29 0 .444-.042.858-.126 1.241-.084.384-.21.755-.377 1.113l5.726 5.692A2.2 2.2 0 0 1 21 18.721a2.2 2.2 0 0 1-.662 1.617A2.2 2.2 0 0 1 18.72 21a2.173 2.173 0 0 1-1.617-.679l-5.692-5.709c-.372.161-.75.285-1.133.372-.383.087-.79.13-1.222.13Z", fill: "#fff", fillOpacity: 0.56 })), S_ = Re(w_), C_ = ({
21938
+ }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, fill: "none", xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M9.057 15.115c-1.681 0-3.111-.59-4.29-1.768C3.59 12.17 3 10.74 3 9.057c0-.29.021-.582.064-.876a4.1 4.1 0 0 1 .214-.844.78.78 0 0 1 .273-.36c.115-.077.244-.133.389-.168a.857.857 0 0 1 .437.008c.146.04.28.12.4.24l2.806 2.787 2.26-2.261-2.775-2.786a.903.903 0 0 1-.241-.405.875.875 0 0 1-.008-.442 1.13 1.13 0 0 1 .174-.389.82.82 0 0 1 .355-.273c.268-.107.548-.182.838-.224.29-.043.581-.064.871-.064 1.682 0 3.112.59 4.29 1.768 1.179 1.178 1.768 2.608 1.768 4.29 0 .444-.042.858-.126 1.241-.084.384-.21.755-.377 1.113l5.726 5.692A2.2 2.2 0 0 1 21 18.721a2.2 2.2 0 0 1-.662 1.617A2.2 2.2 0 0 1 18.72 21a2.173 2.173 0 0 1-1.617-.679l-5.692-5.709c-.372.161-.75.285-1.133.372-.383.087-.79.13-1.222.13Z", fill: "#fff", fillOpacity: 0.56 })), C_ = Re(S_), T_ = ({
21939
21939
  title: e,
21940
21940
  titleId: t,
21941
21941
  ...n
21942
- }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, fill: "none", xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "m10.6 13.8-2.15-2.15a.948.948 0 0 0-.7-.275.948.948 0 0 0-.7.275.948.948 0 0 0-.275.7c0 .283.092.517.275.7L9.9 15.9c.2.2.433.3.7.3.267 0 .5-.1.7-.3l5.65-5.65a.948.948 0 0 0 .275-.7.948.948 0 0 0-.275-.7.948.948 0 0 0-.7-.275.948.948 0 0 0-.7.275L10.6 13.8ZM12 22a9.738 9.738 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.137c-.9-.9-1.612-1.958-2.137-3.175A9.738 9.738 0 0 1 2 12c0-1.383.263-2.683.788-3.9a10.099 10.099 0 0 1 2.137-3.175c.9-.9 1.958-1.612 3.175-2.137A9.738 9.738 0 0 1 12 2c1.383 0 2.683.263 3.9.788a10.098 10.098 0 0 1 3.175 2.137c.9.9 1.613 1.958 2.137 3.175A9.738 9.738 0 0 1 22 12a9.738 9.738 0 0 1-.788 3.9 10.098 10.098 0 0 1-2.137 3.175c-.9.9-1.958 1.613-3.175 2.137A9.738 9.738 0 0 1 12 22Zm0-2c2.233 0 4.125-.775 5.675-2.325C19.225 16.125 20 14.233 20 12c0-2.233-.775-4.125-2.325-5.675C16.125 4.775 14.233 4 12 4c-2.233 0-4.125.775-5.675 2.325C4.775 7.875 4 9.767 4 12c0 2.233.775 4.125 2.325 5.675C7.875 19.225 9.767 20 12 20Z" })), T_ = Re(C_), E_ = ({
21942
+ }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, fill: "none", xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "m10.6 13.8-2.15-2.15a.948.948 0 0 0-.7-.275.948.948 0 0 0-.7.275.948.948 0 0 0-.275.7c0 .283.092.517.275.7L9.9 15.9c.2.2.433.3.7.3.267 0 .5-.1.7-.3l5.65-5.65a.948.948 0 0 0 .275-.7.948.948 0 0 0-.275-.7.948.948 0 0 0-.7-.275.948.948 0 0 0-.7.275L10.6 13.8ZM12 22a9.738 9.738 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.137c-.9-.9-1.612-1.958-2.137-3.175A9.738 9.738 0 0 1 2 12c0-1.383.263-2.683.788-3.9a10.099 10.099 0 0 1 2.137-3.175c.9-.9 1.958-1.612 3.175-2.137A9.738 9.738 0 0 1 12 2c1.383 0 2.683.263 3.9.788a10.098 10.098 0 0 1 3.175 2.137c.9.9 1.613 1.958 2.137 3.175A9.738 9.738 0 0 1 22 12a9.738 9.738 0 0 1-.788 3.9 10.098 10.098 0 0 1-2.137 3.175c-.9.9-1.958 1.613-3.175 2.137A9.738 9.738 0 0 1 12 22Zm0-2c2.233 0 4.125-.775 5.675-2.325C19.225 16.125 20 14.233 20 12c0-2.233-.775-4.125-2.325-5.675C16.125 4.775 14.233 4 12 4c-2.233 0-4.125.775-5.675 2.325C4.775 7.875 4 9.767 4 12c0 2.233.775 4.125 2.325 5.675C7.875 19.225 9.767 20 12 20Z" })), E_ = Re(T_), __ = ({
21943
21943
  title: e,
21944
21944
  titleId: t,
21945
21945
  ...n
21946
- }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M9 16h6c.283 0 .52-.096.713-.287A.968.968 0 0 0 16 15V9a.967.967 0 0 0-.287-.713A.968.968 0 0 0 15 8H9a.968.968 0 0 0-.713.287A.968.968 0 0 0 8 9v6c0 .283.096.52.287.713.192.191.43.287.713.287Zm3 6a9.738 9.738 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.137c-.9-.9-1.612-1.958-2.137-3.175A9.738 9.738 0 0 1 2 12c0-1.383.263-2.683.788-3.9a10.099 10.099 0 0 1 2.137-3.175c.9-.9 1.958-1.612 3.175-2.137A9.738 9.738 0 0 1 12 2c1.383 0 2.683.263 3.9.788a10.098 10.098 0 0 1 3.175 2.137c.9.9 1.613 1.958 2.137 3.175A9.738 9.738 0 0 1 22 12a9.738 9.738 0 0 1-.788 3.9 10.098 10.098 0 0 1-2.137 3.175c-.9.9-1.958 1.613-3.175 2.137A9.738 9.738 0 0 1 12 22Zm0-2c2.233 0 4.125-.775 5.675-2.325C19.225 16.125 20 14.233 20 12c0-2.233-.775-4.125-2.325-5.675C16.125 4.775 14.233 4 12 4c-2.233 0-4.125.775-5.675 2.325C4.775 7.875 4 9.767 4 12c0 2.233.775 4.125 2.325 5.675C7.875 19.225 9.767 20 12 20Z" })), __ = Re(E_), M_ = de(
21946
+ }, r) => /* @__PURE__ */ k.createElement("svg", { width: 24, height: 24, xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": t, ...n }, e ? /* @__PURE__ */ k.createElement("title", { id: t }, e) : null, /* @__PURE__ */ k.createElement("path", { d: "M9 16h6c.283 0 .52-.096.713-.287A.968.968 0 0 0 16 15V9a.967.967 0 0 0-.287-.713A.968.968 0 0 0 15 8H9a.968.968 0 0 0-.713.287A.968.968 0 0 0 8 9v6c0 .283.096.52.287.713.192.191.43.287.713.287Zm3 6a9.738 9.738 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.137c-.9-.9-1.612-1.958-2.137-3.175A9.738 9.738 0 0 1 2 12c0-1.383.263-2.683.788-3.9a10.099 10.099 0 0 1 2.137-3.175c.9-.9 1.958-1.612 3.175-2.137A9.738 9.738 0 0 1 12 2c1.383 0 2.683.263 3.9.788a10.098 10.098 0 0 1 3.175 2.137c.9.9 1.613 1.958 2.137 3.175A9.738 9.738 0 0 1 22 12a9.738 9.738 0 0 1-.788 3.9 10.098 10.098 0 0 1-2.137 3.175c-.9.9-1.958 1.613-3.175 2.137A9.738 9.738 0 0 1 12 22Zm0-2c2.233 0 4.125-.775 5.675-2.325C19.225 16.125 20 14.233 20 12c0-2.233-.775-4.125-2.325-5.675C16.125 4.775 14.233 4 12 4c-2.233 0-4.125.775-5.675 2.325C4.775 7.875 4 9.767 4 12c0 2.233.775 4.125 2.325 5.675C7.875 19.225 9.767 20 12 20Z" })), M_ = Re(__), I_ = de(
21947
21947
  ({
21948
21948
  safetyState: e,
21949
21949
  anchorOrigin: t,
@@ -21961,7 +21961,7 @@ const i_ = Ve(
21961
21961
  title: i("SafetyBar.SafetyState.ti"),
21962
21962
  name: i("SafetyBar.SafetyState.Normal.lb"),
21963
21963
  label: r ? null : i("SafetyBar.SafetyState.Normal.lb"),
21964
- icon: T_,
21964
+ icon: E_,
21965
21965
  color: o.palette.text.secondary,
21966
21966
  explanation: /* @__PURE__ */ b.jsx(pt, { i18nKey: "SafetyBar.SafetyState.Normal.Explanation.lb", children: "The robot controller is in a normal safety state. Movement is not prevented by this state." }),
21967
21967
  anchorOrigin: t,
@@ -21978,7 +21978,7 @@ const i_ = Ve(
21978
21978
  title: i("SafetyBar.SafetyState.ti"),
21979
21979
  name: i("SafetyBar.SafetyState.Estop.lb"),
21980
21980
  label: r ? null : i("SafetyBar.SafetyState.Estop.lb"),
21981
- icon: v_,
21981
+ icon: w_,
21982
21982
  color: o.palette.error.main,
21983
21983
  explanation: /* @__PURE__ */ b.jsx(pt, { i18nKey: "SafetyBar.StopState.Estop.Explanation.lb", children: "An emergency stop of the robot controller has been triggered. Movement of the robot is no longer possible until the estop is released." }),
21984
21984
  literalValue: e,
@@ -21996,7 +21996,7 @@ const i_ = Ve(
21996
21996
  mt,
21997
21997
  {
21998
21998
  id: `safety-state-stop-${s}`,
21999
- icon: __,
21999
+ icon: M_,
22000
22000
  title: i("SafetyBar.SafetyState.ti"),
22001
22001
  name: i("SafetyBar.SafetyState.Stop.lb"),
22002
22002
  label: r ? null : i("SafetyBar.SafetyState.Stop.lb"),
@@ -22018,7 +22018,7 @@ const i_ = Ve(
22018
22018
  mt,
22019
22019
  {
22020
22020
  id: `safety-state-manual-action-required-${s}`,
22021
- icon: S_,
22021
+ icon: C_,
22022
22022
  color: o.palette.warning.main,
22023
22023
  title: i("SafetyBar.SafetyState.ti"),
22024
22024
  name: i("SafetyBar.SafetyState.ManualActionRequired.lb"),
@@ -22036,7 +22036,7 @@ const i_ = Ve(
22036
22036
  mt,
22037
22037
  {
22038
22038
  id: `safety-state-error-${s}`,
22039
- icon: b_,
22039
+ icon: x_,
22040
22040
  color: o.palette.error.main,
22041
22041
  title: i("SafetyBar.SafetyState.ti"),
22042
22042
  name: i("SafetyBar.SafetyState.Error.lb"),
@@ -22051,7 +22051,7 @@ const i_ = Ve(
22051
22051
  Ep(e, `Unknown safety state ${e}`);
22052
22052
  }
22053
22053
  }
22054
- ), pM = Ve(
22054
+ ), gM = Ve(
22055
22055
  de(
22056
22056
  ({
22057
22057
  isVirtual: e,
@@ -22072,7 +22072,7 @@ const i_ = Ve(
22072
22072
  sx: { height: "24px" },
22073
22073
  children: [
22074
22074
  /* @__PURE__ */ b.jsx(
22075
- M_,
22075
+ I_,
22076
22076
  {
22077
22077
  safetyState: r,
22078
22078
  anchorOrigin: i,
@@ -22082,7 +22082,7 @@ const i_ = Ve(
22082
22082
  ),
22083
22083
  /* @__PURE__ */ b.jsx(Kt, { orientation: "vertical", flexItem: !0 }),
22084
22084
  /* @__PURE__ */ b.jsx(
22085
- m_,
22085
+ y_,
22086
22086
  {
22087
22087
  operationMode: n,
22088
22088
  anchorOrigin: i,
@@ -22092,7 +22092,7 @@ const i_ = Ve(
22092
22092
  ),
22093
22093
  /* @__PURE__ */ b.jsx(Kt, { orientation: "vertical", flexItem: !0 }),
22094
22094
  /* @__PURE__ */ b.jsx(
22095
- c_,
22095
+ u_,
22096
22096
  {
22097
22097
  isVirtual: e,
22098
22098
  motionGroupId: t,
@@ -22106,7 +22106,7 @@ const i_ = Ve(
22106
22106
  );
22107
22107
  }
22108
22108
  )
22109
- ), I_ = qs(Gf, {
22109
+ ), A_ = qs(Gf, {
22110
22110
  shouldForwardProp: (e) => e !== "selected"
22111
22111
  })(({ theme: e }) => {
22112
22112
  var t, n, r;
@@ -22136,10 +22136,10 @@ const i_ = Ve(
22136
22136
  }
22137
22137
  ]
22138
22138
  };
22139
- }), gM = (e) => {
22139
+ }), mM = (e) => {
22140
22140
  const { ref: t, ...n } = e;
22141
22141
  return /* @__PURE__ */ b.jsx(
22142
- I_,
22142
+ A_,
22143
22143
  {
22144
22144
  ref: t,
22145
22145
  selected: e.selected,
@@ -22149,7 +22149,7 @@ const i_ = Ve(
22149
22149
  }
22150
22150
  );
22151
22151
  };
22152
- function A_(e) {
22152
+ function k_(e) {
22153
22153
  const { children: t, value: n, index: r, ...i } = e;
22154
22154
  return /* @__PURE__ */ b.jsx(
22155
22155
  "div",
@@ -22163,7 +22163,7 @@ function A_(e) {
22163
22163
  }
22164
22164
  );
22165
22165
  }
22166
- function k_({ children: e, ...t }) {
22166
+ function O_({ children: e, ...t }) {
22167
22167
  const {
22168
22168
  fullWidth: n,
22169
22169
  indicator: r,
@@ -22178,7 +22178,7 @@ function k_({ children: e, ...t }) {
22178
22178
  } = t;
22179
22179
  return /* @__PURE__ */ b.jsx(J, { ...d, children: e });
22180
22180
  }
22181
- const mM = Ve(
22181
+ const yM = Ve(
22182
22182
  de((e) => {
22183
22183
  const {
22184
22184
  items: t,
@@ -22299,7 +22299,7 @@ const mM = Ve(
22299
22299
  h.id
22300
22300
  );
22301
22301
  return v ? /* @__PURE__ */ b.jsx(
22302
- k_,
22302
+ O_,
22303
22303
  {
22304
22304
  component: "span",
22305
22305
  sx: { display: "inline-flex" },
@@ -22342,12 +22342,12 @@ const mM = Ve(
22342
22342
  }
22343
22343
  }
22344
22344
  ),
22345
- /* @__PURE__ */ b.jsx(J, { sx: { flex: 1, overflow: "auto" }, children: t.map((h, f) => /* @__PURE__ */ b.jsx(A_, { value: u, index: f, children: h.content }, h.id)) })
22345
+ /* @__PURE__ */ b.jsx(J, { sx: { flex: 1, overflow: "auto" }, children: t.map((h, f) => /* @__PURE__ */ b.jsx(k_, { value: u, index: f, children: h.content }, h.id)) })
22346
22346
  ]
22347
22347
  }
22348
22348
  );
22349
22349
  })
22350
- ), O_ = (e) => {
22350
+ ), R_ = (e) => {
22351
22351
  const t = Math.floor(e / 86400), n = Math.floor(e % 86400 / 3600), r = Math.floor(e % 3600 / 60), i = e % 60, o = [];
22352
22352
  return t > 0 ? (o.push(t.toString()), o.push(n.toString().padStart(2, "0")), o.push(r.toString().padStart(2, "0")), o.push(i.toString().padStart(2, "0"))) : n > 0 ? (o.push(n.toString()), o.push(r.toString().padStart(2, "0")), o.push(i.toString().padStart(2, "0"))) : (o.push(r.toString()), o.push(i.toString().padStart(2, "0"))), o.join(":");
22353
22353
  }, Du = (e, t) => {
@@ -22360,7 +22360,7 @@ const mM = Ve(
22360
22360
  }
22361
22361
  const s = [];
22362
22362
  return n > 0 && s.push(`${n}d`), r > 0 && s.push(`${r}h`), i > 0 && s.push(`${i}m`), (o > 0 || s.length === 0) && s.push(`${o}s`), s.join(" ");
22363
- }, R_ = ({
22363
+ }, P_ = ({
22364
22364
  timerState: e,
22365
22365
  animationState: t,
22366
22366
  hasError: n,
@@ -22472,7 +22472,7 @@ const mM = Ve(
22472
22472
  lineHeight: 1,
22473
22473
  letterSpacing: "-0.5px"
22474
22474
  },
22475
- children: O_(s)
22475
+ children: R_(s)
22476
22476
  }
22477
22477
  ) })
22478
22478
  ]
@@ -22483,7 +22483,7 @@ const mM = Ve(
22483
22483
  ]
22484
22484
  }
22485
22485
  );
22486
- }, P_ = ({
22486
+ }, D_ = ({
22487
22487
  timerState: e,
22488
22488
  animationState: t,
22489
22489
  hasError: n,
@@ -22600,7 +22600,7 @@ const mM = Ve(
22600
22600
  ]
22601
22601
  }
22602
22602
  );
22603
- }, D_ = () => {
22603
+ }, $_ = () => {
22604
22604
  const [e, t] = $e({
22605
22605
  showPauseAnimation: !1,
22606
22606
  showErrorAnimation: !1,
@@ -22642,7 +22642,7 @@ const mM = Ve(
22642
22642
  setInitialAnimationState: c,
22643
22643
  cleanup: u
22644
22644
  };
22645
- }, $_ = ({
22645
+ }, j_ = ({
22646
22646
  autoStart: e,
22647
22647
  hasError: t,
22648
22648
  onPauseAnimation: n,
@@ -22750,7 +22750,7 @@ const mM = Ve(
22750
22750
  isPaused: m
22751
22751
  }
22752
22752
  };
22753
- }, yM = Ve(
22753
+ }, bM = Ve(
22754
22754
  de(
22755
22755
  ({
22756
22756
  onTimerReady: e,
@@ -22767,7 +22767,7 @@ const mM = Ve(
22767
22767
  clearErrorAnimation: c,
22768
22768
  setInitialAnimationState: u,
22769
22769
  cleanup: d
22770
- } = D_(), { timerState: h, controls: f } = $_({
22770
+ } = $_(), { timerState: h, controls: f } = j_({
22771
22771
  autoStart: t,
22772
22772
  hasError: o,
22773
22773
  onPauseAnimation: a,
@@ -22785,7 +22785,7 @@ const mM = Ve(
22785
22785
  g = !1, clearTimeout(p);
22786
22786
  };
22787
22787
  }, [e, f]), xe(() => d, [d]), n === "small" ? /* @__PURE__ */ b.jsx(
22788
- P_,
22788
+ D_,
22789
22789
  {
22790
22790
  timerState: h,
22791
22791
  animationState: s,
@@ -22794,7 +22794,7 @@ const mM = Ve(
22794
22794
  className: i
22795
22795
  }
22796
22796
  ) : /* @__PURE__ */ b.jsx(
22797
- R_,
22797
+ P_,
22798
22798
  {
22799
22799
  timerState: h,
22800
22800
  animationState: s,
@@ -22804,7 +22804,7 @@ const mM = Ve(
22804
22804
  );
22805
22805
  }
22806
22806
  )
22807
- ), $u = 1e-4, j_ = {
22807
+ ), $u = 1e-4, L_ = {
22808
22808
  a: 0,
22809
22809
  d: 0,
22810
22810
  alpha: 0,
@@ -22933,7 +22933,7 @@ class Ys {
22933
22933
  get dhParameters() {
22934
22934
  if (this.description.dh_parameters !== void 0)
22935
22935
  return this.description.dh_parameters.map((t) => ({
22936
- ...j_,
22936
+ ...L_,
22937
22937
  ...t
22938
22938
  }));
22939
22939
  }
@@ -23409,52 +23409,52 @@ function gf() {
23409
23409
  }
23410
23410
  };
23411
23411
  }
23412
- function L_() {
23412
+ function N_() {
23413
23413
  const e = gf();
23414
23414
  return e.palette.mode = "light", e;
23415
23415
  }
23416
- function bM(e) {
23416
+ function xM(e) {
23417
23417
  var r, i, o, s;
23418
23418
  let t = !0;
23419
23419
  ((r = e.palette) == null ? void 0 : r.mode) === "light" ? t = !1 : ((i = e.palette) == null ? void 0 : i.mode) !== "dark" && (t = !(typeof window < "u" && ((s = (o = window.matchMedia) == null ? void 0 : o.call(window, "(prefers-color-scheme: light)")) == null ? void 0 : s.matches)));
23420
- const n = t ? gf() : L_();
23420
+ const n = t ? gf() : N_();
23421
23421
  return ud(n, e);
23422
23422
  }
23423
23423
  export {
23424
- nM as A,
23425
- rM as C,
23424
+ rM as A,
23425
+ iM as C,
23426
23426
  al as J,
23427
- ZE as L,
23427
+ QE as L,
23428
23428
  tl as M,
23429
- hM as N,
23430
- oM as P,
23431
- fM as R,
23432
- pM as S,
23433
- mM as T,
23434
- qE as V,
23429
+ fM as N,
23430
+ sM as P,
23431
+ pM as R,
23432
+ gM as S,
23433
+ yM as T,
23434
+ KE as V,
23435
23435
  hS as W,
23436
23436
  Qc as a,
23437
23437
  VS as b,
23438
- bM as c,
23439
- iM as d,
23440
- sM as e,
23441
- dM as f,
23438
+ xM as c,
23439
+ oM as d,
23440
+ aM as e,
23441
+ hM as f,
23442
23442
  jo as g,
23443
- aM as h,
23444
- lM as i,
23445
- cM as j,
23446
- uM as k,
23447
- QE as l,
23443
+ lM as h,
23444
+ cM as i,
23445
+ uM as j,
23446
+ dM as k,
23447
+ e_ as l,
23448
23448
  pf as m,
23449
- i_ as n,
23450
- gM as o,
23451
- yM as p,
23449
+ o_ as n,
23450
+ mM as o,
23451
+ bM as p,
23452
23452
  df as q,
23453
23453
  Ys as r,
23454
23454
  nl as s,
23455
23455
  Gh as t,
23456
- YS as u,
23456
+ qS as u,
23457
23457
  Bh as v,
23458
- qS as w
23458
+ KS as w
23459
23459
  };
23460
- //# sourceMappingURL=theming-Bd0vaauc.js.map
23460
+ //# sourceMappingURL=theming-Bafjg0Wg.js.map