@dwelle/excalidraw 0.4.0-e80989b → 0.4.0-eadd4b9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (200) hide show
  1. package/CHANGELOG.md +458 -0
  2. package/README.md +16 -1424
  3. package/dist/excalidraw.development.js +1829 -500
  4. package/dist/excalidraw.production.min.js +1 -1
  5. package/dist/excalidraw.production.min.js.LICENSE.txt +20 -0
  6. package/package.json +3 -3
  7. package/types/actions/actionAddToLibrary.d.ts +68 -34
  8. package/types/actions/actionAlign.d.ts +12 -18
  9. package/types/actions/actionBoundText.d.ts +158 -19
  10. package/types/actions/actionCanvas.d.ts +430 -118
  11. package/types/actions/actionClipboard.d.ts +132 -59
  12. package/types/actions/actionDeleteSelected.d.ts +72 -41
  13. package/types/actions/actionDistribute.d.ts +2 -6
  14. package/types/actions/actionDuplicateSelection.d.ts +2 -4
  15. package/types/actions/actionElementLock.d.ts +254 -0
  16. package/types/actions/actionExport.d.ts +215 -131
  17. package/types/actions/actionFinalize.d.ts +47 -27
  18. package/types/actions/actionFlip.d.ts +2 -4
  19. package/types/actions/actionFrame.d.ts +397 -0
  20. package/types/actions/actionGroup.d.ts +6 -10
  21. package/types/actions/actionHistory.d.ts +1 -1
  22. package/types/actions/actionLinearEditor.d.ts +25 -13
  23. package/types/actions/actionMenu.d.ts +73 -46
  24. package/types/actions/actionNavigate.d.ts +2 -3
  25. package/types/actions/actionProperties.d.ts +315 -198
  26. package/types/actions/actionStyles.d.ts +23 -12
  27. package/types/actions/actionToggleGridMode.d.ts +25 -12
  28. package/types/actions/actionToggleStats.d.ts +24 -12
  29. package/types/actions/actionToggleViewMode.d.ts +25 -12
  30. package/types/actions/actionToggleZenMode.d.ts +25 -12
  31. package/types/actions/actionZindex.d.ts +8 -16
  32. package/types/actions/index.d.ts +1 -1
  33. package/types/actions/manager.d.ts +3 -2
  34. package/types/actions/shortcuts.d.ts +2 -1
  35. package/types/actions/types.d.ts +13 -11
  36. package/types/appState.d.ts +16 -12
  37. package/types/charts.d.ts +2 -2
  38. package/types/clients.d.ts +5 -6
  39. package/types/clipboard.d.ts +2 -2
  40. package/types/colors.d.ts +60 -5
  41. package/types/components/Actions.d.ts +5 -5
  42. package/types/components/ActiveConfirmDialog.d.ts +4 -0
  43. package/types/components/App.d.ts +52 -68
  44. package/types/components/Avatar.d.ts +1 -2
  45. package/types/components/BraveMeasureTextError.d.ts +2 -0
  46. package/types/components/Button.d.ts +17 -0
  47. package/types/components/ButtonIconSelect.d.ts +11 -3
  48. package/types/components/Card.d.ts +7 -0
  49. package/types/components/ColorPicker/ColorInput.d.ts +7 -0
  50. package/types/components/ColorPicker/ColorPicker.d.ts +19 -0
  51. package/types/components/ColorPicker/CustomColorList.d.ts +8 -0
  52. package/types/components/ColorPicker/HotkeyLabel.d.ts +8 -0
  53. package/types/components/ColorPicker/Picker.d.ts +18 -0
  54. package/types/components/ColorPicker/PickerColorList.d.ts +10 -0
  55. package/types/components/ColorPicker/PickerHeading.d.ts +5 -0
  56. package/types/components/ColorPicker/ShadeList.d.ts +8 -0
  57. package/types/components/ColorPicker/TopPicks.d.ts +9 -0
  58. package/types/components/ColorPicker/colorPickerUtils.d.ts +21 -0
  59. package/types/components/ColorPicker/keyboardNavHandlers.d.ts +21 -0
  60. package/types/components/ContextMenu.d.ts +9 -22
  61. package/types/components/DefaultSidebar.d.ts +30 -0
  62. package/types/components/Dialog.d.ts +2 -4
  63. package/types/components/ErrorDialog.d.ts +3 -2
  64. package/types/components/EyeDropper.d.ts +18 -0
  65. package/types/components/FilledButton.d.ts +16 -0
  66. package/types/components/FixedSideContainer.d.ts +1 -1
  67. package/types/components/HandButton.d.ts +10 -0
  68. package/types/components/HelpButton.d.ts +1 -2
  69. package/types/components/HintViewer.d.ts +2 -2
  70. package/types/components/HomeButton.d.ts +1 -1
  71. package/types/components/ImageExportDialog.d.ts +8 -13
  72. package/types/components/Island.d.ts +1 -1
  73. package/types/components/JSONExportDialog.d.ts +6 -4
  74. package/types/components/LayerUI.d.ts +7 -15
  75. package/types/components/LibraryMenu.d.ts +13 -14
  76. package/types/components/LibraryMenuBrowseButton.d.ts +2 -2
  77. package/types/components/LibraryMenuControlButtons.d.ts +9 -0
  78. package/types/components/LibraryMenuHeaderContent.d.ts +11 -5
  79. package/types/components/LibraryMenuItems.d.ts +6 -7
  80. package/types/components/LibraryMenuSection.d.ts +22 -0
  81. package/types/components/LibraryUnit.d.ts +7 -3
  82. package/types/components/LockButton.d.ts +1 -2
  83. package/types/components/MobileMenu.d.ts +8 -11
  84. package/types/components/PasteChartDialog.d.ts +4 -5
  85. package/types/components/PenModeButton.d.ts +1 -1
  86. package/types/components/Popover.d.ts +1 -1
  87. package/types/components/ProjectName.d.ts +2 -1
  88. package/types/components/PublishLibrary.d.ts +2 -2
  89. package/types/components/RadioGroup.d.ts +12 -0
  90. package/types/components/Sidebar/Sidebar.d.ts +66 -63
  91. package/types/components/Sidebar/SidebarHeader.d.ts +6 -19
  92. package/types/components/Sidebar/SidebarTab.d.ts +9 -0
  93. package/types/components/Sidebar/SidebarTabTrigger.d.ts +10 -0
  94. package/types/components/Sidebar/SidebarTabTriggers.d.ts +7 -0
  95. package/types/components/Sidebar/SidebarTabs.d.ts +7 -0
  96. package/types/components/Sidebar/SidebarTrigger.d.ts +6 -0
  97. package/types/components/Sidebar/common.d.ts +24 -7
  98. package/types/components/Spinner.d.ts +2 -1
  99. package/types/components/Stack.d.ts +4 -3
  100. package/types/components/Stats.d.ts +3 -3
  101. package/types/components/Switch.d.ts +9 -0
  102. package/types/components/ToolButton.d.ts +6 -5
  103. package/types/components/Tooltip.d.ts +1 -1
  104. package/types/components/Trans.d.ts +8 -0
  105. package/types/components/UserList.d.ts +0 -2
  106. package/types/components/dropdownMenu/DropdownMenu.d.ts +67 -0
  107. package/types/components/dropdownMenu/DropdownMenuContent.d.ts +15 -0
  108. package/types/components/dropdownMenu/DropdownMenuGroup.d.ts +11 -0
  109. package/types/components/dropdownMenu/DropdownMenuItem.d.ts +12 -0
  110. package/types/components/dropdownMenu/DropdownMenuItemContent.d.ts +6 -0
  111. package/types/components/dropdownMenu/DropdownMenuItemCustom.d.ts +6 -0
  112. package/types/components/dropdownMenu/DropdownMenuItemLink.d.ts +13 -0
  113. package/types/components/dropdownMenu/DropdownMenuSeparator.d.ts +5 -0
  114. package/types/components/dropdownMenu/DropdownMenuTrigger.d.ts +11 -0
  115. package/types/components/dropdownMenu/common.d.ts +6 -0
  116. package/types/components/dropdownMenu/dropdownMenuUtils.d.ts +3 -0
  117. package/types/components/footer/Footer.d.ts +12 -0
  118. package/types/components/footer/FooterCenter.d.ts +8 -0
  119. package/types/components/hoc/withInternalFallback.d.ts +4 -0
  120. package/types/components/icons.d.ts +13 -2
  121. package/types/components/live-collaboration/LiveCollaborationTrigger.d.ts +10 -0
  122. package/types/components/main-menu/DefaultItems.d.ts +47 -0
  123. package/types/components/main-menu/MainMenu.d.ts +61 -0
  124. package/types/components/welcome-screen/WelcomeScreen.Center.d.ts +58 -0
  125. package/types/components/welcome-screen/WelcomeScreen.Hints.d.ts +19 -0
  126. package/types/components/welcome-screen/WelcomeScreen.d.ts +85 -0
  127. package/types/constants.d.ts +73 -16
  128. package/types/context/tunnels.d.ts +18 -0
  129. package/types/context/ui-appState.d.ts +4 -0
  130. package/types/data/blob.d.ts +3 -2
  131. package/types/data/encode.d.ts +1 -1
  132. package/types/data/filesystem.d.ts +2 -1
  133. package/types/data/index.d.ts +1 -1
  134. package/types/data/library.d.ts +3 -45
  135. package/types/data/restore.d.ts +10 -4
  136. package/types/data/types.d.ts +3 -5
  137. package/types/element/Hyperlink.d.ts +27 -18
  138. package/types/element/binding.d.ts +3 -3
  139. package/types/element/bounds.d.ts +32 -7
  140. package/types/element/collision.d.ts +7 -7
  141. package/types/element/dragElements.d.ts +2 -1
  142. package/types/element/image.d.ts +11 -1
  143. package/types/element/index.d.ts +3 -2
  144. package/types/element/linearElementEditor.d.ts +24 -13
  145. package/types/element/mutateElement.d.ts +2 -1
  146. package/types/element/newElement.d.ts +37 -11
  147. package/types/element/resizeElements.d.ts +1 -0
  148. package/types/element/showSelectedShapeActions.d.ts +2 -2
  149. package/types/element/sortElements.d.ts +2 -0
  150. package/types/element/textElement.d.ts +40 -5
  151. package/types/element/textWysiwyg.d.ts +6 -1
  152. package/types/element/transformHandles.d.ts +12 -5
  153. package/types/element/typeChecks.d.ts +12 -2
  154. package/types/element/types.d.ts +53 -36
  155. package/types/emitter.d.ts +1 -1
  156. package/types/errors.d.ts +1 -1
  157. package/types/frame.d.ts +40 -0
  158. package/types/ga.d.ts +5 -5
  159. package/types/groups.d.ts +4 -0
  160. package/types/hooks/useCreatePortalContainer.d.ts +4 -0
  161. package/types/hooks/useLibraryItemSvg.d.ts +11 -0
  162. package/types/hooks/useOutsideClick.d.ts +19 -1
  163. package/types/hooks/useScrollPosition.d.ts +2 -0
  164. package/types/hooks/useTransition.d.ts +2 -0
  165. package/types/i18n.d.ts +7 -1
  166. package/types/jotai.d.ts +20 -108
  167. package/types/keys.d.ts +4 -4
  168. package/types/math.d.ts +4 -1
  169. package/types/packages/excalidraw/example/App.d.ts +7 -1
  170. package/types/packages/excalidraw/example/CustomFooter.d.ts +5 -0
  171. package/types/packages/excalidraw/example/MobileFooter.d.ts +5 -0
  172. package/types/packages/excalidraw/example/initialData.d.ts +6 -0
  173. package/types/packages/excalidraw/index.d.ts +17 -3
  174. package/types/packages/utils.d.ts +26 -25
  175. package/types/renderer/renderElement.d.ts +7 -5
  176. package/types/renderer/renderScene.d.ts +13 -6
  177. package/types/renderer/roundRect.d.ts +1 -1
  178. package/types/scene/Scene.d.ts +12 -5
  179. package/types/scene/comparisons.d.ts +1 -1
  180. package/types/scene/export.d.ts +157 -10
  181. package/types/scene/index.d.ts +1 -1
  182. package/types/scene/selection.d.ts +15 -5
  183. package/types/scene/types.d.ts +13 -5
  184. package/types/types.d.ts +126 -77
  185. package/types/utility-types.d.ts +22 -0
  186. package/types/utils.d.ts +40 -9
  187. package/types/zindex.d.ts +4 -4
  188. package/types/actions/actionToggleLock.d.ts +0 -116
  189. package/types/components/ActiveFile.d.ts +0 -7
  190. package/types/components/ClearCanvas.d.ts +0 -4
  191. package/types/components/CollabButton.d.ts +0 -6
  192. package/types/components/ColorPicker.d.ts +0 -14
  193. package/types/components/Footer.d.ts +0 -10
  194. package/types/components/LibraryButton.d.ts +0 -8
  195. package/types/components/MenuItem.d.ts +0 -11
  196. package/types/components/MenuUtils.d.ts +0 -1
  197. package/types/components/SingleLibraryItem.d.ts +0 -10
  198. package/types/components/WelcomeScreen.d.ts +0 -10
  199. package/types/components/WelcomeScreenDecor.d.ts +0 -6
  200. package/types/components/hoc/withUpstreamOverride.d.ts +0 -10
@@ -1,2 +1,2 @@
1
1
  /*! For license information please see excalidraw.production.min.js.LICENSE.txt */
2
- !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("react"),require("react-dom")):"function"==typeof define&&define.amd?define(["react","react-dom"],t):"object"==typeof exports?exports.ExcalidrawLib=t(require("react"),require("react-dom")):e.ExcalidrawLib=t(e.React,e.ReactDOM)}(self,(function(e,t){return function(){var n,r,o,i,a={45:function(e,t,n){"use strict";function r(e){var t,n,o="";if("string"==typeof e||"number"==typeof e)o+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(n=r(e[t]))&&(o&&(o+=" "),o+=n);else for(t in e)e[t]&&(o&&(o+=" "),o+=t);return o}function o(){for(var e,t,n=0,o="";n<arguments.length;)(e=arguments[n++])&&(t=r(e))&&(o&&(o+=" "),o+=t);return o}n.d(t,{Z:function(){return o}})},6233:function(e,t){var n;n=function(e){e.version="0.3.0";var t=function(){for(var e=0,t=new Array(256),n=0;256!=n;++n)e=1&(e=1&(e=1&(e=1&(e=1&(e=1&(e=1&(e=1&(e=n)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1,t[n]=e;return"undefined"!=typeof Int32Array?new Int32Array(t):t}(),n="undefined"!=typeof Buffer;function r(e){for(var n=-1,r=0,o=e.length-7;r<o;)n=(n=(n=(n=(n=(n=(n=(n=n>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])];for(;r<o+7;)n=n>>>8^t[255&(n^e[r++])];return-1^n}e.table=t,e.bstr=function(e){if(e.length>32768&&n)return r(new Buffer(e));for(var o=-1,i=e.length-1,a=0;a<i;)o=t[255&(o^e.charCodeAt(a++))]^o>>>8,o=t[255&(o^e.charCodeAt(a++))]^o>>>8;return a===i&&(o=o>>>8^t[255&(o^e.charCodeAt(a))]),-1^o},e.buf=function(e){if(e.length>1e4)return r(e);for(var n=-1,o=0,i=e.length-3;o<i;)n=(n=(n=(n=n>>>8^t[255&(n^e[o++])])>>>8^t[255&(n^e[o++])])>>>8^t[255&(n^e[o++])])>>>8^t[255&(n^e[o++])];for(;o<i+3;)n=n>>>8^t[255&(n^e[o++])];return-1^n},e.str=function(e){for(var n,r,o=-1,i=0,a=e.length;i<a;)(n=e.charCodeAt(i++))<128?o=o>>>8^t[255&(o^n)]:n<2048?o=(o=o>>>8^t[255&(o^(192|n>>6&31))])>>>8^t[255&(o^(128|63&n))]:n>=55296&&n<57344?(n=64+(1023&n),r=1023&e.charCodeAt(i++),o=(o=(o=(o=o>>>8^t[255&(o^(240|n>>8&7))])>>>8^t[255&(o^(128|n>>2&63))])>>>8^t[255&(o^(128|r>>6&15|3&n))])>>>8^t[255&(o^(128|63&r))]):o=(o=(o=o>>>8^t[255&(o^(224|n>>12&15))])>>>8^t[255&(o^(128|n>>6&63))])>>>8^t[255&(o^(128|63&n))];return-1^o}},"undefined"==typeof DO_NOT_EXPORT_CRC?n(t):n({})},4739:function(e,t,n){"use strict";n.d(t,{KO:function(){return W},Vv:function(){return k},b9:function(){return B},cn:function(){return R},zt:function(){return Z}});var r=n(9787);const o=Symbol(),i=e=>!!e[o],a=e=>{var t,n;null==(n=(t=e[o]).c)||n.call(t)},l=(e,t)=>{const n=e[o].o,r=t[o].o;return n===r||e===r||i(n)&&l(n,t)},s=e=>{const t={o:e,c:null},n=new Promise((n=>{t.c=()=>{t.c=null,n()},e.then(t.c,t.c)}));return n[o]=t,n};var c=Object.defineProperty,u=Object.defineProperties,d=Object.getOwnPropertyDescriptors,p=Object.getOwnPropertySymbols,f=Object.prototype.hasOwnProperty,h=Object.prototype.propertyIsEnumerable,m=(e,t,n)=>t in e?c(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const g=e=>"init"in e,v="r",b="w",y="c",x="s",w=e=>{const t=new WeakMap,n=new WeakMap,r=new Map;let c,w;if(c=new Set,w=new Set,e)for(const[n,r]of e){const e={v:r,r:0,d:new Map};Object.freeze(e),g(n)||console.warn("Found initial value for derived atom which can cause unexpected behavior",n),t.set(n,e)}const k=new WeakMap,E=new WeakMap,S=e=>{let t=E.get(e);return t||(t=new Map,E.set(e,t)),t},_=(e,n)=>{if(e){const t=S(e);let r=t.get(n);return r||(r=_(e.p,n),r&&("p"in r&&r.p.then((()=>t.delete(n))),t.set(n,r))),r}return t.get(n)},j=(e,n,o)=>{if(Object.freeze(o),e){S(e).set(n,o)}else{const e=t.get(n);t.set(n,o),r.has(n)||r.set(n,e)}},C=(e,t=new Map,n)=>{if(!n)return t;const r=new Map;let o=!1;return n.forEach((n=>{var i;const a=(null==(i=_(e,n))?void 0:i.r)||0;r.set(n,a),t.get(n)!==a&&(o=!0)})),t.size!==r.size||o?r:t},O=(e,t,n,r,o)=>{const i=_(e,t);if(i){if(o&&(!("p"in i)||!l(i.p,o)))return i;"p"in i&&a(i.p)}const s={v:n,r:(null==i?void 0:i.r)||0,d:C(e,null==i?void 0:i.d,r)};return i&&"v"in i&&Object.is(i.v,n)?s.d===i.d||s.d.size===i.d.size&&Array.from(s.d.keys()).every((e=>i.d.has(e)))||Promise.resolve().then((()=>{H(e)})):(++s.r,s.d.has(t)&&(s.d=new Map(s.d).set(t,s.r))),j(e,t,s),s},M=(e,t,n,r,o)=>{const i=_(e,t);if(i){if(o&&(!("p"in i)||!l(i.p,o)))return i;"p"in i&&a(i.p)}const s={e:n,r:(null==i?void 0:i.r)||0,d:C(e,null==i?void 0:i.d,r)};return j(e,t,s),s},I=(e,t,n,r)=>{const o=_(e,t);if(o&&"p"in o){if(l(o.p,n))return o;a(o.p)}((e,t,n)=>{let r=k.get(t);r||(r=new Map,k.set(t,r)),n.then((()=>{r.get(e)===n&&(r.delete(e),r.size||k.delete(t))})),r.set(e,n)})(e,t,n);const i={p:n,r:(null==o?void 0:o.r)||0,d:C(e,null==o?void 0:o.d,r)};return j(e,t,i),i},P=(e,t,n,r)=>{if(n instanceof Promise){const o=s(n.then((n=>{O(e,t,n,r,o),H(e)})).catch((n=>{if(n instanceof Promise)return i(n)?n.then((()=>{D(e,t,!0)})):n;M(e,t,n,r,o),H(e)})));return I(e,t,o,r)}return O(e,t,n,r)},T=(e,t)=>{const n=_(e,t);if(n){"p"in n&&a(n.p);const i=(r=((e,t)=>{for(var n in t||(t={}))f.call(t,n)&&m(e,n,t[n]);if(p)for(var n of p(t))h.call(t,n)&&m(e,n,t[n]);return e})({},n),o={i:n.r},u(r,d(o)));j(e,t,i)}else console.warn("[Bug] could not invalidate non existing atom",t);var r,o},D=(e,t,r)=>{if(!r){const r=_(e,t);if(r){if(r.r!==r.i&&"p"in r&&r.p[o].c)return r;if(r.d.forEach(((r,o)=>{if(o!==t)if(n.has(o)){const t=_(e,o);t&&t.r===t.i&&D(e,o)}else D(e,o)})),Array.from(r.d).every((([t,n])=>{const r=_(e,t);return r&&"v"in r&&r.r===n})))return r}}const i=new Set;try{const n=t.read((n=>{i.add(n);const r=n===t?_(e,n):D(e,n);if(r){if("e"in r)throw r.e;if("p"in r)throw r.p;return r.v}if(g(n))return n.init;throw new Error("no atom init")}));return P(e,t,n,i)}catch(n){if(n instanceof Promise){const r=s(n);return I(e,t,r,i)}return M(e,t,n,i)}},L=(e,t)=>D(t,e),A=(e,t)=>!t.l.size&&(!t.t.size||1===t.t.size&&t.t.has(e)),Z=(e,t)=>{const r=n.get(t);null==r||r.t.forEach((n=>{n!==t&&(T(e,n),Z(e,n))}))},z=(e,t,n)=>{let r=!0;const o=(t,n)=>{const r=D(e,t);if("e"in r)throw r.e;if("p"in r){if(null==n?void 0:n.unstable_promise)return r.p.then((()=>o(t,n)));throw console.info("Reading pending atom state in write operation. We throw a promise for now.",t),r.p}if("v"in r)return r.v;throw console.warn("[Bug] no value found while reading atom in write operation. This is probably a bug.",t),new Error("no value found")},i=t.write(o,((n,o)=>{let i;if(n===t){if(!g(n))throw new Error("atom not writable");const t=(e=>{const t=new Set,n=k.get(e);return n&&(k.delete(e),n.forEach(((e,n)=>{a(e),t.add(n)}))),t})(n);t.forEach((t=>{t!==e&&P(t,n,o)})),P(e,n,o),Z(e,n)}else i=z(e,n,o);return r||H(e),i}),n);return r=!1,e=void 0,i},R=(e,t,n)=>{const r=z(n,e,t);return H(n),r},N=(e,t)=>{const r={t:new Set(t&&[t]),l:new Set};n.set(e,r),w.add(e);if(D(void 0,e).d.forEach(((t,r)=>{const o=n.get(r);o?o.t.add(e):r!==e&&N(r,e)})),(e=>!!e.write)(e)&&e.onMount){const t=t=>R(e,t),n=e.onMount(t);n&&(r.u=n)}return r},B=e=>{var t;const r=null==(t=n.get(e))?void 0:t.u;r&&r(),n.delete(e),w.delete(e);const o=_(void 0,e);o?o.d.forEach(((t,r)=>{if(r!==e){const t=n.get(r);t&&(t.t.delete(e),A(r,t)&&B(r))}})):console.warn("[Bug] could not find atom state to unmount",e)},W=(e,t,r)=>{const o=new Set(t.d.keys());null==r||r.forEach(((t,r)=>{if(o.has(r))return void o.delete(r);const i=n.get(r);i&&(i.t.delete(e),A(r,i)&&B(r))})),o.forEach((t=>{const r=n.get(t);r?r.t.add(e):n.has(e)&&N(t,e)}))},H=e=>{if(e){S(e).forEach(((r,o)=>{if(r!==t.get(o)){const t=n.get(o);null==t||t.l.forEach((t=>t(e)))}}))}else{for(;r.size;){const e=Array.from(r);r.clear(),e.forEach((([e,t])=>{const r=_(void 0,e);r&&r.d!==(null==t?void 0:t.d)&&W(e,r,null==t?void 0:t.d);const o=n.get(e);null==o||o.l.forEach((e=>e()))}))}c.forEach((e=>e()))}},F=(e,n)=>{n&&(e=>{S(e).forEach(((e,n)=>{const r=t.get(n);(e.r>((null==r?void 0:r.r)||0)||"v"in e&&e.r===(null==r?void 0:r.r)&&e.d!==(null==r?void 0:r.d))&&(t.set(n,e),e.d!==(null==r?void 0:r.d)&&W(n,e,null==r?void 0:r.d))}))})(n),H(void 0)},U=(e,t)=>{const r=(e=>{let t=n.get(e);return t||(t=N(e)),t})(e).l;return r.add(t),()=>{r.delete(t),(e=>{const t=n.get(e);t&&A(e,t)&&B(e)})(e)}},K=(e,t)=>{for(const[n,r]of e)g(n)&&(P(t,n,r),Z(t,n));H(t)};return{[v]:L,[b]:R,[y]:F,[x]:U,h:K,n:e=>(c.add(e),()=>{c.delete(e)}),l:()=>w.values(),a:e=>t.get(e),m:e=>n.get(e)}},k=e=>{const t=w(e),n=e=>new Promise(((r,o)=>{const i=t.r(e);"e"in i?o(i.e):r("p"in i?i.p.then((()=>n(e))):i.v)}));return{get:e=>{const n=t.r(e);if("e"in n)throw n.e;if(!("p"in n))return n.v},asyncGet:n,set:(e,n)=>t.w(e,n),sub:(e,n)=>t.s(e,n),SECRET_INTERNAL_store:t}},E=(e,t)=>({s:t?t(e).SECRET_INTERNAL_store:w(e)}),S=new Map,_=e=>(S.has(e)||S.set(e,(0,r.createContext)(E())),S.get(e));var j=Object.defineProperty,C=Object.defineProperties,O=Object.getOwnPropertyDescriptors,M=Object.getOwnPropertySymbols,I=Object.prototype.hasOwnProperty,P=Object.prototype.propertyIsEnumerable,T=(e,t,n)=>t in e?j(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,D=(e,t)=>{for(var n in t||(t={}))I.call(t,n)&&T(e,n,t[n]);if(M)for(var n of M(t))P.call(t,n)&&T(e,n,t[n]);return e};const L=e=>e.debugLabel||e.toString(),A=([e,t])=>Object.fromEntries(t.flatMap((t=>{var n,r;const o=null==(n=e.m)?void 0:n.call(e,t);if(!o)return[];const i=o.t,a=(null==(r=e.a)?void 0:r.call(e,t))||{};return[[L(t),(l=D(D(D({},"e"in a&&{error:a.e}),"p"in a&&{promise:a.p}),"v"in a&&{value:a.v}),s={dependents:Array.from(i).map(L)},C(l,O(s)))]];var l,s}))),Z=({children:e,initialValues:t,scope:n,unstable_createStore:o,unstable_enableVersionedWrite:i})=>{const[a,l]=(0,r.useState)();(0,r.useEffect)((()=>{a&&(s.current.s.c(null,a),delete a.p)}),[a]);const s=(0,r.useRef)();s.current||(s.current=E(t,o),i&&(s.current.w=e=>{l((t=>{const n=t?{p:t}:{};return e(n),n}))})),i||(e=>{const{s:t}=e,[n,o]=(0,r.useState)([]);(0,r.useEffect)((()=>{var e;const n=()=>{var e;o(Array.from((null==(e=t.l)?void 0:e.call(t))||[]))},r=null==(e=t.n)?void 0:e.call(t,n);return n(),r}),[t]),(0,r.useDebugValue)([t,n],A)})(s.current);const c=_(n);return(0,r.createElement)(c.Provider,{value:s.current},e)};let z=0;function R(e,t){const n="atom"+ ++z,r={toString:()=>n};return"function"==typeof e?r.read=e:(r.init=e,r.read=e=>e(r),r.write=(e,t,n)=>t(r,"function"==typeof n?n(e(r)):n)),t&&(r.write=t),r}function N(e,t){const n=_(t),{s:o}=(0,r.useContext)(n),i=(0,r.useCallback)((t=>{const n=o.r(e,t);if("e"in n)throw n.e;if("p"in n)throw n.p;if("v"in n)return n.v;throw new Error("no atom value")}),[o,e]),[[a,l,s],c]=(0,r.useReducer)((0,r.useCallback)(((t,n)=>{const r=i(n);return Object.is(t[1],r)&&t[2]===e?t:[n,r,e]}),[i,e]),void 0,(()=>{const t=void 0;return[t,i(t),e]}));return s!==e&&c(void 0),(0,r.useEffect)((()=>{const t=o.s(e,c);return c(void 0),t}),[o,e]),(0,r.useEffect)((()=>{o.c(e,a)})),(0,r.useDebugValue)(l),l}function B(e,t){const n=_(t),{s:o,w:i}=(0,r.useContext)(n);return(0,r.useCallback)((t=>{if(!("write"in e))throw new Error("not writable atom");const n=n=>o.w(e,t,n);return i?i(n):n()}),[o,i,e])}function W(e,t){return"scope"in e&&(console.warn("atom.scope is deprecated. Please do useAtom(atom, scope) instead."),t=e.scope),[N(e,t),B(e,t)]}},200:function(e,t,n){var r="Expected a function",o=/^\s+|\s+$/g,i=/^[-+]0x[0-9a-f]+$/i,a=/^0b[01]+$/i,l=/^0o[0-7]+$/i,s=parseInt,c="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,u="object"==typeof self&&self&&self.Object===Object&&self,d=c||u||Function("return this")(),p=Object.prototype.toString,f=Math.max,h=Math.min,m=function(){return d.Date.now()};function g(e,t,n){var o,i,a,l,s,c,u=0,d=!1,p=!1,g=!0;if("function"!=typeof e)throw new TypeError(r);function y(t){var n=o,r=i;return o=i=void 0,u=t,l=e.apply(r,n)}function x(e){return u=e,s=setTimeout(k,t),d?y(e):l}function w(e){var n=e-c;return void 0===c||n>=t||n<0||p&&e-u>=a}function k(){var e=m();if(w(e))return E(e);s=setTimeout(k,function(e){var n=t-(e-c);return p?h(n,a-(e-u)):n}(e))}function E(e){return s=void 0,g&&o?y(e):(o=i=void 0,l)}function S(){var e=m(),n=w(e);if(o=arguments,i=this,c=e,n){if(void 0===s)return x(c);if(p)return s=setTimeout(k,t),y(c)}return void 0===s&&(s=setTimeout(k,t)),l}return t=b(t)||0,v(n)&&(d=!!n.leading,a=(p="maxWait"in n)?f(b(n.maxWait)||0,t):a,g="trailing"in n?!!n.trailing:g),S.cancel=function(){void 0!==s&&clearTimeout(s),u=0,o=c=i=s=void 0},S.flush=function(){return void 0===s?l:E(m())},S}function v(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function b(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==p.call(e)}(e))return NaN;if(v(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=v(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(o,"");var n=a.test(e);return n||l.test(e)?s(e.slice(2),n?2:8):i.test(e)?NaN:+e}e.exports=function(e,t,n){var o=!0,i=!0;if("function"!=typeof e)throw new TypeError(r);return v(n)&&(o="leading"in n?!!n.leading:o,i="trailing"in n?!!n.trailing:i),g(e,t,{leading:o,maxWait:t,trailing:i})}},2744:function(e,t,n){"use strict";var r={};(0,n(9187).assign)(r,n(4395),n(578),n(2684)),e.exports=r},4395:function(e,t,n){"use strict";var r=n(7651),o=n(9187),i=n(8592),a=n(5604),l=n(249),s=Object.prototype.toString;function c(e){if(!(this instanceof c))return new c(e);this.options=o.assign({level:-1,method:8,chunkSize:16384,windowBits:15,memLevel:8,strategy:0,to:""},e||{});var t=this.options;t.raw&&t.windowBits>0?t.windowBits=-t.windowBits:t.gzip&&t.windowBits>0&&t.windowBits<16&&(t.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new l,this.strm.avail_out=0;var n=r.deflateInit2(this.strm,t.level,t.method,t.windowBits,t.memLevel,t.strategy);if(0!==n)throw new Error(a[n]);if(t.header&&r.deflateSetHeader(this.strm,t.header),t.dictionary){var u;if(u="string"==typeof t.dictionary?i.string2buf(t.dictionary):"[object ArrayBuffer]"===s.call(t.dictionary)?new Uint8Array(t.dictionary):t.dictionary,0!==(n=r.deflateSetDictionary(this.strm,u)))throw new Error(a[n]);this._dict_set=!0}}function u(e,t){var n=new c(t);if(n.push(e,!0),n.err)throw n.msg||a[n.err];return n.result}c.prototype.push=function(e,t){var n,a,l=this.strm,c=this.options.chunkSize;if(this.ended)return!1;a=t===~~t?t:!0===t?4:0,"string"==typeof e?l.input=i.string2buf(e):"[object ArrayBuffer]"===s.call(e)?l.input=new Uint8Array(e):l.input=e,l.next_in=0,l.avail_in=l.input.length;do{if(0===l.avail_out&&(l.output=new o.Buf8(c),l.next_out=0,l.avail_out=c),1!==(n=r.deflate(l,a))&&0!==n)return this.onEnd(n),this.ended=!0,!1;0!==l.avail_out&&(0!==l.avail_in||4!==a&&2!==a)||("string"===this.options.to?this.onData(i.buf2binstring(o.shrinkBuf(l.output,l.next_out))):this.onData(o.shrinkBuf(l.output,l.next_out)))}while((l.avail_in>0||0===l.avail_out)&&1!==n);return 4===a?(n=r.deflateEnd(this.strm),this.onEnd(n),this.ended=!0,0===n):2!==a||(this.onEnd(0),l.avail_out=0,!0)},c.prototype.onData=function(e){this.chunks.push(e)},c.prototype.onEnd=function(e){0===e&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=o.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg},t.Deflate=c,t.deflate=u,t.deflateRaw=function(e,t){return(t=t||{}).raw=!0,u(e,t)},t.gzip=function(e,t){return(t=t||{}).gzip=!0,u(e,t)}},578:function(e,t,n){"use strict";var r=n(7823),o=n(9187),i=n(8592),a=n(2684),l=n(5604),s=n(249),c=n(9968),u=Object.prototype.toString;function d(e){if(!(this instanceof d))return new d(e);this.options=o.assign({chunkSize:16384,windowBits:0,to:""},e||{});var t=this.options;t.raw&&t.windowBits>=0&&t.windowBits<16&&(t.windowBits=-t.windowBits,0===t.windowBits&&(t.windowBits=-15)),!(t.windowBits>=0&&t.windowBits<16)||e&&e.windowBits||(t.windowBits+=32),t.windowBits>15&&t.windowBits<48&&0==(15&t.windowBits)&&(t.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new s,this.strm.avail_out=0;var n=r.inflateInit2(this.strm,t.windowBits);if(n!==a.Z_OK)throw new Error(l[n]);if(this.header=new c,r.inflateGetHeader(this.strm,this.header),t.dictionary&&("string"==typeof t.dictionary?t.dictionary=i.string2buf(t.dictionary):"[object ArrayBuffer]"===u.call(t.dictionary)&&(t.dictionary=new Uint8Array(t.dictionary)),t.raw&&(n=r.inflateSetDictionary(this.strm,t.dictionary))!==a.Z_OK))throw new Error(l[n])}function p(e,t){var n=new d(t);if(n.push(e,!0),n.err)throw n.msg||l[n.err];return n.result}d.prototype.push=function(e,t){var n,l,s,c,d,p=this.strm,f=this.options.chunkSize,h=this.options.dictionary,m=!1;if(this.ended)return!1;l=t===~~t?t:!0===t?a.Z_FINISH:a.Z_NO_FLUSH,"string"==typeof e?p.input=i.binstring2buf(e):"[object ArrayBuffer]"===u.call(e)?p.input=new Uint8Array(e):p.input=e,p.next_in=0,p.avail_in=p.input.length;do{if(0===p.avail_out&&(p.output=new o.Buf8(f),p.next_out=0,p.avail_out=f),(n=r.inflate(p,a.Z_NO_FLUSH))===a.Z_NEED_DICT&&h&&(n=r.inflateSetDictionary(this.strm,h)),n===a.Z_BUF_ERROR&&!0===m&&(n=a.Z_OK,m=!1),n!==a.Z_STREAM_END&&n!==a.Z_OK)return this.onEnd(n),this.ended=!0,!1;p.next_out&&(0!==p.avail_out&&n!==a.Z_STREAM_END&&(0!==p.avail_in||l!==a.Z_FINISH&&l!==a.Z_SYNC_FLUSH)||("string"===this.options.to?(s=i.utf8border(p.output,p.next_out),c=p.next_out-s,d=i.buf2string(p.output,s),p.next_out=c,p.avail_out=f-c,c&&o.arraySet(p.output,p.output,s,c,0),this.onData(d)):this.onData(o.shrinkBuf(p.output,p.next_out)))),0===p.avail_in&&0===p.avail_out&&(m=!0)}while((p.avail_in>0||0===p.avail_out)&&n!==a.Z_STREAM_END);return n===a.Z_STREAM_END&&(l=a.Z_FINISH),l===a.Z_FINISH?(n=r.inflateEnd(this.strm),this.onEnd(n),this.ended=!0,n===a.Z_OK):l!==a.Z_SYNC_FLUSH||(this.onEnd(a.Z_OK),p.avail_out=0,!0)},d.prototype.onData=function(e){this.chunks.push(e)},d.prototype.onEnd=function(e){e===a.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=o.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg},t.Inflate=d,t.inflate=p,t.inflateRaw=function(e,t){return(t=t||{}).raw=!0,p(e,t)},t.ungzip=p},9187:function(e,t){"use strict";var n="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;function r(e,t){return Object.prototype.hasOwnProperty.call(e,t)}t.assign=function(e){for(var t=Array.prototype.slice.call(arguments,1);t.length;){var n=t.shift();if(n){if("object"!=typeof n)throw new TypeError(n+"must be non-object");for(var o in n)r(n,o)&&(e[o]=n[o])}}return e},t.shrinkBuf=function(e,t){return e.length===t?e:e.subarray?e.subarray(0,t):(e.length=t,e)};var o={arraySet:function(e,t,n,r,o){if(t.subarray&&e.subarray)e.set(t.subarray(n,n+r),o);else for(var i=0;i<r;i++)e[o+i]=t[n+i]},flattenChunks:function(e){var t,n,r,o,i,a;for(r=0,t=0,n=e.length;t<n;t++)r+=e[t].length;for(a=new Uint8Array(r),o=0,t=0,n=e.length;t<n;t++)i=e[t],a.set(i,o),o+=i.length;return a}},i={arraySet:function(e,t,n,r,o){for(var i=0;i<r;i++)e[o+i]=t[n+i]},flattenChunks:function(e){return[].concat.apply([],e)}};t.setTyped=function(e){e?(t.Buf8=Uint8Array,t.Buf16=Uint16Array,t.Buf32=Int32Array,t.assign(t,o)):(t.Buf8=Array,t.Buf16=Array,t.Buf32=Array,t.assign(t,i))},t.setTyped(n)},8592:function(e,t,n){"use strict";var r=n(9187),o=!0,i=!0;try{String.fromCharCode.apply(null,[0])}catch(e){o=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(e){i=!1}for(var a=new r.Buf8(256),l=0;l<256;l++)a[l]=l>=252?6:l>=248?5:l>=240?4:l>=224?3:l>=192?2:1;function s(e,t){if(t<65534&&(e.subarray&&i||!e.subarray&&o))return String.fromCharCode.apply(null,r.shrinkBuf(e,t));for(var n="",a=0;a<t;a++)n+=String.fromCharCode(e[a]);return n}a[254]=a[254]=1,t.string2buf=function(e){var t,n,o,i,a,l=e.length,s=0;for(i=0;i<l;i++)55296==(64512&(n=e.charCodeAt(i)))&&i+1<l&&56320==(64512&(o=e.charCodeAt(i+1)))&&(n=65536+(n-55296<<10)+(o-56320),i++),s+=n<128?1:n<2048?2:n<65536?3:4;for(t=new r.Buf8(s),a=0,i=0;a<s;i++)55296==(64512&(n=e.charCodeAt(i)))&&i+1<l&&56320==(64512&(o=e.charCodeAt(i+1)))&&(n=65536+(n-55296<<10)+(o-56320),i++),n<128?t[a++]=n:n<2048?(t[a++]=192|n>>>6,t[a++]=128|63&n):n<65536?(t[a++]=224|n>>>12,t[a++]=128|n>>>6&63,t[a++]=128|63&n):(t[a++]=240|n>>>18,t[a++]=128|n>>>12&63,t[a++]=128|n>>>6&63,t[a++]=128|63&n);return t},t.buf2binstring=function(e){return s(e,e.length)},t.binstring2buf=function(e){for(var t=new r.Buf8(e.length),n=0,o=t.length;n<o;n++)t[n]=e.charCodeAt(n);return t},t.buf2string=function(e,t){var n,r,o,i,l=t||e.length,c=new Array(2*l);for(r=0,n=0;n<l;)if((o=e[n++])<128)c[r++]=o;else if((i=a[o])>4)c[r++]=65533,n+=i-1;else{for(o&=2===i?31:3===i?15:7;i>1&&n<l;)o=o<<6|63&e[n++],i--;i>1?c[r++]=65533:o<65536?c[r++]=o:(o-=65536,c[r++]=55296|o>>10&1023,c[r++]=56320|1023&o)}return s(c,r)},t.utf8border=function(e,t){var n;for((t=t||e.length)>e.length&&(t=e.length),n=t-1;n>=0&&128==(192&e[n]);)n--;return n<0||0===n?t:n+a[e[n]]>t?n:t}},3693:function(e){"use strict";e.exports=function(e,t,n,r){for(var o=65535&e|0,i=e>>>16&65535|0,a=0;0!==n;){n-=a=n>2e3?2e3:n;do{i=i+(o=o+t[r++]|0)|0}while(--a);o%=65521,i%=65521}return o|i<<16|0}},2684:function(e){"use strict";e.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},8464:function(e){"use strict";var t=function(){for(var e,t=[],n=0;n<256;n++){e=n;for(var r=0;r<8;r++)e=1&e?3988292384^e>>>1:e>>>1;t[n]=e}return t}();e.exports=function(e,n,r,o){var i=t,a=o+r;e^=-1;for(var l=o;l<a;l++)e=e>>>8^i[255&(e^n[l])];return-1^e}},7651:function(e,t,n){"use strict";var r,o=n(9187),i=n(8676),a=n(3693),l=n(8464),s=n(5604),c=-2,u=258,d=262,p=103,f=113,h=666;function m(e,t){return e.msg=s[t],t}function g(e){return(e<<1)-(e>4?9:0)}function v(e){for(var t=e.length;--t>=0;)e[t]=0}function b(e){var t=e.state,n=t.pending;n>e.avail_out&&(n=e.avail_out),0!==n&&(o.arraySet(e.output,t.pending_buf,t.pending_out,n,e.next_out),e.next_out+=n,t.pending_out+=n,e.total_out+=n,e.avail_out-=n,t.pending-=n,0===t.pending&&(t.pending_out=0))}function y(e,t){i._tr_flush_block(e,e.block_start>=0?e.block_start:-1,e.strstart-e.block_start,t),e.block_start=e.strstart,b(e.strm)}function x(e,t){e.pending_buf[e.pending++]=t}function w(e,t){e.pending_buf[e.pending++]=t>>>8&255,e.pending_buf[e.pending++]=255&t}function k(e,t){var n,r,o=e.max_chain_length,i=e.strstart,a=e.prev_length,l=e.nice_match,s=e.strstart>e.w_size-d?e.strstart-(e.w_size-d):0,c=e.window,p=e.w_mask,f=e.prev,h=e.strstart+u,m=c[i+a-1],g=c[i+a];e.prev_length>=e.good_match&&(o>>=2),l>e.lookahead&&(l=e.lookahead);do{if(c[(n=t)+a]===g&&c[n+a-1]===m&&c[n]===c[i]&&c[++n]===c[i+1]){i+=2,n++;do{}while(c[++i]===c[++n]&&c[++i]===c[++n]&&c[++i]===c[++n]&&c[++i]===c[++n]&&c[++i]===c[++n]&&c[++i]===c[++n]&&c[++i]===c[++n]&&c[++i]===c[++n]&&i<h);if(r=u-(h-i),i=h-u,r>a){if(e.match_start=t,a=r,r>=l)break;m=c[i+a-1],g=c[i+a]}}}while((t=f[t&p])>s&&0!=--o);return a<=e.lookahead?a:e.lookahead}function E(e){var t,n,r,i,s,c,u,p,f,h,m=e.w_size;do{if(i=e.window_size-e.lookahead-e.strstart,e.strstart>=m+(m-d)){o.arraySet(e.window,e.window,m,m,0),e.match_start-=m,e.strstart-=m,e.block_start-=m,t=n=e.hash_size;do{r=e.head[--t],e.head[t]=r>=m?r-m:0}while(--n);t=n=m;do{r=e.prev[--t],e.prev[t]=r>=m?r-m:0}while(--n);i+=m}if(0===e.strm.avail_in)break;if(c=e.strm,u=e.window,p=e.strstart+e.lookahead,f=i,h=void 0,(h=c.avail_in)>f&&(h=f),n=0===h?0:(c.avail_in-=h,o.arraySet(u,c.input,c.next_in,h,p),1===c.state.wrap?c.adler=a(c.adler,u,h,p):2===c.state.wrap&&(c.adler=l(c.adler,u,h,p)),c.next_in+=h,c.total_in+=h,h),e.lookahead+=n,e.lookahead+e.insert>=3)for(s=e.strstart-e.insert,e.ins_h=e.window[s],e.ins_h=(e.ins_h<<e.hash_shift^e.window[s+1])&e.hash_mask;e.insert&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[s+3-1])&e.hash_mask,e.prev[s&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=s,s++,e.insert--,!(e.lookahead+e.insert<3)););}while(e.lookahead<d&&0!==e.strm.avail_in)}function S(e,t){for(var n,r;;){if(e.lookahead<d){if(E(e),e.lookahead<d&&0===t)return 1;if(0===e.lookahead)break}if(n=0,e.lookahead>=3&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+3-1])&e.hash_mask,n=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),0!==n&&e.strstart-n<=e.w_size-d&&(e.match_length=k(e,n)),e.match_length>=3)if(r=i._tr_tally(e,e.strstart-e.match_start,e.match_length-3),e.lookahead-=e.match_length,e.match_length<=e.max_lazy_match&&e.lookahead>=3){e.match_length--;do{e.strstart++,e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+3-1])&e.hash_mask,n=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart}while(0!=--e.match_length);e.strstart++}else e.strstart+=e.match_length,e.match_length=0,e.ins_h=e.window[e.strstart],e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+1])&e.hash_mask;else r=i._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++;if(r&&(y(e,!1),0===e.strm.avail_out))return 1}return e.insert=e.strstart<2?e.strstart:2,4===t?(y(e,!0),0===e.strm.avail_out?3:4):e.last_lit&&(y(e,!1),0===e.strm.avail_out)?1:2}function _(e,t){for(var n,r,o;;){if(e.lookahead<d){if(E(e),e.lookahead<d&&0===t)return 1;if(0===e.lookahead)break}if(n=0,e.lookahead>=3&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+3-1])&e.hash_mask,n=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),e.prev_length=e.match_length,e.prev_match=e.match_start,e.match_length=2,0!==n&&e.prev_length<e.max_lazy_match&&e.strstart-n<=e.w_size-d&&(e.match_length=k(e,n),e.match_length<=5&&(1===e.strategy||3===e.match_length&&e.strstart-e.match_start>4096)&&(e.match_length=2)),e.prev_length>=3&&e.match_length<=e.prev_length){o=e.strstart+e.lookahead-3,r=i._tr_tally(e,e.strstart-1-e.prev_match,e.prev_length-3),e.lookahead-=e.prev_length-1,e.prev_length-=2;do{++e.strstart<=o&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+3-1])&e.hash_mask,n=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart)}while(0!=--e.prev_length);if(e.match_available=0,e.match_length=2,e.strstart++,r&&(y(e,!1),0===e.strm.avail_out))return 1}else if(e.match_available){if((r=i._tr_tally(e,0,e.window[e.strstart-1]))&&y(e,!1),e.strstart++,e.lookahead--,0===e.strm.avail_out)return 1}else e.match_available=1,e.strstart++,e.lookahead--}return e.match_available&&(r=i._tr_tally(e,0,e.window[e.strstart-1]),e.match_available=0),e.insert=e.strstart<2?e.strstart:2,4===t?(y(e,!0),0===e.strm.avail_out?3:4):e.last_lit&&(y(e,!1),0===e.strm.avail_out)?1:2}function j(e,t,n,r,o){this.good_length=e,this.max_lazy=t,this.nice_length=n,this.max_chain=r,this.func=o}function C(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=8,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new o.Buf16(1146),this.dyn_dtree=new o.Buf16(122),this.bl_tree=new o.Buf16(78),v(this.dyn_ltree),v(this.dyn_dtree),v(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new o.Buf16(16),this.heap=new o.Buf16(573),v(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new o.Buf16(573),v(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function O(e){var t;return e&&e.state?(e.total_in=e.total_out=0,e.data_type=2,(t=e.state).pending=0,t.pending_out=0,t.wrap<0&&(t.wrap=-t.wrap),t.status=t.wrap?42:f,e.adler=2===t.wrap?0:1,t.last_flush=0,i._tr_init(t),0):m(e,c)}function M(e){var t,n=O(e);return 0===n&&((t=e.state).window_size=2*t.w_size,v(t.head),t.max_lazy_match=r[t.level].max_lazy,t.good_match=r[t.level].good_length,t.nice_match=r[t.level].nice_length,t.max_chain_length=r[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=2,t.match_available=0,t.ins_h=0),n}function I(e,t,n,r,i,a){if(!e)return c;var l=1;if(-1===t&&(t=6),r<0?(l=0,r=-r):r>15&&(l=2,r-=16),i<1||i>9||8!==n||r<8||r>15||t<0||t>9||a<0||a>4)return m(e,c);8===r&&(r=9);var s=new C;return e.state=s,s.strm=e,s.wrap=l,s.gzhead=null,s.w_bits=r,s.w_size=1<<s.w_bits,s.w_mask=s.w_size-1,s.hash_bits=i+7,s.hash_size=1<<s.hash_bits,s.hash_mask=s.hash_size-1,s.hash_shift=~~((s.hash_bits+3-1)/3),s.window=new o.Buf8(2*s.w_size),s.head=new o.Buf16(s.hash_size),s.prev=new o.Buf16(s.w_size),s.lit_bufsize=1<<i+6,s.pending_buf_size=4*s.lit_bufsize,s.pending_buf=new o.Buf8(s.pending_buf_size),s.d_buf=1*s.lit_bufsize,s.l_buf=3*s.lit_bufsize,s.level=t,s.strategy=a,s.method=n,M(e)}r=[new j(0,0,0,0,(function(e,t){var n=65535;for(n>e.pending_buf_size-5&&(n=e.pending_buf_size-5);;){if(e.lookahead<=1){if(E(e),0===e.lookahead&&0===t)return 1;if(0===e.lookahead)break}e.strstart+=e.lookahead,e.lookahead=0;var r=e.block_start+n;if((0===e.strstart||e.strstart>=r)&&(e.lookahead=e.strstart-r,e.strstart=r,y(e,!1),0===e.strm.avail_out))return 1;if(e.strstart-e.block_start>=e.w_size-d&&(y(e,!1),0===e.strm.avail_out))return 1}return e.insert=0,4===t?(y(e,!0),0===e.strm.avail_out?3:4):(e.strstart>e.block_start&&(y(e,!1),e.strm.avail_out),1)})),new j(4,4,8,4,S),new j(4,5,16,8,S),new j(4,6,32,32,S),new j(4,4,16,16,_),new j(8,16,32,32,_),new j(8,16,128,128,_),new j(8,32,128,256,_),new j(32,128,258,1024,_),new j(32,258,258,4096,_)],t.deflateInit=function(e,t){return I(e,t,8,15,8,0)},t.deflateInit2=I,t.deflateReset=M,t.deflateResetKeep=O,t.deflateSetHeader=function(e,t){return e&&e.state?2!==e.state.wrap?c:(e.state.gzhead=t,0):c},t.deflate=function(e,t){var n,o,a,s;if(!e||!e.state||t>5||t<0)return e?m(e,c):c;if(o=e.state,!e.output||!e.input&&0!==e.avail_in||o.status===h&&4!==t)return m(e,0===e.avail_out?-5:c);if(o.strm=e,n=o.last_flush,o.last_flush=t,42===o.status)if(2===o.wrap)e.adler=0,x(o,31),x(o,139),x(o,8),o.gzhead?(x(o,(o.gzhead.text?1:0)+(o.gzhead.hcrc?2:0)+(o.gzhead.extra?4:0)+(o.gzhead.name?8:0)+(o.gzhead.comment?16:0)),x(o,255&o.gzhead.time),x(o,o.gzhead.time>>8&255),x(o,o.gzhead.time>>16&255),x(o,o.gzhead.time>>24&255),x(o,9===o.level?2:o.strategy>=2||o.level<2?4:0),x(o,255&o.gzhead.os),o.gzhead.extra&&o.gzhead.extra.length&&(x(o,255&o.gzhead.extra.length),x(o,o.gzhead.extra.length>>8&255)),o.gzhead.hcrc&&(e.adler=l(e.adler,o.pending_buf,o.pending,0)),o.gzindex=0,o.status=69):(x(o,0),x(o,0),x(o,0),x(o,0),x(o,0),x(o,9===o.level?2:o.strategy>=2||o.level<2?4:0),x(o,3),o.status=f);else{var d=8+(o.w_bits-8<<4)<<8;d|=(o.strategy>=2||o.level<2?0:o.level<6?1:6===o.level?2:3)<<6,0!==o.strstart&&(d|=32),d+=31-d%31,o.status=f,w(o,d),0!==o.strstart&&(w(o,e.adler>>>16),w(o,65535&e.adler)),e.adler=1}if(69===o.status)if(o.gzhead.extra){for(a=o.pending;o.gzindex<(65535&o.gzhead.extra.length)&&(o.pending!==o.pending_buf_size||(o.gzhead.hcrc&&o.pending>a&&(e.adler=l(e.adler,o.pending_buf,o.pending-a,a)),b(e),a=o.pending,o.pending!==o.pending_buf_size));)x(o,255&o.gzhead.extra[o.gzindex]),o.gzindex++;o.gzhead.hcrc&&o.pending>a&&(e.adler=l(e.adler,o.pending_buf,o.pending-a,a)),o.gzindex===o.gzhead.extra.length&&(o.gzindex=0,o.status=73)}else o.status=73;if(73===o.status)if(o.gzhead.name){a=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>a&&(e.adler=l(e.adler,o.pending_buf,o.pending-a,a)),b(e),a=o.pending,o.pending===o.pending_buf_size)){s=1;break}s=o.gzindex<o.gzhead.name.length?255&o.gzhead.name.charCodeAt(o.gzindex++):0,x(o,s)}while(0!==s);o.gzhead.hcrc&&o.pending>a&&(e.adler=l(e.adler,o.pending_buf,o.pending-a,a)),0===s&&(o.gzindex=0,o.status=91)}else o.status=91;if(91===o.status)if(o.gzhead.comment){a=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>a&&(e.adler=l(e.adler,o.pending_buf,o.pending-a,a)),b(e),a=o.pending,o.pending===o.pending_buf_size)){s=1;break}s=o.gzindex<o.gzhead.comment.length?255&o.gzhead.comment.charCodeAt(o.gzindex++):0,x(o,s)}while(0!==s);o.gzhead.hcrc&&o.pending>a&&(e.adler=l(e.adler,o.pending_buf,o.pending-a,a)),0===s&&(o.status=p)}else o.status=p;if(o.status===p&&(o.gzhead.hcrc?(o.pending+2>o.pending_buf_size&&b(e),o.pending+2<=o.pending_buf_size&&(x(o,255&e.adler),x(o,e.adler>>8&255),e.adler=0,o.status=f)):o.status=f),0!==o.pending){if(b(e),0===e.avail_out)return o.last_flush=-1,0}else if(0===e.avail_in&&g(t)<=g(n)&&4!==t)return m(e,-5);if(o.status===h&&0!==e.avail_in)return m(e,-5);if(0!==e.avail_in||0!==o.lookahead||0!==t&&o.status!==h){var k=2===o.strategy?function(e,t){for(var n;;){if(0===e.lookahead&&(E(e),0===e.lookahead)){if(0===t)return 1;break}if(e.match_length=0,n=i._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++,n&&(y(e,!1),0===e.strm.avail_out))return 1}return e.insert=0,4===t?(y(e,!0),0===e.strm.avail_out?3:4):e.last_lit&&(y(e,!1),0===e.strm.avail_out)?1:2}(o,t):3===o.strategy?function(e,t){for(var n,r,o,a,l=e.window;;){if(e.lookahead<=u){if(E(e),e.lookahead<=u&&0===t)return 1;if(0===e.lookahead)break}if(e.match_length=0,e.lookahead>=3&&e.strstart>0&&(r=l[o=e.strstart-1])===l[++o]&&r===l[++o]&&r===l[++o]){a=e.strstart+u;do{}while(r===l[++o]&&r===l[++o]&&r===l[++o]&&r===l[++o]&&r===l[++o]&&r===l[++o]&&r===l[++o]&&r===l[++o]&&o<a);e.match_length=u-(a-o),e.match_length>e.lookahead&&(e.match_length=e.lookahead)}if(e.match_length>=3?(n=i._tr_tally(e,1,e.match_length-3),e.lookahead-=e.match_length,e.strstart+=e.match_length,e.match_length=0):(n=i._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++),n&&(y(e,!1),0===e.strm.avail_out))return 1}return e.insert=0,4===t?(y(e,!0),0===e.strm.avail_out?3:4):e.last_lit&&(y(e,!1),0===e.strm.avail_out)?1:2}(o,t):r[o.level].func(o,t);if(3!==k&&4!==k||(o.status=h),1===k||3===k)return 0===e.avail_out&&(o.last_flush=-1),0;if(2===k&&(1===t?i._tr_align(o):5!==t&&(i._tr_stored_block(o,0,0,!1),3===t&&(v(o.head),0===o.lookahead&&(o.strstart=0,o.block_start=0,o.insert=0))),b(e),0===e.avail_out))return o.last_flush=-1,0}return 4!==t?0:o.wrap<=0?1:(2===o.wrap?(x(o,255&e.adler),x(o,e.adler>>8&255),x(o,e.adler>>16&255),x(o,e.adler>>24&255),x(o,255&e.total_in),x(o,e.total_in>>8&255),x(o,e.total_in>>16&255),x(o,e.total_in>>24&255)):(w(o,e.adler>>>16),w(o,65535&e.adler)),b(e),o.wrap>0&&(o.wrap=-o.wrap),0!==o.pending?0:1)},t.deflateEnd=function(e){var t;return e&&e.state?42!==(t=e.state.status)&&69!==t&&73!==t&&91!==t&&t!==p&&t!==f&&t!==h?m(e,c):(e.state=null,t===f?m(e,-3):0):c},t.deflateSetDictionary=function(e,t){var n,r,i,l,s,u,d,p,f=t.length;if(!e||!e.state)return c;if(2===(l=(n=e.state).wrap)||1===l&&42!==n.status||n.lookahead)return c;for(1===l&&(e.adler=a(e.adler,t,f,0)),n.wrap=0,f>=n.w_size&&(0===l&&(v(n.head),n.strstart=0,n.block_start=0,n.insert=0),p=new o.Buf8(n.w_size),o.arraySet(p,t,f-n.w_size,n.w_size,0),t=p,f=n.w_size),s=e.avail_in,u=e.next_in,d=e.input,e.avail_in=f,e.next_in=0,e.input=t,E(n);n.lookahead>=3;){r=n.strstart,i=n.lookahead-2;do{n.ins_h=(n.ins_h<<n.hash_shift^n.window[r+3-1])&n.hash_mask,n.prev[r&n.w_mask]=n.head[n.ins_h],n.head[n.ins_h]=r,r++}while(--i);n.strstart=r,n.lookahead=2,E(n)}return n.strstart+=n.lookahead,n.block_start=n.strstart,n.insert=n.lookahead,n.lookahead=0,n.match_length=n.prev_length=2,n.match_available=0,e.next_in=u,e.input=d,e.avail_in=s,n.wrap=l,0},t.deflateInfo="pako deflate (from Nodeca project)"},9968:function(e){"use strict";e.exports=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}},9365:function(e){"use strict";e.exports=function(e,t){var n,r,o,i,a,l,s,c,u,d,p,f,h,m,g,v,b,y,x,w,k,E,S,_,j;n=e.state,r=e.next_in,_=e.input,o=r+(e.avail_in-5),i=e.next_out,j=e.output,a=i-(t-e.avail_out),l=i+(e.avail_out-257),s=n.dmax,c=n.wsize,u=n.whave,d=n.wnext,p=n.window,f=n.hold,h=n.bits,m=n.lencode,g=n.distcode,v=(1<<n.lenbits)-1,b=(1<<n.distbits)-1;e:do{h<15&&(f+=_[r++]<<h,h+=8,f+=_[r++]<<h,h+=8),y=m[f&v];t:for(;;){if(f>>>=x=y>>>24,h-=x,0===(x=y>>>16&255))j[i++]=65535&y;else{if(!(16&x)){if(0==(64&x)){y=m[(65535&y)+(f&(1<<x)-1)];continue t}if(32&x){n.mode=12;break e}e.msg="invalid literal/length code",n.mode=30;break e}w=65535&y,(x&=15)&&(h<x&&(f+=_[r++]<<h,h+=8),w+=f&(1<<x)-1,f>>>=x,h-=x),h<15&&(f+=_[r++]<<h,h+=8,f+=_[r++]<<h,h+=8),y=g[f&b];n:for(;;){if(f>>>=x=y>>>24,h-=x,!(16&(x=y>>>16&255))){if(0==(64&x)){y=g[(65535&y)+(f&(1<<x)-1)];continue n}e.msg="invalid distance code",n.mode=30;break e}if(k=65535&y,h<(x&=15)&&(f+=_[r++]<<h,(h+=8)<x&&(f+=_[r++]<<h,h+=8)),(k+=f&(1<<x)-1)>s){e.msg="invalid distance too far back",n.mode=30;break e}if(f>>>=x,h-=x,k>(x=i-a)){if((x=k-x)>u&&n.sane){e.msg="invalid distance too far back",n.mode=30;break e}if(E=0,S=p,0===d){if(E+=c-x,x<w){w-=x;do{j[i++]=p[E++]}while(--x);E=i-k,S=j}}else if(d<x){if(E+=c+d-x,(x-=d)<w){w-=x;do{j[i++]=p[E++]}while(--x);if(E=0,d<w){w-=x=d;do{j[i++]=p[E++]}while(--x);E=i-k,S=j}}}else if(E+=d-x,x<w){w-=x;do{j[i++]=p[E++]}while(--x);E=i-k,S=j}for(;w>2;)j[i++]=S[E++],j[i++]=S[E++],j[i++]=S[E++],w-=3;w&&(j[i++]=S[E++],w>1&&(j[i++]=S[E++]))}else{E=i-k;do{j[i++]=j[E++],j[i++]=j[E++],j[i++]=j[E++],w-=3}while(w>2);w&&(j[i++]=j[E++],w>1&&(j[i++]=j[E++]))}break}}break}}while(r<o&&i<l);r-=w=h>>3,f&=(1<<(h-=w<<3))-1,e.next_in=r,e.next_out=i,e.avail_in=r<o?o-r+5:5-(r-o),e.avail_out=i<l?l-i+257:257-(i-l),n.hold=f,n.bits=h}},7823:function(e,t,n){"use strict";var r=n(9187),o=n(3693),i=n(8464),a=n(9365),l=n(6446),s=-2,c=12,u=30;function d(e){return(e>>>24&255)+(e>>>8&65280)+((65280&e)<<8)+((255&e)<<24)}function p(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new r.Buf16(320),this.work=new r.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function f(e){var t;return e&&e.state?(t=e.state,e.total_in=e.total_out=t.total=0,e.msg="",t.wrap&&(e.adler=1&t.wrap),t.mode=1,t.last=0,t.havedict=0,t.dmax=32768,t.head=null,t.hold=0,t.bits=0,t.lencode=t.lendyn=new r.Buf32(852),t.distcode=t.distdyn=new r.Buf32(592),t.sane=1,t.back=-1,0):s}function h(e){var t;return e&&e.state?((t=e.state).wsize=0,t.whave=0,t.wnext=0,f(e)):s}function m(e,t){var n,r;return e&&e.state?(r=e.state,t<0?(n=0,t=-t):(n=1+(t>>4),t<48&&(t&=15)),t&&(t<8||t>15)?s:(null!==r.window&&r.wbits!==t&&(r.window=null),r.wrap=n,r.wbits=t,h(e))):s}function g(e,t){var n,r;return e?(r=new p,e.state=r,r.window=null,0!==(n=m(e,t))&&(e.state=null),n):s}var v,b,y=!0;function x(e){if(y){var t;for(v=new r.Buf32(512),b=new r.Buf32(32),t=0;t<144;)e.lens[t++]=8;for(;t<256;)e.lens[t++]=9;for(;t<280;)e.lens[t++]=7;for(;t<288;)e.lens[t++]=8;for(l(1,e.lens,0,288,v,0,e.work,{bits:9}),t=0;t<32;)e.lens[t++]=5;l(2,e.lens,0,32,b,0,e.work,{bits:5}),y=!1}e.lencode=v,e.lenbits=9,e.distcode=b,e.distbits=5}function w(e,t,n,o){var i,a=e.state;return null===a.window&&(a.wsize=1<<a.wbits,a.wnext=0,a.whave=0,a.window=new r.Buf8(a.wsize)),o>=a.wsize?(r.arraySet(a.window,t,n-a.wsize,a.wsize,0),a.wnext=0,a.whave=a.wsize):((i=a.wsize-a.wnext)>o&&(i=o),r.arraySet(a.window,t,n-o,i,a.wnext),(o-=i)?(r.arraySet(a.window,t,n-o,o,0),a.wnext=o,a.whave=a.wsize):(a.wnext+=i,a.wnext===a.wsize&&(a.wnext=0),a.whave<a.wsize&&(a.whave+=i))),0}t.inflateReset=h,t.inflateReset2=m,t.inflateResetKeep=f,t.inflateInit=function(e){return g(e,15)},t.inflateInit2=g,t.inflate=function(e,t){var n,p,f,h,m,g,v,b,y,k,E,S,_,j,C,O,M,I,P,T,D,L,A,Z,z=0,R=new r.Buf8(4),N=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!e||!e.state||!e.output||!e.input&&0!==e.avail_in)return s;(n=e.state).mode===c&&(n.mode=13),m=e.next_out,f=e.output,v=e.avail_out,h=e.next_in,p=e.input,g=e.avail_in,b=n.hold,y=n.bits,k=g,E=v,L=0;e:for(;;)switch(n.mode){case 1:if(0===n.wrap){n.mode=13;break}for(;y<16;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}if(2&n.wrap&&35615===b){n.check=0,R[0]=255&b,R[1]=b>>>8&255,n.check=i(n.check,R,2,0),b=0,y=0,n.mode=2;break}if(n.flags=0,n.head&&(n.head.done=!1),!(1&n.wrap)||(((255&b)<<8)+(b>>8))%31){e.msg="incorrect header check",n.mode=u;break}if(8!=(15&b)){e.msg="unknown compression method",n.mode=u;break}if(y-=4,D=8+(15&(b>>>=4)),0===n.wbits)n.wbits=D;else if(D>n.wbits){e.msg="invalid window size",n.mode=u;break}n.dmax=1<<D,e.adler=n.check=1,n.mode=512&b?10:c,b=0,y=0;break;case 2:for(;y<16;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}if(n.flags=b,8!=(255&n.flags)){e.msg="unknown compression method",n.mode=u;break}if(57344&n.flags){e.msg="unknown header flags set",n.mode=u;break}n.head&&(n.head.text=b>>8&1),512&n.flags&&(R[0]=255&b,R[1]=b>>>8&255,n.check=i(n.check,R,2,0)),b=0,y=0,n.mode=3;case 3:for(;y<32;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}n.head&&(n.head.time=b),512&n.flags&&(R[0]=255&b,R[1]=b>>>8&255,R[2]=b>>>16&255,R[3]=b>>>24&255,n.check=i(n.check,R,4,0)),b=0,y=0,n.mode=4;case 4:for(;y<16;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}n.head&&(n.head.xflags=255&b,n.head.os=b>>8),512&n.flags&&(R[0]=255&b,R[1]=b>>>8&255,n.check=i(n.check,R,2,0)),b=0,y=0,n.mode=5;case 5:if(1024&n.flags){for(;y<16;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}n.length=b,n.head&&(n.head.extra_len=b),512&n.flags&&(R[0]=255&b,R[1]=b>>>8&255,n.check=i(n.check,R,2,0)),b=0,y=0}else n.head&&(n.head.extra=null);n.mode=6;case 6:if(1024&n.flags&&((S=n.length)>g&&(S=g),S&&(n.head&&(D=n.head.extra_len-n.length,n.head.extra||(n.head.extra=new Array(n.head.extra_len)),r.arraySet(n.head.extra,p,h,S,D)),512&n.flags&&(n.check=i(n.check,p,S,h)),g-=S,h+=S,n.length-=S),n.length))break e;n.length=0,n.mode=7;case 7:if(2048&n.flags){if(0===g)break e;S=0;do{D=p[h+S++],n.head&&D&&n.length<65536&&(n.head.name+=String.fromCharCode(D))}while(D&&S<g);if(512&n.flags&&(n.check=i(n.check,p,S,h)),g-=S,h+=S,D)break e}else n.head&&(n.head.name=null);n.length=0,n.mode=8;case 8:if(4096&n.flags){if(0===g)break e;S=0;do{D=p[h+S++],n.head&&D&&n.length<65536&&(n.head.comment+=String.fromCharCode(D))}while(D&&S<g);if(512&n.flags&&(n.check=i(n.check,p,S,h)),g-=S,h+=S,D)break e}else n.head&&(n.head.comment=null);n.mode=9;case 9:if(512&n.flags){for(;y<16;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}if(b!==(65535&n.check)){e.msg="header crc mismatch",n.mode=u;break}b=0,y=0}n.head&&(n.head.hcrc=n.flags>>9&1,n.head.done=!0),e.adler=n.check=0,n.mode=c;break;case 10:for(;y<32;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}e.adler=n.check=d(b),b=0,y=0,n.mode=11;case 11:if(0===n.havedict)return e.next_out=m,e.avail_out=v,e.next_in=h,e.avail_in=g,n.hold=b,n.bits=y,2;e.adler=n.check=1,n.mode=c;case c:if(5===t||6===t)break e;case 13:if(n.last){b>>>=7&y,y-=7&y,n.mode=27;break}for(;y<3;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}switch(n.last=1&b,y-=1,3&(b>>>=1)){case 0:n.mode=14;break;case 1:if(x(n),n.mode=20,6===t){b>>>=2,y-=2;break e}break;case 2:n.mode=17;break;case 3:e.msg="invalid block type",n.mode=u}b>>>=2,y-=2;break;case 14:for(b>>>=7&y,y-=7&y;y<32;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}if((65535&b)!=(b>>>16^65535)){e.msg="invalid stored block lengths",n.mode=u;break}if(n.length=65535&b,b=0,y=0,n.mode=15,6===t)break e;case 15:n.mode=16;case 16:if(S=n.length){if(S>g&&(S=g),S>v&&(S=v),0===S)break e;r.arraySet(f,p,h,S,m),g-=S,h+=S,v-=S,m+=S,n.length-=S;break}n.mode=c;break;case 17:for(;y<14;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}if(n.nlen=257+(31&b),b>>>=5,y-=5,n.ndist=1+(31&b),b>>>=5,y-=5,n.ncode=4+(15&b),b>>>=4,y-=4,n.nlen>286||n.ndist>30){e.msg="too many length or distance symbols",n.mode=u;break}n.have=0,n.mode=18;case 18:for(;n.have<n.ncode;){for(;y<3;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}n.lens[N[n.have++]]=7&b,b>>>=3,y-=3}for(;n.have<19;)n.lens[N[n.have++]]=0;if(n.lencode=n.lendyn,n.lenbits=7,A={bits:n.lenbits},L=l(0,n.lens,0,19,n.lencode,0,n.work,A),n.lenbits=A.bits,L){e.msg="invalid code lengths set",n.mode=u;break}n.have=0,n.mode=19;case 19:for(;n.have<n.nlen+n.ndist;){for(;O=(z=n.lencode[b&(1<<n.lenbits)-1])>>>16&255,M=65535&z,!((C=z>>>24)<=y);){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}if(M<16)b>>>=C,y-=C,n.lens[n.have++]=M;else{if(16===M){for(Z=C+2;y<Z;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}if(b>>>=C,y-=C,0===n.have){e.msg="invalid bit length repeat",n.mode=u;break}D=n.lens[n.have-1],S=3+(3&b),b>>>=2,y-=2}else if(17===M){for(Z=C+3;y<Z;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}y-=C,D=0,S=3+(7&(b>>>=C)),b>>>=3,y-=3}else{for(Z=C+7;y<Z;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}y-=C,D=0,S=11+(127&(b>>>=C)),b>>>=7,y-=7}if(n.have+S>n.nlen+n.ndist){e.msg="invalid bit length repeat",n.mode=u;break}for(;S--;)n.lens[n.have++]=D}}if(n.mode===u)break;if(0===n.lens[256]){e.msg="invalid code -- missing end-of-block",n.mode=u;break}if(n.lenbits=9,A={bits:n.lenbits},L=l(1,n.lens,0,n.nlen,n.lencode,0,n.work,A),n.lenbits=A.bits,L){e.msg="invalid literal/lengths set",n.mode=u;break}if(n.distbits=6,n.distcode=n.distdyn,A={bits:n.distbits},L=l(2,n.lens,n.nlen,n.ndist,n.distcode,0,n.work,A),n.distbits=A.bits,L){e.msg="invalid distances set",n.mode=u;break}if(n.mode=20,6===t)break e;case 20:n.mode=21;case 21:if(g>=6&&v>=258){e.next_out=m,e.avail_out=v,e.next_in=h,e.avail_in=g,n.hold=b,n.bits=y,a(e,E),m=e.next_out,f=e.output,v=e.avail_out,h=e.next_in,p=e.input,g=e.avail_in,b=n.hold,y=n.bits,n.mode===c&&(n.back=-1);break}for(n.back=0;O=(z=n.lencode[b&(1<<n.lenbits)-1])>>>16&255,M=65535&z,!((C=z>>>24)<=y);){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}if(O&&0==(240&O)){for(I=C,P=O,T=M;O=(z=n.lencode[T+((b&(1<<I+P)-1)>>I)])>>>16&255,M=65535&z,!(I+(C=z>>>24)<=y);){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}b>>>=I,y-=I,n.back+=I}if(b>>>=C,y-=C,n.back+=C,n.length=M,0===O){n.mode=26;break}if(32&O){n.back=-1,n.mode=c;break}if(64&O){e.msg="invalid literal/length code",n.mode=u;break}n.extra=15&O,n.mode=22;case 22:if(n.extra){for(Z=n.extra;y<Z;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}n.length+=b&(1<<n.extra)-1,b>>>=n.extra,y-=n.extra,n.back+=n.extra}n.was=n.length,n.mode=23;case 23:for(;O=(z=n.distcode[b&(1<<n.distbits)-1])>>>16&255,M=65535&z,!((C=z>>>24)<=y);){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}if(0==(240&O)){for(I=C,P=O,T=M;O=(z=n.distcode[T+((b&(1<<I+P)-1)>>I)])>>>16&255,M=65535&z,!(I+(C=z>>>24)<=y);){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}b>>>=I,y-=I,n.back+=I}if(b>>>=C,y-=C,n.back+=C,64&O){e.msg="invalid distance code",n.mode=u;break}n.offset=M,n.extra=15&O,n.mode=24;case 24:if(n.extra){for(Z=n.extra;y<Z;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}n.offset+=b&(1<<n.extra)-1,b>>>=n.extra,y-=n.extra,n.back+=n.extra}if(n.offset>n.dmax){e.msg="invalid distance too far back",n.mode=u;break}n.mode=25;case 25:if(0===v)break e;if(S=E-v,n.offset>S){if((S=n.offset-S)>n.whave&&n.sane){e.msg="invalid distance too far back",n.mode=u;break}S>n.wnext?(S-=n.wnext,_=n.wsize-S):_=n.wnext-S,S>n.length&&(S=n.length),j=n.window}else j=f,_=m-n.offset,S=n.length;S>v&&(S=v),v-=S,n.length-=S;do{f[m++]=j[_++]}while(--S);0===n.length&&(n.mode=21);break;case 26:if(0===v)break e;f[m++]=n.length,v--,n.mode=21;break;case 27:if(n.wrap){for(;y<32;){if(0===g)break e;g--,b|=p[h++]<<y,y+=8}if(E-=v,e.total_out+=E,n.total+=E,E&&(e.adler=n.check=n.flags?i(n.check,f,E,m-E):o(n.check,f,E,m-E)),E=v,(n.flags?b:d(b))!==n.check){e.msg="incorrect data check",n.mode=u;break}b=0,y=0}n.mode=28;case 28:if(n.wrap&&n.flags){for(;y<32;){if(0===g)break e;g--,b+=p[h++]<<y,y+=8}if(b!==(4294967295&n.total)){e.msg="incorrect length check",n.mode=u;break}b=0,y=0}n.mode=29;case 29:L=1;break e;case u:L=-3;break e;case 31:return-4;default:return s}return e.next_out=m,e.avail_out=v,e.next_in=h,e.avail_in=g,n.hold=b,n.bits=y,(n.wsize||E!==e.avail_out&&n.mode<u&&(n.mode<27||4!==t))&&w(e,e.output,e.next_out,E-e.avail_out)?(n.mode=31,-4):(k-=e.avail_in,E-=e.avail_out,e.total_in+=k,e.total_out+=E,n.total+=E,n.wrap&&E&&(e.adler=n.check=n.flags?i(n.check,f,E,e.next_out-E):o(n.check,f,E,e.next_out-E)),e.data_type=n.bits+(n.last?64:0)+(n.mode===c?128:0)+(20===n.mode||15===n.mode?256:0),(0===k&&0===E||4===t)&&0===L&&(L=-5),L)},t.inflateEnd=function(e){if(!e||!e.state)return s;var t=e.state;return t.window&&(t.window=null),e.state=null,0},t.inflateGetHeader=function(e,t){var n;return e&&e.state?0==(2&(n=e.state).wrap)?s:(n.head=t,t.done=!1,0):s},t.inflateSetDictionary=function(e,t){var n,r=t.length;return e&&e.state?0!==(n=e.state).wrap&&11!==n.mode?s:11===n.mode&&o(1,t,r,0)!==n.check?-3:w(e,t,r,r)?(n.mode=31,-4):(n.havedict=1,0):s},t.inflateInfo="pako inflate (from Nodeca project)"},6446:function(e,t,n){"use strict";var r=n(9187),o=15,i=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],a=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],l=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],s=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];e.exports=function(e,t,n,c,u,d,p,f){var h,m,g,v,b,y,x,w,k,E=f.bits,S=0,_=0,j=0,C=0,O=0,M=0,I=0,P=0,T=0,D=0,L=null,A=0,Z=new r.Buf16(16),z=new r.Buf16(16),R=null,N=0;for(S=0;S<=o;S++)Z[S]=0;for(_=0;_<c;_++)Z[t[n+_]]++;for(O=E,C=o;C>=1&&0===Z[C];C--);if(O>C&&(O=C),0===C)return u[d++]=20971520,u[d++]=20971520,f.bits=1,0;for(j=1;j<C&&0===Z[j];j++);for(O<j&&(O=j),P=1,S=1;S<=o;S++)if(P<<=1,(P-=Z[S])<0)return-1;if(P>0&&(0===e||1!==C))return-1;for(z[1]=0,S=1;S<o;S++)z[S+1]=z[S]+Z[S];for(_=0;_<c;_++)0!==t[n+_]&&(p[z[t[n+_]]++]=_);if(0===e?(L=R=p,y=19):1===e?(L=i,A-=257,R=a,N-=257,y=256):(L=l,R=s,y=-1),D=0,_=0,S=j,b=d,M=O,I=0,g=-1,v=(T=1<<O)-1,1===e&&T>852||2===e&&T>592)return 1;for(;;){x=S-I,p[_]<y?(w=0,k=p[_]):p[_]>y?(w=R[N+p[_]],k=L[A+p[_]]):(w=96,k=0),h=1<<S-I,j=m=1<<M;do{u[b+(D>>I)+(m-=h)]=x<<24|w<<16|k|0}while(0!==m);for(h=1<<S-1;D&h;)h>>=1;if(0!==h?(D&=h-1,D+=h):D=0,_++,0==--Z[S]){if(S===C)break;S=t[n+p[_]]}if(S>O&&(D&v)!==g){for(0===I&&(I=O),b+=j,P=1<<(M=S-I);M+I<C&&!((P-=Z[M+I])<=0);)M++,P<<=1;if(T+=1<<M,1===e&&T>852||2===e&&T>592)return 1;u[g=D&v]=O<<24|M<<16|b-d|0}}return 0!==D&&(u[b+D]=S-I<<24|64<<16|0),f.bits=O,0}},5604:function(e){"use strict";e.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},8676:function(e,t,n){"use strict";var r=n(9187);function o(e){for(var t=e.length;--t>=0;)e[t]=0}var i=256,a=286,l=30,s=15,c=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],u=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],d=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],p=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],f=new Array(576);o(f);var h=new Array(60);o(h);var m=new Array(512);o(m);var g=new Array(256);o(g);var v=new Array(29);o(v);var b,y,x,w=new Array(l);function k(e,t,n,r,o){this.static_tree=e,this.extra_bits=t,this.extra_base=n,this.elems=r,this.max_length=o,this.has_stree=e&&e.length}function E(e,t){this.dyn_tree=e,this.max_code=0,this.stat_desc=t}function S(e){return e<256?m[e]:m[256+(e>>>7)]}function _(e,t){e.pending_buf[e.pending++]=255&t,e.pending_buf[e.pending++]=t>>>8&255}function j(e,t,n){e.bi_valid>16-n?(e.bi_buf|=t<<e.bi_valid&65535,_(e,e.bi_buf),e.bi_buf=t>>16-e.bi_valid,e.bi_valid+=n-16):(e.bi_buf|=t<<e.bi_valid&65535,e.bi_valid+=n)}function C(e,t,n){j(e,n[2*t],n[2*t+1])}function O(e,t){var n=0;do{n|=1&e,e>>>=1,n<<=1}while(--t>0);return n>>>1}function M(e,t,n){var r,o,i=new Array(16),a=0;for(r=1;r<=s;r++)i[r]=a=a+n[r-1]<<1;for(o=0;o<=t;o++){var l=e[2*o+1];0!==l&&(e[2*o]=O(i[l]++,l))}}function I(e){var t;for(t=0;t<a;t++)e.dyn_ltree[2*t]=0;for(t=0;t<l;t++)e.dyn_dtree[2*t]=0;for(t=0;t<19;t++)e.bl_tree[2*t]=0;e.dyn_ltree[512]=1,e.opt_len=e.static_len=0,e.last_lit=e.matches=0}function P(e){e.bi_valid>8?_(e,e.bi_buf):e.bi_valid>0&&(e.pending_buf[e.pending++]=e.bi_buf),e.bi_buf=0,e.bi_valid=0}function T(e,t,n,r){var o=2*t,i=2*n;return e[o]<e[i]||e[o]===e[i]&&r[t]<=r[n]}function D(e,t,n){for(var r=e.heap[n],o=n<<1;o<=e.heap_len&&(o<e.heap_len&&T(t,e.heap[o+1],e.heap[o],e.depth)&&o++,!T(t,r,e.heap[o],e.depth));)e.heap[n]=e.heap[o],n=o,o<<=1;e.heap[n]=r}function L(e,t,n){var r,o,a,l,s=0;if(0!==e.last_lit)do{r=e.pending_buf[e.d_buf+2*s]<<8|e.pending_buf[e.d_buf+2*s+1],o=e.pending_buf[e.l_buf+s],s++,0===r?C(e,o,t):(C(e,(a=g[o])+i+1,t),0!==(l=c[a])&&j(e,o-=v[a],l),C(e,a=S(--r),n),0!==(l=u[a])&&j(e,r-=w[a],l))}while(s<e.last_lit);C(e,256,t)}function A(e,t){var n,r,o,i=t.dyn_tree,a=t.stat_desc.static_tree,l=t.stat_desc.has_stree,c=t.stat_desc.elems,u=-1;for(e.heap_len=0,e.heap_max=573,n=0;n<c;n++)0!==i[2*n]?(e.heap[++e.heap_len]=u=n,e.depth[n]=0):i[2*n+1]=0;for(;e.heap_len<2;)i[2*(o=e.heap[++e.heap_len]=u<2?++u:0)]=1,e.depth[o]=0,e.opt_len--,l&&(e.static_len-=a[2*o+1]);for(t.max_code=u,n=e.heap_len>>1;n>=1;n--)D(e,i,n);o=c;do{n=e.heap[1],e.heap[1]=e.heap[e.heap_len--],D(e,i,1),r=e.heap[1],e.heap[--e.heap_max]=n,e.heap[--e.heap_max]=r,i[2*o]=i[2*n]+i[2*r],e.depth[o]=(e.depth[n]>=e.depth[r]?e.depth[n]:e.depth[r])+1,i[2*n+1]=i[2*r+1]=o,e.heap[1]=o++,D(e,i,1)}while(e.heap_len>=2);e.heap[--e.heap_max]=e.heap[1],function(e,t){var n,r,o,i,a,l,c=t.dyn_tree,u=t.max_code,d=t.stat_desc.static_tree,p=t.stat_desc.has_stree,f=t.stat_desc.extra_bits,h=t.stat_desc.extra_base,m=t.stat_desc.max_length,g=0;for(i=0;i<=s;i++)e.bl_count[i]=0;for(c[2*e.heap[e.heap_max]+1]=0,n=e.heap_max+1;n<573;n++)(i=c[2*c[2*(r=e.heap[n])+1]+1]+1)>m&&(i=m,g++),c[2*r+1]=i,r>u||(e.bl_count[i]++,a=0,r>=h&&(a=f[r-h]),l=c[2*r],e.opt_len+=l*(i+a),p&&(e.static_len+=l*(d[2*r+1]+a)));if(0!==g){do{for(i=m-1;0===e.bl_count[i];)i--;e.bl_count[i]--,e.bl_count[i+1]+=2,e.bl_count[m]--,g-=2}while(g>0);for(i=m;0!==i;i--)for(r=e.bl_count[i];0!==r;)(o=e.heap[--n])>u||(c[2*o+1]!==i&&(e.opt_len+=(i-c[2*o+1])*c[2*o],c[2*o+1]=i),r--)}}(e,t),M(i,u,e.bl_count)}function Z(e,t,n){var r,o,i=-1,a=t[1],l=0,s=7,c=4;for(0===a&&(s=138,c=3),t[2*(n+1)+1]=65535,r=0;r<=n;r++)o=a,a=t[2*(r+1)+1],++l<s&&o===a||(l<c?e.bl_tree[2*o]+=l:0!==o?(o!==i&&e.bl_tree[2*o]++,e.bl_tree[32]++):l<=10?e.bl_tree[34]++:e.bl_tree[36]++,l=0,i=o,0===a?(s=138,c=3):o===a?(s=6,c=3):(s=7,c=4))}function z(e,t,n){var r,o,i=-1,a=t[1],l=0,s=7,c=4;for(0===a&&(s=138,c=3),r=0;r<=n;r++)if(o=a,a=t[2*(r+1)+1],!(++l<s&&o===a)){if(l<c)do{C(e,o,e.bl_tree)}while(0!=--l);else 0!==o?(o!==i&&(C(e,o,e.bl_tree),l--),C(e,16,e.bl_tree),j(e,l-3,2)):l<=10?(C(e,17,e.bl_tree),j(e,l-3,3)):(C(e,18,e.bl_tree),j(e,l-11,7));l=0,i=o,0===a?(s=138,c=3):o===a?(s=6,c=3):(s=7,c=4)}}o(w);var R=!1;function N(e,t,n,o){j(e,0+(o?1:0),3),function(e,t,n,o){P(e),o&&(_(e,n),_(e,~n)),r.arraySet(e.pending_buf,e.window,t,n,e.pending),e.pending+=n}(e,t,n,!0)}t._tr_init=function(e){R||(!function(){var e,t,n,r,o,i=new Array(16);for(n=0,r=0;r<28;r++)for(v[r]=n,e=0;e<1<<c[r];e++)g[n++]=r;for(g[n-1]=r,o=0,r=0;r<16;r++)for(w[r]=o,e=0;e<1<<u[r];e++)m[o++]=r;for(o>>=7;r<l;r++)for(w[r]=o<<7,e=0;e<1<<u[r]-7;e++)m[256+o++]=r;for(t=0;t<=s;t++)i[t]=0;for(e=0;e<=143;)f[2*e+1]=8,e++,i[8]++;for(;e<=255;)f[2*e+1]=9,e++,i[9]++;for(;e<=279;)f[2*e+1]=7,e++,i[7]++;for(;e<=287;)f[2*e+1]=8,e++,i[8]++;for(M(f,287,i),e=0;e<l;e++)h[2*e+1]=5,h[2*e]=O(e,5);b=new k(f,c,257,a,s),y=new k(h,u,0,l,s),x=new k(new Array(0),d,0,19,7)}(),R=!0),e.l_desc=new E(e.dyn_ltree,b),e.d_desc=new E(e.dyn_dtree,y),e.bl_desc=new E(e.bl_tree,x),e.bi_buf=0,e.bi_valid=0,I(e)},t._tr_stored_block=N,t._tr_flush_block=function(e,t,n,r){var o,a,l=0;e.level>0?(2===e.strm.data_type&&(e.strm.data_type=function(e){var t,n=4093624447;for(t=0;t<=31;t++,n>>>=1)if(1&n&&0!==e.dyn_ltree[2*t])return 0;if(0!==e.dyn_ltree[18]||0!==e.dyn_ltree[20]||0!==e.dyn_ltree[26])return 1;for(t=32;t<i;t++)if(0!==e.dyn_ltree[2*t])return 1;return 0}(e)),A(e,e.l_desc),A(e,e.d_desc),l=function(e){var t;for(Z(e,e.dyn_ltree,e.l_desc.max_code),Z(e,e.dyn_dtree,e.d_desc.max_code),A(e,e.bl_desc),t=18;t>=3&&0===e.bl_tree[2*p[t]+1];t--);return e.opt_len+=3*(t+1)+5+5+4,t}(e),o=e.opt_len+3+7>>>3,(a=e.static_len+3+7>>>3)<=o&&(o=a)):o=a=n+5,n+4<=o&&-1!==t?N(e,t,n,r):4===e.strategy||a===o?(j(e,2+(r?1:0),3),L(e,f,h)):(j(e,4+(r?1:0),3),function(e,t,n,r){var o;for(j(e,t-257,5),j(e,n-1,5),j(e,r-4,4),o=0;o<r;o++)j(e,e.bl_tree[2*p[o]+1],3);z(e,e.dyn_ltree,t-1),z(e,e.dyn_dtree,n-1)}(e,e.l_desc.max_code+1,e.d_desc.max_code+1,l+1),L(e,e.dyn_ltree,e.dyn_dtree)),I(e),r&&P(e)},t._tr_tally=function(e,t,n){return e.pending_buf[e.d_buf+2*e.last_lit]=t>>>8&255,e.pending_buf[e.d_buf+2*e.last_lit+1]=255&t,e.pending_buf[e.l_buf+e.last_lit]=255&n,e.last_lit++,0===t?e.dyn_ltree[2*n]++:(e.matches++,t--,e.dyn_ltree[2*(g[n]+i+1)]++,e.dyn_dtree[2*S(t)]++),e.last_lit===e.lit_bufsize-1},t._tr_align=function(e){j(e,2,3),C(e,256,f),function(e){16===e.bi_valid?(_(e,e.bi_buf),e.bi_buf=0,e.bi_valid=0):e.bi_valid>=8&&(e.pending_buf[e.pending++]=255&e.bi_buf,e.bi_buf>>=8,e.bi_valid-=8)}(e)}},249:function(e){"use strict";e.exports=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},9066:function(e){e.exports=function(e){e.data&&e.name&&(e=e.data);for(var t=!0,n="",r="",o=0;o<e.length;o++){var i=e[o];if(t)i?r+=String.fromCharCode(i):t=!1;else{if(!i)throw new Error("Invalid NULL character found. 0x00 character is not permitted in tEXt content");n+=String.fromCharCode(i)}}return{keyword:r,text:n}}},9686:function(e){e.exports=function(e,t){if(e=String(e),t=String(t),!/^[\x00-\xFF]+$/.test(e)||!/^[\x00-\xFF]+$/.test(t))throw new Error("Only Latin-1 characters are permitted in PNG tEXt chunks. You might want to consider base64 encoding and/or zEXt compression");if(e.length>=80)throw new Error('Keyword "'+e+'" is longer than the 79-character limit imposed by the PNG specification');for(var n,r=e.length+t.length+1,o=new Uint8Array(r),i=0,a=0;a<e.length;a++){if(!(n=e.charCodeAt(a)))throw new Error("0x00 character is not permitted in tEXt keywords");o[i++]=n}o[i++]=0;for(var l=0;l<t.length;l++){if(!(n=t.charCodeAt(l)))throw new Error("0x00 character is not permitted in tEXt content");o[i++]=n}return{name:"tEXt",data:o}}},1194:function(e,t,n){t.encode=n(9686),t.decode=n(9066)},3434:function(e,t,n){var r=n(5714),o=n(6233);e.exports=function(e){var t,n=8,s=n;for(t=0;t<e.length;t++)n+=e[t].data.length,n+=12;var c=new Uint8Array(n);for(c[0]=137,c[1]=80,c[2]=78,c[3]=71,c[4]=13,c[5]=10,c[6]=26,c[7]=10,t=0;t<e.length;t++){var u=e[t],d=u.name,p=u.data,f=p.length,h=[d.charCodeAt(0),d.charCodeAt(1),d.charCodeAt(2),d.charCodeAt(3)];l[0]=f,c[s++]=i[3],c[s++]=i[2],c[s++]=i[1],c[s++]=i[0],c[s++]=h[0],c[s++]=h[1],c[s++]=h[2],c[s++]=h[3];for(var m=0;m<f;)c[s++]=p[m++];var g=h.concat(r(p)),v=o.buf(g);a[0]=v,c[s++]=i[3],c[s++]=i[2],c[s++]=i[1],c[s++]=i[0]}return c};var i=new Uint8Array(4),a=new Int32Array(i.buffer),l=new Uint32Array(i.buffer)},2983:function(e,t,n){var r=n(6233);e.exports=function(e){if(137!==e[0])throw new Error("Invalid .png file header");if(80!==e[1])throw new Error("Invalid .png file header");if(78!==e[2])throw new Error("Invalid .png file header");if(71!==e[3])throw new Error("Invalid .png file header");if(13!==e[4])throw new Error("Invalid .png file header: possibly caused by DOS-Unix line ending conversion?");if(10!==e[5])throw new Error("Invalid .png file header: possibly caused by DOS-Unix line ending conversion?");if(26!==e[6])throw new Error("Invalid .png file header");if(10!==e[7])throw new Error("Invalid .png file header: possibly caused by DOS-Unix line ending conversion?");var t=!1,n=[],l=8;for(;l<e.length;){o[3]=e[l++],o[2]=e[l++],o[1]=e[l++],o[0]=e[l++];var s=a[0]+4,c=new Uint8Array(s);c[0]=e[l++],c[1]=e[l++],c[2]=e[l++],c[3]=e[l++];var u=String.fromCharCode(c[0])+String.fromCharCode(c[1])+String.fromCharCode(c[2])+String.fromCharCode(c[3]);if(!n.length&&"IHDR"!==u)throw new Error("IHDR header missing");if("IEND"===u){t=!0,n.push({name:u,data:new Uint8Array(0)});break}for(var d=4;d<s;d++)c[d]=e[l++];o[3]=e[l++],o[2]=e[l++],o[1]=e[l++],o[0]=e[l++];var p=i[0];if(r.buf(c)!==p)throw new Error("CRC values for "+u+" header do not match, PNG file is likely corrupted");var f=new Uint8Array(c.buffer.slice(4));n.push({name:u,data:f})}if(!t)throw new Error(".png file ended prematurely: no IEND header was found");return n};var o=new Uint8Array(4),i=new Int32Array(o.buffer),a=new Uint32Array(o.buffer)},1493:function(e,t,n){"use strict";function r(e,t){return Math.pow(e[0]-t[0],2)+Math.pow(e[1]-t[1],2)}function o(e,t,n){const o=r(t,n);if(0===o)return r(e,t);let a=((e[0]-t[0])*(n[0]-t[0])+(e[1]-t[1])*(n[1]-t[1]))/o;return a=Math.max(0,Math.min(1,a)),r(e,i(t,n,a))}function i(e,t,n){return[e[0]+(t[0]-e[0])*n,e[1]+(t[1]-e[1])*n]}function a(e,t,n,o){const l=o||[];if(function(e,t){const n=e[t+0],r=e[t+1],o=e[t+2],i=e[t+3];let a=3*r[0]-2*n[0]-i[0];a*=a;let l=3*r[1]-2*n[1]-i[1];l*=l;let s=3*o[0]-2*i[0]-n[0];s*=s;let c=3*o[1]-2*i[1]-n[1];return c*=c,a<s&&(a=s),l<c&&(l=c),a+l}(e,t)<n){const n=e[t+0];if(l.length){(s=l[l.length-1],c=n,Math.sqrt(r(s,c)))>1&&l.push(n)}else l.push(n);l.push(e[t+3])}else{const r=.5,o=e[t+0],s=e[t+1],c=e[t+2],u=e[t+3],d=i(o,s,r),p=i(s,c,r),f=i(c,u,r),h=i(d,p,r),m=i(p,f,r),g=i(h,m,r);a([o,d,h,g],0,n,l),a([g,m,f,u],0,n,l)}var s,c;return l}function l(e,t){return s(e,0,e.length,t)}function s(e,t,n,r,i){const a=i||[],l=e[t],c=e[n-1];let u=0,d=1;for(let r=t+1;r<n-1;++r){const t=o(e[r],l,c);t>u&&(u=t,d=r)}return Math.sqrt(u)>r?(s(e,t,d+1,r,a),s(e,d,n,r,a)):(a.length||a.push(l),a.push(c)),a}function c(e,t=.15,n){const r=[],o=(e.length-1)/3;for(let n=0;n<o;n++){a(e,3*n,t,r)}return n&&n>0?s(r,0,r.length,n):r}n.d(t,{o:function(){return l},s:function(){return c}})},6094:function(e,t,n){"use strict";var r=n(9787),o=Symbol.for("react.element"),i=Symbol.for("react.fragment"),a=Object.prototype.hasOwnProperty,l=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s={key:!0,ref:!0,__self:!0,__source:!0};function c(e,t,n){var r,i={},c=null,u=null;for(r in void 0!==n&&(c=""+n),void 0!==t.key&&(c=""+t.key),void 0!==t.ref&&(u=t.ref),t)a.call(t,r)&&!s.hasOwnProperty(r)&&(i[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===i[r]&&(i[r]=t[r]);return{$$typeof:o,type:e,key:c,ref:u,props:i,_owner:l.current}}t.Fragment=i,t.jsx=c,t.jsxs=c},4512:function(e,t,n){"use strict";e.exports=n(6094)},8152:function(e,t,n){"use strict";function r(){return Math.floor(Math.random()*2**31)}n.d(t,{W:function(){return r},k:function(){return o}});class o{constructor(e){this.seed=e}next(){return this.seed?(2**31-1&(this.seed=Math.imul(48271,this.seed)))/2**31:Math.random()}}},8234:function(e,t,n){"use strict";function r(e,t,n){if(e&&e.length){const[r,o]=t,i=Math.PI/180*n,a=Math.cos(i),l=Math.sin(i);e.forEach((e=>{const[t,n]=e;e[0]=(t-r)*a-(n-o)*l+r,e[1]=(t-r)*l+(n-o)*a+o}))}}function o(e){const t=e[0],n=e[1];return Math.sqrt(Math.pow(t[0]-n[0],2)+Math.pow(t[1]-n[1],2))}function i(e,t){const n=t.hachureAngle+90;let o=t.hachureGap;o<0&&(o=4*t.strokeWidth),o=Math.max(o,.1);const i=[0,0];if(n)for(const t of e)r(t,i,n);const a=function(e,t){const n=[];for(const t of e){const e=[...t];e[0].join(",")!==e[e.length-1].join(",")&&e.push([e[0][0],e[0][1]]),e.length>2&&n.push(e)}const r=[];t=Math.max(t,.1);const o=[];for(const e of n)for(let t=0;t<e.length-1;t++){const n=e[t],r=e[t+1];if(n[1]!==r[1]){const e=Math.min(n[1],r[1]);o.push({ymin:e,ymax:Math.max(n[1],r[1]),x:e===n[1]?n[0]:r[0],islope:(r[0]-n[0])/(r[1]-n[1])})}}if(o.sort(((e,t)=>e.ymin<t.ymin?-1:e.ymin>t.ymin?1:e.x<t.x?-1:e.x>t.x?1:e.ymax===t.ymax?0:(e.ymax-t.ymax)/Math.abs(e.ymax-t.ymax))),!o.length)return r;let i=[],a=o[0].ymin;for(;i.length||o.length;){if(o.length){let e=-1;for(let t=0;t<o.length&&!(o[t].ymin>a);t++)e=t;o.splice(0,e+1).forEach((e=>{i.push({s:a,edge:e})}))}if(i=i.filter((e=>!(e.edge.ymax<=a))),i.sort(((e,t)=>e.edge.x===t.edge.x?0:(e.edge.x-t.edge.x)/Math.abs(e.edge.x-t.edge.x))),i.length>1)for(let e=0;e<i.length;e+=2){const t=e+1;if(t>=i.length)break;const n=i[e].edge,o=i[t].edge;r.push([[Math.round(n.x),a],[Math.round(o.x),a]])}a+=t,i.forEach((e=>{e.edge.x=e.edge.x+t*e.edge.islope}))}return r}(e,o);if(n){for(const t of e)r(t,i,-n);!function(e,t,n){const o=[];e.forEach((e=>o.push(...e))),r(o,t,n)}(a,i,-n)}return a}n.d(t,{Z:function(){return V}});class a{constructor(e){this.helper=e}fillPolygons(e,t){return this._fillPolygons(e,t)}_fillPolygons(e,t){const n=i(e,t);return{type:"fillSketch",ops:this.renderLines(n,t)}}renderLines(e,t){const n=[];for(const r of e)n.push(...this.helper.doubleLineOps(r[0][0],r[0][1],r[1][0],r[1][1],t));return n}}class l extends a{fillPolygons(e,t){let n=t.hachureGap;n<0&&(n=4*t.strokeWidth),n=Math.max(n,.1);const r=i(e,Object.assign({},t,{hachureGap:n})),a=Math.PI/180*t.hachureAngle,l=[],s=.5*n*Math.cos(a),c=.5*n*Math.sin(a);for(const[e,t]of r)o([e,t])&&l.push([[e[0]-s,e[1]+c],[...t]],[[e[0]+s,e[1]-c],[...t]]);return{type:"fillSketch",ops:this.renderLines(l,t)}}}class s extends a{fillPolygons(e,t){const n=this._fillPolygons(e,t),r=Object.assign({},t,{hachureAngle:t.hachureAngle+90}),o=this._fillPolygons(e,r);return n.ops=n.ops.concat(o.ops),n}}class c{constructor(e){this.helper=e}fillPolygons(e,t){const n=i(e,t=Object.assign({},t,{hachureAngle:0}));return this.dotsOnLines(n,t)}dotsOnLines(e,t){const n=[];let r=t.hachureGap;r<0&&(r=4*t.strokeWidth),r=Math.max(r,.1);let i=t.fillWeight;i<0&&(i=t.strokeWidth/2);const a=r/4;for(const l of e){const e=o(l),s=e/r,c=Math.ceil(s)-1,u=e-c*r,d=(l[0][0]+l[1][0])/2-r/4,p=Math.min(l[0][1],l[1][1]);for(let e=0;e<c;e++){const o=p+u+e*r,l=d-a+2*Math.random()*a,s=o-a+2*Math.random()*a,c=this.helper.ellipse(l,s,i,i,t);n.push(...c.ops)}}return{type:"fillSketch",ops:n}}}class u{constructor(e){this.helper=e}fillPolygons(e,t){const n=i(e,t);return{type:"fillSketch",ops:this.dashedLine(n,t)}}dashedLine(e,t){const n=t.dashOffset<0?t.hachureGap<0?4*t.strokeWidth:t.hachureGap:t.dashOffset,r=t.dashGap<0?t.hachureGap<0?4*t.strokeWidth:t.hachureGap:t.dashGap,i=[];return e.forEach((e=>{const a=o(e),l=Math.floor(a/(n+r)),s=(a+r-l*(n+r))/2;let c=e[0],u=e[1];c[0]>u[0]&&(c=e[1],u=e[0]);const d=Math.atan((u[1]-c[1])/(u[0]-c[0]));for(let e=0;e<l;e++){const o=e*(n+r),a=o+n,l=[c[0]+o*Math.cos(d)+s*Math.cos(d),c[1]+o*Math.sin(d)+s*Math.sin(d)],u=[c[0]+a*Math.cos(d)+s*Math.cos(d),c[1]+a*Math.sin(d)+s*Math.sin(d)];i.push(...this.helper.doubleLineOps(l[0],l[1],u[0],u[1],t))}})),i}}class d{constructor(e){this.helper=e}fillPolygons(e,t){const n=t.hachureGap<0?4*t.strokeWidth:t.hachureGap,r=t.zigzagOffset<0?n:t.zigzagOffset,o=i(e,t=Object.assign({},t,{hachureGap:n+r}));return{type:"fillSketch",ops:this.zigzagLines(o,r,t)}}zigzagLines(e,t,n){const r=[];return e.forEach((e=>{const i=o(e),a=Math.round(i/(2*t));let l=e[0],s=e[1];l[0]>s[0]&&(l=e[1],s=e[0]);const c=Math.atan((s[1]-l[1])/(s[0]-l[0]));for(let e=0;e<a;e++){const o=2*e*t,i=2*(e+1)*t,a=Math.sqrt(2*Math.pow(t,2)),s=[l[0]+o*Math.cos(c),l[1]+o*Math.sin(c)],u=[l[0]+i*Math.cos(c),l[1]+i*Math.sin(c)],d=[s[0]+a*Math.cos(c+Math.PI/4),s[1]+a*Math.sin(c+Math.PI/4)];r.push(...this.helper.doubleLineOps(s[0],s[1],d[0],d[1],n),...this.helper.doubleLineOps(d[0],d[1],u[0],u[1],n))}})),r}}const p={};var f=n(8152);const h={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0};function m(e,t){return e.type===t}function g(e){const t=[],n=function(e){const t=new Array;for(;""!==e;)if(e.match(/^([ \t\r\n,]+)/))e=e.substr(RegExp.$1.length);else if(e.match(/^([aAcChHlLmMqQsStTvVzZ])/))t[t.length]={type:0,text:RegExp.$1},e=e.substr(RegExp.$1.length);else{if(!e.match(/^(([-+]?[0-9]+(\.[0-9]*)?|[-+]?\.[0-9]+)([eE][-+]?[0-9]+)?)/))return[];t[t.length]={type:1,text:`${parseFloat(RegExp.$1)}`},e=e.substr(RegExp.$1.length)}return t[t.length]={type:2,text:""},t}(e);let r="BOD",o=0,i=n[o];for(;!m(i,2);){let a=0;const l=[];if("BOD"===r){if("M"!==i.text&&"m"!==i.text)return g("M0,0"+e);o++,a=h[i.text],r=i.text}else m(i,1)?a=h[r]:(o++,a=h[i.text],r=i.text);if(!(o+a<n.length))throw new Error("Path data ended short");for(let e=o;e<o+a;e++){const t=n[e];if(!m(t,1))throw new Error("Param not a number: "+r+","+t.text);l[l.length]=+t.text}if("number"!=typeof h[r])throw new Error("Bad segment: "+r);{const e={key:r,data:l};t.push(e),o+=a,i=n[o],"M"===r&&(r="L"),"m"===r&&(r="l")}}return t}function v(e){let t=0,n=0,r=0,o=0;const i=[];for(const{key:a,data:l}of e)switch(a){case"M":i.push({key:"M",data:[...l]}),[t,n]=l,[r,o]=l;break;case"m":t+=l[0],n+=l[1],i.push({key:"M",data:[t,n]}),r=t,o=n;break;case"L":i.push({key:"L",data:[...l]}),[t,n]=l;break;case"l":t+=l[0],n+=l[1],i.push({key:"L",data:[t,n]});break;case"C":i.push({key:"C",data:[...l]}),t=l[4],n=l[5];break;case"c":{const e=l.map(((e,r)=>r%2?e+n:e+t));i.push({key:"C",data:e}),t=e[4],n=e[5];break}case"Q":i.push({key:"Q",data:[...l]}),t=l[2],n=l[3];break;case"q":{const e=l.map(((e,r)=>r%2?e+n:e+t));i.push({key:"Q",data:e}),t=e[2],n=e[3];break}case"A":i.push({key:"A",data:[...l]}),t=l[5],n=l[6];break;case"a":t+=l[5],n+=l[6],i.push({key:"A",data:[l[0],l[1],l[2],l[3],l[4],t,n]});break;case"H":i.push({key:"H",data:[...l]}),t=l[0];break;case"h":t+=l[0],i.push({key:"H",data:[t]});break;case"V":i.push({key:"V",data:[...l]}),n=l[0];break;case"v":n+=l[0],i.push({key:"V",data:[n]});break;case"S":i.push({key:"S",data:[...l]}),t=l[2],n=l[3];break;case"s":{const e=l.map(((e,r)=>r%2?e+n:e+t));i.push({key:"S",data:e}),t=e[2],n=e[3];break}case"T":i.push({key:"T",data:[...l]}),t=l[0],n=l[1];break;case"t":t+=l[0],n+=l[1],i.push({key:"T",data:[t,n]});break;case"Z":case"z":i.push({key:"Z",data:[]}),t=r,n=o}return i}function b(e){const t=[];let n="",r=0,o=0,i=0,a=0,l=0,s=0;for(const{key:c,data:u}of e){switch(c){case"M":t.push({key:"M",data:[...u]}),[r,o]=u,[i,a]=u;break;case"C":t.push({key:"C",data:[...u]}),r=u[4],o=u[5],l=u[2],s=u[3];break;case"L":t.push({key:"L",data:[...u]}),[r,o]=u;break;case"H":r=u[0],t.push({key:"L",data:[r,o]});break;case"V":o=u[0],t.push({key:"L",data:[r,o]});break;case"S":{let e=0,i=0;"C"===n||"S"===n?(e=r+(r-l),i=o+(o-s)):(e=r,i=o),t.push({key:"C",data:[e,i,...u]}),l=u[0],s=u[1],r=u[2],o=u[3];break}case"T":{const[e,i]=u;let a=0,c=0;"Q"===n||"T"===n?(a=r+(r-l),c=o+(o-s)):(a=r,c=o);const d=r+2*(a-r)/3,p=o+2*(c-o)/3,f=e+2*(a-e)/3,h=i+2*(c-i)/3;t.push({key:"C",data:[d,p,f,h,e,i]}),l=a,s=c,r=e,o=i;break}case"Q":{const[e,n,i,a]=u,c=r+2*(e-r)/3,d=o+2*(n-o)/3,p=i+2*(e-i)/3,f=a+2*(n-a)/3;t.push({key:"C",data:[c,d,p,f,i,a]}),l=e,s=n,r=i,o=a;break}case"A":{const e=Math.abs(u[0]),n=Math.abs(u[1]),i=u[2],a=u[3],l=u[4],s=u[5],c=u[6];if(0===e||0===n)t.push({key:"C",data:[r,o,s,c,s,c]}),r=s,o=c;else if(r!==s||o!==c){x(r,o,s,c,e,n,i,a,l).forEach((function(e){t.push({key:"C",data:e})})),r=s,o=c}break}case"Z":t.push({key:"Z",data:[]}),r=i,o=a}n=c}return t}function y(e,t,n){return[e*Math.cos(n)-t*Math.sin(n),e*Math.sin(n)+t*Math.cos(n)]}function x(e,t,n,r,o,i,a,l,s,c){const u=(d=a,Math.PI*d/180);var d;let p=[],f=0,h=0,m=0,g=0;if(c)[f,h,m,g]=c;else{[e,t]=y(e,t,-u),[n,r]=y(n,r,-u);const a=(e-n)/2,c=(t-r)/2;let d=a*a/(o*o)+c*c/(i*i);d>1&&(d=Math.sqrt(d),o*=d,i*=d);const p=o*o,v=i*i,b=p*v-p*c*c-v*a*a,x=p*c*c+v*a*a,w=(l===s?-1:1)*Math.sqrt(Math.abs(b/x));m=w*o*c/i+(e+n)/2,g=w*-i*a/o+(t+r)/2,f=Math.asin(parseFloat(((t-g)/i).toFixed(9))),h=Math.asin(parseFloat(((r-g)/i).toFixed(9))),e<m&&(f=Math.PI-f),n<m&&(h=Math.PI-h),f<0&&(f=2*Math.PI+f),h<0&&(h=2*Math.PI+h),s&&f>h&&(f-=2*Math.PI),!s&&h>f&&(h-=2*Math.PI)}let v=h-f;if(Math.abs(v)>120*Math.PI/180){const e=h,t=n,l=r;h=s&&h>f?f+120*Math.PI/180*1:f+120*Math.PI/180*-1,p=x(n=m+o*Math.cos(h),r=g+i*Math.sin(h),t,l,o,i,a,0,s,[h,e,m,g])}v=h-f;const b=Math.cos(f),w=Math.sin(f),k=Math.cos(h),E=Math.sin(h),S=Math.tan(v/4),_=4/3*o*S,j=4/3*i*S,C=[e,t],O=[e+_*w,t-j*b],M=[n+_*E,r-j*k],I=[n,r];if(O[0]=2*C[0]-O[0],O[1]=2*C[1]-O[1],c)return[O,M,I].concat(p);{p=[O,M,I].concat(p);const e=[];for(let t=0;t<p.length;t+=3){const n=y(p[t][0],p[t][1],u),r=y(p[t+1][0],p[t+1][1],u),o=y(p[t+2][0],p[t+2][1],u);e.push([n[0],n[1],r[0],r[1],o[0],o[1]])}return e}}const w={randOffset:function(e,t){return D(e,t)},randOffsetWithRange:function(e,t,n){return T(e,t,n)},ellipse:function(e,t,n,r,o){const i=j(n,r,o);return C(e,t,o,i).opset},doubleLineOps:function(e,t,n,r,o){return L(e,t,n,r,o,!0)}};function k(e,t,n,r,o){return{type:"path",ops:L(e,t,n,r,o)}}function E(e,t,n){const r=(e||[]).length;if(r>2){const o=[];for(let t=0;t<r-1;t++)o.push(...L(e[t][0],e[t][1],e[t+1][0],e[t+1][1],n));return t&&o.push(...L(e[r-1][0],e[r-1][1],e[0][0],e[0][1],n)),{type:"path",ops:o}}return 2===r?k(e[0][0],e[0][1],e[1][0],e[1][1],n):{type:"path",ops:[]}}function S(e,t,n,r,o){return function(e,t){return E(e,!0,t)}([[e,t],[e+n,t],[e+n,t+r],[e,t+r]],o)}function _(e,t){let n=Z(e,1*(1+.2*t.roughness),t);if(!t.disableMultiStroke){const r=Z(e,1.5*(1+.22*t.roughness),function(e){const t=Object.assign({},e);t.randomizer=void 0,e.seed&&(t.seed=e.seed+1);return t}(t));n=n.concat(r)}return{type:"path",ops:n}}function j(e,t,n){const r=Math.sqrt(2*Math.PI*Math.sqrt((Math.pow(e/2,2)+Math.pow(t/2,2))/2)),o=Math.ceil(Math.max(n.curveStepCount,n.curveStepCount/Math.sqrt(200)*r)),i=2*Math.PI/o;let a=Math.abs(e/2),l=Math.abs(t/2);const s=1-n.curveFitting;return a+=D(a*s,n),l+=D(l*s,n),{increment:i,rx:a,ry:l}}function C(e,t,n,r){const[o,i]=R(r.increment,e,t,r.rx,r.ry,1,r.increment*T(.1,T(.4,1,n),n),n);let a=z(o,null,n);if(!n.disableMultiStroke&&0!==n.roughness){const[o]=R(r.increment,e,t,r.rx,r.ry,1.5,0,n),i=z(o,null,n);a=a.concat(i)}return{estimatedPoints:i,opset:{type:"path",ops:a}}}function O(e,t,n,r,o,i,a,l,s){const c=e,u=t;let d=Math.abs(n/2),p=Math.abs(r/2);d+=D(.01*d,s),p+=D(.01*p,s);let f=o,h=i;for(;f<0;)f+=2*Math.PI,h+=2*Math.PI;h-f>2*Math.PI&&(f=0,h=2*Math.PI);const m=2*Math.PI/s.curveStepCount,g=Math.min(m/2,(h-f)/2),v=N(g,c,u,d,p,f,h,1,s);if(!s.disableMultiStroke){const e=N(g,c,u,d,p,f,h,1.5,s);v.push(...e)}return a&&(l?v.push(...L(c,u,c+d*Math.cos(f),u+p*Math.sin(f),s),...L(c,u,c+d*Math.cos(h),u+p*Math.sin(h),s)):v.push({op:"lineTo",data:[c,u]},{op:"lineTo",data:[c+d*Math.cos(f),u+p*Math.sin(f)]})),{type:"path",ops:v}}function M(e,t){const n=[];for(const r of e)if(r.length){const e=t.maxRandomnessOffset||0,o=r.length;if(o>2){n.push({op:"move",data:[r[0][0]+D(e,t),r[0][1]+D(e,t)]});for(let i=1;i<o;i++)n.push({op:"lineTo",data:[r[i][0]+D(e,t),r[i][1]+D(e,t)]})}}return{type:"fillPath",ops:n}}function I(e,t){return function(e,t){let n=e.fillStyle||"hachure";if(!p[n])switch(n){case"zigzag":p[n]||(p[n]=new l(t));break;case"cross-hatch":p[n]||(p[n]=new s(t));break;case"dots":p[n]||(p[n]=new c(t));break;case"dashed":p[n]||(p[n]=new u(t));break;case"zigzag-line":p[n]||(p[n]=new d(t));break;default:n="hachure",p[n]||(p[n]=new a(t))}return p[n]}(t,w).fillPolygons(e,t)}function P(e){return e.randomizer||(e.randomizer=new f.k(e.seed||0)),e.randomizer.next()}function T(e,t,n,r=1){return n.roughness*r*(P(n)*(t-e)+e)}function D(e,t,n=1){return T(-e,e,t,n)}function L(e,t,n,r,o,i=!1){const a=i?o.disableMultiStrokeFill:o.disableMultiStroke,l=A(e,t,n,r,o,!0,!1);if(a)return l;const s=A(e,t,n,r,o,!0,!0);return l.concat(s)}function A(e,t,n,r,o,i,a){const l=Math.pow(e-n,2)+Math.pow(t-r,2),s=Math.sqrt(l);let c=1;c=s<200?1:s>500?.4:-.0016668*s+1.233334;let u=o.maxRandomnessOffset||0;u*u*100>l&&(u=s/10);const d=u/2,p=.2+.2*P(o);let f=o.bowing*o.maxRandomnessOffset*(r-t)/200,h=o.bowing*o.maxRandomnessOffset*(e-n)/200;f=D(f,o,c),h=D(h,o,c);const m=[],g=()=>D(d,o,c),v=()=>D(u,o,c),b=o.preserveVertices;return i&&(a?m.push({op:"move",data:[e+(b?0:g()),t+(b?0:g())]}):m.push({op:"move",data:[e+(b?0:D(u,o,c)),t+(b?0:D(u,o,c))]})),a?m.push({op:"bcurveTo",data:[f+e+(n-e)*p+g(),h+t+(r-t)*p+g(),f+e+2*(n-e)*p+g(),h+t+2*(r-t)*p+g(),n+(b?0:g()),r+(b?0:g())]}):m.push({op:"bcurveTo",data:[f+e+(n-e)*p+v(),h+t+(r-t)*p+v(),f+e+2*(n-e)*p+v(),h+t+2*(r-t)*p+v(),n+(b?0:v()),r+(b?0:v())]}),m}function Z(e,t,n){const r=[];r.push([e[0][0]+D(t,n),e[0][1]+D(t,n)]),r.push([e[0][0]+D(t,n),e[0][1]+D(t,n)]);for(let o=1;o<e.length;o++)r.push([e[o][0]+D(t,n),e[o][1]+D(t,n)]),o===e.length-1&&r.push([e[o][0]+D(t,n),e[o][1]+D(t,n)]);return z(r,null,n)}function z(e,t,n){const r=e.length,o=[];if(r>3){const i=[],a=1-n.curveTightness;o.push({op:"move",data:[e[1][0],e[1][1]]});for(let t=1;t+2<r;t++){const n=e[t];i[0]=[n[0],n[1]],i[1]=[n[0]+(a*e[t+1][0]-a*e[t-1][0])/6,n[1]+(a*e[t+1][1]-a*e[t-1][1])/6],i[2]=[e[t+1][0]+(a*e[t][0]-a*e[t+2][0])/6,e[t+1][1]+(a*e[t][1]-a*e[t+2][1])/6],i[3]=[e[t+1][0],e[t+1][1]],o.push({op:"bcurveTo",data:[i[1][0],i[1][1],i[2][0],i[2][1],i[3][0],i[3][1]]})}if(t&&2===t.length){const e=n.maxRandomnessOffset;o.push({op:"lineTo",data:[t[0]+D(e,n),t[1]+D(e,n)]})}}else 3===r?(o.push({op:"move",data:[e[1][0],e[1][1]]}),o.push({op:"bcurveTo",data:[e[1][0],e[1][1],e[2][0],e[2][1],e[2][0],e[2][1]]})):2===r&&o.push(...L(e[0][0],e[0][1],e[1][0],e[1][1],n));return o}function R(e,t,n,r,o,i,a,l){const s=[],c=[];if(0===l.roughness){e/=4,c.push([t+r*Math.cos(-e),n+o*Math.sin(-e)]);for(let i=0;i<=2*Math.PI;i+=e){const e=[t+r*Math.cos(i),n+o*Math.sin(i)];s.push(e),c.push(e)}c.push([t+r*Math.cos(0),n+o*Math.sin(0)]),c.push([t+r*Math.cos(e),n+o*Math.sin(e)])}else{const u=D(.5,l)-Math.PI/2;c.push([D(i,l)+t+.9*r*Math.cos(u-e),D(i,l)+n+.9*o*Math.sin(u-e)]);const d=2*Math.PI+u-.01;for(let a=u;a<d;a+=e){const e=[D(i,l)+t+r*Math.cos(a),D(i,l)+n+o*Math.sin(a)];s.push(e),c.push(e)}c.push([D(i,l)+t+r*Math.cos(u+2*Math.PI+.5*a),D(i,l)+n+o*Math.sin(u+2*Math.PI+.5*a)]),c.push([D(i,l)+t+.98*r*Math.cos(u+a),D(i,l)+n+.98*o*Math.sin(u+a)]),c.push([D(i,l)+t+.9*r*Math.cos(u+.5*a),D(i,l)+n+.9*o*Math.sin(u+.5*a)])}return[c,s]}function N(e,t,n,r,o,i,a,l,s){const c=i+D(.1,s),u=[];u.push([D(l,s)+t+.9*r*Math.cos(c-e),D(l,s)+n+.9*o*Math.sin(c-e)]);for(let i=c;i<=a;i+=e)u.push([D(l,s)+t+r*Math.cos(i),D(l,s)+n+o*Math.sin(i)]);return u.push([t+r*Math.cos(a),n+o*Math.sin(a)]),u.push([t+r*Math.cos(a),n+o*Math.sin(a)]),z(u,null,s)}function B(e,t,n,r,o,i,a,l){const s=[],c=[l.maxRandomnessOffset||1,(l.maxRandomnessOffset||1)+.3];let u=[0,0];const d=l.disableMultiStroke?1:2,p=l.preserveVertices;for(let f=0;f<d;f++)0===f?s.push({op:"move",data:[a[0],a[1]]}):s.push({op:"move",data:[a[0]+(p?0:D(c[0],l)),a[1]+(p?0:D(c[0],l))]}),u=p?[o,i]:[o+D(c[f],l),i+D(c[f],l)],s.push({op:"bcurveTo",data:[e+D(c[f],l),t+D(c[f],l),n+D(c[f],l),r+D(c[f],l),u[0],u[1]]});return s}function W(e){return[...e]}var H=n(1493);const F="none";class U{constructor(e){this.defaultOptions={maxRandomnessOffset:2,roughness:1,bowing:1,stroke:"#000",strokeWidth:1,curveTightness:0,curveFitting:.95,curveStepCount:9,fillStyle:"hachure",fillWeight:-1,hachureAngle:-41,hachureGap:-1,dashOffset:-1,dashGap:-1,zigzagOffset:-1,seed:0,disableMultiStroke:!1,disableMultiStrokeFill:!1,preserveVertices:!1},this.config=e||{},this.config.options&&(this.defaultOptions=this._o(this.config.options))}static newSeed(){return(0,f.W)()}_o(e){return e?Object.assign({},this.defaultOptions,e):this.defaultOptions}_d(e,t,n){return{shape:e,sets:t||[],options:n||this.defaultOptions}}line(e,t,n,r,o){const i=this._o(o);return this._d("line",[k(e,t,n,r,i)],i)}rectangle(e,t,n,r,o){const i=this._o(o),a=[],l=S(e,t,n,r,i);if(i.fill){const o=[[e,t],[e+n,t],[e+n,t+r],[e,t+r]];"solid"===i.fillStyle?a.push(M([o],i)):a.push(I([o],i))}return i.stroke!==F&&a.push(l),this._d("rectangle",a,i)}ellipse(e,t,n,r,o){const i=this._o(o),a=[],l=j(n,r,i),s=C(e,t,i,l);if(i.fill)if("solid"===i.fillStyle){const n=C(e,t,i,l).opset;n.type="fillPath",a.push(n)}else a.push(I([s.estimatedPoints],i));return i.stroke!==F&&a.push(s.opset),this._d("ellipse",a,i)}circle(e,t,n,r){const o=this.ellipse(e,t,n,n,r);return o.shape="circle",o}linearPath(e,t){const n=this._o(t);return this._d("linearPath",[E(e,!1,n)],n)}arc(e,t,n,r,o,i,a=!1,l){const s=this._o(l),c=[],u=O(e,t,n,r,o,i,a,!0,s);if(a&&s.fill)if("solid"===s.fillStyle){const a=Object.assign({},s);a.disableMultiStroke=!0;const l=O(e,t,n,r,o,i,!0,!1,a);l.type="fillPath",c.push(l)}else c.push(function(e,t,n,r,o,i,a){const l=e,s=t;let c=Math.abs(n/2),u=Math.abs(r/2);c+=D(.01*c,a),u+=D(.01*u,a);let d=o,p=i;for(;d<0;)d+=2*Math.PI,p+=2*Math.PI;p-d>2*Math.PI&&(d=0,p=2*Math.PI);const f=(p-d)/a.curveStepCount,h=[];for(let e=d;e<=p;e+=f)h.push([l+c*Math.cos(e),s+u*Math.sin(e)]);return h.push([l+c*Math.cos(p),s+u*Math.sin(p)]),h.push([l,s]),I([h],a)}(e,t,n,r,o,i,s));return s.stroke!==F&&c.push(u),this._d("arc",c,s)}curve(e,t){const n=this._o(t),r=[],o=_(e,n);if(n.fill&&n.fill!==F&&e.length>=3){const t=function(e,t=0){const n=e.length;if(n<3)throw new Error("A curve must have at least three points.");const r=[];if(3===n)r.push(W(e[0]),W(e[1]),W(e[2]),W(e[2]));else{const n=[];n.push(e[0],e[0]);for(let t=1;t<e.length;t++)n.push(e[t]),t===e.length-1&&n.push(e[t]);const o=[],i=1-t;r.push(W(n[0]));for(let e=1;e+2<n.length;e++){const t=n[e];o[0]=[t[0],t[1]],o[1]=[t[0]+(i*n[e+1][0]-i*n[e-1][0])/6,t[1]+(i*n[e+1][1]-i*n[e-1][1])/6],o[2]=[n[e+1][0]+(i*n[e][0]-i*n[e+2][0])/6,n[e+1][1]+(i*n[e][1]-i*n[e+2][1])/6],o[3]=[n[e+1][0],n[e+1][1]],r.push(o[1],o[2],o[3])}}return r}(e),o=(0,H.s)(t,10,(1+n.roughness)/2);"solid"===n.fillStyle?r.push(M([o],n)):r.push(I([o],n))}return n.stroke!==F&&r.push(o),this._d("curve",r,n)}polygon(e,t){const n=this._o(t),r=[],o=E(e,!0,n);return n.fill&&("solid"===n.fillStyle?r.push(M([e],n)):r.push(I([e],n))),n.stroke!==F&&r.push(o),this._d("polygon",r,n)}path(e,t){const n=this._o(t),r=[];if(!e)return this._d("path",r,n);e=(e||"").replace(/\n/g," ").replace(/(-\s)/g,"-").replace("/(ss)/g"," ");const o=n.fill&&"transparent"!==n.fill&&n.fill!==F,i=n.stroke!==F,a=!!(n.simplification&&n.simplification<1),l=function(e,t,n){const r=b(v(g(e))),o=[];let i=[],a=[0,0],l=[];const s=()=>{l.length>=4&&i.push(...(0,H.s)(l,t)),l=[]},c=()=>{s(),i.length&&(o.push(i),i=[])};for(const{key:e,data:t}of r)switch(e){case"M":c(),a=[t[0],t[1]],i.push(a);break;case"L":s(),i.push([t[0],t[1]]);break;case"C":if(!l.length){const e=i.length?i[i.length-1]:a;l.push([e[0],e[1]])}l.push([t[0],t[1]]),l.push([t[2],t[3]]),l.push([t[4],t[5]]);break;case"Z":s(),i.push([a[0],a[1]])}if(c(),!n)return o;const u=[];for(const e of o){const t=(0,H.o)(e,n);t.length&&u.push(t)}return u}(e,1,a?4-4*n.simplification:(1+n.roughness)/2);return o&&("solid"===n.fillStyle?r.push(M(l,n)):r.push(I(l,n))),i&&(a?l.forEach((e=>{r.push(E(e,!1,n))})):r.push(function(e,t){const n=b(v(g(e))),r=[];let o=[0,0],i=[0,0];for(const{key:e,data:a}of n)switch(e){case"M":{const e=1*(t.maxRandomnessOffset||0),n=t.preserveVertices;r.push({op:"move",data:a.map((r=>r+(n?0:D(e,t))))}),i=[a[0],a[1]],o=[a[0],a[1]];break}case"L":r.push(...L(i[0],i[1],a[0],a[1],t)),i=[a[0],a[1]];break;case"C":{const[e,n,o,l,s,c]=a;r.push(...B(e,n,o,l,s,c,i,t)),i=[s,c];break}case"Z":r.push(...L(i[0],i[1],o[0],o[1],t)),i=[o[0],o[1]]}return{type:"path",ops:r}}(e,n))),this._d("path",r,n)}opsToPath(e,t){let n="";for(const r of e.ops){const e="number"==typeof t&&t>=0?r.data.map((e=>+e.toFixed(t))):r.data;switch(r.op){case"move":n+=`M${e[0]} ${e[1]} `;break;case"bcurveTo":n+=`C${e[0]} ${e[1]}, ${e[2]} ${e[3]}, ${e[4]} ${e[5]} `;break;case"lineTo":n+=`L${e[0]} ${e[1]} `}}return n.trim()}toPaths(e){const t=e.sets||[],n=e.options||this.defaultOptions,r=[];for(const e of t){let t=null;switch(e.type){case"path":t={d:this.opsToPath(e),stroke:n.stroke,strokeWidth:n.strokeWidth,fill:F};break;case"fillPath":t={d:this.opsToPath(e),stroke:F,strokeWidth:0,fill:n.fill||F};break;case"fillSketch":t=this.fillSketch(e,n)}t&&r.push(t)}return r}fillSketch(e,t){let n=t.fillWeight;return n<0&&(n=t.strokeWidth/2),{d:this.opsToPath(e),stroke:t.fill||F,strokeWidth:n,fill:F}}}class K{constructor(e,t){this.canvas=e,this.ctx=this.canvas.getContext("2d"),this.gen=new U(t)}draw(e){const t=e.sets||[],n=e.options||this.getDefaultOptions(),r=this.ctx,o=e.options.fixedDecimalPlaceDigits;for(const i of t)switch(i.type){case"path":r.save(),r.strokeStyle="none"===n.stroke?"transparent":n.stroke,r.lineWidth=n.strokeWidth,n.strokeLineDash&&r.setLineDash(n.strokeLineDash),n.strokeLineDashOffset&&(r.lineDashOffset=n.strokeLineDashOffset),this._drawToContext(r,i,o),r.restore();break;case"fillPath":{r.save(),r.fillStyle=n.fill||"";const t="curve"===e.shape||"polygon"===e.shape||"path"===e.shape?"evenodd":"nonzero";this._drawToContext(r,i,o,t),r.restore();break}case"fillSketch":this.fillSketch(r,i,n)}}fillSketch(e,t,n){let r=n.fillWeight;r<0&&(r=n.strokeWidth/2),e.save(),n.fillLineDash&&e.setLineDash(n.fillLineDash),n.fillLineDashOffset&&(e.lineDashOffset=n.fillLineDashOffset),e.strokeStyle=n.fill||"",e.lineWidth=r,this._drawToContext(e,t,n.fixedDecimalPlaceDigits),e.restore()}_drawToContext(e,t,n,r="nonzero"){e.beginPath();for(const r of t.ops){const t="number"==typeof n&&n>=0?r.data.map((e=>+e.toFixed(n))):r.data;switch(r.op){case"move":e.moveTo(t[0],t[1]);break;case"bcurveTo":e.bezierCurveTo(t[0],t[1],t[2],t[3],t[4],t[5]);break;case"lineTo":e.lineTo(t[0],t[1])}}"fillPath"===t.type?e.fill(r):e.stroke()}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}line(e,t,n,r,o){const i=this.gen.line(e,t,n,r,o);return this.draw(i),i}rectangle(e,t,n,r,o){const i=this.gen.rectangle(e,t,n,r,o);return this.draw(i),i}ellipse(e,t,n,r,o){const i=this.gen.ellipse(e,t,n,r,o);return this.draw(i),i}circle(e,t,n,r){const o=this.gen.circle(e,t,n,r);return this.draw(o),o}linearPath(e,t){const n=this.gen.linearPath(e,t);return this.draw(n),n}polygon(e,t){const n=this.gen.polygon(e,t);return this.draw(n),n}arc(e,t,n,r,o,i,a=!1,l){const s=this.gen.arc(e,t,n,r,o,i,a,l);return this.draw(s),s}curve(e,t){const n=this.gen.curve(e,t);return this.draw(n),n}path(e,t){const n=this.gen.path(e,t);return this.draw(n),n}}const Y="http://www.w3.org/2000/svg";class G{constructor(e,t){this.svg=e,this.gen=new U(t)}draw(e){const t=e.sets||[],n=e.options||this.getDefaultOptions(),r=this.svg.ownerDocument||window.document,o=r.createElementNS(Y,"g"),i=e.options.fixedDecimalPlaceDigits;for(const a of t){let t=null;switch(a.type){case"path":t=r.createElementNS(Y,"path"),t.setAttribute("d",this.opsToPath(a,i)),t.setAttribute("stroke",n.stroke),t.setAttribute("stroke-width",n.strokeWidth+""),t.setAttribute("fill","none"),n.strokeLineDash&&t.setAttribute("stroke-dasharray",n.strokeLineDash.join(" ").trim()),n.strokeLineDashOffset&&t.setAttribute("stroke-dashoffset",`${n.strokeLineDashOffset}`);break;case"fillPath":t=r.createElementNS(Y,"path"),t.setAttribute("d",this.opsToPath(a,i)),t.setAttribute("stroke","none"),t.setAttribute("stroke-width","0"),t.setAttribute("fill",n.fill||""),"curve"!==e.shape&&"polygon"!==e.shape||t.setAttribute("fill-rule","evenodd");break;case"fillSketch":t=this.fillSketch(r,a,n)}t&&o.appendChild(t)}return o}fillSketch(e,t,n){let r=n.fillWeight;r<0&&(r=n.strokeWidth/2);const o=e.createElementNS(Y,"path");return o.setAttribute("d",this.opsToPath(t,n.fixedDecimalPlaceDigits)),o.setAttribute("stroke",n.fill||""),o.setAttribute("stroke-width",r+""),o.setAttribute("fill","none"),n.fillLineDash&&o.setAttribute("stroke-dasharray",n.fillLineDash.join(" ").trim()),n.fillLineDashOffset&&o.setAttribute("stroke-dashoffset",`${n.fillLineDashOffset}`),o}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}opsToPath(e,t){return this.gen.opsToPath(e,t)}line(e,t,n,r,o){const i=this.gen.line(e,t,n,r,o);return this.draw(i)}rectangle(e,t,n,r,o){const i=this.gen.rectangle(e,t,n,r,o);return this.draw(i)}ellipse(e,t,n,r,o){const i=this.gen.ellipse(e,t,n,r,o);return this.draw(i)}circle(e,t,n,r){const o=this.gen.circle(e,t,n,r);return this.draw(o)}linearPath(e,t){const n=this.gen.linearPath(e,t);return this.draw(n)}polygon(e,t){const n=this.gen.polygon(e,t);return this.draw(n)}arc(e,t,n,r,o,i,a=!1,l){const s=this.gen.arc(e,t,n,r,o,i,a,l);return this.draw(s)}curve(e,t){const n=this.gen.curve(e,t);return this.draw(n)}path(e,t){const n=this.gen.path(e,t);return this.draw(n)}}var V={canvas:(e,t)=>new K(e,t),svg:(e,t)=>new G(e,t),generator:e=>new U(e),newSeed:()=>U.newSeed()}},5714:function(e){e.exports=function(e,t,n){var r=[],o=e.length;if(0===o)return r;var i=t<0?Math.max(0,t+o):t||0;for(void 0!==n&&(o=n<0?n+o:n);o-- >i;)r[o-i]=e[o];return r}},5422:function(e,t,n){"use strict";var r=n(487),o=n.n(r),i=n(631),a=n.n(i),l=n(2052),s=n.n(l),c=n(4010),u=n.n(c),d=n(1469),p=n.n(d),f=n(9329),h=n.n(f),m=n(2044),g={};g.styleTagTransform=h(),g.setAttributes=u(),g.insert=s().bind(null,"head"),g.domAPI=a(),g.insertStyleElement=p();o()(m.Z,g),m.Z&&m.Z.locals&&m.Z.locals},487:function(e){"use strict";var t=[];function n(e){for(var n=-1,r=0;r<t.length;r++)if(t[r].identifier===e){n=r;break}return n}function r(e,r){for(var i={},a=[],l=0;l<e.length;l++){var s=e[l],c=r.base?s[0]+r.base:s[0],u=i[c]||0,d="".concat(c," ").concat(u);i[c]=u+1;var p=n(d),f={css:s[1],media:s[2],sourceMap:s[3],supports:s[4],layer:s[5]};if(-1!==p)t[p].references++,t[p].updater(f);else{var h=o(f,r);r.byIndex=l,t.splice(l,0,{identifier:d,updater:h,references:1})}a.push(d)}return a}function o(e,t){var n=t.domAPI(t);n.update(e);return function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;n.update(e=t)}else n.remove()}}e.exports=function(e,o){var i=r(e=e||[],o=o||{});return function(e){e=e||[];for(var a=0;a<i.length;a++){var l=n(i[a]);t[l].references--}for(var s=r(e,o),c=0;c<i.length;c++){var u=n(i[c]);0===t[u].references&&(t[u].updater(),t.splice(u,1))}i=s}}},2052:function(e){"use strict";var t={};e.exports=function(e,n){var r=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!r)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");r.appendChild(n)}},1469:function(e){"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},4010:function(e,t,n){"use strict";e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},631:function(e){"use strict";e.exports=function(e){var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var r="";n.supports&&(r+="@supports (".concat(n.supports,") {")),n.media&&(r+="@media ".concat(n.media," {"));var o=void 0!==n.layer;o&&(r+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),r+=n.css,o&&(r+="}"),n.media&&(r+="}"),n.supports&&(r+="}");var i=n.sourceMap;i&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),t.styleTagTransform(r,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},9329:function(e){"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},9713:function(e){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},6479:function(e,t,n){var r=n(7316);e.exports=function(e,t){if(null==e)return{};var n,o,i=r(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(o=0;o<a.length;o++)n=a[o],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}},7316:function(e){e.exports=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}},4295:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i),l=n(1667),s=n.n(l),c=new URL(n(3940),n.b),u=new URL(n(3147),n.b),d=new URL(n(8303),n.b),p=new URL(n(1273),n.b),f=new URL(n(9577),n.b),h=new URL(n(9729),n.b),m=a()(o()),g=s()(c),v=s()(u),b=s()(d),y=s()(p),x=s()(f),w=s()(h);m.push([e.id,'@font-face{font-family:"Virgil";src:url('+g+');font-display:swap}@font-face{font-family:"Cascadia";src:url('+v+');font-display:swap}@font-face{font-family:"Assistant";src:url('+b+');font-display:swap;font-weight:400}@font-face{font-family:"Assistant";src:url('+y+');font-display:swap;font-weight:500}@font-face{font-family:"Assistant";src:url('+x+');font-display:swap;font-weight:600}@font-face{font-family:"Assistant";src:url('+w+");font-display:swap;font-weight:700}",""]),t.Z=m},6086:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".zoom-actions,.undo-redo-buttons{background-color:var(--island-bg-color);border-radius:var(--border-radius-lg)}.zoom-button,.undo-redo-buttons button{border:1px solid var(--default-border-color) !important;border-radius:0 !important;background-color:rgba(0,0,0,0) !important;font-size:.875rem !important;width:var(--lg-button-size);height:var(--lg-button-size)}.zoom-button svg,.undo-redo-buttons button svg{width:var(--lg-icon-size) !important;height:var(--lg-icon-size) !important}.zoom-button .ToolIcon__icon,.undo-redo-buttons button .ToolIcon__icon{width:100%;height:100%}.reset-zoom-button{border-left:0 !important;border-right:0 !important;padding:0 .625rem !important;width:3.75rem !important;justify-content:center;color:var(--text-primary-color)}.zoom-out-button{border-top-left-radius:var(--border-radius-lg) !important;border-bottom-left-radius:var(--border-radius-lg) !important}:root[dir=rtl] .zoom-out-button{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.zoom-out-button .ToolIcon__icon{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.zoom-in-button{border-top-right-radius:var(--border-radius-lg) !important;border-bottom-right-radius:var(--border-radius-lg) !important}:root[dir=rtl] .zoom-in-button{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.zoom-in-button .ToolIcon__icon{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}.undo-redo-buttons .undo-button-container button{border-top-left-radius:var(--border-radius-lg) !important;border-bottom-left-radius:var(--border-radius-lg) !important;border-right:0 !important}:root[dir=rtl] .undo-redo-buttons .undo-button-container button{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.undo-redo-buttons .undo-button-container button .ToolIcon__icon{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.undo-redo-buttons .redo-button-container button{border-top-right-radius:var(--border-radius-lg) !important;border-bottom-right-radius:var(--border-radius-lg) !important}:root[dir=rtl] .undo-redo-buttons .redo-button-container button{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.undo-redo-buttons .redo-button-container button .ToolIcon__icon{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}",""]),t.Z=a},9135:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .ActiveFile .ActiveFile__fileName{display:flex;align-items:center}.excalidraw .ActiveFile .ActiveFile__fileName span{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;width:9.3em}.excalidraw .ActiveFile .ActiveFile__fileName svg{width:1.15em;-webkit-margin-end:.3em;margin-inline-end:.3em;-webkit-transform:scaleY(0.9);transform:scaleY(0.9)}",""]),t.Z=a},3729:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .Avatar{width:1.25rem;height:1.25rem;border-radius:100%;outline:2px solid var(--avatar-border-color);outline-offset:2px;display:flex;justify-content:center;align-items:center;color:#fff;cursor:pointer;font-size:.625rem;font-weight:500;line-height:1}.excalidraw .Avatar-img{width:100%;height:100%;border-radius:100%}",""]),t.Z=a},6029:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .Checkbox{margin:4px .3em;display:flex;align-items:center;cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.excalidraw .Checkbox:hover:not(.is-checked) .Checkbox-box:not(:focus){box-shadow:0 0 0 2px #4dabf7}.excalidraw .Checkbox:hover:not(.is-checked) .Checkbox-box:not(:focus) svg{display:block;opacity:.3}.excalidraw .Checkbox:active .Checkbox-box{box-shadow:0 0 2px 1px inset #1c7ed6 !important}.excalidraw .Checkbox:hover .Checkbox-box{background-color:rgba(208,235,255,.2)}.excalidraw .Checkbox.is-checked .Checkbox-box{background-color:#d0ebff}.excalidraw .Checkbox.is-checked .Checkbox-box svg{display:block}.excalidraw .Checkbox.is-checked:hover .Checkbox-box{background-color:#a5d8ff}.excalidraw .Checkbox .Checkbox-box{width:22px;height:22px;padding:0;flex:0 0 auto;margin:0 1em;display:flex;align-items:center;justify-content:center;box-shadow:0 0 0 2px #1c7ed6;background-color:rgba(0,0,0,0);border-radius:4px;color:#1c7ed6;border:0}.excalidraw .Checkbox .Checkbox-box:focus{box-shadow:0 0 0 3px #1c7ed6}.excalidraw .Checkbox .Checkbox-box svg{display:none;width:16px;height:16px;stroke-width:3px}.excalidraw .Checkbox .Checkbox-label{display:flex;align-items:center}.excalidraw .Checkbox .excalidraw-tooltip-icon{width:1em;height:1em}",""]),t.Z=a},9609:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,':export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .collab-button{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--default-button-size);height:var(--default-button-size);box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--default-border-color);border-radius:var(--border-radius-lg);cursor:pointer;background-color:rgba(0,0,0,0);color:var(--text-primary-color);width:var(--lg-button-size);height:var(--lg-button-size);background-color:var(--color-primary);border-color:var(--color-primary);color:#fff;flex-shrink:0}.excalidraw .collab-button:hover{background-color:var(--button-hover)}.excalidraw .collab-button:active{background-color:var(--button-hover);border-color:var(--color-primary-darkest)}.excalidraw .collab-button.active{background-color:var(--color-primary-light);border-color:var(--color-primary-light)}.excalidraw .collab-button.active:hover{background-color:var(--color-primary-light)}.excalidraw .collab-button.active svg{color:var(--color-primary-darker)}.excalidraw .collab-button svg{width:var(--lg-icon-size);height:var(--lg-icon-size)}.excalidraw .collab-button:hover{background-color:var(--color-primary-darker);border-color:var(--color-primary-darker)}.excalidraw .collab-button:active{background-color:var(--color-primary-darker)}.excalidraw .collab-button.active{background-color:#0fb884;border-color:#0fb884}.excalidraw .collab-button.active svg{color:#fff}.excalidraw .collab-button.active:hover,.excalidraw .collab-button.active:active{background-color:#0fb884;border-color:#0fb884}.excalidraw.theme--dark .collab-button{color:var(--color-gray-90)}.excalidraw .CollabButton.is-collaborating{background-color:var(--button-special-active-bg-color)}.excalidraw .CollabButton.is-collaborating .ToolIcon__icon svg,.excalidraw .CollabButton.is-collaborating .ToolIcon__label{color:var(--icon-green-fill-color)}.excalidraw .CollabButton-collaborators{min-width:1em;min-height:1em;line-height:1;position:absolute;bottom:-5px;padding:3px;border-radius:50%;background-color:#b2f2bb;color:#2b8a3e;font-size:.6rem;font-family:"Cascadia"}:root[dir=ltr] .excalidraw .CollabButton-collaborators{right:-5px}:root[dir=rtl] .excalidraw .CollabButton-collaborators{left:-5px}',""]),t.Z=a},2345:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i),l=n(1667),s=n.n(l),c=new URL(n(9669),n.b),u=a()(o()),d=s()(c);u.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .color-picker{background:var(--popup-bg-color);border:0 solid rgba(255,255,255,.25);box-shadow:rgba(0,0,0,.25) 0 1px 4px;border-radius:4px;position:absolute}:root[dir=ltr] .excalidraw .color-picker{left:-5.5px}:root[dir=rtl] .excalidraw .color-picker{right:-5.5px}.excalidraw .color-picker-control-container{display:grid;grid-template-columns:auto 1fr;align-items:center;-webkit-column-gap:.5rem;column-gap:.5rem}.excalidraw .color-picker-control-container+.popover{position:static}.excalidraw .color-picker-popover-container{margin-top:-0.25rem}:root[dir=ltr] .excalidraw .color-picker-popover-container{margin-left:.5rem}:root[dir=rtl] .excalidraw .color-picker-popover-container{margin-left:-3rem}.excalidraw .color-picker-triangle{width:0;height:0;border-style:solid;border-width:0 9px 10px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) var(--popup-bg-color);position:absolute;top:10px}:root[dir=ltr] .excalidraw .color-picker-triangle{-webkit-transform:rotate(270deg);transform:rotate(270deg);left:-14px}:root[dir=rtl] .excalidraw .color-picker-triangle{-webkit-transform:rotate(90deg);transform:rotate(90deg);right:-14px}.excalidraw .color-picker-triangle-shadow{border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,.1)}:root[dir=ltr] .excalidraw .color-picker-triangle-shadow{left:-14px}:root[dir=rtl] .excalidraw .color-picker-triangle-shadow{right:-16px}.excalidraw .color-picker-content--default{padding:.5rem;display:grid;grid-template-columns:repeat(5, auto);grid-gap:.5rem;border-radius:4px}.excalidraw .color-picker-content--default:focus{outline:none;box-shadow:0 0 0 2px var(--focus-highlight-color)}.excalidraw .color-picker-content--canvas{display:flex;flex-direction:column;padding:.25rem}.excalidraw .color-picker-content--canvas-title{color:#868e96;font-size:12px;padding:0 .25rem}.excalidraw .color-picker-content--canvas-colors{padding:.5rem 0}.excalidraw .color-picker-content--canvas-colors .color-picker-swatch{margin:0 .25rem}.excalidraw .color-picker-content .color-input-container{grid-column:1/span 5}.excalidraw .color-picker-swatch{position:relative;height:1.875rem;width:1.875rem;cursor:pointer;border-radius:4px;margin:0;box-sizing:border-box;border:1px solid #ddd;background-color:currentColor !important;-webkit-filter:var(--theme-filter);filter:var(--theme-filter)}.excalidraw .color-picker-swatch:focus{box-shadow:0 0 4px 1px currentColor;border-color:var(--select-highlight-color)}.excalidraw .color-picker-transparent{border-radius:4px;box-shadow:rgba(0,0,0,.1) 0 0 0 1px inset;position:absolute;top:0;right:0;bottom:0;left:0}.excalidraw .color-picker-transparent,.excalidraw .color-picker-label-swatch{background:url("+d+') left center}.excalidraw .color-picker-hash{height:var(--default-button-size);flex-shrink:0;padding:.5rem .5rem .5rem .75rem;border:1px solid var(--default-border-color);border-right:0;box-sizing:border-box;color:var(--input-label-color);display:flex;align-items:center;justify-content:center;position:relative}:root[dir=ltr] .excalidraw .color-picker-hash{border-radius:var(--border-radius-lg) 0 0 var(--border-radius-lg)}:root[dir=rtl] .excalidraw .color-picker-hash{border-radius:0 var(--border-radius-lg) var(--border-radius-lg) 0;border-right:1px solid var(--default-border-color);border-left:0}.excalidraw .color-input-container{display:flex}.excalidraw .color-input-container:focus-within{box-shadow:0 0 0 1px var(--color-primary-darkest);border-radius:var(--border-radius-lg)}.excalidraw .color-picker-input{box-sizing:border-box;width:100%;margin:0;font-size:.875rem;background-color:rgba(0,0,0,0);color:var(--text-primary-color);border:0;outline:none;height:var(--default-button-size);border:1px solid var(--default-border-color);border-left:0;letter-spacing:.4px;padding:.5rem;padding-left:.25rem;-webkit-appearance:none;appearance:none}:root[dir=ltr] .excalidraw .color-picker-input{border-radius:0 var(--border-radius-lg) var(--border-radius-lg) 0}:root[dir=rtl] .excalidraw .color-picker-input{border-radius:var(--border-radius-lg) 0 0 var(--border-radius-lg);border-left:1px solid var(--default-border-color);border-right:0}.excalidraw .color-picker-input:focus-visible{box-shadow:none}.excalidraw .color-picker-label-swatch-container{border:1px solid var(--default-border-color);border-radius:var(--border-radius-lg);width:var(--default-button-size);height:var(--default-button-size);box-sizing:border-box;overflow:hidden}.excalidraw .color-picker-label-swatch{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--default-button-size);height:var(--default-button-size);box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--default-border-color);border-radius:var(--border-radius-lg);cursor:pointer;background-color:rgba(0,0,0,0);color:var(--text-primary-color);background-color:var(--swatch-color) !important;overflow:hidden;position:relative;-webkit-filter:var(--theme-filter);filter:var(--theme-filter);border:0 !important}.excalidraw .color-picker-label-swatch:hover{background-color:var(--button-hover)}.excalidraw .color-picker-label-swatch:active{background-color:var(--button-hover);border-color:var(--color-primary-darkest)}.excalidraw .color-picker-label-swatch.active{background-color:var(--color-primary-light);border-color:var(--color-primary-light)}.excalidraw .color-picker-label-swatch.active:hover{background-color:var(--color-primary-light)}.excalidraw .color-picker-label-swatch.active svg{color:var(--color-primary-darker)}.excalidraw .color-picker-label-swatch:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:var(--swatch-color)}.excalidraw .color-picker-keybinding{position:absolute;bottom:2px;font-size:.7em}:root[dir=ltr] .excalidraw .color-picker-keybinding{right:2px}:root[dir=rtl] .excalidraw .color-picker-keybinding{left:2px}.excalidraw--mobile.excalidraw .color-picker-keybinding{display:none}.excalidraw .color-picker-type-canvasBackground .color-picker-keybinding{color:#aaa}.excalidraw .color-picker-type-elementBackground .color-picker-keybinding{color:#fff}.excalidraw .color-picker-swatch[aria-label=transparent] .color-picker-keybinding{color:#aaa}.excalidraw .color-picker-type-elementStroke .color-picker-keybinding{color:#d4d4d4}.excalidraw.theme--dark .color-picker-type-elementBackground .color-picker-keybinding{color:#000}.excalidraw.theme--dark .color-picker-swatch[aria-label=transparent] .color-picker-keybinding{color:#000}',""]),t.Z=u},9393:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .confirm-dialog-buttons{display:flex;-webkit-column-gap:.5rem;column-gap:.5rem;justify-content:flex-end}",""]),t.Z=a},6578:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,':export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .context-menu{position:relative;border-radius:4px;box-shadow:0 3px 10px rgba(0,0,0,.2);padding:0;list-style:none;-webkit-user-select:none;user-select:none;margin:-0.25rem 0 0 .125rem;padding:.5rem 0;background-color:var(--popup-secondary-bg-color);border:1px solid var(--button-gray-3);cursor:default}.excalidraw .context-menu button{color:var(--popup-text-color)}.excalidraw .context-menu-option{position:relative;width:100%;min-width:9.5rem;margin:0;padding:.25rem 1rem .25rem 1.25rem;text-align:start;border-radius:0;background-color:rgba(0,0,0,0);border:none;white-space:nowrap;display:grid;grid-template-columns:1fr .2fr;align-items:center}.excalidraw .context-menu-option.checkmark::before{position:absolute;left:6px;margin-bottom:1px;content:"✓"}.excalidraw .context-menu-option.dangerous .context-menu-option__label{color:#f03e3e}.excalidraw .context-menu-option .context-menu-option__label{justify-self:start;-webkit-margin-end:20px;margin-inline-end:20px}.excalidraw .context-menu-option .context-menu-option__shortcut{justify-self:end;opacity:.6;font-family:inherit;font-size:.7rem}.excalidraw .context-menu-option:hover{color:var(--popup-bg-color);background-color:var(--select-highlight-color)}.excalidraw .context-menu-option:hover.dangerous{background-color:#fa5252}.excalidraw .context-menu-option:hover.dangerous .context-menu-option__label{color:var(--popup-bg-color)}.excalidraw .context-menu-option:focus{z-index:1}.excalidraw--mobile.excalidraw .context-menu-option{display:block}.excalidraw--mobile.excalidraw .context-menu-option .context-menu-option__label{-webkit-margin-end:0;margin-inline-end:0}.excalidraw--mobile.excalidraw .context-menu-option .context-menu-option__shortcut{display:none}.excalidraw .context-menu-option-separator{border:none;border-top:1px solid #adb5bd}',""]),t.Z=a},9482:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .Dialog{-webkit-user-select:text;user-select:text;cursor:auto}.excalidraw .Dialog__title{margin:0;text-align:left;font-size:1.25rem;border-bottom:1px solid var(--dialog-border-color);padding:0 0 .75rem;margin-bottom:1.5rem}",""]),t.Z=a},6148:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .Dialog__action-button{position:relative;display:flex;-webkit-column-gap:.5rem;column-gap:.5rem;align-items:center;padding:.5rem 1.5rem;border:1px solid var(--default-border-color);background-color:rgba(0,0,0,0);height:3rem;border-radius:var(--border-radius-lg);letter-spacing:.4px;color:inherit;font-family:inherit;font-size:.875rem;font-weight:600;-webkit-user-select:none;user-select:none}.excalidraw .Dialog__action-button svg{display:block;width:1rem;height:1rem}.excalidraw .Dialog__action-button--danger{background-color:var(--color-danger);border-color:var(--color-danger);color:#fff}.excalidraw .Dialog__action-button--primary{background-color:var(--color-primary);border-color:var(--color-primary);color:#fff}.excalidraw.theme--dark .Dialog__action-button--danger{color:var(--color-gray-100)}.excalidraw.theme--dark .Dialog__action-button--primary{color:var(--color-gray-100)}",""]),t.Z=a},7955:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i),l=n(1667),s=n.n(l),c=new URL(n(9669),n.b),u=a()(o()),d=s()(c);u.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .ExportDialog__preview{--preview-padding: calc(var(--space-factor) * 4);background:url("+d+") left center;text-align:center;padding:var(--preview-padding);margin-bottom:calc(var(--space-factor)*3)}.excalidraw .ExportDialog__preview canvas{max-width:calc(100% - var(--preview-padding)*2);max-height:25rem}.excalidraw.theme--dark .ExportDialog__preview canvas{-webkit-filter:none;filter:none}.excalidraw .ExportDialog__actions{width:100%;display:flex;grid-gap:calc(var(--space-factor)*2);align-items:top;justify-content:space-between}.excalidraw--mobile.excalidraw .ExportDialog{display:flex;flex-direction:column}.excalidraw--mobile.excalidraw .ExportDialog__actions{flex-direction:column;align-items:center}.excalidraw--mobile.excalidraw .ExportDialog__actions>*{margin-bottom:calc(var(--space-factor)*3)}.excalidraw--mobile.excalidraw .ExportDialog__preview canvas{max-height:30vh}.excalidraw--mobile.excalidraw .ExportDialog__dialog,.excalidraw--mobile.excalidraw .ExportDialog__dialog .Island{height:100%;box-sizing:border-box}.excalidraw--mobile.excalidraw .ExportDialog__dialog .Island{overflow-y:auto}.excalidraw .ExportDialog--json .ExportDialog-cards{display:grid;grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));justify-items:center;row-gap:2em}@media(max-width: 460px){.excalidraw .ExportDialog--json .ExportDialog-cards{grid-template-columns:repeat(auto-fit, minmax(240px, 1fr))}.excalidraw .ExportDialog--json .ExportDialog-cards .Card-details{min-height:40px}}.excalidraw .ExportDialog--json .ExportDialog-cards .ProjectName{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin:1em auto;align-items:flex-start;flex-direction:column}.excalidraw .ExportDialog--json .ExportDialog-cards .ProjectName .TextInput{width:auto}.excalidraw .ExportDialog--json .ExportDialog-cards .ProjectName-label{margin:.625em 0;font-weight:bold}.excalidraw button.ExportDialog-imageExportButton{border:0;width:5rem;height:5rem;margin:0 .2em;border-radius:1rem;background-color:var(--button-color);box-shadow:0 3px 5px -1px rgba(0,0,0,.28),0 6px 10px 0 rgba(0,0,0,.14);font-family:Cascadia;font-size:1.8em;color:#fff}.excalidraw button.ExportDialog-imageExportButton:hover{background-color:var(--button-color-darker)}.excalidraw button.ExportDialog-imageExportButton:active{background-color:var(--button-color-darkest);box-shadow:none}.excalidraw button.ExportDialog-imageExportButton svg{width:.9em}",""]),t.Z=u},3195:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .FixedSideContainer{position:absolute;pointer-events:none}.excalidraw .FixedSideContainer>*{pointer-events:all}.excalidraw .FixedSideContainer_side_top{left:1rem;top:1rem;right:1rem;bottom:1rem;z-index:2}.excalidraw .FixedSideContainer_side_top.zen-mode{right:42px}",""]),t.Z=a},2978:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .HelpDialog .Modal__content{max-width:960px}.excalidraw .HelpDialog h3{margin:1.5rem 0;font-weight:bold;font-size:1.125rem}.excalidraw .HelpDialog__header{display:flex;flex-wrap:wrap;gap:.75rem}.excalidraw .HelpDialog__btn{display:flex;-webkit-column-gap:.5rem;column-gap:.5rem;align-items:center;border:1px solid var(--default-border-color);padding:.625rem 1rem;border-radius:var(--border-radius-lg);color:var(--text-primary-color);font-weight:600;font-size:.75rem;letter-spacing:.4px}.excalidraw .HelpDialog__btn:hover{text-decoration:none}.excalidraw .HelpDialog__link-icon{line-height:0}.excalidraw .HelpDialog__link-icon svg{width:1rem;height:1rem}.excalidraw .HelpDialog__islands-container{display:grid;grid-column-gap:1.5rem;grid-row-gap:2rem}@media screen and (min-width: 1024px){.excalidraw .HelpDialog__islands-container{grid-template-columns:1fr 1fr}}@media screen and (min-width: 1024px){.excalidraw .HelpDialog__island--tools{grid-area:1/1/2/2}.excalidraw .HelpDialog__island--view{grid-area:2/1/3/2}.excalidraw .HelpDialog__island--editor{grid-area:1/2/3/3}}.excalidraw .HelpDialog__island h4{font-size:1rem;font-weight:bold;margin:0;margin-bottom:.625rem}.excalidraw .HelpDialog__island-content{border:1px solid var(--dialog-border-color);border-radius:var(--border-radius-lg)}.excalidraw .HelpDialog__shortcut{border-bottom:1px solid var(--dialog-border-color);padding:.375rem .75rem;display:flex;justify-content:space-between;align-items:center;font-size:.875rem;-webkit-column-gap:.5rem;column-gap:.5rem}.excalidraw .HelpDialog__shortcut:last-child{border-bottom:none}.excalidraw .HelpDialog__key-container{display:flex;align-items:center;-webkit-column-gap:.25rem;column-gap:.25rem;flex-shrink:0}.excalidraw .HelpDialog__key{display:flex;box-sizing:border-box;font-size:.625rem;background-color:var(--color-primary-light);border-radius:var(--border-radius-md);padding:.5rem;word-break:keep-all;align-items:center;font-family:inherit;line-height:1}",""]),t.Z=a},1587:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .HintViewer{pointer-events:none;box-sizing:border-box;position:absolute;display:flex;justify-content:center;left:0;top:100%;max-width:100%;width:100%;margin-top:.5rem;text-align:center;color:var(--color-gray-40);font-size:.75rem}.excalidraw--mobile.excalidraw .HintViewer{position:static;padding-right:2rem}.excalidraw .HintViewer>span{padding:.25rem}.excalidraw.theme--dark .HintViewer{color:var(--color-gray-60)}",""]),t.Z=a},9478:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,':export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .picker-container{display:inline-block;box-sizing:border-box;margin-right:.25rem}.excalidraw .picker{background:var(--popup-bg-color);border:0 solid rgba(255,255,255,.25);box-shadow:rgba(0,0,0,.25) 2px 2px 4px 2px;border-radius:4px;position:absolute}.excalidraw .picker-container button,.excalidraw .picker button{position:relative;display:flex;align-items:center;justify-content:center}.excalidraw .picker-container button:focus-visible,.excalidraw .picker button:focus-visible{outline:rgba(0,0,0,0);background-color:var(--button-gray-2)}.excalidraw .picker-container button:focus-visible svg,.excalidraw .picker button:focus-visible svg{opacity:1}.excalidraw .picker-container button:hover,.excalidraw .picker button:hover{background-color:var(--button-gray-2)}.excalidraw .picker-container button:active,.excalidraw .picker button:active{background-color:var(--button-gray-3)}.excalidraw .picker-container button:disabled,.excalidraw .picker button:disabled{cursor:not-allowed}.excalidraw .picker-container button svg,.excalidraw .picker button svg{margin:0;width:36px;height:18px;pointer-events:none}.excalidraw .picker button{padding:.25rem .28rem .35rem .25rem}.excalidraw .picker-triangle{width:0;height:0;position:relative;top:-10px;z-index:10}:root[dir=ltr] .excalidraw .picker-triangle{left:12px}:root[dir=rtl] .excalidraw .picker-triangle{right:12px}.excalidraw .picker-triangle:before{content:"";position:absolute;border-style:solid;border-width:0 9px 10px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,.1);top:-1px}.excalidraw .picker-triangle:after{content:"";position:absolute;border-style:solid;border-width:0 9px 10px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) var(--popup-bg-color)}.excalidraw .picker-content{padding:.5rem;display:grid;grid-template-columns:repeat(3, auto);grid-gap:.5rem;border-radius:4px}:root[dir=rtl] .excalidraw .picker-content{padding:.4rem}.excalidraw .picker-keybinding{position:absolute;bottom:2px;font-size:.7em;color:var(--keybinding-color)}:root[dir=ltr] .excalidraw .picker-keybinding{right:2px}:root[dir=rtl] .excalidraw .picker-keybinding{left:2px}.excalidraw--mobile.excalidraw .picker-keybinding{display:none}.excalidraw .picker-type-canvasBackground .picker-keybinding{color:#aaa}.excalidraw .picker-type-elementBackground .picker-keybinding{color:#fff}.excalidraw .picker-swatch[aria-label=transparent] .picker-keybinding{color:#aaa}.excalidraw .picker-type-elementStroke .picker-keybinding{color:#d4d4d4}.excalidraw.theme--dark .picker-type-elementBackground .picker-keybinding{color:#000}.excalidraw.theme--dark .picker-swatch[aria-label=transparent] .picker-keybinding{color:#000}',""]),t.Z=a},7369:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .Island{--padding: 0;box-sizing:border-box;background-color:var(--island-bg-color);box-shadow:var(--shadow-island);border-radius:var(--border-radius-lg);padding:calc(var(--padding)*var(--space-factor));position:relative;transition:box-shadow .5s ease-in-out}.excalidraw .Island.zen-mode{box-shadow:none}",""]),t.Z=a},1434:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .layer-ui__wrapper.animate{transition:width .1s ease-in-out}.excalidraw .layer-ui__wrapper{position:absolute;width:100%;height:100%;pointer-events:none;z-index:var(--zIndex-layerUI)}.excalidraw .layer-ui__wrapper__top-right{display:flex;gap:.75rem}.excalidraw .layer-ui__wrapper__footer{width:100%}.excalidraw .layer-ui__wrapper__footer-right{z-index:100;display:flex}.excalidraw .layer-ui__wrapper .zen-mode-transition{transition:-webkit-transform .5s ease-in-out;transition:transform .5s ease-in-out;transition:transform .5s ease-in-out, -webkit-transform .5s ease-in-out}:root[dir=ltr] .excalidraw .layer-ui__wrapper .zen-mode-transition.transition-left{-webkit-transform:translate(-999px, 0);transform:translate(-999px, 0)}:root[dir=ltr] .excalidraw .layer-ui__wrapper .zen-mode-transition.transition-right{-webkit-transform:translate(999px, 0);transform:translate(999px, 0)}:root[dir=rtl] .excalidraw .layer-ui__wrapper .zen-mode-transition.transition-left{-webkit-transform:translate(999px, 0);transform:translate(999px, 0)}:root[dir=rtl] .excalidraw .layer-ui__wrapper .zen-mode-transition.transition-right{-webkit-transform:translate(-999px, 0);transform:translate(-999px, 0)}.excalidraw .layer-ui__wrapper .zen-mode-transition.layer-ui__wrapper__footer-left--transition-bottom{-webkit-transform:translate(0, 92px);transform:translate(0, 92px)}.excalidraw .layer-ui__wrapper .disable-zen-mode{height:30px;position:absolute;bottom:10px;font-size:10px;padding:10px;font-weight:500;opacity:0;visibility:hidden;transition:visibility 0s linear 0s,opacity .5s}[dir=ltr] .excalidraw .layer-ui__wrapper .disable-zen-mode{right:15px}[dir=rtl] .excalidraw .layer-ui__wrapper .disable-zen-mode{left:15px}.excalidraw .layer-ui__wrapper .disable-zen-mode--visible{opacity:1;visibility:visible;transition:visibility 0s linear 300ms,opacity .5s;transition-delay:.8s}.excalidraw .layer-ui__wrapper .layer-ui__wrapper__footer-center{pointer-events:none}.excalidraw .layer-ui__wrapper .layer-ui__wrapper__footer-center>*{pointer-events:all}.excalidraw .layer-ui__wrapper .layer-ui__wrapper__footer-left,.excalidraw .layer-ui__wrapper .layer-ui__wrapper__footer-right,.excalidraw .layer-ui__wrapper .disable-zen-mode--visible{pointer-events:all}.excalidraw .layer-ui__wrapper .layer-ui__wrapper__footer-right{margin-top:auto;margin-bottom:auto}",""]),t.Z=a},2316:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.library-button{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--default-button-size);height:var(--default-button-size);box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--default-border-color);border-radius:var(--border-radius-lg);cursor:pointer;background-color:rgba(0,0,0,0);color:var(--text-primary-color);background-color:var(--island-bg-color);width:auto;height:var(--lg-button-size);display:flex;align-items:center;gap:.5rem;line-height:0;font-size:.75rem;letter-spacing:.4px}.library-button:hover{background-color:var(--button-hover)}.library-button:active{background-color:var(--button-hover);border-color:var(--color-primary-darkest)}.library-button.active{background-color:var(--color-primary-light);border-color:var(--color-primary-light)}.library-button.active:hover{background-color:var(--color-primary-light)}.library-button.active svg{color:var(--color-primary-darker)}.library-button svg{width:var(--lg-icon-size);height:var(--lg-icon-size)}.library-button__label{display:none}@media screen and (min-width: 1024px){.library-button__label{display:block}}",""]),t.Z=a},8923:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .layer-ui__library-sidebar{display:flex;flex-direction:column}.excalidraw .layer-ui__library{display:flex;flex-direction:column;flex:1 1 auto}.excalidraw .layer-ui__library .layer-ui__library-header{display:flex;align-items:center;width:100%;margin:2px 0 15px 0}.excalidraw .layer-ui__library .layer-ui__library-header .Spinner{margin-right:1rem}.excalidraw .layer-ui__library .layer-ui__library-header button{margin:0 2px}.excalidraw .layer-ui__sidebar .library-menu-items-container{height:100%;width:100%}.excalidraw .library-actions-counter{background-color:var(--color-primary);color:var(--color-primary-light);font-weight:bold;display:flex;align-items:center;justify-content:center;border-radius:50%;width:1rem;height:1rem;position:absolute;bottom:-0.25rem;right:-0.25rem;font-size:.625rem;pointer-events:none}.excalidraw .layer-ui__library-message{padding:2rem;min-width:200px;display:flex;flex-direction:column;align-items:center;flex-grow:1;justify-content:center}.excalidraw .layer-ui__library-message span{font-size:.8em}.excalidraw .publish-library-success .Dialog__content{display:flex;flex-direction:column}.excalidraw .publish-library-success-close.ToolIcon_type_button{background-color:#228be6;align-self:flex-end}.excalidraw .publish-library-success-close.ToolIcon_type_button:hover{background-color:#1971c2}.excalidraw .publish-library-success-close.ToolIcon_type_button .ToolIcon__icon{width:auto;font-size:1rem;color:#fff;padding:0 .5rem}.excalidraw .library-menu-browse-button{margin:1rem auto;padding:.875rem 1rem;display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative;border-radius:var(--border-radius-lg);background-color:var(--color-primary);color:#fff;text-align:center;white-space:nowrap;text-decoration:none !important;font-weight:600;font-size:.75rem}.excalidraw .library-menu-browse-button:hover{background-color:var(--color-primary-darker)}.excalidraw .library-menu-browse-button:active{background-color:var(--color-primary-darkest)}.excalidraw.theme--dark .library-menu-browse-button{color:var(--color-gray-100)}.excalidraw .library-menu-browse-button--mobile{min-height:22px;margin-left:auto}.excalidraw .library-menu-browse-button--mobile a{padding-right:0}",""]),t.Z=a},6440:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw{--container-padding-y: 1.5rem;--container-padding-x: 0.75rem}.excalidraw .library-menu-items__no-items{text-align:center;color:var(--color-gray-70);line-height:1.5;font-size:.875rem;width:100%}.excalidraw .library-menu-items__no-items__label{color:var(--color-primary);font-weight:bold;font-size:1.125rem;margin-bottom:.75rem}.excalidraw.theme--dark .library-menu-items__no-items{color:var(--color-gray-40)}.excalidraw .library-menu-items-container{display:flex;flex-grow:1;flex-shrink:1;flex-basis:0;overflow-y:auto;flex-direction:column;height:100%;justify-content:center;margin:0;border-bottom:1px solid var(--sidebar-border-color);position:relative}.excalidraw .library-menu-items-container__row{display:grid;grid-template-columns:repeat(4, 1fr);gap:1rem}.excalidraw .library-menu-items-container__items{row-gap:.5rem;padding:var(--container-padding-y) var(--container-padding-x);flex:1;overflow-y:auto;overflow-x:hidden;margin-bottom:1rem}.excalidraw .library-menu-items-container__header{color:var(--color-primary);font-size:1.125rem;font-weight:bold;margin-bottom:.75rem}.excalidraw .library-menu-items-container__header--excal{margin-top:2.5rem}.excalidraw .library-menu-items-container .separator{width:100%;display:flex;align-items:center;font-weight:500;font-size:.9rem;margin:.6em .2em;color:var(--text-primary-color)}",""]),t.Z=a},2701:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .library-unit{align-items:center;border:1px solid rgba(0,0,0,0);display:flex;justify-content:center;position:relative;width:55px;height:55px;box-sizing:border-box;border-radius:var(--border-radius-lg)}.excalidraw .library-unit--hover{border-color:var(--color-primary)}.excalidraw .library-unit--selected{border-color:var(--color-primary);border-width:1px}.excalidraw .library-unit__dragger{display:flex;align-items:center;justify-content:center;height:100%;width:100%}.excalidraw .library-unit__dragger>svg{-webkit-filter:var(--theme-filter);filter:var(--theme-filter);flex-grow:1;max-height:100%;max-width:100%}.excalidraw .library-unit__checkbox-container,.excalidraw .library-unit__checkbox-container:hover,.excalidraw .library-unit__checkbox-container:active{align-items:center;background:none;border:none;color:var(--icon-fill-color);display:flex;justify-content:center;margin:0;padding:.5rem;position:absolute;left:2rem;bottom:2rem;cursor:pointer}.excalidraw .library-unit__checkbox-container input,.excalidraw .library-unit__checkbox-container:hover input,.excalidraw .library-unit__checkbox-container:active input{cursor:pointer}.excalidraw .library-unit__checkbox{position:absolute;top:.125rem;right:.125rem;margin:0}.excalidraw .library-unit__checkbox .Checkbox-box{margin:0;width:1rem;height:1rem;border-radius:4px;background-color:var(--color-primary-light);border:1px solid var(--color-primary);box-shadow:none !important;padding:2px}.excalidraw .library-unit__checkbox.Checkbox:hover .Checkbox-box{background-color:var(--color-primary-light)}.excalidraw .library-unit__checkbox.is-checked .Checkbox-box{background-color:var(--color-primary) !important}.excalidraw .library-unit__checkbox.is-checked .Checkbox-box svg{color:var(--color-primary-light)}.excalidraw .library-unit__removeFromLibrary>svg{height:16px;width:16px}.excalidraw .library-unit__adder{-webkit-transform:scale(1);transform:scale(1);-webkit-animation:library-unit__adder-animation 1s ease-in infinite;animation:library-unit__adder-animation 1s ease-in infinite;position:absolute;width:1.5rem;height:1.5rem;background-color:var(--color-primary);border-radius:var(--border-radius-md);display:flex;justify-content:center;align-items:center;pointer-events:none}.excalidraw .library-unit__adder svg{color:var(--color-primary-light);width:1rem;height:1rem}.excalidraw .library-unit:active .library-unit__adder{-webkit-animation:none;animation:none;-webkit-transform:scale(0.8);transform:scale(0.8)}.excalidraw .library-unit__active{cursor:pointer}@-webkit-keyframes library-unit__adder-animation{0%{-webkit-transform:scale(0.85);transform:scale(0.85)}50%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0.85);transform:scale(0.85)}}@keyframes library-unit__adder-animation{0%{-webkit-transform:scale(0.85);transform:scale(0.85)}50%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0.85);transform:scale(0.85)}}",""]),t.Z=a},4955:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .menu-container{width:240px;background-color:#fff !important;max-height:calc(100vh - 150px);overflow-y:auto}.excalidraw .menu-button{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--default-button-size);height:var(--default-button-size);box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--default-border-color);border-radius:var(--border-radius-lg);cursor:pointer;background-color:rgba(0,0,0,0);color:var(--text-primary-color);background-color:var(--island-bg-color);width:var(--lg-button-size);height:var(--lg-button-size)}.excalidraw .menu-button:hover{background-color:var(--button-hover)}.excalidraw .menu-button:active{background-color:var(--button-hover);border-color:var(--color-primary-darkest)}.excalidraw .menu-button.active{background-color:var(--color-primary-light);border-color:var(--color-primary-light)}.excalidraw .menu-button.active:hover{background-color:var(--color-primary-light)}.excalidraw .menu-button.active svg{color:var(--color-primary-darker)}.excalidraw .menu-button svg{width:var(--lg-icon-size);height:var(--lg-icon-size)}.excalidraw .menu-item{display:flex;background-color:rgba(0,0,0,0);border:0;align-items:center;padding:0 .625rem;height:2rem;-webkit-column-gap:.625rem;column-gap:.625rem;font-size:.875rem;color:var(--color-gray-100);cursor:pointer;border-radius:var(--border-radius-md);width:100%;box-sizing:border-box;font-weight:normal;font-family:inherit}@media screen and (min-width: 1921px){.excalidraw .menu-item{height:2.25rem}}.excalidraw .menu-item__text{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.excalidraw .menu-item__shortcut{-webkit-margin-start:auto;margin-inline-start:auto;opacity:.5}.excalidraw .menu-item:hover{background-color:var(--button-hover);text-decoration:none}.excalidraw .menu-item svg{width:1rem;height:1rem;display:block}.excalidraw .menu-item.active-collab{background-color:#ecfdf5;color:#064e3c}.excalidraw.theme--dark .menu-item{color:var(--color-gray-40)}.excalidraw.theme--dark .menu-item.active-collab{background-color:#064e3c;color:#ecfdf5}.excalidraw.theme--dark .menu-container{background-color:var(--color-gray-90) !important}",""]),t.Z=a},6843:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw.excalidraw-modal-container{position:absolute;z-index:10}.excalidraw .Modal{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center;overflow:auto;padding:calc(var(--space-factor)*10)}.excalidraw .Modal .Island{padding:2.5rem !important}.excalidraw .Modal__background{position:absolute;top:0;left:0;right:0;bottom:0;z-index:1;background-color:rgba(18,18,18,.2)}.excalidraw .Modal__content{position:relative;z-index:2;width:100%;max-width:var(--max-width);max-height:100%;opacity:0;-webkit-transform:translateY(10px);transform:translateY(10px);-webkit-animation:Modal__content_fade-in .1s ease-out .05s forwards;animation:Modal__content_fade-in .1s ease-out .05s forwards;position:relative;overflow-y:auto;background:var(--island-bg-color);border:1px solid var(--dialog-border-color);box-shadow:var(--modal-shadow);border-radius:6px;box-sizing:border-box}.excalidraw .Modal__content:focus{outline:none}.excalidraw--mobile.excalidraw .Modal__content{max-width:100%;border:0;border-radius:0}@-webkit-keyframes Modal__content_fade-in{from{opacity:0;-webkit-transform:translateY(10px);transform:translateY(10px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes Modal__content_fade-in{from{opacity:0;-webkit-transform:translateY(10px);transform:translateY(10px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.excalidraw .Modal__close{color:var(--icon-fill-color);margin:0;padding:.375rem;position:absolute;top:1rem;right:1rem;border:0;background-color:rgba(0,0,0,0);line-height:0;cursor:pointer}.excalidraw .Modal__close svg{width:1.5rem;height:1.5rem}.excalidraw--mobile.excalidraw .Modal{padding:0}.excalidraw--mobile.excalidraw .Modal__content{position:absolute;top:0;left:0;right:0;bottom:0}",""]),t.Z=a},8461:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw--mobile.excalidraw .PasteChartDialog .Island{display:flex;flex-direction:column}.excalidraw .PasteChartDialog .container{display:flex;align-items:center;justify-content:space-around;flex-wrap:wrap}.excalidraw--mobile.excalidraw .PasteChartDialog .container{flex-direction:column;justify-content:center}.excalidraw .PasteChartDialog .ChartPreview{margin:8px;text-align:center;width:192px;height:128px;border-radius:2px;padding:1px;border:1px solid #ced4da;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0)}.excalidraw .PasteChartDialog .ChartPreview div{display:inline-block}.excalidraw .PasteChartDialog .ChartPreview svg{max-height:120px;max-width:186px}.excalidraw .PasteChartDialog .ChartPreview:hover{padding:0;border:2px solid #339af0}",""]),t.Z=a},9935:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .popover{position:absolute;z-index:10;padding:5px 0 5px}",""]),t.Z=a},532:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".ProjectName{margin:auto;display:flex;align-items:center}.ProjectName .TextInput{height:calc(1rem - 3px);width:200px;overflow:hidden;text-align:center;margin-left:8px;text-overflow:ellipsis}.ProjectName .TextInput--readonly{background:none;border:none;width:auto;max-width:200px;padding-left:2px}.ProjectName .TextInput--readonly:hover{background:none}",""]),t.Z=a},7589:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .publish-library__fields{display:flex;flex-direction:column}.excalidraw .publish-library__fields label{padding:1em 0;display:flex;justify-content:space-between;align-items:center}.excalidraw .publish-library__fields label span{font-weight:500;font-size:1rem;color:#868e96}.excalidraw .publish-library__fields label input,.excalidraw .publish-library__fields label textarea{width:70%;padding:.6em;font-family:var(--ui-font)}.excalidraw .publish-library__fields label .required{color:#e03131;margin:.2rem}.excalidraw .publish-library__buttons{display:flex;padding:.2rem 0;justify-content:flex-end;gap:.5rem}.excalidraw .publish-library__buttons .ToolIcon__icon{min-width:2.5rem;width:auto;font-size:1rem}.excalidraw .publish-library__buttons .ToolIcon_type_button{margin-left:1rem;padding:0 .5rem}.excalidraw .publish-library__buttons--confirm.ToolIcon_type_button{background-color:#228be6}.excalidraw .publish-library__buttons--confirm.ToolIcon_type_button:hover{background-color:#1971c2}.excalidraw .publish-library__buttons--cancel.ToolIcon_type_button{background-color:#adb5bd}.excalidraw .publish-library__buttons--cancel.ToolIcon_type_button:hover{background-color:#868e96}.excalidraw .publish-library__buttons .ToolIcon__icon{color:#fff}.excalidraw .publish-library__buttons .ToolIcon__icon .Spinner{--spinner-color: #fff}.excalidraw .publish-library__buttons .ToolIcon__icon .Spinner svg{padding:.5rem}.excalidraw .publish-library .selected-library-items{display:flex;flex-wrap:wrap}.excalidraw .publish-library .selected-library-items .single-library-item-wrapper{width:9rem}.excalidraw .publish-library-warning{color:#fa5252}.excalidraw .publish-library-note{padding:1em 0;font-style:italic;font-size:14px;display:block}",""]),t.Z=a},8208:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .Sidebar__dropdown-content{z-index:1;position:absolute;top:100%;left:0;margin-top:.25rem;width:180px;box-shadow:var(--library-dropdown-shadow);border-radius:var(--border-radius-lg);padding:.25rem .5rem}:root[dir=rtl] .excalidraw .Sidebar__dropdown-content{right:0;left:auto}.excalidraw .Sidebar__close-btn,.excalidraw .Sidebar__pin-btn,.excalidraw .Sidebar__dropdown-btn{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--default-button-size);height:var(--default-button-size);box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--default-border-color);border-radius:var(--border-radius-lg);cursor:pointer;background-color:rgba(0,0,0,0);color:var(--text-primary-color);width:var(--lg-button-size);height:var(--lg-button-size);padding:0}.excalidraw .Sidebar__close-btn:hover,.excalidraw .Sidebar__pin-btn:hover,.excalidraw .Sidebar__dropdown-btn:hover{background-color:var(--button-hover)}.excalidraw .Sidebar__close-btn:active,.excalidraw .Sidebar__pin-btn:active,.excalidraw .Sidebar__dropdown-btn:active{background-color:var(--button-hover);border-color:var(--color-primary-darkest)}.excalidraw .Sidebar__close-btn.active,.excalidraw .Sidebar__pin-btn.active,.excalidraw .Sidebar__dropdown-btn.active{background-color:var(--color-primary-light);border-color:var(--color-primary-light)}.excalidraw .Sidebar__close-btn.active:hover,.excalidraw .Sidebar__pin-btn.active:hover,.excalidraw .Sidebar__dropdown-btn.active:hover{background-color:var(--color-primary-light)}.excalidraw .Sidebar__close-btn.active svg,.excalidraw .Sidebar__pin-btn.active svg,.excalidraw .Sidebar__dropdown-btn.active svg{color:var(--color-primary-darker)}.excalidraw .Sidebar__close-btn svg,.excalidraw .Sidebar__pin-btn svg,.excalidraw .Sidebar__dropdown-btn svg{width:var(--lg-icon-size);height:var(--lg-icon-size)}.excalidraw .Sidebar__pin-btn--pinned{background-color:var(--color-primary);border-color:var(--color-primary)}.excalidraw .Sidebar__pin-btn--pinned svg{color:#fff}.excalidraw .Sidebar__pin-btn--pinned:hover,.excalidraw .Sidebar__pin-btn--pinned:active{background-color:var(--color-primary-darker)}.excalidraw.theme--dark .Sidebar__pin-btn--pinned svg{color:var(--color-gray-90)}.excalidraw .layer-ui__sidebar{position:absolute;top:0;bottom:0;right:0;z-index:5;margin:0;background-color:var(--sidebar-bg-color);box-shadow:var(--sidebar-shadow);overflow:hidden;border-radius:0;width:calc(302px - var(--space-factor) * 2);border-left:1px solid var(--sidebar-border-color);padding:0;box-sizing:border-box}:root[dir=rtl] .excalidraw .layer-ui__sidebar{left:0;right:auto}.excalidraw .layer-ui__sidebar--docked{box-shadow:none}:root[dir=rtl] .excalidraw .layer-ui__sidebar{border-right:1px solid var(--sidebar-border-color);border-left:0}.excalidraw .layer-ui__sidebar .Island{box-shadow:none}.excalidraw .layer-ui__sidebar .ToolIcon__icon{border-radius:var(--border-radius-md)}.excalidraw .layer-ui__sidebar .ToolIcon__icon__close .Modal__close{width:calc(var(--space-factor)*7);height:calc(var(--space-factor)*7);display:flex;justify-content:center;align-items:center;color:var(--color-text)}.excalidraw .layer-ui__sidebar .Island{--padding: 0;background-color:var(--island-bg-color);border-radius:var(--border-radius-lg);padding:calc(var(--padding)*var(--space-factor));position:relative;transition:box-shadow .5s ease-in-out}.excalidraw .layer-ui__sidebar__header{box-sizing:border-box;display:flex;justify-content:space-between;align-items:center;width:100%;padding:1rem;border-bottom:1px solid var(--sidebar-border-color)}.excalidraw .layer-ui__sidebar__header__buttons{display:flex;align-items:center;gap:.625rem}",""]),t.Z=a},8465:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .single-library-item{position:relative}.excalidraw .single-library-item-status{position:absolute;top:.3rem;left:.3rem;font-size:.7rem;color:#f03e3e;background:rgba(255,255,255,.9);padding:.1rem .2rem;border-radius:.2rem}.excalidraw .single-library-item__svg{background-color:#fff;padding:.3rem;width:7.5rem;height:7.5rem;border:1px solid var(--button-gray-2)}.excalidraw .single-library-item__svg svg{width:100%;height:100%}.excalidraw .single-library-item .ToolIcon__icon{background-color:#fff;width:auto;height:auto;margin:0 .5rem}.excalidraw .single-library-item .ToolIcon,.excalidraw .single-library-item .ToolIcon_type_button:hover{background-color:#fff}.excalidraw .single-library-item .required,.excalidraw .single-library-item .error{color:#e03131;font-weight:bold;font-size:1rem;margin:.2rem}.excalidraw .single-library-item .error{font-weight:500;margin:0;padding:.3em 0}.excalidraw .single-library-item--remove{position:absolute;top:.2rem;right:1rem}.excalidraw .single-library-item--remove .ToolIcon__icon{margin:0}.excalidraw .single-library-item--remove .ToolIcon__icon{background-color:#fa5252}.excalidraw .single-library-item--remove .ToolIcon__icon:hover{background-color:#f03e3e}.excalidraw .single-library-item--remove .ToolIcon__icon:active{background-color:#e03131}.excalidraw .single-library-item--remove svg{color:#fff;padding:.26rem;border-radius:.3em;width:1rem;height:1rem}",""]),t.Z=a},5892:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .Spinner{display:flex;align-items:center;justify-content:center;height:100%;margin-left:auto;margin-right:auto;--spinner-color: var(--icon-fill-color)}.excalidraw .Spinner svg{-webkit-animation:rotate 1.6s linear infinite;animation:rotate 1.6s linear infinite;-webkit-transform-origin:center center;transform-origin:center center}.excalidraw .Spinner circle{stroke:var(--spinner-color);-webkit-animation:dash 1.6s linear 0s infinite;animation:dash 1.6s linear 0s infinite;stroke-linecap:round}@-webkit-keyframes rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes dash{0%{stroke-dasharray:1,300;stroke-dashoffset:0}50%{stroke-dasharray:150,300;stroke-dashoffset:-200}100%{stroke-dasharray:1,300;stroke-dashoffset:-280}}@keyframes dash{0%{stroke-dasharray:1,300;stroke-dashoffset:0}50%{stroke-dasharray:150,300;stroke-dashoffset:-200}100%{stroke-dasharray:1,300;stroke-dashoffset:-280}}",""]),t.Z=a},3874:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .Stack{--gap: 0;display:grid;gap:calc(var(--space-factor)*var(--gap))}.excalidraw .Stack_vertical{grid-template-columns:auto;grid-auto-flow:row;grid-auto-rows:-webkit-min-content;grid-auto-rows:min-content}.excalidraw .Stack_horizontal{grid-template-rows:auto;grid-auto-flow:column;grid-auto-columns:-webkit-min-content;grid-auto-columns:min-content}",""]),t.Z=a},2681:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .Stats{position:absolute;top:64px;right:12px;font-size:12px;z-index:10;pointer-events:all}.excalidraw .Stats h3{margin:0 24px 8px 0;white-space:nowrap}.excalidraw .Stats .close{float:right;height:16px;width:16px;cursor:pointer}.excalidraw .Stats .close svg{width:100%;height:100%}.excalidraw .Stats table{width:100%}.excalidraw .Stats table th{border-bottom:1px solid var(--input-border-color);padding:4px}.excalidraw .Stats table tr td:nth-child(2){min-width:24px;text-align:right}:root[dir=rtl] .excalidraw .Stats{left:12px;right:initial}:root[dir=rtl] .excalidraw .Stats h3{margin:0 0 8px 24px}:root[dir=rtl] .excalidraw .Stats .close{float:left}",""]),t.Z=a},6759:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .TextInput{display:inline-block}",""]),t.Z=a},9650:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .Toast{-webkit-animation:fade-in .5s;animation:fade-in .5s;background-color:var(--button-gray-1);border-radius:4px;bottom:10px;box-sizing:border-box;cursor:default;left:50%;margin-left:-150px;padding:4px 0;position:absolute;text-align:center;width:300px;z-index:999999}.excalidraw .Toast .Toast__message{padding:0 1.6rem;color:var(--popup-text-color);white-space:pre-wrap}.excalidraw .Toast .close{position:absolute;top:0;right:0;padding:.4rem}.excalidraw .Toast .close .ToolIcon__icon{width:1.2rem;height:1.2rem}@-webkit-keyframes fade-in{from{opacity:0}to{opacity:1}}@keyframes fade-in{from{opacity:0}to{opacity:1}}",""]),t.Z=a},2044:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .ToolIcon{border-radius:var(--border-radius-lg);display:inline-flex;align-items:center;position:relative;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-user-select:none;user-select:none}.excalidraw .ToolIcon__hidden{display:none !important}.excalidraw .ToolIcon.fillable .ToolIcon_type_radio:checked+.ToolIcon__icon,.excalidraw .ToolIcon.fillable .ToolIcon_type_checkbox:checked+.ToolIcon__icon{--icon-fill-color: var(--color-primary-darker)}.excalidraw .ToolIcon.fillable .ToolIcon_type_radio:checked+.ToolIcon__icon svg,.excalidraw .ToolIcon.fillable .ToolIcon_type_checkbox:checked+.ToolIcon__icon svg{fill:var(--icon-fill-color)}.excalidraw .ToolIcon .ToolIcon_type_radio:checked+.ToolIcon__icon,.excalidraw .ToolIcon .ToolIcon_type_checkbox:checked+.ToolIcon__icon{background:var(--color-primary-light);--keybinding-color: var(--color-gray-60)}.excalidraw .ToolIcon .ToolIcon_type_radio:checked+.ToolIcon__icon svg,.excalidraw .ToolIcon .ToolIcon_type_checkbox:checked+.ToolIcon__icon svg{color:var(--color-primary-darker)}.excalidraw .ToolIcon .ToolIcon__keybinding{bottom:4px;right:4px}.excalidraw .ToolIcon .ToolIcon__icon:hover{background:var(--button-hover)}.excalidraw .ToolIcon .ToolIcon__icon:active{background:var(--button-hover);border:1px solid var(--color-primary-darkest)}.excalidraw .ToolIcon--plain{background-color:rgba(0,0,0,0)}.excalidraw .ToolIcon--plain .ToolIcon__icon{width:2rem;height:2rem}.excalidraw .ToolIcon_type_radio,.excalidraw .ToolIcon_type_checkbox{position:absolute;opacity:0;pointer-events:none}.excalidraw .ToolIcon__icon{box-sizing:border-box;width:var(--default-button-size);height:var(--default-button-size);color:var(--icon-fill-color);display:flex;justify-content:center;align-items:center;border-radius:var(--border-radius-lg)}.excalidraw .ToolIcon__icon+.ToolIcon__label{-webkit-margin-start:0;margin-inline-start:0}.excalidraw .ToolIcon__icon svg{position:relative;width:var(--default-icon-size);height:var(--default-icon-size);color:var(--icon-fill-color)}.excalidraw .ToolIcon__label{display:flex;align-items:center;color:var(--icon-fill-color);font-family:var(--ui-font);margin:0 .8em;text-overflow:ellipsis}.excalidraw .ToolIcon__label .Spinner{margin-left:.6em}.excalidraw .ToolIcon_size_small .ToolIcon__icon{width:2rem;height:2rem;font-size:.8em}.excalidraw .ToolIcon_type_button,.excalidraw .Modal .ToolIcon_type_button,.excalidraw .ToolIcon_type_button{padding:0;border:none;margin:0;font-size:inherit;background-color:initial}.excalidraw .ToolIcon_type_button:focus-visible,.excalidraw .Modal .ToolIcon_type_button:focus-visible,.excalidraw .ToolIcon_type_button:focus-visible{box-shadow:0 0 0 2px var(--focus-highlight-color)}.excalidraw .ToolIcon_type_button.ToolIcon--selected,.excalidraw .Modal .ToolIcon_type_button.ToolIcon--selected,.excalidraw .ToolIcon_type_button.ToolIcon--selected{background-color:var(--button-gray-2)}.excalidraw .ToolIcon_type_button.ToolIcon--selected:active,.excalidraw .Modal .ToolIcon_type_button.ToolIcon--selected:active,.excalidraw .ToolIcon_type_button.ToolIcon--selected:active{background-color:var(--button-gray-3)}.excalidraw .ToolIcon_type_button:active,.excalidraw .Modal .ToolIcon_type_button:active,.excalidraw .ToolIcon_type_button:active{background-color:var(--button-gray-3)}.excalidraw .ToolIcon_type_button--show,.excalidraw .Modal .ToolIcon_type_button--show,.excalidraw .ToolIcon_type_button--show{visibility:visible}.excalidraw .ToolIcon_type_button--hide,.excalidraw .Modal .ToolIcon_type_button--hide,.excalidraw .ToolIcon_type_button--hide{display:none !important}.excalidraw .ToolIcon_type_floating{background-color:rgba(0,0,0,0)}.excalidraw .ToolIcon_type_floating:hover{background-color:rgba(0,0,0,0)}.excalidraw .ToolIcon_type_floating:active{background-color:rgba(0,0,0,0)}.excalidraw .ToolIcon_type_floating .ToolIcon__icon{background-color:var(--button-gray-1);width:2rem;height:2rem}.excalidraw .ToolIcon_type_floating .ToolIcon__icon:hover{background-color:var(--button-gray-2)}.excalidraw .ToolIcon_type_floating .ToolIcon__icon:active{background-color:var(--button-gray-3)}.excalidraw .ToolIcon__keybinding{position:absolute;bottom:2px;right:3px;font-size:.625rem;color:var(--keybinding-color);font-family:var(--ui-font);-webkit-user-select:none;user-select:none}:root[dir=ltr] .excalidraw .unlocked-icon{left:2px}:root[dir=rtl] .excalidraw .unlocked-icon{right:2px}.excalidraw .App-toolbar-container .ToolIcon__icon{width:var(--lg-button-size);height:var(--lg-button-size)}.excalidraw .App-toolbar-container .ToolIcon__icon svg{width:var(--lg-icon-size);height:var(--lg-icon-size)}",""]),t.Z=a},9144:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .App-toolbar.zen-mode .ToolIcon__keybinding,.excalidraw .App-toolbar.zen-mode .HintViewer{display:none}.excalidraw .App-toolbar__divider{width:1px;height:1.5rem;align-self:center;background-color:var(--default-border-color);margin:0 .5rem}",""]),t.Z=a},6626:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw-tooltip{position:fixed;z-index:1000;padding:8px;border-radius:6px;box-sizing:border-box;pointer-events:none;word-wrap:break-word;background:#000;line-height:1.5;text-align:center;font-size:13px;font-weight:500;color:#fff;display:none}.excalidraw-tooltip.excalidraw-tooltip--visible{display:block}.excalidraw-tooltip-wrapper{display:flex}.excalidraw-tooltip-icon{width:.9em;height:.9em;margin-left:5px;margin-top:1px;display:flex}.excalidraw--mobile.excalidraw-tooltip-icon{display:none}",""]),t.Z=a},6359:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .UserList{pointer-events:none;padding:var(--space-factor) var(--space-factor) var(--space-factor) var(--space-factor);display:flex;flex-wrap:wrap;justify-content:flex-end;gap:.625rem;max-height:140px;max-width:290px;overflow:hidden}.excalidraw .UserList:empty{display:none}.excalidraw .UserList>*{pointer-events:all}.excalidraw .UserList_mobile{padding:0;justify-content:normal;margin:.5rem 0}",""]),t.Z=a},846:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,'.excalidraw .virgil{font-family:"Virgil"}.excalidraw .WelcomeScreen-logo{display:flex;align-items:center;-webkit-column-gap:.75rem;column-gap:.75rem;font-size:2.25rem}.excalidraw .WelcomeScreen-logo svg{width:1.625rem;height:auto}.excalidraw .WelcomeScreen-decor{pointer-events:none;color:var(--color-gray-40)}.excalidraw .WelcomeScreen-decor--subheading{font-size:1.125rem;text-align:center}.excalidraw .WelcomeScreen-decor--help-pointer{display:flex;position:absolute;right:0;bottom:100%}:root[dir=rtl] .excalidraw .WelcomeScreen-decor--help-pointer{left:0;right:auto}.excalidraw .WelcomeScreen-decor--help-pointer svg{margin-top:.5rem;width:85px;height:71px;-webkit-transform:scaleX(-1) rotate(80deg);transform:scaleX(-1) rotate(80deg)}:root[dir=rtl] .excalidraw .WelcomeScreen-decor--help-pointer svg{-webkit-transform:rotate(80deg);transform:rotate(80deg)}.excalidraw .WelcomeScreen-decor--top-toolbar-pointer{position:absolute;top:100%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin-top:2.5rem;display:flex;align-items:baseline}.excalidraw .WelcomeScreen-decor--top-toolbar-pointer__label{width:120px;position:relative;top:-0.5rem}.excalidraw .WelcomeScreen-decor--top-toolbar-pointer svg{width:38px;height:78px}:root[dir=rtl] .excalidraw .WelcomeScreen-decor--top-toolbar-pointer svg{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.excalidraw .WelcomeScreen-decor--menu-pointer{position:absolute;width:320px;font-size:1rem;top:100%;margin-top:.25rem;-webkit-margin-start:.6rem;margin-inline-start:.6rem;display:flex;align-items:flex-end;gap:.5rem}.excalidraw .WelcomeScreen-decor--menu-pointer svg{width:41px;height:94px}:root[dir=rtl] .excalidraw .WelcomeScreen-decor--menu-pointer svg{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.excalidraw .WelcomeScreen-container{display:flex;flex-direction:column;gap:2rem;justify-content:center;align-items:center;position:absolute;pointer-events:none;left:1rem;top:1rem;right:1rem;bottom:1rem}.excalidraw .WelcomeScreen-items{display:flex;flex-direction:column;gap:2px;justify-content:center;align-items:center}.excalidraw .WelcomeScreen-item{box-sizing:border-box;pointer-events:all;color:var(--color-gray-50);font-size:.875rem;min-width:300px;display:flex;align-items:center;justify-content:space-between;background:none;border:none;padding:.75rem;border-radius:var(--border-radius-md)}.excalidraw .WelcomeScreen-item__label{display:flex;align-items:center;-webkit-column-gap:.5rem;column-gap:.5rem}.excalidraw .WelcomeScreen-item__label svg{width:var(--default-icon-size);height:var(--default-icon-size)}.excalidraw .WelcomeScreen-item__shortcut{color:var(--color-gray-40);font-size:.75rem}.excalidraw:not(:active) .WelcomeScreen-item:hover{text-decoration:none;background:var(--color-gray-10)}.excalidraw:not(:active) .WelcomeScreen-item:hover .WelcomeScreen-item__shortcut{color:var(--color-gray-50)}.excalidraw:not(:active) .WelcomeScreen-item:hover .WelcomeScreen-item__label{color:var(--color-gray-100)}.excalidraw .WelcomeScreen-item:active{background:var(--color-gray-20)}.excalidraw .WelcomeScreen-item:active .WelcomeScreen-item__shortcut{color:var(--color-gray-50)}.excalidraw .WelcomeScreen-item:active .WelcomeScreen-item__label{color:var(--color-gray-100)}.excalidraw .WelcomeScreen-item:active--promo{color:var(--color-promo) !important}.excalidraw .WelcomeScreen-item:active--promo:hover .WelcomeScreen-item__label{color:var(--color-promo) !important}.excalidraw.theme--dark .WelcomeScreen-decor{color:var(--color-gray-60)}.excalidraw.theme--dark .WelcomeScreen-item{color:var(--color-gray-60)}.excalidraw.theme--dark .WelcomeScreen-item__shortcut{color:var(--color-gray-60)}.excalidraw.theme--dark:not(:active) .WelcomeScreen-item:hover{background:var(--color-gray-85)}.excalidraw.theme--dark:not(:active) .WelcomeScreen-item:hover .WelcomeScreen-item__shortcut{color:var(--color-gray-50)}.excalidraw.theme--dark:not(:active) .WelcomeScreen-item:hover .WelcomeScreen-item__label{color:var(--color-gray-10)}.excalidraw.theme--dark .WelcomeScreen-item:active{background-color:var(--color-gray-90)}.excalidraw.theme--dark .WelcomeScreen-item:active .WelcomeScreen-item__label{color:var(--color-gray-10)}@media(max-width: 1024px){.excalidraw .WelcomeScreen-decor--help-pointer,.excalidraw .WelcomeScreen-decor--menu-pointer{display:none}}@media(max-height: 599px){.excalidraw .WelcomeScreen-container{margin-top:4rem}}@media(min-height: 600px)and (max-height: 900px){.excalidraw .WelcomeScreen-container{margin-top:8rem}}@media(max-height: 630px){.excalidraw .WelcomeScreen-decor--top-toolbar-pointer{display:none}}@media(max-height: 500px){.excalidraw .WelcomeScreen-container{display:none}}',""]),t.Z=a},9915:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".visually-hidden{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);white-space:nowrap;-webkit-user-select:none;user-select:none}.LoadingMessage{position:absolute;top:0;right:0;bottom:0;left:0;z-index:999;display:flex;flex-direction:column;align-items:center;justify-content:center;pointer-events:none}.LoadingMessage .Spinner{font-size:2.8em}.LoadingMessage .LoadingMessage-text{margin-top:1em;font-size:.8em}.LoadingMessage--dark{background-color:#121212;color:#ced4da}",""]),t.Z=a},9310:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i),l=n(1667),s=n.n(l),c=new URL(n(7984),n.b),u=new URL(n(1639),n.b),d=a()(o()),p=s()(c),f=s()(u);d.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}:export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw{--theme-filter: none;--button-destructive-bg-color: #ffe3e3;--button-destructive-color: #c92a2a;--button-gray-1: #e9ecef;--button-gray-2: #ced4da;--button-gray-3: #adb5bd;--button-special-active-bg-color: #ebfbee;--dialog-border-color: var(--color-gray-20);--dropdown-icon: url("+p+");--focus-highlight-color: #a5d8ff;--icon-fill-color: var(--color-gray-80);--icon-green-fill-color: #2b8a3e;--default-bg-color: #ffffff;--input-bg-color: #ffffff;--input-border-color: #ced4da;--input-hover-bg-color: #f1f3f5;--input-label-color: #495057;--island-bg-color: rgba(255, 255, 255, 0.96);--keybinding-color: var(--color-gray-40);--link-color: #1c7ed6;--overlay-bg-color: rgba(255, 255, 255, 0.88);--popup-bg-color: #ffffff;--popup-secondary-bg-color: #f1f3f5;--popup-text-color: #000000;--popup-text-inverted-color: #ffffff;--sab: env(safe-area-inset-bottom);--sal: env(safe-area-inset-left);--sar: env(safe-area-inset-right);--sat: env(safe-area-inset-top);--select-highlight-color: #339af0;--shadow-island: 0px 7px 14px rgba(0, 0, 0, 0.05), 0px 0px 3.12708px rgba(0, 0, 0, 0.0798), 0px 0px 0.931014px rgba(0, 0, 0, 0.1702);--button-hover: var(--color-gray-10);--default-border-color: var(--color-gray-30);--default-button-size: 2rem;--default-icon-size: 1rem;--lg-button-size: 2.25rem;--lg-icon-size: 1rem;--scrollbar-thumb: var(--button-gray-2);--scrollbar-thumb-hover: var(--button-gray-3);--modal-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);--avatar-border-color: var(--color-gray-20);--sidebar-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);--sidebar-border-color: var(--color-gray-20);--sidebar-bg-color: #fff;--library-dropdown-shadow: 0px 15px 6px rgba(0, 0, 0, 0.01), 0px 8px 5px rgba(0, 0, 0, 0.05), 0px 4px 4px rgba(0, 0, 0, 0.09), 0px 1px 2px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);--space-factor: 0.25rem;--text-primary-color: var(--color-gray-80);--color-selection: #6965db;--color-primary: #6965db;--color-primary-darker: #5b57d1;--color-primary-darkest: #4a47b1;--color-primary-light: #e3e2fe;--color-gray-10: #f5f5f5;--color-gray-20: #ebebeb;--color-gray-30: #d6d6d6;--color-gray-40: #b8b8b8;--color-gray-50: #999999;--color-gray-60: #7a7a7a;--color-gray-70: #5c5c5c;--color-gray-80: #3d3d3d;--color-gray-85: #242424;--color-gray-90: #1e1e1e;--color-gray-100: #121212;--color-danger: #db6965;--color-promo: #e70078;--border-radius-md: 0.375rem;--border-radius-lg: 0.5rem}@media screen and (min-device-width: 1921px){.excalidraw{--lg-button-size: 2.5rem;--lg-icon-size: 1.25rem;--default-button-size: 2.25rem;--default-icon-size: 1.25rem}}.excalidraw.theme--dark.theme--dark-background-none{background:none}.excalidraw.theme--dark{--theme-filter: invert(93%) hue-rotate(180deg);--button-destructive-bg-color: #5a0000;--button-destructive-color: #ffa8a8;--button-gray-1: #363636;--button-gray-2: #272727;--button-gray-3: #222;--button-special-active-bg-color: #204624;--dialog-border-color: var(--color-gray-80);--dropdown-icon: url("+f+');--focus-highlight-color: #228be6;--icon-fill-color: var(--color-gray-40);--icon-green-fill-color: #69db7c;--default-bg-color: #121212;--input-bg-color: #121212;--input-border-color: #2e2e2e;--input-hover-bg-color: #181818;--input-label-color: #e9ecef;--island-bg-color: #262627;--keybinding-color: var(--color-gray-60);--link-color: #4dabf7;--overlay-bg-color: rgba(52, 58, 64, 0.12);--popup-bg-color: #2c2c2c;--popup-secondary-bg-color: #222;--popup-text-color: #ced4da;--popup-text-inverted-color: #2c2c2c;--select-highlight-color: #4dabf7;--text-primary-color: var(--color-gray-40);--button-hover: var(--color-gray-80);--default-border-color: var(--color-gray-80);--shadow-island: 0px 13px 33px rgba(0, 0, 0, 0.07), 0px 4.13px 9.94853px rgba(0, 0, 0, 0.0456112), 0px 1.13px 4.13211px rgba(0, 0, 0, 0.035), 0px 0.769896px 1.4945px rgba(0, 0, 0, 0.0243888);--modal-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);--avatar-border-color: var(--color-gray-85);--sidebar-border-color: var(--color-gray-85);--sidebar-bg-color: #191919;--scrollbar-thumb: #343a40;--scrollbar-thumb-hover: #495057;--color-selection: #3530c4;--color-primary: #a8a5ff;--color-primary-darker: #b2aeff;--color-primary-darkest: #beb9ff;--color-primary-light: #4f4d6f;--color-danger: #ffa8a5;--color-promo: #d297ff}:root{--zIndex-canvas: 1;--zIndex-wysiwyg: 2;--zIndex-layerUI: 3}.excalidraw{position:relative;overflow:hidden;color:var(--text-primary-color);display:flex;top:0;bottom:0;left:0;right:0;height:100%;width:100%;-webkit-user-select:none;user-select:none}.excalidraw button{cursor:pointer}.excalidraw:focus{outline:none}.excalidraw a{font-weight:500;text-decoration:none;color:var(--link-color)}.excalidraw a:hover{text-decoration:underline}.excalidraw canvas{touch-action:none;image-rendering:pixelated;image-rendering:-moz-crisp-edges;z-index:var(--zIndex-canvas)}.excalidraw__canvas{position:absolute}.excalidraw.theme--dark canvas{-webkit-filter:var(--theme-filter);filter:var(--theme-filter)}.excalidraw .FixedSideContainer{padding-top:var(--sat, 0);padding-right:var(--sar, 0);padding-bottom:var(--sab, 0);padding-left:var(--sal, 0)}.excalidraw .panelRow{display:flex;justify-content:space-between}.excalidraw .panelColumn{display:flex;flex-direction:column;row-gap:.75rem}.excalidraw .panelColumn h3,.excalidraw .panelColumn legend,.excalidraw .panelColumn .control-label{margin:0;margin-bottom:.25rem;font-size:.75rem;color:var(--text-primary-color);font-weight:normal;display:block}.excalidraw .panelColumn .control-label input{display:block;width:100%}.excalidraw .panelColumn legend{padding:0}.excalidraw .panelColumn .iconSelectList{flex-wrap:wrap;position:relative}.excalidraw .panelColumn .buttonList{flex-wrap:wrap;display:flex;-webkit-column-gap:.5rem;column-gap:.5rem;row-gap:.5rem}.excalidraw .panelColumn .buttonList label{font-size:.75rem}.excalidraw .panelColumn .buttonList input[type=radio],.excalidraw .panelColumn .buttonList input[type=button]{opacity:0;position:absolute;pointer-events:none}.excalidraw .panelColumn .buttonList .iconRow{margin-top:8px}.excalidraw .panelColumn fieldset{margin:0;padding:0;border:none}.excalidraw .divider{width:1px;background-color:#e9ecef;margin:1px}.excalidraw .buttonList label:focus-within,.excalidraw input:focus-visible{outline:rgba(0,0,0,0);box-shadow:0 0 0 2px var(--focus-highlight-color)}.excalidraw .buttonList .ToolIcon__icon{all:unset !important;display:flex !important}.excalidraw .buttonList button{background-color:rgba(0,0,0,0)}.excalidraw .buttonList label,.excalidraw .buttonList button,.excalidraw .buttonList .zIndexButton{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--default-button-size);height:var(--default-button-size);box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--default-border-color);border-radius:var(--border-radius-lg);cursor:pointer;background-color:rgba(0,0,0,0);color:var(--text-primary-color);padding:0}.excalidraw .buttonList label:hover,.excalidraw .buttonList button:hover,.excalidraw .buttonList .zIndexButton:hover{background-color:var(--button-hover)}.excalidraw .buttonList label:active,.excalidraw .buttonList button:active,.excalidraw .buttonList .zIndexButton:active{background-color:var(--button-hover);border-color:var(--color-primary-darkest)}.excalidraw .buttonList label.active,.excalidraw .buttonList button.active,.excalidraw .buttonList .zIndexButton.active{background-color:var(--color-primary-light);border-color:var(--color-primary-light)}.excalidraw .buttonList label.active:hover,.excalidraw .buttonList button.active:hover,.excalidraw .buttonList .zIndexButton.active:hover{background-color:var(--color-primary-light)}.excalidraw .buttonList label.active svg,.excalidraw .buttonList button.active svg,.excalidraw .buttonList .zIndexButton.active svg{color:var(--color-primary-darker)}.excalidraw .buttonList label svg,.excalidraw .buttonList button svg,.excalidraw .buttonList .zIndexButton svg{width:var(--default-icon-size);height:var(--default-icon-size)}.excalidraw .App-top-bar{z-index:var(--zIndex-layerUI);display:flex;flex-direction:column;align-items:center}.excalidraw .App-bottom-bar{position:absolute;top:0;bottom:0;left:0;right:0;--bar-padding: calc(4 * var(--space-factor));padding-top:max(var(--bar-padding), var(--sat,0));padding-right:var(--sar, 0);padding-bottom:var(--sab, 0);padding-left:var(--sal, 0);z-index:4;display:flex;align-items:flex-end;pointer-events:none}.excalidraw .App-bottom-bar>.Island{width:100%;max-width:100%;min-width:100%;box-sizing:border-box;max-height:100%;display:flex;flex-direction:column;pointer-events:initial}.excalidraw .App-bottom-bar>.Island .panelColumn{padding:8px 8px 0 8px}.excalidraw .App-toolbar{width:100%}.excalidraw .App-toolbar .eraser.ToolIcon:hover{--icon-fill-color: #fff;--keybinding-color: #fff}.excalidraw .App-toolbar .eraser.active{background-color:var(--color-primary)}.excalidraw .App-toolbar-content{display:flex;align-items:center;justify-content:space-between;padding:8px}.excalidraw .App-mobile-menu{width:100%;overflow-x:visible;overflow-y:auto;box-sizing:border-box;margin-bottom:var(--bar-padding)}.excalidraw .App-menu{display:grid;color:var(--icon-fill-color)}.excalidraw .shapes-section{display:flex;justify-content:center;pointer-events:none !important}.excalidraw .shapes-section>*{pointer-events:all}.excalidraw .App-menu_top{grid-template-columns:1fr 2fr 1fr;grid-gap:2rem;align-items:flex-start;cursor:default;pointer-events:none !important}@media(min-width: 1536px){.excalidraw .App-menu_top{grid-template-columns:1fr 1fr 1fr;grid-gap:3rem}}.excalidraw .layer-ui__wrapper:not(.disable-pointerEvents) .App-menu_top>*{pointer-events:all}.excalidraw .App-menu_top>*:first-child{justify-self:flex-start}.excalidraw .App-menu_top>*:last-child{justify-self:flex-end}.excalidraw .App-menu_bottom{position:absolute;bottom:1rem;display:flex;justify-content:space-between;align-items:flex-start;cursor:default;pointer-events:none !important;box-sizing:border-box;padding:0 1rem}.excalidraw .App-menu_bottom--transition-left section{width:185px}.excalidraw .App-menu_bottom section{display:flex}.excalidraw .App-menu_bottom>*:first-child{justify-self:flex-start}.excalidraw .App-menu_bottom>*:last-child{justify-self:flex-end}.excalidraw .App-menu_left{grid-template-rows:1fr auto 1fr;height:100%}.excalidraw .App-menu_right{grid-template-rows:1fr;height:100%}.excalidraw .App-menu__left{overflow-y:auto;padding:.75rem;width:202px;box-sizing:border-box;position:absolute}.excalidraw .dropdown-select{height:1.5rem;padding:0;-webkit-padding-start:.5rem;padding-inline-start:.5rem;-webkit-padding-end:1.5rem;padding-inline-end:1.5rem;color:var(--icon-fill-color);background-color:var(--button-gray-1);border-radius:var(--space-factor);border:1px solid var(--button-gray-2);font-size:.8rem;outline:none;-webkit-appearance:none;appearance:none;background-image:var(--dropdown-icon);background-repeat:no-repeat;background-position:right .7rem top 50%,0 0;background-size:.65em auto,100%}:root[dir=rtl] .excalidraw .dropdown-select{background-position:left .7rem top 50%,0 0}.excalidraw .dropdown-select:focus{box-shadow:0 0 0 2px var(--focus-highlight-color)}.excalidraw .dropdown-select:hover{background-color:var(--button-gray-2)}.excalidraw .dropdown-select:active{background-color:var(--button-gray-2)}.excalidraw .dropdown-select__language{height:2rem;background-color:var(--island-bg-color);border-color:var(--default-border-color) !important;cursor:pointer}.excalidraw .dropdown-select__language:hover{background-color:var(--island-bg-color)}.excalidraw .disable-zen-mode{border-radius:var(--border-radius-lg);background-color:var(--color-gray-20);border:1px solid var(--color-gray-30);padding:10px 20px}.excalidraw .disable-zen-mode:hover{background-color:var(--color-gray-30)}.excalidraw .scroll-back-to-content{border-radius:var(--border-radius-lg);background-color:var(--island-bg-color);color:var(--icon-fill-color);border:1px solid var(--default-border-color);padding:10px 20px;position:absolute;left:50%;bottom:30px;-webkit-transform:translateX(-50%);transform:translateX(-50%);pointer-events:all}.excalidraw .scroll-back-to-content:hover{background-color:var(--button-hover)}.excalidraw .scroll-back-to-content:active{border:1px solid var(--color-primary-darkest)}.excalidraw .help-icon{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--default-button-size);height:var(--default-button-size);box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--default-border-color);border-radius:var(--border-radius-lg);cursor:pointer;background-color:rgba(0,0,0,0);color:var(--text-primary-color);background-color:var(--island-bg-color);width:var(--lg-button-size);height:var(--lg-button-size)}.excalidraw .help-icon:hover{background-color:var(--button-hover)}.excalidraw .help-icon:active{background-color:var(--button-hover);border-color:var(--color-primary-darkest)}.excalidraw .help-icon.active{background-color:var(--color-primary-light);border-color:var(--color-primary-light)}.excalidraw .help-icon.active:hover{background-color:var(--color-primary-light)}.excalidraw .help-icon.active svg{color:var(--color-primary-darker)}.excalidraw .help-icon svg{width:var(--lg-icon-size);height:var(--lg-icon-size)}.excalidraw .reset-zoom-button{font-family:var(--ui-font)}.excalidraw .finalize-button{display:grid;grid-auto-flow:column;gap:.4em;margin-top:auto;margin-bottom:auto;-webkit-margin-start:.6em;margin-inline-start:.6em}.excalidraw .undo-redo-buttons,.excalidraw .eraser-buttons{display:grid;grid-auto-flow:column;margin-top:auto;margin-bottom:auto;-webkit-margin-start:.6em;margin-inline-start:.6em}.excalidraw--mobile.excalidraw aside{display:none}.excalidraw--mobile.excalidraw .scroll-back-to-content{bottom:calc(80px + var(--sab, 0));z-index:-1}:root[dir=rtl] .excalidraw .rtl-mirror{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.excalidraw .zen-mode-visibility{visibility:visible;opacity:1;height:auto;width:auto;transition:opacity .5s}.excalidraw .zen-mode-visibility.zen-mode-visibility--hidden{visibility:hidden;opacity:0;height:0;width:0;transition:opacity .5s}.excalidraw .disable-pointerEvents{pointer-events:none !important}.excalidraw.excalidraw--view-mode .App-menu{display:flex;justify-content:space-between}.excalidraw input[type=text],.excalidraw textarea:not(.excalidraw-wysiwyg){color:var(--text-primary-color);border:1.5px solid var(--input-border-color);padding:.75rem;white-space:nowrap;border-radius:var(--space-factor);background-color:var(--input-bg-color)}.excalidraw input[type=text]:not(:focus):hover,.excalidraw textarea:not(.excalidraw-wysiwyg):not(:focus):hover{background-color:var(--input-hover-bg-color)}.excalidraw input[type=text]:focus,.excalidraw textarea:not(.excalidraw-wysiwyg):focus{outline:none;box-shadow:0 0 0 2px var(--focus-highlight-color)}@media print{.excalidraw .App-bottom-bar,.excalidraw .FixedSideContainer,.excalidraw .layer-ui__wrapper{display:none}}.excalidraw ::-webkit-scrollbar{width:3px}.excalidraw ::-webkit-scrollbar-thumb{background:var(--scrollbar-thumb);border-radius:10px}.excalidraw ::-webkit-scrollbar-thumb:hover{background:var(--scrollbar-thumb-hover)}.excalidraw ::-webkit-scrollbar-thumb:active{background:var(--scrollbar-thumb)}.excalidraw .mobile-misc-tools-container{position:fixed;top:5rem;right:0;display:flex;flex-direction:column;border:1px solid var(--sidebar-border-color);border-top-left-radius:var(--border-radius-lg);border-bottom-left-radius:var(--border-radius-lg);border-right:0;background-color:var(--island-bg-color)}.excalidraw .mobile-misc-tools-container .ToolIcon__icon{border-radius:0}.excalidraw .mobile-misc-tools-container .library-button{border:0}.excalidraw .mobile-misc-tools-container-left{position:fixed;top:5rem;left:0;display:flex;flex-direction:column;border:1px solid var(--sidebar-border-color);border-top-right-radius:var(--border-radius-lg);border-bottom-right-radius:var(--border-radius-lg);border-left:0;background-color:var(--island-bg-color)}.excalidraw .mobile-misc-tools-container-left .ToolIcon__icon{border-radius:0}.excalidraw .mobile-misc-tools-container-left .library-button{border:0}.excalidraw .App-toolbar--mobile{overflow-x:hidden;max-width:100vw}.excalidraw .App-toolbar--mobile .ToolIcon__keybinding{display:none}.ErrorSplash.excalidraw{min-height:100vh;padding:20px 0;overflow:auto;display:flex;align-items:center;justify-content:center;-webkit-user-select:text;user-select:text}.ErrorSplash.excalidraw .ErrorSplash-messageContainer{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:40px;background-color:#ffe3e3;border:3px solid #c92a2a}.ErrorSplash.excalidraw .ErrorSplash-paragraph{margin:15px 0;max-width:600px}.ErrorSplash.excalidraw .ErrorSplash-paragraph.align-center{text-align:center}.ErrorSplash.excalidraw .bigger,.ErrorSplash.excalidraw .bigger button{font-size:1.1em}.ErrorSplash.excalidraw .smaller,.ErrorSplash.excalidraw .smaller button{font-size:.9em}.ErrorSplash.excalidraw .ErrorSplash-details{display:flex;flex-direction:column;align-items:flex-start}.ErrorSplash.excalidraw .ErrorSplash-details textarea{width:100%;margin:10px 0;font-family:"Cascadia";font-size:.8em}',""]),t.Z=d},6464:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,"",""]),a.locals={themeFilter:"invert(93%) hue-rotate(180deg)",rightSidebarWidth:"302px"},t.Z=a},5260:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw-hyperlinkContainer{display:flex;align-items:center;justify-content:space-between;position:absolute;box-shadow:0px 2px 4px 0 rgba(0,0,0,.3);z-index:100;background:var(--island-bg-color);border-radius:var(--border-radius-md);box-sizing:border-box;min-height:42px}.excalidraw-hyperlinkContainer-input,.excalidraw-hyperlinkContainer button{z-index:100}.excalidraw-hyperlinkContainer-input,.excalidraw-hyperlinkContainer-link{height:24px;padding:0 8px;line-height:24px;font-size:.9rem;font-weight:500;font-family:var(--ui-font)}.excalidraw-hyperlinkContainer-input{width:18rem;border:none;background-color:rgba(0,0,0,0);color:var(--text-primary-color);outline:none;border:none;box-shadow:none !important}.excalidraw-hyperlinkContainer-link{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:15rem}.excalidraw-hyperlinkContainer button{color:#228be6;background-color:rgba(0,0,0,0) !important;font-weight:500}.excalidraw-hyperlinkContainer button.excalidraw-hyperlinkContainer--remove{color:#c92a2a}.excalidraw-hyperlinkContainer .d-none{display:none}.excalidraw-hyperlinkContainer--remove .ToolIcon__icon svg{color:#fa5252}.excalidraw-hyperlinkContainer .ToolIcon__icon{width:2rem;height:2rem}.excalidraw-hyperlinkContainer__buttons{flex:0 0 auto}",""]),t.Z=a},3645:function(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,r,o,i){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(r)for(var l=0;l<this.length;l++){var s=this[l][0];null!=s&&(a[s]=!0)}for(var c=0;c<e.length;c++){var u=[].concat(e[c]);r&&a[u[0]]||(void 0!==i&&(void 0===u[5]||(u[1]="@layer".concat(u[5].length>0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=i),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),t.push(u))}},t}},1667:function(e){"use strict";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/["'() \t\n]|(%20)/.test(e)||t.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e):e}},8081:function(e){"use strict";e.exports=function(e){return e[1]}},828:function(e,t,n){"use strict";n.d(t,{Lo:function(){return M},CZ:function(){return I}});var r=n(2577),o=n(7169),i=n(4499),a=n(3646),l=n(1319),s=n(2335),c=n(1002),u=n(5202),d=n(6066),p=n(75),f=n(2264),h=n(746),m=n(6340),g=n(7901),v=n(1894),b=n(1935),y=n(8897),x=n(9787),w=n(7046),k=n(3202),E=n(4512),S=function(e){var t=e.onConfirm,n=(0,x.useState)(!1),o=(0,r.Z)(n,2),i=o[0],l=o[1],s=function(){l(!i)};return(0,E.jsxs)(E.Fragment,{children:[(0,E.jsx)(k.Z,{label:(0,u.t)("buttons.clearReset"),icon:a.XH,onClick:s,dataTestId:"clear-canvas-button"}),i&&(0,E.jsx)(w.Z,{onConfirm:function(){t(),s()},onCancel:s,title:(0,u.t)("clearCanvasDialog.title"),children:(0,E.jsxs)("p",{className:"clear-canvas__content",children:[" ",(0,u.t)("alerts.clearReset")]})})]})},_=n(45),j=n(785);function C(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function O(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?C(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):C(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}(0,g.z)({name:"changeViewBackgroundColor",trackEvent:!1,perform:function(e,t,n){return{appState:O(O({},t),n),commitToHistory:!!n.viewBackgroundColor}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,E.jsx)("div",{style:{position:"relative"},children:(0,E.jsx)(i.z,{label:(0,u.t)("labels.canvasBackground"),type:"canvasBackground",color:n.viewBackgroundColor,onChange:function(e){return r({viewBackgroundColor:e})},isActive:"canvasColorPicker"===n.openPopup,setActive:function(e){return r({openPopup:e?"canvasColorPicker":null})},"data-testid":"canvas-background-picker",elements:t,appState:n})})}}),(0,g.z)({name:"clearCanvas",trackEvent:{category:"canvas"},perform:function(e,t,n,r){return r.imageCache.clear(),{elements:e.map((function(e){return(0,b.BE)(e,{isDeleted:!0})})),appState:O(O({},(0,y.im)()),{},{files:{},theme:t.theme,penMode:t.penMode,penDetected:t.penDetected,exportBackground:t.exportBackground,exportEmbedScene:t.exportEmbedScene,gridSize:t.gridSize,showStats:t.showStats,pasteDialog:t.pasteDialog,activeTool:"image"===t.activeTool.type?O(O({},t.activeTool),{},{type:"selection"}):t.activeTool}),commitToHistory:!0}},PanelComponent:function(e){var t=e.updateData;return(0,E.jsx)(S,{onConfirm:t})}});var M=(0,g.z)({name:"zoomIn",trackEvent:{category:"canvas"},perform:function(e,t,n,r){return{appState:O(O({},t),(0,h.E)({viewportX:t.width/2+t.offsetLeft,viewportY:t.height/2+t.offsetTop,nextZoom:(0,p.j)(t.zoom.value+s.V4)},t)),commitToHistory:!1}},PanelComponent:function(e){var t=e.updateData;return(0,E.jsx)(l.V,{type:"button",className:"zoom-in-button zoom-button",icon:a.Sd,title:"".concat((0,u.t)("buttons.zoomIn")," — ").concat((0,m.uY)("CtrlOrCmd++")),"aria-label":(0,u.t)("buttons.zoomIn"),onClick:function(){t(null)}})},keyTest:function(e){return(e.code===d.aU.EQUAL||e.code===d.aU.NUM_ADD)&&(e[d.tW.CTRL_OR_CMD]||e.shiftKey)}}),I=(0,g.z)({name:"zoomOut",trackEvent:{category:"canvas"},perform:function(e,t,n,r){return{appState:O(O({},t),(0,h.E)({viewportX:t.width/2+t.offsetLeft,viewportY:t.height/2+t.offsetTop,nextZoom:(0,p.j)(t.zoom.value-s.V4)},t)),commitToHistory:!1}},PanelComponent:function(e){var t=e.updateData;return(0,E.jsx)(l.V,{type:"button",className:"zoom-out-button zoom-button",icon:a.xL,title:"".concat((0,u.t)("buttons.zoomOut")," — ").concat((0,m.uY)("CtrlOrCmd+-")),"aria-label":(0,u.t)("buttons.zoomOut"),onClick:function(){t(null)}})},keyTest:function(e){return(e.code===d.aU.MINUS||e.code===d.aU.NUM_SUBTRACT)&&(e[d.tW.CTRL_OR_CMD]||e.shiftKey)}}),P=((0,g.z)({name:"resetZoom",trackEvent:{category:"canvas"},perform:function(e,t,n,r){return{appState:O(O({},t),(0,h.E)({viewportX:t.width/2+t.offsetLeft,viewportY:t.height/2+t.offsetTop,nextZoom:(0,p.j)(1)},t)),commitToHistory:!1}},PanelComponent:function(e){var t=e.updateData,n=e.appState;return(0,E.jsx)(v.u,{label:(0,u.t)("buttons.resetZoom"),style:{height:"100%"},children:(0,E.jsxs)(l.V,{type:"button",className:"reset-zoom-button zoom-button",title:(0,u.t)("buttons.resetZoom"),"aria-label":(0,u.t)("buttons.resetZoom"),onClick:function(){t(null)},children:[(100*n.zoom.value).toFixed(0),"%"]})})},keyTest:function(e){return(e.code===d.aU.ZERO||e.code===d.aU.NUM_ZERO)&&(e[d.tW.CTRL_OR_CMD]||e.shiftKey)}}),function(e,t){var n=(0,r.Z)(e,4),o=n[0],i=n[1],a=n[2],l=n[3],c=a-o,u=t.width/c,d=l-i,p=t.height/d,f=Math.min(u,p),h=Math.floor(f/s.V4)*s.V4;return Math.min(Math.max(h,s.Zj),1)}),T=function(e,t,n){var o=(0,c.Lm)(e),i=(0,p.eD)(o,t),a=n&&i.length>0?(0,c.KP)(i):(0,c.KP)(o),l={value:P(a,{width:t.width,height:t.height})},s=(0,r.Z)(a,4),u=s[0],d=s[1],h=(u+s[2])/2,m=(d+s[3])/2;return{appState:O(O(O({},t),(0,f.s)({scenePoint:{x:h,y:m},viewportDimensions:{width:t.width,height:t.height},zoom:l})),{},{zoom:l}),commitToHistory:!1}};(0,g.z)({name:"zoomToSelection",trackEvent:{category:"canvas"},perform:function(e,t){return T(e,t,!0)},keyTest:function(e){return e.code===d.aU.TWO&&e.shiftKey&&!e.altKey&&!e[d.tW.CTRL_OR_CMD]}}),(0,g.z)({name:"zoomToFit",trackEvent:{category:"canvas"},perform:function(e,t){return T(e,t,!1)},keyTest:function(e){return e.code===d.aU.ONE&&e.shiftKey&&!e.altKey&&!e[d.tW.CTRL_OR_CMD]}}),(0,g.z)({name:"toggleTheme",trackEvent:{category:"canvas"},perform:function(e,t,n){return{appState:O(O({},t),{},{theme:n||(t.theme===s.C6.LIGHT?s.C6.DARK:s.C6.LIGHT)}),commitToHistory:!1}},PanelComponent:function(e){var t=e.appState,n=e.updateData;return(0,E.jsx)(k.Z,{label:"dark"===t.theme?(0,u.t)("buttons.lightMode"):(0,u.t)("buttons.darkMode"),onClick:function(){n(t.theme===s.C6.LIGHT?s.C6.DARK:s.C6.LIGHT)},icon:"dark"===t.theme?a.NW:a.kL,dataTestId:"toggle-dark-mode",shortcut:(0,j.C)("toggleTheme")})},keyTest:function(e){return e.altKey&&e.shiftKey&&e.code===d.aU.D}}),(0,g.z)({name:"eraser",trackEvent:{category:"toolbar"},perform:function(e,t){var n;return n=(0,y.EN)(t)?(0,m.Om)(t,O(O({},t.activeTool.lastActiveToolBeforeEraser||{type:"selection"}),{},{lastActiveToolBeforeEraser:null})):(0,m.Om)(t,{type:"eraser",lastActiveToolBeforeEraser:t.activeTool}),{appState:O(O({},t),{},{selectedElementIds:{},selectedGroupIds:{},activeTool:n}),commitToHistory:!0}},keyTest:function(e){return e.key===d.tW.E},PanelComponent:function(e){e.elements;var t=e.appState,n=e.updateData,r=e.data;return(0,E.jsx)(l.V,{type:"button",icon:a.rn,className:(0,_.Z)("eraser",{active:(0,y.EN)(t)}),title:"".concat((0,u.t)("toolBar.eraser"),"-").concat((0,m.uY)("E")),"aria-label":(0,u.t)("toolBar.eraser"),onClick:function(){n(null)},size:(null==r?void 0:r.size)||"medium"})}})},6208:function(e,t,n){"use strict";n.d(t,{Tu:function(){return X},Zq:function(){return q}});var r=n(1930),o=n(7169),i=n(45),a=n(4512),l=function(e){var t=e.options,n=e.value,r=e.onChange,o=e.group;return(0,a.jsx)("div",{className:"buttonList buttonListIcon",children:t.map((function(e){return(0,a.jsxs)("label",{className:(0,i.Z)({active:n===e.value}),title:e.text,children:[(0,a.jsx)("input",{type:"radio",name:o,onChange:function(){return r(e.value)},checked:n===e.value,"data-testid":e.testId}),e.icon]},e.text)}))})},s=n(4499),c=n(2577),u=n(9787),d=n.n(u),p=n(2891),f=n(487),h=n.n(f),m=n(631),g=n.n(m),v=n(2052),b=n.n(v),y=n(4010),x=n.n(y),w=n(1469),k=n.n(w),E=n(9329),S=n.n(E),_=n(9478),j={};j.styleTagTransform=S(),j.setAttributes=x(),j.insert=b().bind(null,"head"),j.domAPI=g(),j.insertStyleElement=k();h()(_.Z,j),_.Z&&_.Z.locals&&_.Z.locals;var C=n(6066),O=n(5202);function M(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function I(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?M(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):M(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function P(e){var t=e.options,n=e.value,r=e.label,o=e.onChange,l=e.onClose,s=d().useRef(),c=d().useRef(),u=d().useRef(null);d().useEffect((function(){c.current?c.current.focus():u.current&&u.current.focus()}),[]);return(0,a.jsx)("div",{className:"picker",role:"dialog","aria-modal":"true","aria-label":r,onKeyDown:function(e){var n=t.find((function(t){return t.keyBinding===e.key.toLowerCase()}));if(e.metaKey||e.altKey||e.ctrlKey||!n)if(e.key===C.tW.TAB)setTimeout((function(){c.current!==document.activeElement&&l()}),0);else if((0,C.Wl)(e.key)){var r=document.activeElement,o=(0,O.G3)().rtl,i=Array.prototype.indexOf.call(u.current.children,r);if(-1!==i){var a=t.length,s=i;switch(e.key){case o?C.tW.ARROW_LEFT:C.tW.ARROW_RIGHT:case C.tW.ARROW_DOWN:s=(i+1)%a;break;case o?C.tW.ARROW_RIGHT:C.tW.ARROW_LEFT:case C.tW.ARROW_UP:s=(a+i-1)%a}u.current.children[s].focus()}e.preventDefault()}else e.key!==C.tW.ESCAPE&&e.key!==C.tW.ENTER||(e.preventDefault(),l());else{var d=t.indexOf(n);u.current.children[d].focus(),e.preventDefault()}e.nativeEvent.stopImmediatePropagation(),e.stopPropagation()},children:(0,a.jsx)("div",{className:"picker-content",ref:u,children:t.map((function(e,t){return(0,a.jsxs)("button",{className:(0,i.Z)("picker-option",{active:n===e.value}),onClick:function(t){t.currentTarget.focus(),o(e.value)},title:"".concat(e.text," — ").concat(e.keyBinding.toUpperCase()),"aria-label":e.text||"none","aria-keyshortcuts":e.keyBinding,ref:function(r){r&&0===t&&(s.current=r),r&&e.value===n&&(c.current=r)},onFocus:function(){o(e.value)},children:[e.icon,(0,a.jsx)("span",{className:"picker-keybinding",children:e.keyBinding})]},e.text)}))})})}function T(e){var t,n=e.value,r=e.label,o=e.options,i=e.onChange,l=e.group,s=void 0===l?"":l,u=d().useState(!1),f=(0,c.Z)(u,2),h=f[0],m=f[1],g=d().useRef(null),v=(0,O.G3)().rtl;return(0,a.jsxs)("div",{children:[(0,a.jsx)("button",{name:s,className:h?"active":"","aria-label":r,onClick:function(){return m(!h)},ref:g,children:null===(t=o.find((function(e){return e.value===n})))||void 0===t?void 0:t.icon}),(0,a.jsx)(d().Suspense,{fallback:"",children:h?(0,a.jsxs)(a.Fragment,{children:[(0,a.jsx)(p.J,I(I({onCloseRequest:function(e){return e.target!==g.current&&m(!1)}},v?{right:5.5}:{left:-5.5}),{},{children:(0,a.jsx)(P,{options:o,value:n,label:r,onChange:i,onClose:function(){var e;m(!1),null===(e=g.current)||void 0===e||e.focus()}})})),(0,a.jsx)("div",{className:"picker-triangle"})]}):null})]})}var D=n(3646),L=n(2335),A=n(1002),Z=n(1935),z=n(5710),R=n(1974),N=n(6954),B=n(75),W=n(8120),H=n(6340),F=n(7901);function U(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function K(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?U(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):U(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Y=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]&&arguments[3],o=(0,H.xn)((0,B.eD)(e,t,r));return e.map((function(e){var r;return o.get(e.id)||e.id===(null===(r=t.editingElement)||void 0===r?void 0:r.id)?n(e):e}))},G=function(e,t,n,r){var o,i,a=t.editingElement,l=(0,A.Lm)(e);return null!==(o=null!==(i=a&&n(a))&&void 0!==i?i:(0,B.N)(l,t)?(0,B.PR)(l,t,n):r)&&void 0!==o?o:null},V=function(e,t,n,o){var i=new Set;return{elements:Y(e,t,(function(e){if((0,A.iB)(e)){var t=n(e);i.add(t);var r=(0,Z.BE)(e,{fontSize:t});return(0,A.oN)(r,(0,z.tl)(e)),o=e,a=r,r=(0,R.Xh)(a)?a:(0,Z.DR)(a,{x:"left"===o.textAlign?o.x:o.x+(o.width-a.width)/("center"===o.textAlign?2:1),y:o.y+(o.height-a.height)/2},!1)}var o,a;return e}),!0),appState:K(K({},t),{},{currentItemFontSize:1===i.size?(0,r.Z)(i)[0]:null!=o?o:t.currentItemFontSize}),commitToHistory:!0}},X=((0,F.z)({name:"changeStrokeColor",trackEvent:!1,perform:function(e,t,n){return K(K({},n.currentItemStrokeColor&&{elements:Y(e,t,(function(e){return(0,W.PD)(e.type)?(0,Z.BE)(e,{strokeColor:n.currentItemStrokeColor}):e}),!0)}),{},{appState:K(K({},t),n),commitToHistory:!!n.currentItemStrokeColor})},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,a.jsxs)(a.Fragment,{children:[(0,a.jsx)("h3",{"aria-hidden":"true",children:(0,O.t)("labels.stroke")}),(0,a.jsx)(s.z,{type:"elementStroke",label:(0,O.t)("labels.stroke"),color:G(t,n,(function(e){return e.strokeColor}),n.currentItemStrokeColor),onChange:function(e){return r({currentItemStrokeColor:e})},isActive:"strokeColorPicker"===n.openPopup,setActive:function(e){return r({openPopup:e?"strokeColorPicker":null})},elements:t,appState:n})]})}}),(0,F.z)({name:"changeBackgroundColor",trackEvent:!1,perform:function(e,t,n){return K(K({},n.currentItemBackgroundColor&&{elements:Y(e,t,(function(e){return(0,Z.BE)(e,{backgroundColor:n.currentItemBackgroundColor})}))}),{},{appState:K(K({},t),n),commitToHistory:!!n.currentItemBackgroundColor})},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,a.jsxs)(a.Fragment,{children:[(0,a.jsx)("h3",{"aria-hidden":"true",children:(0,O.t)("labels.background")}),(0,a.jsx)(s.z,{type:"elementBackground",label:(0,O.t)("labels.background"),color:G(t,n,(function(e){return e.backgroundColor}),n.currentItemBackgroundColor),onChange:function(e){return r({currentItemBackgroundColor:e})},isActive:"backgroundColorPicker"===n.openPopup,setActive:function(e){return r({openPopup:e?"backgroundColorPicker":null})},elements:t,appState:n})]})}}),(0,F.z)({name:"changeFillStyle",trackEvent:!1,perform:function(e,t,n){return{elements:Y(e,t,(function(e){return(0,Z.BE)(e,{fillStyle:n})})),appState:K(K({},t),{},{currentItemFillStyle:n}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,a.jsxs)("fieldset",{children:[(0,a.jsx)("legend",{children:(0,O.t)("labels.fill")}),(0,a.jsx)(l,{options:[{value:"hachure",text:(0,O.t)("labels.hachure"),icon:D.a0},{value:"cross-hatch",text:(0,O.t)("labels.crossHatch"),icon:D.np},{value:"solid",text:(0,O.t)("labels.solid"),icon:D.X7}],group:"fill",value:G(t,n,(function(e){return e.fillStyle}),n.currentItemFillStyle),onChange:function(e){r(e)}})]})}}),(0,F.z)({name:"changeStrokeWidth",trackEvent:!1,perform:function(e,t,n){return{elements:Y(e,t,(function(e){return(0,Z.BE)(e,{strokeWidth:n})})),appState:K(K({},t),{},{currentItemStrokeWidth:n}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,a.jsxs)("fieldset",{children:[(0,a.jsx)("legend",{children:(0,O.t)("labels.strokeWidth")}),(0,a.jsx)(l,{group:"stroke-width",options:[{value:1,text:(0,O.t)("labels.thin"),icon:D.ZA},{value:2,text:(0,O.t)("labels.bold"),icon:D.Wl},{value:4,text:(0,O.t)("labels.extraBold"),icon:D.m9}],value:G(t,n,(function(e){return e.strokeWidth}),n.currentItemStrokeWidth),onChange:function(e){return r(e)}})]})}}),(0,F.z)({name:"changeSloppiness",trackEvent:!1,perform:function(e,t,n){return{elements:Y(e,t,(function(e){return(0,Z.BE)(e,{seed:(0,N.LU)(),roughness:n})})),appState:K(K({},t),{},{currentItemRoughness:n}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,a.jsxs)("fieldset",{children:[(0,a.jsx)("legend",{children:(0,O.t)("labels.sloppiness")}),(0,a.jsx)(l,{group:"sloppiness",options:[{value:0,text:(0,O.t)("labels.architect"),icon:D.bf},{value:1,text:(0,O.t)("labels.artist"),icon:D.kM},{value:2,text:(0,O.t)("labels.cartoonist"),icon:D.W2}],value:G(t,n,(function(e){return e.roughness}),n.currentItemRoughness),onChange:function(e){return r(e)}})]})}}),(0,F.z)({name:"changeStrokeStyle",trackEvent:!1,perform:function(e,t,n){return{elements:Y(e,t,(function(e){return(0,Z.BE)(e,{strokeStyle:n})})),appState:K(K({},t),{},{currentItemStrokeStyle:n}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,a.jsxs)("fieldset",{children:[(0,a.jsx)("legend",{children:(0,O.t)("labels.strokeStyle")}),(0,a.jsx)(l,{group:"strokeStyle",options:[{value:"solid",text:(0,O.t)("labels.strokeStyle_solid"),icon:D.ZA},{value:"dashed",text:(0,O.t)("labels.strokeStyle_dashed"),icon:D.a5},{value:"dotted",text:(0,O.t)("labels.strokeStyle_dotted"),icon:D.aT}],value:G(t,n,(function(e){return e.strokeStyle}),n.currentItemStrokeStyle),onChange:function(e){return r(e)}})]})}}),(0,F.z)({name:"changeOpacity",trackEvent:!1,perform:function(e,t,n){return{elements:Y(e,t,(function(e){return(0,Z.BE)(e,{opacity:n})}),!0),appState:K(K({},t),{},{currentItemOpacity:n}),commitToHistory:!0}},PanelComponent:function(e){var t,n=e.elements,r=e.appState,o=e.updateData;return(0,a.jsxs)("label",{className:"control-label",children:[(0,O.t)("labels.opacity"),(0,a.jsx)("input",{type:"range",min:"0",max:"100",step:"10",onChange:function(e){return o(+e.target.value)},value:null!==(t=G(n,r,(function(e){return e.opacity}),r.currentItemOpacity))&&void 0!==t?t:void 0})]})}}),(0,F.z)({name:"changeFontSize",trackEvent:!1,perform:function(e,t,n){return V(e,t,(function(){return n}),n)},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,a.jsxs)("fieldset",{children:[(0,a.jsx)("legend",{children:(0,O.t)("labels.fontSize")}),(0,a.jsx)(l,{group:"font-size",options:[{value:16,text:(0,O.t)("labels.small"),icon:D.q0,testId:"fontSize-small"},{value:20,text:(0,O.t)("labels.medium"),icon:D.nq,testId:"fontSize-medium"},{value:28,text:(0,O.t)("labels.large"),icon:D.tW,testId:"fontSize-large"},{value:36,text:(0,O.t)("labels.veryLarge"),icon:D.OA,testId:"fontSize-veryLarge"}],value:G(t,n,(function(e){if((0,A.iB)(e))return e.fontSize;var t=(0,z.WJ)(e);return t?t.fontSize:null}),n.currentItemFontSize||L.n5),onChange:function(e){return r(e)}})]})}}),(0,F.z)({name:"decreaseFontSize",trackEvent:!1,perform:function(e,t,n){return V(e,t,(function(e){return Math.round(1/1.1*e.fontSize)}))},keyTest:function(e){return e[C.tW.CTRL_OR_CMD]&&e.shiftKey&&(e.key===C.tW.CHEVRON_LEFT||e.key===C.tW.COMMA)}})),q=(0,F.z)({name:"increaseFontSize",trackEvent:!1,perform:function(e,t,n){return V(e,t,(function(e){return Math.round(1.1*e.fontSize)}))},keyTest:function(e){return e[C.tW.CTRL_OR_CMD]&&e.shiftKey&&(e.key===C.tW.CHEVRON_RIGHT||e.key===C.tW.PERIOD)}});(0,F.z)({name:"changeFontFamily",trackEvent:!1,perform:function(e,t,n){return{elements:Y(e,t,(function(e){if((0,A.iB)(e)){var t=(0,Z.BE)(e,{fontFamily:n});return(0,A.oN)(t,(0,z.tl)(e)),t}return e}),!0),appState:K(K({},t),{},{currentItemFontFamily:n}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData,o=[{value:L.ut.Virgil,text:(0,O.t)("labels.handDrawn"),icon:D.Pm},{value:L.ut.Helvetica,text:(0,O.t)("labels.normal"),icon:D.vo},{value:L.ut.Cascadia,text:(0,O.t)("labels.code"),icon:D.z6}];return(0,a.jsxs)("fieldset",{children:[(0,a.jsx)("legend",{children:(0,O.t)("labels.fontFamily")}),(0,a.jsx)(l,{group:"font-family",options:o,value:G(t,n,(function(e){if((0,A.iB)(e))return e.fontFamily;var t=(0,z.WJ)(e);return t?t.fontFamily:null}),n.currentItemFontFamily||L.rk),onChange:function(e){return r(e)}})]})}}),(0,F.z)({name:"changeTextAlign",trackEvent:!1,perform:function(e,t,n){return{elements:Y(e,t,(function(e){if((0,A.iB)(e)){var t=(0,Z.BE)(e,{textAlign:n});return(0,A.oN)(t,(0,z.tl)(e)),t}return e}),!0),appState:K(K({},t),{},{currentItemTextAlign:n}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,a.jsxs)("fieldset",{children:[(0,a.jsx)("legend",{children:(0,O.t)("labels.textAlign")}),(0,a.jsx)(l,{group:"text-align",options:[{value:"left",text:(0,O.t)("labels.left"),icon:D.rr},{value:"center",text:(0,O.t)("labels.center"),icon:D.o3},{value:"right",text:(0,O.t)("labels.right"),icon:D.oT}],value:G(t,n,(function(e){if((0,A.iB)(e))return e.textAlign;var t=(0,z.WJ)(e);return t?t.textAlign:null}),n.currentItemTextAlign),onChange:function(e){return r(e)}})]})}}),(0,F.z)({name:"changeVerticalAlign",trackEvent:{category:"element"},perform:function(e,t,n){return{elements:Y(e,t,(function(e){if((0,A.iB)(e)){var t=(0,Z.BE)(e,{verticalAlign:n});return(0,A.oN)(t,(0,z.tl)(e)),t}return e}),!0),appState:K({},t),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,a.jsx)("fieldset",{children:(0,a.jsx)(l,{group:"text-align",options:[{value:L.oX.TOP,text:(0,O.t)("labels.alignTop"),icon:(0,a.jsx)(D.EO,{theme:n.theme}),testId:"align-top"},{value:L.oX.MIDDLE,text:(0,O.t)("labels.centerVertically"),icon:(0,a.jsx)(D.P7,{theme:n.theme}),testId:"align-middle"},{value:L.oX.BOTTOM,text:(0,O.t)("labels.alignBottom"),icon:(0,a.jsx)(D.aA,{theme:n.theme}),testId:"align-bottom"}],value:G(t,n,(function(e){if((0,A.iB)(e)&&e.containerId)return e.verticalAlign;var t=(0,z.WJ)(e);return t?t.verticalAlign:null})),onChange:function(e){return r(e)}})})}}),(0,F.z)({name:"changeSharpness",trackEvent:!1,perform:function(e,t,n){var r=(0,B.Zs)((0,A.Lm)(e),t),o=r.length?r.every((function(e){return!(0,R.bt)(e)})):!(0,R.dt)(t.activeTool.type),i=r.length?r.every(R.bt):(0,R.dt)(t.activeTool.type);return{elements:Y(e,t,(function(e){return(0,Z.BE)(e,{strokeSharpness:n})})),appState:K(K({},t),{},{currentItemStrokeSharpness:o?n:t.currentItemStrokeSharpness,currentItemLinearStrokeSharpness:i?n:t.currentItemLinearStrokeSharpness}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,a.jsxs)("fieldset",{children:[(0,a.jsx)("legend",{children:(0,O.t)("labels.edges")}),(0,a.jsx)(l,{group:"edges",options:[{value:"sharp",text:(0,O.t)("labels.sharp"),icon:D.wr},{value:"round",text:(0,O.t)("labels.round"),icon:D.DS}],value:G(t,n,(function(e){return e.strokeSharpness}),(0,B.gP)(n.activeTool.type)&&((0,R.dt)(n.activeTool.type)?n.currentItemLinearStrokeSharpness:n.currentItemStrokeSharpness)||null),onChange:function(e){return r(e)}})]})}}),(0,F.z)({name:"changeArrowhead",trackEvent:!1,perform:function(e,t,n){return{elements:Y(e,t,(function(e){if((0,R.bt)(e)){var t=n.position,r=n.type;if("start"===t)return(0,Z.BE)(e,{startArrowhead:r});if("end"===t)return(0,Z.BE)(e,{endArrowhead:r})}return e})),appState:K(K({},t),{},(0,o.Z)({},"start"===n.position?"currentItemStartArrowhead":"currentItemEndArrowhead",n.type)),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData,o=(0,O.G3)().rtl;return(0,a.jsxs)("fieldset",{children:[(0,a.jsx)("legend",{children:(0,O.t)("labels.arrowheads")}),(0,a.jsxs)("div",{className:"iconSelectList buttonList",children:[(0,a.jsx)(T,{label:"arrowhead_start",options:[{value:null,text:(0,O.t)("labels.arrowhead_none"),icon:D.fr,keyBinding:"q"},{value:"arrow",text:(0,O.t)("labels.arrowhead_arrow"),icon:(0,a.jsx)(D.il,{flip:!o}),keyBinding:"w"},{value:"bar",text:(0,O.t)("labels.arrowhead_bar"),icon:(0,a.jsx)(D.m,{flip:!o}),keyBinding:"e"},{value:"dot",text:(0,O.t)("labels.arrowhead_dot"),icon:(0,a.jsx)(D.tn,{flip:!o}),keyBinding:"r"},{value:"triangle",text:(0,O.t)("labels.arrowhead_triangle"),icon:(0,a.jsx)(D.j8,{flip:!o}),keyBinding:"t"}],value:G(t,n,(function(e){return(0,R.bt)(e)&&(0,B.Un)(e.type)?e.startArrowhead:n.currentItemStartArrowhead}),n.currentItemStartArrowhead),onChange:function(e){return r({position:"start",type:e})}}),(0,a.jsx)(T,{label:"arrowhead_end",group:"arrowheads",options:[{value:null,text:(0,O.t)("labels.arrowhead_none"),keyBinding:"q",icon:D.fr},{value:"arrow",text:(0,O.t)("labels.arrowhead_arrow"),keyBinding:"w",icon:(0,a.jsx)(D.il,{flip:o})},{value:"bar",text:(0,O.t)("labels.arrowhead_bar"),keyBinding:"e",icon:(0,a.jsx)(D.m,{flip:o})},{value:"dot",text:(0,O.t)("labels.arrowhead_dot"),keyBinding:"r",icon:(0,a.jsx)(D.tn,{flip:o})},{value:"triangle",text:(0,O.t)("labels.arrowhead_triangle"),icon:(0,a.jsx)(D.j8,{flip:o}),keyBinding:"t"}],value:G(t,n,(function(e){return(0,R.bt)(e)&&(0,B.Un)(e.type)?e.endArrowhead:n.currentItemEndArrowhead}),n.currentItemEndArrowhead),onChange:function(e){return r({position:"end",type:e})}})]})]})}})},7901:function(e,t,n){"use strict";n.d(t,{N:function(){return r},z:function(){return o}});var r=[],o=function(e){return r=r.concat(e),e}},785:function(e,t,n){"use strict";n.d(t,{C:function(){return l}});var r=n(5202),o=n(6066),i=n(6340),a={toggleTheme:[(0,i.uY)("Shift+Alt+D")],saveScene:[(0,i.uY)("CtrlOrCmd+S")],loadScene:[(0,i.uY)("CtrlOrCmd+O")],imageExport:[(0,i.uY)("CtrlOrCmd+Shift+E")],cut:[(0,i.uY)("CtrlOrCmd+X")],copy:[(0,i.uY)("CtrlOrCmd+C")],paste:[(0,i.uY)("CtrlOrCmd+V")],copyStyles:[(0,i.uY)("CtrlOrCmd+Alt+C")],pasteStyles:[(0,i.uY)("CtrlOrCmd+Alt+V")],selectAll:[(0,i.uY)("CtrlOrCmd+A")],deleteSelectedElements:[(0,i.uY)("Delete")],duplicateSelection:[(0,i.uY)("CtrlOrCmd+D"),(0,i.uY)("Alt+".concat((0,r.t)("helpDialog.drag")))],sendBackward:[(0,i.uY)("CtrlOrCmd+[")],bringForward:[(0,i.uY)("CtrlOrCmd+]")],sendToBack:[o.Um?(0,i.uY)("CtrlOrCmd+Alt+["):(0,i.uY)("CtrlOrCmd+Shift+[")],bringToFront:[o.Um?(0,i.uY)("CtrlOrCmd+Alt+]"):(0,i.uY)("CtrlOrCmd+Shift+]")],copyAsPng:[(0,i.uY)("Shift+Alt+C")],copyAsSvg:[],group:[(0,i.uY)("CtrlOrCmd+G")],ungroup:[(0,i.uY)("CtrlOrCmd+Shift+G")],gridMode:[(0,i.uY)("CtrlOrCmd+'")],zenMode:[(0,i.uY)("Alt+Z")],stats:[(0,i.uY)("Alt+/")],addToLibrary:[],flipHorizontal:[(0,i.uY)("Shift+H")],flipVertical:[(0,i.uY)("Shift+V")],viewMode:[(0,i.uY)("Alt+R")],hyperlink:[(0,i.uY)("CtrlOrCmd+K")],toggleLock:[(0,i.uY)("CtrlOrCmd+Shift+L")]},l=function(e){var t=a[e];return t&&t.length>0?t[0]:""}},7047:function(e,t,n){"use strict";var r,o;n.d(t,{L:function(){return i}});var i="undefined"!=typeof process&&null!==(r={REACT_APP_BACKEND_V2_GET_URL:"https://json.excalidraw.com/api/v2/",REACT_APP_BACKEND_V2_POST_URL:"https://json.excalidraw.com/api/v2/post/",REACT_APP_LIBRARY_URL:"https://libraries.excalidraw.com",REACT_APP_LIBRARY_BACKEND:"https://us-central1-excalidraw-room-persistence.cloudfunctions.net/libraries",REACT_APP_PORTAL_URL:"https://portal.excalidraw.com",REACT_APP_WS_SERVER_URL:"",REACT_APP_FIREBASE_CONFIG:'{"apiKey":"AIzaSyAd15pYlMci_xIp9ko6wkEsDzAAA0Dn0RU","authDomain":"excalidraw-room-persistence.firebaseapp.com","databaseURL":"https://excalidraw-room-persistence.firebaseio.com","projectId":"excalidraw-room-persistence","storageBucket":"excalidraw-room-persistence.appspot.com","messagingSenderId":"654800341332","appId":"1:654800341332:web:4a692de832b55bd57ce0c1"}',REACT_APP_GOOGLE_ANALYTICS_ID:"UA-387204-13",REACT_APP_PLUS_APP:"https://app.excalidraw.com",PKG_NAME:"@dwelle/excalidraw",PKG_VERSION:"0.4.0-e80989b",IS_EXCALIDRAW_NPM_PACKAGE:!0})&&void 0!==r&&r.REACT_APP_GOOGLE_ANALYTICS_ID&&"undefined"!=typeof window&&window.gtag?function(e,t,n,r){try{window.gtag("event",t,{event_category:e,event_label:n,value:r})}catch(e){console.error("error logging to ga",e)}}:("undefined"!=typeof process&&null!==(o={REACT_APP_BACKEND_V2_GET_URL:"https://json.excalidraw.com/api/v2/",REACT_APP_BACKEND_V2_POST_URL:"https://json.excalidraw.com/api/v2/post/",REACT_APP_LIBRARY_URL:"https://libraries.excalidraw.com",REACT_APP_LIBRARY_BACKEND:"https://us-central1-excalidraw-room-persistence.cloudfunctions.net/libraries",REACT_APP_PORTAL_URL:"https://portal.excalidraw.com",REACT_APP_WS_SERVER_URL:"",REACT_APP_FIREBASE_CONFIG:'{"apiKey":"AIzaSyAd15pYlMci_xIp9ko6wkEsDzAAA0Dn0RU","authDomain":"excalidraw-room-persistence.firebaseapp.com","databaseURL":"https://excalidraw-room-persistence.firebaseio.com","projectId":"excalidraw-room-persistence","storageBucket":"excalidraw-room-persistence.appspot.com","messagingSenderId":"654800341332","appId":"1:654800341332:web:4a692de832b55bd57ce0c1"}',REACT_APP_GOOGLE_ANALYTICS_ID:"UA-387204-13",REACT_APP_PLUS_APP:"https://app.excalidraw.com",PKG_NAME:"@dwelle/excalidraw",PKG_VERSION:"0.4.0-e80989b",IS_EXCALIDRAW_NPM_PACKAGE:!0})&&void 0!==o&&o.JEST_WORKER_ID,function(e,t,n,r){})},8897:function(e,t,n){"use strict";n.d(t,{EN:function(){return h},eS:function(){return f},fx:function(){return d},im:function(){return s},s:function(){return p}});var r=n(5284),o=n(2335),i=n(5202),a=n(6340),l=o.ZB.includes(devicePixelRatio)?devicePixelRatio:1,s=function(){return{showWelcomeScreen:!1,theme:o.C6.LIGHT,collaborators:new Map,currentChartType:"bar",currentItemBackgroundColor:"transparent",currentItemEndArrowhead:"arrow",currentItemFillStyle:"hachure",currentItemFontFamily:o.rk,currentItemFontSize:o.n5,currentItemLinearStrokeSharpness:"round",currentItemOpacity:100,currentItemRoughness:1,currentItemStartArrowhead:null,currentItemStrokeColor:r.black,currentItemStrokeSharpness:"sharp",currentItemStrokeStyle:"solid",currentItemStrokeWidth:1,currentItemTextAlign:o.Hg,cursorButton:"up",draggingElement:null,editingElement:null,editingGroupId:null,editingLinearElement:null,activeTool:{type:"selection",customType:null,locked:!1,lastActiveToolBeforeEraser:null},penMode:!1,penDetected:!1,errorMessage:null,exportBackground:!0,exportScale:l,exportEmbedScene:!1,exportWithDarkMode:!1,fileHandle:null,gridSize:null,isBindingEnabled:!0,isSidebarDocked:!1,isLoading:!1,isResizing:!1,isRotating:!1,lastPointerDownWith:"mouse",multiElement:null,name:"".concat((0,i.t)("labels.untitled"),"-").concat((0,a.Fc)()),openMenu:null,openPopup:null,openSidebar:null,openDialog:null,pasteDialog:{shown:!1,data:null},previousSelectedElementIds:{},resizingElement:null,scrolledOutside:!1,scrollX:0,scrollY:0,selectedElementIds:{},selectedGroupIds:{},selectionElement:null,shouldCacheIgnoreZoom:!1,showStats:!1,startBoundElement:null,suggestedBindings:[],toast:null,viewBackgroundColor:r.white,zenModeEnabled:!1,zoom:{value:1},viewModeEnabled:!1,pendingImageElementId:null,showHyperlinkPopup:!1,selectedLinearElement:null}},c={showWelcomeScreen:{browser:!0,export:!1,server:!1},theme:{browser:!0,export:!1,server:!1},collaborators:{browser:!1,export:!1,server:!1},currentChartType:{browser:!0,export:!1,server:!1},currentItemBackgroundColor:{browser:!0,export:!1,server:!1},currentItemEndArrowhead:{browser:!0,export:!1,server:!1},currentItemFillStyle:{browser:!0,export:!1,server:!1},currentItemFontFamily:{browser:!0,export:!1,server:!1},currentItemFontSize:{browser:!0,export:!1,server:!1},currentItemLinearStrokeSharpness:{browser:!0,export:!1,server:!1},currentItemOpacity:{browser:!0,export:!1,server:!1},currentItemRoughness:{browser:!0,export:!1,server:!1},currentItemStartArrowhead:{browser:!0,export:!1,server:!1},currentItemStrokeColor:{browser:!0,export:!1,server:!1},currentItemStrokeSharpness:{browser:!0,export:!1,server:!1},currentItemStrokeStyle:{browser:!0,export:!1,server:!1},currentItemStrokeWidth:{browser:!0,export:!1,server:!1},currentItemTextAlign:{browser:!0,export:!1,server:!1},cursorButton:{browser:!0,export:!1,server:!1},draggingElement:{browser:!1,export:!1,server:!1},editingElement:{browser:!1,export:!1,server:!1},editingGroupId:{browser:!0,export:!1,server:!1},editingLinearElement:{browser:!1,export:!1,server:!1},activeTool:{browser:!0,export:!1,server:!1},penMode:{browser:!0,export:!1,server:!1},penDetected:{browser:!0,export:!1,server:!1},errorMessage:{browser:!1,export:!1,server:!1},exportBackground:{browser:!0,export:!1,server:!1},exportEmbedScene:{browser:!0,export:!1,server:!1},exportScale:{browser:!0,export:!1,server:!1},exportWithDarkMode:{browser:!0,export:!1,server:!1},fileHandle:{browser:!1,export:!1,server:!1},gridSize:{browser:!0,export:!0,server:!0},height:{browser:!1,export:!1,server:!1},isBindingEnabled:{browser:!1,export:!1,server:!1},isSidebarDocked:{browser:!0,export:!1,server:!1},isLoading:{browser:!1,export:!1,server:!1},isResizing:{browser:!1,export:!1,server:!1},isRotating:{browser:!1,export:!1,server:!1},lastPointerDownWith:{browser:!0,export:!1,server:!1},multiElement:{browser:!1,export:!1,server:!1},name:{browser:!0,export:!1,server:!1},offsetLeft:{browser:!1,export:!1,server:!1},offsetTop:{browser:!1,export:!1,server:!1},openMenu:{browser:!0,export:!1,server:!1},openPopup:{browser:!1,export:!1,server:!1},openSidebar:{browser:!0,export:!1,server:!1},openDialog:{browser:!1,export:!1,server:!1},pasteDialog:{browser:!1,export:!1,server:!1},previousSelectedElementIds:{browser:!0,export:!1,server:!1},resizingElement:{browser:!1,export:!1,server:!1},scrolledOutside:{browser:!0,export:!1,server:!1},scrollX:{browser:!0,export:!1,server:!1},scrollY:{browser:!0,export:!1,server:!1},selectedElementIds:{browser:!0,export:!1,server:!1},selectedGroupIds:{browser:!0,export:!1,server:!1},selectionElement:{browser:!1,export:!1,server:!1},shouldCacheIgnoreZoom:{browser:!0,export:!1,server:!1},showStats:{browser:!0,export:!1,server:!1},startBoundElement:{browser:!1,export:!1,server:!1},suggestedBindings:{browser:!1,export:!1,server:!1},toast:{browser:!1,export:!1,server:!1},viewBackgroundColor:{browser:!0,export:!0,server:!0},width:{browser:!1,export:!1,server:!1},zenModeEnabled:{browser:!0,export:!1,server:!1},zoom:{browser:!0,export:!1,server:!1},viewModeEnabled:{browser:!1,export:!1,server:!1},pendingImageElementId:{browser:!1,export:!1,server:!1},showHyperlinkPopup:{browser:!1,export:!1,server:!1},selectedLinearElement:{browser:!0,export:!1,server:!1}},u=function(e,t){for(var n={},r=0,o=Object.keys(e);r<o.length;r++){var i=o[r],a=c[i];if(null!=a&&a[t]){var l=e[i];n[i]=l}}return n},d=function(e){return u(e,"browser")},p=function(e){return u(e,"export")},f=function(e){return u(e,"server")},h=function(e){return"eraser"===e.activeTool.type}},5674:function(e,t,n){"use strict";n.d(t,{dz:function(){return k},i$:function(){return b},ps:function(){return C}});var r=n(1930),o=n(7169),i=n(2577),a=n(56),l=n(2335),s=n(1002),c=n(6954);function u(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function p(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function f(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?p(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):p(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var h=32,m=12,g=256,v="NOT_SPREADSHEET",b="VALID_SPREADSHEET",y=function(e){var t=/^([-+]?)[$€£¥₩]?([-+]?)([\d.,]+)[%]?$/.exec(e);return t?parseFloat("".concat((t[1]||t[2])+t[3]).replace(/,/g,"")):null},x=function(e,t){return e.slice(1).every((function(e){return null!==y(e[t])}))},w=function(e){var t=e[0].length;if(t>2)return{type:v,reason:"More than 2 columns"};if(1===t){if(!x(e,0))return{type:v,reason:"Value is not numeric"};var n=null===y(e[0][0]),r=(n?e.slice(1):e).map((function(e){return y(e[0])}));return r.length<2?{type:v,reason:"Less than two rows"}:{type:b,spreadsheet:{title:n?e[0][0]:null,labels:null,values:r}}}var o=x(e,0),a=x(e,1);if(!o&&!a)return{type:v,reason:"Value is not numeric"};var l=a?[0,1]:[1,0],s=(0,i.Z)(l,2),c=s[0],u=s[1],d=null===y(e[0][u]),p=d?e.slice(1):e;return p.length<2?{type:v,reason:"Less than 2 rows"}:{type:b,spreadsheet:{title:d?e[0][u]:null,labels:p.map((function(e){return e[c]})),values:p.map((function(e){return y(e[u])}))}}},k=function(e){var t=e.trim().split("\n").map((function(e){return e.trim().split("\t")}));if(t.length&&2!==t[0].length&&(t=e.trim().split("\n").map((function(e){return e.trim().split(",")}))),0===t.length)return{type:v,reason:"No values"};var n=t[0].length;if(!t.every((function(e){return e.length===n})))return{type:v,reason:"All rows don't have same number of columns"};var r=w(t);if(r.type!==b){var o=w(function(e){for(var t=[],n=0;n<e[0].length;n++){for(var r=[],o=0;o<e.length;o++)r.push(e[o][n]);t.push(r)}return t}(t));if(o.type===b)return o}return r},E=a.Z.elementBackground.slice(2,a.Z.elementBackground.length),S={fillStyle:"hachure",fontFamily:l.rk,fontSize:l.n5,opacity:100,roughness:1,strokeColor:a.Z.elementStroke[0],strokeSharpness:"sharp",strokeStyle:"solid",strokeWidth:1,verticalAlign:l.oX.MIDDLE,locked:!1},_=function(e){return{chartWidth:44*e.values.length+m,chartHeight:280}},j=function(e,t,n,o,i,c){var u=_(e),d=u.chartWidth,p=u.chartHeight,v=e.title?(0,s.VL)(f(f({backgroundColor:i,groupIds:[o]},S),{},{text:e.title,x:t+d/2,y:n-g-24-l.n5,strokeSharpness:"sharp",strokeStyle:"solid",textAlign:"center"})):null,b=c?(0,s.Up)(f(f({backgroundColor:i,groupIds:[o]},S),{},{type:"rectangle",x:t,y:n-p,width:d,height:p,strokeColor:a.Z.elementStroke[0],fillStyle:"solid",opacity:6})):null;return[].concat((0,r.Z)(b?[b]:[]),(0,r.Z)(v?[v]:[]),(0,r.Z)(function(e,t,n,r,o){var i;return(null===(i=e.labels)||void 0===i?void 0:i.map((function(e,i){return(0,s.VL)(f(f({groupIds:[r],backgroundColor:o},S),{},{text:e.length>8?"".concat(e.slice(0,5),"..."):e,x:t+44*i+24,y:n+6,width:h,angle:5.87,fontSize:16,textAlign:"center",verticalAlign:"top"}))})))||[]}(e,t,n,o,i)),(0,r.Z)(function(e,t,n,o,i){var a=(0,s.VL)(f(f({groupIds:[o],backgroundColor:i},S),{},{x:t-m,y:n-m,text:"0",textAlign:"right"}));return[a,(0,s.VL)(f(f({groupIds:[o],backgroundColor:i},S),{},{x:t-m,y:n-g-a.height/2,text:Math.max.apply(Math,(0,r.Z)(e.values)).toLocaleString(),textAlign:"right"}))]}(e,t,n,o,i)),(0,r.Z)(function(e,t,n,r,o){var i=_(e),a=i.chartWidth,l=i.chartHeight;return[(0,s.y8)(f(f({backgroundColor:o,groupIds:[r]},S),{},{type:"line",x:t,y:n,startArrowhead:null,endArrowhead:null,width:a,points:[[0,0],[a,0]]})),(0,s.y8)(f(f({backgroundColor:o,groupIds:[r]},S),{},{type:"line",x:t,y:n,startArrowhead:null,endArrowhead:null,height:l,points:[[0,0],[0,-l]]})),(0,s.y8)(f(f({backgroundColor:o,groupIds:[r]},S),{},{type:"line",x:t,y:n-g-m,startArrowhead:null,endArrowhead:null,strokeStyle:"dotted",width:a,opacity:50,points:[[0,0],[a,0]]}))]}(e,t,n,o,i)))},C=function(e,t,n,o){return"line"===e?function(e,t,n){var o,i=Math.max.apply(Math,(0,r.Z)(e.values)),a=(0,c.kb)(),d=E[Math.floor(Math.random()*E.length)],p=0,h=[],v=u(e.values);try{for(v.s();!(o=v.n()).done;){var b=o.value,y=44*p,x=-b/i*g;h.push([y,x]),p++}}catch(e){v.e(e)}finally{v.f()}var w=Math.max.apply(Math,(0,r.Z)(h.map((function(e){return e[0]})))),k=Math.max.apply(Math,(0,r.Z)(h.map((function(e){return e[1]})))),_=Math.min.apply(Math,(0,r.Z)(h.map((function(e){return e[0]})))),C=Math.min.apply(Math,(0,r.Z)(h.map((function(e){return e[1]})))),O=(0,s.y8)(f(f({backgroundColor:d,groupIds:[a]},S),{},{type:"line",x:t+m+16,y:n-m,startArrowhead:null,endArrowhead:null,height:k-C,width:w-_,strokeWidth:2,points:h})),M=e.values.map((function(e,r){var o=44*r+6,l=-e/i*g+6;return(0,s.Up)(f(f({backgroundColor:d,groupIds:[a]},S),{},{fillStyle:"solid",strokeWidth:2,type:"ellipse",x:t+o+16,y:n+l-24,width:m,height:m}))})),I=e.values.map((function(e,r){var o=44*r+6,l=e/i*g+6+m;return(0,s.y8)(f(f({backgroundColor:d,groupIds:[a]},S),{},{type:"line",x:t+o+16+6,y:n-l,startArrowhead:null,endArrowhead:null,height:l,strokeStyle:"dotted",opacity:50,points:[[0,0],[0,l]]}))}));return[].concat((0,r.Z)(j(e,t,n,a,d,"production"===l.Vi.DEVELOPMENT)),[O],(0,r.Z)(I),(0,r.Z)(M))}(t,n,o):function(e,t,n){var o=Math.max.apply(Math,(0,r.Z)(e.values)),i=(0,c.kb)(),a=E[Math.floor(Math.random()*E.length)],u=e.values.map((function(e,r){var l=e/o*g;return(0,s.Up)(f(f({backgroundColor:a,groupIds:[i]},S),{},{type:"rectangle",x:t+44*r+m,y:n-l-m,width:h,height:l}))}));return[].concat((0,r.Z)(u),(0,r.Z)(j(e,t,n,i,a,"production"===l.Vi.DEVELOPMENT)))}(t,n,o)}},8982:function(e,t,n){"use strict";n.d(t,{X:function(){return o},f:function(){return i}});var r=n(56),o=function(e,t){if(null!=t&&t.collaborators){var n=t.collaborators.get(e);if(null!=n&&n.color)return n.color}var o=e.split("").reduce((function(e,t){return e+t.charCodeAt(0)}),0),i=r.Z.elementBackground.slice(3),a=r.Z.elementStroke.slice(3);return{background:i[o%i.length],stroke:a[o%a.length]}},i=function(e){return e?e.trim()[0].toUpperCase():"?"}},6665:function(e,t,n){"use strict";n.d(t,{dd:function(){return C},mQ:function(){return _},uR:function(){return j},vQ:function(){return w},vt:function(){return y},wx:function(){return b}});var r=n(7169),o=n(8950),i=n(2975),a=n.n(i),l=n(4162),s=n(5674),c=n(2335),u=n(1974),d=n(6340),p=n(5710);function f(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function h(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?f(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):f(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var m="",g=!1,v="clipboard"in navigator&&"readText"in navigator.clipboard,b="clipboard"in navigator&&"writeText"in navigator.clipboard,y="clipboard"in navigator&&"write"in navigator.clipboard&&"ClipboardItem"in window&&"toBlob"in HTMLCanvasElement.prototype,x=function(e){return!(![c.r8.excalidraw,c.r8.excalidrawClipboard].includes(null==e?void 0:e.type)||!Array.isArray(e.elements))},w=function(){var e=(0,o.Z)(a().mark((function e(t,n,r){var o,i;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return o={type:c.r8.excalidrawClipboard,elements:t,files:r?t.reduce((function(e,t){return(0,u.wi)(t)&&r[t.fileId]&&(e[t.fileId]=r[t.fileId]),e}),{}):void 0},i=JSON.stringify(o),m=i,e.prev=3,g=!1,e.next=7,C(i);case 7:e.next=13;break;case 9:e.prev=9,e.t0=e.catch(3),g=!0,console.error(e.t0);case 13:case"end":return e.stop()}}),e,null,[[3,9]])})));return function(t,n,r){return e.apply(this,arguments)}}(),k=function(){if(!m)return{};try{return JSON.parse(m)}catch(e){return console.error(e),{}}},E=function(e){var t=(0,s.dz)(e);return t.type===s.i$?{spreadsheet:t.spreadsheet}:null},S=function(){var e=(0,o.Z)(a().mark((function e(t){var n,r;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(e.prev=0,!t){e.next=5;break}e.t0=null===(n=t.clipboardData)||void 0===n?void 0:n.getData("text/plain"),e.next=11;break;case 5:if(e.t1=v,!e.t1){e.next=10;break}return e.next=9,navigator.clipboard.readText();case 9:e.t1=e.sent;case 10:e.t0=e.t1;case 11:return r=e.t0,e.abrupt("return",(0,p.bG)(r||"").trim());case 15:return e.prev=15,e.t2=e.catch(0),e.abrupt("return","");case 18:case"end":return e.stop()}}),e,null,[[0,15]])})));return function(t){return e.apply(this,arguments)}}(),_=function(){var e=(0,o.Z)(a().mark((function e(t){var n,r,o,i,s,c=arguments;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=c.length>1&&void 0!==c[1]&&c[1],e.next=3,S(t);case 3:if((r=e.sent)&&(n||!r.includes(l.oj))){e.next=6;break}return e.abrupt("return",k());case 6:if(!(o=!n&&E(r))){e.next=9;break}return e.abrupt("return",o);case 9:if(i=k(),e.prev=10,s=JSON.parse(r),!x(s)){e.next=14;break}return e.abrupt("return",{elements:s.elements,files:s.files,text:n?JSON.stringify(s.elements,null,2):void 0});case 14:e.next=18;break;case 16:e.prev=16,e.t0=e.catch(10);case 18:return e.abrupt("return",g&&i.elements?h(h({},i),{},{text:n?JSON.stringify(i.elements,null,2):void 0}):{text:r});case 19:case"end":return e.stop()}}),e,null,[[10,16]])})));return function(t){return e.apply(this,arguments)}}(),j=function(){var e=(0,o.Z)(a().mark((function e(t){var n;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:e.prev=0,n=navigator.clipboard.write([new window.ClipboardItem((0,r.Z)({},c.LO.png,t))]),e.next=23;break;case 4:if(e.prev=4,e.t0=e.catch(0),!(0,d.y8)(t)){e.next=22;break}return e.t1=navigator.clipboard,e.t2=window.ClipboardItem,e.t3=r.Z,e.t4={},e.t5=c.LO.png,e.next=14,t;case 14:return e.t6=e.sent,e.t7=(0,e.t3)(e.t4,e.t5,e.t6),e.t8=new e.t2(e.t7),e.t9=[e.t8],e.next=20,e.t1.write.call(e.t1,e.t9);case 20:e.next=23;break;case 22:throw e.t0;case 23:return e.next=25,n;case 25:case"end":return e.stop()}}),e,null,[[0,4]])})));return function(t){return e.apply(this,arguments)}}(),C=function(){var e=(0,o.Z)(a().mark((function e(t){var n;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=!1,!b){e.next=11;break}return e.prev=2,e.next=5,navigator.clipboard.writeText(t||"");case 5:n=!0,e.next=11;break;case 8:e.prev=8,e.t0=e.catch(2),console.error(e.t0);case 11:if(n||O(t||" ")){e.next=13;break}throw new Error("couldn't copy");case 13:case"end":return e.stop()}}),e,null,[[2,8]])})));return function(t){return e.apply(this,arguments)}}(),O=function(e){var t="rtl"===document.documentElement.getAttribute("dir"),n=document.createElement("textarea");n.style.border="0",n.style.padding="0",n.style.margin="0",n.style.position="absolute",n.style[t?"right":"left"]="-9999px";var r=window.pageYOffset||document.documentElement.scrollTop;n.style.top="".concat(r,"px"),n.style.fontSize="12pt",n.setAttribute("readonly",""),n.value=e,document.body.appendChild(n);var o=!1;try{n.select(),n.setSelectionRange(0,n.value.length),o=document.execCommand("copy")}catch(e){console.error(e)}return n.remove(),o}},56:function(e,t,n){"use strict";var r=n(1930),o=n(5284),i=function(e){return[o.red[e],o.pink[e],o.grape[e],o.violet[e],o.indigo[e],o.blue[e],o.cyan[e],o.teal[e],o.green[e],o.lime[e],o.yellow[e],o.orange[e]]};t.Z={canvasBackground:[o.white,o.gray[0],o.gray[1]].concat((0,r.Z)(i(0))),elementBackground:["transparent",o.gray[4],o.gray[6]].concat((0,r.Z)(i(6))),elementStroke:[o.black,o.gray[8],o.gray[7]].concat((0,r.Z)(i(9)))}},5076:function(e,t,n){"use strict";n.d(t,{ZP:function(){return ya},qx:function(){return Fi},Dh:function(){return Hi},Fy:function(){return Yi},gF:function(){return Qi},J0:function(){return Vi},bd:function(){return $i},n9:function(){return ea}});var r=n(6655),o=n(2577),i=n(1930),a=n(8950),l=n(8821),s=n(5169),c=n(3173),u=n(2248),d=n(7245),p=n(2312),f=n(7169),h=n(2975),m=n.n(h),g=n(9787),v=n.n(g),b=n(5156),y=n(8234),x=n(45),w=n(5605),k=n(75),E=n(6066),S=n(1319),_=n(5202),j=n(7901),C=n(1002),O=n(1935),M=n(242),I=n(6938),P=n(8290),T=n(1974),D=n(6340),L=n(3646),A=n(4512);function Z(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function z(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Z(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Z(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var R=function(e,t){if(e.editingGroupId){var n=(0,M.Fb)((0,C.Lm)(t),e.editingGroupId);if(n.length)return z(z({},e),{},{selectedElementIds:(0,f.Z)({},n[0].id,!0)})}return e},N=(0,j.z)({name:"deleteSelectedElements",trackEvent:{category:"element",action:"delete"},perform:function(e,t){if(t.editingLinearElement){var n=t.editingLinearElement,r=n.elementId,o=n.selectedPointsIndices,i=n.startBindingElement,a=n.endBindingElement,l=I._.getElement(r);if(!l)return!1;if(null==o)return!1;if(l.points.length<2){var s=e.map((function(e){return e.id===l.id?(0,O.BE)(e,{isDeleted:!0}):e}));return{elements:s,appState:z(z({},R(t,s)),{},{editingLinearElement:null}),commitToHistory:!1}}var c={startBindingElement:null!=o&&o.includes(0)?null:i,endBindingElement:null!=o&&o.includes(l.points.length-1)?null:a};return I._.deletePoints(l,o),{elements:e,appState:z(z({},t),{},{editingLinearElement:z(z(z({},t.editingLinearElement),c),{},{selectedPointsIndices:(null==o?void 0:o[0])>0?[o[0]-1]:[0]})}),commitToHistory:!0}}var u=function(e,t){return{elements:e.map((function(e){return t.selectedElementIds[e.id]||(0,T.Xh)(e)&&t.selectedElementIds[e.containerId]?(0,O.BE)(e,{isDeleted:!0}):e})),appState:z(z({},t),{},{selectedElementIds:{}})}}(e,t),d=u.elements,p=u.appState;return(0,P.$q)(d,e.filter((function(e){var n=e.id;return t.selectedElementIds[n]}))),{elements:d,appState:z(z({},p=R(p,d)),{},{activeTool:(0,D.Om)(t,{type:"selection"}),multiElement:null}),commitToHistory:(0,k.N)((0,C.Lm)(e),t)}},contextItemLabel:"labels.delete",keyTest:function(e){return e.key===E.tW.BACKSPACE||e.key===E.tW.DELETE},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,A.jsx)(S.V,{type:"button",icon:L.XH,title:(0,_.t)("labels.delete"),"aria-label":(0,_.t)("labels.delete"),onClick:function(){return r(null)},visible:(0,k.N)((0,C.Lm)(t),n)})}}),B=n(1564),W=function(e,t){for(var n=[],r=[],o=null,i=-1,a=(0,D.xn)((0,k.eD)(e,t,!0));++i<e.length;)a.get(e[i].id)?(r.length&&(n=n.concat(r),r=[]),n.push(i),o=i+1):e[i].isDeleted&&o===i?(o=i+1,r.push(i)):r=[];return n},H=function(e,t,n){if("containerId"in e&&e.containerId){if("left"!==n)return t.indexOf(e);var r=B.Z.getScene(e).getElement(e.containerId);if(r)return t.indexOf(r)}else{var o,i,a=null===(o=e.boundElements)||void 0===o||null===(i=o.find((function(e){return"arrow"!==e.type})))||void 0===i?void 0:i.id;if(a){if("left"===n)return t.indexOf(e);var l=B.Z.getScene(e).getElement(a);if(l)return t.indexOf(l)}}},F=function(e,t){return t.reduce((function(t,n){var r=e[n];return t[r.id]=r,t}),{})},U=function(e,t,n){var r,o,a=W(t,e),l=F(t,a),s=(o=0,(r=a).reduce((function(e,t,n){return n>0&&r[n-1]!==t-1&&(o=++o),(e[o]||(e[o]=[])).push(t),e}),[]));return"right"===n&&(s=s.reverse()),s.forEach((function(r,o){var a=r[0],l=r[r.length-1],s="left"===n?a:l,c=function(e,t,n,r){var o,i=t[n],a=function(t){return!t.isDeleted&&(!e.editingGroupId||t.groupIds.includes(e.editingGroupId))},l="left"===r?(0,D.qr)(t,a,Math.max(0,n-1)):(0,D.cx)(t,a,n+1),s=t[l];if(!s)return-1;if(e.editingGroupId){var c;if((null==i?void 0:i.groupIds.join(""))===(null==s?void 0:s.groupIds.join("")))return null!==(c=H(s,t,r))&&void 0!==c?c:l;if(null==s||!s.groupIds.includes(e.editingGroupId))return-1}if(!s.groupIds.length)return null!==(o=H(s,t,r))&&void 0!==o?o:l;var u=e.editingGroupId?s.groupIds[s.groupIds.indexOf(e.editingGroupId)-1]:s.groupIds[s.groupIds.length-1],d=(0,M.Fb)(t,u);return d.length?"left"===r?t.indexOf(d[0]):t.indexOf(d[d.length-1]):l}(e,t,s,n);if(-1!==c&&s!==c){var u="left"===n?t.slice(0,c):t.slice(0,a),d=t.slice(a,l+1),p="left"===n?t.slice(c,a):t.slice(l+1,c+1),f="left"===n?t.slice(l+1):t.slice(c+1);t="left"===n?[].concat((0,i.Z)(u),(0,i.Z)(d),(0,i.Z)(p),(0,i.Z)(f)):[].concat((0,i.Z)(u),(0,i.Z)(p),(0,i.Z)(d),(0,i.Z)(f))}})),t.map((function(e){return l[e.id]?(0,O.ZP)(e):e}))},K=function(e,t,n){var r,o,a=W(e,t),l=F(e,a),s=[];if("left"===n){if(t.editingGroupId){var c=(0,M.Fb)(e,t.editingGroupId);if(!c.length)return e;r=e.indexOf(c[0])}else r=0;o=a[a.length-1]}else{if(t.editingGroupId){var u=(0,M.Fb)(e,t.editingGroupId);if(!u.length)return e;o=e.indexOf(u[u.length-1])}else o=e.length-1;r=a[0]}for(var d=r;d<o+1;d++)a.includes(d)||s.push(e[d]);var p=Object.values(l).map((function(e){return(0,O.ZP)(e)})),f=e.slice(0,r),h=e.slice(o+1);return"left"===n?[].concat((0,i.Z)(f),(0,i.Z)(p),s,(0,i.Z)(h)):[].concat((0,i.Z)(f),s,(0,i.Z)(p),(0,i.Z)(h))},Y=function(e,t){return U(t,e,"left")},G=function(e,t){return U(t,e,"right")},V=function(e,t){return K(e,t,"left")},X=function(e,t){return K(e,t,"right")},q=(0,j.z)({name:"sendBackward",trackEvent:{category:"element"},perform:function(e,t){return{elements:Y(e,t),appState:t,commitToHistory:!0}},contextItemLabel:"labels.sendBackward",keyPriority:40,keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&!e.shiftKey&&e.code===E.aU.BRACKET_LEFT},PanelComponent:function(e){var t=e.updateData;e.appState;return(0,A.jsx)("button",{type:"button",className:"zIndexButton",onClick:function(){return t(null)},title:"".concat((0,_.t)("labels.sendBackward")," — ").concat((0,D.uY)("CtrlOrCmd+[")),children:L.Gc})}}),J=(0,j.z)({name:"bringForward",trackEvent:{category:"element"},perform:function(e,t){return{elements:G(e,t),appState:t,commitToHistory:!0}},contextItemLabel:"labels.bringForward",keyPriority:40,keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&!e.shiftKey&&e.code===E.aU.BRACKET_RIGHT},PanelComponent:function(e){var t=e.updateData;e.appState;return(0,A.jsx)("button",{type:"button",className:"zIndexButton",onClick:function(){return t(null)},title:"".concat((0,_.t)("labels.bringForward")," — ").concat((0,D.uY)("CtrlOrCmd+]")),children:L.t5})}}),$=(0,j.z)({name:"sendToBack",trackEvent:{category:"element"},perform:function(e,t){return{elements:V(e,t),appState:t,commitToHistory:!0}},contextItemLabel:"labels.sendToBack",keyTest:function(e){return E.Um?e[E.tW.CTRL_OR_CMD]&&e.altKey&&e.code===E.aU.BRACKET_LEFT:e[E.tW.CTRL_OR_CMD]&&e.shiftKey&&e.code===E.aU.BRACKET_LEFT},PanelComponent:function(e){var t=e.updateData;e.appState;return(0,A.jsx)("button",{type:"button",className:"zIndexButton",onClick:function(){return t(null)},title:"".concat((0,_.t)("labels.sendToBack")," — ").concat(E.Um?(0,D.uY)("CtrlOrCmd+Alt+["):(0,D.uY)("CtrlOrCmd+Shift+[")),children:L.pw})}}),Q=(0,j.z)({name:"bringToFront",trackEvent:{category:"element"},perform:function(e,t){return{elements:X(e,t),appState:t,commitToHistory:!0}},contextItemLabel:"labels.bringToFront",keyTest:function(e){return E.Um?e[E.tW.CTRL_OR_CMD]&&e.altKey&&e.code===E.aU.BRACKET_RIGHT:e[E.tW.CTRL_OR_CMD]&&e.shiftKey&&e.code===E.aU.BRACKET_RIGHT},PanelComponent:function(e){var t=e.updateData;e.appState;return(0,A.jsx)("button",{type:"button",className:"zIndexButton",onClick:function(e){return t(null)},title:"".concat((0,_.t)("labels.bringToFront")," — ").concat(E.Um?(0,D.uY)("CtrlOrCmd+Alt+]"):(0,D.uY)("CtrlOrCmd+Shift+]")),children:L.IN})}});function ee(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function te(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ee(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ee(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ne=(0,j.z)({name:"selectAll",trackEvent:{category:"canvas"},perform:function(e,t,n,r){if(t.editingLinearElement)return!1;var o=e.reduce((function(e,t){return t.isDeleted||(0,C.iB)(t)&&t.containerId||t.locked||(e[t.id]=!0),e}),{});return{appState:(0,M.bO)(te(te({},t),{},{selectedLinearElement:1===Object.keys(o).length&&(0,T.bt)(e[0])?new I._(e[0],r.scene):null,editingGroupId:null,selectedElementIds:o}),(0,C.Lm)(e)),commitToHistory:!0}},contextItemLabel:"labels.selectAll",keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&e.key===E.tW.A}}),re=n(2335),oe=n(5710);function ie(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ae(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ie(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ie(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var le=(0,j.z)({name:"duplicateSelection",trackEvent:{category:"element"},perform:function(e,t){if(t.editingLinearElement){var n=I._.duplicateSelectedPoints(t);return!!n&&{elements:e,appState:n.appState,commitToHistory:!0}}return ae(ae({},se(e,t)),{},{commitToHistory:!0})},contextItemLabel:"labels.duplicateSelection",keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&e.key===E.tW.D},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,A.jsx)(S.V,{type:"button",icon:L.NA,title:"".concat((0,_.t)("labels.duplicateSelection")," — ").concat((0,D.uY)("CtrlOrCmd+D")),"aria-label":(0,_.t)("labels.duplicateSelection"),onClick:function(){return r(null)},visible:(0,k.N)((0,C.Lm)(t),n)})}}),se=function(e,t){for(var n=new Map,r=[],o=[],a=new Map,l=function(e){var i=(0,C.Sy)(t.editingGroupId,n,e,{x:e.x+re.k/2,y:e.y+re.k/2});return a.set(e.id,i.id),o.push(e),r.push(i),i},s=[],c=0,u=(0,D.xn)((0,k.eD)(e,t,!0));c<e.length;){var d=e[c];if(u.get(d.id)){if(d.groupIds.length){var p=(0,M.yO)(t,d);if(p){var f=(0,M.Fb)(e,p);s.push.apply(s,(0,i.Z)(f).concat((0,i.Z)(f.map((function(e){return l(e)}))))),c+=f.length;continue}}s.push(d,l(d))}else s.push(d);c++}return(0,oe.P7)(s,o,a),(0,P.ek)(s,o,a),{elements:s,appState:(0,M.bO)(ae(ae({},t),{},{selectedGroupIds:{},selectedElementIds:r.reduce((function(e,t){return(0,T.Xh)(t)||(e[t.id]=!0),e}),{})}),(0,C.Lm)(s))}},ce=(n(6208),n(828),n(6552));function ue(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function de(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ue(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ue(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var pe=(0,j.z)({name:"finalize",trackEvent:!1,perform:function(e,t,n,r){var i,a=r.canvas,l=r.focusContainer,s=r.scene;if(t.editingLinearElement){var c=t.editingLinearElement,u=c.elementId,d=c.startBindingElement,p=c.endBindingElement,h=I._.getElement(u);if(h)return(0,T.Mn)(h)&&(0,P.HG)(h,d,p),{elements:h.points.length<2||(0,C.QD)(h)?e.filter((function(e){return e.id!==h.id})):void 0,appState:de(de({},t),{},{cursorButton:"up",editingLinearElement:null}),commitToHistory:!0}}var m=e,g=t.pendingImageElementId&&s.getElement(t.pendingImageElementId);g&&(0,O.DR)(g,{isDeleted:!0},!1),window.document.activeElement instanceof HTMLElement&&l();var v,b=t.multiElement?t.multiElement:"freedraw"===(null===(i=t.editingElement)||void 0===i?void 0:i.type)?t.editingElement:null;if(b){if("freedraw"!==b.type&&"touch"!==t.lastPointerDownWith){var y=b.points,x=b.lastCommittedPoint;x&&y[y.length-1]===x||(0,O.DR)(b,{points:b.points.slice(0,-1)})}(0,C.QD)(b)&&(m=m.slice(0,-1));var w=(0,ce.g6)(b.points,t.zoom.value);if(("line"===b.type||"freedraw"===b.type)&&w){var k=b.points,E=k[0];(0,O.DR)(b,{points:k.map((function(e,t){return t===k.length-1?[E[0],E[1]]:e}))})}if((0,T.Mn)(b)&&!w&&b.points.length>1){var S=I._.getPointAtIndexGlobalCoordinates(b,-1),_=(0,o.Z)(S,2),j=_[0],M=_[1];(0,P.R)(b,t,B.Z.getScene(b),{x:j,y:M})}t.activeTool.locked||"freedraw"===t.activeTool.type||(t.selectedElementIds[b.id]=!0)}return(t.activeTool.locked||"freedraw"===t.activeTool.type)&&b||(0,D.z8)(a),v="eraser"===t.activeTool.type?(0,D.Om)(t,de(de({},t.activeTool.lastActiveToolBeforeEraser||{type:"selection"}),{},{lastActiveToolBeforeEraser:null})):(0,D.Om)(t,{type:"selection"}),{elements:m,appState:de(de({},t),{},{cursorButton:"up",activeTool:(t.activeTool.locked||"freedraw"===t.activeTool.type)&&b?t.activeTool:v,draggingElement:null,multiElement:null,editingElement:null,startBoundElement:null,suggestedBindings:[],selectedElementIds:b&&!t.activeTool.locked&&"freedraw"!==t.activeTool.type?de(de({},t.selectedElementIds),{},(0,f.Z)({},b.id,!0)):t.selectedElementIds,selectedLinearElement:b&&(0,T.bt)(b)?new I._(b,s):t.selectedLinearElement,pendingImageElementId:null}),commitToHistory:"freedraw"===t.activeTool.type}},keyTest:function(e,t){return e.key===E.tW.ESCAPE&&(null!==t.editingLinearElement||!t.draggingElement&&null===t.multiElement)||(e.key===E.tW.ESCAPE||e.key===E.tW.ENTER)&&null!==t.multiElement},PanelComponent:function(e){var t=e.appState,n=e.updateData,r=e.data;return(0,A.jsx)(S.V,{type:"button",icon:L.$c,title:(0,_.t)("buttons.done"),"aria-label":(0,_.t)("buttons.done"),onClick:n,visible:null!=t.multiElement,size:(null==r?void 0:r.size)||"medium"})}}),fe=n(487),he=n.n(fe),me=n(631),ge=n.n(me),ve=n(2052),be=n.n(ve),ye=n(4010),xe=n.n(ye),we=n(1469),ke=n.n(we),Ee=n(9329),Se=n.n(Ee),_e=n(6759),je={};je.styleTagTransform=Se(),je.setAttributes=xe(),je.insert=be().bind(null,"head"),je.domAPI=ge(),je.insertStyleElement=ke();he()(_e.Z,je),_e.Z&&_e.Z.locals&&_e.Z.locals;var Ce=n(532),Oe={};Oe.styleTagTransform=Se(),Oe.setAttributes=xe(),Oe.insert=be().bind(null,"head"),Oe.domAPI=ge(),Oe.insertStyleElement=ke();he()(Ce.Z,Oe),Ce.Z&&Ce.Z.locals&&Ce.Z.locals;var Me=function(e){var t=Vi().id,n=(0,g.useState)(e.value),r=(0,o.Z)(n,2),i=r[0],a=r[1];return(0,A.jsxs)("div",{className:"ProjectName",children:[(0,A.jsx)("label",{className:"ProjectName-label",htmlFor:"filename",children:"".concat(e.label).concat(e.isNameEditable?"":":")}),e.isNameEditable?(0,A.jsx)("input",{type:"text",className:"TextInput",onBlur:function(t){(0,D.qz)(t.target);var n=t.target.value;n!==e.value&&e.onChange(n)},onKeyDown:function(e){if("Enter"===e.key){if(e.preventDefault(),e.nativeEvent.isComposing||229===e.keyCode)return;e.currentTarget.blur()}},id:"".concat(t,"-filename"),value:i,onChange:function(e){return a(e.target.value)}}):(0,A.jsx)("span",{className:"TextInput TextInput--readonly",id:"".concat(t,"-filename"),children:e.value})]})},Ie=(n(5422),n(1894)),Pe=function(e){var t=e.title||("dark"===e.value?(0,_.t)("buttons.lightMode"):(0,_.t)("buttons.darkMode"));return(0,A.jsx)(S.V,{type:"icon",icon:e.value===re.C6.LIGHT?Te.MOON:Te.SUN,title:t,"aria-label":t,onClick:function(){return e.onChange(e.value===re.C6.DARK?re.C6.LIGHT:re.C6.DARK)},"data-testid":"toggle-dark-mode"})},Te={SUN:(0,A.jsx)("svg",{width:"512",height:"512",className:"rtl-mirror",viewBox:"0 0 512 512",children:(0,A.jsx)("path",{fill:"currentColor",d:"M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z"})}),MOON:(0,A.jsx)("svg",{width:"512",height:"512",className:"rtl-mirror",viewBox:"0 0 512 512",children:(0,A.jsx)("path",{fill:"currentColor",d:"M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"})})},De=n(6665),Le=n(4162),Ae=n(434),Ze=n(1393),ze=n(5523),Re=function(){var e=(0,a.Z)(m().mark((function e(t,r,o,i,a){var l,s,c,u,d,p,f,h,g,v,b;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(l=a.exportBackground,s=a.exportPadding,c=void 0===s?re.qy:s,u=a.viewBackgroundColor,d=a.name,p=a.fileHandle,f=void 0===p?null:p,0!==r.length){e.next=3;break}throw new Error((0,_.t)("alerts.cannotExportEmptyCanvas"));case 3:if("svg"!==t&&"clipboard-svg"!==t){e.next=17;break}return e.next=6,(0,Le.$D)(r,{exportBackground:l,exportWithDarkMode:o.exportWithDarkMode,viewBackgroundColor:u,exportPadding:c,exportScale:o.exportScale,exportEmbedScene:o.exportEmbedScene&&"svg"===t},i);case 6:if(h=e.sent,"svg"!==t){e.next=13;break}return e.next=10,(0,Ze.NL)(new Blob([h.outerHTML],{type:re.LO.svg}),{description:"Export to SVG",name:d,extension:o.exportEmbedScene?"excalidraw.svg":"svg",fileHandle:f});case 10:return e.abrupt("return",e.sent);case 13:if("clipboard-svg"!==t){e.next=17;break}return e.next=16,(0,De.dd)(h.outerHTML);case 16:return e.abrupt("return");case 17:return e.next=19,(0,Le.NL)(r,o,i,{exportBackground:l,viewBackgroundColor:u,exportPadding:c});case 19:if((g=e.sent).style.display="none",document.body.appendChild(g),"png"!==t){e.next=38;break}return e.next=25,(0,Ae._c)(g);case 25:if(v=e.sent,g.remove(),!o.exportEmbedScene){e.next=33;break}return e.next=30,Promise.resolve().then(n.bind(n,673));case 30:return e.next=32,e.sent.encodePngMetadata({blob:v,metadata:(0,ze.I_)(r,o,i,"local")});case 32:v=e.sent;case 33:return e.next=35,(0,Ze.NL)(v,{description:"Export to PNG",name:d,extension:o.exportEmbedScene?"excalidraw.png":"png",fileHandle:f});case 35:return e.abrupt("return",e.sent);case 38:if("clipboard"!==t){e.next=55;break}return e.prev=39,b=(0,Ae._c)(g),e.next=43,(0,De.uR)(b);case 43:e.next=50;break;case 45:if(e.prev=45,e.t0=e.catch(39),"CANVAS_POSSIBLY_TOO_BIG"!==e.t0.name){e.next=49;break}throw e.t0;case 49:throw new Error((0,_.t)("alerts.couldNotCopyToClipboard"));case 50:return e.prev=50,g.remove(),e.finish(50);case 53:e.next=57;break;case 55:throw g.remove(),new Error("Unsupported export type");case 57:case"end":return e.stop()}}),e,null,[[39,45,50,53]])})));return function(t,n,r,o,i){return e.apply(this,arguments)}}();function Ne(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Be(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ne(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ne(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var We=function(){var e=(0,a.Z)(m().mark((function e(t,n,r){var o,i,a,l,s,c;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(i=(o=n).exportBackground,a=o.viewBackgroundColor,l=o.name,s=o.fileHandle,c=(0,Ae.Qk)(s),s&&(0,Ae.DQ)(c)){e.next=4;break}throw new Error("fileHandle should exist and should be of type svg or png when resaving");case 4:return n=Be(Be({},n),{},{exportEmbedScene:!0}),e.next=7,Re(c,(0,C.Lm)(t),n,r,{exportBackground:i,viewBackgroundColor:a,name:l,fileHandle:s});case 7:return e.abrupt("return",{fileHandle:s});case 8:case"end":return e.stop()}}),e)})));return function(t,n,r){return e.apply(this,arguments)}}(),He=n(6029),Fe={};Fe.styleTagTransform=Se(),Fe.setAttributes=xe(),Fe.insert=be().bind(null,"head"),Fe.domAPI=ge(),Fe.insertStyleElement=ke();he()(He.Z,Fe),He.Z&&He.Z.locals&&He.Z.locals;var Ue=function(e){var t=e.children,n=e.checked,r=e.onChange,o=e.className;return(0,A.jsxs)("div",{className:(0,x.Z)("Checkbox",o,{"is-checked":n}),onClick:function(e){r(!n,e),e.currentTarget.querySelector(".Checkbox-box").focus()},children:[(0,A.jsx)("button",{className:"Checkbox-box",role:"checkbox","aria-checked":n,children:L.eQ}),(0,A.jsx)("div",{className:"Checkbox-label",children:t})]})},Ke=n(785),Ye=n(9135),Ge={};Ge.styleTagTransform=Se(),Ge.setAttributes=xe(),Ge.insert=be().bind(null,"head"),Ge.domAPI=ge(),Ge.insertStyleElement=ke();he()(Ye.Z,Ge),Ye.Z&&Ye.Z.locals&&Ye.Z.locals;var Ve=n(3202),Xe=function(e){e.fileName;var t=e.onSave;return(0,A.jsx)(Ve.Z,{label:"".concat((0,_.t)("buttons.save")),shortcut:(0,Ke.C)("saveScene"),dataTestId:"save-button",onClick:t,icon:L.a1})};function qe(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Je(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?qe(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):qe(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}(0,j.z)({name:"changeProjectName",trackEvent:!1,perform:function(e,t,n){return{appState:Je(Je({},t),{},{name:n}),commitToHistory:!1}},PanelComponent:function(e){var t=e.appState,n=e.updateData,r=e.appProps;return(0,A.jsx)(Me,{label:(0,_.t)("labels.fileTitle"),value:t.name||"Unnamed",onChange:function(e){return n(e)},isNameEditable:void 0===r.name&&!t.viewModeEnabled})}}),(0,j.z)({name:"changeExportScale",trackEvent:{category:"export",action:"scale"},perform:function(e,t,n){return{appState:Je(Je({},t),{},{exportScale:n}),commitToHistory:!1}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData,i=(0,C.Lm)(t),a=(0,k.N)(i,n)?(0,k.eD)(i,n):i;return(0,A.jsx)(A.Fragment,{children:re.ZB.map((function(e){var t=(0,Le.Cg)(a,re.qy,e),i=(0,o.Z)(t,2),l=i[0],s=i[1],c="".concat((0,_.t)("buttons.scale")," ").concat(e,"x (").concat(l,"x").concat(s,")");return(0,A.jsx)(S.V,{size:"small",type:"radio",icon:"".concat(e,"x"),name:"export-canvas-scale",title:c,"aria-label":c,id:"export-canvas-scale",checked:e===n.exportScale,onChange:function(){return r(e)}},e)}))})}}),(0,j.z)({name:"changeExportBackground",trackEvent:{category:"export",action:"toggleBackground"},perform:function(e,t,n){return{appState:Je(Je({},t),{},{exportBackground:n}),commitToHistory:!1}},PanelComponent:function(e){var t=e.appState,n=e.updateData;return(0,A.jsx)(Ue,{checked:t.exportBackground,onChange:function(e){return n(e)},children:(0,_.t)("labels.withBackground")})}}),(0,j.z)({name:"changeExportEmbedScene",trackEvent:{category:"export",action:"embedScene"},perform:function(e,t,n){return{appState:Je(Je({},t),{},{exportEmbedScene:n}),commitToHistory:!1}},PanelComponent:function(e){var t=e.appState,n=e.updateData;return(0,A.jsxs)(Ue,{checked:t.exportEmbedScene,onChange:function(e){return n(e)},children:[(0,_.t)("labels.exportEmbedScene"),(0,A.jsx)(Ie.u,{label:(0,_.t)("labels.exportEmbedScene_details"),long:!0,children:(0,A.jsx)("div",{className:"excalidraw-tooltip-icon",children:L.Vl})})]})}}),(0,j.z)({name:"saveToActiveFile",trackEvent:{category:"export"},perform:($e=(0,a.Z)(m().mark((function e(t,n,r,o){var i,a,l;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(i=!!n.fileHandle,e.prev=1,!(0,Ae.g8)(n.fileHandle)){e.next=8;break}return e.next=5,We(t,n,o.files);case 5:e.t0=e.sent,e.next=11;break;case 8:return e.next=10,(0,ze.Um)(t,n,o.files);case 10:e.t0=e.sent;case 11:return a=e.t0,l=a.fileHandle,e.abrupt("return",{commitToHistory:!1,appState:Je(Je({},n),{},{fileHandle:l,toast:i?{message:null!=l&&l.name?(0,_.t)("toast.fileSavedToFilename").replace("{filename}",'"'.concat(l.name,'"')):(0,_.t)("toast.fileSaved")}:null})});case 16:return e.prev=16,e.t1=e.catch(1),"AbortError"!==(null===e.t1||void 0===e.t1?void 0:e.t1.name)?console.error(e.t1):console.warn(e.t1),e.abrupt("return",{commitToHistory:!1});case 20:case"end":return e.stop()}}),e,null,[[1,16]])}))),function(e,t,n,r){return $e.apply(this,arguments)}),keyTest:function(e){return e.key===E.tW.S&&e[E.tW.CTRL_OR_CMD]&&!e.shiftKey},PanelComponent:function(e){var t,n=e.updateData,r=e.appState;return(0,A.jsx)(Xe,{onSave:function(){return n(null)},fileName:null===(t=r.fileHandle)||void 0===t?void 0:t.name})}});var $e,Qe,et,tt=(0,j.z)({name:"saveFileToDisk",trackEvent:{category:"export"},perform:(Qe=(0,a.Z)(m().mark((function e(t,n,r,o){var i,a;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,(0,ze.Um)(t,Je(Je({},n),{},{fileHandle:null}),o.files);case 3:return i=e.sent,a=i.fileHandle,e.abrupt("return",{commitToHistory:!1,appState:Je(Je({},n),{},{fileHandle:a})});case 8:return e.prev=8,e.t0=e.catch(0),"AbortError"!==(null===e.t0||void 0===e.t0?void 0:e.t0.name)?console.error(e.t0):console.warn(e.t0),e.abrupt("return",{commitToHistory:!1});case 12:case"end":return e.stop()}}),e,null,[[0,8]])}))),function(e,t,n,r){return Qe.apply(this,arguments)}),keyTest:function(e){return e.key===E.tW.S&&e.shiftKey&&e[E.tW.CTRL_OR_CMD]},PanelComponent:function(e){var t=e.updateData;return(0,A.jsx)(S.V,{type:"button",icon:L.po,title:(0,_.t)("buttons.saveAs"),"aria-label":(0,_.t)("buttons.saveAs"),showAriaLabel:Yi().isMobile,hidden:!Ze.kr,onClick:function(){return t(null)},"data-testid":"save-as-button"})}}),nt=(0,j.z)({name:"loadScene",trackEvent:{category:"export"},perform:(et=(0,a.Z)(m().mark((function e(t,n,r,o){var i,a,l,s;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,(0,ze.n8)(n,t);case 3:return i=e.sent,a=i.elements,l=i.appState,s=i.files,e.abrupt("return",{elements:a,appState:l,files:s,commitToHistory:!0});case 10:if(e.prev=10,e.t0=e.catch(0),"AbortError"!==(null===e.t0||void 0===e.t0?void 0:e.t0.name)){e.next=15;break}return console.warn(e.t0),e.abrupt("return",!1);case 15:return e.abrupt("return",{elements:t,appState:Je(Je({},n),{},{errorMessage:e.t0.message}),files:o.files,commitToHistory:!1});case 16:case"end":return e.stop()}}),e,null,[[0,10]])}))),function(e,t,n,r){return et.apply(this,arguments)}),keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&e.key===E.tW.O},PanelComponent:function(e){var t=e.updateData;return(0,A.jsx)(Ve.Z,{label:(0,_.t)("buttons.load"),icon:L.Tl,onClick:t,dataTestId:"load-button",shortcut:(0,Ke.C)("loadScene")})}});(0,j.z)({name:"exportWithDarkMode",trackEvent:{category:"export",action:"toggleTheme"},perform:function(e,t,n){return{appState:Je(Je({},t),{},{exportWithDarkMode:n}),commitToHistory:!1}},PanelComponent:function(e){var t=e.appState,n=e.updateData;return(0,A.jsx)("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"-45px",marginBottom:"10px"},children:(0,A.jsx)(Pe,{value:t.exportWithDarkMode?re.C6.DARK:re.C6.LIGHT,onChange:function(e){n(e===re.C6.DARK)},title:(0,_.t)("labels.toggleExportColorScheme")})})}});function rt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ot(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?rt(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):rt(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var it="{}",at=(0,j.z)({name:"copyStyles",trackEvent:{category:"element"},perform:function(e,t){var n=[],r=e.find((function(e){return t.selectedElementIds[e.id]}));if(n.push(r),r&&(0,T.Xo)(r)){var o=(0,oe.WJ)(r);n.push(o)}return r&&(it=JSON.stringify(n)),{appState:ot(ot({},t),{},{toast:{message:(0,_.t)("toast.copyStyles")}}),commitToHistory:!1}},contextItemLabel:"labels.copyStyles",keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&e.altKey&&e.code===E.aU.C}}),lt=(0,j.z)({name:"pasteStyles",trackEvent:{category:"element"},perform:function(e,t){var n=JSON.parse(it),r=n[0],o=n[1];if(!(0,C.r2)(r))return{elements:e,commitToHistory:!1};var i=(0,k.eD)(e,t,!0),a=i.map((function(e){return e.id}));return{elements:e.map((function(e){if(a.includes(e.id)){var t,n,l,s,c,u,d,p=r;if((0,C.iB)(e)&&e.containerId&&(p=o),!p)return e;var f=(0,O.BE)(e,{backgroundColor:null===(t=p)||void 0===t?void 0:t.backgroundColor,strokeWidth:null===(n=p)||void 0===n?void 0:n.strokeWidth,strokeColor:null===(l=p)||void 0===l?void 0:l.strokeColor,strokeStyle:null===(s=p)||void 0===s?void 0:s.strokeStyle,fillStyle:null===(c=p)||void 0===c?void 0:c.fillStyle,opacity:null===(u=p)||void 0===u?void 0:u.opacity,roughness:null===(d=p)||void 0===d?void 0:d.roughness});if((0,C.iB)(f)){var h,m,g,v=null;(f=(0,O.BE)(f,{fontSize:(null===(h=p)||void 0===h?void 0:h.fontSize)||re.n5,fontFamily:(null===(m=p)||void 0===m?void 0:m.fontFamily)||re.rk,textAlign:(null===(g=p)||void 0===g?void 0:g.textAlign)||re.Hg})).containerId&&(v=i.find((function(e){return(0,C.iB)(f)&&e.id===f.containerId}))||null),(0,C.oN)(f,v)}return"arrow"===f.type&&(f=(0,O.BE)(f,{startArrowhead:p.startArrowhead,endArrowhead:p.endArrowhead})),f}return e})),commitToHistory:!0}},contextItemLabel:"labels.pasteStyles",keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&e.altKey&&e.code===E.aU.V}}),st=function(e){return(0,A.jsx)("button",{className:"help-icon",onClick:e.onClick,type:"button",title:"".concat(e.title," — ?"),"aria-label":e.title,children:L.by})};function ct(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ut(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ct(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ct(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}(0,j.z)({name:"toggleCanvasMenu",trackEvent:{category:"menu"},perform:function(e,t){return{appState:ut(ut({},t),{},{openMenu:"canvas"===t.openMenu?null:"canvas"}),commitToHistory:!1}},PanelComponent:function(e){var t=e.appState,n=e.updateData;return(0,A.jsx)(S.V,{type:"button",icon:L.RY,"aria-label":(0,_.t)("buttons.menu"),onClick:n,selected:"canvas"===t.openMenu})}}),(0,j.z)({name:"toggleEditMenu",trackEvent:{category:"menu"},perform:function(e,t){return{appState:ut(ut({},t),{},{openMenu:"shape"===t.openMenu?null:"shape"}),commitToHistory:!1}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,A.jsx)(S.V,{visible:(0,C.RT)(n,(0,C.Lm)(t)),type:"button",icon:L.DG,"aria-label":(0,_.t)("buttons.edit"),onClick:r,selected:"shape"===n.openMenu})}}),(0,j.z)({name:"toggleFullScreen",trackEvent:{category:"canvas",predicate:function(e){return!(0,D.rB)()}},perform:function(){return(0,D.rB)()||(0,D.wo)(),(0,D.rB)()&&(0,D.Pr)(),{commitToHistory:!1}},keyTest:function(e){return e.key===E.tW.F&&!e[E.tW.CTRL_OR_CMD]}});var dt=(0,j.z)({name:"toggleShortcuts",trackEvent:{category:"menu",action:"toggleHelpDialog"},perform:function(e,t,n,r){var o=r.focusContainer;return"help"===t.openDialog&&o(),{appState:ut(ut({},t),{},{openDialog:"help"===t.openDialog?null:"help"}),commitToHistory:!1}},PanelComponent:function(e){var t=e.updateData;return e.isInHamburgerMenu?(0,A.jsx)(Ve.Z,{label:(0,_.t)("helpDialog.title"),dataTestId:"help-menu-item",icon:L.by,onClick:t,shortcut:"?"}):(0,A.jsx)(st,{title:(0,_.t)("helpDialog.title"),onClick:t})},keyTest:function(e){return e.key===E.tW.QUESTION_MARK}}),pt=n(6954);function ft(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ht(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ft(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ft(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function mt(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return gt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return gt(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function gt(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var vt=function(e,t){var n=(0,k.eD)((0,C.Lm)(e),t,!0);return n.length>=2&&!function(e){if(e.length>=2){var t,n=mt(e[0].groupIds);try{var o=function(){var n=t.value;if(e.reduce((function(e,t){return e&&(0,M.Nd)(t,n)}),!0))return{v:!0}};for(n.s();!(t=n.n()).done;){var i=o();if("object"===(0,r.Z)(i))return i.v}}catch(e){n.e(e)}finally{n.f()}}return!1}(n)},bt=(0,j.z)({name:"group",trackEvent:{category:"element"},perform:function(e,t){var n=(0,k.eD)((0,C.Lm)(e),t,!0);if(n.length<2)return{appState:t,elements:e,commitToHistory:!1};var r=(0,M.iJ)(t);if(1===r.length){var o=r[0],a=new Set((0,M.Fb)(e,o).map((function(e){return e.id}))),l=new Set(n.map((function(e){return e.id})));if(new Set([].concat((0,i.Z)(Array.from(a)),(0,i.Z)(Array.from(l)))).size===a.size)return{appState:t,elements:e,commitToHistory:!1}}var s=(0,pt.kb)(),c=(0,D.xn)(n),u=e.map((function(e){return c.get(e.id)?(0,O.BE)(e,{groupIds:(0,M.S_)(e.groupIds,s,t.editingGroupId)}):e})),d=(0,M.Fb)(u,s),p=d[d.length-1],f=u.lastIndexOf(p),h=u.slice(f+1),m=u.slice(0,f).filter((function(e){return!(0,M.Nd)(e,s)})),g=[].concat((0,i.Z)(m),(0,i.Z)(d),(0,i.Z)(h));return{appState:(0,M.F$)(s,ht(ht({},t),{},{selectedGroupIds:{}}),(0,C.Lm)(g)),elements:g,commitToHistory:!0}},contextItemLabel:"labels.group",contextItemPredicate:function(e,t){return vt(e,t)},keyTest:function(e){return!e.shiftKey&&e[E.tW.CTRL_OR_CMD]&&e.key===E.tW.G},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,A.jsx)(S.V,{hidden:!vt(t,n),type:"button",icon:(0,A.jsx)(L.BF,{theme:n.theme}),onClick:function(){return r(null)},title:"".concat((0,_.t)("labels.group")," — ").concat((0,D.uY)("CtrlOrCmd+G")),"aria-label":(0,_.t)("labels.group"),visible:(0,k.N)((0,C.Lm)(t),n)})}}),yt=(0,j.z)({name:"ungroup",trackEvent:{category:"element"},perform:function(e,t){if(0===(0,M.iJ)(t).length)return{appState:t,elements:e,commitToHistory:!1};var n=[],r=e.map((function(e){(0,T.Xh)(e)&&n.push(e.id);var r=(0,M.h6)(e.groupIds,t.selectedGroupIds);return r.length===e.groupIds.length?e:(0,O.BE)(e,{groupIds:r})})),o=(0,M.bO)(ht(ht({},t),{},{selectedGroupIds:{}}),(0,C.Lm)(r));return n.forEach((function(e){return o.selectedElementIds[e]=!1})),{appState:o,elements:r,commitToHistory:!0}},keyTest:function(e){return e.shiftKey&&e[E.tW.CTRL_OR_CMD]&&e.key===E.tW.G.toUpperCase()},contextItemLabel:"labels.ungroup",contextItemPredicate:function(e,t){return(0,M.iJ)(t).length>0},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,A.jsx)(S.V,{type:"button",hidden:0===(0,M.iJ)(n).length,icon:(0,A.jsx)(L.RJ,{theme:n.theme}),onClick:function(){return r(null)},title:"".concat((0,_.t)("labels.ungroup")," — ").concat((0,D.uY)("CtrlOrCmd+Shift+G")),"aria-label":(0,_.t)("labels.ungroup"),visible:(0,k.N)((0,C.Lm)(t),n)})}}),xt=n(8982),wt=n(3729),kt={};kt.styleTagTransform=Se(),kt.setAttributes=xe(),kt.insert=be().bind(null,"head"),kt.domAPI=ge(),kt.insertStyleElement=ke();he()(wt.Z,kt),wt.Z&&wt.Z.locals&&wt.Z.locals;var Et=function(e){var t=e.color,n=e.onClick,r=e.name,i=e.src,a=(0,xt.f)(r),l=(0,g.useState)(!1),s=(0,o.Z)(l,2),c=s[0],u=s[1],d=!c&&i,p=d?void 0:{background:t};return(0,A.jsx)("div",{className:"Avatar",style:p,onClick:n,children:d?(0,A.jsx)("img",{className:"Avatar-img",src:i,alt:a,referrerPolicy:"no-referrer",onError:function(){return u(!0)}}):a})},St=n(2264);function _t(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function jt(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?_t(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):_t(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}(0,j.z)({name:"goToCollaborator",trackEvent:{category:"collab"},perform:function(e,t,n){var r=n;return r?{appState:jt(jt(jt({},t),(0,St.s)({scenePoint:r,viewportDimensions:{width:t.width,height:t.height},zoom:t.zoom})),{},{openMenu:"canvas"===t.openMenu?null:t.openMenu}),commitToHistory:!1}:{appState:t,commitToHistory:!1}},PanelComponent:function(e){var t=e.appState,n=e.updateData,r=e.data,i=(0,o.Z)(r,2),a=i[0],l=i[1],s=(0,xt.X)(a,t),c=s.background,u=s.stroke;return(0,A.jsx)(Et,{color:c,border:u,onClick:function(){return n(l.pointer)},name:l.username||"",src:l.avatarUrl})}});var Ct=n(2791);function Ot(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Mt(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ot(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ot(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var It=(0,j.z)({name:"addToLibrary",trackEvent:{category:"element"},perform:function(e,t,n,r){var o=(0,k.eD)((0,C.Lm)(e),t,!0);return o.some((function(e){return"image"===e.type}))?{commitToHistory:!1,appState:Mt(Mt({},t),{},{errorMessage:"Support for adding images to the library coming soon!"})}:r.library.getLatestLibrary().then((function(e){return r.library.setLibrary([{id:(0,pt.kb)(),status:"unpublished",elements:o.map(Ct.OL),created:Date.now()}].concat((0,i.Z)(e)))})).then((function(){return{commitToHistory:!1,appState:Mt(Mt({},t),{},{toast:{message:(0,_.t)("toast.addedToLibrary")}})}})).catch((function(e){return{commitToHistory:!1,appState:Mt(Mt({},t),{},{errorMessage:e.message})}}))},contextItemLabel:"labels.addToLibrary"}),Pt=n(8925);function Tt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Dt(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Tt(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Tt(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Lt=function(e,t,n){var r=n.axis,i=n.position,a=(0,Pt.v2)(e),l="x"===r?["minX","maxX"]:["minY","maxY"],s=(0,o.Z)(l,2),c=s[0],u=s[1],d={x:0,y:0};return Dt(Dt({},d),{},"start"===i?(0,f.Z)({},r,t[c]-a[c]):"end"===i?(0,f.Z)({},r,t[u]-a[u]):(0,f.Z)({},r,(t[c]+t[u])/2-(a[c]+a[u])/2))},At=function(e,t){return(0,k.eD)((0,C.Lm)(e),t).length>1},Zt=function(e,t,n){var r=function(e,t){var n=(0,M.AI)(e),r=(0,Pt.v2)(e);return n.flatMap((function(e){var n=Lt(e,r,t);return e.map((function(e){return(0,O.BE)(e,{x:e.x+n.x,y:e.y+n.y})}))}))}((0,k.eD)((0,C.Lm)(e),t),n),o=(0,D.xn)(r);return e.map((function(e){return o.get(e.id)||e}))};(0,j.z)({name:"alignTop",trackEvent:{category:"element"},perform:function(e,t){return{appState:t,elements:Zt(e,t,{position:"start",axis:"y"}),commitToHistory:!0}},keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&e.shiftKey&&e.key===E.tW.ARROW_UP},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,A.jsx)(S.V,{hidden:!At(t,n),type:"button",icon:L.Ct,onClick:function(){return r(null)},title:"".concat((0,_.t)("labels.alignTop")," — ").concat((0,D.uY)("CtrlOrCmd+Shift+Up")),"aria-label":(0,_.t)("labels.alignTop"),visible:(0,k.N)((0,C.Lm)(t),n)})}}),(0,j.z)({name:"alignBottom",trackEvent:{category:"element"},perform:function(e,t){return{appState:t,elements:Zt(e,t,{position:"end",axis:"y"}),commitToHistory:!0}},keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&e.shiftKey&&e.key===E.tW.ARROW_DOWN},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,A.jsx)(S.V,{hidden:!At(t,n),type:"button",icon:L.HL,onClick:function(){return r(null)},title:"".concat((0,_.t)("labels.alignBottom")," — ").concat((0,D.uY)("CtrlOrCmd+Shift+Down")),"aria-label":(0,_.t)("labels.alignBottom"),visible:(0,k.N)((0,C.Lm)(t),n)})}}),(0,j.z)({name:"alignLeft",trackEvent:{category:"element"},perform:function(e,t){return{appState:t,elements:Zt(e,t,{position:"start",axis:"x"}),commitToHistory:!0}},keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&e.shiftKey&&e.key===E.tW.ARROW_LEFT},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,A.jsx)(S.V,{hidden:!At(t,n),type:"button",icon:L.xs,onClick:function(){return r(null)},title:"".concat((0,_.t)("labels.alignLeft")," — ").concat((0,D.uY)("CtrlOrCmd+Shift+Left")),"aria-label":(0,_.t)("labels.alignLeft"),visible:(0,k.N)((0,C.Lm)(t),n)})}}),(0,j.z)({name:"alignRight",trackEvent:{category:"element"},perform:function(e,t){return{appState:t,elements:Zt(e,t,{position:"end",axis:"x"}),commitToHistory:!0}},keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&e.shiftKey&&e.key===E.tW.ARROW_RIGHT},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,A.jsx)(S.V,{hidden:!At(t,n),type:"button",icon:L.mh,onClick:function(){return r(null)},title:"".concat((0,_.t)("labels.alignRight")," — ").concat((0,D.uY)("CtrlOrCmd+Shift+Right")),"aria-label":(0,_.t)("labels.alignRight"),visible:(0,k.N)((0,C.Lm)(t),n)})}}),(0,j.z)({name:"alignVerticallyCentered",trackEvent:{category:"element"},perform:function(e,t){return{appState:t,elements:Zt(e,t,{position:"center",axis:"y"}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,A.jsx)(S.V,{hidden:!At(t,n),type:"button",icon:L.ST,onClick:function(){return r(null)},title:(0,_.t)("labels.centerVertically"),"aria-label":(0,_.t)("labels.centerVertically"),visible:(0,k.N)((0,C.Lm)(t),n)})}}),(0,j.z)({name:"alignHorizontallyCentered",trackEvent:{category:"element"},perform:function(e,t){return{appState:t,elements:Zt(e,t,{position:"center",axis:"x"}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,A.jsx)(S.V,{hidden:!At(t,n),type:"button",icon:L.gK,onClick:function(){return r(null)},title:(0,_.t)("labels.centerHorizontally"),"aria-label":(0,_.t)("labels.centerHorizontally"),visible:(0,k.N)((0,C.Lm)(t),n)})}});function zt(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return Rt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Rt(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function Rt(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Nt=function(e,t){return(0,k.eD)((0,C.Lm)(e),t).length>1},Bt=function(e,t,n){var r=function(e,t){var n,r="x"===t.axis?["minX","midX","maxX","width"]:["minY","midY","maxY","height"],i=(0,o.Z)(r,4),a=i[0],l=i[1],s=i[2],c=i[3],u=(0,Pt.v2)(e),d=(0,M.AI)(e).map((function(e){return[e,(0,Pt.v2)(e)]})).sort((function(e,t){return e[1][l]-t[1][l]})),p=0,f=zt(d);try{for(f.s();!(n=f.n()).done;)p+=n.value[1][c]}catch(e){f.e(e)}finally{f.f()}var h=(u[c]-p)/(d.length-1);if(h<0){var m=d.findIndex((function(e){return e[1][a]===u[a]})),g=d.findIndex((function(e){return e[1][s]===u[s]})),v=(d[g][1][l]-d[m][1][l])/(d.length-1),b=d[m][1][l];return d.flatMap((function(e,n){var r=(0,o.Z)(e,2),i=r[0],a=r[1],s={x:0,y:0};return n!==m&&n!==g&&(b+=v,s[t.axis]=b-a[l]),i.map((function(e){return(0,O.BE)(e,{x:e.x+s.x,y:e.y+s.y})}))}))}var y=u[a];return d.flatMap((function(e){var n=(0,o.Z)(e,2),r=n[0],i=n[1],l={x:0,y:0};return l[t.axis]=y-i[a],y+=h,y+=i[c],r.map((function(e){return(0,O.BE)(e,{x:e.x+l.x,y:e.y+l.y})}))}))}((0,k.eD)((0,C.Lm)(e),t),n),i=(0,D.xn)(r);return e.map((function(e){return i.get(e.id)||e}))},Wt=((0,j.z)({name:"distributeHorizontally",trackEvent:{category:"element"},perform:function(e,t){return{appState:t,elements:Bt(e,t,{space:"between",axis:"x"}),commitToHistory:!0}},keyTest:function(e){return!e[E.tW.CTRL_OR_CMD]&&e.altKey&&e.code===E.aU.H},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,A.jsx)(S.V,{hidden:!Nt(t,n),type:"button",icon:L.uD,onClick:function(){return r(null)},title:"".concat((0,_.t)("labels.distributeHorizontally")," — ").concat((0,D.uY)("Alt+H")),"aria-label":(0,_.t)("labels.distributeHorizontally"),visible:(0,k.N)((0,C.Lm)(t),n)})}}),(0,j.z)({name:"distributeVertically",trackEvent:{category:"element"},perform:function(e,t){return{appState:t,elements:Bt(e,t,{space:"between",axis:"y"}),commitToHistory:!0}},keyTest:function(e){return!e[E.tW.CTRL_OR_CMD]&&e.altKey&&e.code===E.aU.V},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,A.jsx)(S.V,{hidden:!Nt(t,n),type:"button",icon:L.W5,onClick:function(){return r(null)},title:"".concat((0,_.t)("labels.distributeVertically")," — ").concat((0,D.uY)("Alt+V")),"aria-label":(0,_.t)("labels.distributeVertically"),visible:(0,k.N)((0,C.Lm)(t),n)})}}),n(8634)),Ht=n(267),Ft=(0,j.z)({name:"flipHorizontal",trackEvent:{category:"element"},perform:function(e,t){return{elements:Kt(e,t,"horizontal"),appState:t,commitToHistory:!0}},keyTest:function(e){return e.shiftKey&&"KeyH"===e.code},contextItemLabel:"labels.flipHorizontal",contextItemPredicate:function(e,t){return function(e,t){var n=(0,k.eD)((0,C.Lm)(e),t);return 1===n.length&&"text"!==n[0].type}(e,t)}}),Ut=(0,j.z)({name:"flipVertical",trackEvent:{category:"element"},perform:function(e,t){return{elements:Kt(e,t,"vertical"),appState:t,commitToHistory:!0}},keyTest:function(e){return e.shiftKey&&"KeyV"===e.code&&!e[E.tW.CTRL_OR_CMD]},contextItemLabel:"labels.flipVertical",contextItemPredicate:function(e,t){return function(e,t){return 1===(0,k.eD)((0,C.Lm)(e),t).length}(e,t)}}),Kt=function(e,t,n){var r=(0,k.eD)((0,C.Lm)(e),t);if(r.length>1)return e;var o=Yt(r,t,n),i=(0,D.xn)(o);return e.map((function(e){return i.get(e.id)||e}))},Yt=function(e,t,n){return e.forEach((function(e){Gt(e,t),"vertical"===n&&Vt(e,Math.PI)})),e},Gt=function(e,t){var n=e.x,r=e.y,o=e.width,i=e.height,a=(0,Wt.LW)(e.angle);(0,O.DR)(e,{angle:(0,Wt.LW)(0)});var l=(0,Ht.PC)(e,t.zoom),s=!0,c=l.nw;if(c||(s=!1,c=l.ne)){var u,d=0;(0,T.bt)(e)&&e.points.length<3&&(d=2*e.points.reduce((function(e,t){return Math.max(e,t[0])}),0)-e.width),(0,T.bt)(e)&&(u=(0,Pt.Ut)(e,e.points,e.strokeSharpness));var p=(0,Pt.qf)(e);if((0,T.bt)(e)&&e.points.length<3){for(var f=1;f<e.points.length;f++)I._.movePoints(e,[{index:f,point:[-e.points[f][0],e.points[f][1]]}]);I._.normalizePoints(e)}else{var h=u?u[2]-u[0]:p[2]-p[0],m=u?[u[0],u[1]]:[p[0],p[1]];(0,Wt.l2)((new Map).set(e.id,e),!1,e,s?"nw":"ne",!0,s?m[0]+h:m[0]-h,m[1])}var g=(0,Wt.LW)(2*Math.PI-a);if(g<0&&(g=(0,Wt.LW)(g+2*Math.PI)),(0,O.DR)(e,{angle:g}),(0,O.DR)(e,{x:n+d,y:r,width:o,height:i}),(0,P.Ww)(e),u&&(0,T.bt)(e)){var v=(0,Pt.Ut)(e,e.points,e.strokeSharpness),b=u[0]-v[0]+(u[2]-v[2]);(0,O.DR)(e,{x:e.x+.5*b,y:e.y,width:o,height:i})}}else(0,O.DR)(e,{angle:a})},Vt=function(e,t){var n=e.x,r=e.y,o=(0,Wt.LW)(e.angle+t);o<0&&(o=(0,Wt.LW)(2*Math.PI+o)),(0,O.DR)(e,{angle:o}),(0,O.DR)(e,{x:n,y:r})},Xt=n(1868);function qt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Jt(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?qt(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):qt(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var $t=(0,j.z)({name:"copy",trackEvent:{category:"element"},perform:function(e,t,n,r){var o=(0,Xt.eD)(e,t,!0);return(0,De.vQ)(o,t,r.files),{commitToHistory:!1}},contextItemLabel:"labels.copy",keyTest:void 0}),Qt=(0,j.z)({name:"cut",trackEvent:{category:"element"},perform:function(e,t,n,r){return $t.perform(e,t,n,r),N.perform(e,t)},contextItemLabel:"labels.cut",keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&e.key===E.tW.X}}),en=(0,j.z)({name:"copyAsSvg",trackEvent:{category:"element"},perform:function(){var e=(0,a.Z)(m().mark((function e(t,n,r,o){var i;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(o.canvas){e.next=2;break}return e.abrupt("return",{commitToHistory:!1});case 2:return i=(0,Xt.eD)((0,C.Lm)(t),n,!0),e.prev=3,e.next=6,Re("clipboard-svg",i.length?i:(0,C.Lm)(t),n,o.files,n);case 6:return e.abrupt("return",{commitToHistory:!1});case 9:return e.prev=9,e.t0=e.catch(3),console.error(e.t0),e.abrupt("return",{appState:Jt(Jt({},n),{},{errorMessage:e.t0.message}),commitToHistory:!1});case 13:case"end":return e.stop()}}),e,null,[[3,9]])})));return function(t,n,r,o){return e.apply(this,arguments)}}(),contextItemLabel:"labels.copyAsSvg"}),tn=(0,j.z)({name:"copyAsPng",trackEvent:{category:"element"},perform:function(){var e=(0,a.Z)(m().mark((function e(t,n,r,o){var i;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(o.canvas){e.next=2;break}return e.abrupt("return",{commitToHistory:!1});case 2:return i=(0,Xt.eD)((0,C.Lm)(t),n,!0),e.prev=3,e.next=6,Re("clipboard",i.length?i:(0,C.Lm)(t),n,o.files,n);case 6:return e.abrupt("return",{appState:Jt(Jt({},n),{},{toast:{message:(0,_.t)("toast.copyToClipboardAsPng",{exportSelection:i.length?(0,_.t)("toast.selection"):(0,_.t)("toast.canvas"),exportColorScheme:n.exportWithDarkMode?(0,_.t)("buttons.darkMode"):(0,_.t)("buttons.lightMode")})}}),commitToHistory:!1});case 9:return e.prev=9,e.t0=e.catch(3),console.error(e.t0),e.abrupt("return",{appState:Jt(Jt({},n),{},{errorMessage:e.t0.message}),commitToHistory:!1});case 13:case"end":return e.stop()}}),e,null,[[3,9]])})));return function(t,n,r,o){return e.apply(this,arguments)}}(),contextItemLabel:"labels.copyAsPng",keyTest:function(e){return e.code===E.aU.C&&e.altKey&&e.shiftKey}}),nn=(0,j.z)({name:"copyText",trackEvent:{category:"element"},perform:function(e,t){var n=(0,Xt.eD)((0,C.Lm)(e),t,!0).reduce((function(e,t){return(0,C.iB)(t)&&e.push(t.text),e}),[]).join("\n\n");return(0,De.dd)(n),{commitToHistory:!1}},contextItemPredicate:function(e,t){return De.wx&&(0,Xt.eD)(e,t,!0).some(C.iB)},contextItemLabel:"labels.copyText"});function rn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function on(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?rn(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):rn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var an=(0,j.z)({name:"gridMode",trackEvent:{category:"canvas",predicate:function(e){return!e.gridSize}},perform:function(e,t){return{appState:on(on({},t),{},{gridSize:this.checked(t)?null:re.k}),commitToHistory:!1}},checked:function(e){return null!==e.gridSize},contextItemLabel:"labels.showGrid",keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&e.code===E.aU.QUOTE}});function ln(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function sn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ln(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ln(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var cn=(0,j.z)({name:"zenMode",trackEvent:{category:"canvas",predicate:function(e){return!e.zenModeEnabled}},perform:function(e,t){return{appState:sn(sn({},t),{},{zenModeEnabled:!this.checked(t)}),commitToHistory:!1}},checked:function(e){return e.zenModeEnabled},contextItemLabel:"buttons.zenMode",keyTest:function(e){return!e[E.tW.CTRL_OR_CMD]&&e.altKey&&e.code===E.aU.Z}});function un(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function dn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?un(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):un(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var pn=(0,j.z)({name:"stats",trackEvent:{category:"menu"},perform:function(e,t){return{appState:dn(dn({},t),{},{showStats:!this.checked(t)}),commitToHistory:!1}},checked:function(e){return e.showStats},contextItemLabel:"stats.title",keyTest:function(e){return!e[E.tW.CTRL_OR_CMD]&&e.altKey&&e.code===E.aU.SLASH}});function fn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function hn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?fn(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):fn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var mn=(0,j.z)({name:"unbindText",contextItemLabel:"labels.unbindText",trackEvent:{category:"element"},contextItemPredicate:function(e,t){return(0,k.eD)(e,t).some((function(e){return(0,T.Xo)(e)}))},perform:function(e,t){return(0,k.eD)((0,C.Lm)(e),t).forEach((function(e){var t=(0,oe.WJ)(e);if(t){var n,r=(0,oe.X1)(t.originalText,(0,D.mO)(t)),o=r.width,i=r.height,a=r.baseline;(0,O.DR)(t,{containerId:null,width:o,height:i,baseline:a,text:t.originalText}),(0,O.DR)(e,{boundElements:null===(n=e.boundElements)||void 0===n?void 0:n.filter((function(e){return e.id!==t.id}))})}})),{elements:e,appState:t,commitToHistory:!0}}}),gn=(0,j.z)({name:"bindText",contextItemLabel:"labels.bindText",trackEvent:{category:"element"},contextItemPredicate:function(e,t){var n=(0,k.eD)(e,t);if(2===n.length){var r,o=(0,C.iB)(n[0])||(0,C.iB)(n[1]);if((0,T.mG)(n[0])?r=n[0]:(0,T.mG)(n[1])&&(r=n[1]),o&&r&&null===(0,oe.WJ)(r))return!0}return!1},perform:function(e,t){var n,r,o=(0,k.eD)((0,C.Lm)(e),t);(0,C.iB)(o[0])&&(0,T.mG)(o[1])?(n=o[0],r=o[1]):(n=o[1],r=o[0]),(0,O.DR)(n,{containerId:r.id,verticalAlign:re.oX.MIDDLE}),(0,O.DR)(r,{boundElements:(r.boundElements||[]).concat({type:"text",id:n.id})}),(0,oe.oN)(n,r);var i=e.slice(),a=i.findIndex((function(e){return e.id===n.id}));i.splice(a,1);var l=i.findIndex((function(e){return e.id===r.id}));return i.splice(l+1,0,n),{elements:i,appState:hn(hn({},t),{},{selectedElementIds:(0,f.Z)({},r.id,!0)}),commitToHistory:!0}}}),vn=n(4929);function bn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function yn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?bn(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):bn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var xn=(0,j.z)({name:"toggleLock",trackEvent:{category:"element"},perform:function(e,t){var n=(0,k.eD)(e,t,!0);if(!n.length)return!1;var r=wn(n),o=(0,D.xn)(n),i="lock"===r;return{elements:e.map((function(e){return o.has(e.id)?(0,O.BE)(e,{locked:i}):e})),appState:yn(yn({},t),{},{selectedLinearElement:i?null:t.selectedLinearElement}),commitToHistory:!0}},contextItemLabel:function(e,t){var n=(0,k.eD)(e,t,!1);if(1===n.length)return n[0].locked?"labels.elementLock.unlock":"labels.elementLock.lock";if(n.length>1)return"lock"===wn(n)?"labels.elementLock.lockAll":"labels.elementLock.unlockAll";throw new Error("Unexpected zero elements to lock/unlock. This should never happen.")},keyTest:function(e,t,n){return e.key.toLocaleLowerCase()===E.tW.L&&e[E.tW.CTRL_OR_CMD]&&e.shiftKey&&(0,k.eD)(n,t,!1).length>0}}),wn=function(e){return e.some((function(e){return!e.locked}))?"lock":"unlock"};function kn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function En(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?kn(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):kn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Sn=(0,j.z)({name:"toggleLinearEditor",trackEvent:{category:"element"},contextItemPredicate:function(e,t){var n=(0,k.eD)(e,t);return!(1!==n.length||!(0,T.bt)(n[0]))},perform:function(e,t,n,r){var o,i=(0,k.eD)((0,C.Lm)(e),t,!0)[0],a=(null===(o=t.editingLinearElement)||void 0===o?void 0:o.elementId)===i.id?null:new I._(i,r.scene);return{appState:En(En({},t),{},{editingLinearElement:a}),commitToHistory:!1}},contextItemLabel:function(e,t){var n,r=(0,k.eD)((0,C.Lm)(e),t,!0)[0];return(null===(n=t.editingLinearElement)||void 0===n?void 0:n.elementId)===r.id?"labels.lineEditor.exit":"labels.lineEditor.edit"}});function _n(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function jn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?_n(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):_n(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Cn=function(e,t,n){var r=!1;if(!(t.multiElement||t.resizingElement||t.editingElement||t.draggingElement)){var o=n();if(null===o)return{commitToHistory:r};var i=(0,D.xn)(e),a=o.elements,l=(0,D.xn)(a),s=e.filter((function(e){return!l.has(e.id)})),c=a.map((function(e){return(0,O.BE)(i.get(e.id)||e,e)})).concat(s.map((function(e){return(0,O.BE)(e,{isDeleted:!0})})));return(0,P.$q)(c,s),{elements:c,appState:jn(jn({},t),o.appState),commitToHistory:r,syncHistory:!0}}return{commitToHistory:r}},On=n(7047),Mn=function(e,t,n,o,i,a){if(e.trackEvent)try{if("object"===(0,r.Z)(e.trackEvent))(!e.trackEvent.predicate||e.trackEvent.predicate(n,o,a))&&(0,On.L)(e.trackEvent.category,e.trackEvent.action||e.name,"".concat(t," (").concat(i.device.isMobile?"mobile":"desktop",")"))}catch(e){console.error("error while logging action:",e)}},In=function(){function e(t,n,r,o){var i=this;(0,l.Z)(this,e),this.actions={},this.renderAction=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=i.app.props.UIOptions.canvasActions;if(i.actions[e]&&"PanelComponent"in i.actions[e]&&(!(e in r)||r[e])){var o=i.actions[e],a=o.PanelComponent;a.displayName="PanelComponent";var l=i.getElementsIncludingDeleted(),s=i.getAppState(),c=function(e){Mn(o,"ui",s,l,i.app,e),i.updater(o.perform(i.getElementsIncludingDeleted(),i.getAppState(),e,i.app))};return(0,A.jsx)(a,{elements:i.getElementsIncludingDeleted(),appState:i.getAppState(),updateData:c,appProps:i.app.props,data:t,isInHamburgerMenu:n})}return null},this.updater=function(e){if(!e||!("then"in e))return t(e);e.then((function(e){return t(e)}))},this.getAppState=n,this.getElementsIncludingDeleted=r,this.app=o}return(0,s.Z)(e,[{key:"registerAction",value:function(e){this.actions[e.name]=e}},{key:"registerAll",value:function(e){var t=this;e.forEach((function(e){return t.registerAction(e)}))}},{key:"handleKeyDown",value:function(e){var t=this,n=this.app.props.UIOptions.canvasActions,r=Object.values(this.actions).sort((function(e,t){return(t.keyPriority||0)-(e.keyPriority||0)})).filter((function(r){return(!(r.name in n)||n[r.name])&&r.keyTest&&r.keyTest(e,t.getAppState(),t.getElementsIncludingDeleted())}));if(1!==r.length)return r.length>1&&console.warn("Canceling as multiple actions match this shortcut",r),!1;var o=r[0];if(this.getAppState().viewModeEnabled&&!Object.values(re.EH).includes(r[0].name))return!1;var i=this.getElementsIncludingDeleted(),a=this.getAppState();return Mn(o,"keyboard",a,i,this.app,null),e.preventDefault(),e.stopPropagation(),this.updater(r[0].perform(i,a,null,this.app)),!0}},{key:"executeAction",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"api",n=this.getElementsIncludingDeleted(),r=this.getAppState(),o=null;Mn(e,t,r,n,this.app,o),this.updater(e.perform(n,r,o,this.app))}}]),e}(),Pn=n(8897),Tn=n(7053),Dn=n(679),Ln=function(e){var t=Array.from(e.values());return{x:Zn(t,(function(e){return e.x}))/t.length,y:Zn(t,(function(e){return e.y}))/t.length}},An=function(e){var t=(0,o.Z)(e,2),n=t[0],r=t[1];return Math.hypot(n.x-r.x,n.y-r.y)},Zn=function(e,t){return e.reduce((function(e,n){return e+t(n)}),0)};function zn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Rn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?zn(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):zn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Nn=function(e){return{selectedElementIds:e.selectedElementIds,selectedGroupIds:e.selectedGroupIds,viewBackgroundColor:e.viewBackgroundColor,editingLinearElement:e.editingLinearElement,editingGroupId:e.editingGroupId,name:e.name}},Bn=function(){function e(){var t=this;(0,l.Z)(this,e),this.elementCache=new Map,this.recording=!0,this.stateHistory=[],this.redoStack=[],this.lastEntry=null,this.generateEntry=function(e,n){return t.dehydrateHistoryEntry({appState:Nn(e),elements:n.reduce((function(t,n){if((0,T.bt)(n)&&e.multiElement&&e.multiElement.id===n.id){if(e.multiElement&&e.multiElement.id===n.id&&n.points.length<2)return t;t.push(Rn(Rn({},n),{},{points:n.lastCommittedPoint!==n.points[n.points.length-1]?n.points.slice(0,-1):n.points}))}else t.push(n);return t}),[])})}}return(0,s.Z)(e,[{key:"hydrateHistoryEntry",value:function(e){var t=this,n=e.appState,r=e.elements;return{appState:JSON.parse(n),elements:r.map((function(e){var n,r=null===(n=t.elementCache.get(e.id))||void 0===n?void 0:n.get(e.versionNonce);if(!r)throw new Error("Element not found: ".concat(e.id,":").concat(e.versionNonce));return r}))}}},{key:"dehydrateHistoryEntry",value:function(e){var t=this,n=e.appState,r=e.elements;return{appState:JSON.stringify(n),elements:r.map((function(e){t.elementCache.has(e.id)||t.elementCache.set(e.id,new Map);var n=t.elementCache.get(e.id);return n.has(e.versionNonce)||n.set(e.versionNonce,(0,Ct.OL)(e)),{id:e.id,versionNonce:e.versionNonce}}))}}},{key:"getSnapshotForTest",value:function(){var e=this;return{recording:this.recording,stateHistory:this.stateHistory.map((function(t){return e.hydrateHistoryEntry(t)})),redoStack:this.redoStack.map((function(t){return e.hydrateHistoryEntry(t)}))}}},{key:"clear",value:function(){this.stateHistory.length=0,this.redoStack.length=0,this.lastEntry=null,this.elementCache.clear()}},{key:"shouldCreateEntry",value:function(e){var t,n=this.lastEntry;if(!n)return!0;if(e.elements.length!==n.elements.length)return!0;for(var r=e.elements.length-1;r>-1;r--){var o=e.elements[r],i=n.elements[r];if(!o||!i||o.id!==i.id||o.versionNonce!==i.versionNonce)return!0}for(t in e.appState){var a,l;if("editingLinearElement"===t)if((null===(a=e.appState[t])||void 0===a?void 0:a.elementId)===(null===(l=n.appState[t])||void 0===l?void 0:l.elementId))continue;if("selectedElementIds"!==t&&"selectedGroupIds"!==t&&e.appState[t]!==n.appState[t])return!0}return!1}},{key:"pushEntry",value:function(e,t){var n=this.generateEntry(e,t),r=this.hydrateHistoryEntry(n);if(r){if(!this.shouldCreateEntry(r))return;this.stateHistory.push(n),this.lastEntry=r,this.clearRedoStack()}}},{key:"clearRedoStack",value:function(){this.redoStack.splice(0,this.redoStack.length)}},{key:"redoOnce",value:function(){if(0===this.redoStack.length)return null;var e=this.redoStack.pop();return void 0!==e?(this.stateHistory.push(e),this.hydrateHistoryEntry(e)):null}},{key:"undoOnce",value:function(){if(1===this.stateHistory.length)return null;var e=this.stateHistory.pop(),t=this.stateHistory[this.stateHistory.length-1];return void 0!==e?(this.redoStack.push(e),this.hydrateHistoryEntry(t)):null}},{key:"setCurrentState",value:function(e,t){this.lastEntry=this.hydrateHistoryEntry(this.generateEntry(e,t))}},{key:"resumeRecording",value:function(){this.recording=!0}},{key:"record",value:function(e,t){this.recording&&(this.pushEntry(e,t),this.recording=!1)}}]),e}(),Wn=n(3547),Hn=n(3063),Fn=n(746),Un=[{icon:L.zu,value:"selection",key:E.tW.V,numericKey:E.tW[1],fillable:!0},{icon:L.OW,value:"rectangle",key:E.tW.R,numericKey:E.tW[2],fillable:!0},{icon:L.nb,value:"diamond",key:E.tW.D,numericKey:E.tW[3],fillable:!0},{icon:L.Re,value:"ellipse",key:E.tW.O,numericKey:E.tW[4],fillable:!0},{icon:L.e0,value:"arrow",key:E.tW.A,numericKey:E.tW[5],fillable:!0},{icon:L.zb,value:"line",key:E.tW.L,numericKey:E.tW[6],fillable:!0},{icon:L.Pm,value:"freedraw",key:[E.tW.P,E.tW.X],numericKey:E.tW[7],fillable:!1},{icon:L.VL,value:"text",key:E.tW.T,numericKey:E.tW[8],fillable:!1},{icon:L.XB,value:"image",key:null,numericKey:E.tW[9],fillable:!1},{icon:L.$q,value:"eraser",key:E.tW.E,numericKey:E.tW[0],fillable:!1}],Kn=n(2891),Yn=n(6578),Gn={};Gn.styleTagTransform=Se(),Gn.setAttributes=xe(),Gn.insert=be().bind(null,"head"),Gn.domAPI=ge(),Gn.insertStyleElement=ke();he()(Yn.Z,Gn),Yn.Z&&Yn.Z.locals&&Yn.Z.locals;var Vn=function(e){var t=e.options,n=e.onCloseRequest,r=e.top,o=e.left,i=e.actionManager,a=e.appState,l=e.elements;return(0,A.jsx)(Kn.J,{onCloseRequest:n,top:r,left:o,fitInViewport:!0,offsetLeft:a.offsetLeft,offsetTop:a.offsetTop,viewportWidth:a.width,viewportHeight:a.height,children:(0,A.jsx)("ul",{className:"context-menu",onContextMenu:function(e){return e.preventDefault()},children:t.map((function(e,t){var r;if("separator"===e)return(0,A.jsx)("hr",{className:"context-menu-option-separator"},t);var o=e.name,s="";return e.contextItemLabel&&(s="function"==typeof e.contextItemLabel?(0,_.t)(e.contextItemLabel(l,a)):(0,_.t)(e.contextItemLabel)),(0,A.jsx)("li",{"data-testid":o,onClick:n,children:(0,A.jsxs)("button",{className:(0,x.Z)("context-menu-option",{dangerous:"deleteSelectedElements"===o,checkmark:null===(r=e.checked)||void 0===r?void 0:r.call(e,a)}),onClick:function(){return i.executeAction(e,"contextMenu")},children:[(0,A.jsx)("div",{className:"context-menu-option__label",children:s}),(0,A.jsx)("kbd",{className:"context-menu-option__shortcut",children:o?(0,Ke.C)(o):""})]})},t)}))})})},Xn=new WeakMap,qn=function(e){var t,n,r=Array.of();e.options.forEach((function(e){e&&r.push(e)})),r.length&&(0,b.render)((0,A.jsx)(Vn,{top:e.top,left:e.left,options:r,onCloseRequest:function(){return t=e.container,void((n=Xn.get(t))&&((0,b.unmountComponentAtNode)(n),n.remove(),Xn.delete(t)));var t,n},actionManager:e.actionManager,appState:e.appState,elements:e.elements}),(t=e.container,(n=Xn.get(t))||(n=document.createElement("div"),t.querySelector(".excalidraw-contextMenuContainer").appendChild(n),Xn.set(t,n),n)))},Jn=n(2726),$n=n(3874),Qn={};Qn.styleTagTransform=Se(),Qn.setAttributes=xe(),Qn.insert=be().bind(null,"head"),Qn.domAPI=ge(),Qn.insertStyleElement=ke();he()($n.Z,Qn),$n.Z&&$n.Z.locals&&$n.Z.locals;function er(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function tr(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?er(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):er(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var nr=function(e){var t=e.children,n=e.gap,r=e.align,o=e.justifyContent,i=e.className,a=e.style;return(0,A.jsx)("div",{className:(0,x.Z)("Stack Stack_horizontal",i),style:tr({"--gap":n,alignItems:r,justifyContent:o},a),children:t})},rr=function(e){var t=e.children,n=e.gap,r=e.align,o=e.justifyContent,i=e.className,a=e.style;return(0,A.jsx)("div",{className:(0,x.Z)("Stack Stack_vertical",i),style:tr({"--gap":n,justifyItems:r,justifyContent:o},a),children:t})},or=n(8120),ir=n(6086),ar={};ar.styleTagTransform=Se(),ar.setAttributes=xe(),ar.insert=be().bind(null,"head"),ar.domAPI=ge(),ar.insertStyleElement=ke();he()(ir.Z,ar),ir.Z&&ir.Z.locals&&ir.Z.locals;function lr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function sr(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?lr(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):lr(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function cr(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return ur(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ur(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function ur(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var dr=function(e){var t,n=e.appState,r=e.elements,o=e.renderAction,i=(0,k.Zs)((0,C.Lm)(r),n),a=!1;2===i.length&&((0,T.Xo)(i[0])||(0,T.Xo)(i[1]))&&(a=!0);var l,s=Boolean(n.editingElement),c=Yi(),u="rtl"===document.documentElement.getAttribute("dir"),d=(0,k.$b)(n.activeTool.type)||i.some((function(e){return(0,k.$b)(e.type)&&!(0,D.Qm)(e.backgroundColor)})),p=(0,k.$b)(n.activeTool.type)||i.some((function(e){return(0,k.$b)(e.type)})),f=1===i.length||a,h=(null===(t=i[0])||void 0===t?void 0:t.type)||null,m=cr(i);try{for(m.s();!(l=m.n()).done;){if(l.value.type!==h){h=null;break}}}catch(e){m.e(e)}finally{m.f()}return(0,A.jsxs)("div",{className:"panelColumn",children:[(0,A.jsx)("div",{children:((0,or.PD)(n.activeTool.type)&&"image"!==n.activeTool.type&&"image"!==h||i.some((function(e){return(0,or.PD)(e.type)})))&&o("changeStrokeColor")}),p&&(0,A.jsx)("div",{children:o("changeBackgroundColor")}),d&&o("changeFillStyle"),((0,k.Zd)(n.activeTool.type)||i.some((function(e){return(0,k.Zd)(e.type)})))&&o("changeStrokeWidth"),("freedraw"===n.activeTool.type||i.some((function(e){return"freedraw"===e.type})))&&o("changeStrokeShape"),((0,k.M9)(n.activeTool.type)||i.some((function(e){return(0,k.M9)(e.type)})))&&(0,A.jsxs)(A.Fragment,{children:[o("changeStrokeStyle"),o("changeSloppiness")]}),((0,k.gP)(n.activeTool.type)||i.some((function(e){return(0,k.gP)(e.type)})))&&(0,A.jsx)(A.Fragment,{children:o("changeSharpness")}),((0,k.bZ)(n.activeTool.type)||i.some((function(e){return(0,k.bZ)(e.type)})))&&(0,A.jsxs)(A.Fragment,{children:[o("changeFontSize"),o("changeFontFamily"),o("changeTextAlign")]}),(0,oe.cn)(i)&&o("changeVerticalAlign"),((0,k.Un)(n.activeTool.type)||i.some((function(e){return(0,k.Un)(e.type)})))&&(0,A.jsx)(A.Fragment,{children:o("changeArrowhead")}),o("changeOpacity"),(0,A.jsxs)("fieldset",{children:[(0,A.jsx)("legend",{children:(0,_.t)("labels.layers")}),(0,A.jsxs)("div",{className:"buttonList",children:[o("sendToBack"),o("sendBackward"),o("bringToFront"),o("bringForward")]})]}),i.length>1&&!a&&(0,A.jsxs)("fieldset",{children:[(0,A.jsx)("legend",{children:(0,_.t)("labels.align")}),(0,A.jsxs)("div",{className:"buttonList",children:[u?(0,A.jsxs)(A.Fragment,{children:[o("alignRight"),o("alignHorizontallyCentered"),o("alignLeft")]}):(0,A.jsxs)(A.Fragment,{children:[o("alignLeft"),o("alignHorizontallyCentered"),o("alignRight")]}),i.length>2&&o("distributeHorizontally"),(0,A.jsx)("div",{style:{flexBasis:"100%",height:0}}),(0,A.jsxs)("div",{style:{display:"flex",flexWrap:"wrap",gap:".5rem",marginTop:"-0.5rem"},children:[o("alignTop"),o("alignVerticallyCentered"),o("alignBottom"),i.length>2&&o("distributeVertically")]})]})]}),!s&&i.length>0&&(0,A.jsxs)("fieldset",{children:[(0,A.jsx)("legend",{children:(0,_.t)("labels.actions")}),(0,A.jsxs)("div",{className:"buttonList",children:[!c.isMobile&&o("duplicateSelection"),!c.isMobile&&o("deleteSelectedElements"),o("group"),o("ungroup"),f&&o("hyperlink")]})]})]})},pr=function(e){var t=e.canvas,n=e.activeTool,r=e.setAppState,o=e.onImageAction,i=e.appState;return(0,A.jsx)(A.Fragment,{children:Un.map((function(e,a){var l=e.value,s=e.icon,c=e.key,u=e.numericKey,d=e.fillable,p=(0,_.t)("toolBar.".concat(l)),f=c&&("string"==typeof c?c:c[0]),h=f?"".concat((0,D.Oo)(f)," ").concat((0,_.t)("helpDialog.or")," ").concat(u):"".concat(u);return(0,A.jsx)(S.V,{className:(0,x.Z)("Shape",{fillable:d}),type:"radio",icon:s,checked:n.type===l,name:"editor-current-shape",title:"".concat((0,D.Oo)(p)," — ").concat(h),keyBindingLabel:u,"aria-label":(0,D.Oo)(p),"aria-keyshortcuts":h,"data-testid":"toolbar-".concat(l),onPointerDown:function(e){var t=e.pointerType;i.penDetected||"pen"!==t||r({penDetected:!0,penMode:!0})},onChange:function(e){var n=e.pointerType;i.activeTool.type!==l&&(0,On.L)("toolbar",l,"ui");var a=(0,D.Om)(i,{type:l});r({activeTool:a,multiElement:null,selectedElementIds:{}}),(0,D.Uk)(t,sr(sr({},i),{},{activeTool:a})),"image"===l&&o({pointerType:n})}},l)}))})},fr=function(e){var t=e.renderAction;e.zoom;return(0,A.jsx)(rr,{gap:1,className:"zoom-actions",children:(0,A.jsxs)(nr,{align:"center",children:[t("zoomOut"),t("resetZoom"),t("zoomIn")]})})},hr=function(e){var t=e.renderAction,n=e.className;return(0,A.jsxs)("div",{className:"undo-redo-buttons ".concat(n),children:[(0,A.jsx)("div",{className:"undo-button-container",children:(0,A.jsx)(Ie.u,{label:(0,_.t)("buttons.undo"),children:t("undo")})}),(0,A.jsx)("div",{className:"redo-button-container",children:(0,A.jsxs)(Ie.u,{label:(0,_.t)("buttons.redo"),children:[" ",t("redo")]})})]})},mr=function(e){var t=e.actionManager,n=e.showExitZenModeBtn;return(0,A.jsx)("button",{className:(0,x.Z)("disable-zen-mode",{"disable-zen-mode--visible":n}),onClick:function(){return t.executeAction(cn)},children:(0,_.t)("buttons.exitZenMode")})},gr=function(e){var t=e.renderAction,n=e.className;return(0,A.jsx)("div",{className:"finalize-button ".concat(n),children:t("finalize",{size:"small"})})},vr=n(9609),br={};br.styleTagTransform=Se(),br.setAttributes=xe(),br.insert=be().bind(null,"head"),br.domAPI=ge(),br.insertStyleElement=ke();he()(vr.Z,br),vr.Z&&vr.Z.locals&&vr.Z.locals;var yr=function(e){var t=e.onClick,n=e.isInHamburgerMenu,r=void 0===n||n;return(0,A.jsx)(A.Fragment,{children:r?(0,A.jsx)(Ve.Z,{label:"Sharing",dataTestId:"collab-button",icon:L.BN,onClick:t}):(0,A.jsx)("button",{className:(0,x.Z)("collab-button"),type:"button",onClick:t,style:{position:"relative"},title:"Sharing",children:L.BN})})},xr=n(8396),wr=function(e){var t=e.message,n=e.onClose,r=(0,g.useState)(!!t),i=(0,o.Z)(r,2),a=i[0],l=i[1],s=Vi().container,c=v().useCallback((function(){l(!1),n&&n(),null==s||s.focus()}),[n,s]);return(0,A.jsx)(A.Fragment,{children:a&&(0,A.jsx)(xr.V,{small:!0,onCloseRequest:c,title:(0,_.t)("errorDialog.title"),children:(0,A.jsx)("div",{style:{whiteSpace:"pre-wrap"},children:t})})})},kr=n(6797),Er=n(7955),Sr={};Sr.styleTagTransform=Se(),Sr.setAttributes=xe(),Sr.insert=be().bind(null,"head"),Sr.domAPI=ge(),Sr.insertStyleElement=ke();he()(Er.Z,Sr),Er.Z&&Er.Z.locals&&Er.Z.locals;var _r=n(5284),jr="filter"in document.createElement("canvas").getContext("2d"),Cr=function(){return(0,A.jsxs)("div",{children:[(0,A.jsx)("h3",{children:(0,_.t)("canvasError.cannotShowPreview")}),(0,A.jsx)("p",{children:(0,A.jsx)("span",{children:(0,_.t)("canvasError.canvasTooBig")})}),(0,A.jsxs)("em",{children:["(",(0,_.t)("canvasError.canvasTooBigTip"),")"]})]})},Or=function(e,t){(0,b.unmountComponentAtNode)(t),t.innerHTML="",e instanceof HTMLCanvasElement?t.appendChild(e):(0,b.render)((0,A.jsx)(Cr,{}),t)},Mr=function(e){var t,n=e.children,r=e.title,o=e.onClick,i=e.color,a=e.shade,l=void 0===a?6:a;return(0,A.jsx)("button",{className:"ExportDialog-imageExportButton",style:(t={},(0,f.Z)(t,"--button-color",_r[i][l]),(0,f.Z)(t,"--button-color-darker",_r[i][l+1]),(0,f.Z)(t,"--button-color-darkest",_r[i][l+2]),t),title:r,"aria-label":r,onClick:o,children:n})},Ir=function(e){var t=e.elements,n=e.appState,r=e.files,i=e.exportPadding,a=void 0===i?re.qy:i,l=e.actionManager,s=e.onExportToPng,c=e.onExportToSvg,u=e.onExportToClipboard,d=(0,k.N)(t,n),p=(0,g.useState)(d),f=(0,o.Z)(p,2),h=f[0],m=f[1],v=(0,g.useRef)(null),b=n.exportBackground,y=n.viewBackgroundColor,x=h?(0,k.eD)(t,n,!0):t;return(0,g.useEffect)((function(){m(d)}),[d]),(0,g.useEffect)((function(){var e=v.current;e&&(0,Le.NL)(x,n,r,{exportBackground:b,viewBackgroundColor:y,exportPadding:a}).then((function(t){return(0,Ae._c)(t).then((function(){Or(t,e)}))})).catch((function(t){console.error(t),Or(new kr.l,e)}))}),[n,r,x,b,a,y]),(0,A.jsxs)("div",{className:"ExportDialog",children:[(0,A.jsx)("div",{className:"ExportDialog__preview",ref:v}),jr&&l.renderAction("exportWithDarkMode"),(0,A.jsx)("div",{style:{display:"grid",gridTemplateColumns:"1fr"},children:(0,A.jsxs)("div",{style:{display:"grid",gridTemplateColumns:"repeat(auto-fit, minmax(190px, 1fr))",overflow:"hidden"},children:[l.renderAction("changeExportBackground"),d&&(0,A.jsx)(Ue,{checked:h,onChange:function(e){return m(e)},children:(0,_.t)("labels.onlySelected")}),l.renderAction("changeExportEmbedScene")]})}),(0,A.jsxs)("div",{style:{display:"flex",alignItems:"center",marginTop:".6em"},children:[(0,A.jsx)(nr,{gap:2,children:l.renderAction("changeExportScale")}),(0,A.jsx)("p",{style:{marginLeft:"1em",userSelect:"none"},children:(0,_.t)("buttons.scale")})]}),(0,A.jsx)("div",{style:{display:"flex",alignItems:"center",justifyContent:"center",margin:".6em 0"},children:!Ze.kr&&l.renderAction("changeProjectName")}),(0,A.jsxs)(nr,{gap:2,justifyContent:"center",style:{margin:"2em 0"},children:[(0,A.jsx)(Mr,{color:"indigo",title:(0,_.t)("buttons.exportToPng"),"aria-label":(0,_.t)("buttons.exportToPng"),onClick:function(){return s(x)},children:"PNG"}),(0,A.jsx)(Mr,{color:"red",title:(0,_.t)("buttons.exportToSvg"),"aria-label":(0,_.t)("buttons.exportToSvg"),onClick:function(){return c(x)},children:"SVG"}),De.vt&&(0,A.jsx)(Mr,{title:(0,_.t)("buttons.copyPngToClipboard"),onClick:function(){return u(x)},color:"gray",shade:7,children:L.BR})]})]})},Pr=function(e){var t=e.elements,n=e.appState,r=e.setAppState,o=e.files,i=e.exportPadding,a=void 0===i?re.qy:i,l=e.actionManager,s=e.onExportToPng,c=e.onExportToSvg,u=e.onExportToClipboard,d=v().useCallback((function(){r({openDialog:null})}),[r]);return(0,A.jsx)(A.Fragment,{children:"imageExport"===n.openDialog&&(0,A.jsx)(xr.V,{onCloseRequest:d,title:(0,_.t)("buttons.exportImage"),children:(0,A.jsx)(Ir,{elements:t,appState:n,files:o,exportPadding:a,actionManager:l,onExportToPng:s,onExportToSvg:c,onExportToClipboard:u,onCloseRequest:d})})})},Tr=n(3195),Dr={};Dr.styleTagTransform=Se(),Dr.setAttributes=xe(),Dr.insert=be().bind(null,"head"),Dr.domAPI=ge(),Dr.insertStyleElement=ke();he()(Tr.Z,Dr),Tr.Z&&Tr.Z.locals&&Tr.Z.locals;var Lr=function(e){var t=e.children,n=e.side,r=e.className;return(0,A.jsx)("div",{className:(0,x.Z)("FixedSideContainer","FixedSideContainer_side_".concat(n),r),children:t})},Ar=n(1587),Zr={};Zr.styleTagTransform=Se(),Zr.setAttributes=xe(),Zr.insert=be().bind(null,"head"),Zr.domAPI=ge(),Zr.insertStyleElement=ke();he()(Ar.Z,Zr),Ar.Z&&Ar.Z.locals&&Ar.Z.locals;var zr=function(e){var t=function(e){var t=e.appState,n=e.elements,r=e.isMobile,o=e.device,i=t.activeTool,a=t.isResizing,l=t.isRotating,s=t.lastPointerDownWith,c=null!==t.multiElement;if("library"===t.openSidebar&&!o.canDeviceFitSidebar)return null;if((0,Pn.EN)(t))return(0,_.t)("hints.eraserRevert");if("arrow"===i.type||"line"===i.type)return c?(0,_.t)("hints.linearElementMulti"):(0,_.t)("hints.linearElement");if("freedraw"===i.type)return(0,_.t)("hints.freeDraw");if("text"===i.type)return(0,_.t)("hints.text");if("image"===t.activeTool.type&&t.pendingImageElementId)return(0,_.t)("hints.placeImage");var u=(0,k.eD)(n,t);if(a&&"mouse"===s&&1===u.length){var d=u[0];return(0,T.bt)(d)&&2===d.points.length?(0,_.t)("hints.lockAngle"):(0,T.pC)(d)?(0,_.t)("hints.resizeImage"):(0,_.t)("hints.resize")}if(l&&"mouse"===s)return(0,_.t)("hints.rotate");if(1===u.length&&(0,T.iB)(u[0]))return(0,_.t)("hints.text_selected");if(t.editingElement&&(0,T.iB)(t.editingElement))return(0,_.t)("hints.text_editing");if("selection"===i.type){var p;if("selection"===(null===(p=t.draggingElement)||void 0===p?void 0:p.type)&&!t.editingElement&&!t.editingLinearElement)return(0,_.t)("hints.deepBoxSelect");if(!u.length&&!r)return(0,_.t)("hints.canvasPanning")}if(1===u.length){if((0,T.bt)(u[0]))return t.editingLinearElement?t.editingLinearElement.selectedPointsIndices?(0,_.t)("hints.lineEditor_pointSelected"):(0,_.t)("hints.lineEditor_nothingSelected"):(0,_.t)("hints.lineEditor_info");if((0,T.mG)(u[0]))return(0,_.t)("hints.bindTextToElement")}return null}({appState:e.appState,elements:e.elements,isMobile:e.isMobile,device:e.device});return t?(t=(0,D.uY)(t),(0,A.jsx)("div",{className:"HintViewer",children:(0,A.jsx)("span",{children:t})})):null},Rr=n(1881),Nr=n(5440),Br={CHECKED:L.FC,UNCHECKED:L._C},Wr=function(e){return(0,A.jsxs)("label",{className:(0,x.Z)("ToolIcon ToolIcon__lock","ToolIcon_size_".concat("medium"),{"is-mobile":e.isMobile}),title:"".concat(e.title," — Q"),children:[(0,A.jsx)("input",{className:"ToolIcon_type_checkbox",type:"checkbox",name:e.name,onChange:e.onChange,checked:e.checked,"aria-label":e.title,"data-testid":"toolbar-lock"}),(0,A.jsx)("div",{className:"ToolIcon__icon",children:e.checked?Br.CHECKED:Br.UNCHECKED})]})},Hr=["heading","children"];function Fr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ur(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Fr(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Fr(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Kr=function(e){var t=e.heading,n=e.children,r=(0,Jn.Z)(e,Hr),o=Vi().id,i=(0,A.jsx)("h2",{className:"visually-hidden",id:"".concat(o,"-").concat(t,"-title"),children:(0,_.t)("headings.".concat(t))});return(0,A.jsx)("section",Ur(Ur({},r),{},{"aria-labelledby":"".concat(o,"-").concat(t,"-title"),children:"function"==typeof n?n(i):(0,A.jsxs)(A.Fragment,{children:[i,n]})}))},Yr=n(756),Gr=n(6359),Vr={};Vr.styleTagTransform=Se(),Vr.setAttributes=xe(),Vr.insert=be().bind(null,"head"),Vr.domAPI=ge(),Vr.insertStyleElement=ke();he()(Gr.Z,Vr),Gr.Z&&Gr.Z.locals&&Gr.Z.locals;var Xr=function(e){var t=e.className,n=e.mobile,r=e.collaborators,i=e.actionManager,a=new Map;r.forEach((function(e,t){a.set(e.id||t,e)}));var l=a.size>0&&Array.from(a).filter((function(e){var t=(0,o.Z)(e,2),n=(t[0],t[1]);return 0!==Object.keys(n).length})).map((function(e){var t=(0,o.Z)(e,2),r=t[0],a=t[1],l=i.renderAction("goToCollaborator",[r,a]);return n?(0,A.jsx)(Ie.u,{label:a.username||"Unknown user",children:l},r):(0,A.jsx)(v().Fragment,{children:l},r)}));return(0,A.jsx)("div",{className:(0,x.Z)("UserList",t,{UserList_mobile:n}),children:l})},qr=n(2316),Jr={};Jr.styleTagTransform=Se(),Jr.setAttributes=xe(),Jr.insert=be().bind(null,"head"),Jr.domAPI=ge(),Jr.insertStyleElement=ke();he()(qr.Z,Jr),qr.Z&&qr.Z.locals&&qr.Z.locals;var $r=function(e){var t=e.appState,n=e.setAppState,r=e.isMobile,o=Yi(),i=!r;return t.isSidebarDocked&&"library"===t.openSidebar?null:(0,A.jsxs)("label",{title:"".concat((0,D.Oo)((0,_.t)("toolBar.library"))),children:[(0,A.jsx)("input",{className:"ToolIcon_type_checkbox",type:"checkbox",name:"editor-library",onChange:function(e){var t;null===(t=document.querySelector(".layer-ui__wrapper"))||void 0===t||t.classList.remove("animate");var r=e.target.checked;n({openSidebar:r?"library":null}),r&&(0,On.L)("library","toggleLibrary (open)","toolbar (".concat(o.isMobile?"mobile":"desktop",")"))},checked:"library"===t.openSidebar,"aria-label":(0,D.Oo)((0,_.t)("toolBar.library")),"aria-keyshortcuts":"0"}),(0,A.jsxs)("div",{className:"library-button",children:[(0,A.jsx)("div",{children:L.Vq}),i&&(0,A.jsx)("div",{className:"library-button__label",children:(0,_.t)("toolBar.library")})]})]})},Qr=function(e){return e.penDetected?(0,A.jsxs)("label",{className:(0,x.Z)("ToolIcon ToolIcon__penMode","ToolIcon_size_".concat("medium"),{"is-mobile":e.isMobile}),title:"".concat(e.title),children:[(0,A.jsx)("input",{className:"ToolIcon_type_checkbox",type:"checkbox",name:e.name,onChange:e.onChange,checked:e.checked,"aria-label":e.title}),(0,A.jsx)("div",{className:"ToolIcon__icon",children:L.tb})]}):null},eo=n(2681),to={};to.styleTagTransform=Se(),to.setAttributes=xe(),to.insert=be().bind(null,"head"),to.domAPI=ge(),to.insertStyleElement=ke();he()(eo.Z,to),eo.Z&&eo.Z.locals&&eo.Z.locals;var no=function(e){var t,n=(0,Pt.KP)(e.elements),r=(0,k.Zs)(e.elements,e.appState),o=(0,Pt.KP)(r);return(0,A.jsx)("div",{className:"Stats",children:(0,A.jsxs)(Rr.W,{padding:2,children:[(0,A.jsx)("div",{className:"close",onClick:e.onClose,children:L.Tw}),(0,A.jsx)("h3",{children:(0,_.t)("stats.title")}),(0,A.jsx)("table",{children:(0,A.jsxs)("tbody",{children:[(0,A.jsx)("tr",{children:(0,A.jsx)("th",{colSpan:2,children:(0,_.t)("stats.scene")})}),(0,A.jsxs)("tr",{children:[(0,A.jsx)("td",{children:(0,_.t)("stats.elements")}),(0,A.jsx)("td",{children:e.elements.length})]}),(0,A.jsxs)("tr",{children:[(0,A.jsx)("td",{children:(0,_.t)("stats.width")}),(0,A.jsx)("td",{children:Math.round(n[2])-Math.round(n[0])})]}),(0,A.jsxs)("tr",{children:[(0,A.jsx)("td",{children:(0,_.t)("stats.height")}),(0,A.jsx)("td",{children:Math.round(n[3])-Math.round(n[1])})]}),1===r.length&&(0,A.jsx)("tr",{children:(0,A.jsx)("th",{colSpan:2,children:(0,_.t)("stats.element")})}),r.length>1&&(0,A.jsxs)(A.Fragment,{children:[(0,A.jsx)("tr",{children:(0,A.jsx)("th",{colSpan:2,children:(0,_.t)("stats.selected")})}),(0,A.jsxs)("tr",{children:[(0,A.jsx)("td",{children:(0,_.t)("stats.elements")}),(0,A.jsx)("td",{children:r.length})]})]}),r.length>0&&(0,A.jsxs)(A.Fragment,{children:[(0,A.jsxs)("tr",{children:[(0,A.jsx)("td",{children:"x"}),(0,A.jsx)("td",{children:Math.round(o[0])})]}),(0,A.jsxs)("tr",{children:[(0,A.jsx)("td",{children:"y"}),(0,A.jsx)("td",{children:Math.round(o[1])})]}),(0,A.jsxs)("tr",{children:[(0,A.jsx)("td",{children:(0,_.t)("stats.width")}),(0,A.jsx)("td",{children:Math.round(o[2]-o[0])})]}),(0,A.jsxs)("tr",{children:[(0,A.jsx)("td",{children:(0,_.t)("stats.height")}),(0,A.jsx)("td",{children:Math.round(o[3]-o[1])})]})]}),1===r.length&&(0,A.jsxs)("tr",{children:[(0,A.jsx)("td",{children:(0,_.t)("stats.angle")}),(0,A.jsx)("td",{children:"".concat(Math.round(180*r[0].angle/Math.PI),"°")})]}),null===(t=e.renderCustomStats)||void 0===t?void 0:t.call(e,e.elements,e.appState)]})})]})})},ro=function(){return(0,A.jsx)("div",{style:{height:"1px",backgroundColor:"var(--default-border-color)",margin:".5rem 0"}})},oo=n(846),io={};io.styleTagTransform=Se(),io.setAttributes=xe(),io.insert=be().bind(null,"head"),io.domAPI=ge(),io.insertStyleElement=ke();he()(oo.Z,io),oo.Z&&oo.Z.locals&&oo.Z.locals;var ao=function(e){var t=e.label,n=e.shortcut,r=e.onClick,o=e.icon,i=e.link,a=e.className;return i?(0,A.jsx)("a",{className:(0,x.Z)("WelcomeScreen-item",a),href:i,target:"_blank",rel:"noreferrer",children:(0,A.jsxs)("div",{className:"WelcomeScreen-item__label",children:[o,t]})}):(0,A.jsxs)("button",{className:(0,x.Z)("WelcomeScreen-item",a),type:"button",onClick:r,children:[(0,A.jsxs)("div",{className:"WelcomeScreen-item__label",children:[o,t]}),n&&(0,A.jsx)("div",{className:"WelcomeScreen-item__shortcut",children:n})]})},lo=function(e){var t=e.appState,n=e.actionManager,r=e.onCollabButtonClick;return(0,A.jsxs)("div",{className:"WelcomeScreen-container",children:[(0,A.jsxs)("div",{className:"WelcomeScreen-logo virgil WelcomeScreen-decor",children:[L.Mw," Excalidraw+"]}),(0,A.jsxs)("div",{className:"WelcomeScreen-items",children:[!t.viewModeEnabled&&(0,A.jsx)(ao,{label:(0,_.t)("buttons.load"),onClick:function(){return n.executeAction(nt)},shortcut:(0,Ke.C)("loadScene"),icon:L.Tl,className:"WelcomeScreen-item--load"}),(0,A.jsx)(ao,{label:"Sharing",shortcut:null,onClick:r,icon:L.BN,className:"WelcomeScreen-item--sharing"}),(0,A.jsx)(ao,{onClick:function(){return n.executeAction(dt)},label:(0,_.t)("helpDialog.title"),shortcut:"?",icon:L.by,className:"WelcomeScreen-item--help"})]})]})},so=function(e){var t=e.onHomeButtonClick;return(0,A.jsx)("label",{title:"".concat((0,D.Oo)((0,_.t)("toolBar.library"))," — 0"),children:(0,A.jsx)("div",{className:"library-button",onClick:t,children:(0,A.jsx)("div",{children:L.tv})})})};function co(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var uo=function(e){var t=e.appState,n=e.elements,r=e.actionManager,o=e.renderJSONExportDialog,i=e.renderImageExportDialog,a=e.setAppState,l=e.onCollabButtonClick,s=e.onLockToggle,c=e.onPenModeToggle,u=e.canvas,d=(e.isCollaborating,e.renderCustomFooter),p=e.onImageAction,h=e.renderTopRightUI,m=e.renderCustomStats,g=e.renderSidebars,v=e.device,b=e.renderWelcomeScreen,y=e.onHomeButtonClick,x=e.onThemeToggle;return(0,A.jsxs)(A.Fragment,{children:[g(),!t.viewModeEnabled&&(0,A.jsxs)(Lr,{side:"top",className:"App-top-bar",children:[b&&!t.isLoading&&(0,A.jsx)(lo,{appState:t,actionManager:r,onCollabButtonClick:l}),(0,A.jsx)(Kr,{heading:"shapes",children:function(e){return(0,A.jsx)(rr,{gap:4,align:"center",children:(0,A.jsxs)(nr,{gap:1,className:"App-toolbar-container",children:[(0,A.jsxs)(Rr.W,{padding:1,className:"App-toolbar App-toolbar--mobile",children:[e,(0,A.jsx)(nr,{gap:1,children:(0,A.jsx)(pr,{appState:t,canvas:u,activeTool:t.activeTool,setAppState:a,onImageAction:function(e){var t=e.pointerType;p({insertOnCanvasDirectly:"mouse"!==t})}})})]}),h&&h(!0,t),(0,A.jsxs)("div",{className:"mobile-misc-tools-container",children:[(0,A.jsx)(Qr,{checked:t.penMode,onChange:c,title:(0,_.t)("toolBar.penMode"),isMobile:!0,penDetected:t.penDetected}),(0,A.jsx)(Wr,{checked:t.activeTool.locked,onChange:s,title:(0,_.t)("toolBar.lock"),isMobile:!0}),!t.viewModeEnabled&&(0,A.jsx)($r,{appState:t,setAppState:a,isMobile:!0})]}),(0,A.jsx)("div",{className:"mobile-misc-tools-container-left",children:(0,A.jsx)(so,{onHomeButtonClick:y})})]})})}}),(0,A.jsx)(zr,{appState:t,elements:n,isMobile:!0,device:v})]}),!t.openMenu&&t.showStats&&(0,A.jsx)(no,{appState:t,setAppState:a,elements:n,onClose:function(){r.executeAction(pn)},renderCustomStats:m}),(0,A.jsx)("div",{className:"App-bottom-bar",style:{marginBottom:Yr.nn+2*Yr.WM,marginLeft:Yr.nn+2*Yr.WM,marginRight:Yr.nn+2*Yr.WM},children:(0,A.jsxs)(Rr.W,{padding:0,children:["canvas"===t.openMenu?(0,A.jsx)(Kr,{className:"App-mobile-menu",heading:"canvasActions",children:(0,A.jsx)("div",{className:"panelColumn",children:(0,A.jsxs)(rr,{gap:2,children:[t.viewModeEnabled?(0,A.jsxs)(A.Fragment,{children:[o(),(0,A.jsx)(Ve.Z,{label:(0,_.t)("buttons.exportImage"),icon:L.J8,dataTestId:"image-export-button",onClick:function(){return a({openDialog:"imageExport"})}}),i()]}):(0,A.jsxs)(A.Fragment,{children:[!t.viewModeEnabled&&r.renderAction("loadScene"),o(),i(),(0,A.jsx)(Ve.Z,{label:(0,_.t)("buttons.exportImage"),icon:L.J8,dataTestId:"image-export-button",onClick:function(){return a({openDialog:"imageExport"})}}),l&&(0,A.jsx)(yr,{onClick:l}),r.renderAction("toggleShortcuts",void 0,!0),!t.viewModeEnabled&&r.renderAction("clearCanvas"),(0,A.jsx)(ro,{}),!t.viewModeEnabled&&(0,A.jsxs)("div",{style:{marginBottom:".5rem"},children:[(0,A.jsx)("div",{style:{fontSize:".75rem",marginBottom:".5rem"},children:(0,_.t)("labels.canvasBackground")}),(0,A.jsx)("div",{style:{padding:"0 0.625rem"},children:r.renderAction("changeViewBackgroundColor")})]}),(0,A.jsx)(Ve.Z,{label:"dark"===t.theme?(0,_.t)("buttons.lightMode"):(0,_.t)("buttons.darkMode"),onClick:function(){x(t.theme===re.C6.LIGHT?re.C6.DARK:re.C6.LIGHT)},icon:"dark"===t.theme?L.NW:L.kL,dataTestId:"toggle-dark-mode",shortcut:(0,Ke.C)("toggleTheme")})]}),null==d?void 0:d(!0,t),t.collaborators.size>0&&(0,A.jsxs)("fieldset",{children:[(0,A.jsx)("legend",{children:(0,_.t)("labels.collaborators")}),(0,A.jsx)(Xr,{mobile:!0,collaborators:t.collaborators,actionManager:r})]})]})})}):"shape"===t.openMenu&&!t.viewModeEnabled&&(0,C.RT)(t,n)?(0,A.jsx)(Kr,{className:"App-mobile-menu",heading:"selectedShapeActions",children:(0,A.jsx)(dr,{appState:t,elements:n,renderAction:r.renderAction})}):null,(0,A.jsxs)("footer",{className:"App-toolbar",children:[t.viewModeEnabled?(0,A.jsx)("div",{className:"App-toolbar-content",children:r.renderAction("toggleCanvasMenu")}):(0,A.jsxs)("div",{className:"App-toolbar-content",children:[r.renderAction("toggleCanvasMenu"),r.renderAction("toggleEditMenu"),r.renderAction("undo"),r.renderAction("redo"),r.renderAction(t.multiElement?"finalize":"duplicateSelection"),r.renderAction("deleteSelectedElements")]}),t.scrolledOutside&&!t.openMenu&&"library"!==t.openSidebar&&(0,A.jsx)("button",{className:"scroll-back-to-content",onClick:function(){a(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?co(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):co(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},(0,k.W)(n,t,u)))},children:(0,_.t)("buttons.scrollBackToContent")})]})]})})]})},po=n(5674),fo=n(8461),ho={};ho.styleTagTransform=Se(),ho.setAttributes=xe(),ho.insert=be().bind(null,"head"),ho.domAPI=ge(),ho.insertStyleElement=ke();he()(fo.Z,ho),fo.Z&&fo.Z.locals&&fo.Z.locals;var mo=function(e){var t=(0,g.useRef)(null),n=(0,g.useState)(null),r=(0,o.Z)(n,2),i=r[0],l=r[1];return(0,g.useLayoutEffect)((function(){if(e.spreadsheet){var n,r=(0,po.ps)(e.chartType,e.spreadsheet,0,0);l(r);var o=t.current;return(0,a.Z)(m().mark((function t(){var i;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,(0,Le.$D)(r,{exportBackground:!1,viewBackgroundColor:_r.white},null);case 2:n=t.sent,null===(i=n.querySelector(".style-fonts"))||void 0===i||i.remove(),o.replaceChildren(),o.appendChild(n),e.selected&&o.parentNode.focus();case 7:case"end":return t.stop()}}),t)})))(),function(){o.replaceChildren()}}}),[e.spreadsheet,e.chartType,e.selected]),(0,A.jsx)("button",{className:"ChartPreview",onClick:function(){i&&e.onClick(e.chartType,i)},children:(0,A.jsx)("div",{ref:t})})},go=function(e){var t=e.setAppState,n=e.appState,r=e.onClose,o=e.onInsertChart,i=v().useCallback((function(){r&&r()}),[r]),a=function(e,n){o(n),(0,On.L)("magic","chart",e),t({currentChartType:e,pasteDialog:{shown:!1,data:null}})};return(0,A.jsx)(xr.V,{small:!0,onCloseRequest:i,title:(0,_.t)("labels.pasteCharts"),className:"PasteChartDialog",autofocus:!1,children:(0,A.jsxs)("div",{className:"container",children:[(0,A.jsx)(mo,{chartType:"bar",spreadsheet:n.pasteDialog.data,selected:"bar"===n.currentChartType,onClick:a}),(0,A.jsx)(mo,{chartType:"line",spreadsheet:n.pasteDialog.data,selected:"line"===n.currentChartType,onClick:a})]})})},vo=n(2978),bo={};bo.styleTagTransform=Se(),bo.setAttributes=xe(),bo.insert=be().bind(null,"head"),bo.domAPI=ge(),bo.insertStyleElement=ke();he()(vo.Z,bo),vo.Z&&vo.Z.locals&&vo.Z.locals;function yo(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var xo=m().mark(jo);function wo(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return ko(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ko(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function ko(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Eo=function(){return(0,A.jsxs)("div",{className:"HelpDialog__header",children:[(0,A.jsxs)("a",{className:"HelpDialog__btn",href:"https://github.com/excalidraw/excalidraw#documentation",target:"_blank",rel:"noopener noreferrer",children:[(0,_.t)("helpDialog.documentation"),(0,A.jsx)("div",{className:"HelpDialog__link-icon",children:L.h0})]}),(0,A.jsxs)("a",{className:"HelpDialog__btn",href:"https://blog.excalidraw.com",target:"_blank",rel:"noopener noreferrer",children:[(0,_.t)("helpDialog.blog"),(0,A.jsx)("div",{className:"HelpDialog__link-icon",children:L.h0})]}),(0,A.jsxs)("a",{className:"HelpDialog__btn",href:"https://github.com/excalidraw/excalidraw/issues",target:"_blank",rel:"noopener noreferrer",children:[(0,_.t)("helpDialog.github"),(0,A.jsx)("div",{className:"HelpDialog__link-icon",children:L.h0})]})]})},So=function(e){return(0,A.jsxs)(A.Fragment,{children:[(0,A.jsx)("h3",{children:e.title}),(0,A.jsx)("div",{className:"HelpDialog__islands-container",children:e.children})]})},_o=function(e){return(0,A.jsxs)("div",{className:"HelpDialog__island ".concat(e.className),children:[(0,A.jsx)("h4",{className:"HelpDialog__island-title",children:e.caption}),(0,A.jsx)("div",{className:"HelpDialog__island-content",children:e.children})]})};function jo(e,t){var n,r,o,i;return m().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:n=!0,r=wo(e),a.prev=2,r.s();case 4:if((o=r.n()).done){a.next=14;break}if(i=o.value,n){a.next=9;break}return a.next=9,t;case 9:return n=!1,a.next=12,i;case 12:a.next=4;break;case 14:a.next=19;break;case 16:a.prev=16,a.t0=a.catch(2),r.e(a.t0);case 19:return a.prev=19,r.f(),a.finish(19);case 22:case"end":return a.stop()}}),xo,null,[[2,16,19,22]])}var Co=function(e){var t=e.label,n=e.shortcuts,r=e.isOr,o=void 0===r||r,a=n.map((function(e){return(e.endsWith("++")?[].concat((0,i.Z)(e.slice(0,-2).split("+")),["+"]):e.split("+")).map((function(e){return(0,A.jsx)(Oo,{children:e},e)}))}));return(0,A.jsxs)("div",{className:"HelpDialog__shortcut",children:[(0,A.jsx)("div",{children:t}),(0,A.jsx)("div",{className:"HelpDialog__key-container",children:(0,i.Z)(jo(a,o?(0,_.t)("helpDialog.or"):null))})]})},Oo=function(e){return(0,A.jsx)("kbd",function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?yo(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):yo(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({className:"HelpDialog__key"},e))},Mo=function(e){var t=e.onClose,n=v().useCallback((function(){t&&t()}),[t]);return(0,A.jsx)(A.Fragment,{children:(0,A.jsxs)(xr.V,{onCloseRequest:n,title:(0,_.t)("helpDialog.title"),className:"HelpDialog",children:[(0,A.jsx)(Eo,{}),(0,A.jsxs)(So,{title:(0,_.t)("helpDialog.shortcuts"),children:[(0,A.jsxs)(_o,{className:"HelpDialog__island--tools",caption:(0,_.t)("helpDialog.tools"),children:[(0,A.jsx)(Co,{label:(0,_.t)("toolBar.selection"),shortcuts:[E.tW.V,E.tW[1]]}),(0,A.jsx)(Co,{label:(0,_.t)("toolBar.rectangle"),shortcuts:[E.tW.R,E.tW[2]]}),(0,A.jsx)(Co,{label:(0,_.t)("toolBar.diamond"),shortcuts:[E.tW.D,E.tW[3]]}),(0,A.jsx)(Co,{label:(0,_.t)("toolBar.ellipse"),shortcuts:[E.tW.O,E.tW[4]]}),(0,A.jsx)(Co,{label:(0,_.t)("toolBar.arrow"),shortcuts:[E.tW.A,E.tW[5]]}),(0,A.jsx)(Co,{label:(0,_.t)("toolBar.line"),shortcuts:[E.tW.P,E.tW[6]]}),(0,A.jsx)(Co,{label:(0,_.t)("toolBar.freedraw"),shortcuts:["Shift + P",E.tW[7]]}),(0,A.jsx)(Co,{label:(0,_.t)("toolBar.text"),shortcuts:[E.tW.T,E.tW[8]]}),(0,A.jsx)(Co,{label:(0,_.t)("toolBar.image"),shortcuts:[E.tW[9]]}),(0,A.jsx)(Co,{label:(0,_.t)("toolBar.eraser"),shortcuts:[E.tW.E,E.tW[0]]}),(0,A.jsx)(Co,{label:(0,_.t)("helpDialog.editSelectedShape"),shortcuts:[(0,D.uY)("CtrlOrCmd+Enter"),(0,D.uY)("CtrlOrCmd + ".concat((0,_.t)("helpDialog.doubleClick")))]}),(0,A.jsx)(Co,{label:(0,_.t)("helpDialog.textNewLine"),shortcuts:[(0,D.uY)("Enter"),(0,D.uY)("Shift+Enter")]}),(0,A.jsx)(Co,{label:(0,_.t)("helpDialog.textFinish"),shortcuts:[(0,D.uY)("Esc"),(0,D.uY)("CtrlOrCmd+Enter")]}),(0,A.jsx)(Co,{label:(0,_.t)("helpDialog.curvedArrow"),shortcuts:["A",(0,_.t)("helpDialog.click"),(0,_.t)("helpDialog.click"),(0,_.t)("helpDialog.click")],isOr:!1}),(0,A.jsx)(Co,{label:(0,_.t)("helpDialog.curvedLine"),shortcuts:["L",(0,_.t)("helpDialog.click"),(0,_.t)("helpDialog.click"),(0,_.t)("helpDialog.click")],isOr:!1}),(0,A.jsx)(Co,{label:(0,_.t)("toolBar.lock"),shortcuts:[E.tW.Q]}),(0,A.jsx)(Co,{label:(0,_.t)("helpDialog.preventBinding"),shortcuts:[(0,D.uY)("CtrlOrCmd")]}),(0,A.jsx)(Co,{label:(0,_.t)("toolBar.link"),shortcuts:[(0,D.uY)("CtrlOrCmd+K")]})]}),(0,A.jsxs)(_o,{className:"HelpDialog__island--view",caption:(0,_.t)("helpDialog.view"),children:[(0,A.jsx)(Co,{label:(0,_.t)("buttons.zoomIn"),shortcuts:[(0,D.uY)("CtrlOrCmd++")]}),(0,A.jsx)(Co,{label:(0,_.t)("buttons.zoomOut"),shortcuts:[(0,D.uY)("CtrlOrCmd+-")]}),(0,A.jsx)(Co,{label:(0,_.t)("buttons.resetZoom"),shortcuts:[(0,D.uY)("CtrlOrCmd+0")]}),(0,A.jsx)(Co,{label:(0,_.t)("helpDialog.zoomToFit"),shortcuts:["Shift+1"]}),(0,A.jsx)(Co,{label:(0,_.t)("helpDialog.zoomToSelection"),shortcuts:["Shift+2"]}),(0,A.jsx)(Co,{label:(0,_.t)("buttons.fullScreen"),shortcuts:["F"]}),(0,A.jsx)(Co,{label:(0,_.t)("buttons.zenMode"),shortcuts:[(0,D.uY)("Alt+Z")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.showGrid"),shortcuts:[(0,D.uY)("CtrlOrCmd+'")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.viewMode"),shortcuts:[(0,D.uY)("Alt+R")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.toggleTheme"),shortcuts:[(0,D.uY)("Alt+Shift+D")]}),(0,A.jsx)(Co,{label:(0,_.t)("stats.title"),shortcuts:[(0,D.uY)("Alt+/")]})]}),(0,A.jsxs)(_o,{className:"HelpDialog__island--editor",caption:(0,_.t)("helpDialog.editor"),children:[(0,A.jsx)(Co,{label:(0,_.t)("labels.selectAll"),shortcuts:[(0,D.uY)("CtrlOrCmd+A")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.multiSelect"),shortcuts:[(0,D.uY)("Shift+".concat((0,_.t)("helpDialog.click")))]}),(0,A.jsx)(Co,{label:(0,_.t)("helpDialog.deepSelect"),shortcuts:[(0,D.uY)("CtrlOrCmd+".concat((0,_.t)("helpDialog.click")))]}),(0,A.jsx)(Co,{label:(0,_.t)("helpDialog.deepBoxSelect"),shortcuts:[(0,D.uY)("CtrlOrCmd+".concat((0,_.t)("helpDialog.drag")))]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.moveCanvas"),shortcuts:[(0,D.uY)("Space+".concat((0,_.t)("helpDialog.drag"))),(0,D.uY)("Wheel+".concat((0,_.t)("helpDialog.drag")))],isOr:!0}),(0,A.jsx)(Co,{label:(0,_.t)("labels.cut"),shortcuts:[(0,D.uY)("CtrlOrCmd+X")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.copy"),shortcuts:[(0,D.uY)("CtrlOrCmd+C")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.paste"),shortcuts:[(0,D.uY)("CtrlOrCmd+V")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.pasteAsPlaintext"),shortcuts:[(0,D.uY)("CtrlOrCmd+Shift+V")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.copyAsPng"),shortcuts:[(0,D.uY)("Shift+Alt+C")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.copyStyles"),shortcuts:[(0,D.uY)("CtrlOrCmd+Alt+C")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.pasteStyles"),shortcuts:[(0,D.uY)("CtrlOrCmd+Alt+V")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.delete"),shortcuts:[(0,D.uY)("Delete")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.sendToBack"),shortcuts:[E.Um?(0,D.uY)("CtrlOrCmd+Alt+["):(0,D.uY)("CtrlOrCmd+Shift+[")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.bringToFront"),shortcuts:[E.Um?(0,D.uY)("CtrlOrCmd+Alt+]"):(0,D.uY)("CtrlOrCmd+Shift+]")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.sendBackward"),shortcuts:[(0,D.uY)("CtrlOrCmd+[")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.bringForward"),shortcuts:[(0,D.uY)("CtrlOrCmd+]")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.alignTop"),shortcuts:[(0,D.uY)("CtrlOrCmd+Shift+Up")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.alignBottom"),shortcuts:[(0,D.uY)("CtrlOrCmd+Shift+Down")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.alignLeft"),shortcuts:[(0,D.uY)("CtrlOrCmd+Shift+Left")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.alignRight"),shortcuts:[(0,D.uY)("CtrlOrCmd+Shift+Right")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.duplicateSelection"),shortcuts:[(0,D.uY)("CtrlOrCmd+D"),(0,D.uY)("Alt+".concat((0,_.t)("helpDialog.drag")))]}),(0,A.jsx)(Co,{label:(0,_.t)("helpDialog.toggleElementLock"),shortcuts:[(0,D.uY)("CtrlOrCmd+Shift+L")]}),(0,A.jsx)(Co,{label:(0,_.t)("buttons.undo"),shortcuts:[(0,D.uY)("CtrlOrCmd+Z")]}),(0,A.jsx)(Co,{label:(0,_.t)("buttons.redo"),shortcuts:E.ED?[(0,D.uY)("CtrlOrCmd+Y"),(0,D.uY)("CtrlOrCmd+Shift+Z")]:[(0,D.uY)("CtrlOrCmd+Shift+Z")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.group"),shortcuts:[(0,D.uY)("CtrlOrCmd+G")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.ungroup"),shortcuts:[(0,D.uY)("CtrlOrCmd+Shift+G")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.flipHorizontal"),shortcuts:[(0,D.uY)("Shift+H")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.flipVertical"),shortcuts:[(0,D.uY)("Shift+V")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.showStroke"),shortcuts:[(0,D.uY)("S")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.showBackground"),shortcuts:[(0,D.uY)("G")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.decreaseFontSize"),shortcuts:[(0,D.uY)("CtrlOrCmd+Shift+<")]}),(0,A.jsx)(Co,{label:(0,_.t)("labels.increaseFontSize"),shortcuts:[(0,D.uY)("CtrlOrCmd+Shift+>")]})]})]})]})})},Io=function(e){e.elements,e.appState,e.files;var t=e.actionManager;e.exportOpts,e.canvas;return(0,A.jsx)(A.Fragment,{children:(0,A.jsx)(Ve.Z,{icon:L.Hy,label:(0,_.t)("buttons.export"),onClick:function(){t.executeAction(tt)},dataTestId:"json-export-button"})})},Po=n(8923),To={};To.styleTagTransform=Se(),To.setAttributes=xe(),To.insert=be().bind(null,"head"),To.domAPI=ge(),To.insertStyleElement=ke();he()(Po.Z,To),Po.Z&&Po.Z.locals&&Po.Z.locals;var Do=n(2701),Lo={};Lo.styleTagTransform=Se(),Lo.setAttributes=xe(),Lo.insert=be().bind(null,"head"),Lo.domAPI=ge(),Lo.insertStyleElement=ke();he()(Do.Z,Lo),Do.Z&&Do.Z.locals&&Do.Z.locals;var Ao=function(e){var t=e.id,n=e.elements,r=e.isPending,i=e.onClick,l=e.selected,s=e.onToggle,c=e.onDrag,u=(0,g.useRef)(null);(0,g.useEffect)((function(){var e=u.current;if(e)return(0,a.Z)(m().mark((function t(){var r,o;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(n){t.next=2;break}return t.abrupt("return");case 2:return t.next=4,(0,Le.$D)(n,{exportBackground:!1,viewBackgroundColor:_r.white},null);case 4:o=t.sent,null===(r=o.querySelector(".style-fonts"))||void 0===r||r.remove(),e.innerHTML=o.outerHTML;case 7:case"end":return t.stop()}}),t)})))(),function(){e.innerHTML=""}}),[n]);var d=(0,g.useState)(!1),p=(0,o.Z)(d,2),f=p[0],h=p[1],v=Yi().isMobile,b=r&&(0,A.jsx)("div",{className:"library-unit__adder",children:L.pO});return(0,A.jsxs)("div",{className:(0,x.Z)("library-unit",{"library-unit__active":n,"library-unit--hover":n&&f,"library-unit--selected":l}),onMouseEnter:function(){return h(!0)},onMouseLeave:function(){return h(!1)},children:[(0,A.jsx)("div",{className:(0,x.Z)("library-unit__dragger",{"library-unit__pulse":!!r}),ref:u,draggable:!!n,onClick:n||r?function(e){t&&e.shiftKey?s(t,e):i()}:void 0,onDragStart:function(e){t?(h(!1),c(t,e)):e.preventDefault()}}),b,t&&n&&(f||v||l)&&(0,A.jsx)(Ue,{checked:l,onChange:function(e,n){return s(t,n)},className:"library-unit__checkbox"})]})},Zo=n(6440),zo={};zo.styleTagTransform=Se(),zo.setAttributes=xe(),zo.insert=be().bind(null,"head"),zo.domAPI=ge(),zo.insertStyleElement=ke();he()(Zo.Z,zo),Zo.Z&&Zo.Z.locals&&Zo.Z.locals;var Ro=n(5644),No=function(e){var t=e.theme,n=e.id,r=e.libraryReturnUrl||window.location.origin+window.location.pathname;return(0,A.jsx)("a",{className:"library-menu-browse-button",href:"".concat("https://libraries.excalidraw.com","?target=").concat(window.name||"_blank","&referrer=").concat(r,"&useHash=true&token=").concat(n,"&theme=").concat(t,"&version=").concat(re.Kr.excalidrawLibrary),target:"_excalidraw_libraries",children:(0,_.t)("labels.libraries")})},Bo=function(e){var t=e.isLoading,n=e.libraryItems,r=e.onAddToLibrary,a=e.onInsertLibraryItems,l=e.pendingElements,s=e.selectedItems,c=e.onSelectItems,u=e.theme,d=e.id,p=e.libraryReturnUrl,f=(0,g.useState)(null),h=(0,o.Z)(f,2),m=h[0],v=h[1],b=function(e,t){var n=!s.includes(e),r=[].concat((0,i.Z)(E),(0,i.Z)(S));if(n){if(t.shiftKey&&m){var o=r.findIndex((function(e){return e.id===m})),a=r.findIndex((function(t){return t.id===e}));if(-1===o||-1===a)return void c([].concat((0,i.Z)(s),[e]));var l=(0,D.xn)(s),u=r.reduce((function(e,t,n){return(n>=o&&n<=a||l.has(t.id))&&e.push(t.id),e}),[]);c(u)}else c([].concat((0,i.Z)(s),[e]));v(e)}else v(null),c(s.filter((function(t){return t!==e})))},y=function(e){return s.includes(e)?n.filter((function(e){return s.includes(e.id)})):n.filter((function(t){return t.id===e}))},w=function(e){var t,n,r,o,i;return(0,A.jsx)(rr,{children:(0,A.jsx)(Ao,{elements:null===(t=e.item)||void 0===t?void 0:t.elements,isPending:!(null!==(n=e.item)&&void 0!==n&&n.id||null===(r=e.item)||void 0===r||!r.elements),onClick:e.onClick||function(){},id:(null===(o=e.item)||void 0===o?void 0:o.id)||null,selected:!(null===(i=e.item)||void 0===i||!i.id)&&s.includes(e.item.id),onToggle:b,onDrag:function(e,t){t.dataTransfer.setData(re.LO.excalidrawlib,(0,ze.NI)(y(e)))}})},e.key)},k=function(e){var t=e.map((function(e){return e.id?w({item:e,onClick:function(){return a(y(e.id))},key:e.id}):w({key:"__pending__item__",item:e,onClick:function(){return r(l)}})})),n=(0,D.yo)(t,4);return n.length||(n=[[]]),n.map((function(e,t,n){return t===n.length-1&&(e=e.concat(new Array(4-e.length).fill(null).map((function(e,t){return w({key:"empty_".concat(t),item:null})})))),(0,A.jsx)(nr,{align:"center",className:"library-menu-items-container__row",children:e},t)}))},E=n.filter((function(e){return"published"!==e.status})),S=n.filter((function(e){return"published"===e.status})),j=!(n.length||E.length||S.length||l.length);return(0,A.jsx)("div",{className:"library-menu-items-container",style:l.length||E.length||S.length?{justifyContent:"flex-start"}:{},children:(0,A.jsxs)(rr,{className:"library-menu-items-container__items",align:"start",gap:1,style:{flex:S.length>0?1:"0 1 auto",marginBottom:0},children:[(0,A.jsxs)(A.Fragment,{children:[(0,A.jsxs)("div",{children:[(l.length>0||E.length>0||S.length>0)&&(0,A.jsx)("div",{className:"library-menu-items-container__header",children:(0,_.t)("labels.personalLib")}),t&&(0,A.jsx)("div",{style:{position:"absolute",top:"var(--container-padding-y)",right:"var(--container-padding-x)",transform:"translateY(50%)"},children:(0,A.jsx)(Ro.Z,{})})]}),l.length||E.length?k([].concat((0,i.Z)(l.length?[{id:null,elements:l}]:[]),(0,i.Z)(E))):(0,A.jsxs)("div",{className:"library-menu-items__no-items",children:[(0,A.jsx)("div",{className:(0,x.Z)({"library-menu-items__no-items__label":j}),children:(0,_.t)("library.noItems")}),(0,A.jsx)("div",{className:"library-menu-items__no-items__hint",children:S.length>0?(0,_.t)("library.hint_emptyPrivateLibrary"):(0,_.t)("library.hint_emptyLibrary")})]})]}),(0,A.jsxs)(A.Fragment,{children:[(S.length>0||l.length>0||E.length>0)&&(0,A.jsx)("div",{className:"library-menu-items-container__header library-menu-items-container__header--excal",children:(0,_.t)("labels.excalidrawLib")}),S.length>0?k(S):E.length>0?(0,A.jsx)("div",{style:{margin:"1rem 0",display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",width:"100%",fontSize:".9rem"},children:(0,_.t)("library.noItems")}):null]}),j&&(0,A.jsx)(No,{id:d,libraryReturnUrl:p,theme:u})]})})},Wo=n(4739),Ho=n(9487),Fo=n(9430),Uo=n(7046),Ko=n(3024),Yo=n(7589),Go={};Go.styleTagTransform=Se(),Go.setAttributes=xe(),Go.insert=be().bind(null,"head"),Go.domAPI=ge(),Go.insertStyleElement=ke();he()(Yo.Z,Go),Yo.Z&&Yo.Z.locals&&Yo.Z.locals;var Vo=n(8465),Xo={};Xo.styleTagTransform=Se(),Xo.setAttributes=xe(),Xo.insert=be().bind(null,"head"),Xo.domAPI=ge(),Xo.insertStyleElement=ke();he()(Vo.Z,Xo),Vo.Z&&Vo.Z.locals&&Vo.Z.locals;function qo(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Jo(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?qo(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):qo(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var $o=function(e){var t=e.libItem,n=e.appState,r=e.index,o=e.onChange,i=e.onRemove,l=(0,g.useRef)(null),s=(0,g.useRef)(null);return(0,g.useEffect)((function(){var e=l.current;e&&(0,a.Z)(m().mark((function r(){var o;return m().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,(0,Ko.$D)({elements:t.elements,appState:Jo(Jo({},n),{},{viewBackgroundColor:_r.white,exportBackground:!0}),files:null});case 2:o=r.sent,e.innerHTML=o.outerHTML;case 4:case"end":return r.stop()}}),r)})))()}),[t.elements,n]),(0,A.jsxs)("div",{className:"single-library-item",children:["published"===t.status&&(0,A.jsx)("span",{className:"single-library-item-status",children:(0,_.t)("labels.statusPublished")}),(0,A.jsx)("div",{ref:l,className:"single-library-item__svg"}),(0,A.jsx)(S.V,{"aria-label":(0,_.t)("buttons.remove"),type:"button",icon:L.Tw,className:"single-library-item--remove",onClick:i.bind(null,t.id),title:(0,_.t)("buttons.remove")}),(0,A.jsxs)("div",{style:{display:"flex",margin:"0.8rem 0",width:"100%",fontSize:"14px",fontWeight:500,flexDirection:"column"},children:[(0,A.jsxs)("label",{style:{display:"flex",justifyContent:"space-between",flexDirection:"column"},children:[(0,A.jsxs)("div",{style:{padding:"0.5em 0"},children:[(0,A.jsx)("span",{style:{fontWeight:500,color:_r.gray[6]},children:(0,_.t)("publishDialog.itemName")}),(0,A.jsx)("span",{"aria-hidden":"true",className:"required",children:"*"})]}),(0,A.jsx)("input",{type:"text",ref:s,style:{width:"80%",padding:"0.2rem"},defaultValue:t.name,placeholder:"Item name",onChange:function(e){o(e.target.value,r)}})]}),(0,A.jsx)("span",{className:"error",children:t.error})]})]})},Qo=n(6428);function ei(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ti(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ei(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ei(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ni(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return ri(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ri(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function ri(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var oi="publish-library-data",ii=function(){var e=(0,a.Z)(m().mark((function e(t){var n,r,i,a,l,s,c,u,d,p,f,h,g,v,b,y,x;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:n=6,r=128,i=Math.round(r/16),a=Math.max(Math.round(r/64),2),l=(0,D.yo)(t,n),(s=document.createElement("canvas")).width=l[0].length*r+(l[0].length+1)*(2*i)-2*i,s.height=l.length*r+(l.length+1)*(2*i)-2*i,(c=s.getContext("2d")).fillStyle=_r.white,c.fillRect(0,0,s.width,s.height),u=ni(t.entries()),e.prev=12,u.s();case 14:if((d=u.n()).done){e.next=28;break}return p=(0,o.Z)(d.value,2),f=p[0],h=p[1],e.next=18,(0,Ko.NL)({elements:h.elements,files:null,maxWidthOrHeight:r});case 18:g=e.sent,v=g.width,b=g.height,y=Math.floor(f/n)*(r+2*i),x=f%n*(r+2*i),c.drawImage(g,x+(r-v)/2+i,y+(r-b)/2+i),c.lineWidth=a,c.strokeStyle=_r.gray[4],c.strokeRect(x+i/2,y+i/2,r+i,r+i);case 26:e.next=14;break;case 28:e.next=33;break;case 30:e.prev=30,e.t0=e.catch(12),u.e(e.t0);case 33:return e.prev=33,u.f(),e.finish(33);case 36:return e.t1=Ae.Tu,e.t2=File,e.next=40,(0,Ae._c)(s);case 40:return e.t3=e.sent,e.t4=[e.t3],e.t5={type:re.LO.png},e.t6=new e.t2(e.t4,"preview",e.t5),e.t7={outputType:re.LO.jpg,maxWidthOrHeight:5e3},e.next=47,(0,e.t1)(e.t6,e.t7);case 47:return e.abrupt("return",e.sent);case 48:case"end":return e.stop()}}),e,null,[[12,30,33,36]])})));return function(t){return e.apply(this,arguments)}}(),ai=function(e){var t=e.onClose,n=e.libraryItems,r=e.appState,i=e.onSuccess,l=e.onError,s=e.updateItemsInStorage,c=e.onRemove,u=(0,g.useState)({authorName:"",githubHandle:"",name:"",description:"",twitterHandle:"",website:""}),d=(0,o.Z)(u,2),p=d[0],h=d[1],v=(0,g.useState)(!1),b=(0,o.Z)(v,2),y=b[0],x=b[1];(0,g.useEffect)((function(){var e=function(){try{var e=localStorage.getItem(oi);if(e)return JSON.parse(e)}catch(e){console.error(e)}return null}();e&&h(e)}),[]);var w=(0,g.useState)(n.slice()),k=(0,o.Z)(w,2),E=k[0],S=k[1];(0,g.useEffect)((function(){S(n.slice())}),[n]);var j,C=function(e){h(ti(ti({},p),{},(0,f.Z)({},e.target.name,e.target.value)))},O=function(){var e=(0,a.Z)(m().mark((function e(t){var n,r,o,a,s,c,u;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t.preventDefault(),x(!0),n=[],r=!1,E.forEach((function(e){var t="";e.name||(t=(0,_.t)("publishDialog.errors.required"),r=!0),n.push(ti(ti({},e),{},{error:t}))})),!r){e.next=9;break}return S(n),x(!1),e.abrupt("return");case 9:return e.next=11,ii(E);case 11:o=e.sent,a={type:re.r8.excalidrawLibrary,version:re.Kr.excalidrawLibrary,source:re.pb,libraryItems:E},s=JSON.stringify(a,null,2),c=new Blob([s],{type:"application/json"}),(u=new FormData).append("excalidrawLib",c),u.append("previewImage",o),u.append("previewImageType",o.type),u.append("title",p.name),u.append("authorName",p.authorName),u.append("githubHandle",p.githubHandle),u.append("name",p.name),u.append("description",p.description),u.append("twitterHandle",p.twitterHandle),u.append("website",p.website),fetch("https://us-central1-excalidraw-room-persistence.cloudfunctions.net/libraries/submit",{method:"post",body:u}).then((function(e){return e.ok?e.json().then((function(e){var t=e.url;localStorage.removeItem(oi),i({url:t,authorName:p.authorName,items:E})})):e.json().catch((function(){throw new Error(e.statusText||"something went wrong")})).then((function(t){throw new Error(t.message||e.statusText||"something went wrong")}))}),(function(e){console.error(e),l(e),x(!1)})).catch((function(e){console.error(e),l(e),x(!1)}));case 27:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),M=(0,g.useCallback)((function(){s(E),function(e){try{localStorage.setItem(oi,JSON.stringify(e))}catch(e){console.error(e)}}(p),t()}),[E,t,s,p]),I=!!n.length,P=n.some((function(e){return"published"===e.status}));return(0,A.jsx)(xr.V,{onCloseRequest:M,title:(0,_.t)("publishDialog.title"),className:"publish-library",children:I?(0,A.jsxs)("form",{onSubmit:O,children:[(0,A.jsxs)("div",{className:"publish-library-note",children:[(0,_.t)("publishDialog.noteDescription.pre"),(0,A.jsx)("a",{href:"https://libraries.excalidraw.com",target:"_blank",rel:"noopener noreferrer",children:(0,_.t)("publishDialog.noteDescription.link")})," ",(0,_.t)("publishDialog.noteDescription.post")]}),(0,A.jsxs)("span",{className:"publish-library-note",children:[(0,_.t)("publishDialog.noteGuidelines.pre"),(0,A.jsx)("a",{href:"https://github.com/excalidraw/excalidraw-libraries#guidelines",target:"_blank",rel:"noopener noreferrer",children:(0,_.t)("publishDialog.noteGuidelines.link")}),(0,_.t)("publishDialog.noteGuidelines.post")]}),(0,A.jsx)("div",{className:"publish-library-note",children:(0,_.t)("publishDialog.noteItems")}),P&&(0,A.jsx)("span",{className:"publish-library-note publish-library-warning",children:(0,_.t)("publishDialog.republishWarning")}),(j=[],E.forEach((function(e,t){j.push((0,A.jsx)("div",{className:"single-library-item-wrapper",children:(0,A.jsx)($o,{libItem:e,appState:r,index:t,onChange:function(e,t){var n=E.slice();n[t].name=e,S(n)},onRemove:c})},t))})),(0,A.jsx)("div",{className:"selected-library-items",children:j})),(0,A.jsxs)("div",{className:"publish-library__fields",children:[(0,A.jsxs)("label",{children:[(0,A.jsxs)("div",{children:[(0,A.jsx)("span",{children:(0,_.t)("publishDialog.libraryName")}),(0,A.jsx)("span",{"aria-hidden":"true",className:"required",children:"*"})]}),(0,A.jsx)("input",{type:"text",name:"name",required:!0,value:p.name,onChange:C,placeholder:(0,_.t)("publishDialog.placeholder.libraryName")})]}),(0,A.jsxs)("label",{style:{alignItems:"flex-start"},children:[(0,A.jsxs)("div",{children:[(0,A.jsx)("span",{children:(0,_.t)("publishDialog.libraryDesc")}),(0,A.jsx)("span",{"aria-hidden":"true",className:"required",children:"*"})]}),(0,A.jsx)("textarea",{name:"description",rows:4,required:!0,value:p.description,onChange:C,placeholder:(0,_.t)("publishDialog.placeholder.libraryDesc")})]}),(0,A.jsxs)("label",{children:[(0,A.jsxs)("div",{children:[(0,A.jsx)("span",{children:(0,_.t)("publishDialog.authorName")}),(0,A.jsx)("span",{"aria-hidden":"true",className:"required",children:"*"})]}),(0,A.jsx)("input",{type:"text",name:"authorName",required:!0,value:p.authorName,onChange:C,placeholder:(0,_.t)("publishDialog.placeholder.authorName")})]}),(0,A.jsxs)("label",{children:[(0,A.jsx)("span",{children:(0,_.t)("publishDialog.githubUsername")}),(0,A.jsx)("input",{type:"text",name:"githubHandle",value:p.githubHandle,onChange:C,placeholder:(0,_.t)("publishDialog.placeholder.githubHandle")})]}),(0,A.jsxs)("label",{children:[(0,A.jsx)("span",{children:(0,_.t)("publishDialog.twitterUsername")}),(0,A.jsx)("input",{type:"text",name:"twitterHandle",value:p.twitterHandle,onChange:C,placeholder:(0,_.t)("publishDialog.placeholder.twitterHandle")})]}),(0,A.jsxs)("label",{children:[(0,A.jsx)("span",{children:(0,_.t)("publishDialog.website")}),(0,A.jsx)("input",{type:"text",name:"website",pattern:"https?://.+",title:(0,_.t)("publishDialog.errors.website"),value:p.website,onChange:C,placeholder:(0,_.t)("publishDialog.placeholder.website")})]}),(0,A.jsxs)("span",{className:"publish-library-note",children:[(0,_.t)("publishDialog.noteLicense.pre"),(0,A.jsx)("a",{href:"https://github.com/excalidraw/excalidraw-libraries/blob/main/LICENSE",target:"_blank",rel:"noopener noreferrer",children:(0,_.t)("publishDialog.noteLicense.link")}),(0,_.t)("publishDialog.noteLicense.post")]})]}),(0,A.jsxs)("div",{className:"publish-library__buttons",children:[(0,A.jsx)(Qo.Z,{label:(0,_.t)("buttons.cancel"),onClick:M,"data-testid":"cancel-clear-canvas-button"}),(0,A.jsx)(Qo.Z,{type:"submit",label:(0,_.t)("buttons.submit"),actionType:"primary",isLoading:y})]})]}):(0,A.jsx)("p",{style:{padding:"1em",textAlign:"center",fontWeight:500},children:(0,_.t)("publishDialog.atleastOneLibItem")})})},li=function(e){var t=(0,g.useRef)(null);return(0,g.useEffect)((function(){var n=function(n){var r=t.current;!r||r.contains(n.target)||(0,i.Z)(document.querySelectorAll("[data-prevent-outside-click]")).some((function(e){return e.contains(n.target)}))||e(n)};return document.addEventListener("pointerdown",n),document.addEventListener("touchstart",n),function(){document.removeEventListener("pointerdown",n),document.removeEventListener("touchstart",n)}}),[t,e]),t},si=function(e,t){return e.filter((function(e){return t.includes(e.id)}))},ci=function(e){var t=e.setAppState,n=e.selectedItems,r=e.library,i=e.onRemoveFromLibrary,l=e.resetLibrary,s=e.onSelectItems,c=e.appState,u=(0,Wo.KO)(Tn.rF,Ho.yE),d=(0,o.Z)(u,1)[0],p=(0,g.useCallback)((function(){var e=n.length?(0,_.t)("alerts.removeItemsFromsLibrary",{count:n.length}):(0,_.t)("alerts.resetLibrary"),t=n.length?(0,_.t)("confirmDialog.removeItemsFromLib"):(0,_.t)("confirmDialog.resetLibrary");return(0,A.jsx)(Uo.Z,{onConfirm:function(){n.length?i():l(),b(!1)},onCancel:function(){b(!1)},title:t,children:(0,A.jsx)("p",{children:e})})}),[n,i,l]),f=(0,g.useState)(!1),h=(0,o.Z)(f,2),v=h[0],b=h[1],y=!!n.length,x=y?d.libraryItems.filter((function(e){return n.includes(e.id)})):d.libraryItems,w=y?(0,_.t)("buttons.remove"):(0,_.t)("buttons.resetLibrary"),k=(0,g.useState)(!1),E=(0,o.Z)(k,2),j=E[0],C=E[1],O=(0,g.useState)(null),M=(0,o.Z)(O,2),I=M[0],P=M[1],T=(0,g.useCallback)((function(){return(0,A.jsxs)(xr.V,{onCloseRequest:function(){return P(null)},title:(0,_.t)("publishSuccessDialog.title"),className:"publish-library-success",small:!0,children:[(0,A.jsxs)("p",{children:[(0,_.t)("publishSuccessDialog.content",{authorName:I.authorName})," ",(0,A.jsx)("a",{href:null==I?void 0:I.url,target:"_blank",rel:"noopener noreferrer",children:(0,_.t)("publishSuccessDialog.link")})]}),(0,A.jsx)(S.V,{type:"button",title:(0,_.t)("buttons.close"),"aria-label":(0,_.t)("buttons.close"),label:(0,_.t)("buttons.close"),onClick:function(){return P(null)},"data-testid":"publish-library-success-close",className:"publish-library-success-close"})]})}),[P,I]),Z=(0,g.useCallback)((function(e,t){C(!1),P({url:e.url,authorName:e.authorName});var o=t.slice();o.forEach((function(e){n.includes(e.id)&&(e.status="published")})),r.setLibrary(o)}),[C,P,n,r]),z=function(){var e=(0,a.Z)(m().mark((function e(){return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,r.updateLibrary({libraryItems:(0,Ze.I$)({description:"Excalidraw library files"}),merge:!0,openLibraryMenu:!0});case 3:e.next=11;break;case 5:if(e.prev=5,e.t0=e.catch(0),"AbortError"!==(null===e.t0||void 0===e.t0?void 0:e.t0.name)){e.next=10;break}return console.warn(e.t0),e.abrupt("return");case 10:t({errorMessage:(0,_.t)("errors.importLibraryError")});case 11:case"end":return e.stop()}}),e,null,[[0,5]])})));return function(){return e.apply(this,arguments)}}(),R=function(){var e=(0,a.Z)(m().mark((function e(){var n;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!y){e.next=4;break}e.t0=x,e.next=7;break;case 4:return e.next=6,r.getLatestLibrary();case 6:e.t0=e.sent;case 7:n=e.t0,(0,ze.t1)(n).catch(D.FG).catch((function(e){t({errorMessage:e.message})}));case 9:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),N=(0,Wo.KO)(Fi),B=(0,o.Z)(N,2),W=B[0],H=B[1],F=li((function(){return H(!1)}));return(0,A.jsxs)("div",{style:{position:"relative"},children:[(0,A.jsx)("button",{type:"button",className:"Sidebar__dropdown-btn","data-prevent-outside-click":!0,onClick:function(){return H(!W)},children:L.YA}),n.length>0&&(0,A.jsx)("div",{className:"library-actions-counter",children:n.length}),W&&(0,A.jsxs)("div",{className:"Sidebar__dropdown-content menu-container",ref:F,children:[!y&&(0,A.jsx)(Ve.Z,{label:(0,_.t)("buttons.load"),icon:L.Tl,dataTestId:"lib-dropdown--load",onClick:z}),v&&p(),j&&(0,A.jsx)(ai,{onClose:function(){return C(!1)},libraryItems:si(d.libraryItems,n),appState:c,onSuccess:function(e){return Z(e,d.libraryItems)},onError:function(e){return window.alert(e)},updateItemsInStorage:function(){return r.setLibrary(d.libraryItems)},onRemove:function(e){return s(n.filter((function(t){return t!==e})))}}),I&&T(),!!x.length&&(0,A.jsxs)(A.Fragment,{children:[(0,A.jsx)(Ve.Z,{label:(0,_.t)("buttons.export"),icon:L.Hy,onClick:R,dataTestId:"lib-dropdown--export"}),(0,A.jsx)(Ve.Z,{label:w,icon:L.XH,onClick:function(){return b(!0)},dataTestId:"lib-dropdown--remove"})]}),y&&(0,A.jsx)(Ve.Z,{label:(0,_.t)("buttons.publishLibrary"),icon:L.Nw,dataTestId:"lib-dropdown--publish",onClick:function(){return C(!0)}})]})]})},ui=(0,g.forwardRef)((function(e,t){var n=e.children;return(0,A.jsx)("div",{ref:t,className:"layer-ui__library",children:n})})),di=function(e){var t=e.onInsertLibraryItems,n=e.pendingElements,r=e.onAddToLibrary,l=e.setAppState,s=e.libraryReturnUrl,c=e.library,u=e.id,d=e.appState,p=e.selectedItems,f=e.onSelectItems,h=(0,Wo.KO)(Tn.rF,Ho.yE),v=(0,o.Z)(h,1)[0],b=(0,g.useCallback)(function(){var e=(0,a.Z)(m().mark((function e(t,n){var o;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if((0,On.L)("element","addToLibrary","ui"),!t.some((function(e){return"image"===e.type}))){e.next=3;break}return e.abrupt("return",l({errorMessage:"Support for adding images to the library coming soon!"}));case 3:o=[{status:"unpublished",elements:t,id:(0,pt.kb)(),created:Date.now()}].concat((0,i.Z)(n)),r(),c.setLibrary(o).catch((function(){l({errorMessage:(0,_.t)("alerts.errorAddingToLibrary")})}));case 6:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}(),[r,c,l]);if("loading"===v.status&&!v.isInitialized)return(0,A.jsx)(ui,{children:(0,A.jsx)("div",{className:"layer-ui__library-message",children:(0,A.jsxs)("div",{children:[(0,A.jsx)(Ro.Z,{size:"2em"}),(0,A.jsx)("span",{children:(0,_.t)("labels.libraryLoadingMessage")})]})})});var y=v.libraryItems.length>0||n.length>0;return(0,A.jsxs)(ui,{children:[(0,A.jsx)(Bo,{isLoading:"loading"===v.status,libraryItems:v.libraryItems,onAddToLibrary:function(e){return b(e,v.libraryItems)},onInsertLibraryItems:t,pendingElements:n,selectedItems:p,onSelectItems:f,id:u,libraryReturnUrl:s,theme:d.theme}),y&&(0,A.jsx)(No,{id:u,libraryReturnUrl:s,theme:d.theme})]})},pi=function(e){var t=e.appState,n=e.onInsertElements,r=e.libraryReturnUrl,i=e.focusContainer,l=e.library,s=e.id,c=ea(),u=$i(),d=Yi(),p=(0,g.useState)([]),f=(0,o.Z)(p,2),h=f[0],v=f[1],b=(0,Wo.KO)(Tn.rF,Ho.yE),y=(0,o.Z)(b,1)[0],x=(0,g.useRef)(null),w=(0,g.useCallback)((function(){!!document.querySelector(".Dialog")||c({openSidebar:null})}),[c]);!function(e,t){(0,g.useEffect)((function(){var n=function(n){e.current&&(n.target instanceof Element&&(e.current.contains(n.target)||!document.body.contains(n.target))||t(n))};return document.addEventListener("pointerdown",n,!1),function(){document.removeEventListener("pointerdown",n)}}),[e,t])}(x,(0,g.useCallback)((function(e){e.target.closest(".ToolIcon__library")||t.isSidebarDocked&&d.canDeviceFitSidebar||w()}),[w,t.isSidebarDocked,d.canDeviceFitSidebar])),(0,g.useEffect)((function(){var e=function(e){e.key!==E.tW.ESCAPE||t.isSidebarDocked&&d.canDeviceFitSidebar||w()};return document.addEventListener(re.Ks.KEYDOWN,e),function(){document.removeEventListener(re.Ks.KEYDOWN,e)}}),[w,t.isSidebarDocked,d.canDeviceFitSidebar]);var S=(0,g.useCallback)((function(){c({selectedElementIds:{},selectedGroupIds:{}})}),[c]),j=(0,g.useCallback)(function(){var e=(0,a.Z)(m().mark((function e(t){var n;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:n=t.filter((function(e){return!h.includes(e.id)})),l.setLibrary(n).catch((function(){c({errorMessage:(0,_.t)("alerts.errorRemovingFromLibrary")})})),v([]);case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),[l,c,h,v]),C=(0,g.useCallback)((function(){l.resetLibrary(),i()}),[l,i]);return(0,A.jsxs)(Fo.Y,{__isInternal:!0,className:"layer-ui__library-sidebar",initialDockedState:t.isSidebarDocked,onDock:function(e){(0,On.L)("library","toggleLibraryDock (".concat(e?"dock":"undock",")"),"sidebar (".concat(d.isMobile?"mobile":"desktop",")"))},ref:x,children:[(0,A.jsx)(Fo.Y.Header,{className:"layer-ui__library-header",children:(0,A.jsx)(ci,{appState:t,setAppState:c,selectedItems:h,onSelectItems:v,library:l,onRemoveFromLibrary:function(){return j(y.libraryItems)},resetLibrary:C})}),(0,A.jsx)(di,{pendingElements:(0,k.eD)(u,t,!0),onInsertLibraryItems:function(e){n((0,Tn.WV)(e))},onAddToLibrary:S,setAppState:c,libraryReturnUrl:r,library:l,id:s,appState:t,selectedItems:h,onSelectItems:v})]},"library")},fi=n(1434),hi={};hi.styleTagTransform=Se(),hi.setAttributes=xe(),hi.insert=be().bind(null,"head"),hi.domAPI=ge(),hi.insertStyleElement=ke();he()(fi.Z,hi),fi.Z&&fi.Z.locals&&fi.Z.locals;var mi=n(9144),gi={};gi.styleTagTransform=Se(),gi.setAttributes=xe(),gi.insert=be().bind(null,"head"),gi.domAPI=ge(),gi.insertStyleElement=ke();he()(mi.Z,gi),mi.Z&&mi.Z.locals&&mi.Z.locals;var vi=function(e){var t=e.children;return e.shouldRender?(0,A.jsx)(A.Fragment,{children:t}):null},bi=function(e){var t=e.appState,n=e.actionManager,r=e.renderCustomFooter,o=e.showExitZenModeBtn,i=e.renderWelcomeScreen,a=Yi(),l=!t.viewModeEnabled&&t.multiElement&&a.isTouchScreen;return(0,A.jsxs)("footer",{role:"contentinfo",className:"layer-ui__wrapper__footer App-menu App-menu_bottom",children:[(0,A.jsx)("div",{className:(0,x.Z)("layer-ui__wrapper__footer-left zen-mode-transition",{"layer-ui__wrapper__footer-left--transition-left":t.zenModeEnabled}),children:(0,A.jsx)(rr,{gap:2,children:(0,A.jsxs)(Kr,{heading:"canvasActions",children:[(0,A.jsx)(fr,{renderAction:n.renderAction,zoom:t.zoom}),!t.viewModeEnabled&&(0,A.jsx)(hr,{renderAction:n.renderAction,className:(0,x.Z)("zen-mode-transition",{"layer-ui__wrapper__footer-left--transition-bottom":t.zenModeEnabled})}),l&&(0,A.jsx)(gr,{renderAction:n.renderAction,className:(0,x.Z)("zen-mode-transition",{"layer-ui__wrapper__footer-left--transition-left":t.zenModeEnabled})})]})})}),(0,A.jsx)("div",{className:(0,x.Z)("layer-ui__wrapper__footer-center zen-mode-transition",{"layer-ui__wrapper__footer-left--transition-bottom":t.zenModeEnabled}),children:null==r?void 0:r(!1,t)}),(0,A.jsx)("div",{className:(0,x.Z)("layer-ui__wrapper__footer-right zen-mode-transition",{"transition-right disable-pointerEvents":t.zenModeEnabled}),children:(0,A.jsxs)("div",{style:{position:"relative"},children:[(0,A.jsx)(vi,{shouldRender:i&&!t.isLoading,children:(0,A.jsxs)("div",{className:"virgil WelcomeScreen-decor WelcomeScreen-decor--help-pointer",children:[(0,A.jsx)("div",{children:(0,_.t)("welcomeScreen.helpHints")}),L._U]})}),n.renderAction("toggleShortcuts")]})}),(0,A.jsx)(mr,{actionManager:n,showExitZenModeBtn:o})]})},yi=["suggestedBindings","startBoundElement"];function xi(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var wi=function(e){var t,n=e.actionManager,r=e.appState,i=e.files,l=e.setAppState,s=e.elements,c=e.canvas,u=e.onCollabButtonClick,d=e.onLockToggle,p=e.onPenModeToggle,h=e.onInsertElements,g=e.showExitZenModeBtn,v=e.isCollaborating,b=e.renderTopRightUI,y=e.renderCustomFooter,w=e.renderCustomStats,E=e.renderCustomSidebar,S=e.libraryReturnUrl,j=e.UIOptions,O=e.focusContainer,M=e.library,I=e.id,P=e.onImageAction,T=e.renderWelcomeScreen,Z=e.onHomeButtonClick,z=e.onThemeToggle,R=Yi(),N=function(){return j.canvasActions.export?(0,A.jsx)(Io,{elements:s,appState:r,files:i,actionManager:n,exportOpts:j.canvasActions.export,canvas:c}):null},B=function(){if(!j.canvasActions.saveAsImage)return null;var e=function(e){return function(){var t=(0,a.Z)(m().mark((function t(n){var o;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(0,On.L)("export",e,"ui"),t.next=3,Re(e,n,r,i,{exportBackground:r.exportBackground,name:r.name,viewBackgroundColor:r.viewBackgroundColor}).catch(D.FG).catch((function(e){console.error(e),l({errorMessage:e.message})}));case 3:o=t.sent,r.exportEmbedScene&&o&&(0,Ae.g8)(o)&&l({fileHandle:o});case 5:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}()};return(0,A.jsx)(Pr,{elements:s,appState:r,setAppState:l,files:i,actionManager:n,onExportToPng:e("png"),onExportToSvg:e("svg"),onExportToClipboard:e("clipboard")})},W=(0,Wo.KO)(Hi),H=(0,o.Z)(W,2),F=H[0],U=H[1],K=li((function(){return U(!1)})),Y=function(){return"customSidebar"===r.openSidebar?(null==E?void 0:E())||null:"library"===r.openSidebar?(0,A.jsx)(pi,{appState:r,onInsertElements:h,libraryReturnUrl:S,focusContainer:O,library:M,id:I}):null},G=(0,Wo.KO)(Fo.b,Ho.yE),V=(0,o.Z)(G,1)[0];return(0,A.jsxs)(A.Fragment,{children:[r.isLoading&&(0,A.jsx)(Nr.z,{delay:250}),r.errorMessage&&(0,A.jsx)(wr,{message:r.errorMessage,onClose:function(){return l({errorMessage:null})}}),"help"===r.openDialog&&(0,A.jsx)(Mo,{onClose:function(){l({openDialog:null})}}),B(),r.pasteDialog.shown&&(0,A.jsx)(go,{setAppState:l,appState:r,onInsertChart:h,onClose:function(){return l({pasteDialog:{shown:!1,data:null}})}}),R.isMobile&&(0,A.jsx)(uo,{onThemeToggle:z,onHomeButtonClick:Z,renderWelcomeScreen:T,appState:r,elements:s,actionManager:n,renderJSONExportDialog:N,renderImageExportDialog:B,setAppState:l,onCollabButtonClick:u,onLockToggle:function(){return d()},onPenModeToggle:p,canvas:c,isCollaborating:v,renderCustomFooter:y,onImageAction:P,renderTopRightUI:b,renderCustomStats:w,renderSidebars:Y,device:R}),!R.isMobile&&(0,A.jsxs)(A.Fragment,{children:[(0,A.jsxs)("div",{className:(0,x.Z)("layer-ui__wrapper",{"disable-pointerEvents":r.draggingElement||r.resizingElement||r.editingElement&&!(0,C.iB)(r.editingElement)}),style:("library"===r.openSidebar&&r.isSidebarDocked||V.docked)&&R.canDeviceFitSidebar?{width:"calc(100% - ".concat(re.EE,"px)")}:{},children:[(t=(0,C.RT)(r,s),(0,A.jsxs)(Lr,{side:"top",children:[T&&!r.isLoading&&(0,A.jsx)(lo,{appState:r,actionManager:n,onCollabButtonClick:u}),(0,A.jsxs)("div",{className:"App-menu App-menu_top",children:[(0,A.jsxs)(rr,{gap:6,className:(0,x.Z)("App-menu_top__left",{"disable-pointerEvents":r.zenModeEnabled}),children:[(0,A.jsxs)("div",{style:{position:"relative"},children:[(0,A.jsx)(vi,{shouldRender:T&&!r.isLoading,children:(0,A.jsxs)("div",{className:"virgil WelcomeScreen-decor WelcomeScreen-decor--menu-pointer",children:[L.oQ,(0,A.jsx)("div",{children:(0,_.t)("welcomeScreen.menuHints")})]})}),(0,A.jsx)("button",{"data-prevent-outside-click":!0,className:(0,x.Z)("menu-button","zen-mode-transition",{"transition-left":r.zenModeEnabled}),onClick:function(){return U(!F)},type:"button","data-testid":"menu-button",children:L.RY}),F&&(0,A.jsx)("div",{ref:K,style:{position:"absolute",top:"100%",marginTop:".25rem"},children:(0,A.jsx)(Kr,{heading:"canvasActions",children:(0,A.jsxs)(Rr.W,{className:"menu-container",padding:2,style:{zIndex:1},children:[!r.viewModeEnabled&&n.renderAction("loadScene"),r.fileHandle&&n.renderAction("saveToActiveFile"),N(),j.canvasActions.saveAsImage&&(0,A.jsx)(Ve.Z,{label:(0,_.t)("buttons.exportImage"),icon:L.J8,dataTestId:"image-export-button",onClick:function(){return l({openDialog:"imageExport"})},shortcut:(0,Ke.C)("imageExport")}),u&&(0,A.jsx)(yr,{onClick:u}),n.renderAction("toggleShortcuts",void 0,!0),!r.viewModeEnabled&&n.renderAction("clearCanvas"),(0,A.jsx)(ro,{}),(0,A.jsxs)("div",{style:{display:"flex",flexDirection:"column",rowGap:".5rem"},children:[(0,A.jsx)("div",{children:(0,A.jsx)(Ve.Z,{label:"dark"===r.theme?(0,_.t)("buttons.lightMode"):(0,_.t)("buttons.darkMode"),onClick:function(){z(r.theme===re.C6.LIGHT?re.C6.DARK:re.C6.LIGHT)},icon:"dark"===r.theme?L.NW:L.kL,dataTestId:"toggle-dark-mode",shortcut:(0,Ke.C)("toggleTheme")})}),!r.viewModeEnabled&&(0,A.jsxs)("div",{children:[(0,A.jsx)("div",{style:{fontSize:".75rem",marginBottom:".5rem"},children:(0,_.t)("labels.canvasBackground")}),(0,A.jsx)("div",{style:{padding:"0 0.625rem"},children:n.renderAction("changeViewBackgroundColor")})]})]})]})})})]}),t&&(0,A.jsx)(Kr,{heading:"selectedShapeActions",className:(0,x.Z)("selected-shape-actions zen-mode-transition",{"transition-left":r.zenModeEnabled}),children:(0,A.jsx)(Rr.W,{className:re.$C.SHAPE_ACTIONS_MENU,padding:2,style:{maxHeight:"".concat(r.height-166,"px")},children:(0,A.jsx)(dr,{appState:r,elements:s,renderAction:n.renderAction})})})]}),!r.viewModeEnabled&&(0,A.jsx)(Kr,{heading:"shapes",className:"shapes-section",children:function(e){return(0,A.jsxs)("div",{style:{position:"relative"},children:[(0,A.jsx)(vi,{shouldRender:T&&!r.isLoading,children:(0,A.jsxs)("div",{className:"virgil WelcomeScreen-decor WelcomeScreen-decor--top-toolbar-pointer",children:[(0,A.jsx)("div",{className:"WelcomeScreen-decor--top-toolbar-pointer__label",children:(0,_.t)("welcomeScreen.toolbarHints")}),L.DJ]})}),(0,A.jsx)(rr,{gap:4,align:"start",children:(0,A.jsx)(nr,{gap:1,className:(0,x.Z)("App-toolbar-container",{"zen-mode":r.zenModeEnabled}),children:(0,A.jsxs)(Rr.W,{padding:1,className:(0,x.Z)("App-toolbar",{"zen-mode":r.zenModeEnabled}),children:[(0,A.jsx)(zr,{appState:r,elements:s,isMobile:R.isMobile,device:R}),e,(0,A.jsxs)(nr,{gap:1,children:[(0,A.jsx)(Qr,{zenModeEnabled:r.zenModeEnabled,checked:r.penMode,onChange:p,title:(0,_.t)("toolBar.penMode"),penDetected:r.penDetected}),(0,A.jsx)(Wr,{zenModeEnabled:r.zenModeEnabled,checked:r.activeTool.locked,onChange:function(){return d()},title:(0,_.t)("toolBar.lock")}),(0,A.jsx)("div",{className:"App-toolbar__divider"}),(0,A.jsx)(pr,{appState:r,canvas:c,activeTool:r.activeTool,setAppState:l,onImageAction:function(e){var t=e.pointerType;P({insertOnCanvasDirectly:"mouse"!==t})}})]})]})})})]})}}),(0,A.jsxs)("div",{className:(0,x.Z)("layer-ui__wrapper__top-right zen-mode-transition",{"transition-right":r.zenModeEnabled}),children:[(0,A.jsx)(Xr,{collaborators:r.collaborators,actionManager:n}),u&&(0,A.jsx)(yr,{isInHamburgerMenu:!1,onClick:u}),null==b?void 0:b(R.isMobile,r),!r.viewModeEnabled&&(0,A.jsx)($r,{appState:r,setAppState:l})]})]})]})),(0,A.jsx)(bi,{renderWelcomeScreen:T,appState:r,actionManager:n,renderCustomFooter:y,showExitZenModeBtn:g}),r.showStats&&(0,A.jsx)(no,{appState:r,setAppState:l,elements:s,onClose:function(){n.executeAction(pn)},renderCustomStats:w}),r.scrolledOutside&&(0,A.jsx)("button",{className:"scroll-back-to-content",onClick:function(){l(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?xi(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):xi(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},(0,k.W)(s,r,c)))},children:(0,_.t)("buttons.scrollBackToContent")})]}),Y()]})]})},ki=function(e,t){var n=function(e){e.suggestedBindings,e.startBoundElement;return(0,Jn.Z)(e,yi)},r=n(e.appState),o=n(t.appState),i=Object.keys(r);return e.renderCustomFooter===t.renderCustomFooter&&e.renderTopRightUI===t.renderTopRightUI&&e.renderCustomStats===t.renderCustomStats&&e.renderCustomSidebar===t.renderCustomSidebar&&e.langCode===t.langCode&&e.elements===t.elements&&e.files===t.files&&i.every((function(e){return r[e]===o[e]}))},Ei=v().memo(wi,ki),Si=n(9650),_i={};_i.styleTagTransform=Se(),_i.setAttributes=xe(),_i.insert=be().bind(null,"head"),_i.domAPI=ge(),_i.insertStyleElement=ke();he()(Si.Z,_i),Si.Z&&Si.Z.locals&&Si.Z.locals;var ji=function(e){var t=e.message,n=e.onClose,r=e.closable,o=void 0!==r&&r,i=e.duration,a=void 0===i?5e3:i,l=(0,g.useRef)(0),s=a!==1/0,c=(0,g.useCallback)((function(){s&&(l.current=window.setTimeout((function(){return n()}),a))}),[n,a,s]);(0,g.useEffect)((function(){if(s)return c(),function(){return clearTimeout(l.current)}}),[c,t,a,s]);var u=s?function(){return clearTimeout(null==l?void 0:l.current)}:void 0,d=s?c:void 0;return(0,A.jsxs)("div",{className:"Toast",onMouseEnter:u,onMouseLeave:d,children:[(0,A.jsx)("p",{className:"Toast__message",children:t}),o&&(0,A.jsx)(S.V,{icon:L.Tw,"aria-label":"close",type:"icon",onClick:n,className:"close"})]})};function Ci(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Oi(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ci(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ci(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Mi=(0,j.z)({name:"viewMode",trackEvent:{category:"canvas",predicate:function(e){return!e.viewModeEnabled}},perform:function(e,t){return{appState:Oi(Oi({},t),{},{viewModeEnabled:!this.checked(t)}),commitToHistory:!1}},checked:function(e){return e.viewModeEnabled},contextItemLabel:"labels.viewMode",keyTest:function(e){return!e[E.tW.CTRL_OR_CMD]&&e.altKey&&e.code===E.aU.R}}),Ii=n(5637),Pi=n(200),Ti=n.n(Pi),Di=n(2325);function Li(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var Ai=(0,s.Z)((function e(t){var n=this,r=t.scene,o=t.onSceneUpdated;(0,l.Z)(this,e),this.onFontsLoaded=function(t){if(t.every((function(t){var n="".concat(t.family,"-").concat(t.style,"-").concat(t.weight);return!!e.loadedFontFaces.has(n)||(e.loadedFontFaces.add(n),!1)})))return!1;var r=!1;n.scene.mapElements((function(e){return(0,C.iB)(e)?((0,Hn.bI)(e),r=!0,(0,O.BE)(e,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Li(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Li(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},(0,C.JZ)(e)))):e})),r&&n.onSceneUpdated()},this.loadFontsForElements=function(){var e=(0,a.Z)(m().mark((function e(t){var r;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all((0,i.Z)(new Set(t.filter((function(e){return(0,C.iB)(e)})).map((function(e){return e.fontFamily})))).map((function(e){var t,n,r,o,i=(0,D.mO)({fontFamily:e,fontSize:16});if(null===(t=document.fonts)||void 0===t||null===(n=t.check)||void 0===n||!n.call(t,i))return null===(r=document.fonts)||void 0===r||null===(o=r.load)||void 0===o?void 0:o.call(r,i)})));case 2:r=e.sent,n.onFontsLoaded(r.flat().filter(Boolean));case 4:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),this.scene=r,this.onSceneUpdated=o}));Ai.loadedFontFaces=new Set;var Zi=function(){function e(t){var n;(0,l.Z)(this,e),this.subscribers=[],this.updateOnChangeOnly=null!==(n=null==t?void 0:t.updateOnChangeOnly)&&void 0!==n&&n,this.value=null==t?void 0:t.initialState}return(0,s.Z)(e,[{key:"on",value:function(){for(var e,t=this,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];var a=r.flat().filter((function(e){return"function"==typeof e}));return(e=this.subscribers).push.apply(e,(0,i.Z)(a)),function(){return t.off(a)}}},{key:"once",value:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=t.flat().filter((function(e){return"function"==typeof e})),o=this.on.apply(this,(0,i.Z)(r));return r.push((function(){return o()})),o}},{key:"off",value:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=t.flat();this.subscribers=this.subscribers.filter((function(e){return!r.includes(e)}))}},{key:"trigger",value:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return this.updateOnChangeOnly&&this.value===t?[]:(this.value=t,this.subscribers.map((function(e){return e.apply(void 0,t)})))}},{key:"destroy",value:function(){this.subscribers=[],this.value=void 0}}]),e}();function zi(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return Ri(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ri(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function Ri(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Ni(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=(0,p.Z)(e);if(t){var o=(0,p.Z)(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return(0,d.Z)(this,n)}}function Bi(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Wi(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Bi(Object(n),!0).forEach((function(t){(0,f.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Bi(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Hi=(0,Wo.cn)(!1),Fi=(0,Wo.cn)(!1),Ui={isSmScreen:!1,isMobile:!1,isTouchScreen:!1,canDeviceFitSidebar:!1},Ki=v().createContext(Ui),Yi=function(){return(0,g.useContext)(Ki)},Gi=v().createContext({container:null,id:null}),Vi=function(){return(0,g.useContext)(Gi)},Xi=v().createContext([]),qi=v().createContext(Wi(Wi({},(0,Pn.im)()),{},{width:0,height:0,offsetLeft:0,offsetTop:0})),Ji=v().createContext((function(){})),$i=function(){return(0,g.useContext)(Xi)},Qi=function(){return(0,g.useContext)(qi)},ea=function(){return(0,g.useContext)(Ji)},ta=!1,na=0,ra=0,oa=0,ia=!1,aa=!1,la=!1,sa={horizontal:null,vertical:null},ca=0,ua=!1,da=!0,pa=!1,fa=0,ha=!1,ma=null,ga={pointers:new Map,lastCenter:null,initialDistance:null,initialScale:null},va=function(e){(0,u.Z)(d,e);var t,n,r=Ni(d);function d(e){var t;(0,l.Z)(this,d),t=r.call(this,e),ba.call((0,c.Z)(t));var n,o=(0,Pn.im)(),i=e.excalidrawRef,a=e.viewModeEnabled,s=void 0!==a&&a,u=e.zenModeEnabled,p=void 0!==u&&u,f=e.gridModeEnabled,h=void 0!==f&&f,m=e.theme,g=void 0===m?o.theme:m,v=e.name,b=void 0===v?o.name:v;if(t.state=Wi(Wi(Wi({},o),{},{theme:g,isLoading:!0},t.getCanvasOffsets()),{},{viewModeEnabled:s,zenModeEnabled:p,gridSize:h?re.k:null,name:b,width:window.innerWidth,height:window.innerHeight,showHyperlinkPopup:!1,isSidebarDocked:!1}),t.id=(0,w.x0)(),t.library=new Tn.ZP((0,c.Z)(t)),i){var y,x="current"in i&&(null===(y=i.current)||void 0===y?void 0:y.readyPromise)||(0,D.PI)(),k={ready:!0,readyPromise:x,updateScene:t.updateScene,updateLibrary:t.library.updateLibrary,addFiles:t.addFiles,resetScene:t.resetScene,getSceneElementsIncludingDeleted:t.getSceneElementsIncludingDeleted,history:{clear:t.resetHistory},scrollToContent:t.scrollToContent,getSceneElements:t.getSceneElements,getAppState:function(){return t.state},getFiles:function(){return t.files},refresh:t.refresh,setToast:t.setToast,id:t.id,setActiveTool:t.setActiveTool,setCursor:t.setCursor,resetCursor:t.resetCursor,toggleMenu:t.toggleMenu,app:(0,c.Z)(t),onChange:function(e){return t.onChangeEmitter.on(e)},onPointerDown:function(e){return t.onPointerDownEmitter.on(e)},onPointerUp:function(e){return t.onPointerUpEmitter.on(e)}};"function"==typeof i?i(k):i.current=k,x.resolve(k)}return t.excalidrawContainerValue={container:t.excalidrawContainerRef.current,id:t.id},t.scene=new B.Z,t.fonts=new Ai({scene:t.scene,onSceneUpdated:t.onSceneUpdated}),t.history=new Bn,t.actionManager=new In(t.syncActionResult,(function(){return t.state}),(function(){return t.scene.getElementsIncludingDeleted()}),(0,c.Z)(t)),t.actionManager.registerAll(j.N),t.actionManager.registerAction((n=t.history,{name:"undo",trackEvent:{category:"history"},perform:function(e,t){return Cn(e,t,(function(){return n.undoOnce()}))},keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&e.key.toLowerCase()===E.tW.Z&&!e.shiftKey},PanelComponent:function(e){var t=e.updateData,n=e.data;return(0,A.jsx)(S.V,{type:"button",icon:L.UE,"aria-label":(0,_.t)("buttons.undo"),onClick:t,size:(null==n?void 0:n.size)||"medium"})},commitToHistory:function(){return!1}})),t.actionManager.registerAction(function(e){return{name:"redo",trackEvent:{category:"history"},perform:function(t,n){return Cn(t,n,(function(){return e.redoOnce()}))},keyTest:function(e){return e[E.tW.CTRL_OR_CMD]&&e.shiftKey&&e.key.toLowerCase()===E.tW.Z||E.ED&&e.ctrlKey&&!e.shiftKey&&e.key===E.tW.Y},PanelComponent:function(e){var t=e.updateData,n=e.data;return(0,A.jsx)(S.V,{type:"button",icon:L.zG,"aria-label":(0,_.t)("buttons.redo"),onClick:t,size:(null==n?void 0:n.size)||"medium"})},commitToHistory:function(){return!1}}}(t.history)),t}return(0,s.Z)(d,[{key:"renderCanvas",value:function(){var e=window.devicePixelRatio,t=this.state,n=t.width,r=t.height,o=n*e,i=r*e;return t.viewModeEnabled?(0,A.jsx)("canvas",{className:"excalidraw__canvas",style:{width:n,height:r,cursor:re.oc.GRAB},width:o,height:i,ref:this.handleCanvasRef,onContextMenu:this.handleCanvasContextMenu,onPointerMove:this.handleCanvasPointerMove,onPointerUp:this.handleCanvasPointerUp,onPointerCancel:this.removePointer,onTouchMove:this.handleTouchMove,onPointerDown:this.handleCanvasPointerDown,children:(0,_.t)("labels.drawingCanvas")}):(0,A.jsx)("canvas",{className:"excalidraw__canvas",style:{width:n,height:r},width:o,height:i,ref:this.handleCanvasRef,onContextMenu:this.handleCanvasContextMenu,onPointerDown:this.handleCanvasPointerDown,onDoubleClick:this.handleCanvasDoubleClick,onPointerMove:this.handleCanvasPointerMove,onPointerUp:this.handleCanvasPointerUp,onPointerCancel:this.removePointer,onTouchMove:this.handleTouchMove,children:(0,_.t)("labels.drawingCanvas")})}},{key:"render",value:function(){var e,t=this,n=(0,k.eD)(this.scene.getNonDeletedElements(),this.state),r=this.props,o=r.onCollabButtonClick,i=r.renderTopRightUI,a=r.renderFooter,l=r.renderCustomStats;return(0,A.jsx)("div",{className:(0,x.Z)("excalidraw excalidraw-container",{"excalidraw--view-mode":this.state.viewModeEnabled,"excalidraw--zen-mode":this.state.zenModeEnabled,"excalidraw--mobile":this.device.isMobile}),ref:this.excalidrawContainerRef,onDrop:this.handleAppOnDrop,tabIndex:0,onKeyDown:this.props.handleKeyboardGlobally?void 0:this.onKeyDown,children:(0,A.jsx)(Gi.Provider,{value:this.excalidrawContainerValue,children:(0,A.jsx)(Ki.Provider,{value:this.device,children:(0,A.jsx)(Ji.Provider,{value:this.setAppState,children:(0,A.jsxs)(qi.Provider,{value:this.state,children:[(0,A.jsxs)(Xi.Provider,{value:this.scene.getNonDeletedElements(),children:[(0,A.jsx)(Ei,{onThemeToggle:this.props.onThemeToggle,onHomeButtonClick:this.props.onHomeButtonClick,canvas:this.canvas,appState:this.state,files:this.files,setAppState:this.setAppState,actionManager:this.actionManager,elements:this.scene.getNonDeletedElements(),onCollabButtonClick:o,onLockToggle:this.toggleLock,onPenModeToggle:this.togglePenMode,onInsertElements:function(e){return t.addElementsFromPasteOrLibrary({elements:e,position:"center",files:null})},langCode:(0,_.G3)().code,isCollaborating:this.props.isCollaborating,renderTopRightUI:i,renderCustomFooter:a,renderCustomStats:l,renderCustomSidebar:this.props.renderSidebar,showExitZenModeBtn:void 0===(null===(e=this.props)||void 0===e?void 0:e.zenModeEnabled)&&this.state.zenModeEnabled,libraryReturnUrl:this.props.libraryReturnUrl,UIOptions:this.props.UIOptions,focusContainer:this.focusContainer,library:this.library,id:this.id,onImageAction:this.onImageAction,renderWelcomeScreen:this.state.showWelcomeScreen&&"selection"===this.state.activeTool.type&&!this.scene.getElementsIncludingDeleted().length}),(0,A.jsx)("div",{className:"excalidraw-textEditorContainer"}),(0,A.jsx)("div",{className:"excalidraw-contextMenuContainer"}),1===n.length&&this.state.showHyperlinkPopup&&(0,A.jsx)(vn.nW,{element:n[0],setAppState:this.setAppState,onLinkOpen:this.props.onLinkOpen},n[0].id),null!==this.state.toast&&(0,A.jsx)(ji,{message:this.state.toast.message,onClose:function(){return t.setToast(null)},duration:this.state.toast.duration,closable:this.state.toast.closable}),(0,A.jsx)("main",{children:this.renderCanvas()})]})," "]})})})})})}},{key:"componentDidMount",value:(n=(0,a.Z)(m().mark((function e(){var t,n,r,o,i,a,l=this;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:this.unmounted=!1,this.excalidrawContainerValue.container=this.excalidrawContainerRef.current,"production"!==re.Vi.TEST&&"production"!==re.Vi.DEVELOPMENT||(this.setState.bind(this),Object.defineProperties(window.h,{state:{configurable:!0,get:function(){return l.state}},setState:{configurable:!0,value:function(){return l.setState.apply(l,arguments)}},app:{configurable:!0,value:this},history:{configurable:!0,value:this.history}})),this.scene.addCallback(this.onSceneUpdated),this.addEventListeners(),this.excalidrawContainerRef.current&&this.focusContainer(),this.excalidrawContainerRef.current&&this.refreshDeviceState(this.excalidrawContainerRef.current),"ResizeObserver"in window&&null!==(t=this.excalidrawContainerRef)&&void 0!==t&&t.current?(this.resizeObserver=new ResizeObserver((function(){da=!1,l.refreshDeviceState(l.excalidrawContainerRef.current),l.updateDOMRect()})),null===(n=this.resizeObserver)||void 0===n||n.observe(this.excalidrawContainerRef.current)):window.matchMedia&&(r=window.matchMedia("(max-width: ".concat(re.kV,"px), (max-height: ").concat(re.Yx,"px) and (max-width: ").concat(re.sS,"px)")),o=window.matchMedia("(max-width: ".concat(re.eF,"px)")),i=window.matchMedia("(min-width: ".concat(null!=this.props.UIOptions.dockedSidebarBreakpoint?this.props.UIOptions.dockedSidebarBreakpoint:re.sk,"px)")),a=function(){l.excalidrawContainerRef.current.getBoundingClientRect(),l.device=(0,D.v4)(l.device,{isSmScreen:o.matches,isMobile:r.matches,canDeviceFitSidebar:i.matches})},r.addListener(a),this.detachIsMobileMqHandler=function(){return r.removeListener(a)}),new URLSearchParams(window.location.search.slice(1)).has("web-share-target")?this.restoreFileFromShare():this.updateDOMRect(this.initializeScene);case 10:case"end":return e.stop()}}),e,this)}))),function(){return n.apply(this,arguments)})},{key:"componentWillUnmount",value:function(){var e,t=this;this.files={},this.imageCache.clear(),null===(e=this.resizeObserver)||void 0===e||e.disconnect(),this.unmounted=!0,this.removeEventListeners(),this.scene.destroy(),(0,Hn.aL)(),this.onChangeEmitter.destroy(),this.scene=new B.Z,this.history=new Bn,this.actionManager=new In(this.syncActionResult,(function(){return t.state}),(function(){return t.scene.getElementsIncludingDeleted()}),this),this.library=new Tn.ZP(this),this.canvas=null,this.rc=null,this.excalidrawContainerRef.current=void 0,this.nearestScrollableContainer=void 0,this.excalidrawContainerValue={container:null,id:"unmounted"},clearTimeout(ca),ca=0}},{key:"removeEventListeners",value:function(){var e,t,n,r,o,i,a;document.removeEventListener(re.Ks.POINTER_UP,this.removePointer),document.removeEventListener(re.Ks.COPY,this.onCopy),document.removeEventListener(re.Ks.PASTE,this.pasteFromClipboard),document.removeEventListener(re.Ks.CUT,this.onCut),null===(e=this.excalidrawContainerRef.current)||void 0===e||e.removeEventListener(re.Ks.WHEEL,this.onWheel),null===(t=this.nearestScrollableContainer)||void 0===t||t.removeEventListener(re.Ks.SCROLL,this.onScroll),document.removeEventListener(re.Ks.KEYDOWN,this.onKeyDown,!1),document.removeEventListener(re.Ks.MOUSE_MOVE,this.updateCurrentCursorPosition,!1),document.removeEventListener(re.Ks.KEYUP,this.onKeyUp),window.removeEventListener(re.Ks.RESIZE,this.onResize,!1),window.removeEventListener(re.Ks.UNLOAD,this.onUnload,!1),window.removeEventListener(re.Ks.BLUR,this.onBlur,!1),null===(n=this.excalidrawContainerRef.current)||void 0===n||n.removeEventListener(re.Ks.DRAG_OVER,this.disableEvent,!1),null===(r=this.excalidrawContainerRef.current)||void 0===r||r.removeEventListener(re.Ks.DROP,this.disableEvent,!1),null===(o=document.fonts)||void 0===o||null===(i=o.removeEventListener)||void 0===i||i.call(o,"loadingdone",this.onFontsLoadingDone),document.removeEventListener(re.Ks.GESTURE_START,this.onGestureStart,!1),document.removeEventListener(re.Ks.GESTURE_CHANGE,this.onGestureChange,!1),document.removeEventListener(re.Ks.GESTURE_END,this.onGestureEnd,!1),null===(a=this.detachIsMobileMqHandler)||void 0===a||a.call(this)}},{key:"addEventListeners",value:function(){var e,t,n,r,o;this.removeEventListeners(),document.addEventListener(re.Ks.POINTER_UP,this.removePointer),document.addEventListener(re.Ks.COPY,this.onCopy),null===(e=this.excalidrawContainerRef.current)||void 0===e||e.addEventListener(re.Ks.WHEEL,this.onWheel,{passive:!1}),this.props.handleKeyboardGlobally&&document.addEventListener(re.Ks.KEYDOWN,this.onKeyDown,!1),document.addEventListener(re.Ks.KEYUP,this.onKeyUp,{passive:!0}),document.addEventListener(re.Ks.MOUSE_MOVE,this.updateCurrentCursorPosition),null===(t=document.fonts)||void 0===t||null===(n=t.addEventListener)||void 0===n||n.call(t,"loadingdone",this.onFontsLoadingDone),document.addEventListener(re.Ks.GESTURE_START,this.onGestureStart,!1),document.addEventListener(re.Ks.GESTURE_CHANGE,this.onGestureChange,!1),document.addEventListener(re.Ks.GESTURE_END,this.onGestureEnd,!1),this.state.viewModeEnabled||(document.addEventListener(re.Ks.PASTE,this.pasteFromClipboard),document.addEventListener(re.Ks.CUT,this.onCut),this.props.detectScroll&&(this.nearestScrollableContainer=(0,D.Ip)(this.excalidrawContainerRef.current),this.nearestScrollableContainer.addEventListener(re.Ks.SCROLL,this.onScroll)),window.addEventListener(re.Ks.RESIZE,this.onResize,!1),window.addEventListener(re.Ks.UNLOAD,this.onUnload,!1),window.addEventListener(re.Ks.BLUR,this.onBlur,!1),null===(r=this.excalidrawContainerRef.current)||void 0===r||r.addEventListener(re.Ks.DRAG_OVER,this.disableEvent,!1),null===(o=this.excalidrawContainerRef.current)||void 0===o||o.addEventListener(re.Ks.DROP,this.disableEvent,!1))}},{key:"componentDidUpdate",value:function(e,t){var n,r,o,i=this;(this.state.showWelcomeScreen||this.scene.getElementsIncludingDeleted().length||this.setState({showWelcomeScreen:!0}),this.excalidrawContainerRef.current&&e.UIOptions.dockedSidebarBreakpoint!==this.props.UIOptions.dockedSidebarBreakpoint&&this.refreshDeviceState(this.excalidrawContainerRef.current),t.scrollX!==this.state.scrollX||t.scrollY!==this.state.scrollY)&&(null===(r=this.props)||void 0===r||null===(o=r.onScrollChange)||void 0===o||o.call(r,this.state.scrollX,this.state.scrollY));Object.keys(this.state.selectedElementIds).length&&(0,Pn.EN)(this.state)&&this.setState({activeTool:(0,D.Om)(this.state,{type:"selection"})}),"eraser"===this.state.activeTool.type&&t.theme!==this.state.theme&&(0,D.OF)(this.canvas,this.state.theme),"selection"===t.activeTool.type&&"selection"!==this.state.activeTool.type&&this.state.showHyperlinkPopup&&this.setState({showHyperlinkPopup:!1}),e.langCode!==this.props.langCode&&this.updateLanguage(),e.viewModeEnabled!==this.props.viewModeEnabled&&this.setState({viewModeEnabled:!!this.props.viewModeEnabled}),t.viewModeEnabled!==this.state.viewModeEnabled&&(this.addEventListeners(),this.deselectElements()),e.zenModeEnabled!==this.props.zenModeEnabled&&this.setState({zenModeEnabled:!!this.props.zenModeEnabled}),e.theme!==this.props.theme&&this.props.theme&&this.setState({theme:this.props.theme}),e.gridModeEnabled!==this.props.gridModeEnabled&&this.setState({gridSize:this.props.gridModeEnabled?re.k:null}),this.props.UIOptions.canvasActions||"canvas"!==this.state.openMenu||this.setState({openMenu:null}),this.props.name&&e.name!==this.props.name&&this.setState({name:this.props.name}),null===(n=this.excalidrawContainerRef.current)||void 0===n||n.classList.toggle("theme--dark","dark"===this.state.theme),this.state.editingLinearElement&&!this.state.selectedElementIds[this.state.editingLinearElement.elementId]&&setTimeout((function(){i.state.editingLinearElement&&i.actionManager.executeAction(pe)})),this.state.selectedLinearElement&&!this.state.selectedElementIds[this.state.selectedLinearElement.elementId]&&this.setState({selectedLinearElement:null});var a,l,s=t.multiElement;(t.activeTool!==this.state.activeTool&&null!=s&&(0,P.N1)(this.state)&&(0,T.Mn)(s,!1)&&(0,P.R)(s,this.state,this.scene,(0,D.AK)(I._.getPointAtIndexGlobalCoordinates(s,-1))),this.renderScene(),this.history.record(this.state,this.scene.getElementsIncludingDeleted()),this.state.isLoading)||(null===(a=(l=this.props).onChange)||void 0===a||a.call(l,this.scene.getElementsIncludingDeleted(),this.state,this.files,this.props.id),this.onChangeEmitter.trigger(this.scene.getElementsIncludingDeleted(),this.state,this.files))}},{key:"addTextFromPaste",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=(0,D.dE)({clientX:ra,clientY:oa},this.state),r=n.x,o=n.y,a={x:r,y:o,strokeColor:this.state.currentItemStrokeColor,backgroundColor:this.state.currentItemBackgroundColor,fillStyle:this.state.currentItemFillStyle,strokeWidth:this.state.currentItemStrokeWidth,strokeStyle:this.state.currentItemStrokeStyle,roughness:this.state.currentItemRoughness,opacity:this.state.currentItemOpacity,strokeSharpness:this.state.currentItemStrokeSharpness,text:e,fontSize:this.state.currentItemFontSize,fontFamily:this.state.currentItemFontFamily,textAlign:this.state.currentItemTextAlign,verticalAlign:re.hs,locked:!1},l=10,s=o,c=t?[e]:e.split("\n"),u=c.reduce((function(e,t,n){var o=t.trim();if(o.length){var i=(0,C.VL)(Wi(Wi({},a),{},{x:r,y:s,text:o}));e.push(i),s+=i.height+l}else{var u;if(null===(u=c[n-1])||void 0===u?void 0:u.trim()){var d=(0,oe.hP)((0,D.mO)({fontSize:a.fontSize,fontFamily:a.fontFamily}));s+=d+l}}return e}),[]);0!==u.length&&(this.scene.replaceAllElements([].concat((0,i.Z)(this.scene.getElementsIncludingDeleted()),(0,i.Z)(u))),this.setState({selectedElementIds:Object.fromEntries(u.map((function(e){return[e.id,!0]})))}),!t&&u.length>1&&!1===ha&&!this.device.isMobile&&(this.setToast({message:(0,_.t)("toast.pasteAsSingleElement",{shortcut:(0,D.uY)("CtrlOrCmd+Shift+V")}),duration:5e3}),ha=!0),this.history.resumeRecording())}},{key:"handleTextWysiwyg",value:function(e,t){var n=this,r=t.isExistingElement,o=void 0!==r&&r,a=function(t,r,o){n.scene.replaceAllElements((0,i.Z)(n.scene.getElementsIncludingDeleted().map((function(n){return n.id===e.id&&(0,C.iB)(n)?(0,C.N_)(n,{text:t,isDeleted:o,originalText:r}):n}))))};(0,C.b_)({id:e.id,canvas:this.canvas,getViewportCoords:function(e,t){var r=(0,D._i)({sceneX:e,sceneY:t},n.state),o=r.x,i=r.y;return[o-n.state.offsetLeft,i-n.state.offsetTop]},onChange:(0,D.tH)((function(t){a(t,t,!1),(0,C.qP)(e)&&(0,P.Ww)(e)})),onSubmit:(0,D.tH)((function(t){var r=t.text,i=t.viaKeyboard,l=t.originalText,s=!r.trim();if(a(r,l,s),!s&&i){var c=e.containerId?e.containerId:e.id;n.setState((function(e){return{selectedElementIds:Wi(Wi({},e.selectedElementIds),{},(0,f.Z)({},c,!0))}}))}s&&(0,P.$q)(n.scene.getNonDeletedElements(),[e]),s&&!o||n.history.resumeRecording(),n.setState({draggingElement:null,editingElement:null}),n.state.activeTool.locked&&(0,D.Uk)(n.canvas,n.state),n.focusContainer()})),element:e,excalidrawContainer:this.excalidrawContainerRef.current,app:this}),this.deselectElements(),a(e.text,e.originalText,!1)}},{key:"deselectElements",value:function(){this.setState({selectedElementIds:{},selectedGroupIds:{},editingGroupId:null})}},{key:"getTextElementAtPosition",value:function(e,t){var n=this.getElementAtPosition(e,t,{includeBoundTextElement:!0});return n&&(0,C.iB)(n)&&!n.isDeleted?n:null}},{key:"getElementAtPosition",value:function(e,t,n){var r=this.getElementsAtPosition(e,t,null==n?void 0:n.includeBoundTextElement,null==n?void 0:n.includeLockedElements);if(r.length>1){if(null!=n&&n.preferSelected)for(var o=r.length-1;o>-1;o--)if(this.state.selectedElementIds[r[o].id])return r[o];var i=r[r.length-1];return(0,C.wB)(i,this.state,e,t)?r[r.length-2]:i}return 1===r.length?r[0]:null}},{key:"getElementsAtPosition",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],o=arguments.length>3&&void 0!==arguments[3]&&arguments[3],i=r&&o?this.scene.getNonDeletedElements():this.scene.getNonDeletedElements().filter((function(e){return(o||!e.locked)&&(r||!((0,C.iB)(e)&&e.containerId))}));return(0,k.CJ)(i,(function(r){return(0,C.wX)(r,n.state,e,t)}))}},{key:"handleHoverSelectedLinearElement",value:function(e,t,n){var r=I._.getElement(e.elementId),o=(0,oe.WJ)(r);if(r)if(this.state.selectedLinearElement){var i=-1,a=null;(0,Di.Qu)(r,this.state,[t,n])?(i=I._.getPointIndexUnderCursor(r,this.state.zoom,t,n),a=I._.getSegmentMidpointHitCoords(e,{x:t,y:n},this.state),i>=0||a?(0,D.KJ)(this.canvas,re.oc.POINTER):(0,D.KJ)(this.canvas,re.oc.MOVE)):((0,Ht.oY)([r],this.state)&&(0,C.wB)(r,this.state,t,n)||o&&(0,C.wX)(o,this.state,t,n))&&(0,D.KJ)(this.canvas,re.oc.MOVE),this.state.selectedLinearElement.hoverPointIndex!==i&&this.setState({selectedLinearElement:Wi(Wi({},this.state.selectedLinearElement),{},{hoverPointIndex:i})}),I._.arePointsEqual(this.state.selectedLinearElement.segmentMidPointHoveredCoords,a)||this.setState({selectedLinearElement:Wi(Wi({},this.state.selectedLinearElement),{},{segmentMidPointHoveredCoords:a})})}else(0,D.KJ)(this.canvas,re.oc.AUTO)}},{key:"maybeCleanupAfterMissingPointerUp",value:function(e){null!==ma&&ma(e)}},{key:"updateGestureOnPointerDown",value:function(e){ga.pointers.set(e.pointerId,{x:e.clientX,y:e.clientY}),2===ga.pointers.size&&(ga.lastCenter=Ln(ga.pointers),ga.initialScale=this.state.zoom.value,ga.initialDistance=An(Array.from(ga.pointers.values())))}},{key:"initialPointerDownState",value:function(e){var t=(0,D.dE)(e,this.state),n=(0,k.eD)(this.scene.getNonDeletedElements(),this.state),r=(0,C.KP)(n),i=(0,o.Z)(r,4),a=i[0],l=i[1],s=i[2],c=i[3];return{origin:t,withCmdOrCtrl:e[E.tW.CTRL_OR_CMD],originInGrid:(0,D.AK)((0,ce.wC)(t.x,t.y,this.state.gridSize)),scrollbars:(0,k._4)(sa,e.clientX-this.state.offsetLeft,e.clientY-this.state.offsetTop),lastCoords:Wi({},t),originalElements:this.scene.getNonDeletedElements().reduce((function(e,t){return e.set(t.id,(0,Ct.OL)(t)),e}),new Map),resize:{handleType:!1,isResizing:!1,offset:{x:0,y:0},arrowDirection:"origin",center:{x:(s+a)/2,y:(c+l)/2}},hit:{element:null,allHitElements:[],wasAddedToSelection:!1,hasBeenDuplicated:!1,hasHitCommonBoundingBoxOfSelectedElements:this.isHittingCommonBoundingBoxOfSelectedElements(t,n)},drag:{hasOccurred:!1,offset:null},eventListeners:{onMove:null,onUp:null,onKeyUp:null,onKeyDown:null},boxSelection:{hasOccurred:!1},elementIdsToErase:{}}}},{key:"handleDraggingScrollBar",value:function(e,t){var n=this;if(!t.scrollbars.isOverEither||this.state.multiElement)return!1;la=!0,t.lastCoords.x=e.clientX,t.lastCoords.y=e.clientY;var r=(0,D.$9)((function(e){e.target instanceof HTMLElement&&n.handlePointerMoveOverScrollbars(e,t)})),o=(0,D.tH)((function(){la=!1,(0,D.Uk)(n.canvas,n.state),ma=null,n.setState({cursorButton:"up"}),n.savePointer(e.clientX,e.clientY,"up"),window.removeEventListener(re.Ks.POINTER_MOVE,r),window.removeEventListener(re.Ks.POINTER_UP,o),r.flush()}));return ma=o,window.addEventListener(re.Ks.POINTER_MOVE,r),window.addEventListener(re.Ks.POINTER_UP,o),!0}},{key:"isASelectedElement",value:function(e){return null!=e&&this.state.selectedElementIds[e.id]}},{key:"isHittingCommonBoundingBoxOfSelectedElements",value:function(e,t){if(t.length<2)return!1;var n=10/this.state.zoom.value,r=(0,C.KP)(t),i=(0,o.Z)(r,4),a=i[0],l=i[1],s=i[2],c=i[3];return e.x>a-n&&e.x<s+n&&e.y>l-n&&e.y<c+n}},{key:"onKeyDownFromPointerDownHandler",value:function(e){var t=this;return(0,D.tH)((function(n){t.maybeHandleResize(e,n)||t.maybeDragNewGenericElement(e,n)}))}},{key:"onKeyUpFromPointerDownHandler",value:function(e){var t=this;return(0,D.tH)((function(n){n.key===E.tW.ALT&&n.preventDefault(),t.maybeHandleResize(e,n)||t.maybeDragNewGenericElement(e,n)}))}},{key:"onPointerMoveFromPointerDownHandler",value:function(e){var t=this;return(0,D.$9)((function(n){var r;if(null===e.drag.offset&&(e.drag.offset=(0,D.AK)((0,C.$V)((0,k.eD)(t.scene.getNonDeletedElements(),t.state),e.origin.x,e.origin.y))),n.target instanceof HTMLElement&&!t.handlePointerMoveOverScrollbars(n,e)){var a=(0,D.dE)(n,t.state);if((0,Pn.EN)(t.state))t.handleEraser(n,e,a);else{var l=(0,ce.wC)(a.x,a.y,t.state.gridSize),s=(0,o.Z)(l,2),c=s[0],u=s[1];if(e.drag.hasOccurred||"arrow"!==t.state.activeTool.type&&"line"!==t.state.activeTool.type||!((0,ce.LW)(a.x,a.y,e.origin.x,e.origin.y)<re.f)){if(e.resize.isResizing&&(e.lastCoords.x=a.x,e.lastCoords.y=a.y,t.maybeHandleResize(e,n)))return!0;if(t.state.selectedLinearElement){var d=t.state.editingLinearElement||t.state.selectedLinearElement;if(I._.shouldAddMidpoint(t.state.selectedLinearElement,a,t.state)){var p=I._.addMidpoint(t.state.selectedLinearElement,a,t.state);if(!p)return;return void(0,b.flushSync)((function(){t.state.selectedLinearElement&&t.setState({selectedLinearElement:Wi(Wi({},t.state.selectedLinearElement),{},{pointerDownState:p.pointerDownState,selectedPointsIndices:p.selectedPointsIndices})}),t.state.editingLinearElement&&t.setState({editingLinearElement:Wi(Wi({},t.state.editingLinearElement),{},{pointerDownState:p.pointerDownState,selectedPointsIndices:p.selectedPointsIndices})})}))}if(null!==d.pointerDownState.segmentMidpoint.value&&!d.pointerDownState.segmentMidpoint.added)return;var h=I._.handlePointDragging(n,t.state,a.x,a.y,(function(e,n){t.maybeSuggestBindingsForLinearElementAtCoords(e,n)}),d);if(h)return e.lastCoords.x=a.x,e.lastCoords.y=a.y,e.drag.hasOccurred=!0,t.state.editingLinearElement&&!t.state.editingLinearElement.isDragging&&t.setState({editingLinearElement:Wi(Wi({},t.state.editingLinearElement),{},{isDragging:!0})}),void(t.state.selectedLinearElement.isDragging||t.setState({selectedLinearElement:Wi(Wi({},t.state.selectedLinearElement),{},{isDragging:!0})}))}var m=e.hit.allHitElements.some((function(e){return t.isASelectedElement(e)})),g=t.state.editingLinearElement&&n.shiftKey&&t.state.editingLinearElement.elementId===(null===(r=e.hit.element)||void 0===r?void 0:r.id);if((m||e.hit.hasHitCommonBoundingBoxOfSelectedElements)&&!g){var v=(0,k.eD)(t.scene.getNonDeletedElements(),t.state);if(v.every((function(e){return e.locked})))return;if(e.drag.hasOccurred=!0,v.length>0&&!e.withCmdOrCtrl){var y=(0,ce.wC)(a.x-e.drag.offset.x,a.y-e.drag.offset.y,t.state.gridSize),x=(0,o.Z)(y,2),w=x[0],S=x[1],_=[Math.abs(a.x-e.origin.x),Math.abs(a.y-e.origin.y)],j=_[0],L=_[1],A=n.shiftKey;if((0,C.o8)(e,v,w,S,A,j,L,t.state),t.maybeSuggestBindingForAll(v),n.altKey&&!e.hit.hasBeenDuplicated){e.hit.hasBeenDuplicated=!0;var Z,z=[],R=[],N=new Map,B=new Map,W=e.hit.element,H=t.scene.getElementsIncludingDeleted(),F=(0,k.eD)(H,t.state,!0).map((function(e){return e.id})),U=zi(H);try{for(U.s();!(Z=U.n()).done;){var K=Z.value;if(F.includes(K.id)||K.id===(null==W?void 0:W.id)&&e.hit.wasAddedToSelection){var Y=(0,C.Sy)(t.state.editingGroupId,N,K),G=(0,ce.wC)(e.origin.x-e.drag.offset.x,e.origin.y-e.drag.offset.y,t.state.gridSize),V=(0,o.Z)(G,2),X=V[0],q=V[1];(0,O.DR)(Y,{x:Y.x+(X-w),y:Y.y+(q-S)}),z.push(Y),R.push(K),B.set(K.id,Y.id)}else z.push(K)}}catch(e){U.e(e)}finally{U.f()}var J=[].concat(z,R);(0,oe.P7)(z,R,B),(0,P.ek)(J,R,B,"duplicatesServeAsOld"),t.scene.replaceAllElements(J)}return}}var $=t.state.draggingElement;if($){if("freedraw"===$.type){var Q=$.points,ee=a.x-$.x,te=a.y-$.y,ne=Q.length>0&&Q[Q.length-1];if(!(ne&&ne[0]===ee&&ne[1]===te)){var ie=$.simulatePressure?$.pressures:[].concat((0,i.Z)($.pressures),[n.pressure]);(0,O.DR)($,{points:[].concat((0,i.Z)(Q),[[ee,te]]),pressures:ie})}}else if((0,T.bt)($)){e.drag.hasOccurred=!0;var ae=$.points,le=c-$.x,se=u-$.y;if((0,E.Ge)(n)&&2===ae.length){var ue=(0,C.o4)($.x,$.y,a.x,a.y);le=ue.width,se=ue.height}1===ae.length?(0,O.DR)($,{points:[].concat((0,i.Z)(ae),[[le,se]])}):2===ae.length&&(0,O.DR)($,{points:[].concat((0,i.Z)(ae.slice(0,-1)),[[le,se]])}),(0,T.Mn)($,!1)&&t.maybeSuggestBindingsForLinearElementAtCoords($,[a],t.state.startBoundElement)}else e.lastCoords.x=a.x,e.lastCoords.y=a.y,t.maybeDragNewGenericElement(e,n);if("selection"===t.state.activeTool.type){e.boxSelection.hasOccurred=!0;var de=t.scene.getNonDeletedElements();if(n.shiftKey||t.state.editingLinearElement||!(0,k.N)(de,t.state)||(e.withCmdOrCtrl&&e.hit.element?t.setState((function(n){return(0,M.bO)(Wi(Wi({},n),{},{selectedElementIds:(0,f.Z)({},e.hit.element.id,!0)}),t.scene.getNonDeletedElements())})):t.setState({selectedElementIds:{},selectedGroupIds:{},editingGroupId:null})),t.state.editingLinearElement)I._.handleBoxSelection(n,t.state,t.setState.bind(t));else{var pe=(0,k.Yp)(de,$);t.setState((function(n){return(0,M.bO)(Wi(Wi({},n),{},{selectedElementIds:Wi(Wi(Wi({},n.selectedElementIds),pe.reduce((function(e,t){return e[t.id]=!0,e}),{})),e.hit.element?(0,f.Z)({},e.hit.element.id,!pe.length):null),showHyperlinkPopup:!(1!==pe.length||!pe[0].link)&&"info",selectedLinearElement:1===pe.length&&(0,T.bt)(pe[0])?new I._(pe[0],t.scene):null}),t.scene.getNonDeletedElements())}))}}}}}}}))}},{key:"handlePointerMoveOverScrollbars",value:function(e,t){if(t.scrollbars.isOverHorizontal){var n=e.clientX,r=n-t.lastCoords.x;return this.setState({scrollX:this.state.scrollX-r/this.state.zoom.value}),t.lastCoords.x=n,!0}if(t.scrollbars.isOverVertical){var o=e.clientY,i=o-t.lastCoords.y;return this.setState({scrollY:this.state.scrollY-i/this.state.zoom.value}),t.lastCoords.y=o,!0}return!1}},{key:"onPointerUpFromPointerDownHandler",value:function(e){var t=this;return(0,D.tH)((function(n){var r,o,a,l=t.state,s=l.draggingElement,c=l.resizingElement,u=l.multiElement,d=l.activeTool,p=l.isResizing,h=l.isRotating;if(t.setState({isResizing:!1,isRotating:!1,resizingElement:null,selectionElement:null,cursorButton:"up",editingElement:u||(0,C.iB)(t.state.editingElement)?t.state.editingElement:null}),t.savePointer(n.clientX,n.clientY,"up"),t.onPointerUpEmitter.trigger(t.state.activeTool,e,n),t.state.editingLinearElement)if(e.boxSelection.hasOccurred||(null===(o=e.hit)||void 0===o||null===(a=o.element)||void 0===a?void 0:a.id)===t.state.editingLinearElement.elementId){var m=I._.handlePointerUp(n,t.state.editingLinearElement,t.state);m!==t.state.editingLinearElement&&t.setState({editingLinearElement:m,suggestedBindings:[]})}else t.actionManager.executeAction(pe);else if(t.state.selectedLinearElement){var g,v;if((null===(g=e.hit)||void 0===g||null===(v=g.element)||void 0===v?void 0:v.id)!==t.state.selectedLinearElement.elementId){(0,k.eD)(t.scene.getNonDeletedElements(),t.state).length>1&&t.setState({selectedLinearElement:null})}else{var b=I._.handlePointerUp(n,t.state.selectedLinearElement,t.state),y=b.startBindingElement,x=b.endBindingElement,w=t.scene.getElement(b.elementId);(0,T.Mn)(w)&&(0,P.HG)(w,y,x),b!==t.state.selectedLinearElement&&t.setState({selectedLinearElement:Wi(Wi({},b),{},{selectedPointsIndices:null}),suggestedBindings:[]})}}if(ma=null,e.eventListeners.onMove&&e.eventListeners.onMove.flush(),window.removeEventListener(re.Ks.POINTER_MOVE,e.eventListeners.onMove),window.removeEventListener(re.Ks.POINTER_UP,e.eventListeners.onUp),window.removeEventListener(re.Ks.KEYDOWN,e.eventListeners.onKeyDown),window.removeEventListener(re.Ks.KEYUP,e.eventListeners.onKeyUp),t.state.pendingImageElementId&&t.setState({pendingImageElementId:null}),"freedraw"===(null==s?void 0:s.type)){var E=(0,D.dE)(n,t.state),S=s.points,_=E.x-s.x,j=E.y-s.y;_===S[0][0]&&j===S[0][1]&&(j+=1e-4,_+=1e-4);var L=s.simulatePressure?[]:[].concat((0,i.Z)(s.pressures),[n.pressure]);return(0,O.DR)(s,{points:[].concat((0,i.Z)(S),[[_,j]]),pressures:L,lastCommittedPoint:[_,j]}),void t.actionManager.executeAction(pe)}if((0,T.pC)(s)){var A=s;try{t.initializeImageDimensions(A),t.setState({selectedElementIds:(0,f.Z)({},A.id,!0)},(function(){t.actionManager.executeAction(pe)}))}catch(e){console.error(e),t.scene.replaceAllElements(t.scene.getElementsIncludingDeleted().filter((function(e){return e.id!==A.id}))),t.actionManager.executeAction(pe)}}else if((0,T.bt)(s)){s.points.length>1&&t.history.resumeRecording();var Z=(0,D.dE)(n,t.state);e.drag.hasOccurred||!s||u?e.drag.hasOccurred&&!u&&((0,P.N1)(t.state)&&(0,T.Mn)(s,!1)&&(0,P.R)(s,t.state,t.scene,Z),t.setState({suggestedBindings:[],startBoundElement:null}),d.locked?t.setState((function(e){return{draggingElement:null}})):((0,D.z8)(t.canvas),t.setState((function(e){return{draggingElement:null,activeTool:(0,D.Om)(t.state,{type:"selection"}),selectedElementIds:Wi(Wi({},e.selectedElementIds),{},(0,f.Z)({},s.id,!0)),selectedLinearElement:new I._(s,t.scene)}})))):((0,O.DR)(s,{points:[].concat((0,i.Z)(s.points),[[Z.x-s.x,Z.y-s.y]])}),t.setState({multiElement:s,editingElement:t.state.draggingElement}))}else{if("selection"!==d.type&&s&&(0,C.QD)(s))return t.scene.replaceAllElements(t.scene.getElementsIncludingDeleted().slice(0,-1)),void t.setState({draggingElement:null});s&&(0,O.DR)(s,(0,C.Qp)(s)),c&&t.history.resumeRecording(),c&&(0,C.QD)(c)&&t.scene.replaceAllElements(t.scene.getElementsIncludingDeleted().filter((function(e){return e.id!==c.id})));var z=e.hit.element;if((null===(r=t.state.selectedLinearElement)||void 0===r?void 0:r.elementId)!==(null==z?void 0:z.id)&&(0,T.bt)(z))1===(0,k.eD)(t.scene.getNonDeletedElements(),t.state).length&&t.setState({selectedLinearElement:new I._(z,t.scene)});if((0,Pn.EN)(t.state)){if(0===(0,ce.LW)(t.lastPointerDown.clientX,t.lastPointerDown.clientY,t.lastPointerUp.clientX,t.lastPointerUp.clientY)){var R=(0,D.dE)({clientX:t.lastPointerUp.clientX,clientY:t.lastPointerUp.clientY},t.state);t.getElementsAtPosition(R.x,R.y).forEach((function(t){return e.elementIdsToErase[t.id]={erase:!0,opacity:t.opacity}}))}t.eraseElements(e)}else{var N;if(Object.keys(e.elementIdsToErase).length&&t.restoreReadyToEraseElements(e),z&&!e.drag.hasOccurred&&!e.hit.wasAddedToSelection&&(!t.state.editingLinearElement||!e.boxSelection.hasOccurred))if(n.shiftKey&&!t.state.editingLinearElement)if(t.state.selectedElementIds[z.id])if((0,M.zq)(t.state,z)){var B=z.groupIds.flatMap((function(e){return(0,M.Fb)(t.scene.getNonDeletedElements(),e)})).map((function(e){return(0,f.Z)({},e.id,!1)})).reduce((function(e,t){return Wi(Wi({},e),t)}),{});t.setState((function(e){return{selectedGroupIds:Wi(Wi({},e.selectedElementIds),z.groupIds.map((function(e){return(0,f.Z)({},e,!1)})).reduce((function(e,t){return Wi(Wi({},e),t)}),{})),selectedElementIds:Wi(Wi({},e.selectedElementIds),B)}}))}else null!==(N=t.state.selectedLinearElement)&&void 0!==N&&N.isDragging||t.setState((function(e){var n=Wi(Wi({},e.selectedElementIds),{},(0,f.Z)({},z.id,!1)),r=(0,k.eD)(t.scene.getNonDeletedElements(),Wi(Wi({},e),{},{selectedElementIds:n}));return(0,M.bO)(Wi(Wi({},e),{},{selectedElementIds:n,selectedLinearElement:1===r.length&&(0,T.bt)(r[0])?new I._(r[0],t.scene):e.selectedLinearElement}),t.scene.getNonDeletedElements())}));else t.setState((function(e){return{selectedElementIds:Wi(Wi({},e.selectedElementIds),{},(0,f.Z)({},z.id,!0))}}));else t.setState((function(e){var n;return Wi({},(0,M.bO)(Wi(Wi({},e),{},{selectedElementIds:(0,f.Z)({},z.id,!0),selectedLinearElement:(0,T.bt)(z)&&(null===(n=e.selectedLinearElement)||void 0===n?void 0:n.elementId)!==z.id?new I._(z,t.scene):e.selectedLinearElement}),t.scene.getNonDeletedElements()))}));e.drag.hasOccurred||t.state.isResizing||!(z&&(0,C.wB)(z,t.state,e.origin.x,e.origin.y)||!z&&e.hit.hasHitCommonBoundingBoxOfSelectedElements)?(!d.locked&&"freedraw"!==d.type&&s&&t.setState((function(e){return{selectedElementIds:Wi(Wi({},e.selectedElementIds),{},(0,f.Z)({},s.id,!0))}})),("selection"!==d.type||(0,k.N)(t.scene.getNonDeletedElements(),t.state))&&t.history.resumeRecording(),(e.drag.hasOccurred||p||h)&&((0,P.N1)(t.state)?P.el:P.H)((0,k.eD)(t.scene.getNonDeletedElements(),t.state)),d.locked||"freedraw"===d.type?t.setState({draggingElement:null,suggestedBindings:[]}):((0,D.z8)(t.canvas),t.setState({draggingElement:null,suggestedBindings:[],activeTool:(0,D.Om)(t.state,{type:"selection"})}))):t.state.editingLinearElement?t.setState({editingLinearElement:null}):t.setState({selectedElementIds:{},selectedGroupIds:{},editingGroupId:null})}}}))}},{key:"maybeSuggestBindingForAll",value:function(e){var t=(0,P.ZB)(e);this.setState({suggestedBindings:t})}},{key:"clearSelection",value:function(e){this.setState((function(t){return{selectedElementIds:{},selectedGroupIds:{},editingGroupId:t.editingGroupId&&null!=e&&(0,M.Nd)(e,t.editingGroupId)?t.editingGroupId:null}})),this.setState({selectedElementIds:{},previousSelectedElementIds:this.state.selectedElementIds})}},{key:"getTextWysiwygSnappedToCenterPosition",value:function(e,t,n,r){if(r){var o=r.x+r.width/2,i=r.y+r.height/2,a=(0,oe.TP)(r,n);if(a&&(o=a.x,i=a.y),Math.hypot(e-o,t-i)<re.wZ){var l=(0,D._i)({sceneX:o,sceneY:i},n);return{viewportX:l.x,viewportY:l.y,elementCenterX:o,elementCenterY:i}}}}},{key:"getCanvasOffsets",value:function(){var e;if(null!==(e=this.excalidrawContainerRef)&&void 0!==e&&e.current){var t=this.excalidrawContainerRef.current.getBoundingClientRect();return{offsetLeft:t.left,offsetTop:t.top}}return{offsetLeft:0,offsetTop:0}}},{key:"updateLanguage",value:(t=(0,a.Z)(m().mark((function e(){var t,n=this;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=_.Mj.find((function(e){return e.code===n.props.langCode}))||_.Fp,e.next=3,(0,_.m0)(t);case 3:this.setAppState({});case 4:case"end":return e.stop()}}),e,this)}))),function(){return t.apply(this,arguments)})}],[{key:"resetTapTwice",value:function(){ta=!1}}]),d}(v().Component);va.defaultProps={UIOptions:re.cW};var ba=function(){var e=this;this.canvas=null,this.rc=null,this.unmounted=!1,this.device=Ui,this.excalidrawContainerRef=v().createRef(),this.files={},this.imageCache=new Map,this.lastPointerDown=null,this.lastPointerUp=null,this.contextMenuOpen=!1,this.lastScenePointer=null,this.onChangeEmitter=new Zi,this.onPointerDownEmitter=new Zi,this.onPointerUpEmitter=new Zi,this.focusContainer=function(){var t;e.props.autoFocus&&(null===(t=e.excalidrawContainerRef.current)||void 0===t||t.focus())},this.getSceneElementsIncludingDeleted=function(){return e.scene.getElementsIncludingDeleted()},this.getSceneElements=function(){return e.scene.getNonDeletedElements()},this.syncActionResult=(0,D.tH)((function(t){if(e.contextMenuOpen=!1,!e.unmounted&&!1!==t){var n=null;if(t.elements&&(t.elements.forEach((function(t){var r;(null===(r=e.state.editingElement)||void 0===r?void 0:r.id)===t.id&&e.state.editingElement!==t&&(0,C.qP)(t)&&(n=t)})),e.scene.replaceAllElements(t.elements),t.commitToHistory&&e.history.resumeRecording()),t.files&&(e.files=t.replaceFiles?t.files:Wi(Wi({},e.files),t.files),e.addNewImagesToImageCache()),t.appState||n){var r,o,i,a,l,s;t.commitToHistory&&e.history.resumeRecording();var c=(null==t||null===(r=t.appState)||void 0===r?void 0:r.viewModeEnabled)||!1,u=(null==t||null===(o=t.appState)||void 0===o?void 0:o.zenModeEnabled)||!1,d=(null==t||null===(i=t.appState)||void 0===i?void 0:i.gridSize)||null,p=(null==t||null===(a=t.appState)||void 0===a?void 0:a.theme)||e.props.theme||re.C6.LIGHT,f=null!==(l=null==t||null===(s=t.appState)||void 0===s?void 0:s.name)&&void 0!==l?l:e.state.name;void 0!==e.props.viewModeEnabled&&(c=e.props.viewModeEnabled),void 0!==e.props.zenModeEnabled&&(u=e.props.zenModeEnabled),void 0!==e.props.gridModeEnabled&&(d=e.props.gridModeEnabled?re.k:null),void 0!==e.props.name&&(f=e.props.name),e.setState((function(e){var r;return Object.assign(t.appState||{},{editingElement:n||(null===(r=t.appState)||void 0===r?void 0:r.editingElement)||null,viewModeEnabled:c,zenModeEnabled:u,gridSize:d,theme:p,name:f})}),(function(){t.syncHistory&&e.history.setCurrentState(e.state,e.scene.getElementsIncludingDeleted())}))}}})),this.onBlur=(0,D.tH)((function(){ia=!1,e.setState({isBindingEnabled:!0})})),this.onUnload=function(){e.onBlur()},this.disableEvent=function(e){e.preventDefault()},this.resetHistory=function(){e.history.clear()},this.resetScene=(0,D.tH)((function(t){e.scene.replaceAllElements([]),e.setState((function(n){return Wi(Wi({},(0,Pn.im)()),{},{isLoading:(null==t||!t.resetLoadingState)&&n.isLoading,theme:e.state.theme})})),e.resetHistory()})),this.initializeScene=(0,a.Z)(m().mark((function t(){var n,r,o,i,l,s,c;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return"launchQueue"in window&&"LaunchParams"in window&&window.launchQueue.setConsumer(function(){var t=(0,a.Z)(m().mark((function t(n){var r,o;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(n.files.length){t.next=2;break}return t.abrupt("return");case 2:return r=n.files[0],t.next=5,r.getFile();case 5:o=t.sent,e.loadFileToCanvas(new File([o],o.name||"",{type:o.type}),r);case 7:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}()),e.props.theme&&e.setState({theme:e.props.theme}),e.state.isLoading||e.setState({isLoading:!0}),l=null,t.prev=4,t.next=7,e.props.initialData;case 7:if(t.t0=t.sent,t.t0){t.next=10;break}t.t0=null;case 10:l=t.t0,null!==(s=l)&&void 0!==s&&s.libraryItems&&e.library.updateLibrary({libraryItems:l.libraryItems,merge:!0}).catch((function(e){console.error(e)})),t.next=18;break;case 14:t.prev=14,t.t1=t.catch(4),console.error(t.t1),l={appState:{errorMessage:t.t1.message||"Encountered an error during importing or restoring scene data"}};case 18:(c=(0,Dn.nu)(l,null,null)).appState=Wi(Wi({},c.appState),{},{theme:e.props.theme||c.appState.theme,openSidebar:(null===(n=c.appState)||void 0===n?void 0:n.openSidebar)||e.state.openSidebar,activeTool:"image"===c.appState.activeTool.type?Wi(Wi({},c.appState.activeTool),{},{type:"selection"}):c.appState.activeTool,isLoading:!1,toast:e.state.toast}),null!==(r=l)&&void 0!==r&&r.scrollToContent&&(c.appState=Wi(Wi({},c.appState),(0,k.W)(c.elements,Wi(Wi({},c.appState),{},{width:e.state.width,height:e.state.height,offsetTop:e.state.offsetTop,offsetLeft:e.state.offsetLeft}),null))),e.fonts.loadFontsForElements(c.elements),null!=(null===(o=l)||void 0===o?void 0:o.scrollX)&&(c.appState.scrollX=l.scrollX),null!=(null===(i=l)||void 0===i?void 0:i.scrollY)&&(c.appState.scrollY=l.scrollY),e.resetHistory(),e.syncActionResult(Wi(Wi({},c),{},{commitToHistory:!0}));case 26:case"end":return t.stop()}}),t,null,[[4,14]])}))),this.refreshDeviceState=function(t){var n=t.getBoundingClientRect(),r=n.width,o=n.height,i=null!=e.props.UIOptions.dockedSidebarBreakpoint?e.props.UIOptions.dockedSidebarBreakpoint:re.sk;e.device=(0,D.v4)(e.device,{isSmScreen:r<re.eF,isMobile:r<re.kV||o<re.Yx&&r<re.sS,canDeviceFitSidebar:r>i})},this.onResize=(0,D.tH)((function(){e.scene.getElementsIncludingDeleted().forEach((function(e){return(0,Hn.bI)(e)})),e.setState({})})),this.onFontsLoadingDone=function(t){var n=t.fontfaces;e.fonts.onFontsLoaded(n)},this.renderScene=function(){var t={},n={},r={},o={},i={};e.state.collaborators.forEach((function(a,l){if(a.selectedElementIds)for(var s=0,c=Object.keys(a.selectedElementIds);s<c.length;s++){var u=c[s];u in r||(r[u]=[]),r[u].push(l)}a.pointer&&(a.username&&(o[l]=a.username),a.userState&&(i[l]=a.userState),n[l]=(0,D._i)({sceneX:a.pointer.x,sceneY:a.pointer.y},e.state),t[l]=a.button)}));var a=e.scene.getNonDeletedElements().filter((function(t){return(!(0,T.pC)(t)||e.state.pendingImageElementId!==t.id)&&(!e.state.editingElement||"text"!==e.state.editingElement.type||t.id!==e.state.editingElement.id)})),l=getComputedStyle(document.querySelector(".excalidraw")).getPropertyValue("--color-selection");(0,Wn.Eu)({elements:a,appState:e.state,scale:window.devicePixelRatio,rc:e.rc,canvas:e.canvas,renderConfig:{selectionColor:l,scrollX:e.state.scrollX,scrollY:e.state.scrollY,viewBackgroundColor:e.state.viewBackgroundColor,zoom:e.state.zoom,remotePointerViewportCoords:n,remotePointerButton:t,remoteSelectedElementIds:r,remotePointerUsernames:o,remotePointerUserStates:i,shouldCacheIgnoreZoom:e.state.shouldCacheIgnoreZoom,theme:e.state.theme,imageCache:e.imageCache,isExporting:!1,renderScrollbars:!e.device.isMobile},callback:function(t){var n=t.atLeastOneVisibleElement,r=t.scrollBars;r&&(sa=r);var o=!(0,C.iB)(e.state.editingElement)&&(!n&&a.length>0);e.state.scrolledOutside!==o&&e.setState({scrolledOutside:o}),e.scheduleImageRefresh()}},da&&!0===window.EXCALIDRAW_THROTTLE_RENDER),da||(da=!0)},this.onScroll=(0,D.Ds)((function(){var t=e.getCanvasOffsets(),n=t.offsetTop,r=t.offsetLeft;e.setState((function(e){return e.offsetLeft===r&&e.offsetTop===n?null:{offsetTop:n,offsetLeft:r}}))}),re.HM),this.onCut=(0,D.tH)((function(t){var n;(null===(n=e.excalidrawContainerRef.current)||void 0===n?void 0:n.contains(document.activeElement))&&!(0,D.s)(t.target)&&(e.cutAll(),t.preventDefault(),t.stopPropagation())})),this.onCopy=(0,D.tH)((function(t){var n;(null===(n=e.excalidrawContainerRef.current)||void 0===n?void 0:n.contains(document.activeElement))&&!(0,D.s)(t.target)&&(e.copyAll(),t.preventDefault(),t.stopPropagation())})),this.cutAll=function(){e.actionManager.executeAction(Qt,"keyboard")},this.copyAll=function(){e.actionManager.executeAction($t,"keyboard")},this.onTapStart=function(t){if(E.Dt||t.preventDefault(),!ta)return ta=!0,clearTimeout(na),void(na=window.setTimeout(va.resetTapTwice,re.Gj));if(ta&&1===t.touches.length){var n=(0,o.Z)(t.touches,1)[0];e.handleCanvasDoubleClick({clientX:n.clientX,clientY:n.clientY}),ta=!1,clearTimeout(na)}E.Dt&&t.preventDefault(),2===t.touches.length&&e.setState({selectedElementIds:{}})},this.onTapEnd=function(t){e.resetContextMenuTimer(),t.touches.length>0?e.setState({previousSelectedElementIds:{},selectedElementIds:e.state.previousSelectedElementIds}):ga.pointers.clear()},this.pasteFromClipboard=(0,D.tH)(function(){var t=(0,a.Z)(m().mark((function t(n){var r,o,i,a,l,s,c,u,d,p,h,g;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(i=!(!pa||!n),a=document.activeElement,null===(r=e.excalidrawContainerRef.current)||void 0===r?void 0:r.contains(a)){t.next=5;break}return t.abrupt("return");case 5:if(l=document.elementFromPoint(ra,oa),!n||l instanceof HTMLCanvasElement&&!(0,D.s)(a)){t.next=8;break}return t.abrupt("return");case 8:return s=null==n||null===(o=n.clipboardData)||void 0===o?void 0:o.files[0],t.next=11,(0,De.mQ)(n,i);case 11:if(c=t.sent,s||!c.text||i||(u=c.text.trim()).startsWith("<svg")&&u.endsWith("</svg>")&&(s=(0,Ae.Pn)(u)),!(0,Ae.Wr)(s)||c.spreadsheet){t.next=20;break}return d=(0,D.dE)({clientX:ra,clientY:oa},e.state),p=d.x,h=d.y,g=e.createImageElement({sceneX:p,sceneY:h}),e.insertImageElement(g,s),e.initializeImageDimensions(g),e.setState({selectedElementIds:(0,f.Z)({},g.id,!0)}),t.abrupt("return");case 20:if(!e.props.onPaste){t.next=32;break}return t.prev=21,t.next=24,e.props.onPaste(c,n);case 24:if(t.t0=t.sent,!1!==t.t0){t.next=27;break}return t.abrupt("return");case 27:t.next=32;break;case 29:t.prev=29,t.t1=t.catch(21),console.error(t.t1);case 32:c.errorMessage?e.setState({errorMessage:c.errorMessage}):c.spreadsheet&&!i?e.setState({pasteDialog:{data:c.spreadsheet,shown:!0}}):c.elements?e.addElementsFromPasteOrLibrary({elements:c.elements,files:c.files||null,position:"cursor"}):c.text&&e.addTextFromPaste(c.text,i),e.setActiveTool({type:"selection"}),null==n||n.preventDefault();case 35:case"end":return t.stop()}}),t,null,[[21,29]])})));return function(e){return t.apply(this,arguments)}}()),this.addElementsFromPasteOrLibrary=function(t){var n=(0,Dn.ET)(t.elements,null),a=(0,C.KP)(n),l=(0,o.Z)(a,4),s=l[0],c=l[1],u=l[2],d=l[3],p=(0,D.TE)(s,u)/2,f=(0,D.TE)(c,d)/2,h="object"===(0,r.Z)(t.position)?t.position.clientX:"cursor"===t.position?ra:e.state.width/2+e.state.offsetLeft,m="object"===(0,r.Z)(t.position)?t.position.clientY:"cursor"===t.position?oa:e.state.height/2+e.state.offsetTop,g=(0,D.dE)({clientX:h,clientY:m},e.state),v=g.x-p,b=g.y-f,y=new Map,x=(0,ce.wC)(v,b,e.state.gridSize),w=(0,o.Z)(x,2),k=w[0],E=w[1],S=new Map,_=n.map((function(t){var n=(0,C.Sy)(e.state.editingGroupId,y,t,{x:t.x+k-s,y:t.y+E-c});return S.set(t.id,n.id),n}));(0,oe.P7)(_,n,S);var j=[].concat((0,i.Z)(e.scene.getElementsIncludingDeleted()),(0,i.Z)(_));(0,P.ek)(j,n,S),t.files&&(e.files=Wi(Wi({},e.files),t.files)),e.scene.replaceAllElements(j),e.history.resumeRecording(),e.setState((0,M.bO)(Wi(Wi({},e.state),{},{openSidebar:e.state.openSidebar&&e.device.canDeviceFitSidebar&&e.state.isSidebarDocked?e.state.openSidebar:null,selectedElementIds:_.reduce((function(e,t){return(0,T.Xh)(t)||(e[t.id]=!0),e}),{}),selectedGroupIds:{}}),e.scene.getNonDeletedElements()),(function(){t.files&&e.addNewImagesToImageCache()})),e.setActiveTool({type:"selection"})},this.setAppState=function(t){e.setState(t)},this.removePointer=function(t){ca&&e.resetContextMenuTimer(),ga.pointers.delete(t.pointerId)},this.toggleLock=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"ui";e.state.activeTool.locked||(0,On.L)("toolbar","toggleLock","".concat(t," (").concat(e.device.isMobile?"mobile":"desktop",")")),e.setState((function(t){return{activeTool:Wi(Wi(Wi({},t.activeTool),(0,D.Om)(e.state,t.activeTool.locked?{type:"selection"}:t.activeTool)),{},{locked:!t.activeTool.locked})}}))},this.togglePenMode=function(){e.setState((function(e){return{penMode:!e.penMode}}))},this.scrollToContent=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:e.scene.getNonDeletedElements();e.setState(Wi({},(0,k.W)(Array.isArray(t)?t:[t],e.state,e.canvas)))},this.setToast=function(t){e.setState({toast:t})},this.restoreFileFromShare=(0,a.Z)(m().mark((function t(){var n,r,o,i;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,caches.open("web-share-target");case 3:return n=t.sent,t.next=6,n.match("shared-file");case 6:if(!(r=t.sent)){t.next=16;break}return t.next=10,r.blob();case 10:return o=t.sent,i=new File([o],o.name||"",{type:o.type}),e.loadFileToCanvas(i,null),t.next=15,n.delete("shared-file");case 15:window.history.replaceState(null,re.iC,window.location.pathname);case 16:t.next=21;break;case 18:t.prev=18,t.t0=t.catch(0),e.setState({errorMessage:t.t0.message});case 21:case"end":return t.stop()}}),t,null,[[0,18]])}))),this.addFiles=(0,D.tH)((function(t){var n=t.reduce((function(e,t){return e.set(t.id,t),e}),new Map);e.files=Wi(Wi({},e.files),Object.fromEntries(n)),e.scene.getNonDeletedElements().forEach((function(t){(0,T.wi)(t)&&n.has(t.fileId)&&(e.imageCache.delete(t.fileId),(0,Hn.bI)(t))})),e.scene.informMutation(),e.addNewImagesToImageCache()})),this.updateScene=(0,D.tH)((function(t){t.commitToHistory&&e.history.resumeRecording(),t.appState&&e.setState(t.appState),t.elements&&e.scene.replaceAllElements(t.elements),t.collaborators&&e.setState({collaborators:t.collaborators})})),this.onSceneUpdated=function(){e.setState({})},this.toggleMenu=function(t,n){return"customSidebar"!==t||e.props.renderSidebar?("library"===t||"customSidebar"===t)&&(r=void 0===n?e.state.openSidebar===t?null:t:n?t:null,e.setState({openSidebar:r}),!!r):(console.warn('attempting to toggle "customSidebar", but no "props.renderSidebar" is defined'),!1);var r},this.updateCurrentCursorPosition=(0,D.tH)((function(e){ra=e.clientX,oa=e.clientY})),this.onKeyDown=(0,D.tH)((function(t){if("Proxy"in window&&(!t.shiftKey&&/^[A-Z]$/.test(t.key)||t.shiftKey&&/^[a-z]$/.test(t.key))&&(t=new Proxy(t,{get:function(e,n){var r=e[n];return"function"==typeof r?r.bind(e):"key"===n?t.shiftKey?e.key.toUpperCase():e.key.toLowerCase():r}})),t[E.tW.CTRL_OR_CMD]&&t.key.toLowerCase()===E.tW.V&&(pa=t.shiftKey,clearTimeout(fa),fa=window.setTimeout((function(){pa=!1}),100)),!t[E.tW.CTRL_OR_CMD]||!(0,D.s)(t.target)||t.code!==E.aU.MINUS&&t.code!==E.aU.EQUAL){if(!((0,D.s)(t.target)&&t.key!==E.tW.ESCAPE||(0,E.Wl)(t.key)&&(0,D._Z)(t.target)))if(t.key!==E.tW.QUESTION_MARK){if(t.key.toLowerCase()===E.tW.E&&t.shiftKey&&t[E.tW.CTRL_OR_CMD])e.setState({openDialog:"imageExport"});else if(!e.actionManager.handleKeyDown(t)&&!e.state.viewModeEnabled){if(t[E.tW.CTRL_OR_CMD]&&e.state.isBindingEnabled&&e.setState({isBindingEnabled:!1}),(0,E.Wl)(t.key)){var n=e.state.gridSize&&(t.shiftKey?re.$e:e.state.gridSize)||(t.shiftKey?re.Iw:re.$e),r=(0,k.eD)(e.scene.getNonDeletedElements(),e.state,!0),o=0,i=0;t.key===E.tW.ARROW_LEFT?o=-n:t.key===E.tW.ARROW_RIGHT?o=n:t.key===E.tW.ARROW_UP?i=-n:t.key===E.tW.ARROW_DOWN&&(i=n),r.forEach((function(e){(0,O.DR)(e,{x:e.x+o,y:e.y+i}),(0,P.Ww)(e,{simultaneouslyUpdated:r})})),e.maybeSuggestBindingForAll(r),t.preventDefault()}else if(t.key===E.tW.ENTER){var a=(0,k.eD)(e.scene.getNonDeletedElements(),e.state);if(1===a.length){var l=a[0];if(t[E.tW.CTRL_OR_CMD])(0,T.bt)(l)&&(e.state.editingLinearElement&&e.state.editingLinearElement.elementId===a[0].id||(e.history.resumeRecording(),e.setState({editingLinearElement:new I._(l,e.scene)})));else if((0,C.iB)(l)||(0,oe.Zr)(l)){var s;(0,C.iB)(l)||(s=l);var c=(0,oe.TP)(l,e.state),u=c.x,d=c.y;return e.startTextEditing({sceneX:u,sceneY:d,container:s}),void t.preventDefault()}}}else if(!t.ctrlKey&&!t.altKey&&!t.metaKey&&null===e.state.draggingElement){var p=function(e){var t=Un.find((function(t,n){return null!=t.numericKey&&e===t.numericKey.toString()||t.key&&("string"==typeof t.key?t.key===e:t.key.includes(e))}));return(null==t?void 0:t.value)||null}(t.key);p?(e.state.activeTool.type!==p&&(0,On.L)("toolbar",p,"keyboard (".concat(e.device.isMobile?"mobile":"desktop",")")),e.setActiveTool({type:p}),t.stopPropagation()):t.key===E.tW.Q&&(e.toggleLock("keyboard"),t.stopPropagation())}if(t.key===E.tW.SPACE&&0===ga.pointers.size&&(ia=!0,(0,D.KJ)(e.canvas,re.oc.GRABBING),t.preventDefault()),!(t.key!==E.tW.G&&t.key!==E.tW.S||t.altKey||t[E.tW.CTRL_OR_CMD])){var f=(0,k.eD)(e.scene.getNonDeletedElements(),e.state);if("selection"===e.state.activeTool.type&&!f.length)return;t.key===E.tW.G&&((0,k.$b)(e.state.activeTool.type)||f.some((function(e){return(0,k.$b)(e.type)})))&&(e.setState({openPopup:"backgroundColorPicker"}),t.stopPropagation()),t.key===E.tW.S&&(e.setState({openPopup:"strokeColorPicker"}),t.stopPropagation())}}}else e.setState({openDialog:"help"})}else t.preventDefault()})),this.onWheel=(0,D.tH)((function(e){e.target instanceof HTMLCanvasElement||!e.ctrlKey||e.preventDefault()})),this.onKeyUp=(0,D.tH)((function(t){if(t.key===E.tW.SPACE&&(e.state.viewModeEnabled?(0,D.KJ)(e.canvas,re.oc.GRAB):"selection"===e.state.activeTool.type?(0,D.z8)(e.canvas):((0,D.Uk)(e.canvas,e.state),e.setState({selectedElementIds:{},selectedGroupIds:{},editingGroupId:null})),ia=!1),t[E.tW.CTRL_OR_CMD]||e.state.isBindingEnabled||e.setState({isBindingEnabled:!0}),(0,E.Wl)(t.key)){var n=(0,k.eD)(e.scene.getNonDeletedElements(),e.state);(0,P.N1)(e.state)?(0,P.el)(n):(0,P.H)(n),e.setState({suggestedBindings:[]})}})),this.setActiveTool=function(t){var n=(0,D.Om)(e.state,t);ia||(0,D.Uk)(e.canvas,e.state),(0,D.wO)(document.activeElement)&&e.focusContainer(),(0,T.dt)(n.type)||e.setState({suggestedBindings:[]}),"image"===n.type&&e.onImageAction(),"selection"!==n.type?e.setState({activeTool:n,selectedElementIds:{},selectedGroupIds:{},editingGroupId:null}):e.setState({activeTool:n})},this.setCursor=function(t){(0,D.KJ)(e.canvas,t)},this.resetCursor=function(){(0,D.z8)(e.canvas)},this.isTouchScreenMultiTouchGesture=function(){return ga.pointers.size>=2},this.onGestureStart=(0,D.tH)((function(t){t.preventDefault(),e.isTouchScreenMultiTouchGesture()&&e.setState({selectedElementIds:{}}),ga.initialScale=e.state.zoom.value})),this.onGestureChange=(0,D.tH)((function(t){if(t.preventDefault(),!e.isTouchScreenMultiTouchGesture()){var n=ga.initialScale;n&&e.setState((function(e){return Wi({},(0,Fn.E)({viewportX:ra,viewportY:oa,nextZoom:(0,k.j)(n*t.scale)},e))}))}})),this.onGestureEnd=(0,D.tH)((function(t){t.preventDefault(),e.isTouchScreenMultiTouchGesture()&&e.setState({previousSelectedElementIds:{},selectedElementIds:e.state.previousSelectedElementIds}),ga.initialScale=null})),this.startTextEditing=function(t){var n,r=t.sceneX,o=t.sceneY,a=t.insertAtParentCenter,l=void 0===a||a,s=t.container,c=!1,u=l&&e.getTextWysiwygSnappedToCenterPosition(r,o,e.state,s);s&&u&&(c=!0);var d=null,p=(0,k.eD)(e.scene.getNonDeletedElements(),e.state);if(!(d=1===p.length?(0,C.iB)(p[0])?p[0]:s?(0,oe.WJ)(p[0]):e.getTextElementAtPosition(r,o):e.getTextElementAtPosition(r,o))&&c&&s&&!(0,T.Yv)(s)){var f={fontSize:e.state.currentItemFontSize,fontFamily:e.state.currentItemFontFamily},h=(0,oe.AT)((0,D.mO)(f)),m=(0,oe.w_)((0,D.mO)(f)),g=(0,oe.HE)(s),v=Math.max(g.height,m),b=Math.max(g.width,h);(0,O.DR)(s,{height:v,width:b}),r=s.x+b/2,o=s.y+v/2,u&&(u=e.getTextWysiwygSnappedToCenterPosition(r,o,e.state,s))}var y=d||(0,C.VL)({x:u?u.elementCenterX:r,y:u?u.elementCenterY:o,strokeColor:e.state.currentItemStrokeColor,backgroundColor:e.state.currentItemBackgroundColor,fillStyle:e.state.currentItemFillStyle,strokeWidth:e.state.currentItemStrokeWidth,strokeStyle:e.state.currentItemStrokeStyle,roughness:e.state.currentItemRoughness,opacity:e.state.currentItemOpacity,strokeSharpness:e.state.currentItemStrokeSharpness,text:"",fontSize:e.state.currentItemFontSize,fontFamily:e.state.currentItemFontFamily,textAlign:u?"center":e.state.currentItemTextAlign,verticalAlign:u?re.oX.MIDDLE:re.hs,containerId:c?null==s?void 0:s.id:void 0,groupIds:null!==(n=null==s?void 0:s.groupIds)&&void 0!==n?n:[],locked:!1});if(e.setState({editingElement:y}),!d){if(s&&c){var x=e.scene.getElementIndex(s.id);e.scene.insertElementAtIndex(y,x+1)}else e.scene.replaceAllElements([].concat((0,i.Z)(e.scene.getElementsIncludingDeleted()),[y]));u||(0,O.DR)(y,{y:y.y-y.baseline/2})}e.setState({editingElement:y}),e.handleTextWysiwyg(y,{isExistingElement:!!d})},this.handleCanvasDoubleClick=function(t){if(!e.state.multiElement&&"selection"===e.state.activeTool.type){var n=(0,k.eD)(e.scene.getNonDeletedElements(),e.state);if(1===n.length&&(0,T.bt)(n[0])){if(t[E.tW.CTRL_OR_CMD]&&(!e.state.editingLinearElement||e.state.editingLinearElement.elementId!==n[0].id))return e.history.resumeRecording(),void e.setState({editingLinearElement:new I._(n[0],e.scene)});if(e.state.editingLinearElement&&e.state.editingLinearElement.elementId===n[0].id)return}(0,D.z8)(e.canvas);var r=(0,D.dE)(t,e.state),o=r.x,i=r.y;if((0,M.iJ)(e.state).length>0){var a=e.getElementAtPosition(o,i),l=a&&(0,M.YS)(a,e.state.selectedGroupIds);if(l)return void e.setState((function(t){return(0,M.bO)(Wi(Wi({},t),{},{editingGroupId:l,selectedElementIds:(0,f.Z)({},a.id,!0),selectedGroupIds:{}}),e.scene.getNonDeletedElements())}))}if((0,D.z8)(e.canvas),!t[E.tW.CTRL_OR_CMD]&&!e.state.viewModeEnabled){var s=(0,oe.OW)(e.scene.getNonDeletedElements(),e.state,o,i);if(s&&((0,T.Yv)(s)||(0,T.Xo)(s))){var c=(0,oe.TP)(s,e.state);o=c.x,i=c.y}e.startTextEditing({sceneX:o,sceneY:i,insertAtParentCenter:!t.altKey,container:s})}}},this.getElementLinkAtPosition=function(t,n){var r=e.scene.getNonDeletedElements().slice().reverse(),o=1/0;return r.find((function(r,i){return n&&r.id===n.id&&(o=i),r.link&&i<=o&&(0,vn.wq)(r,e.state,[t.x,t.y],e.device.isMobile)}))},this.redirectToLink=function(t,n){var r=(0,ce.LW)(e.lastPointerDown.clientX,e.lastPointerDown.clientY,e.lastPointerUp.clientX,e.lastPointerUp.clientY);if(!(!e.hitLinkElement||n&&r>re.f||!n&&0!==r)){var o=(0,D.dE)(e.lastPointerDown,e.state),i=(0,vn.wq)(e.hitLinkElement,e.state,[o.x,o.y],e.device.isMobile),a=(0,D.dE)(e.lastPointerUp,e.state),l=(0,vn.wq)(e.hitLinkElement,e.state,[a.x,a.y],e.device.isMobile);if(i&&l){var s,c,u=e.hitLinkElement.link;if(u)if(e.props.onLinkOpen&&(c=(0,D.ag)(re.Ks.EXCALIDRAW_LINK,t.nativeEvent),e.props.onLinkOpen(e.hitLinkElement,c)),null===(s=c)||void 0===s||!s.defaultPrevented){var d=(0,vn.q$)(u)?"_self":"_blank",p=window.open(void 0,d);p&&(p.opener=null,p.location=(0,vn.$u)(u))}}}},this.handleCanvasPointerMove=function(t){e.savePointer(t.clientX,t.clientY,e.state.cursorButton),ga.pointers.has(t.pointerId)&&ga.pointers.set(t.pointerId,{x:t.clientX,y:t.clientY});var n=ga.initialScale;if(2===ga.pointers.size&&ga.lastCenter&&n&&ga.initialDistance){var r=Ln(ga.pointers),a=r.x-ga.lastCenter.x,l=r.y-ga.lastCenter.y;ga.lastCenter=r;var s=An(Array.from(ga.pointers.values())),c="freedraw"===e.state.activeTool.type&&e.state.penMode?1:s/ga.initialDistance,u=c?(0,k.j)(n*c):e.state.zoom.value;e.setState((function(e){var t=(0,Fn.E)({viewportX:r.x,viewportY:r.y,nextZoom:u},e);return{zoom:t.zoom,scrollX:t.scrollX+a/u,scrollY:t.scrollY+l/u,shouldCacheIgnoreZoom:!0}})),e.resetShouldCacheIgnoreZoomDebounced()}else ga.lastCenter=ga.initialDistance=ga.initialScale=null;if(!(ia||aa||la)){var d=(0,k._4)(sa,t.clientX-e.state.offsetLeft,t.clientY-e.state.offsetTop).isOverEither;e.state.draggingElement||e.state.multiElement||(d?(0,D.z8)(e.canvas):(0,D.Uk)(e.canvas,e.state));var p=(0,D.dE)(t,e.state),f=p.x,h=p.y;if(e.state.editingLinearElement&&!e.state.editingLinearElement.isDragging){var m=I._.handlePointerMove(t,f,h,e.state);m&&m!==e.state.editingLinearElement&&(0,b.flushSync)((function(){e.setState({editingLinearElement:m})})),null!=(null==m?void 0:m.lastUncommittedPoint)?e.maybeSuggestBindingAtCursor(p):(0,b.flushSync)((function(){e.setState({suggestedBindings:[]})}))}if((0,T.Lx)(e.state.activeTool.type)){var g=e.state.draggingElement;(0,T.Mn)(g,!1)?e.maybeSuggestBindingsForLinearElementAtCoords(g,[p],e.state.startBoundElement):e.maybeSuggestBindingAtCursor(p)}if(e.state.multiElement){var v=e.state.multiElement,y=v.x,x=v.y,w=v.points,S=v.lastCommittedPoint,_=w[w.length-1];if((0,D.Uk)(e.canvas,e.state),_===S)(0,ce.LW)(f-y,h-x,_[0],_[1])>=re.qx?(0,O.DR)(v,{points:[].concat((0,i.Z)(w),[[f-y,h-x]])}):(0,D.KJ)(e.canvas,re.oc.POINTER);else if(w.length>2&&S&&(0,ce.LW)(f-y,h-x,S[0],S[1])<re.qx)(0,D.KJ)(e.canvas,re.oc.POINTER),(0,O.DR)(v,{points:w.slice(0,-1)});else{var j,M=(0,ce.wC)(f,h,e.state.gridSize),P=(0,o.Z)(M,2),L=P[0],A=P[1],Z=null!==(j=null==v?void 0:v.lastCommittedPoint)&&void 0!==j?j:[0,0],z=(0,o.Z)(Z,2),R=z[0],N=z[1],B=L-y-R,W=A-x-N;if((0,E.Ge)(t)){var H=(0,C.o4)(R+y,N+x,L,A);B=H.width,W=H.height}(0,ce.g6)(w,e.state.zoom.value)&&(0,D.KJ)(e.canvas,re.oc.POINTER),(0,O.DR)(v,{points:[].concat((0,i.Z)(w.slice(0,-1)),[[R+B,N+W]])})}}else{if(!(Boolean(t.buttons)||"selection"!==e.state.activeTool.type&&"text"!==e.state.activeTool.type&&"eraser"!==e.state.activeTool.type)){var F=e.scene.getNonDeletedElements(),U=(0,k.eD)(F,e.state);if(1!==U.length||d||e.state.editingLinearElement){if(U.length>1&&!d){var K=(0,C.n2)((0,C.KP)(U),f,h,e.state.zoom,t.pointerType);if(K)return void(0,D.KJ)(e.canvas,(0,C.Un)({transformHandleType:K}))}}else{var Y=(0,C.jt)(F,e.state,f,h,e.state.zoom,t.pointerType);if(Y&&Y.transformHandleType)return void(0,D.KJ)(e.canvas,(0,C.Un)(Y))}var G=e.getElementAtPosition(p.x,p.y);e.hitLinkElement=e.getElementLinkAtPosition(p,G),(0,Pn.EN)(e.state)||(e.hitLinkElement&&!e.state.selectedElementIds[e.hitLinkElement.id]?((0,D.KJ)(e.canvas,re.oc.POINTER),(0,vn.Pp)(e.hitLinkElement,e.state)):((0,vn.lV)(),G&&G.link&&e.state.selectedElementIds[G.id]&&!e.contextMenuOpen&&!e.state.showHyperlinkPopup?e.setState({showHyperlinkPopup:"info"}):"text"===e.state.activeTool.type?(0,D.KJ)(e.canvas,(0,C.iB)(G)?re.oc.TEXT:re.oc.CROSSHAIR):e.state.viewModeEnabled?(0,D.KJ)(e.canvas,re.oc.GRAB):d?(0,D.KJ)(e.canvas,re.oc.AUTO):e.state.selectedLinearElement?e.handleHoverSelectedLinearElement(e.state.selectedLinearElement,f,h):t[E.tW.CTRL_OR_CMD]?(0,D.KJ)(e.canvas,re.oc.AUTO):!G&&!e.isHittingCommonBoundingBoxOfSelectedElements(p,U)||null!=G&&G.locked||(0,D.KJ)(e.canvas,re.oc.MOVE)))}}}},this.handleEraser=function(t,n,r){for(var o=function(e){e.forEach((function(e){e.locked||(i.push(e.id),t.altKey?n.elementIdsToErase[e.id]&&n.elementIdsToErase[e.id].erase&&(n.elementIdsToErase[e.id].erase=!1):n.elementIdsToErase[e.id]||(n.elementIdsToErase[e.id]={erase:!0,opacity:e.opacity}))}))},i=[],a=(0,ce.LW)(n.lastCoords.x,n.lastCoords.y,r.x,r.y),l=10/e.state.zoom.value,s=Wi({},n.lastCoords),c=0;c<=a;){if(o(e.getElementsAtPosition(s.x,s.y)),c===a)break;var u=(c=Math.min(c+l,a))/a,d=(1-u)*s.x+u*r.x,p=(1-u)*s.y+u*r.y;s.x=d,s.y=p}var f=e.scene.getElementsIncludingDeleted().map((function(e){var r=(0,T.Xh)(e)&&i.includes(e.containerId)?e.containerId:e.id;if(i.includes(r)){if(!t.altKey)return(0,O.BE)(e,{opacity:re.xY});if(n.elementIdsToErase[r]&&!1===n.elementIdsToErase[r].erase)return(0,O.BE)(e,{opacity:n.elementIdsToErase[r].opacity})}return e}));e.scene.replaceAllElements(f),n.lastCoords.x=r.x,n.lastCoords.y=r.y},this.handleTouchMove=function(e){ua=!0},this.handleCanvasPointerDown=function(t){var n,r,o=document.getSelection();if(null!=o&&o.anchorNode&&o.removeAllRanges(),e.maybeOpenContextMenuAfterPointerDownOnTouchDevices(t),e.maybeCleanupAfterMissingPointerUp(t),e.state.penDetected||"pen"!==t.pointerType||e.setState((function(e){return{penMode:!0,penDetected:!0}})),!e.device.isTouchScreen&&["pen","touch"].includes(t.pointerType)&&(e.device=(0,D.v4)(e.device,{isTouchScreen:!0})),!aa&&(e.lastPointerDown=t,e.setState({lastPointerDownWith:t.pointerType,cursorButton:"down"}),e.savePointer(t.clientX,t.clientY,"down"),e.updateGestureOnPointerDown(t),!e.handleCanvasPanUsingWheelOrSpaceDrag(t)&&!(t.button!==re.Oh.MAIN&&t.button!==re.Oh.TOUCH||ga.pointers.size>1))){var i=e.initialPointerDownState(t);if(!e.handleDraggingScrollBar(t,i))if(e.contextMenuOpen=!1,e.clearSelectionIfNotUsingSelection(),e.updateBindingEnabledOnPointerMove(t),!e.handleSelectionOnPointerDown(t,i))if(!e.state.penMode||"touch"!==t.pointerType||"selection"===e.state.activeTool.type||"text"===e.state.activeTool.type||"image"===e.state.activeTool.type)if("text"!==e.state.activeTool.type){if("arrow"===e.state.activeTool.type||"line"===e.state.activeTool.type)e.handleLinearElementOnPointerDown(t,e.state.activeTool.type,i);else if("image"===e.state.activeTool.type){(0,D.KJ)(e.canvas,re.oc.CROSSHAIR);var a=e.state.pendingImageElementId&&e.scene.getElement(e.state.pendingImageElementId);if(!a)return;e.setState({draggingElement:a,editingElement:a,pendingImageElementId:null,multiElement:null});var l=(0,D.dE)(t,e.state),s=l.x,c=l.y;(0,O.DR)(a,{x:s,y:c})}else"freedraw"===e.state.activeTool.type?e.handleFreeDrawElementOnPointerDown(t,e.state.activeTool.type,i):"custom"===e.state.activeTool.type?(0,D.KJ)(e.canvas,re.oc.AUTO):"eraser"!==e.state.activeTool.type&&e.createGenericElementOnPointerDown(e.state.activeTool.type,i);null===(n=e.props)||void 0===n||null===(r=n.onPointerDown)||void 0===r||r.call(n,e.state.activeTool,i),e.onPointerDownEmitter.trigger(e.state.activeTool,i,t);var u=e.onPointerMoveFromPointerDownHandler(i),d=e.onPointerUpFromPointerDownHandler(i),p=e.onKeyDownFromPointerDownHandler(i),f=e.onKeyUpFromPointerDownHandler(i);ma=d,e.state.viewModeEnabled||(window.addEventListener(re.Ks.POINTER_MOVE,u),window.addEventListener(re.Ks.POINTER_UP,d),window.addEventListener(re.Ks.KEYDOWN,p),window.addEventListener(re.Ks.KEYUP,f),i.eventListeners.onMove=u,i.eventListeners.onUp=d,i.eventListeners.onKeyUp=f,i.eventListeners.onKeyDown=p)}else e.handleTextOnPointerDown(t,i)}},this.handleCanvasPointerUp=function(t){if(e.lastPointerUp=t,e.device.isTouchScreen){var n=(0,D.dE)({clientX:t.clientX,clientY:t.clientY},e.state),r=e.getElementAtPosition(n.x,n.y);e.hitLinkElement=e.getElementLinkAtPosition(n,r)}e.hitLinkElement&&!e.state.selectedElementIds[e.hitLinkElement.id]&&e.redirectToLink(t,e.device.isTouchScreen),e.removePointer(t)},this.maybeOpenContextMenuAfterPointerDownOnTouchDevices=function(t){"touch"===t.pointerType&&(ua=!1,ca?ua=!0:ca=window.setTimeout((function(){ca=0,ua||e.handleCanvasContextMenu(t)}),re.nM))},this.resetContextMenuTimer=function(){clearTimeout(ca),ca=0,ua=!1},this.handleCanvasPanUsingWheelOrSpaceDrag=function(t){if(!(ga.pointers.size<=1&&(t.button===re.Oh.WHEEL||t.button===re.Oh.MAIN&&ia||e.state.viewModeEnabled))||(0,C.iB)(e.state.editingElement))return!1;aa=!0,t.preventDefault();var n=!1,r=/Linux/.test(window.navigator.platform);(0,D.KJ)(e.canvas,re.oc.GRABBING);var o=t.clientX,i=t.clientY,a=(0,D.$9)((function(t){var a=o-t.clientX,l=i-t.clientY;if(o=t.clientX,i=t.clientY,r&&!n&&(Math.abs(a)>1||Math.abs(l)>1)){n=!0;var s=function e(t){document.body.removeEventListener(re.Ks.PASTE,e),t.stopPropagation()};document.body.addEventListener(re.Ks.PASTE,s),window.addEventListener(re.Ks.POINTER_UP,(function e(){setTimeout((function(){document.body.removeEventListener(re.Ks.PASTE,s),window.removeEventListener(re.Ks.POINTER_UP,e)}),100)}))}e.setState({scrollX:e.state.scrollX-a/e.state.zoom.value,scrollY:e.state.scrollY-l/e.state.zoom.value})})),l=(0,D.tH)(ma=function(){ma=null,aa=!1,ia||(e.state.viewModeEnabled?(0,D.KJ)(e.canvas,re.oc.GRAB):(0,D.Uk)(e.canvas,e.state)),e.setState({cursorButton:"up"}),e.savePointer(t.clientX,t.clientY,"up"),window.removeEventListener(re.Ks.POINTER_MOVE,a),window.removeEventListener(re.Ks.POINTER_UP,l),window.removeEventListener(re.Ks.BLUR,l),a.flush()});return window.addEventListener(re.Ks.BLUR,l),window.addEventListener(re.Ks.POINTER_MOVE,a,{passive:!0}),window.addEventListener(re.Ks.POINTER_UP,l),!0},this.clearSelectionIfNotUsingSelection=function(){"selection"!==e.state.activeTool.type&&e.setState({selectedElementIds:{},selectedGroupIds:{},editingGroupId:null})},this.handleSelectionOnPointerDown=function(t,n){if("selection"===e.state.activeTool.type){var r=e.scene.getNonDeletedElements(),o=(0,k.eD)(r,e.state);if(1!==o.length||e.state.editingLinearElement)o.length>1&&(n.resize.handleType=(0,C.n2)((0,C.KP)(o),n.origin.x,n.origin.y,e.state.zoom,t.pointerType));else{var i=(0,C.jt)(r,e.state,n.origin.x,n.origin.y,e.state.zoom,t.pointerType);null!=i&&(e.setState({resizingElement:i.element}),n.resize.handleType=i.transformHandleType)}if(n.resize.handleType)(0,D.KJ)(e.canvas,(0,C.Un)({transformHandleType:n.resize.handleType})),n.resize.isResizing=!0,n.resize.offset=(0,D.AK)((0,C.xx)(n.resize.handleType,o,n.origin.x,n.origin.y)),1===o.length&&(0,T.bt)(o[0])&&2===o[0].points.length&&(n.resize.arrowDirection=(0,C.T)(n.resize.handleType,o[0]));else{var a;if(e.state.selectedLinearElement){var l=e.state.editingLinearElement||e.state.selectedLinearElement,s=I._.handlePointerDown(t,e.state,e.history,n.origin,l);if(s.hitElement&&(n.hit.element=s.hitElement),s.linearElementEditor&&(e.setState({selectedLinearElement:s.linearElementEditor}),e.state.editingLinearElement&&e.setState({editingLinearElement:s.linearElementEditor})),s.didAddPoint)return!0}if(n.hit.element=null!==(a=n.hit.element)&&void 0!==a?a:e.getElementAtPosition(n.origin.x,n.origin.y),n.hit.element)if(e.getElementLinkAtPosition({x:n.origin.x,y:n.origin.y},n.hit.element))return!1;n.hit.allHitElements=e.getElementsAtPosition(n.origin.x,n.origin.y);var c=n.hit.element,u=n.hit.allHitElements.some((function(t){return e.isASelectedElement(t)}));if(null!==c&&u||t.shiftKey||n.hit.hasHitCommonBoundingBoxOfSelectedElements||e.clearSelection(c),e.state.editingLinearElement)e.setState({selectedElementIds:(0,f.Z)({},e.state.editingLinearElement.elementId,!0)});else if(null!=c){if(t[E.tW.CTRL_OR_CMD])return e.state.selectedElementIds[c.id]||(n.hit.wasAddedToSelection=!0),e.setState((function(t){return Wi(Wi({},(0,M.iE)(t,c)),{},{previousSelectedElementIds:e.state.selectedElementIds})})),!1;e.state.selectedElementIds[c.id]||(e.state.editingGroupId&&!(0,M.Nd)(c,e.state.editingGroupId)&&e.setState({selectedElementIds:{},selectedGroupIds:{},editingGroupId:null}),u||n.hit.hasHitCommonBoundingBoxOfSelectedElements||(e.setState((function(t){return(0,M.bO)(Wi(Wi({},t),{},{selectedElementIds:Wi(Wi({},t.selectedElementIds),{},(0,f.Z)({},c.id,!0)),showHyperlinkPopup:!!c.link&&"info"}),e.scene.getNonDeletedElements())})),n.hit.wasAddedToSelection=!0))}e.setState({previousSelectedElementIds:e.state.selectedElementIds})}}return!1},this.handleTextOnPointerDown=function(t,n){if(!(0,C.iB)(e.state.editingElement)){var r=n.origin.x,o=n.origin.y,i=e.getElementAtPosition(r,o,{includeBoundTextElement:!0}),a=(0,oe.OW)(e.scene.getNonDeletedElements(),e.state,r,o);(0,T.Xo)(i)&&(a=i,r=i.x+i.width/2,o=i.y+i.height/2),e.startTextEditing({sceneX:r,sceneY:o,insertAtParentCenter:!t.altKey,container:a}),(0,D.z8)(e.canvas),e.state.activeTool.locked||e.setState({activeTool:(0,D.Om)(e.state,{type:"selection"})})}},this.handleFreeDrawElementOnPointerDown=function(t,n,r){var a=(0,ce.wC)(r.origin.x,r.origin.y,null),l=(0,o.Z)(a,2),s=l[0],c=l[1],u=(0,Ct.KE)({type:n,x:s,y:c,strokeColor:e.state.currentItemStrokeColor,backgroundColor:e.state.currentItemBackgroundColor,fillStyle:e.state.currentItemFillStyle,strokeWidth:e.state.currentItemStrokeWidth,strokeStyle:e.state.currentItemStrokeStyle,roughness:e.state.currentItemRoughness,opacity:e.state.currentItemOpacity,strokeSharpness:e.state.currentItemLinearStrokeSharpness,simulatePressure:.5===t.pressure,locked:!1});e.setState((function(e){return{selectedElementIds:Wi(Wi({},e.selectedElementIds),{},(0,f.Z)({},u.id,!1))}}));var d=u.simulatePressure?u.pressures:[].concat((0,i.Z)(u.pressures),[t.pressure]);(0,O.DR)(u,{points:[[0,0]],pressures:d});var p=(0,P.Y9)(r.origin,e.scene);e.scene.replaceAllElements([].concat((0,i.Z)(e.scene.getElementsIncludingDeleted()),[u])),e.setState({draggingElement:u,editingElement:u,startBoundElement:p,suggestedBindings:[]})},this.createImageElement=function(t){var n=t.sceneX,r=t.sceneY,i=(0,ce.wC)(n,r,e.state.gridSize),a=(0,o.Z)(i,2),l=a[0],s=a[1];return(0,C.vw)({type:"image",x:l,y:s,strokeColor:e.state.currentItemStrokeColor,backgroundColor:e.state.currentItemBackgroundColor,fillStyle:e.state.currentItemFillStyle,strokeWidth:e.state.currentItemStrokeWidth,strokeStyle:e.state.currentItemStrokeStyle,roughness:e.state.currentItemRoughness,opacity:e.state.currentItemOpacity,strokeSharpness:e.state.currentItemLinearStrokeSharpness,locked:!1})},this.handleLinearElementOnPointerDown=function(t,n,r){if(e.state.multiElement){var a=e.state.multiElement;if("line"===a.type&&(0,ce.g6)(a.points,e.state.zoom.value))return(0,O.DR)(a,{lastCommittedPoint:a.points[a.points.length-1]}),void e.actionManager.executeAction(pe);var l=a.x,s=a.y,c=a.lastCommittedPoint;if(a.points.length>1&&c&&(0,ce.LW)(r.origin.x-l,r.origin.y-s,c[0],c[1])<re.qx)return void e.actionManager.executeAction(pe);e.setState((function(e){return{selectedElementIds:Wi(Wi({},e.selectedElementIds),{},(0,f.Z)({},a.id,!0))}})),(0,O.DR)(a,{lastCommittedPoint:a.points[a.points.length-1]}),(0,D.KJ)(e.canvas,re.oc.POINTER)}else{var u=(0,ce.wC)(r.origin.x,r.origin.y,e.state.gridSize),d=(0,o.Z)(u,2),p=d[0],h=d[1],m=e.state,g=m.currentItemStartArrowhead,v=m.currentItemEndArrowhead,b="arrow"===n?[g,v]:[null,null],y=(0,o.Z)(b,2),x=y[0],w=y[1],k=(0,C.y8)({type:n,x:p,y:h,strokeColor:e.state.currentItemStrokeColor,backgroundColor:e.state.currentItemBackgroundColor,fillStyle:e.state.currentItemFillStyle,strokeWidth:e.state.currentItemStrokeWidth,strokeStyle:e.state.currentItemStrokeStyle,roughness:e.state.currentItemRoughness,opacity:e.state.currentItemOpacity,strokeSharpness:e.state.currentItemLinearStrokeSharpness,startArrowhead:x,endArrowhead:w,locked:!1});e.setState((function(e){return{selectedElementIds:Wi(Wi({},e.selectedElementIds),{},(0,f.Z)({},k.id,!1))}})),(0,O.DR)(k,{points:[].concat((0,i.Z)(k.points),[[0,0]])});var E=(0,P.Y9)(r.origin,e.scene);e.scene.replaceAllElements([].concat((0,i.Z)(e.scene.getElementsIncludingDeleted()),[k])),e.setState({draggingElement:k,editingElement:k,startBoundElement:E,suggestedBindings:[]})}},this.createGenericElementOnPointerDown=function(t,n){var r=(0,ce.wC)(n.origin.x,n.origin.y,e.state.gridSize),a=(0,o.Z)(r,2),l=a[0],s=a[1],c=(0,C.Up)({type:t,x:l,y:s,strokeColor:e.state.currentItemStrokeColor,backgroundColor:e.state.currentItemBackgroundColor,fillStyle:e.state.currentItemFillStyle,strokeWidth:e.state.currentItemStrokeWidth,strokeStyle:e.state.currentItemStrokeStyle,roughness:e.state.currentItemRoughness,opacity:e.state.currentItemOpacity,strokeSharpness:e.state.currentItemStrokeSharpness,locked:!1});"selection"===c.type?e.setState({selectionElement:c,draggingElement:c}):(e.scene.replaceAllElements([].concat((0,i.Z)(e.scene.getElementsIncludingDeleted()),[c])),e.setState({multiElement:null,draggingElement:c,editingElement:c}))},this.restoreReadyToEraseElements=function(t){var n=e.scene.getElementsIncludingDeleted().map((function(e){return t.elementIdsToErase[e.id]&&t.elementIdsToErase[e.id].erase?(0,O.BE)(e,{opacity:t.elementIdsToErase[e.id].opacity}):(0,T.Xh)(e)&&t.elementIdsToErase[e.containerId]&&t.elementIdsToErase[e.containerId].erase?(0,O.BE)(e,{opacity:t.elementIdsToErase[e.containerId].opacity}):e}));e.scene.replaceAllElements(n)},this.eraseElements=function(t){var n=e.scene.getElementsIncludingDeleted().map((function(e){return t.elementIdsToErase[e.id]&&t.elementIdsToErase[e.id].erase||(0,T.Xh)(e)&&t.elementIdsToErase[e.containerId]&&t.elementIdsToErase[e.containerId].erase?(0,O.BE)(e,{isDeleted:!0}):e}));e.history.resumeRecording(),e.scene.replaceAllElements(n)},this.initializeImage=function(){var t=(0,a.Z)(m().mark((function t(n){var r,o,i,l,s,c,u,d,p,h,g,v,b,y,x;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(l=n.imageFile,s=n.imageElement,c=n.showCursorImagePreview,u=void 0!==c&&c,(0,Ae.Wr)(l)){t.next=3;break}throw new Error((0,_.t)("errors.unsupportedFileType"));case 3:if(d=l.type,(0,D.KJ)(e.canvas,"wait"),d!==re.LO.svg){t.next=23;break}return t.prev=6,t.t0=Ae.Pn,t.t1=Ii.bp,t.next=11,l.text();case 11:return t.t2=t.sent,t.next=14,(0,t.t1)(t.t2);case 14:t.t3=t.sent,t.t4=l.name,l=(0,t.t0)(t.t3,t.t4),t.next=23;break;case 19:throw t.prev=19,t.t5=t.catch(6),console.warn(t.t5),new Error((0,_.t)("errors.svgImageInsertError"));case 23:return t.next=25,(null===(r=(o=e.props).generateIdForFile)||void 0===r?void 0:r.call(o,l))||(0,Ae.tW)(l);case 25:if(p=t.sent){t.next=29;break}throw console.warn("Couldn't generate file id or the supplied `generateIdForFile` didn't resolve to one."),new Error((0,_.t)("errors.imageInsertError"));case 29:if(null!=(h=e.files[p])&&h.dataURL){t.next=42;break}return t.prev=31,t.next=34,(0,Ae.Tu)(l,{maxWidthOrHeight:re.h6});case 34:l=t.sent,t.next=40;break;case 37:t.prev=37,t.t6=t.catch(31),console.error("error trying to resing image file on insertion",t.t6);case 40:if(!(l.size>re.$n)){t.next=42;break}throw new Error((0,_.t)("errors.fileTooBig",{maxSize:"".concat(Math.trunc(re.$n/1024/1024),"MB")}));case 42:if(u&&(v=null===(g=e.files[p])||void 0===g?void 0:g.dataURL,b=v&&(0,Ae.KG)(v),e.setImagePreviewCursor(b||l)),t.t7=null===(i=e.files[p])||void 0===i?void 0:i.dataURL,t.t7){t.next=48;break}return t.next=47,(0,Ae.Sf)(l);case 47:t.t7=t.sent;case 48:return y=t.t7,x=(0,O.DR)(s,{fileId:p},!1),t.abrupt("return",new Promise(function(){var t=(0,a.Z)(m().mark((function t(n,r){var o,i;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(t.prev=0,e.files=Wi(Wi({},e.files),{},(0,f.Z)({},p,{mimeType:d,id:p,dataURL:y,created:Date.now(),lastRetrieved:Date.now()})),i=e.imageCache.get(p)){t.next=7;break}return e.addNewImagesToImageCache(),t.next=7,e.updateImageCache([x]);case 7:if(!((null==i?void 0:i.image)instanceof Promise)){t.next=10;break}return t.next=10,i.image;case 10:e.state.pendingImageElementId!==x.id&&(null===(o=e.state.draggingElement)||void 0===o?void 0:o.id)!==x.id&&e.initializeImageDimensions(x,!0),n(x),t.next=18;break;case 14:t.prev=14,t.t0=t.catch(0),console.error(t.t0),r(new Error((0,_.t)("errors.imageInsertError")));case 18:return t.prev=18,u||(0,D.z8)(e.canvas),t.finish(18);case 21:case"end":return t.stop()}}),t,null,[[0,14,18,21]])})));return function(e,n){return t.apply(this,arguments)}}()));case 51:case"end":return t.stop()}}),t,null,[[6,19],[31,37]])})));return function(e){return t.apply(this,arguments)}}(),this.insertImageElement=function(){var t=(0,a.Z)(m().mark((function t(n,r,o){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return e.scene.replaceAllElements([].concat((0,i.Z)(e.scene.getElementsIncludingDeleted()),[n])),t.prev=1,t.next=4,e.initializeImage({imageFile:r,imageElement:n,showCursorImagePreview:o});case 4:t.next=11;break;case 6:t.prev=6,t.t0=t.catch(1),(0,O.DR)(n,{isDeleted:!0}),e.actionManager.executeAction(pe),e.setState({errorMessage:t.t0.message||(0,_.t)("errors.imageInsertError")});case 11:case"end":return t.stop()}}),t,null,[[1,6]])})));return function(e,n,r){return t.apply(this,arguments)}}(),this.setImagePreviewCursor=function(){var t=(0,a.Z)(m().mark((function t(n){var r,o,i,a,l,s,c;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return r=96,t.next=3,(0,Ae.Tu)(n,{maxWidthOrHeight:r});case 3:return o=t.sent,t.next=6,(0,Ae.Sf)(o);case 6:if(i=t.sent,n.type!==re.LO.svg){t.next=20;break}return t.next=10,(0,Ii.PK)(i);case 10:a=t.sent,l=Math.min(a.height,r),(s=l*(a.width/a.height))>r&&(l=(s=r)*(a.height/a.width)),(c=document.createElement("canvas")).height=l,c.width=s,c.getContext("2d").drawImage(a,0,0,s,l),i=c.toDataURL(re.LO.svg);case 20:e.state.pendingImageElementId&&(0,D.KJ)(e.canvas,"url(".concat(i,") 4 4, auto"));case 21:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}(),this.onImageAction=(0,a.Z)(m().mark((function t(){var n,r,o,i,a,l,s,c,u,d=arguments;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return n=d.length>0&&void 0!==d[0]?d[0]:{insertOnCanvasDirectly:!1},r=n.insertOnCanvasDirectly,t.prev=1,o=e.state.width/2+e.state.offsetLeft,i=e.state.height/2+e.state.offsetTop,a=(0,D.dE)({clientX:o,clientY:i},e.state),l=a.x,s=a.y,t.next=7,(0,Ze.I$)({description:"Image",extensions:["jpg","png","svg","gif"]});case 7:c=t.sent,u=e.createImageElement({sceneX:l,sceneY:s}),r?(e.insertImageElement(u,c),e.initializeImageDimensions(u),e.setState({selectedElementIds:(0,f.Z)({},u.id,!0)},(function(){e.actionManager.executeAction(pe)}))):e.setState({pendingImageElementId:u.id},(function(){e.insertImageElement(u,c,!0)})),t.next=16;break;case 12:t.prev=12,t.t0=t.catch(1),"AbortError"!==t.t0.name?console.error(t.t0):console.warn(t.t0),e.setState({pendingImageElementId:null,editingElement:null,activeTool:(0,D.Om)(e.state,{type:"selection"})},(function(){e.actionManager.executeAction(pe)}));case 16:case"end":return t.stop()}}),t,null,[[1,12]])}))),this.initializeImageDimensions=function(t){var n,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o=(0,T.wi)(t)&&(null===(n=e.imageCache.get(t.fileId))||void 0===n?void 0:n.image);if(!o||o instanceof Promise){if(t.width<re.f/e.state.zoom.value&&t.height<re.f/e.state.zoom.value){var i=100/e.state.zoom.value;(0,O.DR)(t,{x:t.x-i/2,y:t.y-i/2,width:i,height:i})}}else if(r||t.width<re.f/e.state.zoom.value&&t.height<re.f/e.state.zoom.value){var a=Math.max(e.state.height-120,160),l=Math.min(a,Math.floor(.5*e.state.height)/e.state.zoom.value),s=Math.min(o.naturalHeight,l),c=s*(o.naturalWidth/o.naturalHeight),u=t.x+t.width/2-c/2,d=t.y+t.height/2-s/2;(0,O.DR)(t,{x:u,y:d,width:c,height:s})}},this.updateImageCache=function(){var t=(0,a.Z)(m().mark((function t(n){var r,o,i,a,l,s,c,u=arguments;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return r=u.length>1&&void 0!==u[1]?u[1]:e.files,t.next=3,(0,Ii.Xx)({imageCache:e.imageCache,fileIds:n.map((function(e){return e.fileId})),files:r});case 3:if(o=t.sent,i=o.updatedFiles,a=o.erroredFiles,i.size||a.size){l=zi(n);try{for(l.s();!(s=l.n()).done;)c=s.value,i.has(c.fileId)&&(0,Hn.bI)(c)}catch(e){l.e(e)}finally{l.f()}}return a.size&&e.scene.replaceAllElements(e.scene.getElementsIncludingDeleted().map((function(e){return(0,T.wi)(e)&&a.has(e.fileId)?(0,O.BE)(e,{status:"error"}):e}))),t.abrupt("return",{updatedFiles:i,erroredFiles:a});case 9:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}(),this.addNewImagesToImageCache=(0,a.Z)(m().mark((function t(){var n,r,o,i,a=arguments;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(n=a.length>0&&void 0!==a[0]?a[0]:(0,Ii.oA)(e.scene.getNonDeletedElements()),r=a.length>1&&void 0!==a[1]?a[1]:e.files,!(o=n.filter((function(t){return!t.isDeleted&&!e.imageCache.has(t.fileId)}))).length){t.next=9;break}return t.next=6,e.updateImageCache(o,r);case 6:i=t.sent,i.updatedFiles.size&&e.scene.informMutation();case 9:case"end":return t.stop()}}),t)}))),this.scheduleImageRefresh=Ti()((function(){e.addNewImagesToImageCache()}),re.LL),this.updateBindingEnabledOnPointerMove=function(t){var n=(0,P.cz)(t);e.state.isBindingEnabled!==n&&e.setState({isBindingEnabled:n})},this.maybeSuggestBindingAtCursor=function(t){var n=(0,P.Y9)(t,e.scene);e.setState({suggestedBindings:null!=n?[n]:[]})},this.maybeSuggestBindingsForLinearElementAtCoords=function(t,n,r){if(n.length){var o=n.reduce((function(n,o){var i=(0,P.Y9)(o,e.scene);return null==i||(0,P.DK)(t,null==r?void 0:r.id,i)||n.push(i),n}),[]);e.setState({suggestedBindings:o})}},this.handleCanvasRef=function(t){var n,r,o;null!==t?(e.canvas=t,e.rc=y.Z.canvas(e.canvas),e.canvas.addEventListener(re.Ks.WHEEL,e.handleWheel,{passive:!1}),e.canvas.addEventListener(re.Ks.TOUCH_START,e.onTapStart),e.canvas.addEventListener(re.Ks.TOUCH_END,e.onTapEnd)):(null===(n=e.canvas)||void 0===n||n.removeEventListener(re.Ks.WHEEL,e.handleWheel),null===(r=e.canvas)||void 0===r||r.removeEventListener(re.Ks.TOUCH_START,e.onTapStart),null===(o=e.canvas)||void 0===o||o.removeEventListener(re.Ks.TOUCH_END,e.onTapEnd))},this.handleAppOnDrop=function(){var t=(0,a.Z)(m().mark((function t(n){var r,o,i,a,l,s,c,u,d,p;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,(0,Ae.bv)(n);case 2:if(r=t.sent,o=r.file,i=r.fileHandle,t.prev=5,!(0,Ae.Wr)(o)){t.next=26;break}if((null==o?void 0:o.type)!==re.LO.png&&(null==o?void 0:o.type)!==re.LO.svg){t.next=20;break}return t.prev=8,t.next=11,(0,Ae.cT)(o,e.state,e.scene.getElementsIncludingDeleted(),i);case 11:return a=t.sent,e.syncActionResult(Wi(Wi({},a),{},{appState:Wi(Wi({},a.appState||e.state),{},{isLoading:!1}),replaceFiles:!0,commitToHistory:!0})),t.abrupt("return");case 16:if(t.prev=16,t.t0=t.catch(8),"EncodingError"===t.t0.name){t.next=20;break}throw t.t0;case 20:return l=(0,D.dE)(n,e.state),s=l.x,c=l.y,u=e.createImageElement({sceneX:s,sceneY:c}),e.insertImageElement(u,o),e.initializeImageDimensions(u),e.setState({selectedElementIds:(0,f.Z)({},u.id,!0)}),t.abrupt("return");case 26:t.next=31;break;case 28:return t.prev=28,t.t1=t.catch(5),t.abrupt("return",e.setState({isLoading:!1,errorMessage:t.t1.message}));case 31:if(!(d=n.dataTransfer.getData(re.LO.excalidrawlib))||"string"!=typeof d){t.next=35;break}try{p=(0,Ae.wf)(d),e.addElementsFromPasteOrLibrary({elements:(0,Tn.WV)(p),position:n,files:null})}catch(t){e.setState({errorMessage:t.message})}return t.abrupt("return");case 35:if(!o){t.next=38;break}return t.next=38,e.loadFileToCanvas(o,i);case 38:case"end":return t.stop()}}),t,null,[[5,28],[8,16]])})));return function(e){return t.apply(this,arguments)}}(),this.loadFileToCanvas=function(){var t=(0,a.Z)(m().mark((function t(n,r){var o;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,(0,Ae.gY)(n);case 2:return n=t.sent,t.prev=3,t.next=6,(0,Ae.ZY)(n,e.state,e.scene.getElementsIncludingDeleted(),r);case 6:if((o=t.sent).type!==re.LO.excalidraw){t.next=12;break}e.setState({isLoading:!0}),e.syncActionResult(Wi(Wi({},o.data),{},{appState:Wi(Wi({},o.data.appState||e.state),{},{isLoading:!1}),replaceFiles:!0,commitToHistory:!0})),t.next=15;break;case 12:if(o.type!==re.LO.excalidrawlib){t.next=15;break}return t.next=15,e.library.updateLibrary({libraryItems:n,merge:!0,openLibraryMenu:!0}).catch((function(t){console.error(t),e.setState({errorMessage:(0,_.t)("errors.importLibraryError")})}));case 15:t.next=20;break;case 17:t.prev=17,t.t0=t.catch(3),e.setState({isLoading:!1,errorMessage:t.t0.message});case 20:case"end":return t.stop()}}),t,null,[[3,17]])})));return function(e,n){return t.apply(this,arguments)}}(),this.handleCanvasContextMenu=function(t){if(t.preventDefault(),"touch"!==t.nativeEvent.pointerType&&("pen"!==t.nativeEvent.pointerType||t.button===re.Oh.SECONDARY)||"selection"===e.state.activeTool.type){var n=(0,D.dE)(t,e.state),r=n.x,o=n.y,i=e.getElementAtPosition(r,o,{preferSelected:!0,includeLockedElements:!0}),a=i?"element":"canvas",l=e.excalidrawContainerRef.current.getBoundingClientRect(),s=l.top,c=l.left,u=t.clientX-c,d=t.clientY-s;i&&!e.state.selectedElementIds[i.id]?e.setState((0,M.bO)(Wi(Wi({},e.state),{},{selectedElementIds:(0,f.Z)({},i.id,!0),selectedLinearElement:(0,T.bt)(i)?new I._(i,e.scene):null}),e.scene.getNonDeletedElements()),(function(){e._openContextMenu({top:d,left:u},a)})):e._openContextMenu({top:d,left:u},a)}},this.maybeDragNewGenericElement=function(t,n){var r=e.state.draggingElement,i=t.lastCoords;if(r)if("selection"===r.type&&"eraser"!==e.state.activeTool.type)(0,C.EJ)(r,e.state.activeTool.type,t.origin.x,t.origin.y,i.x,i.y,(0,D.TE)(t.origin.x,i.x),(0,D.TE)(t.origin.y,i.y),(0,E.E0)(n),(0,E.OA)(n));else{var a,l=(0,ce.wC)(i.x,i.y,e.state.gridSize),s=(0,o.Z)(l,2),c=s[0],u=s[1],d=(0,T.wi)(r)&&(null===(a=e.imageCache.get(r.fileId))||void 0===a?void 0:a.image),p=!d||d instanceof Promise?null:d.width/d.height;(0,C.EJ)(r,e.state.activeTool.type,t.originInGrid.x,t.originInGrid.y,c,u,(0,D.TE)(t.originInGrid.x,c),(0,D.TE)(t.originInGrid.y,u),(0,T.pC)(r)?!(0,E.E0)(n):(0,E.E0)(n),(0,E.OA)(n),p),e.maybeSuggestBindingForAll([r])}},this.maybeHandleResize=function(t,n){var r=(0,k.eD)(e.scene.getNonDeletedElements(),e.state),i=t.resize.handleType;e.setState({isResizing:i&&"rotation"!==i,isRotating:"rotation"===i});var a=t.lastCoords,l=(0,ce.wC)(a.x-t.resize.offset.x,a.y-t.resize.offset.y,e.state.gridSize),s=(0,o.Z)(l,2),c=s[0],u=s[1];return!!(0,C.vY)(t,i,r,t.resize.arrowDirection,(0,E.Ge)(n),(0,E.OA)(n),1===r.length&&(0,T.pC)(r[0])?!(0,E.E0)(n):(0,E.E0)(n),c,u,t.resize.center.x,t.resize.center.y)&&(e.maybeSuggestBindingForAll(r),!0)},this._openContextMenu=function(t,n){var r=t.left,o=t.top;e.state.showHyperlinkPopup&&e.setState({showHyperlinkPopup:!1}),e.contextMenuOpen=!0;var i=bt.contextItemPredicate(e.actionManager.getElementsIncludingDeleted(),e.actionManager.getAppState()),a=yt.contextItemPredicate(e.actionManager.getElementsIncludingDeleted(),e.actionManager.getAppState()),l=Ft.contextItemPredicate(e.actionManager.getElementsIncludingDeleted(),e.actionManager.getAppState()),s=Ut.contextItemPredicate(e.actionManager.getElementsIncludingDeleted(),e.actionManager.getAppState()),c=mn.contextItemPredicate(e.actionManager.getElementsIncludingDeleted(),e.actionManager.getAppState()),u=gn.contextItemPredicate(e.actionManager.getElementsIncludingDeleted(),e.actionManager.getAppState()),d=Sn.contextItemPredicate(e.actionManager.getElementsIncludingDeleted(),e.actionManager.getAppState()),p="separator",f=e.scene.getNonDeletedElements(),h=(0,k.eD)(e.scene.getNonDeletedElements(),e.state),m=[];if(De.vt&&f.length>0&&m.push(tn),De.wx&&f.length>0&&m.push(en),"element"===n&&nn.contextItemPredicate(f,e.state)&&De.wx&&m.push(nn),"canvas"===n){var g=[].concat(m,[void 0===e.props.gridModeEnabled&&an,void 0===e.props.zenModeEnabled&&cn,void 0===e.props.viewModeEnabled&&Mi,pn]);e.state.viewModeEnabled?qn({options:g,top:o,left:r,actionManager:e.actionManager,appState:e.state,container:e.excalidrawContainerRef.current,elements:f}):qn({options:[e.device.isMobile&&navigator.clipboard&&{trackEvent:!1,name:"paste",perform:function(t,n){return e.pasteFromClipboard(null),{commitToHistory:!1}},contextItemLabel:"labels.paste"},e.device.isMobile&&navigator.clipboard&&p,De.vt&&f.length>0&&tn,De.wx&&f.length>0&&en,De.wx&&h.length>0&&nn,(De.vt&&f.length>0||De.wx&&f.length>0)&&p,ne,p,void 0===e.props.gridModeEnabled&&an,void 0===e.props.zenModeEnabled&&cn,void 0===e.props.viewModeEnabled&&Mi,pn],top:o,left:r,actionManager:e.actionManager,appState:e.state,container:e.excalidrawContainerRef.current,elements:f})}else"element"===n&&(e.state.viewModeEnabled?qn({options:[navigator.clipboard&&$t].concat(m),top:o,left:r,actionManager:e.actionManager,appState:e.state,container:e.excalidrawContainerRef.current,elements:f}):qn({options:[e.device.isMobile&&Qt,e.device.isMobile&&navigator.clipboard&&$t,e.device.isMobile&&navigator.clipboard&&{name:"paste",trackEvent:!1,perform:function(t,n){return e.pasteFromClipboard(null),{commitToHistory:!1}},contextItemLabel:"labels.paste"},e.device.isMobile&&p].concat(m,[p,at,lt,p,i&&bt,c&&mn,u&&gn,a&&yt,(i||a)&&p,It,p,q,J,$,Q,p,l&&Ft,s&&Ut,(l||s)&&p,d&&Sn,vn.nz.contextItemPredicate(f,e.state)&&vn.nz,le,xn,p,N]),top:o,left:r,actionManager:e.actionManager,appState:e.state,container:e.excalidrawContainerRef.current,elements:f}))},this.handleWheel=(0,D.tH)((function(t){if(t.preventDefault(),!aa){var n=t.deltaX,r=t.deltaY;if(t.metaKey||t.ctrlKey){var o=Math.sign(r),i=100*re.V4,a=Math.abs(r),l=r;a>i&&(l=i*o);var s=e.state.zoom.value-l/100;return s+=Math.log10(Math.max(1,e.state.zoom.value))*-o*Math.min(1,a/20),e.setState((function(e){return Wi(Wi({},(0,Fn.E)({viewportX:ra,viewportY:oa,nextZoom:(0,k.j)(s)},e)),{},{shouldCacheIgnoreZoom:!0})})),void e.resetShouldCacheIgnoreZoomDebounced()}t.shiftKey?e.setState((function(e){var t=e.zoom;return{scrollX:e.scrollX-(r||n)/t.value}})):e.setState((function(e){var t=e.zoom,o=e.scrollX,i=e.scrollY;return{scrollX:o-n/t.value,scrollY:i-r/t.value}}))}})),this.savePointer=function(t,n,r){var o,i;if(t&&n){var a=(0,D.dE)({clientX:t,clientY:n},e.state);isNaN(a.x)||isNaN(a.y),null===(o=(i=e.props).onPointerUpdate)||void 0===o||o.call(i,{pointer:a,button:r,pointersMap:ga.pointers})}},this.resetShouldCacheIgnoreZoomDebounced=(0,D.Ds)((function(){e.unmounted||e.setState({shouldCacheIgnoreZoom:!1})}),300),this.updateDOMRect=function(t){var n;if(null!==(n=e.excalidrawContainerRef)&&void 0!==n&&n.current){var r=e.excalidrawContainerRef.current.getBoundingClientRect(),o=r.width,i=r.height,a=r.left,l=r.top,s=e.state,c=s.width,u=s.height,d=s.offsetTop,p=s.offsetLeft;if(o===c&&i===u&&a===p&&l===d)return void(t&&t());e.setState({width:o,height:i,offsetLeft:a,offsetTop:l},(function(){t&&t()}))}},this.refresh=function(){e.setState(Wi({},e.getCanvasOffsets()))}};"production"!==re.Vi.TEST&&"production"!==re.Vi.DEVELOPMENT||(window.h=window.h||{},Object.defineProperties(window.h,{elements:{configurable:!0,get:function(){var e;return null===(e=this.app)||void 0===e?void 0:e.scene.getElementsIncludingDeleted()},set:function(e){var t;return null===(t=this.app)||void 0===t?void 0:t.scene.replaceAllElements(e)}}}));var ya=va},4499:function(e,t,n){"use strict";n.d(t,{z:function(){return P}});var r=n(2577),o=n(9787),i=n.n(o),a=n(2891),l=n(6340),s=n(487),c=n.n(s),u=n(631),d=n.n(u),p=n(2052),f=n.n(p),h=n(4010),m=n.n(h),g=n(1469),v=n.n(g),b=n(9329),y=n.n(b),x=n(2345),w={};w.styleTagTransform=y(),w.setAttributes=m(),w.insert=f().bind(null,"head"),w.domAPI=d(),w.insertStyleElement=v();c()(x.Z,w),x.Z&&x.Z.locals&&x.Z.locals;var k=n(6066),E=n(5202),S=n(56),_=n(4512),j=function(e,t){return!S.Z[t].includes(e)},C=function(e){var t=(new Option).style;return t.color=e,!!t.color},O=[["1","2","3","4","5"],["q","w","e","r","t"],["a","s","d","f","g"],["z","x","c","v","b"]].flat(),M=function(e){var t=e.colors,n=e.color,o=e.onChange,a=e.onClose,s=e.label,c=e.showInput,u=void 0===c||c,d=e.type,p=e.elements,f=i().useRef(),h=i().useRef(),m=i().useRef(),g=i().useRef(),v=i().useState((function(){return"canvasBackground"===d?[]:function(e,t){for(var n=[],r=e.filter((function(e){return!e.isDeleted})).sort((function(e,t){return t.updated-e.updated})),o=0,i={elementBackground:"backgroundColor",elementStroke:"strokeColor"}[t];o<r.length&&n.length<5;){var a=r[o];n.length<5&&j(a[i],t)&&!n.includes(a[i])&&n.push(a[i]),o++}return n}(p,d)})),b=(0,r.Z)(v,1)[0];i().useEffect((function(){h.current?h.current.focus():g.current?g.current.focus():m.current&&m.current.focus()}),[]);var y=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return e.map((function(e,r){var i=e.replace("#",""),a=t?O[r+15]:O[r],s=t?i:(0,E.t)("colors.".concat(i));return(0,_.jsxs)("button",{className:"color-picker-swatch",onClick:function(t){t.currentTarget.focus(),o(e)},title:"".concat(s).concat((0,l.Qm)(e)?"":" (".concat(e,")")," — ").concat(a.toUpperCase()),"aria-label":s,"aria-keyshortcuts":O[r],style:{color:e},ref:function(o){!t&&o&&0===r&&(f.current=o),o&&e===n&&(h.current=o)},onFocus:function(){o(e)},children:[(0,l.Qm)(e)?(0,_.jsx)("div",{className:"color-picker-transparent"}):void 0,(0,_.jsx)("span",{className:"color-picker-keybinding",children:a})]},e)}))};return(0,_.jsxs)("div",{className:"color-picker color-picker-type-".concat(d),role:"dialog","aria-modal":"true","aria-label":(0,E.t)("labels.colorPicker"),onKeyDown:function(e){var t=!1;if((0,k.Wl)(e.key)){var n,r,o;t=!0;var i,s=document.activeElement,c=(0,E.G3)().rtl,d=!1,p=Array.prototype.indexOf.call(null===(n=m.current.querySelector(".color-picker-content--default"))||void 0===n?void 0:n.children,s);if(-1===p)-1!==(p=Array.prototype.indexOf.call(null===(i=m.current.querySelector(".color-picker-content--canvas-colors"))||void 0===i?void 0:i.children,s))&&(d=!0);var f=d?null===(r=m.current)||void 0===r?void 0:r.querySelector(".color-picker-content--canvas-colors"):null===(o=m.current)||void 0===o?void 0:o.querySelector(".color-picker-content--default");if(f&&-1!==p){var h,g=f.children.length-(u?1:0),v=e.key===(c?k.tW.ARROW_LEFT:k.tW.ARROW_RIGHT)?(p+1)%g:e.key===(c?k.tW.ARROW_RIGHT:k.tW.ARROW_LEFT)?(g+p-1)%g:d||e.key!==k.tW.ARROW_DOWN?d||e.key!==k.tW.ARROW_UP?p:(g+p-5)%g:(p+5)%g;null===(h=f.children[v])||void 0===h||h.focus()}e.preventDefault()}else if(!O.includes(e.key.toLowerCase())||e[k.tW.CTRL_OR_CMD]||e.altKey||(0,l.s)(e.target))e.key!==k.tW.ESCAPE&&e.key!==k.tW.ENTER||(t=!0,e.preventDefault(),a());else{var b,y,x;t=!0;var w=O.indexOf(e.key.toLowerCase()),S=w>=15,_=S?null==m||null===(b=m.current)||void 0===b?void 0:b.querySelector(".color-picker-content--canvas-colors"):null==m||null===(y=m.current)||void 0===y?void 0:y.querySelector(".color-picker-content--default"),j=S?w-15:w;null==_||null===(x=_.children[j])||void 0===x||x.focus(),e.preventDefault()}t&&(e.nativeEvent.stopImmediatePropagation(),e.stopPropagation())},children:[(0,_.jsx)("div",{className:"color-picker-triangle color-picker-triangle-shadow"}),(0,_.jsx)("div",{className:"color-picker-triangle"}),(0,_.jsxs)("div",{className:"color-picker-content",ref:function(e){e&&(m.current=e)},tabIndex:-1,children:[(0,_.jsx)("div",{className:"color-picker-content--default",children:y(t)}),!!b.length&&(0,_.jsxs)("div",{className:"color-picker-content--canvas",children:[(0,_.jsx)("span",{className:"color-picker-content--canvas-title",children:(0,E.t)("labels.canvasColors")}),(0,_.jsx)("div",{className:"color-picker-content--canvas-colors",children:y(b,!0)})]}),u&&(0,_.jsx)(I,{color:n,label:s,onChange:function(e){o(e)},ref:g})]})]})},I=i().forwardRef((function(e,t){var n=e.color,o=e.onChange,a=e.label,s=i().useState(n),c=(0,r.Z)(s,2),u=c[0],d=c[1],p=i().useRef(null);i().useEffect((function(){d(n)}),[n]),i().useImperativeHandle(t,(function(){return p.current}));var f=i().useCallback((function(e){var t=e.toLowerCase(),n=function(e){return(0,l.Qm)(e)||C(e)?e:C("#".concat(e))?"#".concat(e):null}(t);n&&o(n),d(t)}),[o]);return(0,_.jsxs)("label",{className:"color-input-container",children:[(0,_.jsx)("div",{className:"color-picker-hash",children:"#"}),(0,_.jsx)("input",{spellCheck:!1,className:"color-picker-input","aria-label":a,onChange:function(e){return f(e.target.value)},value:(u||"").replace(/^#/,""),onBlur:function(){return d(n)},ref:p})]})}));I.displayName="ColorInput";var P=function(e){var t,n=e.type,r=e.color,o=e.onChange,l=e.label,s=e.isActive,c=e.setActive,u=e.elements,d=(e.appState,i().useRef(null)),p=null===(t=d.current)||void 0===t?void 0:t.getBoundingClientRect();return(0,_.jsxs)("div",{children:[(0,_.jsxs)("div",{className:"color-picker-control-container",children:[(0,_.jsx)("div",{className:"color-picker-label-swatch-container",children:(0,_.jsx)("button",{className:"color-picker-label-swatch","aria-label":l,style:r?{"--swatch-color":r}:void 0,onClick:function(){return c(!s)},ref:d})}),(0,_.jsx)(I,{color:r,label:l,onChange:function(e){o(e)}})]}),(0,_.jsx)(i().Suspense,{fallback:"",children:s?(0,_.jsx)("div",{className:"color-picker-popover-container",style:{position:"fixed",top:null==p?void 0:p.top,left:null==p?void 0:p.right,zIndex:1},children:(0,_.jsx)(a.J,{onCloseRequest:function(e){return e.target!==d.current&&c(!1)},children:(0,_.jsx)(M,{colors:S.Z[n],color:r||null,onChange:function(e){o(e)},onClose:function(){var e;c(!1),null===(e=d.current)||void 0===e||e.focus()},label:l,showInput:!1,type:n,elements:u})})}):null})]})}},7046:function(e,t,n){"use strict";n.d(t,{Z:function(){return O}});var r=n(7169),o=n(2726),i=n(5202),a=n(8396),l=n(487),s=n.n(l),c=n(631),u=n.n(c),d=n(2052),p=n.n(d),f=n(4010),h=n.n(f),m=n(1469),g=n.n(m),v=n(9329),b=n.n(v),y=n(9393),x={};x.styleTagTransform=b(),x.setAttributes=h(),x.insert=p().bind(null,"head"),x.domAPI=u(),x.insertStyleElement=g();s()(y.Z,x),y.Z&&y.Z.locals&&y.Z.locals;var w=n(6428),k=n(5076),E=n(4739),S=n(4512),_=["onConfirm","onCancel","children","confirmText","cancelText","className"];function j(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function C(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?j(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):j(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var O=function(e){var t=e.onConfirm,n=e.onCancel,r=e.children,l=e.confirmText,s=void 0===l?(0,i.t)("buttons.confirm"):l,c=e.cancelText,u=void 0===c?(0,i.t)("buttons.cancel"):c,d=e.className,p=void 0===d?"":d,f=(0,o.Z)(e,_),h=(0,E.b9)(k.Dh),m=(0,E.b9)(k.qx);return(0,S.jsxs)(a.V,C(C({onCloseRequest:n,small:!0},f),{},{className:"confirm-dialog ".concat(p),children:[r,(0,S.jsxs)("div",{className:"confirm-dialog-buttons",children:[(0,S.jsx)(w.Z,{label:u,onClick:function(){h(!1),m(!1),n()}}),(0,S.jsx)(w.Z,{label:s,onClick:function(){h(!1),m(!1),t()},actionType:"danger"})]})]}))}},8396:function(e,t,n){"use strict";n.d(t,{V:function(){return L}});var r=n(2577),o=n(45),i=n(9787),a=n(5202),l=n(5076),s=n(6066),c=n(487),u=n.n(c),d=n(631),p=n.n(d),f=n(2052),h=n.n(f),m=n(4010),g=n.n(m),v=n(1469),b=n.n(v),y=n(9329),x=n.n(y),w=n(9482),k={};k.styleTagTransform=x(),k.setAttributes=g(),k.insert=h().bind(null,"head"),k.domAPI=p(),k.insertStyleElement=b();u()(w.Z,k),w.Z&&w.Z.locals&&w.Z.locals;var E=n(3646),S=n(1881),_=n(6843),j={};j.styleTagTransform=x(),j.setAttributes=g(),j.insert=h().bind(null,"head"),j.domAPI=p(),j.insertStyleElement=b();u()(_.Z,j),_.Z&&_.Z.locals&&_.Z.locals;var C=n(5156),O=n(2335),M=n(4512),I=function(e){var t=e.theme,n=void 0===t?O.C6.LIGHT:t,r=e.closeOnClickOutside,i=void 0===r||r,a=P(n);if(!a)return null;return(0,C.createPortal)((0,M.jsxs)("div",{className:(0,o.Z)("Modal",e.className),role:"dialog","aria-modal":"true",onKeyDown:function(t){t.key===s.tW.ESCAPE&&(t.nativeEvent.stopImmediatePropagation(),t.stopPropagation(),e.onCloseRequest())},"aria-labelledby":e.labelledBy,"data-prevent-outside-click":!0,children:[(0,M.jsx)("div",{className:"Modal__background",onClick:i?e.onCloseRequest:void 0}),(0,M.jsx)("div",{className:"Modal__content",style:{"--max-width":"".concat(e.maxWidth,"px")},tabIndex:0,children:e.children})]}),a)},P=function(e){var t=(0,i.useState)(null),n=(0,r.Z)(t,2),o=n[0],a=n[1],s=(0,l.Fy)(),c=(0,i.useRef)(s.isMobile);c.current=s.isMobile;var u=(0,l.J0)().container;return(0,i.useLayoutEffect)((function(){o&&o.classList.toggle("excalidraw--mobile",s.isMobile)}),[o,s.isMobile]),(0,i.useLayoutEffect)((function(){var t=!(null==u||!u.classList.contains("theme--dark"))||"dark"===e,n=document.createElement("div");return n.classList.add("excalidraw","excalidraw-modal-container"),n.classList.toggle("excalidraw--mobile",c.current),t&&(n.classList.add("theme--dark"),n.classList.add("theme--dark-background-none")),document.body.appendChild(n),a(n),function(){document.body.removeChild(n)}}),[u,e]),o},T=n(6340),D=n(4739),L=function(e){var t=function(){var e=(0,i.useState)(null),t=(0,r.Z)(e,2),n=t[0],o=t[1];return[n,(0,i.useCallback)((function(e){return o(e)}),[])]}(),n=(0,r.Z)(t,2),c=n[0],u=n[1],d=(0,i.useState)(document.activeElement),p=(0,r.Z)(d,1)[0],f=(0,l.J0)().id;(0,i.useEffect)((function(){if(c){var t=(0,T.xp)(c);t.length>0&&!1!==e.autofocus&&(t[1]||t[0]).focus();var n=function(e){if(e.key===s.tW.TAB){var t=(0,T.xp)(c),n=document.activeElement,r=t.findIndex((function(e){return e===n}));0===r&&e.shiftKey?(t[t.length-1].focus(),e.preventDefault()):r!==t.length-1||e.shiftKey||(t[0].focus(),e.preventDefault())}};return c.addEventListener("keydown",n),function(){return c.removeEventListener("keydown",n)}}}),[c,e.autofocus]);var h=(0,D.b9)(l.Dh),m=(0,D.b9)(l.qx),g=function(){h(!1),m(!1),p.focus(),e.onCloseRequest()};return(0,M.jsx)(I,{className:(0,o.Z)("Dialog",e.className),labelledBy:"dialog-title",maxWidth:e.small?550:800,onCloseRequest:g,theme:e.theme,closeOnClickOutside:e.closeOnClickOutside,children:(0,M.jsxs)(S.W,{ref:u,children:[(0,M.jsxs)("h2",{id:"".concat(f,"-dialog-title"),className:"Dialog__title",children:[(0,M.jsx)("span",{className:"Dialog__titleContent",children:e.title}),(0,M.jsx)("button",{className:"Modal__close",onClick:g,title:(0,a.t)("buttons.close"),"aria-label":(0,a.t)("buttons.close"),children:(0,l.Fy)().isMobile?E.op:E.Tw})]}),(0,M.jsx)("div",{className:"Dialog__content",children:e.children})]})})}},6428:function(e,t,n){"use strict";n.d(t,{Z:function(){return _}});var r=n(7169),o=n(2726),i=n(45),a=n(487),l=n.n(a),s=n(631),c=n.n(s),u=n(2052),d=n.n(u),p=n(4010),f=n.n(p),h=n(1469),m=n.n(h),g=n(9329),v=n.n(g),b=n(6148),y={};y.styleTagTransform=v(),y.setAttributes=f(),y.insert=d().bind(null,"head"),y.domAPI=c(),y.insertStyleElement=m();l()(b.Z,y),b.Z&&b.Z.locals&&b.Z.locals;var x=n(5644),w=n(4512),k=["label","onClick","className","children","actionType","type","isLoading"];function E(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function S(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?E(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):E(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var _=function(e){var t=e.label,n=e.onClick,r=e.className,a=e.children,l=e.actionType,s=e.type,c=void 0===s?"button":s,u=e.isLoading,d=(0,o.Z)(e,k),p=l?"Dialog__action-button--".concat(l):"";return(0,w.jsxs)("button",S(S({className:(0,i.Z)("Dialog__action-button",p,r),type:c,"aria-label":t,onClick:n},d),{},{children:[a&&(0,w.jsx)("div",{style:u?{visibility:"hidden"}:{},children:a}),(0,w.jsx)("div",{style:u?{visibility:"hidden"}:{},children:t}),u&&(0,w.jsx)("div",{style:{position:"absolute",inset:0},children:(0,w.jsx)(x.Z,{})})]}))}},1881:function(e,t,n){"use strict";n.d(t,{W:function(){return S}});var r=n(7169),o=n(487),i=n.n(o),a=n(631),l=n.n(a),s=n(2052),c=n.n(s),u=n(4010),d=n.n(u),p=n(1469),f=n.n(p),h=n(9329),m=n.n(h),g=n(7369),v={};v.styleTagTransform=m(),v.setAttributes=d(),v.insert=c().bind(null,"head"),v.domAPI=l(),v.insertStyleElement=f();i()(g.Z,v),g.Z&&g.Z.locals&&g.Z.locals;var b=n(9787),y=n.n(b),x=n(45),w=n(4512);function k(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function E(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?k(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):k(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var S=y().forwardRef((function(e,t){var n=e.children,r=e.padding,o=e.className,i=e.style;return(0,w.jsx)("div",{className:(0,x.Z)("Island",o),style:E({"--padding":r},i),ref:t,children:n})}))},5440:function(e,t,n){"use strict";n.d(t,{z:function(){return u}});var r=n(2577),o=n(5202),i=n(9787),a=n(5644),l=n(45),s=n(2335),c=n(4512),u=function(e){var t=e.delay,n=e.theme,u=(0,i.useState)(!!t),d=(0,r.Z)(u,2),p=d[0],f=d[1];return(0,i.useEffect)((function(){if(t){var e=setTimeout((function(){f(!1)}),t);return function(){return clearTimeout(e)}}}),[t]),p?null:(0,c.jsxs)("div",{className:(0,l.Z)("LoadingMessage",{"LoadingMessage--dark":n===s.C6.DARK}),children:[(0,c.jsx)("div",{children:(0,c.jsx)(a.Z,{})}),(0,c.jsx)("div",{className:"LoadingMessage-text",children:(0,o.t)("labels.loadingScene")})]})}},3202:function(e,t,n){"use strict";n.d(t,{Z:function(){return y}});var r=n(45),o=n(487),i=n.n(o),a=n(631),l=n.n(a),s=n(2052),c=n.n(s),u=n(4010),d=n.n(u),p=n(1469),f=n.n(p),h=n(9329),m=n.n(h),g=n(4955),v={};v.styleTagTransform=m(),v.setAttributes=d(),v.insert=c().bind(null,"head"),v.domAPI=l(),v.insertStyleElement=f();i()(g.Z,v),g.Z&&g.Z.locals&&g.Z.locals;var b=n(4512),y=function(e){var t=e.icon,n=e.onClick,o=e.label,i=e.dataTestId,a=e.shortcut,l=e.isCollaborating;return(0,b.jsxs)("button",{className:(0,r.Z)("menu-item",{"active-collab":l}),"aria-label":o,onClick:n,"data-testid":i,title:o,type:"button",children:[(0,b.jsx)("div",{className:"menu-item__icon",children:t}),(0,b.jsx)("div",{className:"menu-item__text",children:o}),a&&(0,b.jsx)("div",{className:"menu-item__shortcut",children:a})]})}},2891:function(e,t,n){"use strict";n.d(t,{J:function(){return k}});var r=n(9787),o=n(487),i=n.n(o),a=n(631),l=n.n(a),s=n(2052),c=n.n(s),u=n(4010),d=n.n(u),p=n(1469),f=n.n(p),h=n(9329),m=n.n(h),g=n(9935),v={};v.styleTagTransform=m(),v.setAttributes=d(),v.insert=c().bind(null,"head"),v.domAPI=l(),v.insertStyleElement=f();i()(g.Z,v),g.Z&&g.Z.locals&&g.Z.locals;var b=n(5156),y=n(6340),x=n(6066),w=n(4512),k=function(e){var t=e.children,n=e.left,o=e.top,i=e.onCloseRequest,a=e.fitInViewport,l=void 0!==a&&a,s=e.offsetLeft,c=void 0===s?0:s,u=e.offsetTop,d=void 0===u?0:u,p=e.viewportWidth,f=void 0===p?window.innerWidth:p,h=e.viewportHeight,m=void 0===h?window.innerHeight:h,g=(0,r.useRef)(null),v=g.current;return(0,r.useEffect)((function(){if(v){var e=function(e){if(e.key===x.tW.TAB){var t=(0,y.xp)(v),n=document.activeElement,r=t.findIndex((function(e){return e===n}));0===r&&e.shiftKey?(t[t.length-1].focus(),e.preventDefault(),e.stopImmediatePropagation()):r!==t.length-1||e.shiftKey||(t[0].focus(),e.preventDefault(),e.stopImmediatePropagation())}};return v.addEventListener("keydown",e),function(){return v.removeEventListener("keydown",e)}}}),[v]),(0,r.useLayoutEffect)((function(){if(l&&g.current){var e=g.current,t=e.getBoundingClientRect(),n=t.x,r=t.y,o=t.width,i=t.height;n+o-c>f&&(e.style.left="".concat(f-o-10,"px")),r+i-d>m&&(e.style.top="".concat(m-i,"px")),i>=m&&(e.style.height="".concat(m-20,"px"),e.style.top="10px",e.style.overflowY="scroll"),o>=f&&(e.style.width="".concat(f,"px"),e.style.left="0px",e.style.overflowX="scroll")}}),[l,f,m,c,d]),(0,r.useEffect)((function(){if(i){var e=function(e){var t;null!==(t=g.current)&&void 0!==t&&t.contains(e.target)||(0,b.unstable_batchedUpdates)((function(){return i(e)}))};return document.addEventListener("pointerdown",e,!1),function(){return document.removeEventListener("pointerdown",e,!1)}}}),[i]),(0,w.jsx)("div",{className:"popover",style:{top:o,left:n},ref:g,children:t})}},9430:function(e,t,n){"use strict";n.d(t,{Y:function(){return R},b:function(){return z}});var r=n(2577),o=n(9787),i=n.n(o),a=n(1881),l=n(4739),s=n(9487),c=i().createContext({}),u=n(45),d=n(5202),p=n(5076),f=n(3646),h=n(7169),m=n(4512);function g(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var v=n(1894),b=function(e){return(0,m.jsx)("div",{className:"layer-ui__sidebar-dock-button","data-testid":"sidebar-dock",children:(0,m.jsxs)(v.u,{label:(0,d.t)("labels.sidebarLock"),children:[(0,m.jsxs)("label",{className:(0,u.Z)("ToolIcon ToolIcon__lock ToolIcon_type_floating","ToolIcon_size_medium"),children:[(0,m.jsx)("input",{className:"ToolIcon_type_checkbox",type:"checkbox",onChange:e.onChange,checked:e.checked,"aria-label":(0,d.t)("labels.sidebarLock")})," ",(0,m.jsx)("div",{className:(0,u.Z)("Sidebar__pin-btn",{"Sidebar__pin-btn--pinned":e.checked}),tabIndex:0,children:f.qQ})," "]})," "]})})},y=function(e){var t=(0,o.createContext)([!1,function(){}]),n=function(e){var n=e.children,i=(0,o.useState)(!1),a=(0,r.Z)(i,2),l=a[0],s=a[1],c=(0,o.useMemo)((function(){return[l,s]}),[l]);return(0,m.jsx)(t.Provider,{value:c,children:n})},i=function(n){var i=(0,o.useContext)(t),a=(0,r.Z)(i,2),l=a[0],s=a[1];return(0,o.useLayoutEffect)((function(){if(!n.__isFallback)return s(!0),function(){return s(!1)}}),[n.__isFallback,s]),n.__isFallback&&l?null:(0,m.jsx)(e,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?g(Object(n),!0).forEach((function(t){(0,h.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):g(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},n))};return e.name&&(i.displayName="".concat(e.name,"_upstreamOverrideWrapper"),n.displayName="".concat(e.name,"_upstreamOverrideContextWrapper")),[n,i]}((function(e){var t=e.children,n=e.className,r=(0,p.Fy)(),i=(0,o.useContext)(c),a=!(!r.canDeviceFitSidebar||!i.dockable),l=!!i.onClose;return(0,m.jsxs)("div",{className:(0,u.Z)("layer-ui__sidebar__header",n),"data-testid":"sidebar-header",children:[t,(a||l)&&(0,m.jsxs)("div",{className:"layer-ui__sidebar__header__buttons",children:[a&&(0,m.jsx)(b,{checked:!!i.docked,onChange:function(){var e;null===(e=i.onDock)||void 0===e||e.call(i,!i.docked)}}),l&&(0,m.jsx)("button",{"data-testid":"sidebar-close",className:"Sidebar__close-btn",onClick:i.onClose,"aria-label":(0,d.t)("buttons.close"),children:f.Tw})]})]})})),x=(0,r.Z)(y,2),w={Context:x[0],Component:x[1]},k=n(487),E=n.n(k),S=n(631),_=n.n(S),j=n(2052),C=n.n(j),O=n(4010),M=n.n(O),I=n(1469),P=n.n(I),T=n(9329),D=n.n(T),L=n(8208),A={};A.styleTagTransform=D(),A.setAttributes=M(),A.insert=C().bind(null,"head"),A.domAPI=_(),A.insertStyleElement=P();E()(L.Z,A),L.Z&&L.Z.locals&&L.Z.locals;var Z=n(6340),z=(0,l.cn)({rendered:0,docked:0}),R=Object.assign((0,o.forwardRef)((function(e,t){var n,i=e.children,d=e.onClose,f=e.onDock,h=e.docked,g=e.initialDockedState,v=void 0===g?h:g,b=e.dockable,y=void 0===b||b,x=e.className,k=e.__isInternal,E=(0,l.KO)(z,s.yE),S=(0,r.Z)(E,2),_=S[0],j=S[1],C=(0,p.n9)(),O=(0,o.useState)(null!==(n=null!=h?h:v)&&void 0!==n&&n),M=(0,r.Z)(O,2),I=M[0],P=M[1];(0,o.useLayoutEffect)((function(){void 0===h&&C((function(e){return P(e.isSidebarDocked),null}))}),[C,h]),(0,o.useLayoutEffect)((function(){if(!k)return j((function(e){return{rendered:e.rendered+1,docked:I?e.docked+1:e.docked}})),function(){j((function(e){return{rendered:e.rendered-1,docked:I?e.docked-1:e.docked}}))}}),[k,j,I]);var T=(0,o.useRef)(d);T.current=d,(0,o.useEffect)((function(){return function(){var e;null===(e=T.current)||void 0===e||e.call(T)}}),[]);var D=(0,o.useRef)({});return D.current.onClose=function(){C({openSidebar:null})},D.current.onDock=function(e){void 0===h&&(C({isSidebarDocked:e}),P(e)),null==f||f(e)},D.current=(0,Z.v4)(D.current,{docked:null!=h?h:I,dockable:y}),_.rendered>0&&k?null:(0,m.jsx)(a.W,{className:(0,u.Z)("layer-ui__sidebar",{"layer-ui__sidebar--docked":I},x),ref:t,children:(0,m.jsx)(c.Provider,{value:D.current,children:(0,m.jsxs)(w.Context,{children:[(0,m.jsx)(w.Component,{__isFallback:!0}),i]})})})})),{Header:w.Component})},5644:function(e,t,n){"use strict";n.d(t,{Z:function(){return b}});var r=n(487),o=n.n(r),i=n(631),a=n.n(i),l=n(2052),s=n.n(l),c=n(4010),u=n.n(c),d=n(1469),p=n.n(d),f=n(9329),h=n.n(f),m=n(5892),g={};g.styleTagTransform=h(),g.setAttributes=u(),g.insert=s().bind(null,"head"),g.domAPI=a(),g.insertStyleElement=p();o()(m.Z,g),m.Z&&m.Z.locals&&m.Z.locals;var v=n(4512),b=function(e){var t=e.size,n=void 0===t?"1em":t,r=e.circleWidth,o=void 0===r?8:r;return(0,v.jsx)("div",{className:"Spinner",children:(0,v.jsx)("svg",{viewBox:"0 0 100 100",style:{width:n,height:n},children:(0,v.jsx)("circle",{cx:"50",cy:"50",r:50-o/2,strokeWidth:o,fill:"none",strokeMiterlimit:"10"})})})}},1319:function(e,t,n){"use strict";n.d(t,{V:function(){return h}});var r=n(8950),o=n(2577),i=n(2975),a=n.n(i),l=(n(5422),n(9787)),s=n.n(l),c=n(45),u=n(5076),d=n(6797),p=n(5644),f=n(4512),h=s().forwardRef((function(e,t){var n=(0,u.J0)().id,i=s().useRef(null);s().useImperativeHandle(t,(function(){return i.current}));var h="ToolIcon_size_".concat(e.size),m=(0,l.useState)(!1),g=(0,o.Z)(m,2),v=g[0],b=g[1],y=(0,l.useRef)(!0),x=function(){var t=(0,r.Z)(a().mark((function t(n){var r,o;return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!(o="onClick"in e&&(null===(r=e.onClick)||void 0===r?void 0:r.call(e,n)))||!("then"in o)){t.next=18;break}return t.prev=2,b(!0),t.next=6,o;case 6:t.next=15;break;case 8:if(t.prev=8,t.t0=t.catch(2),t.t0 instanceof d._){t.next=14;break}throw t.t0;case 14:console.warn(t.t0);case 15:return t.prev=15,y.current&&b(!1),t.finish(15);case 18:case"end":return t.stop()}}),t,null,[[2,8,15,18]])})));return function(e){return t.apply(this,arguments)}}();(0,l.useEffect)((function(){return function(){y.current=!1}}),[]);var w=(0,l.useRef)(null);if("button"===e.type||"icon"===e.type||"submit"===e.type){var k="icon"===e.type?"button":e.type;return(0,f.jsxs)("button",{className:(0,c.Z)("ToolIcon_type_button",h,e.className,e.visible&&!e.hidden?"ToolIcon_type_button--show":"ToolIcon_type_button--hide",{ToolIcon:!e.hidden,"ToolIcon--selected":e.selected,"ToolIcon--plain":"icon"===e.type}),"data-testid":e["data-testid"],hidden:e.hidden,title:e.title,"aria-label":e["aria-label"],type:k,onClick:x,ref:i,disabled:v||e.isLoading,children:[(e.icon||e.label)&&(0,f.jsxs)("div",{className:"ToolIcon__icon","aria-hidden":"true",children:[e.icon||e.label,e.keyBindingLabel&&(0,f.jsx)("span",{className:"ToolIcon__keybinding",children:e.keyBindingLabel}),e.isLoading&&(0,f.jsx)(p.Z,{})]}),e.showAriaLabel&&(0,f.jsxs)("div",{className:"ToolIcon__label",children:[e["aria-label"]," ",v&&(0,f.jsx)(p.Z,{})]}),e.children]})}return(0,f.jsxs)("label",{className:(0,c.Z)("ToolIcon",e.className),title:e.title,onPointerDown:function(t){var n;w.current=t.pointerType||null,null===(n=e.onPointerDown)||void 0===n||n.call(e,{pointerType:t.pointerType||null})},onPointerUp:function(){requestAnimationFrame((function(){w.current=null}))},children:[(0,f.jsx)("input",{className:"ToolIcon_type_radio ".concat(h),type:"radio",name:e.name,"aria-label":e["aria-label"],"aria-keyshortcuts":e["aria-keyshortcuts"],"data-testid":e["data-testid"],id:"".concat(n,"-").concat(e.id),onChange:function(){var t;null===(t=e.onChange)||void 0===t||t.call(e,{pointerType:w.current})},checked:e.checked,ref:i}),(0,f.jsxs)("div",{className:"ToolIcon__icon",children:[e.icon,e.keyBindingLabel&&(0,f.jsx)("span",{className:"ToolIcon__keybinding",children:e.keyBindingLabel})]})]})}));h.defaultProps={visible:!0,className:"",size:"medium"},h.displayName="ToolButton"},1894:function(e,t,n){"use strict";n.d(t,{u:function(){return w},bK:function(){return y},Js:function(){return x}});var r=n(487),o=n.n(r),i=n(631),a=n.n(i),l=n(2052),s=n.n(l),c=n(4010),u=n.n(c),d=n(1469),p=n.n(d),f=n(9329),h=n.n(f),m=n(6626),g={};g.styleTagTransform=h(),g.setAttributes=u(),g.insert=s().bind(null,"head"),g.domAPI=a(),g.insertStyleElement=p();o()(m.Z,g),m.Z&&m.Z.locals&&m.Z.locals;var v=n(9787),b=n(4512),y=function(){var e=document.querySelector(".excalidraw-tooltip");if(e)return e;var t=document.createElement("div");return document.body.appendChild(t),t.classList.add("excalidraw-tooltip"),t},x=function(e,t){var n,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"bottom",o=e.getBoundingClientRect(),i=window.innerWidth,a=window.innerHeight,l=5,s=t.left+t.width/2-o.width/2;s<0?s=l:s+o.width>=i&&(s=i-o.width-l),"bottom"===r?(n=t.top+t.height+l)+o.height>=a&&(n=t.top-o.height-l):(n=t.top-o.height-l)<0&&(n=t.top+t.height+l),Object.assign(e.style,{top:"".concat(n,"px"),left:"".concat(s,"px")})},w=function(e){var t=e.children,n=e.label,r=e.long,o=void 0!==r&&r,i=e.style;return(0,v.useEffect)((function(){return function(){return y().classList.remove("excalidraw-tooltip--visible")}}),[]),(0,b.jsx)("div",{className:"excalidraw-tooltip-wrapper",onPointerEnter:function(e){return function(e,t,n,r){t.classList.add("excalidraw-tooltip--visible"),t.style.minWidth=r?"50ch":"10ch",t.style.maxWidth=r?"50ch":"15ch",t.textContent=n;var o=e.getBoundingClientRect();x(t,o)}(e.currentTarget,y(),n,o)},onPointerLeave:function(){return y().classList.remove("excalidraw-tooltip--visible")},style:i,children:t})}},3646:function(e,t,n){"use strict";n.d(t,{$c:function(){return oe},$q:function(){return N},BF:function(){return Ee},BN:function(){return se},BR:function(){return te},Ct:function(){return fe},DG:function(){return ne},DJ:function(){return C},DS:function(){return ze},EO:function(){return $e},FC:function(){return S},Gc:function(){return ue},HL:function(){return he},Hy:function(){return G},IN:function(){return de},J8:function(){return re},Mw:function(){return O},NA:function(){return F},NW:function(){return K},Nw:function(){return tt},OA:function(){return Ye},OW:function(){return I},P7:function(){return et},Pm:function(){return Z},RJ:function(){return Se},RY:function(){return Y},Re:function(){return T},ST:function(){return ye},Sd:function(){return B},Tl:function(){return ee},Tw:function(){return we},UE:function(){return ie},VL:function(){return z},Vl:function(){return le},Vq:function(){return y},W2:function(){return Ae},W5:function(){return be},Wl:function(){return Me},X7:function(){return Ce},XB:function(){return R},XH:function(){return H},YA:function(){return w},ZA:function(){return Oe},_C:function(){return E},_U:function(){return j},a0:function(){return _e},a1:function(){return $},a5:function(){return Pe},aA:function(){return Qe},aT:function(){return Te},bf:function(){return De},by:function(){return V},e0:function(){return D},eQ:function(){return q},fr:function(){return Re},gK:function(){return xe},h0:function(){return X},il:function(){return Ne},j8:function(){return He},kL:function(){return U},kM:function(){return Le},m:function(){return We},m9:function(){return Ie},mh:function(){return ge},nb:function(){return P},np:function(){return je},nq:function(){return Ue},o3:function(){return qe},oQ:function(){return _},oT:function(){return Je},op:function(){return ke},pO:function(){return x},po:function(){return Q},pw:function(){return pe},q0:function(){return Fe},qQ:function(){return k},rn:function(){return nt},rr:function(){return Xe},t5:function(){return ce},tW:function(){return Ke},tb:function(){return A},tn:function(){return Be},tv:function(){return b},uD:function(){return ve},vo:function(){return Ge},wr:function(){return Ze},xL:function(){return W},xP:function(){return J},xs:function(){return me},z6:function(){return Ve},zG:function(){return ae},zb:function(){return L},zu:function(){return M}});var r=n(7169),o=n(2726),i=n(9787),a=n.n(i),l=n(5284),s=n(45),c=n(2335),u=n(4512),d=["width","height","mirror","style"];function p(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function f(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?p(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):p(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var h=function(e){return e===c.C6.LIGHT?l.white:"#1e1e1e"},m=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:512,n="number"==typeof t?{width:t}:t,r=n.width,i=void 0===r?512:r,a=n.height,l=void 0===a?i:a,c=n.mirror,p=n.style,h=(0,o.Z)(n,d);return(0,u.jsx)("svg",f(f({"aria-hidden":"true",focusable:"false",role:"img",viewBox:"0 0 ".concat(i," ").concat(l),className:(0,s.Z)({"rtl-mirror":c}),style:p},h),{},{children:"string"==typeof e?(0,u.jsx)("path",{fill:"currentColor",d:e}):e}))},g={width:24,height:24,fill:"none",strokeWidth:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},v={width:20,height:20,fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},b=m((0,u.jsxs)("g",{strokeWidth:1.5,children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("polyline",{points:"5 12 3 12 12 3 21 12 19 12"}),(0,u.jsx)("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"}),(0,u.jsx)("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"})]}),g),y=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"}),(0,u.jsx)("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"}),(0,u.jsx)("line",{x1:"3",y1:"6",x2:"3",y2:"19"}),(0,u.jsx)("line",{x1:"12",y1:"6",x2:"12",y2:"19"}),(0,u.jsx)("line",{x1:"21",y1:"6",x2:"21",y2:"19"})]}),g),x=m((0,u.jsxs)("svg",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),(0,u.jsx)("line",{x1:"5",y1:"12",x2:"19",y2:"12"})]}),g),w=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("circle",{cx:"12",cy:"12",r:"1"}),(0,u.jsx)("circle",{cx:"12",cy:"19",r:"1"}),(0,u.jsx)("circle",{cx:"12",cy:"5",r:"1"})]}),g),k=m((0,u.jsxs)("svg",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"}),(0,u.jsx)("line",{x1:"12",y1:"16",x2:"12",y2:"21"}),(0,u.jsx)("line",{x1:"8",y1:"4",x2:"16",y2:"4"})]}),g),E=m((0,u.jsxs)("g",{children:[(0,u.jsx)("path",{d:"M13.542 8.542H6.458a2.5 2.5 0 0 0-2.5 2.5v3.75a2.5 2.5 0 0 0 2.5 2.5h7.084a2.5 2.5 0 0 0 2.5-2.5v-3.75a2.5 2.5 0 0 0-2.5-2.5Z",stroke:"currentColor",strokeWidth:"1.25"}),(0,u.jsx)("path",{d:"M10 13.958a1.042 1.042 0 1 0 0-2.083 1.042 1.042 0 0 0 0 2.083Z",stroke:"currentColor",strokeWidth:"1.25"}),(0,u.jsx)("mask",{id:"UnlockedIcon",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:6,y:1,width:9,height:9,children:(0,u.jsx)("path",{stroke:"none",d:"M6.399 9.561V5.175c0-.93.401-1.823 1.116-2.48a3.981 3.981 0 0 1 2.693-1.028c1.01 0 1.98.37 2.694 1.027.715.658 1.116 1.55 1.116 2.481",fill:"#fff"})}),(0,u.jsx)("g",{mask:"url(#UnlockedIcon)",children:(0,u.jsx)("path",{stroke:"none",d:"M5.149 9.561v1.25h2.5v-1.25h-2.5Zm5.06-7.894V.417v1.25Zm2.559 3.508v1.25h2.5v-1.25h-2.5ZM7.648 8.51V5.175h-2.5V8.51h2.5Zm0-3.334c0-.564.243-1.128.713-1.561L6.668 1.775c-.959.883-1.52 2.104-1.52 3.4h2.5Zm.713-1.561a2.732 2.732 0 0 1 1.847-.697v-2.5c-1.31 0-2.585.478-3.54 1.358L8.36 3.614Zm1.847-.697c.71 0 1.374.26 1.847.697l1.694-1.839a5.231 5.231 0 0 0-3.54-1.358v2.5Zm1.847.697c.47.433.713.997.713 1.561h2.5c0-1.296-.56-2.517-1.52-3.4l-1.693 1.839Z",fill:"currentColor"})})]}),v),S=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M13.542 8.542H6.458a2.5 2.5 0 0 0-2.5 2.5v3.75a2.5 2.5 0 0 0 2.5 2.5h7.084a2.5 2.5 0 0 0 2.5-2.5v-3.75a2.5 2.5 0 0 0-2.5-2.5Z"}),(0,u.jsx)("path",{d:"M10 13.958a1.042 1.042 0 1 0 0-2.083 1.042 1.042 0 0 0 0 2.083Z"}),(0,u.jsx)("path",{d:"M6.667 8.333V5.417C6.667 3.806 8.159 2.5 10 2.5c1.841 0 3.333 1.306 3.333 2.917v2.916"})]}),v),_=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{d:"M38.5 83.5c-14-2-17.833-10.473-21-22.5C14.333 48.984 12 22 12 12.5",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"}),(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"m12.005 10.478 7.905 14.423L6 25.75l6.005-15.273Z",fill:"currentColor"}),(0,u.jsx)("path",{d:"M12.005 10.478c1.92 3.495 3.838 7 7.905 14.423m-7.905-14.423c3.11 5.683 6.23 11.368 7.905 14.423m0 0c-3.68.226-7.35.455-13.91.85m13.91-.85c-5.279.33-10.566.647-13.91.85m0 0c1.936-4.931 3.882-9.86 6.005-15.273M6 25.75c2.069-5.257 4.135-10.505 6.005-15.272",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"})]}),{width:41,height:94,fill:"none"}),j=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{d:"M18.026 1.232c-5.268 13.125-5.548 33.555 3.285 42.311 8.823 8.75 33.31 12.304 42.422 13.523",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"}),(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"m72.181 59.247-13.058-10-2.948 13.62 16.006-3.62Z",fill:"currentColor"}),(0,u.jsx)("path",{d:"M72.181 59.247c-3.163-2.429-6.337-4.856-13.058-10m13.058 10c-5.145-3.936-10.292-7.882-13.058-10m0 0c-.78 3.603-1.563 7.196-2.948 13.62m2.948-13.62c-1.126 5.168-2.24 10.346-2.948 13.62m0 0c5.168-1.166 10.334-2.343 16.006-3.62m-16.006 3.62c5.51-1.248 11.01-2.495 16.006-3.62",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"})]}),{width:85,height:71,fill:"none"}),C=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{d:"M1 77c14-2 31.833-11.973 35-24 3.167-12.016-6-35-9.5-43.5",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"}),(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"m24.165 1.093-2.132 16.309 13.27-4.258-11.138-12.05Z",fill:"currentColor"}),(0,u.jsx)("path",{d:"M24.165 1.093c-.522 3.953-1.037 7.916-2.132 16.309m2.131-16.309c-.835 6.424-1.68 12.854-2.13 16.308m0 0c3.51-1.125 7.013-2.243 13.27-4.257m-13.27 4.257c5.038-1.608 10.08-3.232 13.27-4.257m0 0c-3.595-3.892-7.197-7.777-11.14-12.05m11.14 12.05c-3.837-4.148-7.667-8.287-11.14-12.05",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"})]}),{width:38,height:78,fill:"none"}),O=m((0,u.jsxs)("g",{fill:"currentColor",children:[(0,u.jsx)("path",{d:"M24.296 12.214c0 .112-.134.224-.291.224-.135 0-.516.629-.808 1.392-.897 2.335-9.867 20.096-9.89 19.534 0-.292-.134-.494-.359-.494-.313 0-.358.18-.224 1.055.135 1.01.045 1.236-3.14 7.432-1.793 3.525-3.722 7.208-4.282 8.196-.584 1.032-1.032 2.155-1.077 2.626-.067.809.022.92 1.973 2.605 1.122.988 2.557 2.223 3.185 2.784 2.826 2.582 4.149 3.615 4.508 3.547.538-.09 8.858-8.823 8.88-9.317 0-.225-.403-3.638-.897-7.59-.852-6.735-1.66-14.616-1.57-15.38.068-.47-.269-2.85-.516-3.884-.201-.808-.112-1.145 1.503-4.827.942-2.178 2.176-4.85 2.714-5.928.515-1.077.964-2.02.964-2.088 0-.067-.157-.112-.336-.112-.18 0-.337.09-.337.225Zm-5.158 16.772c.247 1.572.74 5.344 1.099 8.375.695 5.568 1.503 11.742 1.727 13.314.135.786.045.943-1.413 2.56-2.534 2.851-5.225 5.658-6.145 6.376l-.852.674-4.373-4.086c-4.037-3.728-4.373-4.11-4.127-4.558a5154.2 5154.2 0 0 1 2.535-4.626 727.864 727.864 0 0 0 3.678-6.78c.784-1.46 1.502-2.717 1.637-2.785.156-.09.201 2.178.156 7.006-.09 7.207-.067 7.23.651 7.072.09 0 .157-3.637.157-8.06V35.43l2.355-4.715c1.3-2.605 2.377-4.693 2.422-4.67.045.022.27 1.347.493 2.94ZM9.562 1.818C7.903 3.143 5.346 5.388 3.328 7.32L1.735 8.823l.292 1.976c.157 1.078.449 3.188.628 4.67.202 1.482.404 2.874.47 3.077.09.269 0 .404-.246.404-.426 0-.449-.113.718 3.592.286.952.577 1.903.875 2.851.044.158.224.225.425.158.202-.09.314-.27.247-.427-.067-.18.045-.36.224-.427.247-.09.225-.269-.157-.92-.605-1.01-2.152-9.633-2.242-12.416-.067-1.976-.067-1.999.762-3.121.808-1.1 2.67-2.762 5.54-4.873.807-.605 1.614-1.28 1.839-1.504.336-.404.493-.292 3.319 2.717 1.637 1.729 3.453 3.502 4.037 3.952l1.076.808-.83 1.75c-.448.944-2.265 4.581-4.059 8.04-3.745 7.274-2.983 6.578-7.333 6.645l-2.826.023-.942 1.077c-.987 1.146-1.121 1.572-.65 2.29.18.248.313.652.313.898 0 .405.157.472 1.055.517.56.023 1.076.09 1.144.157.067.068.156 1.46.224 3.098l.09 2.965-1.503 3.232C1.735 45.422.749 47.891.749 48.7c0 .427.09.786.18.786.224 0 .224-.022 9.35-19.085a4398.495 4398.495 0 0 1 8.927-18.546c.672-1.369 1.278-2.626 1.323-2.806.045-.202-1.503-1.751-3.97-3.93-2.22-1.975-4.171-3.772-4.35-3.974-.516-.628-1.279-.426-2.647.674ZM8.441 31.231c-.18.472-.65 1.46-1.031 2.2-.629 1.258-.696 1.303-.853.786-.09-.314-.157-1.235-.18-2.066-.022-1.639-.067-1.616 1.817-1.728L8.8 30.4l-.358.831Zm1.884-3.592c-1.032 1.998-1.077 2.02-3.903 2.155-2.489.135-2.533.112-2.533-.36 0-.269-.09-.628-.203-.808-.134-.202-.044-.56.27-1.055l.493-.763H6.69c1.234-.023 2.647-.113 3.14-.202.494-.09.92-.135.965-.113.045.023-.18.54-.471 1.146Zm-.09-20.477c-.404.292-.516.584-.516 1.325 0 .875.067 1.01.673 1.257.605.247.763.224 1.458-.247.92-.629.941-.786.269-1.796-.583-.876-1.166-1.033-1.884-.54Z"}),(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M23.703 11.793c.166-.291.501-.514.93-.514.38 0 .698.161.82.283.161.162.225.35.225.54a.822.822 0 0 1-.056.289c-.08.218-.5 1.106-.983 2.116-.535 1.071-1.76 3.727-2.699 5.895-.79 1.802-1.209 2.784-1.404 3.416-.142.461-.132.665-.058.961.264 1.103.6 3.647.53 4.132-.088.756.727 8.547 1.57 15.21.5 3.997.903 7.45.903 7.676l-.001.033c-.004.087-.041.288-.211.54-.24.354-.914 1.143-1.8 2.119-2.004 2.21-5.107 5.423-6.463 6.653-.322.292-.566.485-.696.56a.884.884 0 0 1-.289.111c-.194.037-.579-.007-1.11-.349-.707-.453-1.981-1.522-4-3.366-.627-.561-2.061-1.794-3.176-2.776-.81-.699-1.308-1.138-1.612-1.466-.32-.343-.47-.61-.549-.87-.078-.257-.085-.515-.055-.874.05-.52.521-1.769 1.166-2.91.559-.985 2.48-4.654 4.269-8.17 1.579-3.071 2.392-4.663 2.792-5.612.32-.759.329-1 .277-1.387-.085-.553-.092-.891-.052-1.092a.942.942 0 0 1 .274-.52c.164-.157.384-.261.704-.261.094 0 .184.011.27.033 1.924-3.44 8.554-16.632 9.316-18.616.276-.724.64-1.336.848-1.556a.965.965 0 0 1 .32-.228Zm-5.399 16.402c-.49.942-.971 1.888-1.446 2.837l-2.28 4.565v7.871c0 4.023-.06 7.404-.136 8.04-.067.552-.474.691-.654.722l.075-.008c-.317.07-.574.063-.778-.023-.234-.098-.5-.297-.63-.857-.156-.681-.158-2.462-.103-6.893.019-2.022.022-3.592.008-4.725-.156.276-.315.562-.467.843a737.624 737.624 0 0 1-3.682 6.79 3618.972 3618.972 0 0 0-2.462 4.493c.062.088.169.231.289.364.55.61 1.631 1.623 3.624 3.462l3.931 3.674.377-.298c.907-.709 3.554-3.479 6.055-6.293.425-.47.73-.814.946-1.084.175-.22.28-.36.319-.501.031-.117.002-.227-.024-.379l-.004-.02c-.224-1.572-1.032-7.753-1.728-13.33-.358-3.022-.85-6.782-1.096-8.349l-.002-.01c-.042-.301-.087-.603-.132-.891ZM9.118 1.264C9.91.628 10.537.27 11.028.144c.727-.186 1.27.003 1.713.53.186.209 2.107 1.972 4.287 3.912 2.02 1.783 3.434 3.16 3.897 3.743.326.41.322.756.296.873a1.046 1.046 0 0 1-.005.018c-.047.188-.669 1.512-1.374 2.947a4348.55 4348.55 0 0 0-8.923 18.54c-7.335 15.32-8.808 18.396-9.217 19.015-.235.355-.419.404-.525.437a.815.815 0 0 1-.249.036.745.745 0 0 1-.647-.363C.176 49.67.04 49.222.04 48.7c0-.286.09-.754.316-1.434.452-1.356 1.466-3.722 3.225-7.53l1.432-3.083-.084-2.787a72.902 72.902 0 0 0-.156-2.53 7.307 7.307 0 0 0-.539-.046c-.463-.024-.764-.062-.96-.124-.304-.096-.48-.252-.598-.438-.105-.165-.17-.374-.17-.663 0-.134-.081-.348-.178-.481l-.019-.028c-.293-.448-.406-.831-.373-1.234.04-.484.34-1.052 1.08-1.91l.759-.869c-.103-.325-.471-1.513-.854-2.787-.737-2.339-1.004-3.238-1.018-3.578-.016-.393.134-.59.27-.715a.721.721 0 0 1 .192-.125 89.87 89.87 0 0 1-.414-2.782 231.651 231.651 0 0 0-.625-4.652l-.292-1.976a.71.71 0 0 1 .215-.62l1.589-1.501C4.87 4.86 7.446 2.599 9.118 1.264Zm-1.833 33.75a.819.819 0 0 1-.406.208.73.73 0 0 1-.491-.063l.048 1.618v.009l.849-1.773Zm5.874.697c-.035.087-.07.175-.107.261a20.92 20.92 0 0 1-.36.798.688.688 0 0 1 .457.007l.01.004v-1.07Zm.72-1.892-.015.018a.745.745 0 0 1-.407.236c.02.195.027.378 0 .592l.422-.846ZM7.7 31.175c-.268.027-.489.055-.6.07-.006.056-.013.13-.016.194-.005.19 0 .42.004.694.003.111.006.225.011.338.232-.471.459-.956.6-1.296Zm2.12-1.456a2.04 2.04 0 0 1-.415.31c.064.104.099.222.104.341l.132-.277.18-.374Zm-.14-2.374c-.654.079-1.882.153-2.974.173h-1.87l-.281.435c-.09.141-.17.331-.203.414.102.21.189.508.226.788h.007c.364.006.928-.023 1.805-.07 1.243-.06 1.88-.052 2.315-.291.154-.086.266-.215.387-.393.176-.261.354-.605.587-1.056Zm2.136-1.784c-.157.16-.331.3-.52.422a.631.631 0 0 1 .182.281l.337-.703Zm7.205-1.478c-.222.442-.445.883-.667 1.32a.787.787 0 0 1 .61.007c.036.018.145.07.243.2-.032-.165-.067-.33-.105-.493-.088-.351-.137-.633-.08-1.034h-.001ZM11.415 2.546c-.358.319-1.039.879-1.725 1.394C6.903 5.989 5.087 7.59 4.301 8.662c-.28.38-.458.605-.556.852-.15.38-.103.798-.068 1.824.063 1.923.833 6.669 1.493 9.686.262 1.199.483 2.11.654 2.394.25.426.364.71.398.894a.923.923 0 0 1-.184.764l1.27-.01c.863-.014 1.523.003 2.056-.019.424-.017.75-.052 1.034-.187.336-.159.596-.458.921-.955.62-.948 1.373-2.515 2.705-5.103 1.789-3.448 3.6-7.076 4.047-8.015l.582-1.227-.62-.466c-.595-.458-2.45-2.263-4.12-4.027a59.654 59.654 0 0 0-2.498-2.52ZM5.81 24.876v-.001l-.013-.03.013.031Zm-.71-.835.027-.011a.55.55 0 0 0-.028.011Zm19.904-11.777v.01-.01Zm.002-.016v-.034.034ZM9.82 6.587c-.587.424-.81.823-.81 1.9 0 .787.12 1.157.344 1.42.158.186.388.339.77.494.352.144.603.207.838.209.347.002.688-.12 1.285-.525.707-.483.98-.864 1.036-1.238.052-.352-.09-.812-.574-1.54-.412-.619-.853-.95-1.29-1.072-.489-.139-1.016-.05-1.586.342l-.013.01Zm2.015 2.028a6.288 6.288 0 0 0-.306-.52c-.19-.284-.326-.488-.531-.5-.113-.007-.224.058-.352.146-.218.159-.218.34-.218.745 0 .198.02.419.028.504.047.025.133.068.204.097.133.054.222.102.312.103.04 0 .071-.027.12-.054a4.29 4.29 0 0 0 .358-.225c.147-.1.299-.223.385-.296ZM9.12 1.263l-.002.002.002-.002Z"})]}),{width:26,height:62,fill:"none"}),M=m((0,u.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M6 6l4.153 11.793a0.365 .365 0 0 0 .331 .207a0.366 .366 0 0 0 .332 -.207l2.184 -4.793l4.787 -1.994a0.355 .355 0 0 0 .213 -.323a0.355 .355 0 0 0 -.213 -.323l-11.787 -4.36z"}),(0,u.jsx)("path",{d:"M13.5 13.5l4.5 4.5"})]}),{fill:"none",width:22,height:22,strokeWidth:1.25}),I=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("rect",{x:"4",y:"4",width:"16",height:"16",rx:"2"})]}),g),P=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M10.5 20.4l-6.9 -6.9c-.781 -.781 -.781 -2.219 0 -3l6.9 -6.9c.781 -.781 2.219 -.781 3 0l6.9 6.9c.781 .781 .781 2.219 0 3l-6.9 6.9c-.781 .781 -2.219 .781 -3 0z"})]}),g),T=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("circle",{cx:"12",cy:"12",r:"9"})]}),g),D=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"5",y1:"12",x2:"19",y2:"12"}),(0,u.jsx)("line",{x1:"15",y1:"16",x2:"19",y2:"12"}),(0,u.jsx)("line",{x1:"15",y1:"8",x2:"19",y2:"12"})]}),g),L=m((0,u.jsx)("path",{d:"M4.167 10h11.666",strokeWidth:"1.5"}),v),A=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"}),(0,u.jsx)("path",{d:"M16 7h4"}),(0,u.jsx)("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"})]}),g),Z=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{clipRule:"evenodd",d:"m7.643 15.69 7.774-7.773a2.357 2.357 0 1 0-3.334-3.334L4.31 12.357a3.333 3.333 0 0 0-.977 2.357v1.953h1.953c.884 0 1.732-.352 2.357-.977Z"}),(0,u.jsx)("path",{d:"m11.25 5.417 3.333 3.333"})]}),v),z=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"20",x2:"7",y2:"20"}),(0,u.jsx)("line",{x1:"14",y1:"20",x2:"21",y2:"20"}),(0,u.jsx)("line",{x1:"6.9",y1:"15",x2:"13.8",y2:"15"}),(0,u.jsx)("line",{x1:"10.2",y1:"6.3",x2:"16",y2:"20"}),(0,u.jsx)("polyline",{points:"5 20 11 4 13 4 20 20"})]}),g),R=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M12.5 6.667h.01"}),(0,u.jsx)("path",{d:"M4.91 2.625h10.18a2.284 2.284 0 0 1 2.285 2.284v10.182a2.284 2.284 0 0 1-2.284 2.284H4.909a2.284 2.284 0 0 1-2.284-2.284V4.909a2.284 2.284 0 0 1 2.284-2.284Z"}),(0,u.jsx)("path",{d:"m3.333 12.5 3.334-3.333c.773-.745 1.726-.745 2.5 0l4.166 4.166"}),(0,u.jsx)("path",{d:"m11.667 11.667.833-.834c.774-.744 1.726-.744 2.5 0l1.667 1.667"})]}),v),N=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"}),(0,u.jsx)("path",{d:"M18 13.3l-6.3 -6.3"})]}),g),B=m((0,u.jsx)("path",{strokeWidth:"1.25",d:"M10 4.167v11.666M4.167 10h11.666"}),v),W=m((0,u.jsx)("path",{d:"M5 10h10",strokeWidth:"1.25"}),v),H=m((0,u.jsx)("path",{strokeWidth:"1.25",d:"M3.333 5.833h13.334M8.333 9.167v5M11.667 9.167v5M4.167 5.833l.833 10c0 .92.746 1.667 1.667 1.667h6.666c.92 0 1.667-.746 1.667-1.667l.833-10M7.5 5.833v-2.5c0-.46.373-.833.833-.833h3.334c.46 0 .833.373.833.833v2.5"}),v),F=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M14.375 6.458H8.958a2.5 2.5 0 0 0-2.5 2.5v5.417a2.5 2.5 0 0 0 2.5 2.5h5.417a2.5 2.5 0 0 0 2.5-2.5V8.958a2.5 2.5 0 0 0-2.5-2.5Z"}),(0,u.jsx)("path",{clipRule:"evenodd",d:"M11.667 3.125c.517 0 .986.21 1.325.55.34.338.55.807.55 1.325v1.458H8.333c-.485 0-.927.185-1.26.487-.343.312-.57.75-.609 1.24l-.005 5.357H5a1.87 1.87 0 0 1-1.326-.55 1.87 1.87 0 0 1-.549-1.325V5c0-.518.21-.987.55-1.326.338-.34.807-.549 1.325-.549h6.667Z"})]}),v),U=m((0,u.jsx)("path",{clipRule:"evenodd",d:"M10 2.5h.328a6.25 6.25 0 0 0 6.6 10.372A7.5 7.5 0 1 1 10 2.493V2.5Z",stroke:"currentColor"}),v),K=m((0,u.jsx)("g",{stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:(0,u.jsx)("path",{d:"M10 12.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM10 4.167V2.5M14.167 5.833l1.166-1.166M15.833 10H17.5M14.167 14.167l1.166 1.166M10 15.833V17.5M5.833 14.167l-1.166 1.166M5 10H3.333M5.833 5.833 4.667 4.667"})}),v),Y=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"6",x2:"20",y2:"6"}),(0,u.jsx)("line",{x1:"4",y1:"12",x2:"20",y2:"12"}),(0,u.jsx)("line",{x1:"4",y1:"18",x2:"20",y2:"18"})]}),g),G=m((0,u.jsx)("path",{strokeWidth:"1.25",d:"M3.333 14.167v1.666c0 .92.747 1.667 1.667 1.667h10c.92 0 1.667-.746 1.667-1.667v-1.666M5.833 9.167 10 13.333l4.167-4.166M10 3.333v10"}),v),V=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("circle",{cx:"12",cy:"12",r:"9"}),(0,u.jsx)("line",{x1:"12",y1:"17",x2:"12",y2:"17.01"}),(0,u.jsx)("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"})]}),g),X=m((0,u.jsx)("path",{strokeWidth:"1.25",d:"M9.167 5.833H5.833c-1.254 0-2.5 1.282-2.5 2.5v5.834c0 1.283 1.252 2.5 2.5 2.5h5.834c1.251 0 2.5-1.25 2.5-2.5v-3.334M8.333 11.667l8.334-8.334M12.5 3.333h4.167V7.5"}),v),q=(m((0,u.jsx)("path",{d:"M7.5 15.833c-3.583 1.167-3.583-2.083-5-2.5m10 4.167v-2.917c0-.833.083-1.166-.417-1.666 2.334-.25 4.584-1.167 4.584-5a3.833 3.833 0 0 0-1.084-2.667 3.5 3.5 0 0 0-.083-2.667s-.917-.25-2.917 1.084a10.25 10.25 0 0 0-5.166 0C5.417 2.333 4.5 2.583 4.5 2.583a3.5 3.5 0 0 0-.083 2.667 3.833 3.833 0 0 0-1.084 2.667c0 3.833 2.25 4.75 4.584 5-.5.5-.5 1-.417 1.666V17.5",strokeWidth:"1.25"}),v),m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M7.5 10.833a.833.833 0 1 0 0-1.666.833.833 0 0 0 0 1.666ZM12.5 10.833a.833.833 0 1 0 0-1.666.833.833 0 0 0 0 1.666ZM6.25 6.25c2.917-.833 4.583-.833 7.5 0M5.833 13.75c2.917.833 5.417.833 8.334 0"}),(0,u.jsx)("path",{d:"M12.917 14.167c0 .833 1.25 2.5 1.666 2.5 1.25 0 2.361-1.39 2.917-2.5.556-1.39.417-4.861-1.25-9.584-1.214-.846-2.5-1.116-3.75-1.25l-.833 2.084M7.083 14.167c0 .833-1.13 2.5-1.526 2.5-1.191 0-2.249-1.39-2.778-2.5-.529-1.39-.397-4.861 1.19-9.584 1.157-.846 2.318-1.116 3.531-1.25l.833 2.084"})]}),v),m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c-.002 -.249 1.51 -2.772 1.818 -4.013z"})]}),g),m((0,u.jsx)("polyline",{fill:"none",stroke:"currentColor",points:"20 6 9 17 4 12"}),{width:24,height:24})),J=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M8.333 11.667a2.917 2.917 0 0 0 4.167 0l3.333-3.334a2.946 2.946 0 1 0-4.166-4.166l-.417.416"}),(0,u.jsx)("path",{d:"M11.667 8.333a2.917 2.917 0 0 0-4.167 0l-3.333 3.334a2.946 2.946 0 0 0 4.166 4.166l.417-.416"})]}),v),$=m("M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z",{width:448,height:512}),Q=m("M252 54L203 8a28 27 0 00-20-8H28C12 0 0 12 0 27v195c0 15 12 26 28 26h204c15 0 28-11 28-26V73a28 27 0 00-8-19zM130 213c-21 0-37-16-37-36 0-19 16-35 37-35 20 0 37 16 37 35 0 20-17 36-37 36zm56-169v56c0 4-4 6-7 6H44c-4 0-7-2-7-6V42c0-4 3-7 7-7h133l4 2 3 2a7 7 0 012 5z M296 201l87 95-188 205-78 9c-10 1-19-8-18-20l9-84zm141-14l-41-44a31 31 0 00-46 0l-38 41 87 95 38-42c13-14 13-36 0-50z",{width:448,height:512}),ee=m((0,u.jsx)("path",{d:"m9.257 6.351.183.183H15.819c.34 0 .727.182 1.051.506.323.323.505.708.505 1.05v5.819c0 .316-.183.7-.52 1.035-.337.338-.723.522-1.037.522H4.182c-.352 0-.74-.181-1.058-.5-.318-.318-.499-.705-.499-1.057V5.182c0-.351.181-.736.5-1.054.32-.321.71-.503 1.057-.503H6.53l2.726 2.726Z",strokeWidth:"1.25"}),v),te=m("M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z",{width:384,height:512}),ne=m("M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"),re=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M15 8h.01"}),(0,u.jsx)("path",{d:"M12 20h-5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v5"}),(0,u.jsx)("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l4 4"}),(0,u.jsx)("path",{d:"M14 14l1 -1c.617 -.593 1.328 -.793 2.009 -.598"}),(0,u.jsx)("path",{d:"M19 16v6"}),(0,u.jsx)("path",{d:"M22 19l-3 3l-3 -3"})]}),g),oe=(m("M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z",{width:512,height:512}),m("M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z",{width:448,height:512}),m("M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z",{width:448,height:512}),m("M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z")),ie=(m("M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"),m((0,u.jsx)("path",{d:"M7.5 10.833 4.167 7.5 7.5 4.167M4.167 7.5h9.166a3.333 3.333 0 0 1 0 6.667H12.5",strokeWidth:"1.25"}),v)),ae=m((0,u.jsx)("path",{d:"M12.5 10.833 15.833 7.5 12.5 4.167M15.833 7.5H6.667a3.333 3.333 0 1 0 0 6.667H7.5",strokeWidth:"1.25"}),v),le=m("M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z",{mirror:!0}),se=m((0,u.jsx)("path",{d:"M5 12.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM15 7.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM15 17.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM7.25 8.917l5.5-2.834M7.25 11.083l5.5 2.834",strokeWidth:"1.5"}),v),ce=(m("M16 5l-1.42 1.42-1.59-1.59V16h-1.98V4.83L9.42 6.42 8 5l4-4 4 4zm4 5v11c0 1.1-.9 2-2 2H6c-1.11 0-2-.9-2-2V10c0-1.11.89-2 2-2h3v2H6v11h12V10h-3V8h3c1.1 0 2 .89 2 2z",{width:24,height:24}),m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{fill:"currentColor",d:"M40 5.6v6.1l-4.1.7c-8.9 1.4-16.5 6.9-20.6 15C13 32 10.9 43 12.4 43c.4 0 2.4-1.3 4.4-3 5-3.9 12.1-7 18.2-7.7l5-.6v12.8l11.2-11.3L62.5 22 51.2 10.8 40-.5v6.1zm10.2 22.6L44 34.5v-6.8l-6.9.6c-3.9.3-9.8 1.7-13.2 3.1-3.5 1.4-6.5 2.4-6.7 2.2-.9-1 3-7.5 6.4-10.8C28 18.6 34.4 16 40.1 16c3.7 0 3.9-.1 3.9-3.2V9.5l6.2 6.3 6.3 6.2-6.3 6.2z"}),(0,u.jsx)("path",{stroke:"currentColor",fill:"currentColor",d:"M0 36v20h48v-6.2c0-6 0-6.1-2-4.3-1.1 1-2 2.9-2 4.2V52H4V34c0-17.3-.1-18-2-18s-2 .7-2 20z"})]}),{width:64,height:64}),m((0,u.jsx)("path",{stroke:"currentColor",strokeWidth:"40",fill:"currentColor",d:"M148 560a318 318 0 0 0 522 110 316 316 0 0 0 0-450 316 316 0 0 0-450 0c-11 11-21 22-30 34v4h47c25 0 46 21 46 46s-21 45-46 45H90c-13 0-25-6-33-14-9-9-14-20-14-33V156c0-25 20-45 45-45s45 20 45 45v32l1 1a401 401 0 0 1 623 509l212 212a42 42 0 0 1-59 59L698 757A401 401 0 0 1 65 570a42 42 0 0 1 83-10z"}),{width:1024}),m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{d:"M13.889 4.167H8.333c-.767 0-1.389.622-1.389 1.389v5.555c0 .767.622 1.389 1.39 1.389h5.555c.767 0 1.389-.622 1.389-1.389V5.556c0-.767-.622-1.39-1.39-1.39Z",fill:"currentColor"}),(0,u.jsx)("path",{d:"M12.5 12.5v1.389a1.389 1.389 0 0 1-1.389 1.389H5.556a1.389 1.389 0 0 1-1.39-1.39V8.334a1.389 1.389 0 0 1 1.39-1.389h1.388"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v)),ue=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.944 12.5H12.5v1.389a1.389 1.389 0 0 1-1.389 1.389H5.556a1.389 1.389 0 0 1-1.39-1.39V8.334a1.389 1.389 0 0 1 1.39-1.389h1.388",fill:"currentColor"}),(0,u.jsx)("path",{d:"M13.889 4.167H8.333c-.767 0-1.389.621-1.389 1.389v5.555c0 .767.622 1.389 1.39 1.389h5.555c.767 0 1.389-.622 1.389-1.389V5.556c0-.768-.622-1.39-1.39-1.39Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),de=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M8.775 6.458h2.45a2.316 2.316 0 0 1 2.317 2.316v2.452a2.316 2.316 0 0 1-2.316 2.316H8.774a2.316 2.316 0 0 1-2.317-2.316V8.774a2.316 2.316 0 0 1 2.317-2.316Z",fill:"currentColor"}),(0,u.jsx)("path",{d:"M5.441 9.792h2.451a2.316 2.316 0 0 1 2.316 2.316v2.45a2.316 2.316 0 0 1-2.316 2.317h-2.45a2.316 2.316 0 0 1-2.317-2.316v-2.451a2.316 2.316 0 0 1 2.316-2.316ZM12.108 3.125h2.45a2.316 2.316 0 0 1 2.317 2.316v2.451a2.316 2.316 0 0 1-2.316 2.316h-2.451a2.316 2.316 0 0 1-2.316-2.316v-2.45a2.316 2.316 0 0 1 2.316-2.317Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),pe=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",children:[(0,u.jsx)("path",{d:"M5.441 9.792h2.451a2.316 2.316 0 0 1 2.316 2.316v2.45a2.316 2.316 0 0 1-2.316 2.317h-2.45a2.316 2.316 0 0 1-2.317-2.316v-2.451a2.316 2.316 0 0 1 2.316-2.316Z",stroke:"currentColor",strokeWidth:"1.25"}),(0,u.jsx)("path",{d:"M5.441 9.792h2.451a2.316 2.316 0 0 1 2.316 2.316v2.45a2.316 2.316 0 0 1-2.316 2.317h-2.45a2.316 2.316 0 0 1-2.317-2.316v-2.451a2.316 2.316 0 0 1 2.316-2.316Z",stroke:"currentColor",strokeWidth:"1.25"}),(0,u.jsx)("mask",{id:"SendToBackIcon",fill:"#fff",children:(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.167 5.833v2.06a2.941 2.941 0 0 0 2.94 2.94h2.06v.393a2.941 2.941 0 0 1-2.941 2.94h-.393v-2.058a2.941 2.941 0 0 0-2.94-2.941h-2.06v-.393a2.941 2.941 0 0 1 2.942-2.94h.392Z"})}),(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.167 5.833v2.06a2.941 2.941 0 0 0 2.94 2.94h2.06v.393a2.941 2.941 0 0 1-2.941 2.94h-.393v-2.058a2.941 2.941 0 0 0-2.94-2.941h-2.06v-.393a2.941 2.941 0 0 1 2.942-2.94h.392Z",fill:"currentColor"}),(0,u.jsx)("path",{d:"M9.167 5.833h1.25v-1.25h-1.25v1.25Zm5 5h1.25v-1.25h-1.25v1.25Zm-3.334 3.334h-1.25v1.25h1.25v-1.25Zm-5-5h-1.25v1.25h1.25v-1.25Zm2.084-3.334v2.06h2.5v-2.06h-2.5Zm0 2.06a4.191 4.191 0 0 0 4.19 4.19v-2.5a1.691 1.691 0 0 1-1.69-1.69h-2.5Zm4.19 4.19h2.06v-2.5h-2.06v2.5Zm.81-1.25v.393h2.5v-.393h-2.5Zm0 .393c0 .933-.758 1.69-1.691 1.69v2.5a4.191 4.191 0 0 0 4.19-4.19h-2.5Zm-1.691 1.69h-.393v2.5h.393v-2.5Zm.857 1.25v-2.058h-2.5v2.059h2.5Zm0-2.058a4.191 4.191 0 0 0-4.19-4.191v2.5c.933 0 1.69.757 1.69 1.69h2.5Zm-4.19-4.191h-2.06v2.5h2.06v-2.5Zm-.81 1.25v-.393h-2.5v.393h2.5Zm0-.393c0-.934.758-1.69 1.692-1.69v-2.5a4.191 4.191 0 0 0-4.192 4.19h2.5Zm1.692-1.69h.392v-2.5h-.392v2.5Z",fill:"currentColor",mask:"url(#SendToBackIcon)"}),(0,u.jsx)("path",{d:"M12.108 3.125h2.45a2.316 2.316 0 0 1 2.317 2.316v2.451a2.316 2.316 0 0 1-2.316 2.316h-2.451a2.316 2.316 0 0 1-2.316-2.316v-2.45a2.316 2.316 0 0 1 2.316-2.317Z",stroke:"currentColor",strokeWidth:"1.25"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),fe=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M3.333 3.333h13.334",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M13.542 6.458h-.417c-.92 0-1.667.747-1.667 1.667v7.083c0 .92.746 1.667 1.667 1.667h.417c.92 0 1.666-.746 1.666-1.667V8.125c0-.92-.746-1.667-1.666-1.667ZM6.875 6.458h-.417c-.92 0-1.666.747-1.666 1.667v3.75c0 .92.746 1.667 1.666 1.667h.417c.92 0 1.667-.746 1.667-1.667v-3.75c0-.92-.747-1.667-1.667-1.667Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),he=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M3.333 16.667h13.334",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M6.875 3.125h-.417c-.92 0-1.666.746-1.666 1.667v7.083c0 .92.746 1.667 1.666 1.667h.417c.92 0 1.667-.746 1.667-1.667V4.792c0-.92-.747-1.667-1.667-1.667ZM13.542 5.817h-.417c-.92 0-1.667.747-1.667 1.667v4.391c0 .92.746 1.667 1.667 1.667h.417c.92 0 1.666-.746 1.666-1.667V7.484c0-.92-.746-1.667-1.666-1.667Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),me=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M3.333 3.333v13.334",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M15.208 4.792H8.125c-.92 0-1.667.746-1.667 1.666v.417c0 .92.747 1.667 1.667 1.667h7.083c.92 0 1.667-.747 1.667-1.667v-.417c0-.92-.746-1.666-1.667-1.666ZM12.516 11.458H8.125c-.92 0-1.667.746-1.667 1.667v.417c0 .92.747 1.666 1.667 1.666h4.391c.92 0 1.667-.746 1.667-1.666v-.417c0-.92-.746-1.667-1.667-1.667Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),ge=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M16.667 3.333v13.334",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M11.875 4.792H4.792c-.92 0-1.667.746-1.667 1.666v.417c0 .92.746 1.667 1.667 1.667h7.083c.92 0 1.667-.747 1.667-1.667v-.417c0-.92-.746-1.666-1.667-1.666ZM11.683 11.458H7.292c-.92 0-1.667.746-1.667 1.667v.417c0 .92.746 1.666 1.667 1.666h4.39c.921 0 1.667-.746 1.667-1.666v-.417c0-.92-.746-1.667-1.666-1.667Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),ve=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M16.667 3.333v13.334M3.333 3.333v13.334",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M14.375 10.208v-.416c0-.92-.746-1.667-1.667-1.667H7.292c-.92 0-1.667.746-1.667 1.667v.416c0 .92.746 1.667 1.667 1.667h5.416c.92 0 1.667-.746 1.667-1.667Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),be=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M3.333 3.333h13.334M3.333 16.667h13.334",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M10.208 5.625h-.416c-.92 0-1.667.746-1.667 1.667v5.416c0 .92.746 1.667 1.667 1.667h.416c.92 0 1.667-.746 1.667-1.667V7.292c0-.92-.746-1.667-1.667-1.667Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),ye=m((0,u.jsxs)("g",{stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M1.667 10h2.916",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M8.333 10h3.334",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M15.417 10h2.916",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M6.875 4.792h-.417c-.92 0-1.666.746-1.666 1.666v7.084c0 .92.746 1.666 1.666 1.666h.417c.92 0 1.667-.746 1.667-1.666V6.458c0-.92-.747-1.666-1.667-1.666ZM13.542 6.458h-.417c-.92 0-1.667.747-1.667 1.667v3.75c0 .92.746 1.667 1.667 1.667h.417c.92 0 1.666-.746 1.666-1.667v-3.75c0-.92-.746-1.667-1.666-1.667Z"})]}),v),xe=m((0,u.jsxs)("g",{stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M10 18.333v-2.916",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M10 11.667V8.333",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M10 4.583V1.667",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M4.792 13.125v.417c0 .92.746 1.666 1.666 1.666h7.084c.92 0 1.666-.746 1.666-1.666v-.417c0-.92-.746-1.667-1.666-1.667H6.458c-.92 0-1.666.746-1.666 1.667ZM6.458 6.458v.417c0 .92.747 1.667 1.667 1.667h3.75c.92 0 1.667-.747 1.667-1.667v-.417c0-.92-.746-1.666-1.667-1.666h-3.75c-.92 0-1.667.746-1.667 1.666Z"})]}),v),we=(m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("circle",{cx:"9",cy:"7",r:"4"}),(0,u.jsx)("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"}),(0,u.jsx)("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"}),(0,u.jsx)("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"})]}),g),m("M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"),m("M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"),m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:(0,u.jsx)("path",{d:"M15 5 5 15M5 5l10 10"})}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v)),ke=m("M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z",{width:320,height:512,style:{marginLeft:"-0.2rem"},mirror:!0}),Ee=(m("M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z",{mirror:!0}),m("M11.553 22.894a.998.998 0 00.894 0s3.037-1.516 5.465-4.097C19.616 16.987 21 14.663 21 12V5a1 1 0 00-.649-.936l-8-3a.998.998 0 00-.702 0l-8 3A1 1 0 003 5v7c0 2.663 1.384 4.987 3.088 6.797 2.428 2.581 5.465 4.097 5.465 4.097zm-1.303-8.481l6.644-6.644a.856.856 0 111.212 1.212l-7.25 7.25a.856.856 0 01-1.212 0l-3.75-3.75a.856.856 0 111.212-1.212l3.144 3.144z",{width:24}),m("M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z",{width:384,height:512}),a().memo((function(e){var t=e.theme;return m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{d:"M25 26H111V111H25",fill:"var(--icon-fill-color)"}),(0,u.jsx)("path",{d:"M25 111C25 80.2068 25 49.4135 25 26M25 26C48.6174 26 72.2348 26 111 26H25ZM25 26C53.3671 26 81.7343 26 111 26H25ZM111 26C111 52.303 111 78.606 111 111V26ZM111 26C111 51.2947 111 76.5893 111 111V26ZM111 111C87.0792 111 63.1585 111 25 111H111ZM111 111C87.4646 111 63.9293 111 25 111H111ZM25 111C25 81.1514 25 51.3028 25 26V111Z",stroke:"var(--icon-fill-color)",strokeWidth:"2"}),(0,u.jsx)("path",{d:"M100 100H160V160H100",fill:"var(--icon-fill-color)"}),(0,u.jsx)("path",{d:"M100 160C100 144.106 100 128.211 100 100M100 100C117.706 100 135.412 100 160 100H100ZM100 100C114.214 100 128.428 100 160 100H100ZM160 100C160 120.184 160 140.369 160 160V100ZM160 100C160 113.219 160 126.437 160 160V100ZM160 160C145.534 160 131.068 160 100 160H160ZM160 160C143.467 160 126.934 160 100 160H160ZM100 160C100 143.661 100 127.321 100 100V160Z",stroke:"var(--icon-fill-color)",strokeWidth:"2"}),(0,u.jsxs)("g",{fill:h(t),stroke:"var(--icon-fill-color)",strokeWidth:"6",children:[(0,u.jsx)("rect",{x:"2.5",y:"2.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"2.5",y:"149.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"147.5",y:"149.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"147.5",y:"2.5",width:"30",height:"30"})]})]}),{width:182,height:182,mirror:!0})}))),Se=a().memo((function(e){var t=e.theme;return m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{d:"M25 26H111V111H25",fill:"var(--icon-fill-color)"}),(0,u.jsx)("path",{d:"M25 111C25 80.2068 25 49.4135 25 26M25 26C48.6174 26 72.2348 26 111 26H25ZM25 26C53.3671 26 81.7343 26 111 26H25ZM111 26C111 52.303 111 78.606 111 111V26ZM111 26C111 51.2947 111 76.5893 111 111V26ZM111 111C87.0792 111 63.1585 111 25 111H111ZM111 111C87.4646 111 63.9293 111 25 111H111ZM25 111C25 81.1514 25 51.3028 25 26V111Z",stroke:"var(--icon-fill-color)",strokeWidth:"2"}),(0,u.jsx)("path",{d:"M100 100H160V160H100",fill:"var(--icon-fill-color)"}),(0,u.jsx)("path",{d:"M100 160C100 144.106 100 128.211 100 100M100 100C117.706 100 135.412 100 160 100H100ZM100 100C114.214 100 128.428 100 160 100H100ZM160 100C160 120.184 160 140.369 160 160V100ZM160 100C160 113.219 160 126.437 160 160V100ZM160 160C145.534 160 131.068 160 100 160H160ZM160 160C143.467 160 126.934 160 100 160H160ZM100 160C100 143.661 100 127.321 100 100V160Z",stroke:"var(--icon-fill-color)",strokeWidth:"2"}),(0,u.jsxs)("g",{fill:h(t),stroke:"var(--icon-fill-color)",strokeWidth:"6",children:[(0,u.jsx)("rect",{x:"2.5",y:"2.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"78.5",y:"149.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"147.5",y:"149.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"147.5",y:"78.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"105.5",y:"2.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"2.5",y:"102.5",width:"30",height:"30"})]})]}),{width:182,height:182,mirror:!0})})),_e=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{d:"M5.879 2.625h8.242a3.254 3.254 0 0 1 3.254 3.254v8.242a3.254 3.254 0 0 1-3.254 3.254H5.88a3.254 3.254 0 0 1-3.254-3.254V5.88a3.254 3.254 0 0 1 3.254-3.254Z",stroke:"currentColor",strokeWidth:"1.25"}),(0,u.jsx)("mask",{id:"FillHachureIcon",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:2,y:2,width:16,height:16,children:(0,u.jsx)("path",{d:"M5.879 2.625h8.242a3.254 3.254 0 0 1 3.254 3.254v8.242a3.254 3.254 0 0 1-3.254 3.254H5.88a3.254 3.254 0 0 1-3.254-3.254V5.88a3.254 3.254 0 0 1 3.254-3.254Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"1.25"})}),(0,u.jsx)("g",{mask:"url(#FillHachureIcon)",children:(0,u.jsx)("path",{d:"M2.258 15.156 15.156 2.258M7.324 20.222 20.222 7.325m-20.444 5.35L12.675-.222m-8.157 18.34L17.416 5.22",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})})]}),v),je=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",children:[(0,u.jsx)("path",{d:"M5.879 2.625h8.242a3.254 3.254 0 0 1 3.254 3.254v8.242a3.254 3.254 0 0 1-3.254 3.254H5.88a3.254 3.254 0 0 1-3.254-3.254V5.88a3.254 3.254 0 0 1 3.254-3.254Z",stroke:"currentColor",strokeWidth:"1.25"}),(0,u.jsx)("mask",{id:"FillCrossHatchIcon",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:-1,y:-1,width:22,height:22,children:(0,u.jsx)("path",{d:"M2.426 15.044 15.044 2.426M7.383 20 20 7.383M0 12.617 12.617 0m-7.98 17.941L17.256 5.324m-2.211 12.25L2.426 4.956M20 12.617 7.383 0m5.234 20L0 7.383m17.941 7.98L5.324 2.745",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),(0,u.jsx)("g",{mask:"url(#FillCrossHatchIcon)",children:(0,u.jsx)("path",{d:"M14.121 2H5.88A3.879 3.879 0 0 0 2 5.879v8.242A3.879 3.879 0 0 0 5.879 18h8.242A3.879 3.879 0 0 0 18 14.121V5.88A3.879 3.879 0 0 0 14.121 2Z",fill:"currentColor"})})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),Ce=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("g",{clipPath:"url(#a)",children:(0,u.jsx)("path",{d:"M4.91 2.625h10.18a2.284 2.284 0 0 1 2.285 2.284v10.182a2.284 2.284 0 0 1-2.284 2.284H4.909a2.284 2.284 0 0 1-2.284-2.284V4.909a2.284 2.284 0 0 1 2.284-2.284Z",stroke:"currentColor",strokeWidth:"1.25"})}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),f(f({},v),{},{fill:"currentColor"})),Oe=m((0,u.jsx)(u.Fragment,{children:(0,u.jsx)("path",{d:"M4.167 10h11.666",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),v),Me=m((0,u.jsx)("path",{d:"M5 10h10",stroke:"currentColor",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round"}),v),Ie=m((0,u.jsx)("path",{d:"M5 10h10",stroke:"currentColor",strokeWidth:"3.75",strokeLinecap:"round",strokeLinejoin:"round"}),v),Pe=m((0,u.jsxs)("g",{strokeWidth:"2",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M5 12h2"}),(0,u.jsx)("path",{d:"M17 12h2"}),(0,u.jsx)("path",{d:"M11 12h2"})]}),g),Te=m((0,u.jsxs)("g",{strokeWidth:"2",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M4 12v.01"}),(0,u.jsx)("path",{d:"M8 12v.01"}),(0,u.jsx)("path",{d:"M12 12v.01"}),(0,u.jsx)("path",{d:"M16 12v.01"}),(0,u.jsx)("path",{d:"M20 12v.01"})]}),g),De=m((0,u.jsx)("path",{d:"M2.5 12.038c1.655-.885 5.9-3.292 8.568-4.354 2.668-1.063.101 2.821 1.32 3.104 1.218.283 5.112-1.814 5.112-1.814",strokeWidth:"1.25"}),v),Le=m((0,u.jsx)("path",{d:"M2.5 12.563c1.655-.886 5.9-3.293 8.568-4.355 2.668-1.062.101 2.822 1.32 3.105 1.218.283 5.112-1.814 5.112-1.814m-13.469 2.23c2.963-1.586 6.13-5.62 7.468-4.998 1.338.623-1.153 4.11-.132 5.595 1.02 1.487 6.133-1.43 6.133-1.43",strokeWidth:"1.25"}),v),Ae=m((0,u.jsx)("path",{d:"M2.5 11.936c1.737-.879 8.627-5.346 10.42-5.268 1.795.078-.418 5.138.345 5.736.763.598 3.53-1.789 4.235-2.147M2.929 9.788c1.164-.519 5.47-3.28 6.987-3.114 1.519.165 1 3.827 2.121 4.109 1.122.281 3.839-2.016 4.606-2.42",strokeWidth:"1.25"}),v),Ze=m((0,u.jsxs)("svg",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{d:"M3.33334 9.99998V6.66665C3.33334 6.04326 3.33403 4.9332 3.33539 3.33646C4.95233 3.33436 6.06276 3.33331 6.66668 3.33331H10"}),(0,u.jsx)("path",{d:"M13.3333 3.33331V3.34331"}),(0,u.jsx)("path",{d:"M16.6667 3.33331V3.34331"}),(0,u.jsx)("path",{d:"M16.6667 6.66669V6.67669"}),(0,u.jsx)("path",{d:"M16.6667 10V10.01"}),(0,u.jsx)("path",{d:"M3.33334 13.3333V13.3433"}),(0,u.jsx)("path",{d:"M16.6667 13.3333V13.3433"}),(0,u.jsx)("path",{d:"M3.33334 16.6667V16.6767"}),(0,u.jsx)("path",{d:"M6.66666 16.6667V16.6767"}),(0,u.jsx)("path",{d:"M10 16.6667V16.6767"}),(0,u.jsx)("path",{d:"M13.3333 16.6667V16.6767"}),(0,u.jsx)("path",{d:"M16.6667 16.6667V16.6767"})]}),v),ze=m((0,u.jsxs)("g",{strokeWidth:"1.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"}),(0,u.jsx)("line",{x1:"16",y1:"4",x2:"16",y2:"4.01"}),(0,u.jsx)("line",{x1:"20",y1:"4",x2:"20",y2:"4.01"}),(0,u.jsx)("line",{x1:"20",y1:"8",x2:"20",y2:"8.01"}),(0,u.jsx)("line",{x1:"20",y1:"12",x2:"20",y2:"12.01"}),(0,u.jsx)("line",{x1:"4",y1:"16",x2:"4",y2:"16.01"}),(0,u.jsx)("line",{x1:"20",y1:"16",x2:"20",y2:"16.01"}),(0,u.jsx)("line",{x1:"4",y1:"20",x2:"4",y2:"20.01"}),(0,u.jsx)("line",{x1:"8",y1:"20",x2:"8",y2:"20.01"}),(0,u.jsx)("line",{x1:"12",y1:"20",x2:"12",y2:"20.01"}),(0,u.jsx)("line",{x1:"16",y1:"20",x2:"16",y2:"20.01"}),(0,u.jsx)("line",{x1:"20",y1:"20",x2:"20",y2:"20.01"})]}),g),Re=m((0,u.jsx)("path",{d:"M6 10H34",stroke:"currentColor",strokeWidth:2,fill:"none"}),{width:40,height:20}),Ne=a().memo((function(e){var t=e.flip,n=void 0!==t&&t;return m((0,u.jsxs)("g",{transform:n?"translate(40, 0) scale(-1, 1)":"",stroke:"currentColor",strokeWidth:2,fill:"none",children:[(0,u.jsx)("path",{d:"M34 10H6M34 10L27 5M34 10L27 15"}),(0,u.jsx)("path",{d:"M27.5 5L34.5 10L27.5 15"})]}),{width:40,height:20})})),Be=a().memo((function(e){var t=e.flip,n=void 0!==t&&t;return m((0,u.jsxs)("g",{stroke:"currentColor",fill:"currentColor",transform:n?"translate(40, 0) scale(-1, 1)":"",children:[(0,u.jsx)("path",{d:"M32 10L6 10",strokeWidth:2}),(0,u.jsx)("circle",{r:"4",transform:"matrix(-1 0 0 1 30 10)"})]}),{width:40,height:20})})),We=a().memo((function(e){var t=e.flip,n=void 0!==t&&t;return m((0,u.jsx)("g",{transform:n?"translate(40, 0) scale(-1, 1)":"",children:(0,u.jsx)("path",{d:"M34 10H5.99996M34 10L34 5M34 10L34 15",stroke:"currentColor",strokeWidth:2,fill:"none"})}),{width:40,height:20})})),He=a().memo((function(e){var t=e.flip,n=void 0!==t&&t;return m((0,u.jsxs)("g",{stroke:"currentColor",fill:"currentColor",transform:n?"translate(40, 0) scale(-1, 1)":"",children:[(0,u.jsx)("path",{d:"M32 10L6 10",strokeWidth:2}),(0,u.jsx)("path",{d:"M27.5 5.5L34.5 10L27.5 14.5L27.5 5.5"})]}),{width:40,height:20})})),Fe=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("g",{clipPath:"url(#a)",children:(0,u.jsx)("path",{d:"M14.167 6.667a3.333 3.333 0 0 0-3.334-3.334H9.167a3.333 3.333 0 0 0 0 6.667h1.666a3.333 3.333 0 0 1 0 6.667H9.167a3.333 3.333 0 0 1-3.334-3.334",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),Ue=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("g",{clipPath:"url(#a)",children:(0,u.jsx)("path",{d:"M5 16.667V3.333L10 15l5-11.667v13.334",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),Ke=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("g",{clipPath:"url(#a)",children:(0,u.jsx)("path",{d:"M5.833 3.333v13.334h8.334",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),Ye=m((0,u.jsx)(u.Fragment,{children:(0,u.jsx)("path",{d:"m1.667 3.333 6.666 13.334M8.333 3.333 1.667 16.667M11.667 3.333v13.334h6.666",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),v),Ge=m((0,u.jsx)(u.Fragment,{children:(0,u.jsx)("g",{stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:(0,u.jsx)("path",{d:"M5.833 16.667v-10a3.333 3.333 0 0 1 3.334-3.334h1.666a3.333 3.333 0 0 1 3.334 3.334v10M5.833 10.833h8.334"})})}),v),Ve=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:(0,u.jsx)("path",{d:"M5.833 6.667 2.5 10l3.333 3.333M14.167 6.667 17.5 10l-3.333 3.333M11.667 3.333 8.333 16.667"})}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),Xe=m((0,u.jsxs)("g",{stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"8",x2:"20",y2:"8"}),(0,u.jsx)("line",{x1:"4",y1:"12",x2:"12",y2:"12"}),(0,u.jsx)("line",{x1:"4",y1:"16",x2:"16",y2:"16"})]}),g),qe=m((0,u.jsxs)("g",{stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"8",x2:"20",y2:"8"}),(0,u.jsx)("line",{x1:"8",y1:"12",x2:"16",y2:"12"}),(0,u.jsx)("line",{x1:"6",y1:"16",x2:"18",y2:"16"})]}),g),Je=m((0,u.jsxs)("g",{stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"8",x2:"20",y2:"8"}),(0,u.jsx)("line",{x1:"10",y1:"12",x2:"20",y2:"12"}),(0,u.jsx)("line",{x1:"8",y1:"16",x2:"20",y2:"16"})]}),g),$e=a().memo((function(e){e.theme;return m((0,u.jsxs)("g",{strokeWidth:"1.5",stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"4",x2:"20",y2:"4"}),(0,u.jsx)("rect",{x:"9",y:"8",width:"6",height:"12",rx:"2"})]}),g)})),Qe=a().memo((function(e){e.theme;return m((0,u.jsxs)("g",{strokeWidth:"2",stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"20",x2:"20",y2:"20"}),(0,u.jsx)("rect",{x:"9",y:"4",width:"6",height:"12",rx:"2"})]}),g)})),et=a().memo((function(e){e.theme;return m((0,u.jsxs)("g",{strokeWidth:"1.5",stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"12",x2:"9",y2:"12"}),(0,u.jsx)("line",{x1:"15",y1:"12",x2:"20",y2:"12"}),(0,u.jsx)("rect",{x:"9",y:"6",width:"6",height:"12",rx:"2"})]}),g)})),tt=m((0,u.jsx)("path",{d:"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z",fill:"currentColor"}),{width:640,height:512}),nt=m((0,u.jsx)("path",{d:"M480 416C497.7 416 512 430.3 512 448C512 465.7 497.7 480 480 480H150.6C133.7 480 117.4 473.3 105.4 461.3L25.37 381.3C.3786 356.3 .3786 315.7 25.37 290.7L258.7 57.37C283.7 32.38 324.3 32.38 349.3 57.37L486.6 194.7C511.6 219.7 511.6 260.3 486.6 285.3L355.9 416H480zM265.4 416L332.7 348.7L195.3 211.3L70.63 336L150.6 416L265.4 416z"}))},2335:function(e,t,n){"use strict";n.d(t,{jo:function(){return ce},iC:function(){return y},gK:function(){return fe},$C:function(){return M},oc:function(){return j},qy:function(){return le},rk:function(){return L},n5:function(){return D},h6:function(){return se},Hg:function(){return A},cW:function(){return $},hs:function(){return Z},f:function(){return x},xY:function(){return ge},Iw:function(){return k},$e:function(){return E},Vi:function(){return O},Ks:function(){return v},r8:function(){return N},ZB:function(){return ae},pb:function(){return B},ut:function(){return I},k:function(){return z},sA:function(){return G},LL:function(){return W},EE:function(){return oe},qx:function(){return w},$n:function(){return ue},zK:function(){return ie},LO:function(){return R},Zj:function(){return Y},EH:function(){return V},Yx:function(){return ne},sS:function(){return te},kV:function(){return ee},sk:function(){return re},eF:function(){return Q},Oh:function(){return C},WR:function(){return ve},HM:function(){return U},ay:function(){return _},hR:function(){return de},Gj:function(){return H},I8:function(){return me},wZ:function(){return S},C6:function(){return P},ZF:function(){return X},nM:function(){return F},ah:function(){return J},UO:function(){return q},Kr:function(){return pe},oX:function(){return he},_D:function(){return T},V4:function(){return K}});var r=n(487),o=n.n(r),i=n(631),a=n.n(i),l=n(2052),s=n.n(l),c=n(4010),u=n.n(c),d=n(1469),p=n.n(d),f=n(9329),h=n.n(f),m=n(6464),g={};g.styleTagTransform=h(),g.setAttributes=u(),g.insert=s().bind(null,"head"),g.domAPI=a(),g.insertStyleElement=p();o()(m.Z,g);var v,b=m.Z&&m.Z.locals?m.Z.locals:void 0,y="Excalidraw",x=10,w=8,k=5,E=1,S=30,_=Math.PI/12,j={TEXT:"text",CROSSHAIR:"crosshair",GRABBING:"grabbing",GRAB:"grab",POINTER:"pointer",MOVE:"move",AUTO:""},C={MAIN:0,WHEEL:1,SECONDARY:2,TOUCH:-1};!function(e){e.COPY="copy",e.PASTE="paste",e.CUT="cut",e.KEYDOWN="keydown",e.KEYUP="keyup",e.MOUSE_MOVE="mousemove",e.RESIZE="resize",e.UNLOAD="unload",e.FOCUS="focus",e.BLUR="blur",e.DRAG_OVER="dragover",e.DROP="drop",e.GESTURE_END="gestureend",e.BEFORE_UNLOAD="beforeunload",e.GESTURE_START="gesturestart",e.GESTURE_CHANGE="gesturechange",e.POINTER_MOVE="pointermove",e.POINTER_UP="pointerup",e.STATE_CHANGE="statechange",e.WHEEL="wheel",e.TOUCH_START="touchstart",e.TOUCH_END="touchend",e.HASHCHANGE="hashchange",e.VISIBILITY_CHANGE="visibilitychange",e.SCROLL="scroll",e.EXCALIDRAW_LINK="excalidraw-link"}(v||(v={}));var O={TEST:"test",DEVELOPMENT:"development"},M={SHAPE_ACTIONS_MENU:"App-menu__left"},I={Virgil:1,Helvetica:2,Cascadia:3},P={LIGHT:"light",DARK:"dark"},T="Segoe UI Emoji",D=20,L=I.Virgil,A="left",Z="top",z=20,R={excalidraw:"application/vnd.excalidraw+json",excalidrawlib:"application/vnd.excalidrawlib+json",json:"application/json",svg:"image/svg+xml","excalidraw.svg":"image/svg+xml",png:"image/png","excalidraw.png":"image/png",jpg:"image/jpeg",gif:"image/gif",webp:"image/webp",bmp:"image/bmp",ico:"image/x-icon",binary:"application/octet-stream"},N={excalidraw:"excalidraw",excalidrawClipboard:"excalidraw/clipboard",excalidrawLibrary:"excalidrawlib"},B=window.EXCALIDRAW_EXPORT_SOURCE||window.location.origin,W=500,H=300,F=500,U=100,K=.1,Y=.1,G=300,V={VIEW:"viewMode",ZEN:"zenMode",GRID:"gridMode"},X=b.themeFilter,q={addLibrary:"addLibrary"},J={addLibrary:"addLibrary"},$={canvasActions:{changeViewBackgroundColor:!0,clearCanvas:!0,export:{saveFileToDisk:!0},loadScene:!0,saveToActiveFile:!0,toggleTheme:null,saveAsImage:!0}},Q=640,ee=800,te=1e3,ne=500,re=1229,oe=parseInt(b.rightSidebarWidth),ie=2,ae=[1,2,3],le=10,se=1440,ce=[R.png,R.jpg,R.svg,R.gif,R.webp,R.bmp,R.ico],ue=2097152,de="http://www.w3.org/2000/svg",pe={excalidraw:2,excalidrawLibrary:2},fe=5,he={TOP:"top",MIDDLE:"middle",BOTTOM:"bottom"},me={LEFT:"left",CENTER:"center",RIGHT:"right"},ge=20,ve="__precedingElement__"},434:function(e,t,n){"use strict";n.d(t,{DQ:function(){return S},KG:function(){return L},Pn:function(){return Z},Qk:function(){return E},Sf:function(){return D},Tu:function(){return A},Wr:function(){return j},ZY:function(){return C},_c:function(){return P},bv:function(){return z},cT:function(){return O},g8:function(){return _},gY:function(){return W},lV:function(){return I},tW:function(){return T},vZ:function(){return H},wf:function(){return M}});var r=n(1930),o=n(2577),i=n(7169),a=n(8950),l=n(2975),s=n.n(l),c=n(5605),u=n(8897),d=n(2335),p=n(1002),f=n(6797),h=n(5202),m=n(75),g=n(6340),v=n(1393),b=n(5523),y=n(679);function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function w(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?x(Object(n),!0).forEach((function(t){(0,i.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):x(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var k=function(){var e=(0,a.Z)(s().mark((function e(t){var r;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t.type!==d.LO.png){e.next=18;break}return e.prev=1,e.next=4,Promise.resolve().then(n.bind(n,673));case 4:return e.next=6,e.sent.decodePngMetadata(t);case 6:return e.abrupt("return",e.sent);case 9:if(e.prev=9,e.t0=e.catch(1),"INVALID"!==e.t0.message){e.next=15;break}throw new DOMException((0,h.t)("alerts.imageDoesNotContainScene"),"EncodingError");case 15:throw new DOMException((0,h.t)("alerts.cannotRestoreFromImage"),"EncodingError");case 16:e.next=43;break;case 18:if(!("text"in Blob)){e.next=24;break}return e.next=21,t.text();case 21:r=e.sent,e.next=27;break;case 24:return e.next=26,new Promise((function(e){var n=new FileReader;n.readAsText(t,"utf8"),n.onloadend=function(){n.readyState===FileReader.DONE&&e(n.result)}}));case 26:r=e.sent;case 27:if(t.type!==d.LO.svg){e.next=43;break}return e.prev=28,e.next=31,Promise.resolve().then(n.bind(n,673));case 31:return e.next=33,e.sent.decodeSvgMetadata({svg:r});case 33:return e.abrupt("return",e.sent);case 36:if(e.prev=36,e.t1=e.catch(28),"INVALID"!==e.t1.message){e.next=42;break}throw new DOMException((0,h.t)("alerts.imageDoesNotContainScene"),"EncodingError");case 42:throw new DOMException((0,h.t)("alerts.cannotRestoreFromImage"),"EncodingError");case 43:return e.abrupt("return",r);case 44:case"end":return e.stop()}}),e,null,[[1,9],[28,36]])})));return function(t){return e.apply(this,arguments)}}(),E=function(e){var t;return e&&(null===(t=e.name.match(/\.(json|excalidraw|png|svg)$/))||void 0===t?void 0:t[1])||null},S=function(e){return"png"===e||"svg"===e},_=function(e){var t=E(e);return"png"===t||"svg"===t},j=function(e){var t=(e||{}).type;return!!t&&d.jo.includes(t)},C=function(){var e=(0,a.Z)(s().mark((function e(t,n,r,o){var i,a;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,k(t);case 2:if(i=e.sent,e.prev=3,a=JSON.parse(i),!(0,b.dS)(a)){e.next=9;break}return e.abrupt("return",{type:d.LO.excalidraw,data:(0,y.nu)({elements:(0,p._M)(a.elements||[]),appState:w(w({theme:null==n?void 0:n.theme,fileHandle:o||t.handle||null},(0,u.s)(a.appState||{})),n?(0,m.W)(a.elements||[],n,null):{}),files:a.files},n,r)});case 9:if(!(0,b.HT)(a)){e.next=11;break}return e.abrupt("return",{type:d.LO.excalidrawlib,data:a});case 11:throw new Error((0,h.t)("alerts.couldNotLoadInvalidFile"));case 14:throw e.prev=14,e.t0=e.catch(3),console.error(e.t0.message),new Error((0,h.t)("alerts.couldNotLoadInvalidFile"));case 18:case"end":return e.stop()}}),e,null,[[3,14]])})));return function(t,n,r,o){return e.apply(this,arguments)}}(),O=function(){var e=(0,a.Z)(s().mark((function e(t,n,r,o){var i;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,C(t,n,r,o);case 2:if((i=e.sent).type===d.LO.excalidraw){e.next=5;break}throw new Error((0,h.t)("alerts.couldNotLoadInvalidFile"));case 5:return e.abrupt("return",i.data);case 6:case"end":return e.stop()}}),e)})));return function(t,n,r,o){return e.apply(this,arguments)}}(),M=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"unpublished",n=JSON.parse(e);if(!(0,b.HT)(n))throw new Error("Invalid library");var r=n.libraryItems||n.library;return(0,y.wJ)(r,t)},I=function(){var e=(0,a.Z)(s().mark((function e(t){var n,r=arguments;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=r.length>1&&void 0!==r[1]?r[1]:"unpublished",e.t0=M,e.next=4,k(t);case 4:return e.t1=e.sent,e.t2=n,e.abrupt("return",(0,e.t0)(e.t1,e.t2));case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),P=function(){var e=(0,a.Z)(s().mark((function e(t){return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",new Promise((function(e,n){try{t.toBlob((function(t){if(!t)return n(new f.l((0,h.t)("canvasError.canvasTooBig"),"CANVAS_POSSIBLY_TOO_BIG"));e(t)}))}catch(e){n(e)}})));case 1:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),T=function(){var e=(0,a.Z)(s().mark((function e(t){var n;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.t0=window.crypto.subtle,e.next=4,H(t);case 4:return e.t1=e.sent,e.next=7,e.t0.digest.call(e.t0,"SHA-1",e.t1);case 7:return n=e.sent,e.abrupt("return",(0,g.G3)(new Uint8Array(n)));case 11:return e.prev=11,e.t2=e.catch(0),console.error(e.t2),e.abrupt("return",(0,c.x0)(40));case 15:case"end":return e.stop()}}),e,null,[[0,11]])})));return function(t){return e.apply(this,arguments)}}(),D=function(){var e=(0,a.Z)(s().mark((function e(t){return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",new Promise((function(e,n){var r=new FileReader;r.onload=function(){var t=r.result;e(t)},r.onerror=function(e){return n(e)},r.readAsDataURL(t)})));case 1:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),L=function(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=e.indexOf(","),r=atob(e.slice(n+1)),o=e.slice(0,n).split(":")[1].split(";")[0],i=new ArrayBuffer(r.length),a=new Uint8Array(i),l=0;l<r.length;l++)a[l]=r.charCodeAt(l);return new File([i],t,{type:o})},A=function(){var e=(0,a.Z)(s().mark((function e(t,r){var i,a,l,c,u,p;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t.type!==d.LO.svg){e.next=2;break}return e.abrupt("return",t);case 2:return e.next=4,Promise.all([n.e(736).then(n.t.bind(n,4881,23)).then((function(e){return e.default})),n.e(736).then(n.bind(n,100)).then((function(e){return e.default}))]);case 4:if(i=e.sent,a=(0,o.Z)(i,2),l=a[0],c=a[1],u=c({pica:l({features:["js","wasm"]})}),r.outputType&&(p=r.outputType,u._create_blob=function(e){return this.pica.toBlob(e.out_canvas,p,.8).then((function(t){return e.out_blob=t,e}))}),j(t)){e.next=12;break}throw new Error((0,h.t)("errors.unsupportedFileType"));case 12:return e.t0=File,e.next=15,u.toBlob(t,{max:r.maxWidthOrHeight});case 15:return e.t1=e.sent,e.t2=[e.t1],e.t3=t.name,e.t4={type:r.outputType||t.type},e.abrupt("return",new e.t0(e.t2,e.t3,e.t4));case 20:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}(),Z=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return new File([(new TextEncoder).encode(e)],t,{type:d.LO.svg})},z=function(){var e=(0,a.Z)(s().mark((function e(t){var n,r;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.dataTransfer.files.item(0),e.next=3,R(t);case 3:if(r=e.sent,!n){e.next=10;break}return e.next=7,W(n);case 7:e.t0=e.sent,e.next=11;break;case 10:e.t0=null;case 11:return e.t1=e.t0,e.t2=r,e.abrupt("return",{file:e.t1,fileHandle:e.t2});case 14:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),R=function(){var e=(0,a.Z)(s().mark((function e(t){var n,r;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!v.kr){e.next=16;break}return e.prev=1,n=t.dataTransfer.items[0],e.next=5,n.getAsFileSystemHandle();case 5:if(e.t0=e.sent,e.t0){e.next=8;break}e.t0=null;case 8:return r=e.t0,e.abrupt("return",r);case 12:return e.prev=12,e.t1=e.catch(1),console.warn(e.t1.name,e.t1.message),e.abrupt("return",null);case 16:return e.abrupt("return",null);case 17:case"end":return e.stop()}}),e,null,[[1,12]])})));return function(t){return e.apply(this,arguments)}}(),N=function(e){var t=null,n="".concat((0,r.Z)(new Uint8Array(e).slice(0,8)).join(" ")," "),o="255 216 255 ",i="71 73 70 56 57 97 ";return n==="137 80 78 71 13 10 26 10 "?t=d.LO.png:n.startsWith(o)?t=d.LO.jpg:n.startsWith(i)&&(t=d.LO.gif),t},B=function(e,t,n){return new File([e],n||"",{type:t})},W=function(){var e=(0,a.Z)(s().mark((function e(t){var n,r,o,i,a,l,c,u;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t.type){e.next=28;break}if(null===(n=t)||void 0===n||null===(r=n.name)||void 0===r||!r.endsWith(".excalidrawlib")){e.next=11;break}return e.t0=B,e.next=5,H(t);case 5:e.t1=e.sent,e.t2=d.LO.excalidrawlib,e.t3=t.name,t=(0,e.t0)(e.t1,e.t2,e.t3),e.next=26;break;case 11:if(null===(o=t)||void 0===o||null===(i=o.name)||void 0===i||!i.endsWith(".excalidraw")){e.next=21;break}return e.t4=B,e.next=15,H(t);case 15:e.t5=e.sent,e.t6=d.LO.excalidraw,e.t7=t.name,t=(0,e.t4)(e.t5,e.t6,e.t7),e.next=26;break;case 21:return e.next=23,H(t);case 23:a=e.sent,(l=N(a))&&(t=B(a,l,t.name));case 26:e.next=34;break;case 28:if(!j(t)){e.next=34;break}return e.next=31,H(t);case 31:c=e.sent,(u=N(c))&&u!==t.type&&(t=B(c,u,t.name));case 34:return e.abrupt("return",t);case 35:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),H=function(e){return"arrayBuffer"in e?e.arrayBuffer():new Promise((function(t,n){var r=new FileReader;r.onload=function(e){var r;if(null===(r=e.target)||void 0===r||!r.result)return n(new Error("Couldn't convert blob to ArrayBuffer"));t(e.target.result)},r.readAsArrayBuffer(e)}))}},1393:function(e,t,n){"use strict";n.d(t,{I$:function(){return h},NL:function(){return m},kr:function(){return a}});var r=n(1930),o=n(8950),i=n(2975),a=function(){if("undefined"==typeof self)return!1;if("top"in self&&self!==top)try{top}catch(e){return!1}else if("showOpenFilePicker"in self)return"showOpenFilePicker";return!1}(),l=a?n.e(736).then(n.bind(n,2254)):n.e(736).then(n.bind(n,3499));function s(){return s=(0,o.Z)(i.mark((function e(){var t,n=arguments;return i.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,l;case 2:return e.abrupt("return",(t=e.sent).default.apply(t,n));case 3:case"end":return e.stop()}}),e)}))),s.apply(this,arguments)}a?n.e(736).then(n.bind(n,6474)):n.e(736).then(n.bind(n,9521));var c=a?n.e(736).then(n.bind(n,9475)):n.e(736).then(n.bind(n,6281));function u(){return u=(0,o.Z)(i.mark((function e(){var t,n=arguments;return i.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,c;case 2:return e.abrupt("return",(t=e.sent).default.apply(t,n));case 3:case"end":return e.stop()}}),e)}))),u.apply(this,arguments)}var d=n(2335),p=n(6797),f=n(6340),h=function(e){var t,n,o,i=null===(t=e.extensions)||void 0===t?void 0:t.reduce((function(e,t){return e.push(d.LO[t]),e}),[]),a=null===(n=e.extensions)||void 0===n?void 0:n.reduce((function(e,t){return"jpg"===t?e.concat(".jpg",".jpeg"):e.concat(".".concat(t))}),[]);return function(){return s.apply(this,arguments)}({description:e.description,extensions:a,mimeTypes:i,multiple:null!==(o=e.multiple)&&void 0!==o&&o,legacySetup:function(t,n,o){var i=(0,f.Ds)(n,500),a=function(){l(),document.addEventListener(d.Ks.KEYUP,i),document.addEventListener(d.Ks.POINTER_UP,i),i()},l=function(){var n;if(null!==(n=o.files)&&void 0!==n&&n.length){var i=e.multiple?(0,r.Z)(o.files):o.files[0];t(i)}};requestAnimationFrame((function(){window.addEventListener(d.Ks.FOCUS,a)}));var s=window.setInterval((function(){l()}),500);return function(e){clearInterval(s),i.cancel(),window.removeEventListener(d.Ks.FOCUS,a),document.removeEventListener(d.Ks.KEYUP,i),document.removeEventListener(d.Ks.POINTER_UP,i),e&&(console.warn("Opening the file was canceled (legacy-fs)."),e(new p._))}}})},m=function(e,t){return function(){return u.apply(this,arguments)}(e,{fileName:"".concat(t.name,".").concat(t.extension),description:t.description,extensions:[".".concat(t.extension)]},t.fileHandle)}},673:function(e,t,n){"use strict";n.r(t),n.d(t,{decodePngMetadata:function(){return E},decodeSvgMetadata:function(){return _},encodePngMetadata:function(){return k},encodeSvgMetadata:function(){return S},getTEXtChunk:function(){return w}});var r=n(8950),o=n(2975),i=n.n(o),a=n(2983),l=n.n(a),s=n(1194),c=n(3434),u=n.n(c),d=n(2744),p=n(2335),f=n(434),h=function(e){return new Promise((function(t,n){var r="string"==typeof e?new Blob([(new TextEncoder).encode(e)]):new Blob([e instanceof Uint8Array?e:new Uint8Array(e)]),o=new FileReader;o.onload=function(e){if(!e.target||"string"!=typeof e.target.result)return n(new Error("couldn't convert to byte string"));t(e.target.result)},o.readAsBinaryString(r)}))},m=function(e){for(var t=new ArrayBuffer(e.length),n=new Uint8Array(t),r=0,o=e.length;r<o;r++)n[r]=e.charCodeAt(r);return t},g=function(e){return new TextDecoder("utf-8").decode(m(e))},v=function(){var e=(0,r.Z)(i().mark((function e(t){var n=arguments;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!(n.length>1&&void 0!==n[1]&&n[1])){e.next=5;break}e.t0=window.btoa(t),e.next=10;break;case 5:return e.t1=window,e.next=8,h(t);case 8:e.t2=e.sent,e.t0=e.t1.btoa.call(e.t1,e.t2);case 10:return e.abrupt("return",e.t0);case 11:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),b=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r=arguments;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=r.length>1&&void 0!==r[1]&&r[1],e.abrupt("return",n?window.atob(t):g(window.atob(t)));case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),y=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=t.text,!1===t.compress){e.next=11;break}return e.prev=2,e.next=5,h((0,d.deflate)(n));case 5:r=e.sent,e.next=11;break;case 8:e.prev=8,e.t0=e.catch(2),console.error("encode: cannot deflate",e.t0);case 11:if(e.t1=!!r,e.t2=r,e.t2){e.next=17;break}return e.next=16,h(n);case 16:e.t2=e.sent;case 17:return e.t3=e.t2,e.abrupt("return",{version:"1",encoding:"bstring",compressed:e.t1,encoded:e.t3});case 19:case"end":return e.stop()}}),e,null,[[2,8]])})));return function(t){return e.apply(this,arguments)}}(),x=function(){var e=(0,r.Z)(i().mark((function e(t){var n;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:e.t0=t.encoding,e.next="bstring"===e.t0?3:12;break;case 3:if(!t.compressed){e.next=7;break}e.t1=t.encoded,e.next=10;break;case 7:return e.next=9,g(t.encoded);case 9:e.t1=e.sent;case 10:return n=e.t1,e.abrupt("break",13);case 12:throw new Error('decode: unknown encoding "'.concat(t.encoding,'"'));case 13:if(!t.compressed){e.next=15;break}return e.abrupt("return",(0,d.inflate)(new Uint8Array(m(n)),{to:"string"}));case 15:return e.abrupt("return",n);case 16:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}();var w=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=l(),e.t1=Uint8Array,e.next=4,(0,f.vZ)(t);case 4:if(e.t2=e.sent,e.t3=new e.t1(e.t2),n=(0,e.t0)(e.t3),!(r=n.find((function(e){return"tEXt"===e.name})))){e.next=10;break}return e.abrupt("return",s.decode(r.data));case 10:return e.abrupt("return",null);case 11:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),k=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r,o,a;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.blob,r=t.metadata,e.t0=l(),e.t1=Uint8Array,e.next=5,(0,f.vZ)(n);case 5:return e.t2=e.sent,e.t3=new e.t1(e.t2),o=(0,e.t0)(e.t3),e.t4=s,e.t5=p.LO.excalidraw,e.t6=JSON,e.next=13,y({text:r,compress:!0});case 13:return e.t7=e.sent,e.t8=e.t6.stringify.call(e.t6,e.t7),a=e.t4.encode.call(e.t4,e.t5,e.t8),o.splice(-1,0,a),e.abrupt("return",new Blob([u()(o)],{type:p.LO.png}));case 18:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),E=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,w(t);case 2:if((null==(n=e.sent)?void 0:n.keyword)!==p.LO.excalidraw){e.next=19;break}if(e.prev=4,"encoded"in(r=JSON.parse(n.text))){e.next=10;break}if(!("type"in r)||r.type!==p.r8.excalidraw){e.next=9;break}return e.abrupt("return",n.text);case 9:throw new Error("FAILED");case 10:return e.next=12,x(r);case 12:return e.abrupt("return",e.sent);case 15:throw e.prev=15,e.t0=e.catch(4),console.error(e.t0),new Error("FAILED");case 19:throw new Error("INVALID");case 20:case"end":return e.stop()}}),e,null,[[4,15]])})));return function(t){return e.apply(this,arguments)}}(),S=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r,o;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.text,e.t0=v,e.t1=JSON,e.next=5,y({text:n});case 5:return e.t2=e.sent,e.t3=e.t1.stringify.call(e.t1,e.t2),e.next=9,(0,e.t0)(e.t3,!0);case 9:return r=e.sent,o="",o+="\x3c!-- payload-type:".concat(p.LO.excalidraw," --\x3e"),o+="\x3c!-- payload-version:2 --\x3e",o+="\x3c!-- payload-start --\x3e",o+=r,o+="\x3c!-- payload-end --\x3e",e.abrupt("return",o);case 17:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),_=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r,o,a,l,s,c;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!(n=t.svg).includes("payload-type:".concat(p.LO.excalidraw))){e.next=26;break}if(r=n.match(/<!-- payload-start -->\s*(.+?)\s*<!-- payload-end -->/)){e.next=5;break}throw new Error("INVALID");case 5:return o=n.match(/<!-- payload-version:(\d+) -->/),a=(null==o?void 0:o[1])||"1",l="1"!==a,e.prev=8,e.next=11,b(r[1],l);case 11:if(s=e.sent,"encoded"in(c=JSON.parse(s))){e.next=17;break}if(!("type"in c)||c.type!==p.r8.excalidraw){e.next=16;break}return e.abrupt("return",s);case 16:throw new Error("FAILED");case 17:return e.next=19,x(c);case 19:return e.abrupt("return",e.sent);case 22:throw e.prev=22,e.t0=e.catch(8),console.error(e.t0),new Error("FAILED");case 26:throw new Error("INVALID");case 27:case"end":return e.stop()}}),e,null,[[8,22]])})));return function(t){return e.apply(this,arguments)}}()},5523:function(e,t,n){"use strict";n.d(t,{HT:function(){return y},I_:function(){return m},NI:function(){return x},Um:function(){return g},dS:function(){return b},n8:function(){return v},t1:function(){return w}});var r=n(6655),o=n(8950),i=n(2975),a=n.n(i),l=n(1393),s=n(8897),c=n(2335),u=n(1002),d=n(434);function p(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var h=function(e,t){var n,r={},o=p(e);try{for(o.s();!(n=o.n()).done;){var i=n.value;!i.isDeleted&&"fileId"in i&&i.fileId&&t[i.fileId]&&(r[i.fileId]=t[i.fileId])}}catch(e){o.e(e)}finally{o.f()}return r},m=function(e,t,n,r){var o={type:c.r8.excalidraw,version:c.Kr.excalidraw,source:c.pb,elements:"local"===r?(0,u._M)(e):(0,u.BQ)(e),appState:"local"===r?(0,s.s)(t):(0,s.eS)(t),files:"local"===r?h(e,n):void 0};return JSON.stringify(o,null,2)},g=function(){var e=(0,o.Z)(a().mark((function e(t,n,r){var o,i,s;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return o=m(t,n,r,"local"),i=new Blob([o],{type:c.LO.excalidraw}),e.next=4,(0,l.NL)(i,{name:n.name,extension:"excalidraw",description:"Excalidraw file",fileHandle:(0,d.g8)(n.fileHandle)?null:n.fileHandle});case 4:return s=e.sent,e.abrupt("return",{fileHandle:s});case 6:case"end":return e.stop()}}),e)})));return function(t,n,r){return e.apply(this,arguments)}}(),v=function(){var e=(0,o.Z)(a().mark((function e(t,n){var r;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,(0,l.I$)({description:"Excalidraw files"});case 2:return r=e.sent,e.t0=d.cT,e.next=6,(0,d.gY)(r);case 6:return e.t1=e.sent,e.t2=t,e.t3=n,e.t4=r.handle,e.abrupt("return",(0,e.t0)(e.t1,e.t2,e.t3,e.t4));case 11:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}(),b=function(e){return(null==e?void 0:e.type)===c.r8.excalidraw&&(!e.elements||Array.isArray(e.elements)&&(!e.appState||"object"===(0,r.Z)(e.appState)))},y=function(e){return"object"===(0,r.Z)(e)&&e&&e.type===c.r8.excalidrawLibrary&&(1===e.version||2===e.version)},x=function(e){var t={type:c.r8.excalidrawLibrary,version:c.Kr.excalidrawLibrary,source:c.pb,libraryItems:e};return JSON.stringify(t,null,2)},w=function(){var e=(0,o.Z)(a().mark((function e(t){var n;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=x(t),e.next=3,(0,l.NL)(new Blob([n],{type:c.LO.excalidrawlib}),{name:"library",extension:"excalidrawlib",description:"Excalidraw library file"});case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()},7053:function(e,t,n){"use strict";n.d(t,{Di:function(){return M},WV:function(){return O},rF:function(){return E},xS:function(){return I},zh:function(){return j}});var r=n(7169),o=n(8950),i=n(5169),a=n(8821),l=n(1930),s=n(2975),c=n.n(s),u=n(434),d=n(679),p=n(4739),f=n(9487),h=n(8925),m=n(6797),g=n(5202),v=n(9787),b=n(2335);function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function x(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?y(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):y(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function w(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return k(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return k(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function k(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var E=(0,p.cn)({status:"loaded",isInitialized:!0,libraryItems:[]}),S=function(e){return JSON.parse(JSON.stringify(e))},_=function(e,t){return!e.find((function(e){return e.elements.length===t.elements.length&&e.elements.every((function(e,n){return e.id===t.elements[n].id&&e.versionNonce===t.elements[n].versionNonce}))}))},j=function(e,t){var n,r=[],o=w(t);try{for(o.s();!(n=o.n()).done;){var i=n.value;_(e,i)&&r.push(i)}}catch(e){o.e(e)}finally{o.f()}return[].concat(r,(0,l.Z)(e))},C=(0,i.Z)((function e(t){var n=this;(0,a.Z)(this,e),this.lastLibraryItems=[],this.isInitialized=!1,this.updateQueue=[],this.getLastUpdateTask=function(){return n.updateQueue[n.updateQueue.length-1]},this.notifyListeners=function(){if(n.updateQueue.length>0)f.e_.set(E,{status:"loading",libraryItems:n.lastLibraryItems,isInitialized:n.isInitialized});else{n.isInitialized=!0,f.e_.set(E,{status:"loaded",libraryItems:n.lastLibraryItems,isInitialized:n.isInitialized});try{var e,t;null===(e=(t=n.app.props).onLibraryChange)||void 0===e||e.call(t,S(n.lastLibraryItems))}catch(e){console.error(e)}}},this.resetLibrary=function(){return n.setLibrary([])},this.getLatestLibrary=function(){return new Promise(function(){var e=(0,o.Z)(c().mark((function e(t){var r;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,n.getLastUpdateTask()||n.lastLibraryItems;case 3:r=e.sent,n.updateQueue.length>0?t(n.getLatestLibrary()):t(S(r)),e.next=10;break;case 7:return e.prev=7,e.t0=e.catch(0),e.abrupt("return",t(n.lastLibraryItems));case 10:case"end":return e.stop()}}),e,null,[[0,7]])})));return function(t){return e.apply(this,arguments)}}())},this.updateLibrary=function(){var e=(0,o.Z)(c().mark((function e(t){var r,i,a,l,s,p,f,h,v;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=t.libraryItems,i=t.prompt,a=void 0!==i&&i,l=t.merge,s=void 0!==l&&l,p=t.openLibraryMenu,f=void 0!==p&&p,h=t.defaultStatus,v=void 0===h?"unpublished":h,f&&n.app.setState({openSidebar:"library"}),e.abrupt("return",n.setLibrary((function(){return new Promise(function(){var e=(0,o.Z)(c().mark((function e(t,o){var i,l;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,"function"==typeof r?r(n.lastLibraryItems):r;case 3:if(!((i=e.sent)instanceof Blob)){e.next=10;break}return e.next=7,(0,u.lV)(i,v);case 7:l=e.sent,e.next=11;break;case 10:l=(0,d.wJ)(i,v);case 11:!a||window.confirm((0,g.t)("alerts.confirmAddLibrary",{numShapes:l.length}))?t(s?j(n.lastLibraryItems,l):l):o(new m._),e.next=17;break;case 14:e.prev=14,e.t0=e.catch(0),o(e.t0);case 17:case"end":return e.stop()}}),e,null,[[0,14]])})));return function(t,n){return e.apply(this,arguments)}}())})).finally((function(){n.app.focusContainer()})));case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),this.setLibrary=function(e){var t=new Promise(function(){var t=(0,o.Z)(c().mark((function t(r,o){return c().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,n.getLastUpdateTask();case 3:return"function"==typeof e&&(e=e(n.lastLibraryItems)),t.t0=S,t.next=7,e;case 7:t.t1=t.sent,n.lastLibraryItems=(0,t.t0)(t.t1),r(n.lastLibraryItems),t.next=15;break;case 12:t.prev=12,t.t2=t.catch(0),o(t.t2);case 15:case"end":return t.stop()}}),t,null,[[0,12]])})));return function(e,n){return t.apply(this,arguments)}}()).catch((function(e){if("AbortError"===e.name)return console.warn("Library update aborted by user"),n.lastLibraryItems;throw e})).finally((function(){n.updateQueue=n.updateQueue.filter((function(e){return e!==t})),n.notifyListeners()}));return n.updateQueue.push(t),n.notifyListeners(),t},this.app=t}));t.ZP=C;var O=function(e){var t,n=Math.ceil(Math.sqrt(e.length)),r=[],o=0,i=0,a=0,s=0,c=0,u=0,d=0,p=w(e);try{var f=function(){var p=t.value;c&&c%n==0&&(i+=a+50,o=0,u=0,d++),0===u&&(a=function(t){return e.slice(t*n,t*n+n).reduce((function(e,t){var n=(0,h.v2)(t.elements).height;return Math.max(e,n)}),0)}(d)),s=function(t){var r,o=0,i=0,a=0,l=w(e);try{for(l.s();!(r=l.n()).done;){var s=r.value;if(o%n==0&&(i=0),i===t){var c=(0,h.v2)(s.elements).width;a=Math.max(a,c)}o++,i++}}catch(e){l.e(e)}finally{l.f()}return a}(u);var f=(0,h.v2)(p.elements),m=f.minX,g=f.minY,v=f.width,b=f.height,y=(s-v)/2,k=(a-b)/2;r.push.apply(r,(0,l.Z)(p.elements.map((function(e){return x(x({},e),{},{x:e.x+o+y-m,y:e.y+i+k-g})})))),o+=s+50,c++,u++};for(p.s();!(t=p.n()).done;)f()}catch(e){p.e(e)}finally{p.f()}return r},M=function(){var e=new URLSearchParams(window.location.hash.slice(1)).get(b.ah.addLibrary)||new URLSearchParams(window.location.search).get(b.UO.addLibrary),t=e?new URLSearchParams(window.location.hash.slice(1)).get("token"):null;return e?{libraryUrl:e,idToken:t}:null},I=function(e){var t=e.excalidrawAPI,n=e.getInitialLibraryItems,r=(0,v.useRef)(n);(0,v.useEffect)((function(){if(t){var e=function(){var e=(0,o.Z)(c().mark((function e(n){var r,i,a,l,s,u;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=n.libraryUrl,i=n.idToken,a=new Promise(function(){var e=(0,o.Z)(c().mark((function e(t,n){var o,i;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,fetch(decodeURIComponent(r));case 3:return o=e.sent,e.next=6,o.blob();case 6:i=e.sent,t(i),e.next=13;break;case 10:e.prev=10,e.t0=e.catch(0),n(e.t0);case 13:case"end":return e.stop()}}),e,null,[[0,10]])})));return function(t,n){return e.apply(this,arguments)}}()),l=i!==t.id,e.next=5,l&&document.hidden?new Promise((function(e){window.addEventListener("focus",(function(){return e()}),{once:!0})})):null;case 5:return e.prev=5,e.next=8,t.updateLibrary({libraryItems:a,prompt:l,merge:!0,defaultStatus:"published",openLibraryMenu:!0});case 8:e.next=13;break;case 10:throw e.prev=10,e.t0=e.catch(5),e.t0;case 13:return e.prev=13,window.location.hash.includes(b.ah.addLibrary)?((s=new URLSearchParams(window.location.hash.slice(1))).delete(b.ah.addLibrary),window.history.replaceState({},b.iC,"#".concat(s.toString()))):window.location.search.includes(b.UO.addLibrary)&&((u=new URLSearchParams(window.location.search)).delete(b.UO.addLibrary),window.history.replaceState({},b.iC,"?".concat(u.toString()))),e.finish(13);case 16:case"end":return e.stop()}}),e,null,[[5,10,13,16]])})));return function(t){return e.apply(this,arguments)}}(),n=function(t){t.preventDefault();var n=M();n&&(t.stopImmediatePropagation(),window.history.replaceState({},"",t.oldURL),e(n))};r.current&&t.updateLibrary({libraryItems:r.current()});var i=M();return i&&e(i),window.addEventListener(b.Ks.HASHCHANGE,n),function(){window.removeEventListener(b.Ks.HASHCHANGE,n)}}}),[t])}},679:function(e,t,n){"use strict";n.d(t,{ET:function(){return w},lY:function(){return S},nu:function(){return _},wJ:function(){return C}});var r=n(2577),o=n(7169),i=n(1002),a=n(1974),l=n(6954),s=n(2335),c=n(8897),u=n(6938),d=n(1935),p=n(6340);function f(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function g(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?m(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):m(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var v={selection:!0,text:!0,rectangle:!0,diamond:!0,ellipse:!0,line:!0,image:!0,arrow:!0,freedraw:!0,eraser:!1,custom:!0},b=function(e){return Object.keys(s.ut).includes(e)?s.ut[e]:s.rk},y=function(e,t){var n,r,o,c,u,d,f,h,m,v,b,y,x,w,k,E={type:t.type||e.type,version:e.version||1,versionNonce:null!==(n=e.versionNonce)&&void 0!==n?n:0,isDeleted:null!==(r=e.isDeleted)&&void 0!==r&&r,id:e.id||(0,l.kb)(),fillStyle:e.fillStyle||"hachure",strokeWidth:e.strokeWidth||1,strokeStyle:null!==(o=e.strokeStyle)&&void 0!==o?o:"solid",roughness:null!==(c=e.roughness)&&void 0!==c?c:1,opacity:null==e.opacity?100:e.opacity,angle:e.angle||0,x:null!==(u=null!==(d=t.x)&&void 0!==d?d:e.x)&&void 0!==u?u:0,y:null!==(f=null!==(h=t.y)&&void 0!==h?h:e.y)&&void 0!==f?f:0,strokeColor:e.strokeColor,backgroundColor:e.backgroundColor,width:e.width||0,height:e.height||0,seed:null!==(m=e.seed)&&void 0!==m?m:1,groupIds:null!==(v=e.groupIds)&&void 0!==v?v:[],strokeSharpness:null!==(b=e.strokeSharpness)&&void 0!==b?b:(0,a.dt)(e.type)?"round":"sharp",boundElements:e.boundElementIds?e.boundElementIds.map((function(e){return{type:"arrow",id:e}})):null!==(y=e.boundElements)&&void 0!==y?y:[],updated:null!==(x=e.updated)&&void 0!==x?x:(0,p.C3)(),link:null!==(w=e.link)&&void 0!==w?w:null,locked:null!==(k=e.locked)&&void 0!==k&&k};return"customData"in e&&(E.customData=e.customData),s.WR in e&&(E[s.WR]=e[s.WR]),g(g(g({},E),(0,i.Qp)(E)),t)},x=function(e){var t,n,o=arguments.length>1&&void 0!==arguments[1]&&arguments[1];switch(e.type){case"text":var a=e.fontSize,l=e.fontFamily;if("font"in e){var c=e.font.split(" "),d=(0,r.Z)(c,2),p=d[0],f=d[1];a=parseInt(p,10),l=b(f)}return e=y(e,{fontSize:a,fontFamily:l,text:null!==(t=e.text)&&void 0!==t?t:"",baseline:e.baseline,textAlign:e.textAlign||s.Hg,verticalAlign:e.verticalAlign||s.hs,containerId:null!==(n=e.containerId)&&void 0!==n?n:null,originalText:e.originalText||e.text}),o&&(e=g(g({},e),(0,i.JZ)(e))),e;case"freedraw":return y(e,{points:e.points,lastCommittedPoint:null,simulatePressure:e.simulatePressure,pressures:e.pressures});case"image":return y(e,{status:e.status||"pending",fileId:e.fileId,scale:e.scale||[1,1]});case"line":case"draw":case"arrow":var h=e,m=h.startArrowhead,v=void 0===m?null:m,x=h.endArrowhead,w=void 0===x?"arrow"===e.type?"arrow":null:x,k=e.x,E=e.y,S=!Array.isArray(e.points)||e.points.length<2?[[0,0],[e.width,e.height]]:e.points;if(0!==S[0][0]||0!==S[0][1]){var _=u._.getNormalizedPoints(e);S=_.points,k=_.x,E=_.y}return y(e,{type:"draw"===e.type?"line":e.type,startBinding:e.startBinding,endBinding:e.endBinding,lastCommittedPoint:null,startArrowhead:v,endArrowhead:w,points:S,x:k,y:E});case"ellipse":case"rectangle":case"diamond":return y(e,{})}},w=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=t?(0,p.xn)(t):null;return(e||[]).reduce((function(e,t){if("selection"!==t.type&&!(0,i.QD)(t)){var o=x(t,n);if(o){var a=null==r?void 0:r.get(t.id);a&&a.version>o.version&&(o=(0,d.ZP)(o,a.version)),e.push(o)}}return e}),[])},k=function(e,t,n){var r=t[e];return void 0!==r?r:n[e]},E={isLibraryOpen:function(e,t){return["openSidebar","isLibraryOpen"in e?e.isLibraryOpen?"library":null:k("openSidebar",e,t)]},isLibraryMenuDocked:function(e,t){var n;return["isSidebarDocked",null!==(n=e.isLibraryMenuDocked)&&void 0!==n?n:k("isSidebarDocked",e,t)]}},S=function(e,t){var n,o,i;e=e||{};for(var a=(0,c.im)(),l={},s=0,u=Object.keys(E);s<u.length;s++){var d=u[s];if(d in e){var f=E[d](e,a),h=(0,r.Z)(f,2),m=h[0],b=h[1];l[m]=b}}for(var y=0,x=Object.entries(a);y<x.length;y++){var w=(0,r.Z)(x[y],2),k=w[0],S=w[1],_=e[k],j=t?t[k]:void 0;l[k]=void 0!==_?_:void 0!==j?j:S}return g(g({},l),{},{cursorButton:(null==t?void 0:t.cursorButton)||"up",penDetected:null!==(n=null==t?void 0:t.penDetected)&&void 0!==n?n:!!e.penMode&&(null!==(o=e.penDetected)&&void 0!==o&&o),activeTool:g(g({},(0,p.Om)(a,l.activeTool.type&&v[l.activeTool.type]?l.activeTool:{type:"selection"})),{},{lastActiveToolBeforeEraser:null,locked:null!==(i=l.activeTool.locked)&&void 0!==i&&i}),zoom:"number"==typeof e.zoom?{value:e.zoom}:e.zoom||a.zoom,openSidebar:"library"===l.openSidebar?l.isSidebarDocked?"library":null:l.openSidebar})},_=function(e,t,n){return{elements:w(null==e?void 0:e.elements,n),appState:S(null==e?void 0:e.appState,t||null),files:(null==e?void 0:e.files)||{}}},j=function(e){var t=w((0,i.Lm)(e.elements),null);return t.length?g(g({},e),{},{elements:t}):null},C=function(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1?arguments[1]:void 0,r=[],o=f(t);try{for(o.s();!(e=o.n()).done;){var i=e.value;if(Array.isArray(i)){var a=j({status:n,elements:i,id:(0,l.kb)(),created:Date.now()});a&&r.push(a)}else{var s=i,c=j(g(g({},s),{},{id:s.id||(0,l.kb)(),status:s.status||n,created:s.created||Date.now()}));c&&r.push(c)}}}catch(e){o.e(e)}finally{o.f()}return r}},4929:function(e,t,n){"use strict";n.d(t,{rj:function(){return B},nW:function(){return H},nz:function(){return Y},sw:function(){return V},lV:function(){return Q},q$:function(){return K},wq:function(){return X},$u:function(){return U},Pp:function(){return J}});var r=n(7169),o=n(2577),i=n(6340),a=n(1935),l=n(7901),s=n(1319),c=n(3646),u=n(5202),d=n(9787),p=n(45),f=n(6066),h=n(3063),m=n(6552),g=n(2335),v=n(1894),b=n(75),y=n(2325),x=n(1002),w=n(487),k=n.n(w),E=n(631),S=n.n(E),_=n(2052),j=n.n(_),C=n(4010),O=n.n(C),M=n(1469),I=n.n(M),P=n(9329),T=n.n(P),D=n(5260),L={};L.styleTagTransform=T(),L.setAttributes=O(),L.insert=j().bind(null,"head"),L.domAPI=S(),L.insertStyleElement=I();k()(D.Z,L),D.Z&&D.Z.locals&&D.Z.locals;var A=n(7047),Z=n(5076),z=n(4512);function R(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function N(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?R(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):R(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var B=document.createElement("img");B.src="data:".concat(g.LO.svg,", ").concat(encodeURIComponent('<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#1971c2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>'));var W=!1,H=function(e){var t=e.element,n=e.setAppState,r=e.onLinkOpen,l=(0,Z.gF)(),h=t.link||"",m=(0,d.useState)(h),v=(0,o.Z)(m,2),b=v[0],y=v[1],x=(0,d.useRef)(null),w="editor"===l.showHyperlinkPopup||!h,k=(0,d.useCallback)((function(){if(x.current){var e=U(x.current.value);!t.link&&e&&(0,A.L)("hyperlink","create"),(0,a.DR)(t,{link:e}),n({showHyperlinkPopup:"info"})}}),[t,n]);(0,d.useLayoutEffect)((function(){return function(){k()}}),[k]),(0,d.useEffect)((function(){var e=null,r=function(r){w||(e&&clearTimeout(e),ee(t,l,[r.clientX,r.clientY])&&(e=window.setTimeout((function(){n({showHyperlinkPopup:!1})}),500)))};return window.addEventListener(g.Ks.POINTER_MOVE,r,!1),function(){window.removeEventListener(g.Ks.POINTER_MOVE,r,!1),e&&clearTimeout(e)}}),[l,t,w,n]);var E=(0,d.useCallback)((function(){(0,A.L)("hyperlink","delete"),(0,a.DR)(t,{link:null}),w&&(x.current.value=""),n({showHyperlinkPopup:!1})}),[n,t,w]),S=F(t,l),_=S.x,j=S.y;return l.draggingElement||l.resizingElement||l.isRotating||l.openMenu?null:(0,z.jsxs)("div",{className:"excalidraw-hyperlinkContainer",style:{top:"".concat(j,"px"),left:"".concat(_,"px"),width:320,padding:5},children:[w?(0,z.jsx)("input",{className:(0,p.Z)("excalidraw-hyperlinkContainer-input"),placeholder:"Type or paste your link here",ref:x,value:b,onChange:function(e){return y(e.target.value)},autoFocus:!0,onKeyDown:function(e){e.stopPropagation(),e[f.tW.CTRL_OR_CMD]&&e.key===f.tW.K&&e.preventDefault(),e.key!==f.tW.ENTER&&e.key!==f.tW.ESCAPE||k()}}):(0,z.jsx)("a",{href:t.link||"",className:(0,p.Z)("excalidraw-hyperlinkContainer-link",{"d-none":w}),target:K(t.link)?"_self":"_blank",onClick:function(e){if(t.link&&r){var n=(0,i.ag)(g.Ks.EXCALIDRAW_LINK,e.nativeEvent);r(t,n),n.defaultPrevented&&e.preventDefault()}},rel:"noopener noreferrer",children:t.link}),(0,z.jsxs)("div",{className:"excalidraw-hyperlinkContainer__buttons",children:[!w&&(0,z.jsx)(s.V,{type:"button",title:(0,u.t)("buttons.edit"),"aria-label":(0,u.t)("buttons.edit"),label:(0,u.t)("buttons.edit"),onClick:function(){(0,A.L)("hyperlink","edit","popup-ui"),n({showHyperlinkPopup:"editor"})},className:"excalidraw-hyperlinkContainer--edit",icon:c.Pm}),h&&(0,z.jsx)(s.V,{type:"button",title:(0,u.t)("buttons.remove"),"aria-label":(0,u.t)("buttons.remove"),label:(0,u.t)("buttons.remove"),onClick:E,className:"excalidraw-hyperlinkContainer--remove",icon:c.XH})]})]})},F=function(e,t){var n=(0,x.qf)(e),r=(0,o.Z)(n,2),a=r[0],l=r[1],s=(0,i._i)({sceneX:a+e.width/2,sceneY:l},t),c=s.x,u=s.y;return{x:c-t.offsetLeft-160,y:u-t.offsetTop-85}},U=function(e){return(e=e.trim())&&(e.includes("://")||/^[[\\/]/.test(e)||(e="https://".concat(e))),e},K=function(e){return!!(null!=e&&e.includes(location.origin)||null!=e&&e.startsWith("/"))},Y=(0,l.z)({name:"hyperlink",perform:function(e,t){return"editor"!==t.showHyperlinkPopup&&{elements:e,appState:N(N({},t),{},{showHyperlinkPopup:"editor",openMenu:null}),commitToHistory:!0}},trackEvent:{category:"hyperlink",action:"click"},keyTest:function(e){return e[f.tW.CTRL_OR_CMD]&&e.key===f.tW.K},contextItemLabel:function(e,t){return G(e,t)},contextItemPredicate:function(e,t){return 1===(0,b.eD)(e,t).length},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData,o=(0,b.eD)(t,n);return(0,z.jsx)(s.V,{type:"button",icon:c.xP,"aria-label":(0,u.t)(G(t,n)),title:"".concat((0,u.t)("labels.link.label")," - ").concat((0,i.uY)("CtrlOrCmd+K")),onClick:function(){return r(null)},selected:1===o.length&&!!o[0].link})}}),G=function(e,t){return(0,b.eD)(e,t)[0].link?"labels.link.edit":"labels.link.create"},V=function(e,t,n){var r=(0,o.Z)(e,4),i=r[0],a=r[1],l=r[2],s=r[3],c=h.Dn,u=c/n.zoom.value,d=c/n.zoom.value,p=c/n.zoom.value,f=(i+l)/2,g=(a+s)/2,v=(c-8)/(2*n.zoom.value),b=4/n.zoom.value,y=l+b-v,x=a-b-p+v,w=(0,m.U1)(y+u/2,x+d/2,f,g,t),k=(0,o.Z)(w,2);return[k[0]-u/2,k[1]-d/2,u,d]},X=function(e,t,n,r){var i=(0,o.Z)(n,2),a=i[0],l=i[1];if(!e.link||t.selectedElementIds[e.id])return!1;var s=4/t.zoom.value;if(!r&&t.viewModeEnabled&&(0,y.pX)(e,[a,l],s))return!0;var c=(0,x.qf)(e),u=(0,o.Z)(c,4),d=u[0],p=u[1],f=u[2],h=u[3],m=V([d,p,f,h],e.angle,t),g=(0,o.Z)(m,4),v=g[0],b=g[1],w=g[2],k=g[3];return a>v-s&&a<v+s+w&&l>b-s&&l<b+k+s},q=null,J=function(e,t){q&&clearTimeout(q),q=window.setTimeout((function(){return $(e,t)}),g.sA)},$=function(e,t){if(e.link){var n=(0,v.bK)();n.classList.add("excalidraw-tooltip--visible"),n.style.maxWidth="20rem",n.textContent=e.link;var r=(0,x.qf)(e),a=(0,o.Z)(r,4),l=a[0],s=a[1],c=a[2],u=a[3],d=V([l,s,c,u],e.angle,t),p=(0,o.Z)(d,4),f=p[0],h=p[1],m=p[2],g=p[3],b=(0,i._i)({sceneX:f,sceneY:h},t);(0,v.Js)(n,{left:b.x,top:b.y,width:m,height:g},"top"),(0,A.L)("hyperlink","tooltip","link-icon"),W=!0}},Q=function(){q&&clearTimeout(q),W&&(W=!1,(0,v.bK)().classList.remove("excalidraw-tooltip--visible"))},ee=function(e,t,n){var r=(0,o.Z)(n,2),a=r[0],l=r[1],s=(0,i.dE)({clientX:a,clientY:l},t),c=s.x,u=s.y,d=15/t.zoom.value;if((0,y.pX)(e,[c,u],d))return!1;var p=(0,x.qf)(e),f=(0,o.Z)(p,3),h=f[0],m=f[1],g=f[2];if(c>=h&&c<=g&&u>=m-85&&u<=m)return!1;var v=F(e,t),b=v.x,w=v.y;return!(a>=b-d&&a<=b+320+10+d&&l>=w-d&&l<=w+d+10+42)}},8290:function(e,t,n){"use strict";n.d(t,{$q:function(){return F},DK:function(){return _},H:function(){return j},HG:function(){return b},N1:function(){return g},R:function(){return k},Ww:function(){return I},Y9:function(){return O},ZB:function(){return A},cz:function(){return m},ek:function(){return W},el:function(){return x}});var r=n(7169),o=n(2577),i=n(75),a=n(1974),l=n(2325),s=n(1935),c=n(1564),u=n(6938),d=n(6340),p=n(6066),f=n(5710);function h(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var m=function(e){return!e[p.tW.CTRL_OR_CMD]},g=function(e){return e.isBindingEnabled},v=function(e,t){var n=[];return t.forEach((function(t){var r=e.getNonDeletedElement(t);null!=r&&n.push(r)})),n},b=function(e,t,n){var r=new Set,o=new Set;y(e,t,n,"start",r,o),y(e,n,t,"end",r,o);var i=Array.from(o).filter((function(e){return!r.has(e)}));v(c.Z.getScene(e),i).forEach((function(t){var n;(0,s.DR)(t,{boundElements:null===(n=t.boundElements)||void 0===n?void 0:n.filter((function(t){return"arrow"!==t.type||t.id!==e.id}))})}))},y=function(e,t,n,r,o,i){if("keep"!==t)if(null!=t)null!=n&&("keep"===n?S(e,t,r):"start"!==r&&n.id===t.id)||(E(e,t,r),o.add(t.id));else{var a=C(e,r);null!=a&&i.add(a)}},x=function(e){e.forEach((function(e){(0,a.Mn)(e)?b(e,z(e,"start"),z(e,"end")):(0,a.f0)(e)&&w(e)}))},w=function(e){N(e).forEach((function(t){var n=(0,o.Z)(t,2),r=n[0],i=n[1];return b(r,"end"===i?"keep":e,"start"===i?"keep":e)}))},k=function(e,t,n,r){null!=t.startBoundElement&&E(e,t.startBoundElement,"start");var o=O(r,n);null==o||S(e,o,"end")||E(e,o,"end")},E=function(e,t,n){(0,s.DR)(e,(0,r.Z)({},"start"===n?"startBinding":"endBinding",function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?h(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):h(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({elementId:t.id},M(e,t,n)))),(0,d.xn)(t.boundElements||[]).has(e.id)||(0,s.DR)(t,{boundElements:(t.boundElements||[]).concat({id:e.id,type:"arrow"})})},S=function(e,t,n){var r=e["start"===n?"endBinding":"startBinding"];return _(e,null==r?void 0:r.elementId,t)},_=function(e,t,n){return t===n.id&&e.points.length<3},j=function(e){e.forEach((function(e){(0,a.Mn)(e)&&b(e,null,null)}))},C=function(e,t){var n="start"===t?"startBinding":"endBinding",o=e[n];return null==o?null:((0,s.DR)(e,(0,r.Z)({},n,null)),o.elementId)},O=function(e,t){return(0,i.QG)(t.getNonDeletedElements(),(function(t){return(0,a.f0)(t,!1)&&(0,l.uu)(t,e)}))},M=function(e,t,n){var r="start"===n?-1:1,o=-1===r?0:e.points.length-1,i=o-r,a=u._.getPointAtIndexGlobalCoordinates(e,o),s=u._.getPointAtIndexGlobalCoordinates(e,i);return{focus:(0,l.T_)(t,s,a),gap:Math.max(1,(0,l.oT)(t,a))}},I=function(e,t){var n,r=(null!==(n=e.boundElements)&&void 0!==n?n:[]).filter((function(e){return"arrow"===e.type}));if(0!==r.length){var o=null!=t?t:{},i=o.newSize,l=o.simultaneouslyUpdated,u=T(l);v(c.Z.getScene(e),r.map((function(e){return e.id}))).forEach((function(t){if((0,a.bt)(t)){var n=e;if(P(t,n)){var r=L(n,t.startBinding,i),o=L(n,t.endBinding,i);if(u.has(t.id))(0,s.DR)(t,{startBinding:r,endBinding:o});else D(t,"start",r,e),D(t,"end",o,e),(0,f.WJ)(t)&&(0,f.RB)(t,!1)}}}))}},P=function(e,t){var n,r;return(null===(n=e.startBinding)||void 0===n?void 0:n.elementId)===t.id||(null===(r=e.endBinding)||void 0===r?void 0:r.elementId)===t.id},T=function(e){return new Set((e||[]).map((function(e){return e.id})))},D=function(e,t,n,o){if(!(null==n||n.elementId!==o.id&&e.points.length>2)){var i=c.Z.getScene(e).getElement(n.elementId);if(null!=i){var a,s="start"===t?-1:1,d=-1===s?0:e.points.length-1,p=d-s,f=u._.getPointAtIndexGlobalCoordinates(e,p),h=(0,l.j_)(i,n.focus,f);if(0===n.gap)a=h;else{var m=(0,l.MZ)(i,f,h,n.gap);a=0===m.length?h:m[0]}u._.movePoints(e,[{index:d,point:u._.pointFromAbsoluteCoords(e,a)}],(0,r.Z)({},"start"===t?"startBinding":"endBinding",n))}}},L=function(e,t,n){if(null==t||null==n)return t;var r=t.gap,o=t.focus,i=t.elementId,a=n.width,s=n.height,c=e.width,u=e.height;return{elementId:i,gap:Math.max(1,Math.min((0,l.fb)(e,a,s),r*(a<s?a/c:s/u))),focus:o}},A=function(e){var t=new Set(e.map((function(e){return e.id})));return e.flatMap((function(e){return(0,a.Mn)(e,!1)?Z(e).filter((function(e){return!t.has(e.id)})):(0,a.f0)(e,!1)?N(e).filter((function(e){return!t.has(e[0].id)})):[]}))},Z=function(e){return[z(e,"start"),z(e,"end")].filter((function(e){return null!=e}))},z=function(e,t){return O(R(e,t),c.Z.getScene(e))},R=function(e,t){var n="start"===t?0:-1;return(0,d.AK)(u._.getPointAtIndexGlobalCoordinates(e,n))},N=function(e){return c.Z.getScene(e).getNonDeletedElements().map((function(t){if(!(0,a.Mn)(t,!1))return null;var n=B(t,"start",e),r=B(t,"end",e);return n||r?[t,n&&r?"both":n?"start":"end",e]:null})).filter((function(e){return null!=e}))},B=function(e,t,n){return null==e["start"===t?"startBinding":"endBinding"]&&!S(e,n,t)&&(0,l.uu)(n,R(e,t))},W=function(e,t,n,r){var o=new Set,i=new Set,l="duplicatesServeAsOld"===r;t.forEach((function(e){var t=e.boundElements;if(null!=t&&t.length>0&&(t.forEach((function(e){l&&!n.has(e.id)&&o.add(e.id)})),i.add(n.get(e.id))),(0,a.Mn)(e)){if(null!=e.startBinding){var r=e.startBinding.elementId;l&&!n.has(r)&&i.add(r)}if(null!=e.endBinding){var s=e.endBinding.elementId;l&&!n.has(s)&&i.add(s)}null==e.startBinding&&null==e.endBinding||o.add(n.get(e.id))}})),e.filter((function(e){var t=e.id;return o.has(t)})).forEach((function(e){var t=e.startBinding,r=e.endBinding;(0,s.DR)(e,{startBinding:H(t,n),endBinding:H(r,n)})})),e.filter((function(e){var t=e.id;return i.has(t)})).forEach((function(e){var t=e.boundElements;null!=t&&t.length>0&&(0,s.DR)(e,{boundElements:t.map((function(e){return n.has(e.id)?{id:n.get(e.id),type:e.type}:e}))})}))},H=function(e,t){var n;if(null==e)return null;var r=e.elementId;return{focus:e.focus,gap:e.gap,elementId:null!==(n=t.get(r))&&void 0!==n?n:r}},F=function(e,t){var n=new Set(t.map((function(e){return e.id}))),r=new Set;t.forEach((function(e){var t;(0,a.f0)(e)?null===(t=e.boundElements)||void 0===t||t.forEach((function(e){n.has(e.id)||r.add(e.id)})):(0,a.Mn)(e)&&(e.startBinding&&r.add(e.startBinding.elementId),e.endBinding&&r.add(e.endBinding.elementId))})),e.filter((function(e){var t=e.id;return r.has(t)})).forEach((function(e){(0,a.f0)(e)?(0,s.DR)(e,{boundElements:K(e.boundElements,n)}):(0,a.Mn)(e)&&(0,s.DR)(e,{startBinding:U(e.startBinding,n),endBinding:U(e.endBinding,n)})}))},U=function(e,t){return null==e||t.has(e.elementId)?null:e},K=function(e,t){return e?e.filter((function(e){return!t.has(e.id)})):null}},8925:function(e,t,n){"use strict";n.d(t,{CM:function(){return g},IX:function(){return y},KP:function(){return _},Pi:function(){return S},UC:function(){return m},Ut:function(){return C},Y5:function(){return k},os:function(){return O},qf:function(){return h},v2:function(){return M},wC:function(){return j}});var r=n(2577),o=n(1930),i=n(6552),a=n(8234),l=n(3063),s=n(1974),c=n(5001),u=n(5710),d=n(6938);function p(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var h=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if((0,s.F9)(e))return w(e);if((0,s.bt)(e))return d._.getElementAbsoluteCoords(e,t);if((0,s.iB)(e)){var n=(0,u.tl)(e);if((0,s.Yv)(n)){var r=d._.getBoundTextElementPosition(n,e);return[r.x,r.y,r.x+e.width,r.y+e.height,r.x+e.width/2,r.y+e.height/2]}}return[e.x,e.y,e.x+e.width,e.y+e.height,e.x+e.width/2,e.y+e.height/2]},m=function(e){var t=Math.floor(e.width/2)+1,n=e.width,r=Math.floor(e.height/2)+1;return[t,0,n,r,t,e.height,0,r]},g=function(e){var t,n=p(e.sets);try{for(n.s();!(t=n.n()).done;){var r=t.value;if("path"===r.type)return r.ops}}catch(e){n.e(e)}finally{n.f()}return e.sets[0].ops},v=function(e,t,n,r,o){var i=1-e;return Math.pow(i,3)*t+3*Math.pow(i,2)*e*n+3*i*Math.pow(e,2)*r+Math.pow(e,3)*o},b=function(e,t,n,r){var o=t-e,i=n-t,a=3*o-6*i+3*(r-n),l=6*i-6*o,s=3*o,c=l*l-4*a*s;if(!(c>=0))return!1;var u=null,d=null,p=1/0,f=1/0;return 0===a?p=f=-s/l:(p=(-l+Math.sqrt(c))/(2*a),f=(-l-Math.sqrt(c))/(2*a)),p>=0&&p<=1&&(u=v(p,e,t,n,r)),f>=0&&f<=1&&(d=v(f,e,t,n,r)),[u,d]},y=function(e,t){var n=[0,0],i=e.reduce((function(e,i){var a=i.op,l=i.data;if("move"===a)n=l;else if("bcurveTo"===a){var s=[l[0],l[1]],c=[l[2],l[3]],u=[l[4],l[5]],d=t?t.apply(void 0,s):s,p=t?t.apply(void 0,c):c,f=t?t.apply(void 0,u):u,h=t?t.apply(void 0,(0,o.Z)(n)):n;n=u;var m=function(e,t,n,r){var i=b(e[0],t[0],n[0],r[0]),a=b(e[1],t[1],n[1],r[1]),l=Math.min(e[0],r[0]),s=Math.max(e[0],r[0]);if(i){var c=i.filter((function(e){return null!==e}));l=Math.min.apply(Math,[l].concat((0,o.Z)(c))),s=Math.max.apply(Math,[s].concat((0,o.Z)(c)))}var u=Math.min(e[1],r[1]),d=Math.max(e[1],r[1]);if(a){var p=a.filter((function(e){return null!==e}));u=Math.min.apply(Math,[u].concat((0,o.Z)(p))),d=Math.max.apply(Math,[d].concat((0,o.Z)(p)))}return[l,u,s,d]}(h,d,p,f),g=(0,r.Z)(m,4),v=g[0],y=g[1],x=g[2],w=g[3];e.minX=Math.min(e.minX,v),e.minY=Math.min(e.minY,y),e.maxX=Math.max(e.maxX,x),e.maxY=Math.max(e.maxY,w)}return e}),{minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0});return[i.minX,i.minY,i.maxX,i.maxY]},x=function(e){var t,n=1/0,o=1/0,i=-1/0,a=-1/0,l=p(e);try{for(l.s();!(t=l.n()).done;){var s=(0,r.Z)(t.value,2),c=s[0],u=s[1];n=Math.min(n,c),o=Math.min(o,u),i=Math.max(i,c),a=Math.max(a,u)}}catch(e){l.e(e)}finally{l.f()}return[n,o,i,a]},w=function(e){var t=x(e.points),n=(0,r.Z)(t,4),o=n[0],i=n[1],a=n[2],l=n[3],s=o+e.x,c=i+e.y,u=a+e.x,d=l+e.y;return[s,c,u,d,(s+u)/2,(c+d)/2]},k=function(e,t,n,o){var a=g(t[0]);if(a.length<1)return null;var l="start"===n?1:a.length-1,s=a[l].data,c=[s[4],s[5]],u=[s[2],s[3]],d=[s[0],s[1]],p=a[l-1],f=[0,0];"move"===p.op?f=p.data:"bcurveTo"===p.op&&(f=[p.data[4],p.data[5]]);var h=function(e,t){return Math.pow(1-e,3)*c[t]+3*e*Math.pow(1-e,2)*u[t]+3*Math.pow(e,2)*(1-e)*d[t]+f[t]*Math.pow(e,3)},m="start"===n?f:c,v=(0,r.Z)(m,2),b=v[0],y=v[1],x=[h(.3,0),h(.3,1)],w=x[0],k=x[1],E=Math.hypot(b-w,y-k),S=(b-w)/E,_=(y-k)/E,j={arrow:30,bar:15,dot:15,triangle:15}[o],C=0;if("arrow"===o){var O=(0,r.Z)(e.points[e.points.length-1],2),M=O[0],I=O[1],P=e.points.length>1?e.points[e.points.length-2]:[0,0],T=(0,r.Z)(P,2),D=T[0],L=T[1];C=Math.hypot(M-D,I-L)}else for(var A=0;A<e.points.length;A++){var Z=e.points[A-1]||[0,0],z=(0,r.Z)(Z,2),R=z[0],N=z[1],B=(0,r.Z)(e.points[A],2),W=B[0],H=B[1];C+=Math.hypot(W-R,H-N)}var F=Math.min(j,C/2),U=b-S*F,K=y-_*F;if("dot"===o)return[b,y,Math.hypot(K-y,U-b)+e.strokeWidth];var Y={arrow:20,bar:90,triangle:25}[o],G=(0,i.U1)(U,K,b,y,-Y*Math.PI/180),V=(0,r.Z)(G,2),X=V[0],q=V[1],J=(0,i.U1)(U,K,b,y,Y*Math.PI/180),$=(0,r.Z)(J,2);return[b,y,X,q,$[0],$[1]]},E=function(e,t,n){var o;if(e.points.length<2){var s=(0,r.Z)(e.points[0],2),c=s[0],p=s[1],f=(0,i.U1)(e.x+c,e.y+p,t,n,e.angle),h=(0,r.Z)(f,2),m=h[0],v=h[1],b=[m,v,m,v],x=(0,u.WJ)(e);if(x){var w=d._.getMinMaxXYWithBoundText(e,[m,v,m,v],x);b=[w[0],w[1],w[2],w[3]]}return b}var k=null===(o=(0,l.R2)(e))||void 0===o?void 0:o[0],E=null!=k?k:function(e){var t=a.Z.generator(),n=(0,l.i)(e);return t["sharp"!==e.strokeSharpness?"curve":n.fill?"polygon":"linearPath"](e.points,n)}(e),S=g(E),_=y(S,(function(r,o){return(0,i.U1)(e.x+r,e.y+o,t,n,e.angle)})),j=[_[0],_[1],_[2],_[3]],C=(0,u.WJ)(e);if(C){var O=d._.getMinMaxXYWithBoundText(e,j,C);j=[O[0],O[1],O[2],O[3]]}return j},S=function(e){var t,n=h(e),o=(0,r.Z)(n,6),a=o[0],l=o[1],c=o[2],u=o[3],d=o[4],p=o[5];if((0,s.F9)(e)){var f=x(e.points.map((function(t){var n=(0,r.Z)(t,2),o=n[0],a=n[1];return(0,i.U1)(o,a,d-e.x,p-e.y,e.angle)}))),m=(0,r.Z)(f,4),g=m[0],v=m[1],b=m[2],y=m[3];return[g+e.x,v+e.y,b+e.x,y+e.y]}if((0,s.bt)(e))t=E(e,d,p);else if("diamond"===e.type){var w=(0,i.U1)(d,l,d,p,e.angle),k=(0,r.Z)(w,2),S=k[0],_=k[1],j=(0,i.U1)(d,u,d,p,e.angle),C=(0,r.Z)(j,2),O=C[0],M=C[1],I=(0,i.U1)(a,p,d,p,e.angle),P=(0,r.Z)(I,2),T=P[0],D=P[1],L=(0,i.U1)(c,p,d,p,e.angle),A=(0,r.Z)(L,2),Z=A[0],z=A[1];t=[Math.min(S,O,T,Z),Math.min(_,M,D,z),Math.max(S,O,T,Z),Math.max(_,M,D,z)]}else if("ellipse"===e.type){var R=(c-a)/2,N=(u-l)/2,B=Math.cos(e.angle),W=Math.sin(e.angle),H=Math.hypot(R*B,N*W),F=Math.hypot(N*B,R*W);t=[d-H,p-F,d+H,p+F]}else{var U=(0,i.U1)(a,l,d,p,e.angle),K=(0,r.Z)(U,2),Y=K[0],G=K[1],V=(0,i.U1)(a,u,d,p,e.angle),X=(0,r.Z)(V,2),q=X[0],J=X[1],$=(0,i.U1)(c,u,d,p,e.angle),Q=(0,r.Z)($,2),ee=Q[0],te=Q[1],ne=(0,i.U1)(c,l,d,p,e.angle),re=(0,r.Z)(ne,2),oe=re[0],ie=re[1];t=[Math.min(Y,q,ee,oe),Math.min(G,J,te,ie),Math.max(Y,q,ee,oe),Math.max(G,J,te,ie)]}return t},_=function(e){if(!e.length)return[0,0,0,0];var t=1/0,n=-1/0,o=1/0,i=-1/0;return e.forEach((function(e){var a=S(e),l=(0,r.Z)(a,4),s=l[0],c=l[1],u=l[2],d=l[3];t=Math.min(t,s),o=Math.min(o,c),n=Math.max(n,u),i=Math.max(i,d)})),[t,o,n,i]},j=function(e,t,n,o){if(!(0,s.bt)(e)&&!(0,s.F9)(e))return[e.x,e.y,e.x+t,e.y+n];var i,u=(0,c.z)(0,t,(0,c.z)(1,n,e.points,o),o);if((0,s.F9)(e))i=x(u);else{var d=a.Z.generator(),p="sharp"===e.strokeSharpness?d.linearPath(u,(0,l.i)(e)):d.curve(u,(0,l.i)(e)),f=g(p);i=y(f)}var h=i,m=(0,r.Z)(h,4),v=m[0],b=m[1],w=m[2],k=m[3];return[v+e.x,b+e.y,w+e.x,k+e.y]},C=function(e,t,n){var o=a.Z.generator(),i="sharp"===n?o.linearPath(t,(0,l.i)(e)):o.curve(t,(0,l.i)(e)),s=g(i),c=y(s),u=(0,r.Z)(c,4),d=u[0],p=u[1],f=u[2],h=u[3];return[d+e.x,p+e.y,f+e.x,h+e.y]},O=function(e,t){if(!e.length)return[0,0,0,0];var n=1/0,o=e[0];return e.forEach((function(e){var a=S(e),l=(0,r.Z)(a,4),s=l[0],c=l[1],u=l[2],d=l[3],p=(0,i.LW)((s+u)/2,(c+d)/2,t.x,t.y);p<n&&(n=p,o=e)})),S(o)},M=function(e){var t=_(e),n=(0,r.Z)(t,4),o=n[0],i=n[1],a=n[2],l=n[3];return{minX:o,minY:i,maxX:a,maxY:l,width:a-o,height:l-i,midX:(o+a)/2,midY:(i+l)/2}}},2325:function(e,t,n){"use strict";n.d(t,{uu:function(){return F},T_:function(){return ae},j_:function(){return le},oT:function(){return Y},wX:function(){return R},MZ:function(){return se},wB:function(){return N},Qu:function(){return B},pX:function(){return H},fb:function(){return U}});var r=n(2577),o=function(e,t){return[0,0,0,0,t,e,1,0]},i=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=[0,0,0,0,0,0,0,0];if(t<0||t>7)throw new Error("Expected `index` between 0 and 7, got `".concat(t,"`"));return 0!==e&&(n[t]=e),n},a=function(e){return[e[0],e[1],e[2],e[3],-e[4],-e[5],-e[6],-e[7]]},l=function(e,t){return m(t)?[e[0]-t,e[1],e[2],e[3],e[4],e[5],e[6],e[7]]:[e[0]-t[0],e[1]-t[1],e[2]-t[2],e[3]-t[3],e[4]-t[4],e[5]-t[5],e[6]-t[6],e[7]-t[7]]},s=function(e,t){return m(t)?[e[0]*t,e[1]*t,e[2]*t,e[3]*t,e[4]*t,e[5]*t,e[6]*t,e[7]*t]:[c(e,t),t[1]*e[0]+t[0]*e[1]-t[4]*e[2]+t[5]*e[3]+t[2]*e[4]-t[3]*e[5]-t[7]*e[6]-t[6]*e[7],t[2]*e[0]+t[0]*e[2]-t[6]*e[3]+t[3]*e[6],t[3]*e[0]+t[6]*e[2]+t[0]*e[3]-t[2]*e[6],t[4]*e[0]+t[2]*e[1]-t[1]*e[2]+t[7]*e[3]+t[0]*e[4]+t[6]*e[5]-t[5]*e[6]+t[3]*e[7],t[5]*e[0]-t[3]*e[1]+t[7]*e[2]+t[1]*e[3]-t[6]*e[4]+t[0]*e[5]+t[4]*e[6]+t[2]*e[7],t[6]*e[0]+t[3]*e[2]-t[2]*e[3]+t[0]*e[6],t[7]*e[0]+t[6]*e[1]+t[5]*e[2]+t[4]*e[3]+t[3]*e[4]+t[2]*e[5]+t[1]*e[6]+t[0]*e[7]]},c=function(e,t){return t[0]*e[0]+t[2]*e[2]+t[3]*e[3]-t[6]*e[6]},u=function(e,t){return[d(e,t),e[1]*t[7]+e[4]*t[5]-e[5]*t[4]+e[7]*t[1],e[2]*t[7]-e[4]*t[6]+e[6]*t[4]+e[7]*t[2],e[3]*t[7]+e[5]*t[6]-e[6]*t[5]+e[7]*t[3],e[4]*t[7]+e[7]*t[4],e[5]*t[7]+e[7]*t[5],e[6]*t[7]+e[7]*t[6],e[7]*t[7]]},d=function(e,t){return e[0]*t[7]+e[1]*t[6]+e[2]*t[5]+e[3]*t[4]+e[4]*t[3]+e[5]*t[2]+e[6]*t[1]+e[7]*t[0]},p=function(e){return Math.sqrt(Math.abs(e[0]*e[0]-e[2]*e[2]-e[3]*e[3]+e[6]*e[6]))},f=function(e){var t=p(e);if(0===t||1===t)return e;var n=e[6]<0?-1:1;return s(e,n/t)},h=function(e){var t=function(e){return Math.sqrt(Math.abs(e[7]*e[7]-e[5]*e[5]-e[4]*e[4]+e[1]*e[1]))}(e);return 0===t||1===t?e:s(e,1/t)},m=function(e){return"number"==typeof e},g=(i(1,1),i(1,2),i(1,3),i(1,4),i(1,5),i(1,6),i(1,7),function(e,t,n){return f([0,n,e,t,0,0,0,0])}),v=function(e,t){return f(u(t,e))},b=function(e,t){return n=e,[(r=t)[0]*n[0]+r[2]*n[2]+r[3]*n[3]-r[6]*n[6],r[1]*n[0]+r[0]*n[1]-r[4]*n[2]+r[5]*n[3]+r[2]*n[4]-r[3]*n[5]-r[7]*n[6]-r[6]*n[7],r[2]*n[0]+r[0]*n[2]-r[6]*n[3]+r[3]*n[6],r[3]*n[0]+r[6]*n[2]+r[0]*n[3]-r[2]*n[6],r[4]*n[0]+r[7]*n[3]+r[0]*n[4]+r[3]*n[7],r[5]*n[0]+r[7]*n[2]+r[0]*n[5]+r[2]*n[7],r[6]*n[0]+r[0]*n[6],r[7]*n[0]+r[0]*n[7]];var n,r},y=function(e){var t=(0,r.Z)(e,2),n=t[0];return[0,0,0,0,t[1],n,1,0]},x=function(e){return[e[5],e[4]]},w=function(e,t){return f((n=e,[(r=t)[0]*n[0],r[1]*n[0]+r[0]*n[1],r[2]*n[0]+r[0]*n[2],r[3]*n[0]+r[0]*n[3],r[4]*n[0]+r[2]*n[1]-r[1]*n[2]+r[0]*n[4],r[5]*n[0]-r[3]*n[1]+r[1]*n[3]+r[0]*n[5],r[6]*n[0]+r[3]*n[2]-r[2]*n[3]+r[0]*n[6],r[7]*n[0]+r[6]*n[1]+r[5]*n[2]+r[4]*n[3]+r[3]*n[4]+r[2]*n[5]+r[1]*n[6]]));var n,r},k=function(e,t){return p(u(e,t))},E=function(e,t){return d(e,t)},S=function(e){return[0,0,0,0,e[4],e[5],0,0]},_=function(e,t){return n=s(e,Math.sin(t/2)),r=Math.cos(t/2),m(r)?[n[0]+r,n[1],n[2],n[3],n[4],n[5],n[6],n[7]]:[n[0]+r[0],n[1]+r[1],n[2]+r[2],n[3]+r[3],n[4]+r[4],n[5]+r[5],n[6]+r[6],n[7]+r[7]];var n,r},j=function(e,t){return f(s(s(e,t),a(e)))},C=n(6552),O=n(1493),M=n(8925),I=n(3063),P=n(1974),T=n(1002),D=n(6340),L=n(267),A=n(5710);function Z(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return z(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return z(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function z(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var R=function e(t,n,r,o){var i=10/n.zoom.value,a=[r,o];if(W(n,t)&&(0,L.oY)([t],n))return H(t,a,i);var l=(0,A.WJ)(t);if(l&&e(l,n,r,o))return!0;return B(t,n,a)},N=function(e,t,n,r){var o=10/t.zoom.value,i=(0,A.WJ)(e);return(!i||!R(i,t,n,r))&&(!B(e,t,[n,r])&&H(e,[n,r],o))},B=function(e,t,n){var r=10/t.zoom.value,o=(0,T.iB)(e)?G:function(e){if("arrow"===e.type)return!1;if("freedraw"===e.type)return!0;var t=!(0,D.Qm)(e.backgroundColor)||(0,P.Xo)(e);return"line"===e.type?t&&(0,C.g6)(e.points):t||(0,P.pC)(e)}(e)?V:X;return K({element:e,point:n,threshold:r,check:o})},W=function(e,t){return e.selectedElementIds[t.id]},H=function(e,t,n){var o=(0,r.Z)(t,2),i=o[0],a=o[1],l=(0,M.qf)(e),s=(0,r.Z)(l,4),c=s[0],u=s[1],d=s[2],p=s[3],f=(c+d)/2,h=(u+p)/2,m=(0,C.U1)(i,a,f,h,-e.angle),g=(0,r.Z)(m,2),v=g[0],b=g[1];return v>c-n&&v<d+n&&b>u-n&&b<p+n},F=function(e,t){var n=t.x,r=t.y,o=U(e,e.width,e.height);return K({element:e,point:[n,r],threshold:o,check:q})},U=function(e,t,n){var r=("diamond"===e.type?1/Math.sqrt(2):1)*Math.min(t,n);return Math.max(16,Math.min(.25*r,32))},K=function(e){switch(e.element.type){case"rectangle":case"image":case"text":case"diamond":case"ellipse":var t=Y(e.element,e.point);return e.check(t,e.threshold);case"freedraw":return!!e.check(J(e.element,e.point),e.threshold)&&te(e.element,e.point,e.threshold);case"arrow":case"line":return ne(e);case"selection":return console.warn("This should not happen, we need to investigate why it does."),!1}},Y=function(e,t){switch(e.type){case"rectangle":case"image":case"text":return J(e,t);case"diamond":return $(e,t);case"ellipse":return Q(e,t)}},G=function(e,t){return e<0},V=function(e,t){return e<t},X=function(e,t){return Math.abs(e)<t},q=function(e,t){return 0<=e&&e<t},J=function(e,t){var n=re(e,t),o=(0,r.Z)(n,4),i=o[1],a=o[2],l=o[3];return Math.max(E(i,g(0,1,-l)),E(i,g(1,0,-a)))},$=function(e,t){var n=re(e,t),o=(0,r.Z)(n,4),i=o[1],a=o[2],l=o[3],s=g(l,a,-l*a);return E(i,s)},Q=function(e,t){var n,o=ee(e,t),i=(0,r.Z)(o,2),a=i[0],l=i[1];return n=l,-Math.sign(n[1])*E(a,l)},ee=function(e,t){var n=re(e,t),i=(0,r.Z)(n,4),a=i[1],l=i[2],s=i[3],c=x(a),u=(0,r.Z)(c,2),d=u[0],p=u[1],f=.707,h=.707,m=l,g=s;[0,1,2,3].forEach((function(e){var t=m*f,n=g*h,r=(m*m-g*g)*Math.pow(f,3)/m,o=(g*g-m*m)*Math.pow(h,3)/g,i=t-r,a=n-o,l=d-r,s=p-o,c=Math.hypot(a,i),u=Math.hypot(s,l);f=Math.min(1,Math.max(0,(l*c/u+r)/m)),h=Math.min(1,Math.max(0,(s*c/u+o)/g));var v=Math.hypot(h,f);f/=v,h/=v}));var y,w=o(m*f,g*h);return[a,b(v(a,y=w),y)]},te=function(e,t,n){var o,i;if(0===e.angle)o=t[0]-e.x,i=t[1]-e.y;else{var a=(0,M.qf)(e),l=(0,r.Z)(a,4),s=l[0],c=l[1],u=l[2],d=l[3],p=(0,C.xj)(t,[s+(u-s)/2,c+(d-c)/2],-e.angle);o=p[0]-e.x,i=p[1]-e.y}var f,h=(0,r.Z)(e.points,2),m=h[0],g=h[1];if((0,C.LW)(m[0],m[1],o,i)<n||(0,C.LW)(g[0],g[1],o,i)<n)return!0;for(var v=0;v<e.points.length;v++){var b=[g[0]-m[0],g[1]-m[1]],y=Math.hypot(b[1],b[0]),x=[b[0]/y,b[1]/y],w=[o-m[0],i-m[1]],k=(w[0]*x[0]+w[1]*x[1])/Math.hypot(x[1],x[0]);f=[m[0]+x[0]*k,m[1]+x[1]*k];var E=(0,C.LW)(f[0],f[1],m[0],m[1]),S=(0,C.LW)(f[0],f[1],g[0],g[1]);if(f=S<E&&E>y?g:E<S&&S>y?m:f,Math.hypot(i-f[1],o-f[0])<n)return!0;m=g,g=e.points[v+1]}var _=(0,I.R2)(e);return!(!_||!_.sets.length)&&be(_,o,i,n)},ne=function(e){var t=e.element,n=e.threshold;if(!(0,I.R2)(t))return!1;var o=re(e.element,e.point),i=(0,r.Z)(o,4),a=i[0],l=i[1],s=i[2],c=i[3],u=g(0,1,-c),d=g(1,0,-s);if(!V(E(l,u),n)||!V(E(l,d),n))return!1;var p=x(a),f=(0,r.Z)(p,2),h=f[0],m=f[1],v=(0,I.R2)(t);if(!v)return!1;if(e.check===V&&v.some((function(e){return ve(e,h,m,t.strokeSharpness)})))return!0;return v.some((function(e){return be(e,h,m,n)}))},re=function(e,t){var n,o=y(t),i=(0,M.qf)(e),a=(0,r.Z)(i,4),s=a[0],c=a[1],u=a[2],d=a[3],p=(0,M.qf)(e),f=ie([s,c,u,d]),h=_(f,e.angle),m=j(h,o),g=function(e){return[0,0,0,0,Math.abs(e[4]),Math.abs(e[5]),1,0]}(l(m,S(f))),v=(n=e.x,[0,0,0,0,e.y,n,0,0]),b=l(m,v),x=(0,r.Z)(p,4),w=x[0],k=x[1];return[b,g,(x[2]-w)/2,(x[3]-k)/2]},oe=function(e){var t=(0,M.qf)(e),n=(0,r.Z)(t,4),o=n[0],i=n[1],l=n[2],c=n[3],u=ie([o,i,l,c]),d=_(u,e.angle),p=a(function(e){return[1,0,0,0,-.5*e[5],.5*e[4],0,0]}(S(u)));return s(p,d)},ie=function(e){var t=(0,r.Z)(e,4),n=t[0],i=t[1],a=t[2],l=t[3];return o((n+a)/2,(i+l)/2)},ae=function(e,t,n){var r=oe(e),o=j(r,y(t)),i=j(r,y(n)),a=v(o,i),l=e.height/e.width,s=e.width/2,c=e.height/2,u=a[2],d=a[3],p=a[1],f=Math.abs(d),h=Math.abs(u);switch(e.type){case"rectangle":case"image":case"text":return p/(s*(h+l*f));case"diamond":return f<h?p/(h*s):p/(f*c);case"ellipse":return p/(s*Math.sqrt(Math.pow(u,2)+Math.pow(l,2)*Math.pow(d,2)))}},le=function(e,t,n){if(0===t){var o=(0,M.qf)(e),i=(0,r.Z)(o,4),l=i[0],s=i[1],c=i[2],u=i[3],d=ie([l,s,c,u]);return x(d)}var p,f=oe(e),h=j(f,y(n)),m=a(f);switch(e.type){case"rectangle":case"image":case"text":case"diamond":p=ge(e,t,h);break;case"ellipse":p=me(e,t,h)}return x(j(m,p))},se=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,o=oe(e),i=j(o,y(t)),l=j(o,y(n)),s=v(i,l),c=a(o),u=ce(e,s,i,r);return u.map((function(e){return x(j(c,e))}))},ce=function(e,t,n){var r,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;switch(e.type){case"rectangle":case"image":case"text":case"diamond":var i=ue(e);r=i.flatMap((function(e,n){var r=[e,i[(n+1)%4]];return de(t,pe(r,o))})).concat(i.flatMap((function(e){return he(e,o,t)})));break;case"ellipse":r=fe(e,o,t)}if(r.length<2)return[];var a=r.sort((function(e,t){return k(e,n)-k(t,n)}));return[a[0],a[a.length-1]]},ue=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,n=t*e.width/2,r=t*e.height/2;switch(e.type){case"rectangle":case"image":case"text":return[o(n,r),o(n,-r),o(-n,-r),o(-n,r)];case"diamond":return[o(0,r),o(n,0),o(0,-r),o(-n,0)]}},de=function(e,t){var n=(0,r.Z)(t,2),o=n[0],i=n[1];return E(o,e)*E(i,e)>=0?[]:[w(e,v(o,i))]},pe=function(e,t){var n=(0,r.Z)(e,2),o=n[0],i=n[1],a=function(e,t){var n=.5*t;return[1,0,0,0,n*e[4],n*e[5],0,0]}(function(e,t){return h([0,0,0,0,t[4]-e[4],t[5]-e[5],0,0])}(o,i),t);return[j(a,o),j(a,i)]},fe=function(e,t,n){var r=e.width/2+t,i=e.height/2+t,a=n[2],l=n[3],s=n[1],c=r*r*a*a+i*i*l*l,u=c-s*s;if(0===c||u<=0)return[];var d=Math.sqrt(u),p=-r*r*a*s,f=-i*i*l*s;return[o((p+r*i*l*d)/c,(f-r*i*a*d)/c),o((p-r*i*l*d)/c,(f+r*i*a*d)/c)]},he=function(e,t,n){if(0===t)return 0===E(n,e)?[e]:[];var i=n[2],a=n[3],l=n[1],s=x(e),c=(0,r.Z)(s,2),u=c[0],d=c[1],p=i*i+a*a,f=t*t*p-Math.pow(i*u+a*d+l,2);if(0===p||f<=0)return[];var h=Math.sqrt(f),m=u*a*a-d*i*a-i*l,g=d*i*i-u*i*a-a*l;return[o((m+a*h)/p,(g-i*h)/p),o((m-a*h)/p,(g+i*h)/p)]},me=function(e,t,n){var i=Math.abs(t),a=e.width*i/2,l=e.height*i/2,s=Math.sign(t),c=x(n),u=(0,r.Z)(c,2),d=u[0],p=u[1],f=0===p?1e-4:p,h=Math.pow(d,2)*Math.pow(l,2)+Math.pow(f,2)*Math.pow(a,2),m=(-d*Math.pow(l,2)+s*f*Math.sqrt(Math.max(0,h-Math.pow(a,2)*Math.pow(l,2))))/h,g=(-m*d-1)/f,v=-Math.pow(a,2)*m/(Math.pow(g,2)*Math.pow(l,2)+Math.pow(m,2)*Math.pow(a,2));return o(v,(-m*v-1)/g)},ge=function(e,t,n){var r=Math.abs(t),o=Math.sign(t),i=ue(e,r),a=0,l=null;return i.forEach((function(e){var t=o*v(n,e)[1];t>a&&(a=t,l=e)})),l},ve=function(e,t,n,r){var o,i=[],a=!1,l=Z((0,M.CM)(e));try{for(l.s();!(o=l.n()).done;){var s=o.value;"move"===s.op?(a=!a)&&i.push([s.data[0],s.data[1]]):"bcurveTo"===s.op?a&&(i.push([s.data[0],s.data[1]]),i.push([s.data[2],s.data[3]]),i.push([s.data[4],s.data[5]])):"lineTo"===s.op&&a&&i.push([s.data[0],s.data[1]])}}catch(e){l.e(e)}finally{l.f()}if(i.length>=4){if("sharp"===r)return(0,C.c9)(i,t,n);var c=(0,O.s)(i,10,5);return(0,C.c9)(c,t,n)}return!1},be=function(e,t,n,o){var i=(0,M.CM)(e),a=[0,0];return i.some((function(i,l){var s=i.op,c=i.data;if("move"===s)a=c;else{if("bcurveTo"===s){var u=[c[0],c[1]],d=[c[2],c[3]],p=[c[4],c[5]],f=a;a=p;var h=function(e,t,n,o,i,a){for(var l=(0,r.Z)(i,2),s=l[0],c=l[1],u=function(r,i){return Math.pow(1-r,3)*o[i]+3*r*Math.pow(1-r,2)*n[i]+3*Math.pow(r,2)*(1-r)*t[i]+e[i]*Math.pow(r,3)},d=0;d<=1;){var p=u(d,0),f=u(d,1);if(Math.sqrt(Math.pow(p-s,2)+Math.pow(f-c,2))<a)return!0;d+=.01}return!1}(f,u,d,p,[t,n],o);return h}if("lineTo"===s)return ve(e,t,n,"sharp");"qcurveTo"===s&&console.warn("qcurveTo is not implemented yet")}return!1}))}},5637:function(e,t,n){"use strict";n.d(t,{PK:function(){return f},Xx:function(){return h},bp:function(){return g},oA:function(){return m}});var r=n(2577),o=n(7169),i=n(8950),a=n(2975),l=n.n(a),s=n(2335),c=n(5202),u=n(1974);function d(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function p(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?d(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):d(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var f=function(e){return new Promise((function(t,n){var r=new Image;r.onload=function(){t(r)},r.onerror=function(e){n(e)},r.src=e}))},h=function(){var e=(0,i.Z)(l().mark((function e(t){var n,r,o,a,c;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.fileIds,r=t.files,o=t.imageCache,a=new Map,c=new Map,e.next=5,Promise.all(n.reduce((function(e,t){var n=r[t];return n&&!a.has(t)?(a.set(t,!0),e.concat((0,i.Z)(l().mark((function e(){var r,i,a;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(e.prev=0,n.mimeType!==s.LO.binary){e.next=3;break}throw new Error("Only images can be added to ImageCache");case 3:return r=f(n.dataURL),i={image:r,mimeType:n.mimeType},o.set(t,i),e.next=8,r;case 8:a=e.sent,o.set(t,p(p({},i),{},{image:a})),e.next=15;break;case 12:e.prev=12,e.t0=e.catch(0),c.set(t,!0);case 15:case"end":return e.stop()}}),e,null,[[0,12]])})))())):e}),[]));case 5:return e.abrupt("return",{imageCache:o,updatedFiles:a,erroredFiles:c});case 6:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),m=function(e){return e.filter((function(e){return(0,u.wi)(e)}))},g=function(){var e=(0,i.Z)(l().mark((function e(t){var n,o,i,a,u,d,p;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=(new DOMParser).parseFromString(t,s.LO.svg),o=n.querySelector("svg"),!n.querySelector("parsererror")&&"svg"===(null==(l=o)?void 0:l.nodeName.toLowerCase())){e.next=7;break}throw new Error((0,c.t)("errors.invalidSVGString"));case 7:return o.hasAttribute("xmlns")||o.setAttribute("xmlns",s.hR),o.hasAttribute("width")&&o.hasAttribute("height")||(i=o.getAttribute("viewBox"),a=o.getAttribute("width")||"50",u=o.getAttribute("height")||"50",i&&(d=i.match(/\d+ +\d+ +(\d+) +(\d+)/))&&(p=(0,r.Z)(d,3),a=p[1],u=p[2]),o.setAttribute("width",a),o.setAttribute("height",u)),e.abrupt("return",o.outerHTML);case 10:case"end":return e.stop()}var l}),e)})));return function(t){return e.apply(this,arguments)}}()},1002:function(e,t,n){"use strict";n.d(t,{ox:function(){return f.ox},BQ:function(){return $},_M:function(){return Q},EJ:function(){return I},o8:function(){return C},Sy:function(){return d.Sy},os:function(){return p.os},KP:function(){return p.KP},Un:function(){return k},$V:function(){return M},qf:function(){return p.qf},Pi:function(){return p.Pi},jt:function(){return y},o4:function(){return c},Lm:function(){return X},Qp:function(){return u},T:function(){return E.T},xx:function(){return E.xx},Uo:function(){return G},n2:function(){return x},PC:function(){return f.PC},kK:function(){return f.kK},n_:function(){return V},wX:function(){return h.wX},r2:function(){return i.r2},wB:function(){return h.wB},QD:function(){return l},qP:function(){return q},iB:function(){return i.iB},Up:function(){return d.Up},vw:function(){return d.vw},y8:function(){return d.y8},VL:function(){return d.VL},oN:function(){return _.oN},JZ:function(){return d.JZ},RT:function(){return U},b_:function(){return H},vY:function(){return E.vY},N_:function(){return d.N_}});var r=n(7169),o=n(1935),i=n(1974),a=n(2335),l=function(e){return(0,i.bt)(e)||(0,i.F9)(e)?e.points.length<2:0===e.width&&0===e.height},s=function(e,t,n){var r=Math.abs(t),o=Math.abs(n);if("line"===e||"arrow"===e||"freedraw"===e){var i=Math.round(Math.atan(o/r)/a.ay)*a.ay;0===i?n=0:i===Math.PI/2?t=0:n=r*Math.tan(i)*Math.sign(n)||n}else"selection"!==e&&(n=r*Math.sign(n));return{width:t,height:n}},c=function(e,t,n,r){var o=n-e,i=r-t,l=Math.round(Math.atan(i/o)/a.ay)*a.ay;if(0===l)i=0;else if(l===Math.PI/2)o=0;else{var s=Math.tan(l),c=t-s*e,u=-1/s,d=r-u*n;o=(-1*d- -1*c)/(-1*s- -1*u)-e,i=(c*u-d*s)/(-1*s- -1*u)-t}return{width:o,height:i}},u=function(e){var t={width:e.width,height:e.height,x:e.x,y:e.y};if(e.width<0){var n=Math.abs(e.width);t.width=n,t.x=e.x-n}if(e.height<0){var r=Math.abs(e.height);t.height=r,t.y=e.y-r}return t},d=n(2791),p=n(8925),f=n(267),h=n(2325),m=n(2577),g=n(2726),v=["rotation"],b=function(e,t,n){return t>=e[0]&&t<=e[0]+e[2]&&n>=e[1]&&n<=e[1]+e[3]},y=function(e,t,n,r,o,i){return e.reduce((function(e,a){if(e)return e;var l=function(e,t,n,r,o,i){if(!t.selectedElementIds[e.id])return!1;var a=(0,f.PC)(e,o,i),l=a.rotation,s=(0,g.Z)(a,v);if(l&&b(l,n,r))return"rotation";var c=Object.keys(s).filter((function(e){var t=s[e];return!!t&&b(t,n,r)}));return c.length>0&&c[0]}(a,t,n,r,o,i);return l?{element:a,transformHandleType:l}:null}),null)},x=function(e,t,n,r,o){var i=(0,m.Z)(e,4),a=i[0],l=i[1],s=i[2],c=i[3],u=(0,f.kK)([a,l,s,c,(a+s)/2,(l+c)/2],0,r,o,f.ox);return Object.keys(u).find((function(e){var r=u[e];return r&&b(r,t,n)}))||!1},w=["ns","nesw","ew","nwse"],k=function(e){var t=e.element,n=e.transformHandleType,r=t&&Math.sign(t.height)*Math.sign(t.width)==-1,o=null;switch(n){case"n":case"s":o="ns";break;case"w":case"e":o="ew";break;case"nw":case"se":o=r?"nesw":"nwse";break;case"ne":case"sw":o=r?"nwse":"nesw";break;case"rotation":return"grab"}return o&&t&&(o=function(e,t){var n=w.indexOf(e);if(n>=0){var r=Math.round(t/(Math.PI/4));e=w[(n+r)%w.length]}return e}(o,t.angle)),o?"".concat(o,"-resize"):""},E=n(8634),S=n(8290),_=n(5710),j=n(242),C=function(e,t,n,r){var o=arguments.length>4&&void 0!==arguments[4]&&arguments[4],i=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,a=arguments.length>6&&void 0!==arguments[6]?arguments[6]:0,l=arguments.length>7?arguments[7]:void 0,s=(0,p.KP)(t),c=(0,m.Z)(s,2),u=c[0],d=c[1],f={x:n-u,y:r-d};t.forEach((function(n){if(O(o,i,a,e,n,f),!n.groupIds.length||l.editingGroupId&&!(0,j.zq)(l,n)){var r=(0,_.WJ)(n);r&&O(o,i,a,e,r,f)}(0,S.Ww)(n,{simultaneouslyUpdated:t})}))},O=function(e,t,n,r,i,a){var l,s;if(e){var c=e&&t<n,u=e&&t>n,d=r.originalElements.get(i.id);l=c&&d?d.x:i.x+a.x,s=u&&d?d.y:i.y+a.y}else l=i.x+a.x,s=i.y+a.y;(0,o.DR)(i,{x:l,y:s})},M=function(e,t,n){var r=(0,p.KP)(e),o=(0,m.Z)(r,2);return[t-o[0],n-o[1]]},I=function(e,t,n,r,i,a,l,c,u,d,p){if(u&&"selection"!==e.type)if(p)c=l/p;else{if(Math.abs(a-r)>Math.abs(i-n)){var f=s(t,c,i<n?-l:l);l=f.width,c=f.height}else{var h=s(t,l,a<r?-c:c);l=h.width,c=h.height}c<0&&(c=-c)}var m=i<n?n-l:n,g=a<r?r-c:r;d&&(m=n-(l+=l)/2,g=r-(c+=c)/2),0!==l&&0!==c&&(0,o.DR)(e,{x:m,y:g,width:l,height:c})},P=n(8950),T=n(2975),D=n.n(T),L=n(6066),A=n(6340),Z=n(1564),z=n(6208),R=n(828),N=n(6938),B=n(6665),W=function(e,t,n,r,o,i){var a=r.zoom,l=180*n/Math.PI,s=e*(a.value-1)/2,c=t*(a.value-1)/2;return e>o&&1!==a.value&&(s=o*(a.value-1)/2),t>i&&1!==a.value&&(c=i*(a.value-1)/2),"translate(".concat(s,"px, ").concat(c,"px) scale(").concat(a.value,") rotate(").concat(l,"deg)")},H=function(e){var t,n=e.id,r=e.onChange,l=e.onSubmit,s=e.getViewportCoords,c=e.element,u=e.canvas,p=e.excalidrawContainer,f=e.app,h=function(){var e,r=f.state,l=null===(e=Z.Z.getScene(c))||void 0===e?void 0:e.getElement(n);if(l){var u=l.textAlign,p=l.verticalAlign,h=(0,_.hP)((0,A.mO)(l));if(l&&(0,i.iB)(l)){var v=l.x,b=l.y,y=(0,_.tl)(l),x=l.width,w=l.height,k=l.width,E=l.height;if(y&&l.containerId){if((0,i.Yv)(y)){var S=N._.getBoundTextElementPosition(y,l);v=S.x,b=S.y}var j=function(e,t){var n=t.style.fontFamily.replace(/"/g,"");return(0,A.$g)({fontFamily:e.fontFamily})!==n||"".concat(e.fontSize,"px")!==t.style.fontSize}(l,g),C=(0,_.HE)(y),O=Number(g.style.height.slice(0,-2));if(O>0&&(E=O),j&&(t=C.height,E=l.height),t||(t=C.height),x=(0,d.jd)(y),w=(0,d.N2)(y),!(0,i.Yv)(y)&&E>w){var M=Math.min(E-w,h);return void(0,o.DR)(y,{height:C.height+M})}if(!(0,i.Yv)(y)&&C.height>t&&E<w){var I=Math.min(w-E,h);(0,o.DR)(y,{height:C.height-I})}else p===a.oX.MIDDLE&&((0,i.Yv)(y)||(b=y.y+C.height/2-E/2)),p===a.oX.BOTTOM&&(b=y.y+C.height-E-(0,_.S)(l))}var P=s(v,b),T=(0,m.Z)(P,2),D=T[0],L=T[1],z=g.selectionStart,R=g.selectionEnd,B=g.value.length;if(g.value=l.originalText,z===R&&R!==B){var H=B-R;g.selectionStart=g.value.length-H,g.selectionEnd=g.value.length-H}var F=l.originalText.split("\n"),U=l.containerId?h:l.height/F.length;y||(x=(r.width-8-D)/r.zoom.value);var K=(r.height-L)/r.zoom.value,Y=(0,i.Yv)(y)?D-a.gK:D;Object.assign(g.style,{font:(0,A.mO)(l),lineHeight:"".concat(U,"px"),width:"".concat(Math.min(k,x),"px"),height:"".concat(E,"px"),left:"".concat(Y,"px"),top:"".concat(L,"px"),transform:W(k,E,(0,_.H_)(l),r,x,K),textAlign:u,verticalAlign:p,color:l.strokeColor,opacity:l.opacity/100,filter:"var(--theme-filter)",maxHeight:"".concat(K,"px")}),(0,A.h2)()&&(g.style.fontFamily=(0,A.$g)(l)),(0,o.DR)(l,{x:v,y:b})}}},g=document.createElement("textarea");g.dir="auto",g.tabIndex=0,g.dataset.type="wysiwyg",g.wrap="off",g.classList.add("excalidraw-wysiwyg");var v="pre",b="normal";(0,i.Xh)(c)&&(v="pre-wrap",b="break-word");var y=(0,i.Yv)((0,_.tl)(c)),x=y?"#fff":"transparent",w=y?"0 ".concat(a.gK,"px"):"0";Object.assign(g.style,{position:"absolute",display:"inline-block",minHeight:"1em",backfaceVisibility:"hidden",margin:0,padding:w,border:0,outline:0,resize:"none",background:x,overflow:"hidden",zIndex:"var(--zIndex-wysiwyg)",wordBreak:b,whiteSpace:v,overflowWrap:"break-word"}),h(),r&&(g.onpaste=function(){var e=(0,P.Z)(D().mark((function e(t){var n,o,i,a,l,s,u,p,h,m;return D().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t.preventDefault(),e.next=3,(0,B.mQ)(t,!0);case 3:if((n=e.sent).text){e.next=6;break}return e.abrupt("return");case 6:if(o=(0,_.bG)(n.text)){e.next=9;break}return e.abrupt("return");case 9:i=g.value,a=Math.min(g.selectionStart,g.selectionEnd),l=Math.max(g.selectionStart,g.selectionEnd),s="".concat(i.substring(0,a)).concat(o).concat(i.substring(l)),u=(0,_.tl)(c),p=(0,A.mO)({fontSize:f.state.currentItemFontSize,fontFamily:f.state.currentItemFontFamily}),h=u?(0,_.lD)(s,p,(0,d.jd)(u)):s,m=(0,_.X1)(h,p),g.style.height="".concat(m.height,"px"),r(s);case 19:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),g.oninput=function(){var e,t=null===(e=Z.Z.getScene(c))||void 0===e?void 0:e.getElement(n),o=(0,A.mO)(t),a=Math.round(g.scrollHeight/(0,_.hP)(o));if((0,i.Xh)(c)&&a>1){var l="auto";g.style.height="0px";var s=!1;if(2===a){var u=(0,_.tl)(c);1===(0,_.lD)(g.value,o,(0,d.jd)(u)).split("\n").length&&(l="".concat(g.scrollHeight/2,"px"),g.style.height=l,s=!0)}s||(g.style.height="".concat(g.scrollHeight,"px"))}r((0,_.bG)(g.value))}),g.onkeydown=function(e){if(!e.shiftKey&&R.Lo.keyTest(e))e.preventDefault(),f.actionManager.executeAction(R.Lo),h();else if(!e.shiftKey&&R.CZ.keyTest(e))e.preventDefault(),f.actionManager.executeAction(R.CZ),h();else if(z.Tu.keyTest(e))f.actionManager.executeAction(z.Tu);else if(z.Zq.keyTest(e))f.actionManager.executeAction(z.Zq);else if(e.key===L.tW.ESCAPE)e.preventDefault(),M=!0,I();else if(e.key===L.tW.ENTER&&e[L.tW.CTRL_OR_CMD]){if(e.preventDefault(),e.isComposing||229===e.keyCode)return;M=!0,I()}else(e.key===L.tW.TAB||e[L.tW.CTRL_OR_CMD]&&(e.code===L.aU.BRACKET_LEFT||e.code===L.aU.BRACKET_RIGHT))&&(e.preventDefault(),e.shiftKey||e.code===L.aU.BRACKET_LEFT?j():S(),g.dispatchEvent(new Event("input")))};var k=" ".repeat(4),E=new RegExp("^ {1,".concat(4,"}")),S=function(){var e=g.selectionStart,t=g.selectionEnd,n=C(),r=g.value;n.forEach((function(e){var t=r.slice(0,e),n=r.slice(e);r="".concat(t).concat(k).concat(n)})),g.value=r,g.selectionStart=e+4,g.selectionEnd=t+4*n.length},j=function(){var e=g.selectionStart,t=g.selectionEnd,n=C(),r=[],o=g.value;n.forEach((function(e){var t=o.slice(e,e+4).match(E);if(t){var n=o.slice(0,e),i=o.slice(e+t[0].length);o="".concat(n).concat(i),r.push(e)}})),g.value=o,r.length&&(e>r[r.length-1]?g.selectionStart=Math.max(e-4,r[r.length-1]):g.selectionStart=e,g.selectionEnd=Math.max(g.selectionStart,t-4*r.length))},C=function(){var e=g.selectionStart,t=g.selectionEnd,n=g.value,r=n.slice(0,e).match(/[^\n]*$/)[0].length;return e-=r,n.slice(e,t).split("\n").reduce((function(t,n,r,o){return t.concat(r?t[r-1]+o[r-1].length+1:e)}),[]).reverse()},O=function(e){e.preventDefault(),e.stopPropagation()},M=!1,I=function(){var e;T();var t=null===(e=Z.Z.getScene(c))||void 0===e?void 0:e.getElement(c.id);if(t){var n=g.value,r=(0,_.tl)(t);if(r)if(n=t.text,g.value){var a=(0,_.xB)(r);a&&a===c.id||(0,o.DR)(r,{boundElements:(r.boundElements||[]).concat({type:"text",id:c.id})})}else{var s;(0,o.DR)(r,{boundElements:null===(s=r.boundElements)||void 0===s?void 0:s.filter((function(e){return!(0,i.iB)(e)}))})}l({text:n,viaKeyboard:M,originalText:g.value})}},T=function(){K||(K=!0,g.onblur=null,g.oninput=null,g.onkeydown=null,Y&&Y.disconnect(),window.removeEventListener("resize",h),window.removeEventListener("wheel",O,!0),window.removeEventListener("pointerdown",F),window.removeEventListener("pointerup",H),window.removeEventListener("blur",I),U(),g.remove())},H=function e(t){window.removeEventListener("pointerup",e);var n=null==t?void 0:t.target,r=n instanceof HTMLInputElement&&n.closest(".color-picker-input")&&(0,A.s)(n);setTimeout((function(){g.onblur=I,n&&r&&(n.onblur=function(){g.focus()}),r||g.focus()}))},F=function(e){var t=e.target instanceof HTMLInputElement&&e.target.closest(".color-picker-input")&&(0,A.s)(e.target);((e.target instanceof HTMLElement||e.target instanceof SVGElement)&&e.target.closest(".".concat(a.$C.SHAPE_ACTIONS_MENU))&&!(0,A.s)(e.target)||t)&&(g.onblur=null,window.addEventListener("pointerup",H),window.addEventListener("blur",I))},U=Z.Z.getScene(c).addCallback((function(){var e;h(),!(null===(e=document.activeElement)||void 0===e||!e.closest(".color-picker-input"))||g.focus()})),K=!1;g.select(),H();var Y=null;u&&"ResizeObserver"in window?(Y=new window.ResizeObserver((function(){h()}))).observe(u):window.addEventListener("resize",h),window.addEventListener("pointerdown",F),window.addEventListener("wheel",O,{passive:!1,capture:!0}),null==p||p.querySelector(".excalidraw-textEditorContainer").appendChild(g)},F=n(75),U=function(e,t){return Boolean(!e.viewModeEnabled&&"custom"!==e.activeTool.type&&(e.editingElement||"selection"!==e.activeTool.type&&"eraser"!==e.activeTool.type)||(0,F.eD)(t,e).length)};function K(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Y(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?K(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):K(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var G=function(e){return e.reduce((function(e,t){return e+t.version}),0)},V=function(e){return e.filter((function(e){return!e.isDeleted&&!l(e)}))},X=function(e){return e.filter((function(e){return!e.isDeleted}))},q=function(e){return!e.isDeleted},J=function(e){return X(e).map((function(e){return(0,i.dt)(e.type)?Y(Y({},e),{},{lastCommittedPoint:null}):e}))},$=function(e){return J(e)},Q=function(e){return J(e)}},6938:function(e,t,n){"use strict";n.d(t,{_:function(){return _}});var r=n(1930),o=n(7169),i=n(2577),a=n(8821),l=n(5169),s=n(6552),c=n(1002),u=n(8925),d=n(1935),p=n(1564),f=n(8290),h=n(6340),m=n(1974),g=n(6066),v=n(5710),b=n(3063),y=n(2335);function x(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return w(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return w(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function w(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function k(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function E(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?k(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):k(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var S={version:null,points:[],zoom:null},_=function(){function e(t,n){(0,a.Z)(this,e),this.elementId=t.id,p.Z.mapElementToScene(this.elementId,n),e.normalizePoints(t),this.selectedPointsIndices=null,this.lastUncommittedPoint=null,this.isDragging=!1,this.pointerOffset={x:0,y:0},this.startBindingElement="keep",this.endBindingElement="keep",this.pointerDownState={prevSelectedPointsIndices:null,lastClickedPoint:-1,origin:null,segmentMidpoint:{value:null,index:null,added:!1}},this.hoverPointIndex=-1,this.segmentMidPointHoveredCoords=null}return(0,l.Z)(e,null,[{key:"getElement",value:function(e){var t,n=null===(t=p.Z.getScene(e))||void 0===t?void 0:t.getNonDeletedElement(e);return n||null}},{key:"handleBoxSelection",value:function(t,n,r){var o;if(!n.editingLinearElement||"selection"!==(null===(o=n.draggingElement)||void 0===o?void 0:o.type))return!1;var a=n.editingLinearElement,l=a.selectedPointsIndices,s=a.elementId,u=e.getElement(s);if(!u)return!1;var d=(0,c.qf)(n.draggingElement),p=(0,i.Z)(d,4),f=p[0],h=p[1],m=p[2],g=p[3],v=e.getPointsGlobalCoordinates(u).reduce((function(e,n,r){return(n[0]>=f&&n[0]<=m&&n[1]>=h&&n[1]<=g||t.shiftKey&&null!=l&&l.includes(r))&&e.push(r),e}),[]);r({editingLinearElement:E(E({},a),{},{selectedPointsIndices:v.length?v:null})})}},{key:"handlePointDragging",value:function(t,n,r,o,a,l){if(!l)return!1;var s=l.selectedPointsIndices,c=l.elementId,u=e.getElement(c);if(!u)return!1;var d=u.points[l.pointerDownState.lastClickedPoint];if(s&&d){if((0,g.Ge)(t)&&1===s.length&&u.points.length>1){var p=s[0],f=u.points[0===p?1:p-1],b=e._getShiftLockedDelta(u,f,[r,o],n.gridSize),y=(0,i.Z)(b,2),x=y[0],w=y[1];e.movePoints(u,[{index:p,point:[x+f[0],w+f[1]],isDragging:p===l.pointerDownState.lastClickedPoint}])}else{var k=e.createPointAt(u,r-l.pointerOffset.x,o-l.pointerOffset.y,n.gridSize),E=k[0]-d[0],S=k[1]-d[1];e.movePoints(u,s.map((function(t){return{index:t,point:t===l.pointerDownState.lastClickedPoint?e.createPointAt(u,r-l.pointerOffset.x,o-l.pointerOffset.y,n.gridSize):[u.points[t][0]+E,u.points[t][1]+S],isDragging:t===l.pointerDownState.lastClickedPoint}}))),(0,v.WJ)(u)&&(0,v.RB)(u,!1)}if((0,m.Mn)(u,!1)){var _=[];0===s[0]&&_.push((0,h.AK)(e.getPointGlobalCoordinates(u,u.points[0])));var j=s[s.length-1];j===u.points.length-1&&_.push((0,h.AK)(e.getPointGlobalCoordinates(u,u.points[j]))),_.length&&a(u,_)}return!0}return!1}},{key:"handlePointerUp",value:function(t,n,r){var o,i=n.elementId,a=n.selectedPointsIndices,l=n.isDragging,c=n.pointerDownState,u=e.getElement(i);if(!u)return n;var d={};if(l&&a){var m,g=x(a);try{for(g.s();!(m=g.n()).done;){var v=m.value;if(0===v||v===u.points.length-1){(0,s.g6)(u.points,r.zoom.value)&&e.movePoints(u,[{index:v,point:0===v?u.points[u.points.length-1]:u.points[0]}]);var b=(0,f.N1)(r)?(0,f.Y9)((0,h.AK)(e.getPointAtIndexGlobalCoordinates(u,v)),p.Z.getScene(u)):null;d[0===v?"startBindingElement":"endBindingElement"]=b}}}catch(e){g.e(e)}finally{g.f()}}return E(E(E({},n),d),{},{selectedPointsIndices:l||t.shiftKey?!l&&t.shiftKey&&null!==(o=c.prevSelectedPointsIndices)&&void 0!==o&&o.includes(c.lastClickedPoint)?a&&a.filter((function(e){return e!==c.lastClickedPoint})):a:null!=a&&a.includes(c.lastClickedPoint)?[c.lastClickedPoint]:a,isDragging:!1,pointerOffset:{x:0,y:0}})}},{key:"isSegmentTooShort",value:function(t,n,r,o){var i=(0,s.LW)(n[0],n[1],r[0],r[1]);return t.points.length>2&&"round"===t.strokeSharpness&&(i=(0,s.eH)(t,r)),i*o.value<4*e.POINT_HANDLE_SIZE}},{key:"getSegmentMidPoint",value:function(t,n,r,o){var a=(0,s.H5)(n,r);if(t.points.length>2&&"round"===t.strokeSharpness){var l=(0,s.yB)(t,t.points[o]);if(l){var c=(0,s.lk)(t,t.points[o],.5),u=(0,s.N_)(l[0],l[1],l[2],l[3],c),d=(0,i.Z)(u,2),p=d[0],f=d[1];a=e.getPointGlobalCoordinates(t,[p,f])}}return a}},{key:"getSegmentMidPointIndex",value:function(t,n,r){var o=e.getElement(t.elementId);if(!o)return-1;for(var i=e.getEditorMidPoints(o,n),a=0;a<i.length;){if(e.arePointsEqual(r,i[a]))return a+1;a++}return-1}},{key:"handlePointerDown",value:function(t,n,o,a,l){var u,h={didAddPoint:!1,hitElement:null,linearElementEditor:null};if(!l)return h;var g=l.elementId,v=e.getElement(g);if(!v)return h;var b=e.getSegmentMidpointHitCoords(l,a,n),y=null;if(b&&(y=e.getSegmentMidPointIndex(l,n,b)),t.altKey&&n.editingLinearElement)return null==l.lastUncommittedPoint&&((0,d.DR)(v,{points:[].concat((0,r.Z)(v.points),[e.createPointAt(v,a.x,a.y,n.gridSize)])}),h.didAddPoint=!0),o.resumeRecording(),h.linearElementEditor=E(E({},l),{},{pointerDownState:{prevSelectedPointsIndices:l.selectedPointsIndices,lastClickedPoint:-1,origin:{x:a.x,y:a.y},segmentMidpoint:{value:b,index:y,added:!1}},selectedPointsIndices:[v.points.length-1],lastUncommittedPoint:null,endBindingElement:(0,f.Y9)(a,p.Z.getScene(v))}),h.didAddPoint=!0,h;var x=e.getPointIndexUnderCursor(v,n.zoom,a.x,a.y);if(x>=0||b)h.hitElement=v;else{var w=l.startBindingElement,k=l.endBindingElement;(0,f.N1)(n)&&(0,m.Mn)(v)&&(0,f.HG)(v,w,k)}var S=(0,c.qf)(v),_=(0,i.Z)(S,4),C=_[0],O=_[1],M=(C+_[2])/2,I=(O+_[3])/2,P=x>-1&&(0,s.U1)(v.x+v.points[x][0],v.y+v.points[x][1],M,I,v.angle),T=x>-1||t.shiftKey?t.shiftKey||null!==(u=l.selectedPointsIndices)&&void 0!==u&&u.includes(x)?j([].concat((0,r.Z)(l.selectedPointsIndices||[]),[x])):[x]:null;return h.linearElementEditor=E(E({},l),{},{pointerDownState:{prevSelectedPointsIndices:l.selectedPointsIndices,lastClickedPoint:x,origin:{x:a.x,y:a.y},segmentMidpoint:{value:b,index:y,added:!1}},selectedPointsIndices:T,pointerOffset:P?{x:a.x-P[0],y:a.y-P[1]}:{x:0,y:0}}),h}},{key:"arePointsEqual",value:function(e,t){return!e&&!t||!(!e||!t)&&(0,s.Jj)(e,t)}},{key:"handlePointerMove",value:function(t,n,r,o){if(!o.editingLinearElement)return null;var a=o.editingLinearElement,l=a.elementId,s=a.lastUncommittedPoint,c=e.getElement(l);if(!c)return o.editingLinearElement;var u,d=c.points,p=d[d.length-1];if(!t.altKey)return p===s&&e.deletePoints(c,[d.length-1]),E(E({},o.editingLinearElement),{},{lastUncommittedPoint:null});if((0,g.Ge)(t)&&d.length>=2){var f=d[d.length-2],h=e._getShiftLockedDelta(c,f,[n,r],o.gridSize),m=(0,i.Z)(h,2),v=m[0],b=m[1];u=[v+f[0],b+f[1]]}else u=e.createPointAt(c,n-o.editingLinearElement.pointerOffset.x,r-o.editingLinearElement.pointerOffset.y,o.gridSize);return p===s?e.movePoints(c,[{index:c.points.length-1,point:u}]):e.addPoints(c,o,[{point:u}]),E(E({},o.editingLinearElement),{},{lastUncommittedPoint:c.points[c.points.length-1]})}},{key:"getPointGlobalCoordinates",value:function(e,t){var n=(0,c.qf)(e),r=(0,i.Z)(n,4),o=r[0],a=r[1],l=(o+r[2])/2,u=(a+r[3])/2,d=e.x,p=e.y,f=(0,s.U1)(d+t[0],p+t[1],l,u,e.angle),h=(0,i.Z)(f,2);return[d=h[0],p=h[1]]}},{key:"getPointsGlobalCoordinates",value:function(e){var t=(0,c.qf)(e),n=(0,i.Z)(t,4),r=n[0],o=n[1],a=n[2],l=n[3],u=(r+a)/2,d=(o+l)/2;return e.points.map((function(t){var n=e.x,r=e.y,o=(0,s.U1)(n+t[0],r+t[1],u,d,e.angle),a=(0,i.Z)(o,2);return[n=a[0],r=a[1]]}))}},{key:"getPointAtIndexGlobalCoordinates",value:function(e,t){var n=t<0?e.points.length+t:t,r=(0,c.qf)(e),o=(0,i.Z)(r,4),a=o[0],l=o[1],u=(a+o[2])/2,d=(l+o[3])/2,p=e.points[n],f=e.x,h=e.y;return p?(0,s.U1)(f+p[0],h+p[1],u,d,e.angle):(0,s.U1)(f,h,u,d,e.angle)}},{key:"pointFromAbsoluteCoords",value:function(e,t){var n=(0,c.qf)(e),r=(0,i.Z)(n,4),o=r[0],a=r[1],l=(o+r[2])/2,u=(a+r[3])/2,d=(0,s.U1)(t[0],t[1],l,u,-e.angle),p=(0,i.Z)(d,2),f=p[0],h=p[1];return[f-e.x,h-e.y]}},{key:"getPointIndexUnderCursor",value:function(t,n,r,o){for(var i=e.getPointsGlobalCoordinates(t),a=i.length;--a>-1;){var l=i[a];if((0,s.LW)(r,o,l[0],l[1])*n.value<e.POINT_HANDLE_SIZE+1)return a}return-1}},{key:"createPointAt",value:function(e,t,n,r){var o=(0,s.wC)(t,n,r),a=(0,c.qf)(e),l=(0,i.Z)(a,4),u=l[0],d=l[1],p=(u+l[2])/2,f=(d+l[3])/2,h=(0,s.U1)(o[0],o[1],p,f,-e.angle),m=(0,i.Z)(h,2),g=m[0],v=m[1];return[g-e.x,v-e.y]}},{key:"getNormalizedPoints",value:function(e){var t=e.points,n=t[0][0],r=t[0][1];return{points:t.map((function(e,t){return[e[0]-n,e[1]-r]})),x:e.x+n,y:e.y+r}}},{key:"normalizePoints",value:function(t){(0,d.DR)(t,e.getNormalizedPoints(t))}},{key:"duplicateSelectedPoints",value:function(t){if(!t.editingLinearElement)return!1;var n=t.editingLinearElement,r=n.selectedPointsIndices,o=n.elementId,i=e.getElement(o);if(!i||null===r)return!1;var a=i.points,l=[],s=!1,c=-1,u=a.reduce((function(e,t,n){if(++c,e.push(t),r.includes(n)){var o=a[n+1];o||(s=!0),e.push(o?[(t[0]+o[0])/2,(t[1]+o[1])/2]:[t[0],t[1]]),l.push(c+1),++c}return e}),[]);if((0,d.DR)(i,{points:u}),s){var p=i.points[i.points.length-1];e.movePoints(i,[{index:i.points.length-1,point:[p[0]+30,p[1]+30]}])}return{appState:E(E({},t),{},{editingLinearElement:E(E({},t.editingLinearElement),{},{selectedPointsIndices:l})})}}},{key:"deletePoints",value:function(t,n){var r=0,o=0;if(n.includes(0)){var i=t.points.find((function(e,t){return!n.includes(t)}));i&&(r=i[0],o=i[1])}var a=t.points.reduce((function(e,t,i){return n.includes(i)||e.push(e.length?[t[0]-r,t[1]-o]:[0,0]),e}),[]);e._updatePoints(t,a,r,o)}},{key:"addPoints",value:function(t,n,o){var i=[].concat((0,r.Z)(t.points),(0,r.Z)(o.map((function(e){return e.point}))));e._updatePoints(t,i,0,0)}},{key:"movePoints",value:function(t,n,r){var o=t.points,i=0,a=0,l=n.find((function(e){return 0===e.index}));l&&(i=l.point[0]+o[l.index][0],a=l.point[1]+o[l.index][1]);var s=o.map((function(e,t){var r=n.find((function(e){return e.index===t}));if(r){if(l)return e;var s=r.point[0]-o[r.index][0],c=r.point[1]-o[r.index][1];return[e[0]+s,e[1]+c]}return i||a?[e[0]-i,e[1]-a]:e}));e._updatePoints(t,s,i,a,r)}},{key:"shouldAddMidpoint",value:function(t,n,r){if(!e.getElement(t.elementId))return!1;var o=t.pointerDownState.segmentMidpoint;if(o.added||null===o.value||null===o.index||null===t.pointerDownState.origin)return!1;var i=t.pointerDownState.origin,a=(0,s.LW)(i.x,i.y,n.x,n.y);return!(!r.editingLinearElement&&a<y.f/r.zoom.value)}},{key:"addMidpoint",value:function(t,n,o){var i=e.getElement(t.elementId);if(i){var a=t.pointerDownState.segmentMidpoint,l={pointerDownState:t.pointerDownState,selectedPointsIndices:t.selectedPointsIndices},s=e.createPointAt(i,n.x,n.y,o.gridSize),c=[].concat((0,r.Z)(i.points.slice(0,a.index)),[s],(0,r.Z)(i.points.slice(a.index)));return(0,d.DR)(i,{points:c}),l.pointerDownState=E(E({},t.pointerDownState),{},{segmentMidpoint:E(E({},t.pointerDownState.segmentMidpoint),{},{added:!0}),lastClickedPoint:a.index}),l.selectedPointsIndices=[a.index],l}}},{key:"_updatePoints",value:function(e,t,n,r,o){var i=(0,u.Ut)(e,t,e.strokeSharpness||"round"),a=(0,u.Ut)(e,e.points,e.strokeSharpness||"round"),l=(i[0]+i[2])/2,c=(i[1]+i[3])/2,p=(a[0]+a[2])/2-l,f=(a[1]+a[3])/2-c,h=(0,s.U1)(n,r,p,f,e.angle);(0,d.DR)(e,E(E({},o),{},{points:t,x:e.x+h[0],y:e.y+h[1]}))}},{key:"_getShiftLockedDelta",value:function(t,n,r,o){var a=e.getPointGlobalCoordinates(t,n),l=(0,s.wC)(r[0],r[1],o),u=(0,i.Z)(l,2),d=u[0],p=u[1],f=(0,c.o4)(a[0],a[1],d,p),h=f.width,m=f.height;return(0,s.xj)([h,m],[0,0],-t.angle)}}]),e}();_.POINT_HANDLE_SIZE=10,_.getEditorMidPoints=function(e,t){var n=(0,v.WJ)(e);return!t.editingLinearElement&&e.points.length>2&&!n?[]:(S.version===e.version&&S.zoom===t.zoom.value||_.updateEditorMidPointsCache(e,t),S.points)},_.updateEditorMidPointsCache=function(e,t){for(var n=_.getPointsGlobalCoordinates(e),r=0,o=[];r<n.length-1;)if(_.isSegmentTooShort(e,e.points[r],e.points[r+1],t.zoom))o.push(null),r++;else{var i=_.getSegmentMidPoint(e,n[r],n[r+1],r+1);o.push(i),r++}S.points=o,S.version=e.version,S.zoom=t.zoom.value},_.getSegmentMidpointHitCoords=function(e,t,n){var r=e.elementId,o=_.getElement(r);if(!o)return null;if(_.getPointIndexUnderCursor(o,n.zoom,t.x,t.y)>=0)return null;if(_.getPointsGlobalCoordinates(o).length>=3&&!n.editingLinearElement)return null;var i=_.POINT_HANDLE_SIZE/n.zoom.value,a=e.segmentMidPointHoveredCoords;if(a&&(0,s.LW)(a[0],a[1],t.x,t.y)<=i)return a;for(var l=0,c=_.getEditorMidPoints(o,n);l<c.length;){if(null!==c[l])if((0,s.LW)(c[l][0],c[l][1],t.x,t.y)<=i)return c[l];l++}return null},_.getBoundTextElementPosition=function(e,t){var n=_.getPointsGlobalCoordinates(e);n.length<2&&(0,d.DR)(t,{isDeleted:!0});var r=0,o=0;if(e.points.length%2==1){var i=Math.floor(e.points.length/2),a=_.getPointGlobalCoordinates(e,e.points[i]);r=a[0]-t.width/2,o=a[1]-t.height/2}else{var l=e.points.length/2-1,c=S.points[l];2===e.points.length&&(c=(0,s.H5)(n[0],n[1])),c&&S.version===e.version||(c=_.getSegmentMidPoint(e,n[l],n[l+1],l+1)),r=c[0]-t.width/2,o=c[1]-t.height/2}return{x:r,y:o}},_.getMinMaxXYWithBoundText=function(e,t,n){var r=(0,i.Z)(t,4),o=r[0],a=r[1],l=r[2],c=r[3],u=(o+l)/2,d=(a+c)/2,p=_.getBoundTextElementPosition(e,n),f=p.x,h=p.y,m=f+n.width,g=h+n.height,v=(0,s.xj)([o,a],[u,d],e.angle),b=(0,s.xj)([l,a],[u,d],e.angle),y=(0,s.xj)([f,h],[u,d],-e.angle),x=(0,s.xj)([m,h],[u,d],-e.angle),w=(0,s.xj)([f,g],[u,d],-e.angle),k=(0,s.xj)([m,g],[u,d],-e.angle);return v[0]<b[0]&&v[1]>=b[1]?(o=Math.min(o,w[0]),l=Math.max(l,Math.max(x[0],k[0])),a=Math.min(a,y[1]),c=Math.max(c,k[1])):v[0]>=b[0]&&v[1]>b[1]?(o=Math.min(o,k[0]),l=Math.max(l,Math.max(y[0],x[0])),a=Math.min(a,w[1]),c=Math.max(c,x[1])):v[0]>=b[0]?(o=Math.min(o,x[0]),l=Math.max(l,w[0]),a=Math.min(a,k[1]),c=Math.max(c,y[1])):v[1]<=b[1]&&(o=Math.min(o,Math.min(x[0],y[0])),l=Math.max(l,k[0]),a=Math.min(a,x[1]),c=Math.max(c,w[1])),[o,a,l,c,u,d]},_.getElementAbsoluteCoords=function(e){var t,n,r,o,a,l=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.points.length<2||!(0,b.R2)(e)){var s=e.points.reduce((function(e,t){var n=(0,i.Z)(t,2),r=n[0],o=n[1];return e.minY=Math.min(e.minY,o),e.minX=Math.min(e.minX,r),e.maxX=Math.max(e.maxX,r),e.maxY=Math.max(e.maxY,o),e}),{minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0}),c=s.minX,d=s.minY,p=s.maxX,f=s.maxY;n=c+e.x,r=d+e.y,o=p+e.x,a=f+e.y}else{var h=(0,b.R2)(e),m=(0,u.CM)(h[0]),g=(0,u.IX)(m),y=(0,i.Z)(g,4),x=y[0],w=y[1],k=y[2],E=y[3];n=x+e.x,r=w+e.y,o=k+e.x,a=E+e.y}var S=(n+o)/2,j=(r+a)/2;if(t=[n,r,o,a,S,j],!l)return t;var C=(0,v.WJ)(e);return C&&(t=_.getMinMaxXYWithBoundText(e,[n,r,o,a],C)),t};var j=function(e){var t=(0,r.Z)(new Set(e.filter((function(e){return null!==e&&-1!==e}))));return(t=t.sort((function(e,t){return e-t}))).length?t:null}},1935:function(e,t,n){"use strict";n.d(t,{BE:function(){return f},DR:function(){return p},ZP:function(){return h}});var r=n(6655),o=n(7169),i=n(3063),a=n(1564),l=n(5001),s=n(6954),c=n(6340);function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function d(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?u(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):u(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var p=function(e,t){var n,o=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],u=!1,p=t,f=p.points,h=p.fileId;for(var m in void 0!==f&&(t=d(d({},(0,l.k)(f)),t)),t){var g=t[m];if(void 0!==g){if(e[m]===g&&("object"!==(0,r.Z)(g)||null===g||"groupIds"===m||"scale"===m))continue;if("scale"===m){var v=e[m],b=g;if(v[0]===b[0]&&v[1]===b[1])continue}else if("points"===m){var y=e[m],x=g;if(y.length===x.length){for(var w=!1,k=y.length;--k;){var E=y[k],S=x[k];if(E[0]!==S[0]||E[1]!==S[1]){w=!0;break}}if(!w)continue}}e[m]=g,u=!0}}if(!u)return e;(void 0===t.height&&void 0===t.width&&void 0===h&&void 0===f||(0,i.bI)(e),e.version++,e.versionNonce=(0,s.LU)(),e.updated=(0,c.C3)(),o)&&(null===(n=a.Z.getScene(e))||void 0===n||n.informMutation());return e},f=function(e,t){var n=!1;for(var o in t){var i=t[o];if(void 0!==i){if(e[o]===i&&("object"!==(0,r.Z)(i)||null===i))continue;n=!0}}return n?d(d(d({},e),t),{},{updated:(0,c.C3)(),version:e.version+1,versionNonce:(0,s.LU)()}):e},h=function(e,t){return e.version=(null!=t?t:e.version)+1,e.versionNonce=(0,s.LU)(),e.updated=(0,c.C3)(),e}},2791:function(e,t,n){"use strict";n.d(t,{JZ:function(){return _},KE:function(){return M},N2:function(){return C},N_:function(){return O},OL:function(){return T},Sy:function(){return D},Up:function(){return w},VL:function(){return E},jd:function(){return j},vw:function(){return P},y8:function(){return I}});var r=n(6655),o=n(2577),i=n(7169),a=n(2726),l=n(6340),s=n(6954),c=n(1935),u=n(242),d=n(1002),p=n(6552),f=n(8925),h=n(5710),m=n(2335),g=n(1974),v=["x","y","strokeColor","backgroundColor","fillStyle","strokeWidth","strokeStyle","roughness","opacity","width","height","angle","groupIds","strokeSharpness","boundElements","link","locked"];function b(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function y(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?b(Object(n),!0).forEach((function(t){(0,i.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):b(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var x=function(e,t){var n,r,o=t.x,i=t.y,c=t.strokeColor,u=t.backgroundColor,d=t.fillStyle,p=t.strokeWidth,f=t.strokeStyle,h=t.roughness,m=t.opacity,g=t.width,b=void 0===g?0:g,y=t.height,x=void 0===y?0:y,w=t.angle,k=void 0===w?0:w,E=t.groupIds,S=void 0===E?[]:E,_=t.strokeSharpness,j=t.boundElements,C=void 0===j?null:j,O=t.link,M=void 0===O?null:O,I=t.locked,P=(0,a.Z)(t,v);return{id:P.id||(0,s.kb)(),type:e,x:o,y:i,width:b,height:x,angle:k,strokeColor:c,backgroundColor:u,fillStyle:d,strokeWidth:p,strokeStyle:f,roughness:h,opacity:m,groupIds:S,strokeSharpness:_,seed:null!==(n=P.seed)&&void 0!==n?n:(0,s.LU)(),version:P.version||1,versionNonce:null!==(r=P.versionNonce)&&void 0!==r?r:0,isDeleted:!1,boundElements:C,updated:(0,l.C3)(),link:M,locked:I}},w=function(e){return x(e.type,e)},k=function(e,t){return{x:"center"===e.textAlign?t.width/2:"right"===e.textAlign?t.width:0,y:"middle"===e.verticalAlign?t.height/2:0}},E=function(e){var t=(0,h.bG)(e.text),n=(0,h.X1)(t,(0,l.mO)(e)),r=k(e,n);return(0,c.BE)(y(y({},x("text",e)),{},{text:t,fontSize:e.fontSize,fontFamily:e.fontFamily,textAlign:e.textAlign,verticalAlign:e.verticalAlign,x:e.x-r.x,y:e.y-r.y,width:n.width,height:n.height,baseline:n.baseline,containerId:e.containerId||null,originalText:t}),{})},S=function(e,t){var n=null,r=(0,h.tl)(e);r&&(n=j(r));var i,a,s=(0,h.X1)(t,(0,l.mO)(e),n),u=s.width,v=s.height,b=s.baseline,y=e.textAlign,x=e.verticalAlign;if("center"!==y||x!==m.oX.MIDDLE||e.containerId){var w=(0,d.qf)(e),E=(0,o.Z)(w,4),S=E[0],_=E[1],C=E[2],O=E[3],M=(0,f.wC)(e,u,v,!1),I=(0,o.Z)(M,4),P=(S-I[0])/2,T=(_-I[1])/2,D=(C-I[2])/2,L=(O-I[3])/2,A=(0,p.yq)({s:!0,e:"center"===y||"left"===y,w:"center"===y||"right"===y},e.x,e.y,e.angle,P,T,D,L),Z=(0,o.Z)(A,2);i=Z[0],a=Z[1]}else{var z=(0,h.X1)(e.text,(0,l.mO)(e),n),R=k(e,{width:u-z.width,height:v-z.height});i=e.x-R.x,a=e.y-R.y}if(r){var N=(0,h.S)(e),B=(0,h.HE)(r),W=B.height,H=B.width;v>W-2*N&&(W=v+2*N),u>H-2*N&&(H=u+2*N),(0,g.Yv)(r)||W===B.height&&H===B.width||(0,c.DR)(r,{height:W,width:H})}return{width:u,height:v,x:Number.isFinite(i)?i:e.x,y:Number.isFinite(a)?a:e.y,baseline:b}},_=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e.text,n=(0,h.tl)(e);n&&(t=(0,h.lD)(t,(0,l.mO)(e),j(n)));var r=S(e,t);return y({text:t},r)},j=function(e){var t=(0,h.HE)(e).width;if((0,g.Yv)(e)){var n=t-8*m.gK*2;if(n<=0){var r=(0,h.WJ)(e);return r?r.width:8*m.gK*2}return n}return t-2*m.gK},C=function(e){var t=(0,h.HE)(e).height;if((0,g.Yv)(e)){if(t-8*m.gK*2<=0){var n=(0,h.WJ)(e);return n?n.height:8*m.gK*2}return t}return t-2*m.gK},O=function(e,t){t.text;var n=t.isDeleted,r=t.originalText;return(0,c.BE)(e,y({originalText:r,isDeleted:null!=n?n:e.isDeleted},_(e,r)))},M=function(e){return y(y({},x(e.type,e)),{},{points:e.points||[],pressures:[],simulatePressure:e.simulatePressure,lastCommittedPoint:null})},I=function(e){return y(y({},x(e.type,e)),{},{points:e.points||[],lastCommittedPoint:null,startBinding:null,endBinding:null,startArrowhead:e.startArrowhead,endArrowhead:e.endArrowhead})},P=function(e){var t,n,r;return y(y({},x("image",e)),{},{strokeColor:"transparent",status:null!==(t=e.status)&&void 0!==t?t:"pending",fileId:null!==(n=e.fileId)&&void 0!==n?n:null,scale:null!==(r=e.scale)&&void 0!==r?r:[1,1]})},T=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(null==t||"object"!==(0,r.Z)(t))return t;if("[object Object]"===Object.prototype.toString.call(t)){var o="function"==typeof t.constructor?Object.create(Object.getPrototypeOf(t)):{};for(var i in t)if(t.hasOwnProperty(i)){if(0===n&&("shape"===i||"canvas"===i))continue;if("boundElements"===i){o[i]=null;continue}o[i]=e(t[i],n+1)}return o}if(Array.isArray(t)){for(var a=t.length,l=new Array(a);a--;)l[a]=e(t[a],n+1);return l}return t},D=function(e,t,n,r){var o,i,a=T(n);(0,l.h2)()?(a.id="".concat(a.id,"_copy"),null!==(o=window.h)&&void 0!==o&&null!==(i=o.app)&&void 0!==i&&i.getSceneElementsIncludingDeleted().find((function(e){return e.id===a.id}))&&(a.id+="_copy")):a.id=(0,s.kb)();return a.updated=(0,l.C3)(),a.seed=(0,s.LU)(),a.groupIds=(0,u.Qy)(a.groupIds,e,(function(e){return t.has(e)||t.set(e,(0,s.kb)()),t.get(e)})),r&&(a=Object.assign(a,r)),a}},8634:function(e,t,n){"use strict";n.d(t,{LW:function(){return b},T:function(){return C},l2:function(){return E},vY:function(){return y},xx:function(){return j}});var r=n(7169),o=n(1930),i=n(2577),a=n(2335),l=n(5001),s=n(6552),c=n(8925),u=n(1974),d=n(1935),p=n(6340),f=n(8290),h=n(1564),m=n(5710),g=n(2791);function v(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var b=function(e){return e>=2*Math.PI?e-2*Math.PI:e},y=function(e,t,n,r,o,a,l,s,c,d,p){if(1===n.length){var h=(0,i.Z)(n,1)[0];return"rotation"===t?(x(h,s,c,o,e.originalElements),(0,f.Ww)(h)):!(0,u.iB)(h)||"nw"!==t&&"ne"!==t&&"sw"!==t&&"se"!==t?t&&E(e.originalElements,l,h,t,a,s,c):(k(h,t,a,s,c),(0,f.Ww)(h)),!0}if(n.length>1){if("rotation"===t)return _(e,n,s,c,o,d,p),!0;if("nw"===t||"ne"===t||"sw"===t||"se"===t)return S(e,n,t,a,s,c),!0}return!1},x=function(e,t,n,r,o){var l=(0,c.qf)(e),s=(0,i.Z)(l,4),p=s[0],f=s[1],g=(p+s[2])/2,v=(f+s[3])/2,y=5*Math.PI/2+Math.atan2(n-v,t-g);r&&(y+=a.ay/2,y-=y%a.ay),y=b(y);var x=(0,m.xB)(e);if((0,d.DR)(e,{angle:y}),x){var w=h.Z.getScene(e).getElement(x);(0,u.Yv)(e)||(0,d.DR)(w,{angle:y})}},w=function(e,t,n){var r=e.width,o=(0,u.Xh)(e);if(o){var i=(0,m.tl)(e);r=(0,g.jd)(i)}var a=e.fontSize*(t/r);if(a<1)return null;var l=(0,m.X1)(e.text,(0,p.mO)({fontSize:a,fontFamily:e.fontFamily}),o?r:null);return{size:a,baseline:l.baseline+(n-l.height)}},k=function(e,t,n,r,o){var a,l=(0,c.qf)(e),u=(0,i.Z)(l,4),p=u[0],f=u[1],h=u[2],m=u[3],g=(p+h)/2,v=(f+m)/2,b=(0,s.U1)(r,o,g,v,-e.angle),y=(0,i.Z)(b,2),x=y[0],k=y[1];switch(t){case"se":a=Math.max((x-p)/(h-p),(k-f)/(m-f));break;case"nw":a=Math.max((h-x)/(h-p),(m-k)/(m-f));break;case"ne":a=Math.max((x-p)/(h-p),(m-k)/(m-f));break;case"sw":a=Math.max((h-x)/(h-p),(k-f)/(m-f))}if(a>0){var E=e.width*a,S=e.height*a,_=w(e,E,S);if(null===_)return;var j=(0,c.wC)(e,E,S,!1),C=(0,i.Z)(j,4),O=(p-C[0])/2,M=(f-C[1])/2,I=(h-C[2])/2,P=(m-C[3])/2,T=(0,s.yq)(function(e,t){return{n:/^(n|ne|nw)$/.test(e)||t&&/^(s|se|sw)$/.test(e),s:/^(s|se|sw)$/.test(e)||t&&/^(n|ne|nw)$/.test(e),w:/^(w|nw|sw)$/.test(e)||t&&/^(e|ne|se)$/.test(e),e:/^(e|ne|se)$/.test(e)||t&&/^(w|nw|sw)$/.test(e)}}(t,n),e.x,e.y,e.angle,O,M,I,P),D=(0,i.Z)(T,2),L=D[0],A=D[1];(0,d.DR)(e,{fontSize:_.size,width:E,height:S,baseline:_.baseline,x:L,y:A})}},E=function(e,t,n,r,a,h,g){var v=e.get(n.id),b=(0,c.wC)(v,v.width,v.height,!0),y=(0,i.Z)(b,4),x=[y[0],y[1]],k=[y[2],y[3]],E=(0,s.H5)(x,k),S=(0,s.xj)([h,g],E,-v.angle),_=(0,c.wC)(n,n.width,n.height,!0),j=(0,i.Z)(_,4),C=j[0],O=j[1],M=j[2]-C,I=j[3]-O,P=(k[0]-x[0])/M,T=(k[1]-x[1])/I,D={},L=(0,m.WJ)(n);r.includes("e")&&(P=(S[0]-x[0])/M),r.includes("s")&&(T=(S[1]-x[1])/I),r.includes("w")&&(P=(k[0]-S[0])/M),r.includes("n")&&(T=(k[1]-S[1])/I);var A=v.width,Z=v.height,z=n.width*P,R=n.height*T;if(a&&(z=2*z-A,R=2*R-Z),t){var N=Math.abs(z)/A,B=Math.abs(R)/Z;if(1===r.length&&(R*=N,z*=B),2===r.length){var W=Math.max(N,B);z=A*W*Math.sign(z),R=Z*W*Math.sign(R)}}if(L){var H=e.get(L.id);if(H&&(D={fontSize:H.fontSize,baseline:H.baseline}),t){var F=(0,m.S)(L),U=w(L,z-2*F,R-2*F);if(null===U)return;D={fontSize:U.size,baseline:U.baseline}}else{var K=(0,m.AT)((0,p.mO)(L)),Y=(0,m.w_)((0,p.mO)(L));z=Math.ceil(Math.max(z,K)),R=Math.ceil(Math.max(R,Y))}}var G=(0,c.wC)(v,z,R,!0),V=(0,i.Z)(G,4),X=V[0],q=V[1],J=V[2]-X,$=V[3]-q,Q=[].concat(x);if(["n","w","nw"].includes(r)&&(Q=[k[0]-Math.abs(J),k[1]-Math.abs($)]),"ne"===r){var ee=[x[0],k[1]];Q=[ee[0],ee[1]-Math.abs($)]}if("sw"===r){var te=[k[0],x[1]];Q=[te[0]-Math.abs(J),te[1]]}t&&(["s","n"].includes(r)&&(Q[0]=E[0]-J/2),["e","w"].includes(r)&&(Q[1]=E[1]-$/2)),z<0&&(r.includes("e")&&(Q[0]-=Math.abs(J)),r.includes("w")&&(Q[0]+=Math.abs(J))),R<0&&(r.includes("s")&&(Q[1]-=Math.abs($)),r.includes("n")&&(Q[1]+=Math.abs($))),a&&(Q[0]=E[0]-Math.abs(J)/2,Q[1]=E[1]-Math.abs($)/2);var ne,re,oe=v.angle,ie=(0,s.xj)(Q,E,oe),ae=[Q[0]+Math.abs(J)/2,Q[1]+Math.abs($)/2],le=(0,s.xj)(ae,E,oe);Q=(0,s.xj)(ie,le,-oe),((0,u.bt)(n)||(0,u.F9)(n))&&(ne=(0,l.z)(1,R,v.points,!0),re=(0,l.z)(0,z,ne,!0));var se=(0,o.Z)(Q);se[0]+=v.x-X,se[1]+=v.y-q;var ce={width:Math.abs(z),height:Math.abs(R),x:se[0],y:se[1],points:re};"scale"in n&&"scale"in v&&(0,d.DR)(n,{scale:[(Math.sign(P)||v.scale[0])*v.scale[0],(Math.sign(T)||v.scale[1])*v.scale[1]]}),0!==ce.width&&0!==ce.height&&Number.isFinite(ce.x)&&Number.isFinite(ce.y)&&((0,f.Ww)(n,{newSize:{width:ce.width,height:ce.height}}),(0,d.DR)(n,ce),L&&D&&(0,d.DR)(L,{fontSize:D.fontSize}),(0,m.RB)(n,r))},S=function(e,t,n,o,a,s){var p=t.reduce((function(t,n){var r=e.originalElements.get(n.id);return r&&t.push({orig:r,latest:n}),t}),[]),h=(0,c.v2)(p.map((function(e){return e.orig}))),g=h.minX,b=h.minY,y=h.maxX,x=h.maxY,k=h.midX,E=h.midY,S=n,_=o?[k,E]:{ne:[g,x],se:[g,b],sw:[y,b],nw:[y,x]}[S],j=(0,i.Z)(_,2),C=j[0],O=j[1],M={ne:[a>=C,s<=O],se:[a>=C,s>=O],sw:[a<=C,s>=O],nw:[a<=C,s<=O]}[S].map((function(e){return e?1:-1})),I=(0,i.Z)(M,2),P=I[0],T=I[1];if(!(P<0&&T<0)){var D=Math.max(P*Math.abs(a-C)/(y-g),T*Math.abs(s-O)/(x-b))*(o?2:1);0!==D&&p.forEach((function(e){var t=e.orig.width*D,o=e.orig.height*D,i=C+(e.orig.x-C)*D,a=O+(e.orig.y-O)*D,s=function(e,t,n,r){return(0,u.bt)(e)||(0,u.F9)(e)?{points:(0,l.z)(0,t,(0,l.z)(1,n,e.points,r),r)}:{}}(e.orig,t,o,!1),c=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?v(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):v(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({width:t,height:o,x:i,y:a},s),p=null,h=(0,m.WJ)(e.latest);if(h||(0,u.iB)(e.orig)){var g=2*(0,m.S)(h),b=w(null!=h?h:e.orig,t-g,o-g);if(!b)return;(0,u.iB)(e.orig)&&(c.fontSize=b.size,c.baseline=b.baseline),h&&(p={fontSize:b.size,baseline:b.baseline})}(0,f.Ww)(e.latest,{newSize:{width:t,height:o}}),(0,d.DR)(e.latest,c),h&&p&&((0,d.DR)(h,p),(0,m.RB)(e.latest,n))}))}},_=function(e,t,n,r,o,l,p){var f=5*Math.PI/2+Math.atan2(r-p,n-l);o&&(f+=a.ay/2,f-=f%a.ay),t.forEach((function(t){var n,r,o=(0,c.qf)(t),a=(0,i.Z)(o,4),g=a[0],v=a[1],y=(g+a[2])/2,x=(v+a[3])/2,w=null!==(n=null===(r=e.originalElements.get(t.id))||void 0===r?void 0:r.angle)&&void 0!==n?n:t.angle,k=(0,s.U1)(y,x,l,p,f+w-t.angle),E=(0,i.Z)(k,2),S=E[0],_=E[1];(0,d.DR)(t,{x:t.x+(S-y),y:t.y+(_-x),angle:b(f+w)});var j=(0,m.xB)(t);if(j){var C=h.Z.getScene(t).getElement(j);(0,u.Yv)(t)||(0,d.DR)(C,{x:C.x+(S-y),y:C.y+(_-x),angle:b(f+w)})}}))},j=function(e,t,n,r){var o=1===t.length?(0,c.qf)(t[0]):(0,c.KP)(t),a=(0,i.Z)(o,4),l=a[0],u=a[1],d=a[2],p=a[3],f=(l+d)/2,h=(u+p)/2,m=1===t.length?t[0].angle:0,g=(0,s.U1)(n,r,f,h,-m),v=(0,i.Z)(g,2);switch(n=v[0],r=v[1],e){case"n":return(0,s.U1)(n-(l+d)/2,r-u,0,0,m);case"s":return(0,s.U1)(n-(l+d)/2,r-p,0,0,m);case"w":return(0,s.U1)(n-l,r-(u+p)/2,0,0,m);case"e":return(0,s.U1)(n-d,r-(u+p)/2,0,0,m);case"nw":return(0,s.U1)(n-l,r-u,0,0,m);case"ne":return(0,s.U1)(n-d,r-u,0,0,m);case"sw":return(0,s.U1)(n-l,r-p,0,0,m);case"se":return(0,s.U1)(n-d,r-p,0,0,m);default:return[0,0]}},C=function(e,t){var n=(0,i.Z)(t.points,2),r=(0,i.Z)(n[1],2),o=r[0],a=r[1];return"nw"===e&&(o<0||a<0)||"ne"===e&&o>=0||"sw"===e&&o<=0||"se"===e&&(o>0||a>0)?"end":"origin"}},5710:function(e,t,n){"use strict";n.d(t,{AT:function(){return M},HE:function(){return A},H_:function(){return z},OW:function(){return B},P7:function(){return y},RB:function(){return x},S:function(){return R},TP:function(){return Z},WJ:function(){return D},X1:function(){return k},Zr:function(){return W},bG:function(){return v},cn:function(){return N},hP:function(){return _},lD:function(){return C},oN:function(){return b},tl:function(){return L},w_:function(){return I},xB:function(){return T}});var r,o,i=n(2577),a=n(1930),l=n(6340),s=n(1935),c=n(2335),u=n(1564),d=n(1002),p=n(2791),f=n(1974),h=n(6938),m=n(75),g=n(2325),v=function(e){return e.replace(/\t/g," ").replace(/\r?\n|\r/g,"\n")},b=function(e,t){var n=void 0,r=e.text;t&&(n=(0,p.jd)(t),r=C(e.originalText,(0,l.mO)(e),n));var o=k(e.originalText,(0,l.mO)(e),n),i=e.y,a=e.x;if(t)if((0,f.Yv)(t)){var u=e.x+e.width/2,d=e.y+e.height/2,h=o.width-e.width,m=o.height-e.height;i=d-(e.height+m)/2,a=u-(e.width+h)/2}else{var g=A(t),v=g.height,b=R(e);e.verticalAlign===c.oX.TOP?i=t.y+b:e.verticalAlign===c.oX.BOTTOM?i=t.y+g.height-o.height-b:(i=t.y+g.height/2-o.height/2,o.height>(0,p.N2)(t)&&(v=o.height+2*b,i=t.y+v/2-o.height/2)),a=e.textAlign===c.I8.LEFT?t.x+b:e.textAlign===c.I8.RIGHT?t.x+g.width-o.width-b:t.x+g.width/2-o.width/2,(0,s.DR)(t,{height:v})}(0,s.DR)(e,{width:o.width,height:o.height,baseline:o.baseline,y:i,x:a,text:r})},y=function(e,t,n){var r=(0,l.xn)(e);t.forEach((function(e){var t=n.get(e.id),o=T(e);if(o){var i=n.get(o);if(i){var a=r.get(t);a&&(0,s.DR)(a,{boundElements:(a.boundElements||[]).concat({type:"text",id:i})});var l=r.get(i);l&&(0,d.iB)(l)&&(0,s.DR)(l,{containerId:a?t:null})}}}))},x=function(e,t){var n=T(e);if(n){var r=u.Z.getScene(e).getElement(n);if(r&&r.text){if(!e)return;var o=(r=u.Z.getScene(e).getElement(n)).text,i=r.height,a=r.width,c=A(e),d=(0,p.jd)(e),h=(0,p.N2)(e),m=c.height,g=r.baseline;if("n"!==t&&"s"!==t){o&&(o=C(r.originalText,(0,l.mO)(r),d));var v=k(o,(0,l.mO)(r),d);i=v.height,a=v.width,g=v.baseline}if(i>h){var b=(m=i+2*R(r))-c.height,y=(0,f.Yv)(e)||"ne"!==t&&"nw"!==t&&"n"!==t?e.y:e.y-b;(0,s.DR)(e,{height:m,y:y})}(0,s.DR)(r,{text:o,width:a,height:i,baseline:g}),(0,f.Yv)(e)||w(e,r)}}},w=function(e,t){var n,r=A(e),o=R(t);n=t.verticalAlign===c.oX.TOP?e.y+o:t.verticalAlign===c.oX.BOTTOM?e.y+r.height-t.height-o:e.y+r.height/2-t.height/2;var i=t.textAlign===c.I8.LEFT?e.x+o:t.textAlign===c.I8.RIGHT?e.x+r.width-t.width-o:e.x+r.width/2-t.width/2;(0,s.DR)(t,{x:i,y:n})},k=function(e,t,n){e=e.split("\n").map((function(e){return e||" "})).join("\n");var r=document.createElement("div");if(r.style.position="absolute",r.style.whiteSpace="pre",r.style.font=t,r.style.minHeight="1em",n){var o=_(t);r.style.maxWidth="".concat(String(n),"px"),r.style.overflow="hidden",r.style.wordBreak="break-word",r.style.lineHeight="".concat(String(o),"px"),r.style.whiteSpace="pre-wrap"}document.body.appendChild(r),r.innerText=e;var i=document.createElement("span");i.style.display="inline-block",i.style.overflow="hidden",i.style.width="1px",i.style.height="1px",r.appendChild(i);var a=i.offsetTop+i.offsetHeight,l=r.offsetWidth+1,s=r.offsetHeight;return document.body.removeChild(r),{width:l,height:s,baseline:a}},E="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".toLocaleUpperCase(),S={},_=function(e){return S[e]||(S[e]=k(E,e,null).height),S[e]},j=function(e,t){r||(r=document.createElement("canvas"));var n=r.getContext("2d");n.font=t;var o=n.measureText(e);return(0,l.h2)()?10*o.width:o.width},C=function(e,t,n){var r=[],o=e.split("\n"),i=j(" ",t);return o.forEach((function(e){var o=e.split(" ");if(1===o.length&&""===o[0])r.push(o[0]);else{for(var a="",l=0,s=0;s<o.length;){if(j(o[s],t)>=n){for(a&&r.push(a),a="",l=0;o[s].length>0;){var c=o[s][0],u=O.calculate(c,t);l+=u,o[s]=o[s].slice(1),l>=n?(" "===a.slice(-1)&&(a=a.slice(0,-1)),r.push(a),a=c,(l=u)===n&&(a="",l=0)):a+=c}l+i>=n?(r.push(a),a="",l=0):(a+=" ",l+=i),s++}else{for(;l<n&&s<o.length;){var d=o[s];if((l=j(a+d,t))>=n){r.push(a),l=0,a="";break}if(s++,a+="".concat(d," "),l+i>=n){r.push(a.slice(0,-1)),a="",l=0;break}}l===n&&(a="",l=0)}}a&&(" "===a.slice(-1)&&(a=a.slice(0,-1)),r.push(a))}})),r.join("\n")},O=(o={},{calculate:function(e,t){var n=e.charCodeAt(0);if(o[t]||(o[t]=[]),!o[t][n]){var r=j(e,t);o[t][n]=r}return o[t][n]},getCache:function(e){return o[e]}}),M=function(e){var t=P(e);return 0===t?k(E.split("").join("\n"),e).width+2*c.gK:t+2*c.gK},I=function(e){return _(e)+2*c.gK},P=function(e){var t=O.getCache(e);if(!t)return 0;var n=t.filter((function(e){return void 0!==e}));return Math.max.apply(Math,(0,a.Z)(n))},T=function(e){var t,n,r;return null!=e&&null!==(t=e.boundElements)&&void 0!==t&&t.length&&(null==e||null===(n=e.boundElements)||void 0===n||null===(r=n.filter((function(e){return"text"===e.type}))[0])||void 0===r?void 0:r.id)||null},D=function(e){if(!e)return null;var t,n=T(e);return n&&(null===(t=u.Z.getScene(e))||void 0===t?void 0:t.getElement(n))||null},L=function(e){return e&&e.containerId&&(null===(t=u.Z.getScene(e))||void 0===t?void 0:t.getElement(e.containerId))||null;var t},A=function(e){return(0,f.Yv)(e)?{width:Math.max(e.width,300),height:e.height}:{width:e.width,height:e.height}},Z=function(e,t){if(!(0,f.Yv)(e))return{x:e.x+e.width/2,y:e.y+e.height/2};var n=h._.getPointsGlobalCoordinates(e);if(n.length%2==1){var r=Math.floor(e.points.length/2),o=h._.getPointGlobalCoordinates(e,e.points[r]);return{x:o[0],y:o[1]}}var i=e.points.length/2-1,a=h._.getEditorMidPoints(e,t)[i];return a||(a=h._.getSegmentMidPoint(e,n[i],n[i+1],i+1)),{x:a[0],y:a[1]}},z=function(e){var t=L(e);return!t||(0,f.Yv)(t)?e.angle:t.angle},R=function(e){var t=L(e);return t?(0,f.Yv)(t)?8*c.gK:c.gK:0},N=function(e){return e.some((function(e){if((0,f.Xh)(e)){var t=L(e);return!(0,d.iB)(e)||!(0,f.Yv)(t)}return!!D(e)&&!(0,f.Yv)(e)}))},B=function(e,t,n,r){var o=(0,m.eD)(e,t);if(1===o.length)return(0,f.mG)(o[0],!1)?o[0]:null;for(var a=null,l=e.length-1;l>=0;--l)if(!e[l].isDeleted){var s=(0,d.qf)(e[l]),c=(0,i.Z)(s,4),u=c[0],p=c[1],h=c[2],v=c[3];if((0,f.Yv)(e[l])&&(0,g.Qu)(e[l],t,[n,r])){a=e[l];break}if(u<n&&n<h&&p<r&&r<v){a=e[l];break}}return(0,f.mG)(a,!1)?a:null},W=function(e){return"rectangle"===e.type||"ellipse"===e.type||"diamond"===e.type||(0,f.pC)(e)||(0,f.Yv)(e)}},267:function(e,t,n){"use strict";n.d(t,{PC:function(){return g},kK:function(){return m},oY:function(){return v},ox:function(){return u}});var r=n(2577),o=n(8925),i=n(6552),a=n(1002),l=n(1974),s=n(3547),c={mouse:8,pen:16,touch:28},u={e:!0,s:!0,n:!0,w:!0},d={e:!0,s:!0,n:!0,w:!0},p={e:!0,s:!0,n:!0,w:!0,nw:!0,se:!0},f={e:!0,s:!0,n:!0,w:!0},h=function(e,t,n,o,a,l,s){var c=(0,i.U1)(e+n/2,t+o/2,a,l,s),u=(0,r.Z)(c,2);return[u[0]-n/2,u[1]-o/2,n,o]},m=function(e,t,n,o){var i=(0,r.Z)(e,6),a=i[0],l=i[1],u=i[2],d=i[3],p=i[4],f=i[5],m=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},g=arguments.length>5&&void 0!==arguments[5]?arguments[5]:4,v=c[o],b=v/n.value,y=v/n.value,x=v/n.value,w=v/n.value,k=u-a,E=d-l,S=g/n.value,_=(v-2*s.Lu)/(2*n.value),j={nw:m.nw?void 0:h(a-S-x+_,l-S-w+_,b,y,p,f,t),ne:m.ne?void 0:h(u+S-_,l-S-w+_,b,y,p,f,t),sw:m.sw?void 0:h(a-S-x+_,d+S-_,b,y,p,f,t),se:m.se?void 0:h(u+S-_,d+S-_,b,y,p,f,t),rotation:m.rotation?void 0:h(a+k/2-b/2,l-S-w+_-16/n.value,b,y,p,f,t)},C=5*c.mouse/n.value;return Math.abs(k)>C&&(m.n||(j.n=h(a+k/2-b/2,l-S-w+_,b,y,p,f,t)),m.s||(j.s=h(a+k/2-b/2,d+S-_,b,y,p,f,t))),Math.abs(E)>C&&(m.w||(j.w=h(a-S-x+_,l+E/2-y/2,b,y,p,f,t)),m.e||(j.e=h(u+S-_,l+E/2-y/2,b,y,p,f,t))),j},g=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"mouse";if(e.locked)return{};var i={};if("freedraw"===e.type||(0,l.bt)(e)){if(2===e.points.length){var c=(0,r.Z)(e.points,2),u=c[1];0===u[0]||0===u[1]?i=f:u[0]>0&&u[1]<0?i=p:u[0]>0&&u[1]>0?i=f:u[0]<0&&u[1]>0?i=p:u[0]<0&&u[1]<0&&(i=f)}}else(0,a.iB)(e)&&(i=d);var h=(0,l.bt)(e)?s.Lu+8:s.Lu;return m((0,o.qf)(e,!0),e.angle,t,n,i,h)},v=function(e,t){if(t.editingLinearElement)return!1;if(e.length>1)return!0;var n=e[0];return!(0,l.bt)(n)||n.points.length>2}},1974:function(e,t,n){"use strict";n.d(t,{F9:function(){return a},Lx:function(){return p},Mn:function(){return d},Xh:function(){return v},Xo:function(){return g},Yv:function(){return c},bt:function(){return s},dt:function(){return u},f0:function(){return f},iB:function(){return i},mG:function(){return h},pC:function(){return o},r2:function(){return m},wi:function(){return r}});var r=function(e){return!!e&&"image"===e.type&&!!e.fileId},o=function(e){return!!e&&"image"===e.type},i=function(e){return null!=e&&"text"===e.type},a=function(e){return null!=e&&l(e.type)},l=function(e){return"freedraw"===e},s=function(e){return null!=e&&u(e.type)},c=function(e){return null!=e&&"arrow"===e.type},u=function(e){return"arrow"===e||"line"===e},d=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return null!=e&&(!e.locked||!0===t)&&p(e.type)},p=function(e){return"arrow"===e},f=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return!(null==e||e.locked&&!0!==t||"rectangle"!==e.type&&"diamond"!==e.type&&"ellipse"!==e.type&&"image"!==e.type&&("text"!==e.type||e.containerId))},h=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return null!=e&&(!e.locked||!0===t)&&("rectangle"===e.type||"diamond"===e.type||"ellipse"===e.type||"image"===e.type||c(e))},m=function(e){return"text"===(null==e?void 0:e.type)||"diamond"===(null==e?void 0:e.type)||"rectangle"===(null==e?void 0:e.type)||"ellipse"===(null==e?void 0:e.type)||"arrow"===(null==e?void 0:e.type)||"freedraw"===(null==e?void 0:e.type)||"line"===(null==e?void 0:e.type)},g=function(e){var t;return f(e)&&!(null===(t=e.boundElements)||void 0===t||!t.some((function(e){return"text"===e.type})))},v=function(e){return null!==e&&"containerId"in e&&null!==e.containerId&&i(e)}},6797:function(e,t,n){"use strict";n.d(t,{_:function(){return h},l:function(){return f}});var r=n(5169),o=n(8821),i=n(2248),a=n(7245),l=n(2312),s=n(5901);function c(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}function u(e,t,n){return u=c()?Reflect.construct.bind():function(e,t,n){var r=[null];r.push.apply(r,t);var o=new(Function.bind.apply(e,r));return n&&(0,s.Z)(o,n.prototype),o},u.apply(null,arguments)}function d(e){var t="function"==typeof Map?new Map:void 0;return d=function(e){if(null===e||(n=e,-1===Function.toString.call(n).indexOf("[native code]")))return e;var n;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,r)}function r(){return u(e,arguments,(0,l.Z)(this).constructor)}return r.prototype=Object.create(e.prototype,{constructor:{value:r,enumerable:!1,writable:!0,configurable:!0}}),(0,s.Z)(r,e)},d(e)}function p(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=(0,l.Z)(e);if(t){var o=(0,l.Z)(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return(0,a.Z)(this,n)}}var f=function(e){(0,i.Z)(n,e);var t=p(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Couldn't export canvas.",i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"CANVAS_ERROR";return(0,o.Z)(this,n),(e=t.call(this)).name=i,e.message=r,e}return(0,r.Z)(n)}(d(Error)),h=function(e){(0,i.Z)(n,e);var t=p(n);function n(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Request Aborted";return(0,o.Z)(this,n),t.call(this,e,"AbortError")}return(0,r.Z)(n)}(d(DOMException))},242:function(e,t,n){"use strict";n.d(t,{AI:function(){return S},F$:function(){return p},Fb:function(){return y},Nd:function(){return b},Qy:function(){return w},S_:function(){return k},YS:function(){return x},bO:function(){return g},h6:function(){return E},iE:function(){return v},iJ:function(){return m},yO:function(){return h},zq:function(){return f}});var r=n(1930),o=n(2577),i=n(7169),a=n(75),l=n(5710);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function d(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?u(Object(n),!0).forEach((function(t){(0,i.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):u(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var p=function(e,t,n){var r=n.filter((function(t){return t.groupIds.includes(e)}));return r.length<2?t.selectedGroupIds[e]||t.editingGroupId===e?d(d({},t),{},{selectedGroupIds:d(d({},t.selectedGroupIds),{},(0,i.Z)({},e,!1)),editingGroupId:null}):t:d(d({},t),{},{selectedGroupIds:d(d({},t.selectedGroupIds),{},(0,i.Z)({},e,!0)),selectedElementIds:d(d({},t.selectedElementIds),Object.fromEntries(r.map((function(e){return[e.id,!0]}))))})},f=function(e,t){return null!=h(e,t)},h=function(e,t){return t.groupIds.filter((function(t){return t!==e.editingGroupId})).find((function(t){return e.selectedGroupIds[t]}))},m=function(e){return Object.entries(e.selectedGroupIds).filter((function(e){var t=(0,o.Z)(e,2);t[0];return t[1]})).map((function(e){var t=(0,o.Z)(e,2),n=t[0];t[1];return n}))},g=function(e,t){var n=d(d({},e),{},{selectedGroupIds:{}}),r=(0,a.eD)(t,e);if(!r.length)return d(d({},n),{},{editingGroupId:null});var o,i=s(r);try{for(i.s();!(o=i.n()).done;){var l=o.value.groupIds;if(e.editingGroupId){var c=l.indexOf(e.editingGroupId);c>-1&&(l=l.slice(0,c))}if(l.length>0){var u=l[l.length-1];n=p(u,n,t)}}}catch(e){i.e(e)}finally{i.f()}return n},v=function(e,t){return d(d({},e),{},{editingGroupId:t.groupIds.length?t.groupIds[0]:null,selectedGroupIds:{},selectedElementIds:(0,i.Z)({},t.id,!0)})},b=function(e,t){return e.groupIds.includes(t)},y=function(e,t){return e.filter((function(e){return b(e,t)}))},x=function(e,t){return e.groupIds.find((function(e){return t[e]}))},w=function(e,t,n){for(var o=(0,r.Z)(e),i=t?e.indexOf(t):-1,a=i>-1?i:e.length,l=0;l<a;l++)o[l]=n(o[l]);return o},k=function(e,t,n){var o=(0,r.Z)(e),i=n?o.indexOf(n):-1,a=i>-1?i:o.length;return o.splice(a,0,t),o},E=function(e,t){return e.filter((function(e){return!t[e]}))},S=function(e){var t=new Map;return e.forEach((function(e){var n=0===e.groupIds.length?e.id:e.groupIds[e.groupIds.length-1],o=t.get(n)||[],i=(0,l.WJ)(e);i&&o.push(i),t.set(n,[].concat((0,r.Z)(o),[e]))})),Array.from(t.values())}},5202:function(e,t,n){"use strict";n.d(t,{Fp:function(){return c},G3:function(){return m},Mj:function(){return u},m0:function(){return h},t:function(){return v}});var r=n(8950),o=n(2975),i=n.n(o),a=n(1463),l=JSON.parse('{"ar-SA":90,"bg-BG":58,"bn-BD":64,"ca-ES":99,"cs-CZ":66,"da-DK":34,"de-DE":100,"el-GR":99,"en":100,"es-ES":99,"eu-ES":99,"fa-IR":98,"fi-FI":97,"fr-FR":100,"gl-ES":45,"he-IL":94,"hi-IN":69,"hu-HU":94,"id-ID":100,"it-IT":100,"ja-JP":99,"kab-KAB":95,"kk-KZ":22,"ko-KR":100,"ku-TR":100,"lt-LT":23,"lv-LV":100,"mr-IN":100,"my-MM":44,"nb-NO":100,"nl-NL":86,"nn-NO":95,"oc-FR":99,"pa-IN":87,"pl-PL":89,"pt-BR":100,"pt-PT":99,"ro-RO":100,"ru-RU":99,"si-LK":8,"sk-SK":100,"sl-SI":100,"sv-SE":99,"ta-IN":97,"tr-TR":100,"uk-UA":100,"vi-VN":16,"zh-CN":100,"zh-HK":27,"zh-TW":100}'),s=n(2335),c={code:"en",label:"English"},u=[{code:"ar-SA",label:"العربية",rtl:!0},{code:"bg-BG",label:"Български"},{code:"ca-ES",label:"Català"},{code:"cs-CZ",label:"Česky"},{code:"de-DE",label:"Deutsch"},{code:"el-GR",label:"Ελληνικά"},{code:"es-ES",label:"Español"},{code:"eu-ES",label:"Euskara"},{code:"fa-IR",label:"فارسی",rtl:!0},{code:"fi-FI",label:"Suomi"},{code:"fr-FR",label:"Français"},{code:"gl-ES\t",label:"Galego"},{code:"he-IL",label:"עברית",rtl:!0},{code:"hi-IN",label:"हिन्दी"},{code:"hu-HU",label:"Magyar"},{code:"id-ID",label:"Bahasa Indonesia"},{code:"it-IT",label:"Italiano"},{code:"ja-JP",label:"日本語"},{code:"kab-KAB",label:"Taqbaylit"},{code:"kk-KZ",label:"Қазақ тілі"},{code:"ko-KR",label:"한국어"},{code:"ku-TR",label:"Kurdî"},{code:"lt-LT",label:"Lietuvių"},{code:"lv-LV",label:"Latviešu"},{code:"my-MM",label:"Burmese"},{code:"nb-NO",label:"Norsk bokmål"},{code:"nl-NL",label:"Nederlands"},{code:"nn-NO",label:"Norsk nynorsk"},{code:"oc-FR",label:"Occitan"},{code:"pa-IN",label:"ਪੰਜਾਬੀ"},{code:"pl-PL",label:"Polski"},{code:"pt-BR",label:"Português Brasileiro"},{code:"pt-PT",label:"Português"},{code:"ro-RO",label:"Română"},{code:"ru-RU",label:"Русский"},{code:"sk-SK",label:"Slovenčina"},{code:"sv-SE",label:"Svenska"},{code:"sl-SI",label:"Slovenščina"},{code:"tr-TR",label:"Türkçe"},{code:"uk-UA",label:"Українська"},{code:"zh-CN",label:"简体中文"},{code:"zh-TW",label:"繁體中文"},{code:"vi-VN",label:"Tiếng Việt"},{code:"mr-IN",label:"मराठी"}].concat([c]).sort((function(e,t){return e.label>t.label?1:-1})).filter((function(e){return l[e.code]>=85})),d="__test__";"production"===s.Vi.DEVELOPMENT&&u.unshift({code:d,label:"test language"},{code:"".concat(d,".rtl"),label:"‪test language (rtl)‬",rtl:!0});var p=c,f={},h=function(){var e=(0,r.Z)(i().mark((function e(t){return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(p=t,document.documentElement.dir=p.rtl?"rtl":"ltr",document.documentElement.lang=p.code,!t.code.startsWith(d)){e.next=7;break}f={},e.next=10;break;case 7:return e.next=9,Promise.resolve().then(n.t.bind(n,1463,19));case 9:f=e.sent;case 10:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),m=function(){return p},g=function(e,t){for(var n=0;n<t.length;++n){var r=t[n];if(void 0===e[r])return;e=e[r]}if("string"==typeof e)return e},v=function(e,t){if(p.code.startsWith(d)){var n=t?"".concat(e,"(").concat(JSON.stringify(t).slice(1,-1),")"):e;return"‪[[".concat(n,"]]‬")}var r=e.split("."),o=g(f,r)||g(a,r);if(void 0===o)throw new Error("Can't find translation for ".concat(e));if(t)for(var i in t)o=o.replace("{{".concat(i,"}}"),String(t[i]));return o}},9487:function(e,t,n){"use strict";n.d(t,{e_:function(){return i},yE:function(){return o}});var r=n(4739),o=(n(9787),Symbol()),i=(0,r.Vv)()},6066:function(e,t,n){"use strict";n.d(t,{Dt:function(){return i},E0:function(){return u},ED:function(){return o},Ge:function(){return d},OA:function(){return c},Um:function(){return r},Wl:function(){return s},aU:function(){return a},tW:function(){return l}});var r=/Mac|iPod|iPhone|iPad/.test(window.navigator.platform),o=/^Win/.test(window.navigator.platform),i=/\b(android)\b/i.test(navigator.userAgent),a={EQUAL:"Equal",MINUS:"Minus",NUM_ADD:"NumpadAdd",NUM_SUBTRACT:"NumpadSubtract",NUM_ZERO:"Numpad0",BRACKET_RIGHT:"BracketRight",BRACKET_LEFT:"BracketLeft",ONE:"Digit1",TWO:"Digit2",NINE:"Digit9",QUOTE:"Quote",ZERO:"Digit0",SLASH:"Slash",C:"KeyC",D:"KeyD",H:"KeyH",V:"KeyV",Z:"KeyZ",R:"KeyR"},l={ARROW_DOWN:"ArrowDown",ARROW_LEFT:"ArrowLeft",ARROW_RIGHT:"ArrowRight",ARROW_UP:"ArrowUp",BACKSPACE:"Backspace",ALT:"Alt",CTRL_OR_CMD:r?"metaKey":"ctrlKey",DELETE:"Delete",ENTER:"Enter",ESCAPE:"Escape",QUESTION_MARK:"?",SPACE:" ",TAB:"Tab",CHEVRON_LEFT:"<",CHEVRON_RIGHT:">",PERIOD:".",COMMA:",",A:"a",C:"c",D:"d",E:"e",F:"f",G:"g",H:"h",I:"i",L:"l",O:"o",P:"p",Q:"q",R:"r",S:"s",T:"t",V:"v",X:"x",Y:"y",Z:"z",K:"k",0:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9"},s=function(e){return e===l.ARROW_LEFT||e===l.ARROW_RIGHT||e===l.ARROW_DOWN||e===l.ARROW_UP},c=function(e){return e.altKey},u=function(e){return e.shiftKey},d=function(e){return e.shiftKey}},6552:function(e,t,n){"use strict";n.d(t,{H5:function(){return u},Jj:function(){return k},LW:function(){return c},N_:function(){return b},U1:function(){return a},c9:function(){return p},eH:function(){return x},g6:function(){return d},lk:function(){return w},wC:function(){return g},xj:function(){return l},yB:function(){return v},yq:function(){return s}});var r=n(2335),o=n(3063),i=n(8925),a=function(e,t,n,r,o){return[(e-n)*Math.cos(o)-(t-r)*Math.sin(o)+n,(e-n)*Math.sin(o)+(t-r)*Math.cos(o)+r]},l=function(e,t,n){return a(e[0],e[1],t[0],t[1],n)},s=function(e,t,n,r,o,i,a,l){var s=Math.cos(r),c=Math.sin(r);return e.e&&e.w?t+=o+a:e.e?(t+=o*(1+s),n+=o*c,t+=a*(1-s),n+=a*-c):e.w&&(t+=o*(1-s),n+=o*-c,t+=a*(1+s),n+=a*c),e.n&&e.s?n+=i+l:e.n?(t+=i*c,n+=i*(1-s),t+=l*-c,n+=l*(1+s)):e.s&&(t+=i*-c,n+=i*(1+s),t+=l*c,n+=l*(1-s)),[t,n]},c=function(e,t,n,r){var o=n-e,i=r-t;return Math.hypot(o,i)},u=function(e,t){return[(e[0]+t[0])/2,(e[1]+t[1])/2]},d=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;if(e.length>=3){var n=[e[0],e[e.length-1]],o=n[0],i=n[1],a=c(o[0],o[1],i[0],i[1]);return a<=r.qx/t}return!1},p=function(e,t,n){var r=e.length;if(r<3)return!1;for(var o=[Number.MAX_SAFE_INTEGER,n],i=[t,n],a=0,l=0;l<r;l++){var s=e[l],c=e[(l+1)%r];if(m(s,c,i,o)){if(0===h(s,i,c))return f(s,i,c);a++}}return a%2==1},f=function(e,t,n){return t[0]<=Math.max(e[0],n[0])&&t[0]>=Math.min(e[0],n[0])&&t[1]<=Math.max(e[1],n[1])&&t[1]>=Math.min(e[1],n[1])},h=function(e,t,n){var r=(t[1]-e[1])*(n[0]-t[0])-(t[0]-e[0])*(n[1]-t[1]);return 0===r?0:r>0?1:2},m=function(e,t,n,r){var o=h(e,t,n),i=h(e,t,r),a=h(n,r,e),l=h(n,r,t);return o!==i&&a!==l||(!(0!==o||!f(e,n,t))||(!(0!==i||!f(e,r,t))||(!(0!==a||!f(n,e,r))||!(0!==l||!f(n,t,r)))))},g=function(e,t,n){return n?[Math.round(e/n)*n,Math.round(t/n)*n]:[e,t]},v=function(e,t){var n=(0,o.R2)(e);if(!n)return null;for(var r=(0,i.CM)(n[0]),a=[0,0],l=0,s=1/0,u=null;l<r.length;){var d=r[l],p=d.op,f=d.data;if("move"===p&&(a=f),"bcurveTo"===p){var h=a,m=[f[0],f[1]],g=[f[2],f[3]],v=[f[4],f[5]],b=c(v[0],v[1],t[0],t[1]);b<s&&(s=b,u=[h,m,g,v]),a=v}l++}return u},b=function(e,t,n,r,o){var i=function(o,i){return Math.pow(1-o,3)*r[i]+3*o*Math.pow(1-o,2)*n[i]+3*Math.pow(o,2)*(1-o)*t[i]+e[i]*Math.pow(o,3)};return[i(o,0),i(o,1)]},y=function(e,t){var n=[];n[0]=0;for(var r=function(e,t){var n=v(e,t);if(!n)return[];for(var r=[],o=1;o>0;){var i=b(n[0],n[1],n[2],n[3],o);r.push([i[0],i[1]]),o-=.05}return r.length&&k(r.at(-1),t)&&r.push([t[0],t[1]]),r}(e,t),o=0,i=0;o<r.length-1;){i+=c(r[o][0],r[o][1],r[o+1][0],r[o+1][1]),n.push(i),o++}return n},x=function(e,t){return y(e,t).at(-1)},w=function(e,t,n){for(var r=y(e,t),o=r.length-1,i=n*r.at(-1),a=0,l=o,s=0;a<l;)r[s=Math.floor(a+(l-a)/2)]<i?a=s+1:l=s;return r[s]>i&&s--,r[s]===i?s/o:1-(s+(i-r[s])/(r[s+1]-r[s]))/o},k=function(e,t){return e[0]===t[0]&&e[1]===t[1]}},3024:function(e,t,n){"use strict";n.d(t,{$D:function(){return k},Fl:function(){return w},I_:function(){return f.I_},N7:function(){return g.N7},NI:function(){return f.NI},NL:function(){return x},ZY:function(){return m.ZY},cT:function(){return m.cT},i1:function(){return E},lV:function(){return m.lV},zh:function(){return v.zh}});var r=n(8950),o=n(7169),i=n(2975),a=n.n(i),l=n(4162),s=n(8897),c=n(1002),u=n(679),d=n(2335),p=n(673),f=n(5523),h=n(6665),m=n(434),g=n(3063),v=n(7053);function b(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function y(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?b(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):b(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var x=function(e){var t=e.elements,n=e.appState,r=e.files,o=e.maxWidthOrHeight,i=e.getDimensions,a=e.exportPadding,s=(0,u.nu)({elements:t,appState:n},null,null),d=s.elements,p=s.appState,f=p.exportBackground,h=p.viewBackgroundColor;return(0,l.NL)((0,c.Lm)(d),y(y({},p),{},{offsetTop:0,offsetLeft:0,width:0,height:0}),r||{},{exportBackground:f,exportPadding:a,viewBackgroundColor:h},(function(e,t){var n,r=document.createElement("canvas");if(o){"function"==typeof i&&console.warn("`getDimensions()` is ignored when `maxWidthOrHeight` is supplied.");var a=Math.max(e,t),l=o/a;return r.width=e*l,r.height=t*l,{canvas:r,scale:l}}var s=(null==i?void 0:i(e,t))||{width:e,height:t};return r.width=s.width,r.height=s.height,{canvas:r,scale:null!==(n=s.scale)&&void 0!==n?n:1}}))},w=function(){var e=(0,r.Z)(a().mark((function e(t){var n,o,i,l,s,c;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return i=(o=t).mimeType,l=void 0===i?d.LO.png:i,s=o.quality,l===d.LO.png&&"number"==typeof s&&console.warn('"quality" will be ignored for "'.concat(d.LO.png,'" mimeType')),"image/jpg"===l&&(l=d.LO.jpg),l!==d.LO.jpg||null!==(n=t.appState)&&void 0!==n&&n.exportBackground||(console.warn('Defaulting "exportBackground" to "true" for "'.concat(d.LO.jpg,'" mimeType')),t=y(y({},t),{},{appState:y(y({},t.appState),{},{exportBackground:!0})})),e.next=6,x(t);case 6:return c=e.sent,s=s||(/image\/jpe?g/.test(l)?.92:.8),e.abrupt("return",new Promise((function(e,n){c.toBlob(function(){var o=(0,r.Z)(a().mark((function r(o){var i;return a().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if(o){r.next=2;break}return r.abrupt("return",n(new Error("couldn't export to blob")));case 2:if(!o||l!==d.LO.png||null===(i=t.appState)||void 0===i||!i.exportEmbedScene){r.next=6;break}return r.next=5,(0,p.encodePngMetadata)({blob:o,metadata:(0,f.I_)(t.elements,t.appState,t.files||{},"local")});case 5:o=r.sent;case 6:e(o);case 7:case"end":return r.stop()}}),r)})));return function(e){return o.apply(this,arguments)}}(),l,s)})));case 9:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),k=function(){var e=(0,r.Z)(a().mark((function e(t){var n,r,o,i,d,p,f,h,m;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.elements,r=t.appState,o=void 0===r?(0,s.im)():r,i=t.files,d=void 0===i?{}:i,p=t.exportPadding,f=(0,u.nu)({elements:n,appState:o},null,null),h=f.elements,m=f.appState,e.abrupt("return",(0,l.$D)((0,c.Lm)(h),y(y({},m),{},{exportPadding:p}),d));case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),E=function(){var e=(0,r.Z)(a().mark((function e(t){var n,r;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if("svg"!==t.type){e.next=8;break}return e.next=3,k(t);case 3:return n=e.sent,e.next=6,(0,h.dd)(n.outerHTML);case 6:case 11:case 17:e.next=20;break;case 8:if("png"!==t.type){e.next=13;break}return e.next=11,(0,h.uR)(w(t));case 13:if("json"!==t.type){e.next=19;break}return r=y(y({offsetTop:0,offsetLeft:0,width:0,height:0},(0,s.im)()),t.appState),e.next=17,(0,h.vQ)(t.elements,r,t.files);case 19:throw new Error("Invalid export type");case 20:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()},5001:function(e,t,n){"use strict";n.d(t,{k:function(){return o},z:function(){return i}});var r=n(1930),o=function(e){var t=e.map((function(e){return e[0]})),n=e.map((function(e){return e[1]}));return{width:Math.max.apply(Math,(0,r.Z)(t))-Math.min.apply(Math,(0,r.Z)(t)),height:Math.max.apply(Math,(0,r.Z)(n))-Math.min.apply(Math,(0,r.Z)(n))}},i=function(e,t,n,o){var i=n.map((function(t){return t[e]})),a=Math.max.apply(Math,(0,r.Z)(i)),l=Math.min.apply(Math,(0,r.Z)(i)),s=a-l,c=0===s?1:t/s,u=1/0,d=n.map((function(t){var n=t[e]*c,o=(0,r.Z)(t);return o[e]=n,n<u&&(u=n),o}));if(!o)return d;if(2===d.length)return d;var p=l-u;return d.map((function(t){return t.map((function(t,n){return n===e?t+p:t}))}))}},6954:function(e,t,n){"use strict";n.d(t,{LU:function(){return s},kb:function(){return c}});var r=n(8152),o=n(5605),i=n(6340),a=new r.k(Date.now()),l=0,s=function(){return Math.floor(a.next()*Math.pow(2,31))},c=function(){return(0,i.h2)()?"id".concat(l++):(0,o.x0)()}},3063:function(e,t,n){"use strict";n.d(t,{Dn:function(){return W},aL:function(){return q},i:function(){return J},N7:function(){return ae},R2:function(){return G},bI:function(){return X},lw:function(){return te},Rg:function(){return re}});var r=n(1930),o=n(7169),i=n(2577),a=n(1974),l=n(8925),s=n(6340),c=n(6552),u=n(8234),d=n(8897),p=n(2335);function f(e,t,n,r=(e=>e)){return e*r(.5-t*(.5-n))}function h(e,t){return[e[0]+t[0],e[1]+t[1]]}function m(e,t){return[e[0]-t[0],e[1]-t[1]]}function g(e,t){return[e[0]*t,e[1]*t]}function v(e){return[e[1],-e[0]]}function b(e,t){return e[0]*t[0]+e[1]*t[1]}function y(e,t){return e[0]===t[0]&&e[1]===t[1]}function x(e,t){return function(e){return e[0]*e[0]+e[1]*e[1]}(m(e,t))}function w(e){return function(e,t){return[e[0]/t,e[1]/t]}(e,function(e){return Math.hypot(e[0],e[1])}(e))}function k(e,t){return Math.hypot(e[1]-t[1],e[0]-t[0])}function E(e,t,n){let r=Math.sin(n),o=Math.cos(n),i=e[0]-t[0],a=e[1]-t[1],l=i*r+a*o;return[i*o-a*r+t[0],l+t[1]]}function S(e,t,n){return h(e,g(m(t,e),n))}function _(e,t,n){return h(e,g(t,n))}var{min:j,PI:C}=Math,O=C+1e-4;function M(e,t={}){return function(e,t={}){let{size:n=16,smoothing:r=.5,thinning:o=.5,simulatePressure:i=!0,easing:a=(e=>e),start:l={},end:s={},last:c=!1}=t,{cap:u=!0,easing:d=(e=>e*(2-e))}=l,{cap:p=!0,easing:y=(e=>--e*e*e+1)}=s;if(0===e.length||n<=0)return[];let k,C=e[e.length-1].runningLength,M=!1===l.taper?0:!0===l.taper?Math.max(n,C):l.taper,I=!1===s.taper?0:!0===s.taper?Math.max(n,C):s.taper,P=Math.pow(n*r,2),T=[],D=[],L=e.slice(0,10).reduce(((e,t)=>{let r=t.pressure;if(i){let o=j(1,t.distance/n),i=j(1,1-o);r=j(1,e+.275*o*(i-e))}return(e+r)/2}),e[0].pressure),A=f(n,o,e[e.length-1].pressure,a),Z=e[0].vector,z=e[0].point,R=z,N=z,B=R,W=!1;for(let t=0;t<e.length;t++){let{pressure:r}=e[t],{point:l,vector:s,distance:c,runningLength:u}=e[t];if(t<e.length-1&&C-u<3)continue;if(o){if(i){let e=j(1,c/n),t=j(1,1-e);r=j(1,L+.275*e*(t-L))}A=f(n,o,r,a)}else A=n/2;void 0===k&&(k=A);let p=u<M?d(u/M):1,w=C-u<I?y((C-u)/I):1;A=Math.max(.01,A*Math.min(p,w));let _=(t<e.length-1?e[t+1]:e[t]).vector,H=t<e.length-1?b(s,_):1,F=null!==H&&H<0;if(b(s,Z)<0&&!W||F){let e=g(v(Z),A);for(let t=1/13,n=0;n<=1;n+=t)N=E(m(l,e),l,O*n),T.push(N),B=E(h(l,e),l,O*-n),D.push(B);z=N,R=B,F&&(W=!0);continue}if(W=!1,t===e.length-1){let e=g(v(s),A);T.push(m(l,e)),D.push(h(l,e));continue}let U=g(v(S(_,s,H)),A);N=m(l,U),(t<=1||x(z,N)>P)&&(T.push(N),z=N),B=h(l,U),(t<=1||x(R,B)>P)&&(D.push(B),R=B),L=r,Z=s}let H=e[0].point.slice(0,2),F=e.length>1?e[e.length-1].point.slice(0,2):h(e[0].point,[1,1]),U=[],K=[];if(1===e.length){if(!M&&!I||c){let e=_(H,w(v(m(H,F))),-(k||A)),t=[];for(let n=1/13,r=n;r<=1;r+=n)t.push(E(e,H,2*O*r));return t}}else{if(!(M||I&&1===e.length))if(u)for(let e=1/13,t=e;t<=1;t+=e){let e=E(D[0],H,O*t);U.push(e)}else{let e=m(T[0],D[0]),t=g(e,.5),n=g(e,.51);U.push(m(H,t),m(H,n),h(H,n),h(H,t))}let t=v(function(e){return[-e[0],-e[1]]}(e[e.length-1].vector));if(I||M&&1===e.length)K.push(F);else if(p){let e=_(F,t,A);for(let t=1/29,n=t;n<1;n+=t)K.push(E(e,F,3*O*n))}else K.push(h(F,g(t,A)),h(F,g(t,.99*A)),m(F,g(t,.99*A)),m(F,g(t,A)))}return T.concat(K,D.reverse(),U)}(function(e,t={}){var n;let{streamline:r=.5,size:o=16,last:i=!1}=t;if(0===e.length)return[];let a=.15+.85*(1-r),l=Array.isArray(e[0])?e:e.map((({x:e,y:t,pressure:n=.5})=>[e,t,n]));if(2===l.length){let e=l[1];l=l.slice(0,-1);for(let t=1;t<5;t++)l.push(S(l[0],e,t/4))}1===l.length&&(l=[...l,[...h(l[0],[1,1]),...l[0].slice(2)]]);let s=[{point:[l[0][0],l[0][1]],pressure:l[0][2]>=0?l[0][2]:.25,vector:[1,1],distance:0,runningLength:0}],c=!1,u=0,d=s[0],p=l.length-1;for(let e=1;e<l.length;e++){let t=i&&e===p?l[e].slice(0,2):S(d.point,l[e],a);if(y(d.point,t))continue;let n=k(t,d.point);if(u+=n,e<p&&!c){if(u<o)continue;c=!0}d={point:t,pressure:l[e][2]>=0?l[e][2]:.5,vector:w(m(d.point,t)),distance:n,runningLength:u},s.push(d)}return s[0].vector=(null==(n=s[1])?void 0:n.vector)||[0,0],s}(e,t),t)}var I=n(5710),P=n(6938);function T(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function D(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?T(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):T(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var L="invert(100%) hue-rotate(180deg) saturate(1.25)",A=(0,d.im)(),Z=function(e,t){return(0,a.wi)(e)&&!t.imageCache.has(e.fileId)},z=function(e,t){var n;return"dark"===t.theme&&(0,a.wi)(e)&&!Z(e,t)&&(null===(n=t.imageCache.get(e.fileId))||void 0===n?void 0:n.mimeType)!==p.LO.svg},R=function(e){return[8,8+e]},N=function(e){return[1.5,6+e]},B=function(e){return"freedraw"===e.type?12*e.strokeWidth:20},W=14,H=document.createElement("img");H.src="data:".concat(p.LO.svg,",").concat(encodeURIComponent('<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="image" class="svg-inline--fa fa-image fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#888" d="M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"></path></svg>'));var F=document.createElement("img");F.src="data:".concat(p.LO.svg,",").concat(encodeURIComponent('<svg viewBox="0 0 668 668" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"><path d="M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48ZM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56ZM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48Z" style="fill:#888;fill-rule:nonzero" transform="matrix(.81709 0 0 .81709 124.825 145.825)"/><path d="M256 8C119.034 8 8 119.033 8 256c0 136.967 111.034 248 248 248s248-111.034 248-248S392.967 8 256 8Zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676ZM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676Z" style="fill:#888;fill-rule:nonzero" transform="matrix(.30366 0 0 .30366 506.822 60.065)"/></svg>'));var U=function(e,t,n,r){switch(n.globalAlpha=e.opacity/100,e.type){case"rectangle":case"diamond":case"ellipse":n.lineJoin="round",n.lineCap="round",t.draw(G(e));break;case"arrow":case"line":n.lineJoin="round",n.lineCap="round",G(e).forEach((function(e){t.draw(e)}));break;case"freedraw":n.save(),n.fillStyle=e.strokeColor;var o=function(e){return oe.get(e)}(e),i=G(e);i&&t.draw(i),n.fillStyle=e.strokeColor,n.fill(o),n.restore();break;case"image":var l,c=(0,a.wi)(e)?null===(l=r.imageCache.get(e.fileId))||void 0===l?void 0:l.image:void 0;null==c||c instanceof Promise?function(e,t,n){t.fillStyle="#E7E7E7",t.fillRect(0,0,e.width,e.height);var r=Math.min(e.width,e.height),o=Math.min(r,Math.min(.4*r,100));t.drawImage("error"===e.status?F:H,e.width/2-o/2,e.height/2-o/2,o,o)}(e,n,r.zoom.value):n.drawImage(c,0,0,e.width,e.height);break;default:if(!(0,a.iB)(e))throw new Error("Unimplemented type ".concat(e.type));var u=(0,s.dZ)(e.text),d=u&&!n.canvas.isConnected;d&&document.body.appendChild(n.canvas),n.canvas.setAttribute("dir",u?"rtl":"ltr"),n.save(),n.font=(0,s.mO)(e),n.fillStyle=e.strokeColor,n.textAlign=e.textAlign;var f=e.text.replace(/\r\n?/g,"\n").split("\n"),h=e.containerId?(0,I.hP)((0,s.mO)(e)):e.height/f.length,m=e.height-e.baseline;e.verticalAlign===p.oX.BOTTOM&&(m=(0,I.S)(e));for(var g="center"===e.textAlign?e.width/2:"right"===e.textAlign?e.width:0,v=0;v<f.length;v++)n.fillText(f[v],g,(v+1)*h-m);n.restore(),d&&n.canvas.remove()}n.globalAlpha=1},K=new WeakMap,Y=new WeakMap,G=function(e){return Y.get(e)},V=function(e,t){return Y.set(e,t)},X=function(e){return Y.delete(e)},q=function(){K=new WeakMap,Y=new WeakMap,oe=new WeakMap},J=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n={seed:e.seed,strokeLineDash:"dashed"===e.strokeStyle?R(e.strokeWidth):"dotted"===e.strokeStyle?N(e.strokeWidth):void 0,disableMultiStroke:"solid"!==e.strokeStyle,strokeWidth:"solid"!==e.strokeStyle?e.strokeWidth+.5:e.strokeWidth,fillWeight:e.strokeWidth/2,hachureGap:4*e.strokeWidth,roughness:e.roughness,stroke:e.strokeColor,preserveVertices:t};switch(e.type){case"rectangle":case"diamond":case"ellipse":return n.fillStyle=e.fillStyle,n.fill="transparent"===e.backgroundColor?void 0:e.backgroundColor,"ellipse"===e.type&&(n.curveFitting=1),n;case"line":case"freedraw":return(0,c.g6)(e.points)&&(n.fillStyle=e.fillStyle,n.fill="transparent"===e.backgroundColor?void 0:e.backgroundColor),n;case"arrow":return n;default:throw new Error("Unimplemented type ".concat(e.type))}},$=function(e,t){var n=Y.get(e);if(void 0===n)switch(K.delete(e),e.type){case"rectangle":if("round"===e.strokeSharpness){var o=e.width,a=e.height,s=.25*Math.min(o,a);n=t.path("M ".concat(s," 0 L ").concat(o-s," 0 Q ").concat(o," 0, ").concat(o," ").concat(s," L ").concat(o," ").concat(a-s," Q ").concat(o," ").concat(a,", ").concat(o-s," ").concat(a," L ").concat(s," ").concat(a," Q 0 ").concat(a,", 0 ").concat(a-s," L 0 ").concat(s," Q 0 0, ").concat(s," 0"),J(e,!0))}else n=t.rectangle(0,0,e.width,e.height,J(e));V(e,n);break;case"diamond":var u=(0,l.UC)(e),d=(0,i.Z)(u,8),p=d[0],f=d[1],h=d[2],m=d[3],g=d[4],v=d[5],b=d[6],y=d[7];n="round"===e.strokeSharpness?t.path("M ".concat(p+.25*(h-p)," ").concat(f+.25*(m-f)," L ").concat(h-.25*(h-p)," ").concat(m-.25*(m-f),"\n C ").concat(h," ").concat(m,", ").concat(h," ").concat(m,", ").concat(h-.25*(h-g)," ").concat(m+.25*(v-m),"\n L ").concat(g+.25*(h-g)," ").concat(v-.25*(v-m),"\n C ").concat(g," ").concat(v,", ").concat(g," ").concat(v,", ").concat(g-.25*(g-b)," ").concat(v-.25*(v-y),"\n L ").concat(b+.25*(g-b)," ").concat(y+.25*(v-y),"\n C ").concat(b," ").concat(y,", ").concat(b," ").concat(y,", ").concat(b+.25*(p-b)," ").concat(y-.25*(y-f),"\n L ").concat(p-.25*(p-b)," ").concat(f+.25*(y-f),"\n C ").concat(p," ").concat(f,", ").concat(p," ").concat(f,", ").concat(p+.25*(h-p)," ").concat(f+.25*(m-f)),J(e,!0)):t.polygon([[p,f],[h,m],[g,v],[b,y]],J(e)),V(e,n);break;case"ellipse":n=t.ellipse(e.width/2,e.height/2,e.width,e.height,J(e)),V(e,n);break;case"line":case"arrow":var x=J(e),w=e.points.length?e.points:[[0,0]];if(n="sharp"===e.strokeSharpness?x.fill?[t.polygon(w,x)]:[t.linearPath(w,x)]:[t.curve(w,x)],"arrow"===e.type){var k=e.startArrowhead,E=void 0===k?null:k,S=e.endArrowhead,_=void 0===S?"arrow":S,j=function(e,n,r,o){var a=(0,l.Y5)(e,n,r,o);if(null===a)return[];if("dot"===o){var s=(0,i.Z)(a,3),c=s[0],u=s[1],d=s[2];return[t.circle(c,u,d,D(D({},x),{},{fill:e.strokeColor,fillStyle:"solid",stroke:"none"}))]}if("triangle"===o){var p=(0,i.Z)(a,6),f=p[0],h=p[1],m=p[2],g=p[3],v=p[4],b=p[5];return delete x.strokeLineDash,[t.polygon([[f,h],[m,g],[v,b],[f,h]],D(D({},x),{},{fill:e.strokeColor,fillStyle:"solid"}))]}var y=(0,i.Z)(a,6),w=y[0],k=y[1],E=y[2],S=y[3],_=y[4],j=y[5];if("dotted"===e.strokeStyle){var C=N(e.strokeWidth-1);x.strokeLineDash=[C[0],C[1]-1]}else delete x.strokeLineDash;return[t.line(E,S,w,k,x),t.line(_,j,w,k,x)]};if(null!==E){var C,O=j(e,n,"start",E);(C=n).push.apply(C,(0,r.Z)(O))}if(null!==_){var M,I=j(e,n,"end",_);(M=n).push.apply(M,(0,r.Z)(I))}}V(e,n);break;case"freedraw":ie(e),n=(0,c.g6)(e.points)?t.polygon(e.points,D(D({},J(e)),{},{stroke:"none"})):null,V(e,n);break;case"text":case"image":V(e,null)}},Q=function(e,t){var n,r=t?t.zoom:A.zoom,o=K.get(e),c=o&&o.canvasZoom!==r.value&&!(null!=t&&t.shouldCacheIgnoreZoom),d=(null===(n=(0,I.WJ)(e))||void 0===n?void 0:n.version)||null;if(!o||c||o.theme!==t.theme||o.boundTextElementVersion!==d){var p=function(e,t,n){var r,o=document.createElement("canvas"),c=o.getContext("2d"),d=B(e),p=0,f=0;if((0,a.bt)(e)||(0,a.F9)(e)){var h=(0,l.qf)(e),m=(0,i.Z)(h,4),g=m[0],v=m[1],b=m[2],y=m[3];o.width=(0,s.TE)(g,b)*window.devicePixelRatio*t.value+d*t.value*2,o.height=(0,s.TE)(v,y)*window.devicePixelRatio*t.value+d*t.value*2,p=e.x>g?(0,s.TE)(e.x,g)*window.devicePixelRatio*t.value:0,f=e.y>v?(0,s.TE)(e.y,v)*window.devicePixelRatio*t.value:0,c.translate(p,f)}else o.width=e.width*window.devicePixelRatio*t.value+d*t.value*2,o.height=e.height*window.devicePixelRatio*t.value+d*t.value*2;c.save(),c.translate(d*t.value,d*t.value),c.scale(window.devicePixelRatio*t.value,window.devicePixelRatio*t.value);var x=u.Z.canvas(o);return z(e,n)&&(c.filter=L),U(e,x,c,n),c.restore(),{element:e,canvas:o,theme:n.theme,canvasZoom:t.value,canvasOffsetX:p,canvasOffsetY:f,boundTextElementVersion:(null===(r=(0,I.WJ)(e))||void 0===r?void 0:r.version)||null}}(e,r,t);return K.set(e,p),p}return o},ee=function(e,t,n,r){var o=e.element,c=B(o),u=e.canvasZoom,d=(0,l.qf)(o),f=(0,i.Z)(d,4),h=f[0],m=f[1],g=f[2],v=f[3];(0,a.F9)(o)&&(h=Math.floor(h),g=Math.ceil(g),m=Math.floor(m),v=Math.ceil(v));var b=((h+g)/2+r.scrollX)*window.devicePixelRatio,y=((m+v)/2+r.scrollY)*window.devicePixelRatio,x=Z(o,r),w="scale"in e.element&&!x?e.element.scale[0]:1,k="scale"in e.element&&!x?e.element.scale[1]:1;n.save(),n.scale(1/window.devicePixelRatio*w,1/window.devicePixelRatio*k);var E=(0,I.WJ)(o);if((0,a.Yv)(o)&&E){var S=document.createElement("canvas"),_=S.getContext("2d"),j=Math.max((0,s.TE)(h,g),(0,s.TE)(m,v));S.width=j*window.devicePixelRatio+c*e.canvasZoom*10,S.height=j*window.devicePixelRatio+c*e.canvasZoom*10;var C=(S.width-e.canvas.width)/2,O=(S.height-e.canvas.height)/2;_.translate(S.width/2,S.height/2),_.rotate(o.angle);var M=(e.canvas.width/u-e.canvas.width)/2,P=(e.canvas.height/u-e.canvas.height)/2;_.drawImage(e.canvas,-e.canvas.width/2-M,-e.canvas.height/2-P,e.canvas.width/u,e.canvas.height/u);var T=(0,l.qf)(E),D=(0,i.Z)(T,6),L=D[4],A=D[5];_.rotate(-o.angle);var z=S.width/2-(L-h)*window.devicePixelRatio-C-c,R=S.height/2-(A-m)*window.devicePixelRatio-O-c;_.translate(-z,-R),_.globalCompositeOperation="destination-out",_.fillRect(-(E.width/2+p.gK)*window.devicePixelRatio-M,-(E.height/2+p.gK)*window.devicePixelRatio-P,(E.width+2*p.gK)*window.devicePixelRatio,(E.height+2*p.gK)*window.devicePixelRatio),n.translate(b*w,y*k),n.drawImage(S,-(g-h)/2*window.devicePixelRatio-(c+C)*u/u+M,-(v-m)/2*window.devicePixelRatio-(c+O)*u/u+P,S.width,S.height)}else n.translate(b*w,y*k),n.rotate(o.angle*w*k),n.drawImage(e.canvas,-(g-h)/2*window.devicePixelRatio-c*e.canvasZoom/e.canvasZoom,-(v-m)/2*window.devicePixelRatio-c*e.canvasZoom/e.canvasZoom,e.canvas.width/e.canvasZoom,e.canvas.height/e.canvasZoom);n.restore()},te=function(e,t,n,r,o){var c=t.generator;switch(e.type){case"selection":n.save(),n.translate(e.x+r.scrollX,e.y+r.scrollY),n.fillStyle="rgba(0, 0, 200, 0.04)";var d=.5/r.zoom.value;n.fillRect(d,d,e.width,e.height),n.lineWidth=1/r.zoom.value,n.strokeStyle="rgb(105, 101, 219)",n.strokeRect(d,d,e.width,e.height),n.restore();break;case"freedraw":if($(e,c),r.isExporting){var f=(0,l.qf)(e),h=(0,i.Z)(f,4),m=h[0],g=h[1],v=h[2],b=h[3],y=(m+v)/2+r.scrollX,x=(g+b)/2+r.scrollY,w=(v-m)/2-(e.x-m),k=(b-g)/2-(e.y-g);n.save(),n.translate(y,x),n.rotate(e.angle),n.translate(-w,-k),U(e,t,n,r),n.restore()}else{var E=Q(e,r);ee(E,0,n,r)}break;case"rectangle":case"diamond":case"ellipse":case"line":case"arrow":case"image":case"text":if($(e,c),r.isExporting){var S=(0,l.qf)(e),_=(0,i.Z)(S,4),j=_[0],C=_[1],O=_[2],M=_[3],T=(j+O)/2+r.scrollX,D=(C+M)/2+r.scrollY,L=(O-j)/2-(e.x-j),A=(M-C)/2-(e.y-C);if((0,a.iB)(e)){var Z=(0,I.tl)(e);if((0,a.Yv)(Z)){var R=P._.getBoundTextElementPosition(Z,e);L=(O-j)/2-(R.x-j),A=(M-C)/2-(R.y-C)}}n.save(),n.translate(T,D),"image"===e.type&&n.scale(e.scale[0],e.scale[1]),z(e,r)&&(n.filter="none");var N=(0,I.WJ)(e);if((0,a.Yv)(e)&&N){var W=document.createElement("canvas"),H=W.getContext("2d"),F=Math.max((0,s.TE)(j,O),(0,s.TE)(C,M)),K=B(e);W.width=F+10*K,W.height=F+10*K,H.translate(W.width/2,W.height/2),L=e.width/2-(e.x-j),A=e.height/2-(e.y-C),H.rotate(e.angle),H.translate(-L,-A);var Y=u.Z.canvas(W);U(e,Y,H,r),H.translate(L,A),H.rotate(-e.angle);var G=(0,l.qf)(N),V=(0,i.Z)(G,6),X=(j+O)/2-V[4],q=(C+M)/2-V[5];H.translate(-X,-q),H.globalCompositeOperation="destination-out",H.fillRect(-(N.width/2+p.gK),-(N.height/2+p.gK),N.width+2*p.gK,N.height+2*p.gK),n.drawImage(W,-W.width/2,-W.height/2)}else n.rotate(e.angle),n.translate(-L,-A),U(e,t,n,r);n.restore()}else{var J=Q(e,r);ee(J,0,n,r)}break;default:throw new Error("Unimplemented type ".concat(e.type))}},ne=function(e,t,n){if(void 0===n)return e.draw(t);var r={sets:t.sets,shape:t.shape,options:D(D({},t.options),{},{fixedDecimalPlaceDigits:n})};return e.draw(r)},re=function(e,t,n,r,o,u,d){var f=(0,l.qf)(e),h=(0,i.Z)(f,4),m=h[0],g=h[1],v=h[2],b=h[3],y=(v-m)/2-(e.x-m),x=(b-g)/2-(e.y-g);if((0,a.iB)(e)){var w=(0,I.tl)(e);if((0,a.Yv)(w)){var k=(0,l.qf)(w),E=(0,i.Z)(k,4),S=E[0],_=E[1],j=E[2],C=E[3],O=P._.getBoundTextElementPosition(w,e);y=(j-S)/2-(O.x-S),x=(C-_)/2-(O.y-_),o=o+O.x-e.x,u=u+O.y-e.y}}var M=180*e.angle/Math.PI,T=t.generator,D=n;if(e.link){var A=n.ownerDocument.createElementNS(p.hR,"a");A.setAttribute("href",e.link),D.appendChild(A),D=A}switch(e.type){case"selection":throw new Error("Selection rendering is not supported for SVG");case"rectangle":case"diamond":case"ellipse":$(e,T);var Z=ne(t,G(e),p.zK),z=e.opacity/100;1!==z&&(Z.setAttribute("stroke-opacity","".concat(z)),Z.setAttribute("fill-opacity","".concat(z))),Z.setAttribute("stroke-linecap","round"),Z.setAttribute("transform","translate(".concat(o||0," ").concat(u||0,") rotate(").concat(M," ").concat(y," ").concat(x,")")),D.appendChild(Z);break;case"line":case"arrow":var R=(0,I.WJ)(e),N=n.ownerDocument.createElementNS(p.hR,"mask");if(R){N.setAttribute("id","mask-".concat(e.id));var B=n.ownerDocument.createElementNS(p.hR,"rect");o=o||0,u=u||0,B.setAttribute("x","0"),B.setAttribute("y","0"),B.setAttribute("fill","#fff"),B.setAttribute("width","".concat(e.width+100+o)),B.setAttribute("height","".concat(e.height+100+u)),N.appendChild(B);var W=n.ownerDocument.createElementNS(p.hR,"rect"),H=P._.getBoundTextElementPosition(e,R),F=o+H.x-e.x,U=u+H.y-e.y;W.setAttribute("x",F.toString()),W.setAttribute("y",U.toString()),W.setAttribute("fill","#000"),W.setAttribute("width","".concat(R.width)),W.setAttribute("height","".concat(R.height)),W.setAttribute("opacity","1"),N.appendChild(W)}$(e,T);var K=n.ownerDocument.createElementNS(p.hR,"g");R&&K.setAttribute("mask","url(#mask-".concat(e.id,")"));var Y=e.opacity/100;K.setAttribute("stroke-linecap","round"),G(e).forEach((function(n){var r=ne(t,n,p.zK);1!==Y&&(r.setAttribute("stroke-opacity","".concat(Y)),r.setAttribute("fill-opacity","".concat(Y))),r.setAttribute("transform","translate(".concat(o||0," ").concat(u||0,") rotate(").concat(M," ").concat(y," ").concat(x,")")),"line"===e.type&&(0,c.g6)(e.points)&&"transparent"!==e.backgroundColor&&r.setAttribute("fill-rule","evenodd"),K.appendChild(r)})),D.appendChild(K),D.append(N);break;case"freedraw":$(e,T),ie(e);var V=e.opacity/100,X=G(e),q=X?ne(t,X,p.zK):n.ownerDocument.createElementNS(p.hR,"g");1!==V&&(q.setAttribute("stroke-opacity","".concat(V)),q.setAttribute("fill-opacity","".concat(V))),q.setAttribute("transform","translate(".concat(o||0," ").concat(u||0,") rotate(").concat(M," ").concat(y," ").concat(x,")")),q.setAttribute("stroke","none");var J=n.ownerDocument.createElementNS(p.hR,"path");J.setAttribute("fill",e.strokeColor),J.setAttribute("d",ae(e)),q.appendChild(J),D.appendChild(q);break;case"image":var Q=Math.round(e.width),ee=Math.round(e.height),te=(0,a.wi)(e)&&r[e.fileId];if(te){var re="image-".concat(te.id),oe=n.querySelector("#".concat(re));if(!oe){(oe=n.ownerDocument.createElementNS(p.hR,"symbol")).id=re;var le=n.ownerDocument.createElementNS(p.hR,"image");le.setAttribute("width","100%"),le.setAttribute("height","100%"),le.setAttribute("href",te.dataURL),oe.appendChild(le),D.prepend(oe)}var se=n.ownerDocument.createElementNS(p.hR,"use");if(se.setAttribute("href","#".concat(re)),d&&te.mimeType!==p.LO.svg&&se.setAttribute("filter",L),se.setAttribute("width","".concat(Q)),se.setAttribute("height","".concat(ee)),1!==e.scale[0]||1!==e.scale[1]){var ce=1!==e.scale[0]?-Q:0,ue=1!==e.scale[1]?-ee:0;se.setAttribute("transform","scale(".concat(e.scale[0],", ").concat(e.scale[1],") translate(").concat(ce," ").concat(ue,")"))}var de=n.ownerDocument.createElementNS(p.hR,"g");de.appendChild(se),de.setAttribute("transform","translate(".concat(o||0," ").concat(u||0,") rotate(").concat(M," ").concat(y," ").concat(x,")")),D.appendChild(de)}break;default:if(!(0,a.iB)(e))throw new Error("Unimplemented type ".concat(e.type));var pe=e.opacity/100,fe=n.ownerDocument.createElementNS(p.hR,"g");1!==pe&&(fe.setAttribute("stroke-opacity","".concat(pe)),fe.setAttribute("fill-opacity","".concat(pe))),fe.setAttribute("transform","translate(".concat(o||0," ").concat(u||0,") rotate(").concat(M," ").concat(y," ").concat(x,")"));for(var he=e.text.replace(/\r\n?/g,"\n").split("\n"),me=e.height/he.length,ge=e.height-e.baseline,ve="center"===e.textAlign?e.width/2:"right"===e.textAlign?e.width:0,be=(0,s.dZ)(e.text)?"rtl":"ltr",ye="center"===e.textAlign?"middle":"right"===e.textAlign||"rtl"===be?"end":"start",xe=0;xe<he.length;xe++){var we=n.ownerDocument.createElementNS(p.hR,"text");we.textContent=he[xe],we.setAttribute("x","".concat(ve)),we.setAttribute("y","".concat((xe+1)*me-ge)),we.setAttribute("font-family",(0,s.$g)(e)),we.setAttribute("font-size","".concat(e.fontSize,"px")),we.setAttribute("fill",e.strokeColor),we.setAttribute("text-anchor",ye),we.setAttribute("style","white-space: pre;"),we.setAttribute("direction",be),fe.appendChild(we)}D.appendChild(fe)}},oe=new WeakMap([]);function ie(e){var t=ae(e),n=new Path2D(t);return oe.set(e,n),n}function ae(e){return function(e){if(!e.length)return"";var t=e.length-1;return e.reduce((function(e,n,r,o){return r===t?e.push(n,le(n,o[0]),"L",o[0],"Z"):e.push(n,le(n,o[r+1])),e}),["M",e[0],"Q"]).join(" ").replace(se,"$1")}(M(e.simulatePressure?e.points:e.points.length?e.points.map((function(t,n){var r=(0,i.Z)(t,2);return[r[0],r[1],e.pressures[n]]})):[[0,0,.5]],{simulatePressure:e.simulatePressure,size:4.25*e.strokeWidth,thinning:.6,smoothing:.5,streamline:.5,easing:function(e){return Math.sin(e*Math.PI/2)},last:!!e.lastCommittedPoint}))}function le(e,t){return[(e[0]+t[0])/2,(e[1]+t[1])/2]}var se=/(\s?[A-Z]?,?-?[0-9]*\.[0-9]{0,2})(([0-9]|e|-)*)/g},3547:function(e,t,n){"use strict";n.d(t,{Lu:function(){return _},Eu:function(){return D},M_:function(){return W}});var r,o=n(2577),i=n(1930),a=n(5284),l=n(1002),s=n(756),c=n(1868),u=n(3063),d=n(8982),p=n(6938),f=n(242),h=n(2325),m=n(8290),g=n(267),v=n(6340);!function(e){e.ACTIVE="active",e.AWAY="away",e.IDLE="idle"}(r||(r={}));var b=n(2335),y=n(4929),x=n(1974);function w(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return k(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return k(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function k(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var E,S=(0,v.Q5)(),_=2,j=function(e,t,n,r,o,i,a,l){var s=arguments.length>8&&void 0!==arguments[8]&&arguments[8];e.save(),e.translate(i,a),e.rotate(l),s&&e.fillRect(t-i,n-a,r,o),e.strokeRect(t-i,n-a,r,o),e.restore()},C=function(e,t,n,r){var o=!(arguments.length>4&&void 0!==arguments[4])||arguments[4];e.beginPath(),e.arc(t,n,r,0,2*Math.PI),e.fill(),o&&e.stroke()},O=function(e,t,n,r,o,i){var a=arguments.length>6&&void 0!==arguments[6]&&arguments[6];e.strokeStyle="#5e5ad8",e.setLineDash([]),e.fillStyle="rgba(255, 255, 255, 0.9)",i?e.fillStyle="rgba(134, 131, 226, 0.9)":a&&(e.fillStyle="rgba(177, 151, 252, 0.7)"),C(e,r[0],r[1],o/n.zoom.value,!a)},M=function(e,t,n,r){if(t.selectedLinearElement){e.save(),e.translate(n.scrollX,n.scrollY),e.lineWidth=1/n.zoom.value;var o=p._.getPointsGlobalCoordinates(r),i=p._.POINT_HANDLE_SIZE,a=t.editingLinearElement?i:i/2;o.forEach((function(r,o){var i,l,s=!(null===(i=t.editingLinearElement)||void 0===i||null===(l=i.selectedPointsIndices)||void 0===l||!l.includes(o));O(e,t,n,r,a,s)})),p._.getEditorMidPoints(r,t).filter((function(e){return null!==e})).forEach((function(r){var l;null!=t&&null!==(l=t.selectedLinearElement)&&void 0!==l&&l.segmentMidPointHoveredCoords&&p._.arePointsEqual(r,t.selectedLinearElement.segmentMidPointHoveredCoords)?t.editingLinearElement?(O(e,t,n,r,a,!1),I(r,e,n)):(I(r,e,n),O(e,t,n,r,a,!1)):(t.editingLinearElement||2===o.length)&&O(e,t,n,r,i/2,!1,!0)})),e.restore()}},I=function(e,t,n){t.fillStyle="rgba(105, 101, 219, 0.4)",C(t,e[0],e[1],p._.POINT_HANDLE_SIZE/n.zoom.value,!1)},P=function(e){var t,n=e.elements,h=e.appState,v=e.scale,y=e.rc,k=e.canvas,E=e.renderConfig;if(null===k)return{atLeastOneVisibleElement:!1};var C=E.renderScrollbars,O=void 0===C||C,P=E.renderSelection,T=void 0===P||P,D=E.renderGrid,z=void 0===D||D,R=E.isExporting,W=E.selectionColor||a.black,H=k.getContext("2d");H.setTransform(1,0,0,1,0,0),H.save(),H.scale(v,v);var F=k.width/v,U=k.height/v;(R&&"dark"===E.theme&&(H.filter=b.ZF),"string"==typeof E.viewBackgroundColor)?(("transparent"===E.viewBackgroundColor||5===E.viewBackgroundColor.length||9===E.viewBackgroundColor.length||/(hsla|rgba)\(/.test(E.viewBackgroundColor))&&H.clearRect(0,0,F,U),H.save(),H.fillStyle=E.viewBackgroundColor,H.fillRect(0,0,F,U),H.restore()):H.clearRect(0,0,F,U);H.save(),H.scale(E.zoom.value,E.zoom.value),z&&h.gridSize&&function(e,t,n,r,o,i){e.save(),e.strokeStyle="rgba(0,0,0,0.1)",e.beginPath();for(var a=n;a<n+o+2*t;a+=t)e.moveTo(a,r-t),e.lineTo(a,r+i+2*t);for(var l=r;l<r+i+2*t;l+=t)e.moveTo(n-t,l),e.lineTo(n+o+2*t,l);e.stroke(),e.restore()}(H,h.gridSize,-Math.ceil(E.zoom.value/h.gridSize)*h.gridSize+E.scrollX%h.gridSize,-Math.ceil(E.zoom.value/h.gridSize)*h.gridSize+E.scrollY%h.gridSize,F/E.zoom.value,U/E.zoom.value);var K=n.filter((function(e){return B(e,F,U,{zoom:E.zoom,offsetLeft:h.offsetLeft,offsetTop:h.offsetTop,scrollX:E.scrollX,scrollY:E.scrollY})})),Y=void 0;if(K.forEach((function(e){try{var t;(0,u.lw)(e,y,H,E,h),(null===(t=h.editingLinearElement)||void 0===t?void 0:t.elementId)===e.id&&e&&(Y=e),R||N(e,H,h)}catch(e){console.error(e)}})),Y&&M(H,h,E,Y),h.selectionElement)try{(0,u.lw)(h.selectionElement,y,H,E,h)}catch(e){console.error(e)}(0,m.N1)(h)&&h.suggestedBindings.filter((function(e){return null!=e})).forEach((function(e){Z(H,E,e)}));var G,V=(0,c.eD)(n,h);if(1===V.length&&(null===(t=h.editingLinearElement)||void 0===t?void 0:t.elementId)===V[0].id&&M(H,h,E,V[0]),h.selectedLinearElement&&h.selectedLinearElement.hoverPointIndex>=0&&function(e,t,n){var r,o,i=t.selectedLinearElement,a=i.elementId,l=i.hoverPointIndex;if(null===(r=t.editingLinearElement)||void 0===r||null===(o=r.selectedPointsIndices)||void 0===o||!o.includes(l)){var s=p._.getElement(a);if(s){var c=p._.getPointAtIndexGlobalCoordinates(s,l);e.save(),e.translate(n.scrollX,n.scrollY),I(c,e,n),e.restore()}}}(H,h,E),T&&!h.multiElement&&!h.editingLinearElement){var X,q=(0,g.oY)(V,h),J=V.map((function(e){return e.id}));if(1===V.length&&(0,x.bt)(V[0])&&(null===(X=h.selectedLinearElement)||void 0===X?void 0:X.elementId)===V[0].id&&!V[0].locked&&M(H,h,E,V[0]),q){var $,Q=n.reduce((function(e,t){var n=[];if(J.includes(t.id)&&!(0,f.zq)(h,t)&&n.push(W),E.remoteSelectedElementIds[t.id]&&n.push.apply(n,(0,i.Z)(E.remoteSelectedElementIds[t.id].map((function(e){var t,n=null===(t=h.collaborators.get(e))||void 0===t?void 0:t.avatarUrl;return(0,d.X)(n||e,h).background})))),n.length){var r=(0,l.qf)(t,!0),a=(0,o.Z)(r,6),s=a[0],c=a[1],u=a[2],p=a[3],m=a[4],g=a[5];e.push({angle:t.angle,elementX1:s,elementY1:c,elementX2:u,elementY2:p,selectionColors:n,dashed:!!E.remoteSelectedElementIds[t.id],cx:m,cy:g})}return e}),[]),ee=function(e){var t=(0,f.Fb)(n,e),r=(0,l.KP)(t),i=(0,o.Z)(r,4),s=i[0],c=i[1],u=i[2],d=i[3];Q.push({angle:0,elementX1:s,elementX2:u,elementY1:c,elementY2:d,selectionColors:[a.black],dashed:!0,cx:s+(u-s)/2,cy:c+(d-c)/2})},te=w((0,f.iJ)(h));try{for(te.s();!($=te.n()).done;){ee($.value)}}catch(e){te.e(e)}finally{te.f()}h.editingGroupId&&ee(h.editingGroupId),Q.forEach((function(e){return A(H,E,e)}))}if(H.save(),H.translate(E.scrollX,E.scrollY),1===V.length){H.fillStyle=a.white;var ne=(0,l.PC)(V[0],E.zoom,"mouse");!h.viewModeEnabled&&q&&L(H,E,ne,V[0].angle)}else if(V.length>1&&!h.isRotating){var re=2*_/E.zoom.value;H.fillStyle=a.white;var oe=(0,l.KP)(V),ie=(0,o.Z)(oe,4),ae=ie[0],le=ie[1],se=ie[2],ce=ie[3],ue=H.getLineDash();H.setLineDash([2/E.zoom.value]);var de=H.lineWidth;H.lineWidth=1/E.zoom.value,H.strokeStyle=W,j(H,ae-re,le-re,se-ae+2*re,ce-le+2*re,(ae+se)/2,(le+ce)/2,0),H.lineWidth=de,H.setLineDash(ue);var pe=(0,l.kK)([ae,le,se,ce,(ae+se)/2,(le+ce)/2],0,E.zoom,"mouse",l.ox);V.some((function(e){return!e.locked}))&&L(H,E,pe,0)}H.restore()}for(var fe in H.restore(),E.remotePointerViewportCoords){var he,me=E.remotePointerViewportCoords[fe],ge=me.x,ve=me.y;ge-=h.offsetLeft,ve-=h.offsetTop;var be=ge<0||ge>F-9||ve<0||ve>U-14;ge=Math.max(ge,0),ge=Math.min(ge,F-9),ve=Math.max(ve,0),ve=Math.min(ve,U-14);var ye=null===(he=h.collaborators.get(fe))||void 0===he?void 0:he.avatarUrl,xe=(0,d.X)(ye||fe,h),we=xe.background,ke=xe.stroke;H.save(),H.strokeStyle=ke,H.fillStyle=we;var Ee=E.remotePointerUserStates[fe];(be||Ee===r.AWAY)&&(H.globalAlpha=.48),E.remotePointerButton&&"down"===E.remotePointerButton[fe]&&(H.beginPath(),H.arc(ge,ve,15,0,2*Math.PI,!1),H.lineWidth=3,H.strokeStyle="#ffffff88",H.stroke(),H.closePath(),H.beginPath(),H.arc(ge,ve,15,0,2*Math.PI,!1),H.lineWidth=1,H.strokeStyle=ke,H.stroke(),H.closePath()),H.beginPath(),H.moveTo(ge,ve),H.lineTo(ge+1,ve+14),H.lineTo(ge+4,ve+9),H.lineTo(ge+9,ve+10),H.lineTo(ge,ve),H.fill(),H.stroke();var Se=E.remotePointerUsernames[fe],_e="";Ee===r.AWAY?_e=S?"⚫️":" (".concat(r.AWAY,")"):Ee===r.IDLE&&(_e=S?"💤":" (".concat(r.IDLE,")"));var je="".concat(Se||"").concat(_e?" ".concat(_e):"");if(!be&&je){var Ce=ge+9,Oe=ve+14,Me=H.measureText(je),Ie=Me.actualBoundingBoxDescent+Me.actualBoundingBoxAscent,Pe=Ce-1,Te=Oe-1,De=Me.width+8+2,Le=Ie+8+2;H.roundRect?(H.beginPath(),H.roundRect(Pe,Te,De,Le,4/E.zoom.value),H.fillStyle=we,H.fill(),H.fillStyle=ke,H.stroke()):(H.fillStyle=ke,H.fillRect(Pe,Te,De,Le),H.fillStyle=we,H.fillRect(Ce,Oe,De-2,Le-2)),H.fillStyle=a.white,H.fillText(je,Ce+4,Oe+4+Me.actualBoundingBoxAscent)}H.restore(),H.closePath()}return O&&(G=(0,s.tJ)(n,F,U,E),H.save(),H.fillStyle=s.w1,H.strokeStyle="rgba(255,255,255,0.8)",[G.horizontal,G.vertical].forEach((function(e){e&&function(e,t,n,r,o,i){e.beginPath(),e.moveTo(t+i,n),e.lineTo(t+r-i,n),e.quadraticCurveTo(t+r,n,t+r,n+i),e.lineTo(t+r,n+o-i),e.quadraticCurveTo(t+r,n+o,t+r-i,n+o),e.lineTo(t+i,n+o),e.quadraticCurveTo(t,n+o,t,n+o-i),e.lineTo(t,n+i),e.quadraticCurveTo(t,n,t+i,n),e.closePath(),e.fill(),e.stroke()}(H,e.x,e.y,e.width,e.height,s.nn/2)})),H.restore()),H.restore(),{atLeastOneVisibleElement:K.length>0,scrollBars:G}},T=(0,v.hR)((function(e){var t,n=P(e);null===(t=e.callback)||void 0===t||t.call(e,n)}),{trailing:!0}),D=function(e,t){var n;if(!t){var r=P(e);return null===(n=e.callback)||void 0===n||n.call(e,r),r}T(e)},L=function(e,t,n,r){Object.keys(n).forEach((function(i){var a=n[i];if(void 0!==a){var l=(0,o.Z)(a,4),s=l[0],c=l[1],u=l[2],d=l[3];e.save(),e.lineWidth=1/t.zoom.value,t.selectionColor&&(e.strokeStyle=t.selectionColor),"rotation"===i?C(e,s+u/2,c+d/2,u/2):e.roundRect?(e.beginPath(),e.roundRect(s,c,u,d,2/t.zoom.value),e.fill(),e.stroke()):j(e,s,c,u,d,s+u/2,c+d/2,r,!0),e.restore()}}))},A=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:2*_,o=n.angle,i=n.elementX1,a=n.elementY1,l=n.elementX2,s=n.elementY2,c=n.selectionColors,u=n.cx,d=n.cy,p=n.dashed,f=l-i,h=s-a,m=r/t.zoom.value,g=8/t.zoom.value,v=4/t.zoom.value;e.save(),e.translate(t.scrollX,t.scrollY),e.lineWidth=1/t.zoom.value;for(var b=c.length,y=0;y<b;++y)e.strokeStyle=c[y],p&&e.setLineDash([g,v+(g+v)*(b-1)]),e.lineDashOffset=(g+v)*y,j(e,i-m,a-m,f+2*m,h+2*m,u,d,o);e.restore()},Z=function(e,t,n){var r=Array.isArray(n)?R:z;e.save(),e.translate(t.scrollX,t.scrollY),r(e,n),e.restore()},z=function(e,t){var n=(0,l.qf)(t),r=(0,o.Z)(n,4),i=r[0],a=r[1],s=r[2]-i,c=r[3]-a,u=(0,h.fb)(t,s,c);e.strokeStyle="rgba(0,0,0,.05)",e.lineWidth=u-4;var d=2+u/2;switch(t.type){case"rectangle":case"text":case"image":j(e,i-d,a-d,s+2*d,c+2*d,i+s/2,a+c/2,t.angle);break;case"diamond":var p=Math.hypot(s,c);!function(e,t,n,r,o,i){e.save(),e.translate(r,o),e.rotate(i),e.beginPath(),e.moveTo(0,n/2),e.lineTo(t/2,0),e.lineTo(0,-n/2),e.lineTo(-t/2,0),e.closePath(),e.stroke(),e.restore()}(e,s+2*(d*p/c),c+2*(d*p/s),i+s/2,a+c/2,t.angle);break;case"ellipse":!function(e,t,n,r,o,i){e.beginPath(),e.ellipse(r,o,t/2,n/2,i,0,2*Math.PI),e.stroke()}(e,s+2*d,c+2*d,i+s/2,a+c/2,t.angle)}},R=function(e,t){var n=(0,o.Z)(t,3),r=n[0],i=n[1],a=n[2],l=(0,h.fb)(a,a.width,a.height);e.strokeStyle="rgba(0,0,0,0)",e.fillStyle="rgba(0,0,0,.05)",("both"===i?[0,-1]:"start"===i?[0]:[-1]).forEach((function(t){var n=p._.getPointAtIndexGlobalCoordinates(r,t),i=(0,o.Z)(n,2),a=i[0],s=i[1];C(e,a,s,l)}))},N=function(e,t,n){if(e.link&&!n.selectedElementIds[e.id]){var r=(0,l.qf)(e),i=(0,o.Z)(r,4),a=i[0],s=i[1],c=i[2],u=i[3],d=(0,y.sw)([a,s,c,u],e.angle,n),p=(0,o.Z)(d,4),f=p[0],h=p[1],m=p[2],g=p[3],v=f+m/2,b=h+g/2;if(t.save(),t.translate(n.scrollX+v,n.scrollY+b),t.rotate(e.angle),E&&E.zoom===n.zoom.value)t.drawImage(E,f-v,h-b,m,g);else{(E=document.createElement("canvas")).zoom=n.zoom.value,E.width=m*window.devicePixelRatio*n.zoom.value,E.height=g*window.devicePixelRatio*n.zoom.value;var x=E.getContext("2d");x.scale(window.devicePixelRatio*n.zoom.value,window.devicePixelRatio*n.zoom.value),x.fillStyle="#fff",x.fillRect(0,0,m,g),x.drawImage(y.rj,0,0,m,g),x.restore(),t.drawImage(E,f-v,h-b,m,g)}t.restore()}},B=function(e,t,n,r){var i=(0,l.Pi)(e),a=(0,o.Z)(i,4),s=a[0],c=a[1],u=a[2],d=a[3],p=(0,v.dE)({clientX:r.offsetLeft,clientY:r.offsetTop},r),f=(0,v.dE)({clientX:r.offsetLeft+t,clientY:r.offsetTop+n},r);return p.x<=u&&p.y<=d&&f.x>=s&&f.y>=c},W=function(e,t,n,r){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},i=o.offsetX,a=void 0===i?0:i,l=o.offsetY,s=void 0===l?0:l,c=o.exportWithDarkMode,d=void 0!==c&&c;n&&e.forEach((function(e,o){if(!e.isDeleted)try{(0,u.Rg)(e,t,n,r,e.x+a,e.y+s,d)}catch(e){console.error(e)}}))}},1564:function(e,t,n){"use strict";var r=n(1930),o=n(8821),i=n(5169),a=n(1002),l=function(e){return"string"==typeof e},s=function(){function e(){(0,o.Z)(this,e),this.callbacks=new Set,this.nonDeletedElements=[],this.elements=[],this.elementsMap=new Map}return(0,i.Z)(e,[{key:"getElementsIncludingDeleted",value:function(){return this.elements}},{key:"getNonDeletedElements",value:function(){return this.nonDeletedElements}},{key:"getElement",value:function(e){return this.elementsMap.get(e)||null}},{key:"getNonDeletedElement",value:function(e){var t=this.getElement(e);return t&&(0,a.qP)(t)?t:null}},{key:"mapElements",value:function(e){var t=!1,n=this.elements.map((function(n){var r=e(n);return r!==n&&(t=!0),r}));return t&&this.replaceAllElements(n),t}},{key:"replaceAllElements",value:function(t){var n=this;this.elements=t,this.elementsMap.clear(),t.forEach((function(t){n.elementsMap.set(t.id,t),e.mapElementToScene(t,n)})),this.nonDeletedElements=(0,a.Lm)(this.elements),this.informMutation()}},{key:"informMutation",value:function(){for(var e=0,t=Array.from(this.callbacks);e<t.length;e++){(0,t[e])()}}},{key:"addCallback",value:function(e){var t=this;if(this.callbacks.has(e))throw new Error;return this.callbacks.add(e),function(){if(!t.callbacks.has(e))throw new Error;t.callbacks.delete(e)}}},{key:"destroy",value:function(){var t=this;e.sceneMapById.forEach((function(n,r){n===t&&e.sceneMapById.delete(r)})),this.callbacks.clear()}},{key:"insertElementAtIndex",value:function(e,t){if(!Number.isFinite(t)||t<0)throw new Error("insertElementAtIndex can only be called with index >= 0");var n=[].concat((0,r.Z)(this.elements.slice(0,t)),[e],(0,r.Z)(this.elements.slice(t)));this.replaceAllElements(n)}},{key:"getElementIndex",value:function(e){return this.elements.findIndex((function(t){return t.id===e}))}}],[{key:"mapElementToScene",value:function(e,t){l(e)?this.sceneMapById.set(e,t):(this.sceneMapByElement.set(e,t),this.sceneMapById.set(e.id,t))}},{key:"getScene",value:function(e){return l(e)?this.sceneMapById.get(e)||null:this.sceneMapByElement.get(e)||null}}]),e}();s.sceneMapByElement=new WeakMap,s.sceneMapById=new Map,t.Z=s},8120:function(e,t,n){"use strict";n.d(t,{$b:function(){return r},CJ:function(){return d},M9:function(){return a},PD:function(){return o},QG:function(){return u},Un:function(){return c},Zd:function(){return i},bZ:function(){return s},gP:function(){return l}});var r=function(e){return"rectangle"===e||"ellipse"===e||"diamond"===e||"line"===e||"freedraw"===e},o=function(e){return"image"!==e},i=function(e){return"rectangle"===e||"ellipse"===e||"diamond"===e||"freedraw"===e||"arrow"===e||"line"===e},a=function(e){return"rectangle"===e||"ellipse"===e||"diamond"===e||"arrow"===e||"line"===e},l=function(e){return"rectangle"===e||"arrow"===e||"line"===e||"diamond"===e},s=function(e){return"text"===e},c=function(e){return"arrow"===e},u=function(e,t){for(var n=null,r=e.length-1;r>=0;--r){var o=e[r];if(!o.isDeleted&&t(o)){n=o;break}}return n},d=function(e,t){return e.filter((function(e){return!e.isDeleted&&t(e)}))}},4162:function(e,t,n){"use strict";n.d(t,{$D:function(){return v},Cg:function(){return y},NL:function(){return g},oj:function(){return m}});var r=n(2577),o=n(8950),i=n(2975),a=n.n(i),l=n(8234),s=n(8925),c=n(3547),u=n(6340),d=n(2335),p=n(8897),f=n(5523),h=n(5637),m="\x3c!-- svg-source:excalidraw --\x3e",g=function(){var e=(0,o.Z)(a().mark((function e(t,n,o,i){var s,u,f,m,g,v,y,x,w,k,E,S,_,j,C,O,M,I,P=arguments;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return s=i.exportBackground,u=i.exportPadding,f=void 0===u?d.qy:u,m=i.viewBackgroundColor,g=P.length>4&&void 0!==P[4]?P[4]:function(e,t){var r=document.createElement("canvas");return r.width=e*n.exportScale,r.height=t*n.exportScale,{canvas:r,scale:n.exportScale}},v=b(t,f),y=(0,r.Z)(v,4),x=y[0],w=y[1],k=y[2],E=y[3],S=g(k,E),_=S.canvas,j=S.scale,C=void 0===j?1:j,O=(0,p.im)(),e.next=7,(0,h.Xx)({imageCache:new Map,fileIds:(0,h.oA)(t).map((function(e){return e.fileId})),files:o});case 7:return M=e.sent,I=M.imageCache,(0,c.Eu)({elements:t,appState:n,scale:C,rc:l.Z.canvas(_),canvas:_,renderConfig:{viewBackgroundColor:s?m:null,scrollX:-x+f,scrollY:-w+f,zoom:O.zoom,remotePointerViewportCoords:{},remoteSelectedElementIds:{},shouldCacheIgnoreZoom:!1,remotePointerUsernames:{},remotePointerUserStates:{},theme:n.exportWithDarkMode?"dark":"light",imageCache:I,renderScrollbars:!1,renderSelection:!1,renderGrid:!1,isExporting:!0}}),e.abrupt("return",_);case 11:case"end":return e.stop()}}),e)})));return function(t,n,r,o){return e.apply(this,arguments)}}(),v=function(){var e=(0,o.Z)(a().mark((function e(t,o,i){var s,u,p,h,g,v,y,x,w,k,E,S,_,j,C,O,M,I;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(s=o.exportPadding,u=void 0===s?d.qy:s,p=o.viewBackgroundColor,h=o.exportScale,g=void 0===h?1:h,v=o.exportEmbedScene,y="",!v){e.next=14;break}return e.prev=3,e.next=6,Promise.resolve().then(n.bind(n,673));case 6:return e.next=8,e.sent.encodeSvgMetadata({text:(0,f.I_)(t,o,i||{},"local")});case 8:y=e.sent,e.next=14;break;case 11:e.prev=11,e.t0=e.catch(3),console.error(e.t0);case 14:return x=b(t,u),w=(0,r.Z)(x,4),k=w[0],E=w[1],S=w[2],_=w[3],(j=document.createElementNS(d.hR,"svg")).setAttribute("version","1.1"),j.setAttribute("xmlns",d.hR),j.setAttribute("viewBox","0 0 ".concat(S," ").concat(_)),j.setAttribute("width","".concat(S*g)),j.setAttribute("height","".concat(_*g)),o.exportWithDarkMode&&j.setAttribute("filter",d.ZF),C="https://excalidraw.com/",C=window.EXCALIDRAW_ASSET_PATH||"https://unpkg.com/".concat("@dwelle/excalidraw","@").concat("0.4.0-e80989b"),null!==(O=C)&&void 0!==O&&O.startsWith("/")&&(C=C.replace("/","".concat(window.location.origin,"/"))),C="".concat(C,"/dist/excalidraw-assets/"),j.innerHTML="\n ".concat(m,"\n ").concat(y,'\n <defs>\n <style class="style-fonts">\n @font-face {\n font-family: "Virgil";\n src: url("https://excalidraw.com/Virgil.woff2");\n }\n @font-face {\n font-family: "Cascadia";\n src: url("https://excalidraw.com/Cascadia.woff2");\n }\n </style>\n </defs>\n '),o.exportBackground&&p&&((M=j.ownerDocument.createElementNS(d.hR,"rect")).setAttribute("x","0"),M.setAttribute("y","0"),M.setAttribute("width","".concat(S)),M.setAttribute("height","".concat(_)),M.setAttribute("fill",p),j.appendChild(M)),I=l.Z.svg(j),(0,c.M_)(t,I,j,i||{},{offsetX:-k+u,offsetY:-E+u,exportWithDarkMode:o.exportWithDarkMode}),e.abrupt("return",j);case 29:case"end":return e.stop()}}),e,null,[[3,11]])})));return function(t,n,r){return e.apply(this,arguments)}}(),b=function(e,t){var n=(0,s.KP)(e),o=(0,r.Z)(n,4),i=o[0],a=o[1],l=o[2],c=o[3];return[i,a,(0,u.TE)(i,l)+2*t,(0,u.TE)(a,c)+t+t]},y=function(e,t,n){var o=b(e,t).map((function(e){return Math.trunc(e*n)})),i=(0,r.Z)(o,4);return[i[2],i[3]]}},75:function(e,t,n){"use strict";n.d(t,{$b:function(){return a.$b},CJ:function(){return a.CJ},M9:function(){return a.M9},N:function(){return o.N},PR:function(){return o.PR},QG:function(){return a.QG},Un:function(){return a.Un},W:function(){return i.W},Yp:function(){return o.Yp},Zd:function(){return a.Zd},Zs:function(){return o.Zs},_4:function(){return r._4},bZ:function(){return a.bZ},eD:function(){return o.eD},gP:function(){return a.gP},j:function(){return l.j}});var r=n(756),o=n(1868),i=n(2264),a=n(8120),l=n(746)},2264:function(e,t,n){"use strict";n.d(t,{W:function(){return l},s:function(){return a}});var r=n(2577),o=n(1002),i=n(6340),a=function(e){var t=e.scenePoint,n=e.viewportDimensions,r=e.zoom;return{scrollX:n.width/2*(1/r.value)-t.x,scrollY:n.height/2*(1/r.value)-t.y}},l=function(e,t,n){if(!(e=(0,o.n_)(e)).length)return{scrollX:0,scrollY:0};var l=(0,o.KP)(e),s=(0,r.Z)(l,4),c=s[0],u=s[1],d=s[2],p=s[3];if(function(e,t,n){var o=(0,r.Z)(n,4),a=o[0],l=o[1],s=o[2],c=o[3],u=(0,i._i)({sceneX:a,sceneY:l},e),d=u.x,p=u.y,f=(0,i._i)({sceneX:s,sceneY:c},e),h=f.x,m=f.y;return h-d>e.width||m-p>e.height}(t,0,[c,u,d,p])){var f=(0,o.os)(e,(0,i.dE)({clientX:t.scrollX,clientY:t.scrollY},t)),h=(0,r.Z)(f,4);c=h[0],u=h[1],d=h[2],p=h[3]}return a({scenePoint:{x:(c+d)/2,y:(u+p)/2},viewportDimensions:{width:t.width,height:t.height},zoom:t.zoom})}},756:function(e,t,n){"use strict";n.d(t,{WM:function(){return l},_4:function(){return d},nn:function(){return s},tJ:function(){return u},w1:function(){return c}});var r=n(2577),o=n(1002),i=n(6340),a=n(5202),l=4,s=6,c="rgba(0,0,0,0.3)",u=function(e,t,n,c){var u=c.scrollX,d=c.scrollY,p=c.zoom;if(0===e.length)return{horizontal:null,vertical:null};var f=(0,o.KP)(e),h=(0,r.Z)(f,4),m=h[0],g=h[1],v=h[2],b=h[3],y=t/p.value,x=n/p.value,w=t-y,k=n-x,E={top:parseInt((0,i.IH)("sat")),bottom:parseInt((0,i.IH)("sab")),left:parseInt((0,i.IH)("sal")),right:parseInt((0,i.IH)("sar"))},S=(0,a.G3)().rtl,_=w/2-u+E.left,j=k/2-d+E.top,C=_+y-E.right,O=j+x-E.bottom,M=Math.min(m,_),I=Math.min(g,j),P=Math.max(v,C),T=Math.max(b,O);return{horizontal:_===M&&C===P?null:{x:Math.max(E.left,l)+(_-M)/(P-M)*t,y:n-s-Math.max(l,E.bottom),width:(C-_)/(P-M)*t-Math.max(2*l,E.left+E.right),height:s},vertical:j===I&&O===T?null:{x:S?Math.max(E.left,l):t-s-Math.max(E.right,l),y:(j-I)/(T-I)*n+Math.max(E.top,l),width:s,height:(O-j)/(T-I)*n-Math.max(2*l,E.top+E.bottom)}}},d=function(e,t,n){var o=[e.horizontal,e.vertical].map((function(e){return null!=e&&e.x<=t&&t<=e.x+e.width&&e.y<=n&&n<=e.y+e.height})),i=(0,r.Z)(o,2),a=i[0],l=i[1];return{isOverEither:a||l,isOverHorizontal:a,isOverVertical:l}}},1868:function(e,t,n){"use strict";n.d(t,{N:function(){return l},PR:function(){return s},Yp:function(){return a},Zs:function(){return u},eD:function(){return c}});var r=n(2577),o=n(1002),i=n(1974),a=function(e,t){var n=(0,o.qf)(t),a=(0,r.Z)(n,4),l=a[0],s=a[1],c=a[2],u=a[3];return e.filter((function(e){var t=(0,o.Pi)(e),n=(0,r.Z)(t,4),a=n[0],d=n[1],p=n[2],f=n[3];return!1===e.locked&&"selection"!==e.type&&!(0,i.Xh)(e)&&l<=a&&s<=d&&c>=p&&u>=f}))},l=function(e,t){return e.some((function(e){return t.selectedElementIds[e.id]}))},s=function(e,t,n){var r=Array.from(new Set(c(e,t).map((function(e){return n(e)}))));return 1===r.length?r[0]:null},c=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return e.filter((function(e){return t.selectedElementIds[e.id]||n&&(0,i.Xh)(e)&&t.selectedElementIds[null==e?void 0:e.containerId]?e:null}))},u=function(e,t){return t.editingElement?[t.editingElement]:c(e,t,!0)}},746:function(e,t,n){"use strict";n.d(t,{E:function(){return i},j:function(){return o}});var r=n(2335),o=function(e){return Math.max(r.Zj,Math.min(e,30))},i=function(e,t){var n=e.viewportX,r=e.viewportY,o=e.nextZoom,i=n-t.offsetLeft,a=r-t.offsetTop,l=t.zoom.value;return{scrollX:t.scrollX+(i-i/l)+-(i-i/o),scrollY:t.scrollY+(a-a/l)+-(a-a/o),zoom:{value:o}}}},6340:function(e,t,n){"use strict";n.d(t,{$9:function(){return X},$g:function(){return k},AK:function(){return H},C3:function(){return ee},Ds:function(){return S},FG:function(){return F},Fc:function(){return v},G3:function(){return Q},IH:function(){return N},Ip:function(){return J},KJ:function(){return I},OF:function(){return P},Om:function(){return O},Oo:function(){return b},PI:function(){return G},Pr:function(){return A},Q5:function(){return q},Qm:function(){return Y},TE:function(){return C},Uk:function(){return T},_Z:function(){return x},_i:function(){return R},ag:function(){return re},cx:function(){return U},dE:function(){return z},dZ:function(){return W},h2:function(){return ne},hR:function(){return _},mO:function(){return E},qr:function(){return K},qz:function(){return $},rB:function(){return D},s:function(){return w},tH:function(){return V},uY:function(){return Z},v4:function(){return oe},wO:function(){return y},wo:function(){return L},xn:function(){return te},xp:function(){return ae},y8:function(){return ie},yo:function(){return j},z8:function(){return M}});var r=n(6655),o=n(7169),i=n(1930),a=n(2577),l=n(5284),s=n(56),c=n(2335),u=n(5156),d=n(6066);function p(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function f(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?p(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):p(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var h,m,g=null,v=function(){if(g)return g;var e=new Date,t=e.getFullYear(),n="".concat(e.getMonth()+1).padStart(2,"0"),r="".concat(e.getDate()).padStart(2,"0"),o="".concat(e.getHours()).padStart(2,"0"),i="".concat(e.getMinutes()).padStart(2,"0");return"".concat(t,"-").concat(n,"-").concat(r,"-").concat(o).concat(i)},b=function(e){return e.charAt(0).toUpperCase()+e.slice(1)},y=function(e){return e instanceof HTMLElement&&e.className.includes("ToolIcon")},x=function(e){return e instanceof HTMLElement&&"wysiwyg"===e.dataset.type||e instanceof HTMLBRElement||e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement||e instanceof HTMLSelectElement},w=function(e){return e instanceof HTMLElement&&"wysiwyg"===e.dataset.type||e instanceof HTMLBRElement||e instanceof HTMLTextAreaElement||e instanceof HTMLInputElement&&("text"===e.type||"number"===e.type)},k=function(e){for(var t=e.fontFamily,n=0,r=Object.entries(c.ut);n<r.length;n++){var o=(0,a.Z)(r[n],2),i=o[0];if(o[1]===t)return"".concat(i,", ").concat(c._D)}return c._D},E=function(e){var t=e.fontSize,n=e.fontFamily;return"".concat(t,"px ").concat(k({fontFamily:n}))},S=function(e,t){var n=0,r=null,o=function(){for(var o=arguments.length,i=new Array(o),a=0;a<o;a++)i[a]=arguments[a];r=i,clearTimeout(n),n=window.setTimeout((function(){r=null,e.apply(void 0,i)}),t)};return o.flush=function(){if(clearTimeout(n),r){var t=r;r=null,e.apply(void 0,(0,i.Z)(t))}},o.cancel=function(){r=null,clearTimeout(n)},o},_=function(e,t){var n=null,r=null,o=null,a=function t(a){n=window.requestAnimationFrame((function(){n=null,e.apply(void 0,(0,i.Z)(a)),r=null,o&&(r=o,o=null,t(r))}))},l=function(){for(var e=arguments.length,i=new Array(e),l=0;l<e;l++)i[l]=arguments[l];r=i,null===n?a(r):null!=t&&t.trailing&&(o=i)};return l.flush=function(){null!==n&&(cancelAnimationFrame(n),n=null),r&&(e.apply(void 0,(0,i.Z)(o||r)),r=o=null)},l.cancel=function(){r=o=null,null!==n&&(cancelAnimationFrame(n),n=null)},l},j=function(e,t){if(!e.length||t<1)return[];for(var n=0,r=0,o=Array(Math.ceil(e.length/t));n<e.length;)o[r++]=e.slice(n,n+=t);return o},C=function(e,t){return Math.abs(e-t)},O=function(e,t){return"custom"===t.type?f(f({},e.activeTool),{},{type:"custom",customType:t.customType}):f(f({},e.activeTool),{},{lastActiveToolBeforeEraser:void 0===t.lastActiveToolBeforeEraser?e.activeTool.lastActiveToolBeforeEraser:t.lastActiveToolBeforeEraser,type:t.type,customType:null})},M=function(e){e&&(e.style.cursor="")},I=function(e,t){e&&(e.style.cursor=t)},P=function(e,t){h&&h.theme===t||function(){var e=t===c.C6.DARK;(h=document.createElement("canvas")).theme=t,h.height=20,h.width=20;var n=h.getContext("2d");n.lineWidth=1,n.beginPath(),n.arc(h.width/2,h.height/2,5,0,2*Math.PI),n.fillStyle=e?l.black:l.white,n.fill(),n.strokeStyle=e?l.white:l.black,n.stroke(),m=h.toDataURL(c.LO.svg)}(),I(e,"url(".concat(m,") ").concat(10," ").concat(10,", auto"))},T=function(e,t){e&&("selection"===t.activeTool.type?M(e):"eraser"===t.activeTool.type?P(e,t.theme):["image","custom"].includes(t.activeTool.type)||(e.style.cursor=c.oc.CROSSHAIR))},D=function(){var e;return"HTML"===(null===(e=document.fullscreenElement)||void 0===e?void 0:e.nodeName)},L=function(){return document.documentElement.requestFullscreen()},A=function(){return document.exitFullscreen()},Z=function(e){return e=e.replace(/\bAlt\b/i,"Alt").replace(/\bShift\b/i,"Shift").replace(/\b(Enter|Return)\b/i,"Enter"),d.Um?e.replace(/\bCtrlOrCmd\b/gi,"Cmd").replace(/\bAlt\b/i,"Option"):e.replace(/\bCtrlOrCmd\b/gi,"Ctrl")},z=function(e,t){var n=e.clientX,r=e.clientY,o=t.zoom,i=t.offsetLeft,a=t.offsetTop,l=t.scrollX,s=t.scrollY,c=1/o.value;return{x:(n-i)*c-l,y:(r-a)*c-s}},R=function(e,t){var n=e.sceneX,r=e.sceneY,o=t.zoom,i=t.offsetLeft,a=t.offsetTop,l=t.scrollX,s=t.scrollY;return{x:(n+l)*o.value+i,y:(r+s)*o.value+a}},N=function(e){return getComputedStyle(document.documentElement).getPropertyValue("--".concat(e))},B=new RegExp("^[^".concat("A-Za-zÀ-ÖØ-öø-ʸ̀-֐ࠀ-῿Ⰰ-﬜﷾-﹯﻽-￿","]*[").concat("֑-߿יִ-﷽ﹰ-ﻼ","]")),W=function(e){return B.test(e)},H=function(e){var t=(0,a.Z)(e,2);return{x:t[0],y:t[1]}},F=function(e){if("AbortError"!==(null==e?void 0:e.name))throw e;console.warn(e)},U=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;n<0&&(n=e.length+n);for(var r=(n=Math.min(e.length,Math.max(n,0)))-1;++r<e.length;)if(t(e[r],r,e))return r;return-1},K=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e.length-1;n<0&&(n=e.length+n);for(var r=(n=Math.min(e.length-1,Math.max(n,0)))+1;--r>-1;)if(t(e[r],r,e))return r;return-1},Y=function(e){var t=5===e.length&&"0"===e.substr(4,1),n=9===e.length&&"00"===e.substr(7,2);return t||n||e===s.Z.elementBackground[0]},G=function(){var e,t,n=new Promise((function(n,r){e=n,t=r}));return n.resolve=e,n.reject=t,n},V=function(e){return function(t){(0,u.unstable_batchedUpdates)(e,t)}},X=function(e){return _((function(t){(0,u.unstable_batchedUpdates)(e,t)}))},q=function(){var e=document.createElement("canvas").getContext("2d");if(!e)return!1;return e.fillStyle="#f00",e.textBaseline="top",e.font="32px Arial",e.fillText("😀",0,0),0!==e.getImageData(12,12,1,1).data[0]},J=function(e){for(var t=e.parentElement;t;){if(t===document.body)return document;var n=window.getComputedStyle(t).overflowY;if(t.scrollHeight>t.clientHeight&&("auto"===n||"scroll"===n||"overlay"===n))return t;t=t.parentElement}return document},$=function(e){for(var t=e.parentElement;t;){if(t.tabIndex>-1)return void t.focus();t=t.parentElement}},Q=function(e){return Array.from(e).map((function(e){return"0".concat(e.toString(16)).slice(-2)})).join("")},ee=function(){return ne()?1:Date.now()},te=function(e){return e.reduce((function(e,t){return e.set("string"==typeof t?t:t.id,t),e}),new Map)},ne=function(){var e;return"undefined"!=typeof process&&"test"===(null===(e={REACT_APP_BACKEND_V2_GET_URL:"https://json.excalidraw.com/api/v2/",REACT_APP_BACKEND_V2_POST_URL:"https://json.excalidraw.com/api/v2/post/",REACT_APP_LIBRARY_URL:"https://libraries.excalidraw.com",REACT_APP_LIBRARY_BACKEND:"https://us-central1-excalidraw-room-persistence.cloudfunctions.net/libraries",REACT_APP_PORTAL_URL:"https://portal.excalidraw.com",REACT_APP_WS_SERVER_URL:"",REACT_APP_FIREBASE_CONFIG:'{"apiKey":"AIzaSyAd15pYlMci_xIp9ko6wkEsDzAAA0Dn0RU","authDomain":"excalidraw-room-persistence.firebaseapp.com","databaseURL":"https://excalidraw-room-persistence.firebaseio.com","projectId":"excalidraw-room-persistence","storageBucket":"excalidraw-room-persistence.appspot.com","messagingSenderId":"654800341332","appId":"1:654800341332:web:4a692de832b55bd57ce0c1"}',REACT_APP_GOOGLE_ANALYTICS_ID:"UA-387204-13",REACT_APP_PLUS_APP:"https://app.excalidraw.com",PKG_NAME:"@dwelle/excalidraw",PKG_VERSION:"0.4.0-e80989b",IS_EXCALIDRAW_NPM_PACKAGE:!0})||void 0===e?void 0:e.NODE_ENV)},re=function(e,t){return new CustomEvent(e,{detail:{nativeEvent:t},cancelable:!0})},oe=function(e,t){var n=!1;for(var o in t){var i=t[o];if(void 0!==i){if(e[o]===i&&("object"!==(0,r.Z)(i)||null===i))continue;n=!0}}return n?f(f({},e),t):e},ie=function(e){return!!e&&"object"===(0,r.Z)(e)&&"then"in e&&"catch"in e&&"finally"in e},ae=function(e){var t=null==e?void 0:e.querySelectorAll("button, a, input, select, textarea, div[tabindex], label[tabindex]");return t?Array.from(t).filter((function(e){return e.tabIndex>-1&&!e.disabled})):[]}},9669:function(e){"use strict";e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkYGAQYcAP3uCTZhw1gGGYhAGBZIA/nYDCgBDAm9BGDWAAJyRCgLaBCAAgXwixzAS0pgAAAABJRU5ErkJggg=="},7984:function(e){"use strict";e.exports='data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="292.4" height="292.4" viewBox="0 0 292 292"><path d="M287 197L159 69c-4-3-8-5-13-5s-9 2-13 5L5 197c-3 4-5 8-5 13s2 9 5 13c4 4 8 5 13 5h256c5 0 9-1 13-5s5-8 5-13-1-9-5-13z"/></svg>'},1639:function(e){"use strict";e.exports='data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="292.4" height="292.4" viewBox="0 0 292 292"><path fill="%23ced4da" d="M287 197L159 69c-4-3-8-5-13-5s-9 2-13 5L5 197c-3 4-5 8-5 13s2 9 5 13c4 4 8 5 13 5h256c5 0 9-1 13-5s5-8 5-13-1-9-5-13z"/></svg>'},9729:function(e,t,n){"use strict";e.exports=n.p+"excalidraw-assets/Assistant-Bold.woff2"},1273:function(e,t,n){"use strict";e.exports=n.p+"excalidraw-assets/Assistant-Medium.woff2"},8303:function(e,t,n){"use strict";e.exports=n.p+"excalidraw-assets/Assistant-Regular.woff2"},9577:function(e,t,n){"use strict";e.exports=n.p+"excalidraw-assets/Assistant-SemiBold.woff2"},3147:function(e,t,n){"use strict";e.exports=n.p+"excalidraw-assets/Cascadia.woff2"},3940:function(e,t,n){"use strict";e.exports=n.p+"excalidraw-assets/Virgil.woff2"},9787:function(t){"use strict";t.exports=e},5156:function(e){"use strict";e.exports=t},9649:function(e,t,n){var r=n(8114).default;function o(){"use strict";e.exports=o=function(){return t},e.exports.__esModule=!0,e.exports.default=e.exports;var t={},n=Object.prototype,i=n.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},l="function"==typeof Symbol?Symbol:{},s=l.iterator||"@@iterator",c=l.asyncIterator||"@@asyncIterator",u=l.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function p(e,t,n,r){var o=t&&t.prototype instanceof m?t:m,i=Object.create(o.prototype),l=new O(r||[]);return a(i,"_invoke",{value:S(e,n,l)}),i}function f(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=p;var h={};function m(){}function g(){}function v(){}var b={};d(b,s,(function(){return this}));var y=Object.getPrototypeOf,x=y&&y(y(M([])));x&&x!==n&&i.call(x,s)&&(b=x);var w=v.prototype=m.prototype=Object.create(b);function k(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function E(e,t){function n(o,a,l,s){var c=f(e[o],e,a);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==r(d)&&i.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,l,s)}),(function(e){n("throw",e,l,s)})):t.resolve(d).then((function(e){u.value=e,l(u)}),(function(e){return n("throw",e,l,s)}))}s(c.arg)}var o;a(this,"_invoke",{value:function(e,r){function i(){return new t((function(t,o){n(e,r,t,o)}))}return o=o?o.then(i,i):i()}})}function S(e,t,n){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return I()}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var l=_(a,n);if(l){if(l===h)continue;return l}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var s=f(e,t,n);if("normal"===s.type){if(r=n.done?"completed":"suspendedYield",s.arg===h)continue;return{value:s.arg,done:n.done}}"throw"===s.type&&(r="completed",n.method="throw",n.arg=s.arg)}}}function _(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,_(e,t),"throw"===t.method))return h;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return h}var r=f(n,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,h;var o=r.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,h):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,h)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function C(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function O(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function M(e){if(e){var t=e[s];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var n=-1,r=function t(){for(;++n<e.length;)if(i.call(e,n))return t.value=e[n],t.done=!1,t;return t.value=void 0,t.done=!0,t};return r.next=r}}return{next:I}}function I(){return{value:void 0,done:!0}}return g.prototype=v,a(w,"constructor",{value:v,configurable:!0}),a(v,"constructor",{value:g,configurable:!0}),g.displayName=d(v,u,"GeneratorFunction"),t.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===g||"GeneratorFunction"===(t.displayName||t.name))},t.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,v):(e.__proto__=v,d(e,u,"GeneratorFunction")),e.prototype=Object.create(w),e},t.awrap=function(e){return{__await:e}},k(E.prototype),d(E.prototype,c,(function(){return this})),t.AsyncIterator=E,t.async=function(e,n,r,o,i){void 0===i&&(i=Promise);var a=new E(p(e,n,r,o),i);return t.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},k(w),d(w,u,"Generator"),d(w,s,(function(){return this})),d(w,"toString",(function(){return"[object Generator]"})),t.keys=function(e){var t=Object(e),n=[];for(var r in t)n.push(r);return n.reverse(),function e(){for(;n.length;){var r=n.pop();if(r in t)return e.value=r,e.done=!1,e}return e.done=!0,e}},t.values=M,O.prototype={constructor:O,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(C),!e)for(var t in this)"t"===t.charAt(0)&&i.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function n(n,r){return a.type="throw",a.arg=e,t.next=n,r&&(t.method="next",t.arg=void 0),!!r}for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r],a=o.completion;if("root"===o.tryLoc)return n("end");if(o.tryLoc<=this.prev){var l=i.call(o,"catchLoc"),s=i.call(o,"finallyLoc");if(l&&s){if(this.prev<o.catchLoc)return n(o.catchLoc,!0);if(this.prev<o.finallyLoc)return n(o.finallyLoc)}else if(l){if(this.prev<o.catchLoc)return n(o.catchLoc,!0)}else{if(!s)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return n(o.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r.tryLoc<=this.prev&&i.call(r,"finallyLoc")&&this.prev<r.finallyLoc){var o=r;break}}o&&("break"===e||"continue"===e)&&o.tryLoc<=t&&t<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=e,a.arg=t,o?(this.method="next",this.next=o.finallyLoc,h):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),h},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),C(n),h}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;C(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:M(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),h}},t}e.exports=o,e.exports.__esModule=!0,e.exports.default=e.exports},8114:function(e){function t(n){return e.exports=t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e.exports.__esModule=!0,e.exports.default=e.exports,t(n)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},2975:function(e,t,n){var r=n(9649)();e.exports=r;try{regeneratorRuntime=r}catch(e){"object"==typeof globalThis?globalThis.regeneratorRuntime=r:Function("r","regeneratorRuntime = r")(r)}},7017:function(e,t,n){"use strict";function r(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}n.d(t,{Z:function(){return r}})},3173:function(e,t,n){"use strict";function r(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}n.d(t,{Z:function(){return r}})},8950:function(e,t,n){"use strict";function r(e,t,n,r,o,i,a){try{var l=e[i](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,o)}function o(e){return function(){var t=this,n=arguments;return new Promise((function(o,i){var a=e.apply(t,n);function l(e){r(a,o,i,l,s,"next",e)}function s(e){r(a,o,i,l,s,"throw",e)}l(void 0)}))}}n.d(t,{Z:function(){return o}})},8821:function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}n.d(t,{Z:function(){return r}})},5169:function(e,t,n){"use strict";function r(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function o(e,t,n){return t&&r(e.prototype,t),n&&r(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}n.d(t,{Z:function(){return o}})},7169:function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}n.d(t,{Z:function(){return r}})},2312:function(e,t,n){"use strict";function r(e){return r=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},r(e)}n.d(t,{Z:function(){return r}})},2248:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(5901);function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&(0,r.Z)(e,t)}},2726:function(e,t,n){"use strict";function r(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}n.d(t,{Z:function(){return r}})},7245:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var r=n(6655),o=n(3173);function i(e,t){if(t&&("object"===(0,r.Z)(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return(0,o.Z)(e)}},5901:function(e,t,n){"use strict";function r(e,t){return r=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},r(e,t)}n.d(t,{Z:function(){return r}})},2577:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(9139);function o(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],a=!0,l=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){l=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(l)throw o}}return i}}(e,t)||(0,r.Z)(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}},1930:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var r=n(7017);var o=n(9139);function i(e){return function(e){if(Array.isArray(e))return(0,r.Z)(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||(0,o.Z)(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}},6655:function(e,t,n){"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}n.d(t,{Z:function(){return r}})},9139:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(7017);function o(e,t){if(e){if("string"==typeof e)return(0,r.Z)(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?(0,r.Z)(e,t):void 0}}},5605:function(e,t,n){"use strict";n.d(t,{x0:function(){return r}});let r=(e=21)=>crypto.getRandomValues(new Uint8Array(e)).reduce(((e,t)=>e+=(t&=63)<36?t.toString(36):t<62?(t-26).toString(36).toUpperCase():t>62?"-":"_"),"")},5284:function(e){"use strict";e.exports=JSON.parse('{"white":"#ffffff","black":"#000000","gray":["#f8f9fa","#f1f3f5","#e9ecef","#dee2e6","#ced4da","#adb5bd","#868e96","#495057","#343a40","#212529"],"red":["#fff5f5","#ffe3e3","#ffc9c9","#ffa8a8","#ff8787","#ff6b6b","#fa5252","#f03e3e","#e03131","#c92a2a"],"pink":["#fff0f6","#ffdeeb","#fcc2d7","#faa2c1","#f783ac","#f06595","#e64980","#d6336c","#c2255c","#a61e4d"],"grape":["#f8f0fc","#f3d9fa","#eebefa","#e599f7","#da77f2","#cc5de8","#be4bdb","#ae3ec9","#9c36b5","#862e9c"],"violet":["#f3f0ff","#e5dbff","#d0bfff","#b197fc","#9775fa","#845ef7","#7950f2","#7048e8","#6741d9","#5f3dc4"],"indigo":["#edf2ff","#dbe4ff","#bac8ff","#91a7ff","#748ffc","#5c7cfa","#4c6ef5","#4263eb","#3b5bdb","#364fc7"],"blue":["#e7f5ff","#d0ebff","#a5d8ff","#74c0fc","#4dabf7","#339af0","#228be6","#1c7ed6","#1971c2","#1864ab"],"cyan":["#e3fafc","#c5f6fa","#99e9f2","#66d9e8","#3bc9db","#22b8cf","#15aabf","#1098ad","#0c8599","#0b7285"],"teal":["#e6fcf5","#c3fae8","#96f2d7","#63e6be","#38d9a9","#20c997","#12b886","#0ca678","#099268","#087f5b"],"green":["#ebfbee","#d3f9d8","#b2f2bb","#8ce99a","#69db7c","#51cf66","#40c057","#37b24d","#2f9e44","#2b8a3e"],"lime":["#f4fce3","#e9fac8","#d8f5a2","#c0eb75","#a9e34b","#94d82d","#82c91e","#74b816","#66a80f","#5c940d"],"yellow":["#fff9db","#fff3bf","#ffec99","#ffe066","#ffd43b","#fcc419","#fab005","#f59f00","#f08c00","#e67700"],"orange":["#fff4e6","#ffe8cc","#ffd8a8","#ffc078","#ffa94d","#ff922b","#fd7e14","#f76707","#e8590c","#d9480f"]}')},1463:function(e){"use strict";e.exports=JSON.parse('{"labels":{"paste":"Paste","pasteAsPlaintext":"Paste as plaintext","pasteCharts":"Paste charts","selectAll":"Select all","multiSelect":"Add element to selection","moveCanvas":"Move canvas","cut":"Cut","copy":"Copy","copyAsPng":"Copy to clipboard as PNG","copyAsSvg":"Copy to clipboard as SVG","copyText":"Copy to clipboard as text","bringForward":"Bring forward","sendToBack":"Send to back","bringToFront":"Bring to front","sendBackward":"Send backward","delete":"Delete","copyStyles":"Copy styles","pasteStyles":"Paste styles","stroke":"Stroke","background":"Background","fill":"Fill","strokeWidth":"Stroke width","strokeStyle":"Stroke style","strokeStyle_solid":"Solid","strokeStyle_dashed":"Dashed","strokeStyle_dotted":"Dotted","sloppiness":"Sloppiness","opacity":"Opacity","textAlign":"Text align","edges":"Edges","sharp":"Sharp","round":"Round","arrowheads":"Arrowheads","arrowhead_none":"None","arrowhead_arrow":"Arrow","arrowhead_bar":"Bar","arrowhead_dot":"Dot","arrowhead_triangle":"Triangle","fontSize":"Font size","fontFamily":"Font family","onlySelected":"Only selected","withBackground":"Background","exportEmbedScene":"Embed scene","exportEmbedScene_details":"Scene data will be saved into the exported PNG/SVG file so that the scene can be restored from it.\\nWill increase exported file size.","addWatermark":"Add \\"Made with Excalidraw\\"","handDrawn":"Hand-drawn","normal":"Normal","code":"Code","small":"Small","medium":"Medium","large":"Large","veryLarge":"Very large","solid":"Solid","hachure":"Hachure","crossHatch":"Cross-hatch","thin":"Thin","bold":"Bold","left":"Left","center":"Center","right":"Right","extraBold":"Extra bold","architect":"Architect","artist":"Artist","cartoonist":"Cartoonist","fileTitle":"File name","colorPicker":"Color picker","canvasColors":"Used on canvas","canvasBackground":"Canvas background","drawingCanvas":"Drawing canvas","layers":"Layers","actions":"Actions","language":"Language","liveCollaboration":"Live collaboration...","duplicateSelection":"Duplicate","untitled":"Untitled","name":"Name","yourName":"Your name","madeWithExcalidraw":"Made with Excalidraw","group":"Group selection","ungroup":"Ungroup selection","collaborators":"Collaborators","showGrid":"Show grid","addToLibrary":"Add to library","removeFromLibrary":"Remove from library","libraryLoadingMessage":"Loading library…","libraries":"Browse libraries","loadingScene":"Loading scene…","align":"Align","alignTop":"Align top","alignBottom":"Align bottom","alignLeft":"Align left","alignRight":"Align right","centerVertically":"Center vertically","centerHorizontally":"Center horizontally","distributeHorizontally":"Distribute horizontally","distributeVertically":"Distribute vertically","flipHorizontal":"Flip horizontal","flipVertical":"Flip vertical","viewMode":"View mode","toggleExportColorScheme":"Toggle export color scheme","share":"Share","showStroke":"Show stroke color picker","showBackground":"Show background color picker","toggleTheme":"Toggle theme","personalLib":"Personal Library","excalidrawLib":"Excalidraw Library","decreaseFontSize":"Decrease font size","increaseFontSize":"Increase font size","unbindText":"Unbind text","bindText":"Bind text to the container","link":{"edit":"Edit link","create":"Create link","label":"Link"},"lineEditor":{"edit":"Edit line","exit":"Exit line editor"},"elementLock":{"lock":"Lock","unlock":"Unlock","lockAll":"Lock all","unlockAll":"Unlock all"},"statusPublished":"Published","sidebarLock":"Keep sidebar open"},"library":{"noItems":"No items added yet...","hint_emptyLibrary":"Select an item on canvas to add it here, or install a library from the public repository, below.","hint_emptyPrivateLibrary":"Select an item on canvas to add it here."},"buttons":{"clearReset":"Reset the canvas","exportJSON":"Export to file","exportImage":"Export image...","export":"Save to file...","exportToPng":"Export to PNG","exportToSvg":"Export to SVG","copyToClipboard":"Copy to clipboard","copyPngToClipboard":"Copy PNG to clipboard","scale":"Scale","save":"Save to current file","saveAs":"Save as","load":"Open","getShareableLink":"Get shareable link","close":"Close","selectLanguage":"Select language","scrollBackToContent":"Scroll back to content","zoomIn":"Zoom in","zoomOut":"Zoom out","resetZoom":"Reset zoom","menu":"Menu","done":"Done","edit":"Edit","undo":"Undo","redo":"Redo","resetLibrary":"Reset library","createNewRoom":"Create new room","fullScreen":"Full screen","darkMode":"Dark mode","lightMode":"Light mode","zenMode":"Zen mode","exitZenMode":"Exit zen mode","cancel":"Cancel","clear":"Clear","remove":"Remove","publishLibrary":"Publish","submit":"Submit","confirm":"Confirm"},"alerts":{"clearReset":"This will clear the whole canvas. Are you sure?","couldNotCreateShareableLink":"Couldn\'t create shareable link.","couldNotCreateShareableLinkTooBig":"Couldn\'t create shareable link: the scene is too big","couldNotLoadInvalidFile":"Couldn\'t load invalid file","importBackendFailed":"Importing from backend failed.","cannotExportEmptyCanvas":"Cannot export empty canvas.","couldNotCopyToClipboard":"Couldn\'t copy to clipboard.","decryptFailed":"Couldn\'t decrypt data.","uploadedSecurly":"The upload has been secured with end-to-end encryption, which means that Excalidraw server and third parties can\'t read the content.","loadSceneOverridePrompt":"Loading external drawing will replace your existing content. Do you wish to continue?","collabStopOverridePrompt":"Stopping the session will overwrite your previous, locally stored drawing. Are you sure?\\n\\n(If you want to keep your local drawing, simply close the browser tab instead.)","errorAddingToLibrary":"Couldn\'t add item to the library","errorRemovingFromLibrary":"Couldn\'t remove item from the library","confirmAddLibrary":"This will add {{numShapes}} shape(s) to your library. Are you sure?","imageDoesNotContainScene":"This image does not seem to contain any scene data. Have you enabled scene embedding during export?","cannotRestoreFromImage":"Scene couldn\'t be restored from this image file","invalidSceneUrl":"Couldn\'t import scene from the supplied URL. It\'s either malformed, or doesn\'t contain valid Excalidraw JSON data.","resetLibrary":"This will clear your library. Are you sure?","removeItemsFromsLibrary":"Delete {{count}} item(s) from library?","invalidEncryptionKey":"Encryption key must be of 22 characters. Live collaboration is disabled."},"errors":{"unsupportedFileType":"Unsupported file type.","imageInsertError":"Couldn\'t insert image. Try again later...","fileTooBig":"File is too big. Maximum allowed size is {{maxSize}}.","svgImageInsertError":"Couldn\'t insert SVG image. The SVG markup looks invalid.","invalidSVGString":"Invalid SVG.","cannotResolveCollabServer":"Couldn\'t connect to the collab server. Please reload the page and try again.","importLibraryError":"Couldn\'t load library"},"toolBar":{"selection":"Selection","image":"Insert image","rectangle":"Rectangle","diamond":"Diamond","ellipse":"Ellipse","arrow":"Arrow","line":"Line","freedraw":"Draw","text":"Text","library":"Library","lock":"Keep selected tool active after drawing","penMode":"Pen mode - prevent touch","link":"Add/ Update link for a selected shape","eraser":"Eraser"},"headings":{"canvasActions":"Canvas actions","selectedShapeActions":"Selected shape actions","shapes":"Shapes"},"hints":{"canvasPanning":"To move canvas, hold mouse wheel or spacebar while dragging","linearElement":"Click to start multiple points, drag for single line","freeDraw":"Click and drag, release when you\'re finished","text":"Tip: you can also add text by double-clicking anywhere with the selection tool","text_selected":"Double-click or press ENTER to edit text","text_editing":"Press Escape or CtrlOrCmd+ENTER to finish editing","linearElementMulti":"Click on last point or press Escape or Enter to finish","lockAngle":"You can constrain angle by holding SHIFT","resize":"You can constrain proportions by holding SHIFT while resizing,\\nhold ALT to resize from the center","resizeImage":"You can resize freely by holding SHIFT,\\nhold ALT to resize from the center","rotate":"You can constrain angles by holding SHIFT while rotating","lineEditor_info":"Hold CtrlOrCmd and Double-click or press CtrlOrCmd + Enter to edit points","lineEditor_pointSelected":"Press Delete to remove point(s),\\nCtrlOrCmd+D to duplicate, or drag to move","lineEditor_nothingSelected":"Select a point to edit (hold SHIFT to select multiple),\\nor hold Alt and click to add new points","placeImage":"Click to place the image, or click and drag to set its size manually","publishLibrary":"Publish your own library","bindTextToElement":"Press enter to add text","deepBoxSelect":"Hold CtrlOrCmd to deep select, and to prevent dragging","eraserRevert":"Hold Alt to revert the elements marked for deletion"},"canvasError":{"cannotShowPreview":"Cannot show preview","canvasTooBig":"The canvas may be too big.","canvasTooBigTip":"Tip: try moving the farthest elements a bit closer together."},"errorSplash":{"headingMain_pre":"Encountered an error. Try ","headingMain_button":"reloading the page.","clearCanvasMessage":"If reloading doesn\'t work, try ","clearCanvasMessage_button":"clearing the canvas.","clearCanvasCaveat":" This will result in loss of work ","trackedToSentry_pre":"The error with identifier ","trackedToSentry_post":" was tracked on our system.","openIssueMessage_pre":"We were very cautious not to include your scene information on the error. If your scene is not private, please consider following up on our ","openIssueMessage_button":"bug tracker.","openIssueMessage_post":" Please include information below by copying and pasting into the GitHub issue.","sceneContent":"Scene content:"},"roomDialog":{"desc_intro":"You can invite people to your current scene to collaborate with you.","desc_privacy":"Don\'t worry, the session uses end-to-end encryption, so whatever you draw will stay private. Not even our server will be able to see what you come up with.","button_startSession":"Start session","button_stopSession":"Stop session","desc_inProgressIntro":"Live-collaboration session is now in progress.","desc_shareLink":"Share this link with anyone you want to collaborate with:","desc_exitSession":"Stopping the session will disconnect you from the room, but you\'ll be able to continue working with the scene, locally. Note that this won\'t affect other people, and they\'ll still be able to collaborate on their version.","shareTitle":"Join a live collaboration session on Excalidraw"},"errorDialog":{"title":"Error"},"exportDialog":{"disk_title":"Save to disk","disk_details":"Export the scene data to a file from which you can import later.","disk_button":"Save to file","link_title":"Shareable link","link_details":"Export as a read-only link.","link_button":"Export to Link","excalidrawplus_description":"Save the scene to your Excalidraw+ workspace.","excalidrawplus_button":"Export","excalidrawplus_exportError":"Couldn\'t export to Excalidraw+ at this moment..."},"helpDialog":{"blog":"Read our blog","click":"click","deepSelect":"Deep select","deepBoxSelect":"Deep select within box, and prevent dragging","curvedArrow":"Curved arrow","curvedLine":"Curved line","documentation":"Documentation","doubleClick":"double-click","drag":"drag","editor":"Editor","editSelectedShape":"Edit selected shape (text/arrow/line)","github":"Found an issue? Submit","howto":"Follow our guides","or":"or","preventBinding":"Prevent arrow binding","tools":"Tools","shortcuts":"Keyboard shortcuts","textFinish":"Finish editing (text editor)","textNewLine":"Add new line (text editor)","title":"Help","view":"View","zoomToFit":"Zoom to fit all elements","zoomToSelection":"Zoom to selection","toggleElementLock":"Lock/unlock selection"},"clearCanvasDialog":{"title":"Clear canvas"},"publishDialog":{"title":"Publish library","itemName":"Item name","authorName":"Author name","githubUsername":"GitHub username","twitterUsername":"Twitter username","libraryName":"Library name","libraryDesc":"Library description","website":"Website","placeholder":{"authorName":"Your name or username","libraryName":"Name of your library","libraryDesc":"Description of your library to help people understand its usage","githubHandle":"GitHub handle (optional), so you can edit the library once submitted for review","twitterHandle":"Twitter username (optional), so we know who to credit when promoting over Twitter","website":"Link to your personal website or elsewhere (optional)"},"errors":{"required":"Required","website":"Enter a valid URL"},"noteDescription":{"pre":"Submit your library to be included in the ","link":"public library repository","post":"for other people to use in their drawings."},"noteGuidelines":{"pre":"The library needs to be manually approved first. Please read the ","link":"guidelines","post":" before submitting. You will need a GitHub account to communicate and make changes if requested, but it is not strictly required."},"noteLicense":{"pre":"By submitting, you agree the library will be published under the ","link":"MIT License, ","post":"which in short means anyone can use them without restrictions."},"noteItems":"Each library item must have its own name so it\'s filterable. The following library items will be included:","atleastOneLibItem":"Please select at least one library item to get started","republishWarning":"Note: some of the selected items are marked as already published/submitted. You should only resubmit items when updating an existing library or submission."},"publishSuccessDialog":{"title":"Library submitted","content":"Thank you {{authorName}}. Your library has been submitted for review. You can track the status","link":"here"},"confirmDialog":{"resetLibrary":"Reset library","removeItemsFromLib":"Remove selected items from library"},"encrypted":{"tooltip":"Your drawings are end-to-end encrypted so Excalidraw\'s servers will never see them.","link":"Blog post on end-to-end encryption in Excalidraw"},"stats":{"angle":"Angle","element":"Element","elements":"Elements","height":"Height","scene":"Scene","selected":"Selected","storage":"Storage","title":"Stats for nerds","total":"Total","version":"Version","versionCopy":"Click to copy","versionNotAvailable":"Version not available","width":"Width"},"toast":{"addedToLibrary":"Added to library","copyStyles":"Copied styles.","copyToClipboard":"Copied to clipboard.","copyToClipboardAsPng":"Copied {{exportSelection}} to clipboard as PNG\\n({{exportColorScheme}})","fileSaved":"File saved.","fileSavedToFilename":"Saved to {filename}","canvas":"canvas","selection":"selection","pasteAsSingleElement":"Use {{shortcut}} to paste as a single element,\\nor paste into an existing text editor"},"colors":{"495057":"Gray 7","ffffff":"White","f8f9fa":"Gray 0","f1f3f5":"Gray 1","fff5f5":"Red 0","fff0f6":"Pink 0","f8f0fc":"Grape 0","f3f0ff":"Violet 0","edf2ff":"Indigo 0","e7f5ff":"Blue 0","e3fafc":"Cyan 0","e6fcf5":"Teal 0","ebfbee":"Green 0","f4fce3":"Lime 0","fff9db":"Yellow 0","fff4e6":"Orange 0","transparent":"Transparent","ced4da":"Gray 4","868e96":"Gray 6","fa5252":"Red 6","e64980":"Pink 6","be4bdb":"Grape 6","7950f2":"Violet 6","4c6ef5":"Indigo 6","228be6":"Blue 6","15aabf":"Cyan 6","12b886":"Teal 6","40c057":"Green 6","82c91e":"Lime 6","fab005":"Yellow 6","fd7e14":"Orange 6","000000":"Black","343a40":"Gray 8","c92a2a":"Red 9","a61e4d":"Pink 9","862e9c":"Grape 9","5f3dc4":"Violet 9","364fc7":"Indigo 9","1864ab":"Blue 9","0b7285":"Cyan 9","087f5b":"Teal 9","2b8a3e":"Green 9","5c940d":"Lime 9","e67700":"Yellow 9","d9480f":"Orange 9"},"welcomeScreen":{"data":"All your data is saved locally in your browser.","switchToPlusApp":"Did you want to go to the Excalidraw+ instead?","menuHints":"Export, preferences, ...","toolbarHints":"Pick a tool & Start drawing!","helpHints":"Shortcuts & help"}}')}},l={};function s(e){var t=l[e];if(void 0!==t)return t.exports;var n=l[e]={id:e,exports:{}};return a[e](n,n.exports,s),n.exports}s.m=a,s.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return s.d(t,{a:t}),t},r=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__},s.t=function(e,t){if(1&t&&(e=this(e)),8&t)return e;if("object"==typeof e&&e){if(4&t&&e.__esModule)return e;if(16&t&&"function"==typeof e.then)return e}var o=Object.create(null);s.r(o);var i={};n=n||[null,r({}),r([]),r(r)];for(var a=2&t&&e;"object"==typeof a&&!~n.indexOf(a);a=r(a))Object.getOwnPropertyNames(a).forEach((function(t){i[t]=function(){return e[t]}}));return i.default=function(){return e},s.d(o,i),o},s.d=function(e,t){for(var n in t)s.o(t,n)&&!s.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},s.f={},s.e=function(e){return Promise.all(Object.keys(s.f).reduce((function(t,n){return s.f[n](e,t),t}),[]))},s.u=function(e){return"excalidraw-assets/vendor-2002fe1b8862917b36c1.js"},s.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),s.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o={},i="ExcalidrawLib:",s.l=function(e,t,n,r){if(o[e])o[e].push(t);else{var a,l;if(void 0!==n)for(var c=document.getElementsByTagName("script"),u=0;u<c.length;u++){var d=c[u];if(d.getAttribute("src")==e||d.getAttribute("data-webpack")==i+n){a=d;break}}a||(l=!0,(a=document.createElement("script")).charset="utf-8",a.timeout=120,s.nc&&a.setAttribute("nonce",s.nc),a.setAttribute("data-webpack",i+n),a.src=e),o[e]=[t];var p=function(t,n){a.onerror=a.onload=null,clearTimeout(f);var r=o[e];if(delete o[e],a.parentNode&&a.parentNode.removeChild(a),r&&r.forEach((function(e){return e(n)})),t)return t(n)},f=setTimeout(p.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=p.bind(null,a.onerror),a.onload=p.bind(null,a.onload),l&&document.head.appendChild(a)}},s.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s.p="",function(){s.b=document.baseURI||self.location.href;var e={388:0};s.f.j=function(t,n){var r=s.o(e,t)?e[t]:void 0;if(0!==r)if(r)n.push(r[2]);else{var o=new Promise((function(n,o){r=e[t]=[n,o]}));n.push(r[2]=o);var i=s.p+s.u(t),a=new Error;s.l(i,(function(n){if(s.o(e,t)&&(0!==(r=e[t])&&(e[t]=void 0),r)){var o=n&&("load"===n.type?"missing":n.type),i=n&&n.target&&n.target.src;a.message="Loading chunk "+t+" failed.\n("+o+": "+i+")",a.name="ChunkLoadError",a.type=o,a.request=i,r[1](a)}}),"chunk-"+t,t)}};var t=function(t,n){var r,o,i=n[0],a=n[1],l=n[2],c=0;if(i.some((function(t){return 0!==e[t]}))){for(r in a)s.o(a,r)&&(s.m[r]=a[r]);if(l)l(s)}for(t&&t(n);c<i.length;c++)o=i[c],s.o(e,o)&&e[o]&&e[o][0](),e[o]=0},n=self.webpackChunkExcalidrawLib=self.webpackChunkExcalidrawLib||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))}(),s.nc=void 0;var c={};return function(){"use strict";s.r(c),s.d(c,{Excalidraw:function(){return te},FONT_FAMILY:function(){return e.ut},MIME_TYPES:function(){return e.LO},Sidebar:function(){return Y.Y},THEME:function(){return e.C6},bumpVersion:function(){return F.ZP},cleanAppStateForExport:function(){return G.s},clearAppStateForLocalStorage:function(){return G.fx},defaultLang:function(){return M.Fp},exportToBlob:function(){return W.Fl},exportToCanvas:function(){return W.NL},exportToClipboard:function(){return W.i1},exportToSvg:function(){return W.$D},getDefaultAppState:function(){return G.im},getFreeDrawSvgPath:function(){return W.N7},getNonDeletedElements:function(){return N.Lm},getSceneVersion:function(){return N.Uo},isInvisiblySmallElement:function(){return N.QD},isLinearElement:function(){return H.bt},jotaiScope:function(){return R.yE},jotaiStore:function(){return R.e_},languages:function(){return M.Mj},libraryItemsAtom:function(){return U.rF},loadFromBlob:function(){return W.cT},loadLibraryFromBlob:function(){return W.lV},loadSceneOrLibraryFromBlob:function(){return W.ZY},mergeLibraryItems:function(){return W.zh},mutateElement:function(){return F.DR},newElementWith:function(){return F.BE},parseLibraryTokensFromUrl:function(){return U.Di},restore:function(){return B.nu},restoreAppState:function(){return B.lY},restoreElements:function(){return B.ET},restoreLibraryItems:function(){return B.wJ},sceneCoordsToViewportCoords:function(){return K._i},serializeAsJSON:function(){return W.I_},serializeLibraryAsJSON:function(){return W.NI},useHandleLibrary:function(){return U.xS},viewportCoordsToSceneCoords:function(){return K.dE}});var e=s(2335);"production"!==e.Vi.TEST&&(s.p=window.EXCALIDRAW_ASSET_PATH||"https://unpkg.com/".concat("@dwelle/excalidraw","@").concat("0.4.0-e80989b","/dist/"));var t=function(){Array.prototype.at||Object.defineProperty(Array.prototype,"at",{value:function(e){if((e=Math.trunc(e)||0)<0&&(e+=this.length),!(e<0||e>=this.length))return this[e]},writable:!0,enumerable:!1,configurable:!0})},n=s(487),r=s.n(n),o=s(631),i=s.n(o),a=s(2052),l=s.n(a),u=s(4010),d=s.n(u),p=s(1469),f=s.n(p),h=s(9329),m=s.n(h),g=s(4295),v={};v.styleTagTransform=m(),v.setAttributes=d(),v.insert=l().bind(null,"head"),v.domAPI=i(),v.insertStyleElement=f();r()(g.Z,v),g.Z&&g.Z.locals&&g.Z.locals;var b=s(6479),y=s.n(b),x=s(9713),w=s.n(x),k=s(9787),E=s.n(k),S=s(8950),_=s(2577),j=s(2975),C=s.n(j),O=s(5440),M=s(5202),I=s(4512),P=function(e){var t=(0,k.useState)(!0),n=(0,_.Z)(t,2),r=n[0],o=n[1];return(0,k.useEffect)((function(){var t=function(){var e=(0,S.Z)(C().mark((function e(){return C().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,(0,M.m0)(n);case 2:o(!1);case 3:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),n=M.Mj.find((function(t){return t.code===e.langCode}))||M.Fp;t()}),[e.langCode]),r?(0,I.jsx)(O.z,{theme:e.theme}):e.children},T=s(5076),D=s(9915),L={};L.styleTagTransform=m(),L.setAttributes=d(),L.insert=l().bind(null,"head"),L.domAPI=i(),L.insertStyleElement=f();r()(D.Z,L),D.Z&&D.Z.locals&&D.Z.locals;var A=s(9310),Z={};Z.styleTagTransform=m(),Z.setAttributes=d(),Z.insert=l().bind(null,"head"),Z.domAPI=i(),Z.insertStyleElement=f();r()(A.Z,Z),A.Z&&A.Z.locals&&A.Z.locals;var z=s(4739),R=s(9487),N=s(1002),B=s(679),W=s(3024),H=s(1974),F=s(1935),U=s(7053),K=s(6340),Y=s(9430),G=s(8897),V=["initialData","UIOptions"],X=["initialData","UIOptions"];function q(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function J(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?q(Object(n),!0).forEach((function(t){w()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):q(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var $=function(t){var n,r,o,i=t.onChange,a=t.initialData,l=t.excalidrawRef,s=t.onCollabButtonClick,c=t.isCollaborating,u=void 0!==c&&c,d=t.onPointerUpdate,p=t.renderTopRightUI,f=t.renderFooter,h=t.renderSidebar,m=t.langCode,g=void 0===m?M.Fp.code:m,v=t.viewModeEnabled,b=t.zenModeEnabled,y=t.gridModeEnabled,x=t.libraryReturnUrl,w=t.theme,E=t.name,S=t.renderCustomStats,_=t.onPaste,j=t.detectScroll,C=void 0===j||j,O=t.handleKeyboardGlobally,D=void 0!==O&&O,L=t.onLibraryChange,A=t.autoFocus,Z=void 0!==A&&A,N=t.generateIdForFile,B=t.onLinkOpen,W=t.onPointerDown,H=t.onScrollChange,F=t.id,U=t.onHomeButtonClick,K=t.onThemeToggle,Y=null===(n=t.UIOptions)||void 0===n?void 0:n.canvasActions,G=J(J({},t.UIOptions),{},{canvasActions:J(J({},e.cW.canvasActions),Y)});null!=Y&&Y.export&&(G.canvasActions.export.saveFileToDisk=null!==(r=null===(o=Y.export)||void 0===o?void 0:o.saveFileToDisk)&&void 0!==r?r:e.cW.canvasActions.export.saveFileToDisk);return null===G.canvasActions.toggleTheme&&void 0===w&&(G.canvasActions.toggleTheme=!0),(0,k.useEffect)((function(){var e=function(e){"number"==typeof e.scale&&1!==e.scale&&e.preventDefault()};return document.addEventListener("touchmove",e,{passive:!1}),function(){document.removeEventListener("touchmove",e)}}),[]),(0,I.jsx)(P,{langCode:g,theme:w,children:(0,I.jsx)(z.zt,{unstable_createStore:function(){return R.e_},scope:R.yE,children:(0,I.jsx)(T.ZP,{id:F,onChange:i,initialData:a,excalidrawRef:l,onCollabButtonClick:s,isCollaborating:u,onPointerUpdate:d,renderTopRightUI:p,renderFooter:f,langCode:g,viewModeEnabled:v,zenModeEnabled:b,gridModeEnabled:y,libraryReturnUrl:x,theme:w,name:E,renderCustomStats:S,UIOptions:G,onPaste:_,detectScroll:C,handleKeyboardGlobally:D,onLibraryChange:L,autoFocus:Z,generateIdForFile:N,onLinkOpen:B,onPointerDown:W,onScrollChange:H,renderSidebar:h,onHomeButtonClick:U,onThemeToggle:K})})})},Q=function(e,t){e.initialData;var n=e.UIOptions,r=void 0===n?{}:n,o=y()(e,V),i=(t.initialData,t.UIOptions),a=void 0===i?{}:i,l=y()(t,X),s=Object.keys(r),c=Object.keys(a);if(s.length!==c.length)return!1;var u=s.every((function(e){"canvasActions"===e&&Object.keys(r.canvasActions).every((function(e){var t,n,o,i;return"export"===e&&null!=r&&null!==(t=r.canvasActions)&&void 0!==t&&t.export&&null!=a&&null!==(n=a.canvasActions)&&void 0!==n&&n.export?r.canvasActions.export.saveFileToDisk===a.canvasActions.export.saveFileToDisk:(null==r||null===(o=r.canvasActions)||void 0===o?void 0:o[e])===(null==a||null===(i=a.canvasActions)||void 0===i?void 0:i[e])}));return!0})),d=Object.keys(e),p=Object.keys(t);return u&&d.length===p.length&&d.every((function(e){return o[e]===l[e]}))},ee=(0,k.forwardRef)((function(e,t){return(0,I.jsx)($,J(J({},e),{},{excalidrawRef:t}))})),te=E().memo(ee,Q);te.displayName="Excalidraw",t()}(),c}()}));
2
+ !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("react"),require("react-dom")):"function"==typeof define&&define.amd?define(["react","react-dom"],t):"object"==typeof exports?exports.ExcalidrawLib=t(require("react"),require("react-dom")):e.ExcalidrawLib=t(e.React,e.ReactDOM)}(self,(function(e,t){return function(){var n,r,o,i,a={7217:function(e,t,n){"use strict";function r(e,t,{checkForDefaultPrevented:n=!0}={}){return function(r){if(null==e||e(r),!1===n||!r.defaultPrevented)return null==t?void 0:t(r)}}n.d(t,{M:function(){return r}})},9335:function(e,t,n){"use strict";n.d(t,{F:function(){return o},e:function(){return i}});var r=n(9787);function o(...e){return t=>e.forEach((e=>function(e,t){"function"==typeof e?e(t):null!=e&&(e.current=t)}(e,t)))}function i(...e){return(0,r.useCallback)(o(...e),e)}},1267:function(e,t,n){"use strict";n.d(t,{b:function(){return o}});var r=n(9787);function o(e,t=[]){let n=[];const o=()=>{const t=n.map((e=>(0,r.createContext)(e)));return function(n){const o=(null==n?void 0:n[e])||t;return(0,r.useMemo)((()=>({[`__scope${e}`]:{...n,[e]:o}})),[n,o])}};return o.scopeName=e,[function(t,o){const i=(0,r.createContext)(o),a=n.length;function l(t){const{scope:n,children:o,...l}=t,c=(null==n?void 0:n[e][a])||i,s=(0,r.useMemo)((()=>l),Object.values(l));return(0,r.createElement)(c.Provider,{value:s},o)}return n=[...n,o],l.displayName=t+"Provider",[l,function(n,l){const c=(null==l?void 0:l[e][a])||i,s=(0,r.useContext)(c);if(s)return s;if(void 0!==o)return o;throw new Error(`\`${n}\` must be used within \`${t}\``)}]},i(o,...t)]}function i(...e){const t=e[0];if(1===e.length)return t;const n=()=>{const n=e.map((e=>({useScope:e(),scopeName:e.scopeName})));return function(e){const o=n.reduce(((t,{useScope:n,scopeName:r})=>({...t,...n(e)[`__scope${r}`]})),{});return(0,r.useMemo)((()=>({[`__scope${t.scopeName}`]:o})),[o])}};return n.scopeName=t.scopeName,n}},5622:function(e,t,n){"use strict";n.d(t,{M:function(){return l}});var r=n(9787),o=n(3348);const i=r["useId".toString()]||(()=>{});let a=0;function l(e){const[t,n]=r.useState(i());return(0,o.b)((()=>{e||n((e=>null!=e?e:String(a++)))}),[e]),e||(t?`radix-${t}`:"")}},1483:function(e,t,n){"use strict";n.d(t,{z:function(){return l}});var r=n(9787),o=n(5156),i=n(9335),a=n(3348);const l=e=>{const{present:t,children:n}=e,l=function(e){const[t,n]=(0,r.useState)(),i=(0,r.useRef)({}),l=(0,r.useRef)(e),s=(0,r.useRef)("none"),u=e?"mounted":"unmounted",[d,f]=function(e,t){return(0,r.useReducer)(((e,n)=>{const r=t[e][n];return null!=r?r:e}),e)}(u,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return(0,r.useEffect)((()=>{const e=c(i.current);s.current="mounted"===d?e:"none"}),[d]),(0,a.b)((()=>{const t=i.current,n=l.current;if(n!==e){const r=s.current,o=c(t);if(e)f("MOUNT");else if("none"===o||"none"===(null==t?void 0:t.display))f("UNMOUNT");else{const e=r!==o;f(n&&e?"ANIMATION_OUT":"UNMOUNT")}l.current=e}}),[e,f]),(0,a.b)((()=>{if(t){const e=e=>{const n=c(i.current).includes(e.animationName);e.target===t&&n&&(0,o.flushSync)((()=>f("ANIMATION_END")))},n=e=>{e.target===t&&(s.current=c(i.current))};return t.addEventListener("animationstart",n),t.addEventListener("animationcancel",e),t.addEventListener("animationend",e),()=>{t.removeEventListener("animationstart",n),t.removeEventListener("animationcancel",e),t.removeEventListener("animationend",e)}}f("ANIMATION_END")}),[t,f]),{isPresent:["mounted","unmountSuspended"].includes(d),ref:(0,r.useCallback)((e=>{e&&(i.current=getComputedStyle(e)),n(e)}),[])}}(t),s="function"==typeof n?n({present:l.isPresent}):r.Children.only(n),u=(0,i.e)(l.ref,s.ref);return"function"==typeof n||l.isPresent?(0,r.cloneElement)(s,{ref:u}):null};function c(e){return(null==e?void 0:e.animationName)||"none"}l.displayName="Presence"},3119:function(e,t,n){"use strict";n.d(t,{WV:function(){return l},jH:function(){return c}});var r=n(11),o=n(9787),i=n(5156),a=n(4801);const l=["a","button","div","h2","h3","img","label","li","nav","ol","p","span","svg","ul"].reduce(((e,t)=>{const n=(0,o.forwardRef)(((e,n)=>{const{asChild:i,...l}=e,c=i?a.g7:t;return(0,o.useEffect)((()=>{window[Symbol.for("radix-ui")]=!0}),[]),(0,o.createElement)(c,(0,r.Z)({},l,{ref:n}))}));return n.displayName=`Primitive.${t}`,{...e,[t]:n}}),{});function c(e,t){e&&(0,i.flushSync)((()=>e.dispatchEvent(t)))}},4801:function(e,t,n){"use strict";n.d(t,{g7:function(){return a}});var r=n(11),o=n(9787),i=n(9335);const a=(0,o.forwardRef)(((e,t)=>{const{children:n,...i}=e,a=o.Children.toArray(n),c=a.find(s);if(c){const e=c.props.children,n=a.map((t=>t===c?o.Children.count(e)>1?o.Children.only(null):(0,o.isValidElement)(e)?e.props.children:null:t));return(0,o.createElement)(l,(0,r.Z)({},i,{ref:t}),(0,o.isValidElement)(e)?(0,o.cloneElement)(e,void 0,n):null)}return(0,o.createElement)(l,(0,r.Z)({},i,{ref:t}),n)}));a.displayName="Slot";const l=(0,o.forwardRef)(((e,t)=>{const{children:n,...r}=e;return(0,o.isValidElement)(n)?(0,o.cloneElement)(n,{...u(r,n.props),ref:(0,i.F)(t,n.ref)}):o.Children.count(n)>1?o.Children.only(null):null}));l.displayName="SlotClone";const c=({children:e})=>(0,o.createElement)(o.Fragment,null,e);function s(e){return(0,o.isValidElement)(e)&&e.type===c}function u(e,t){const n={...t};for(const r in t){const o=e[r],i=t[r];/^on[A-Z]/.test(r)?o&&i?n[r]=(...e)=>{i(...e),o(...e)}:o&&(n[r]=o):"style"===r?n[r]={...o,...i}:"className"===r&&(n[r]=[o,i].filter(Boolean).join(" "))}return{...e,...n}}},3060:function(e,t,n){"use strict";n.d(t,{W:function(){return o}});var r=n(9787);function o(e){const t=(0,r.useRef)(e);return(0,r.useEffect)((()=>{t.current=e})),(0,r.useMemo)((()=>(...e)=>{var n;return null===(n=t.current)||void 0===n?void 0:n.call(t,...e)}),[])}},2673:function(e,t,n){"use strict";n.d(t,{T:function(){return i}});var r=n(9787),o=n(3060);function i({prop:e,defaultProp:t,onChange:n=(()=>{})}){const[i,a]=function({defaultProp:e,onChange:t}){const n=(0,r.useState)(e),[i]=n,a=(0,r.useRef)(i),l=(0,o.W)(t);return(0,r.useEffect)((()=>{a.current!==i&&(l(i),a.current=i)}),[i,a,l]),n}({defaultProp:t,onChange:n}),l=void 0!==e,c=l?e:i,s=(0,o.W)(n);return[c,(0,r.useCallback)((t=>{if(l){const n=t,r="function"==typeof t?n(e):t;r!==e&&s(r)}else a(t)}),[l,e,a,s])]}},3348:function(e,t,n){"use strict";n.d(t,{b:function(){return o}});var r=n(9787);const o=Boolean(null===globalThis||void 0===globalThis?void 0:globalThis.document)?r.useLayoutEffect:()=>{}},45:function(e,t,n){"use strict";function r(e){var t,n,o="";if("string"==typeof e||"number"==typeof e)o+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(n=r(e[t]))&&(o&&(o+=" "),o+=n);else for(t in e)e[t]&&(o&&(o+=" "),o+=t);return o}function o(){for(var e,t,n=0,o="";n<arguments.length;)(e=arguments[n++])&&(t=r(e))&&(o&&(o+=" "),o+=t);return o}n.d(t,{Z:function(){return o}})},6233:function(e,t){var n;n=function(e){e.version="0.3.0";var t=function(){for(var e=0,t=new Array(256),n=0;256!=n;++n)e=1&(e=1&(e=1&(e=1&(e=1&(e=1&(e=1&(e=1&(e=n)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1,t[n]=e;return"undefined"!=typeof Int32Array?new Int32Array(t):t}(),n="undefined"!=typeof Buffer;function r(e){for(var n=-1,r=0,o=e.length-7;r<o;)n=(n=(n=(n=(n=(n=(n=(n=n>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])])>>>8^t[255&(n^e[r++])];for(;r<o+7;)n=n>>>8^t[255&(n^e[r++])];return-1^n}e.table=t,e.bstr=function(e){if(e.length>32768&&n)return r(new Buffer(e));for(var o=-1,i=e.length-1,a=0;a<i;)o=t[255&(o^e.charCodeAt(a++))]^o>>>8,o=t[255&(o^e.charCodeAt(a++))]^o>>>8;return a===i&&(o=o>>>8^t[255&(o^e.charCodeAt(a))]),-1^o},e.buf=function(e){if(e.length>1e4)return r(e);for(var n=-1,o=0,i=e.length-3;o<i;)n=(n=(n=(n=n>>>8^t[255&(n^e[o++])])>>>8^t[255&(n^e[o++])])>>>8^t[255&(n^e[o++])])>>>8^t[255&(n^e[o++])];for(;o<i+3;)n=n>>>8^t[255&(n^e[o++])];return-1^n},e.str=function(e){for(var n,r,o=-1,i=0,a=e.length;i<a;)(n=e.charCodeAt(i++))<128?o=o>>>8^t[255&(o^n)]:n<2048?o=(o=o>>>8^t[255&(o^(192|n>>6&31))])>>>8^t[255&(o^(128|63&n))]:n>=55296&&n<57344?(n=64+(1023&n),r=1023&e.charCodeAt(i++),o=(o=(o=(o=o>>>8^t[255&(o^(240|n>>8&7))])>>>8^t[255&(o^(128|n>>2&63))])>>>8^t[255&(o^(128|r>>6&15|3&n))])>>>8^t[255&(o^(128|63&r))]):o=(o=(o=o>>>8^t[255&(o^(224|n>>12&15))])>>>8^t[255&(o^(128|n>>6&63))])>>>8^t[255&(o^(128|63&n))];return-1^o}},"undefined"==typeof DO_NOT_EXPORT_CRC?n(t):n({})},200:function(e,t,n){var r="Expected a function",o=/^\s+|\s+$/g,i=/^[-+]0x[0-9a-f]+$/i,a=/^0b[01]+$/i,l=/^0o[0-7]+$/i,c=parseInt,s="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,u="object"==typeof self&&self&&self.Object===Object&&self,d=s||u||Function("return this")(),f=Object.prototype.toString,p=Math.max,h=Math.min,m=function(){return d.Date.now()};function g(e,t,n){var o,i,a,l,c,s,u=0,d=!1,f=!1,g=!0;if("function"!=typeof e)throw new TypeError(r);function y(t){var n=o,r=i;return o=i=void 0,u=t,l=e.apply(r,n)}function x(e){return u=e,c=setTimeout(k,t),d?y(e):l}function w(e){var n=e-s;return void 0===s||n>=t||n<0||f&&e-u>=a}function k(){var e=m();if(w(e))return E(e);c=setTimeout(k,function(e){var n=t-(e-s);return f?h(n,a-(e-u)):n}(e))}function E(e){return c=void 0,g&&o?y(e):(o=i=void 0,l)}function S(){var e=m(),n=w(e);if(o=arguments,i=this,s=e,n){if(void 0===c)return x(s);if(f)return c=setTimeout(k,t),y(s)}return void 0===c&&(c=setTimeout(k,t)),l}return t=b(t)||0,v(n)&&(d=!!n.leading,a=(f="maxWait"in n)?p(b(n.maxWait)||0,t):a,g="trailing"in n?!!n.trailing:g),S.cancel=function(){void 0!==c&&clearTimeout(c),u=0,o=s=i=c=void 0},S.flush=function(){return void 0===c?l:E(m())},S}function v(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function b(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==f.call(e)}(e))return NaN;if(v(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=v(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(o,"");var n=a.test(e);return n||l.test(e)?c(e.slice(2),n?2:8):i.test(e)?NaN:+e}e.exports=function(e,t,n){var o=!0,i=!0;if("function"!=typeof e)throw new TypeError(r);return v(n)&&(o="leading"in n?!!n.leading:o,i="trailing"in n?!!n.trailing:i),g(e,t,{leading:o,maxWait:t,trailing:i})}},2744:function(e,t,n){"use strict";var r={};(0,n(9187).assign)(r,n(4395),n(578),n(2684)),e.exports=r},4395:function(e,t,n){"use strict";var r=n(7651),o=n(9187),i=n(8592),a=n(5604),l=n(249),c=Object.prototype.toString;function s(e){if(!(this instanceof s))return new s(e);this.options=o.assign({level:-1,method:8,chunkSize:16384,windowBits:15,memLevel:8,strategy:0,to:""},e||{});var t=this.options;t.raw&&t.windowBits>0?t.windowBits=-t.windowBits:t.gzip&&t.windowBits>0&&t.windowBits<16&&(t.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new l,this.strm.avail_out=0;var n=r.deflateInit2(this.strm,t.level,t.method,t.windowBits,t.memLevel,t.strategy);if(0!==n)throw new Error(a[n]);if(t.header&&r.deflateSetHeader(this.strm,t.header),t.dictionary){var u;if(u="string"==typeof t.dictionary?i.string2buf(t.dictionary):"[object ArrayBuffer]"===c.call(t.dictionary)?new Uint8Array(t.dictionary):t.dictionary,0!==(n=r.deflateSetDictionary(this.strm,u)))throw new Error(a[n]);this._dict_set=!0}}function u(e,t){var n=new s(t);if(n.push(e,!0),n.err)throw n.msg||a[n.err];return n.result}s.prototype.push=function(e,t){var n,a,l=this.strm,s=this.options.chunkSize;if(this.ended)return!1;a=t===~~t?t:!0===t?4:0,"string"==typeof e?l.input=i.string2buf(e):"[object ArrayBuffer]"===c.call(e)?l.input=new Uint8Array(e):l.input=e,l.next_in=0,l.avail_in=l.input.length;do{if(0===l.avail_out&&(l.output=new o.Buf8(s),l.next_out=0,l.avail_out=s),1!==(n=r.deflate(l,a))&&0!==n)return this.onEnd(n),this.ended=!0,!1;0!==l.avail_out&&(0!==l.avail_in||4!==a&&2!==a)||("string"===this.options.to?this.onData(i.buf2binstring(o.shrinkBuf(l.output,l.next_out))):this.onData(o.shrinkBuf(l.output,l.next_out)))}while((l.avail_in>0||0===l.avail_out)&&1!==n);return 4===a?(n=r.deflateEnd(this.strm),this.onEnd(n),this.ended=!0,0===n):2!==a||(this.onEnd(0),l.avail_out=0,!0)},s.prototype.onData=function(e){this.chunks.push(e)},s.prototype.onEnd=function(e){0===e&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=o.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg},t.Deflate=s,t.deflate=u,t.deflateRaw=function(e,t){return(t=t||{}).raw=!0,u(e,t)},t.gzip=function(e,t){return(t=t||{}).gzip=!0,u(e,t)}},578:function(e,t,n){"use strict";var r=n(7823),o=n(9187),i=n(8592),a=n(2684),l=n(5604),c=n(249),s=n(9968),u=Object.prototype.toString;function d(e){if(!(this instanceof d))return new d(e);this.options=o.assign({chunkSize:16384,windowBits:0,to:""},e||{});var t=this.options;t.raw&&t.windowBits>=0&&t.windowBits<16&&(t.windowBits=-t.windowBits,0===t.windowBits&&(t.windowBits=-15)),!(t.windowBits>=0&&t.windowBits<16)||e&&e.windowBits||(t.windowBits+=32),t.windowBits>15&&t.windowBits<48&&0==(15&t.windowBits)&&(t.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new c,this.strm.avail_out=0;var n=r.inflateInit2(this.strm,t.windowBits);if(n!==a.Z_OK)throw new Error(l[n]);if(this.header=new s,r.inflateGetHeader(this.strm,this.header),t.dictionary&&("string"==typeof t.dictionary?t.dictionary=i.string2buf(t.dictionary):"[object ArrayBuffer]"===u.call(t.dictionary)&&(t.dictionary=new Uint8Array(t.dictionary)),t.raw&&(n=r.inflateSetDictionary(this.strm,t.dictionary))!==a.Z_OK))throw new Error(l[n])}function f(e,t){var n=new d(t);if(n.push(e,!0),n.err)throw n.msg||l[n.err];return n.result}d.prototype.push=function(e,t){var n,l,c,s,d,f=this.strm,p=this.options.chunkSize,h=this.options.dictionary,m=!1;if(this.ended)return!1;l=t===~~t?t:!0===t?a.Z_FINISH:a.Z_NO_FLUSH,"string"==typeof e?f.input=i.binstring2buf(e):"[object ArrayBuffer]"===u.call(e)?f.input=new Uint8Array(e):f.input=e,f.next_in=0,f.avail_in=f.input.length;do{if(0===f.avail_out&&(f.output=new o.Buf8(p),f.next_out=0,f.avail_out=p),(n=r.inflate(f,a.Z_NO_FLUSH))===a.Z_NEED_DICT&&h&&(n=r.inflateSetDictionary(this.strm,h)),n===a.Z_BUF_ERROR&&!0===m&&(n=a.Z_OK,m=!1),n!==a.Z_STREAM_END&&n!==a.Z_OK)return this.onEnd(n),this.ended=!0,!1;f.next_out&&(0!==f.avail_out&&n!==a.Z_STREAM_END&&(0!==f.avail_in||l!==a.Z_FINISH&&l!==a.Z_SYNC_FLUSH)||("string"===this.options.to?(c=i.utf8border(f.output,f.next_out),s=f.next_out-c,d=i.buf2string(f.output,c),f.next_out=s,f.avail_out=p-s,s&&o.arraySet(f.output,f.output,c,s,0),this.onData(d)):this.onData(o.shrinkBuf(f.output,f.next_out)))),0===f.avail_in&&0===f.avail_out&&(m=!0)}while((f.avail_in>0||0===f.avail_out)&&n!==a.Z_STREAM_END);return n===a.Z_STREAM_END&&(l=a.Z_FINISH),l===a.Z_FINISH?(n=r.inflateEnd(this.strm),this.onEnd(n),this.ended=!0,n===a.Z_OK):l!==a.Z_SYNC_FLUSH||(this.onEnd(a.Z_OK),f.avail_out=0,!0)},d.prototype.onData=function(e){this.chunks.push(e)},d.prototype.onEnd=function(e){e===a.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=o.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg},t.Inflate=d,t.inflate=f,t.inflateRaw=function(e,t){return(t=t||{}).raw=!0,f(e,t)},t.ungzip=f},9187:function(e,t){"use strict";var n="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;function r(e,t){return Object.prototype.hasOwnProperty.call(e,t)}t.assign=function(e){for(var t=Array.prototype.slice.call(arguments,1);t.length;){var n=t.shift();if(n){if("object"!=typeof n)throw new TypeError(n+"must be non-object");for(var o in n)r(n,o)&&(e[o]=n[o])}}return e},t.shrinkBuf=function(e,t){return e.length===t?e:e.subarray?e.subarray(0,t):(e.length=t,e)};var o={arraySet:function(e,t,n,r,o){if(t.subarray&&e.subarray)e.set(t.subarray(n,n+r),o);else for(var i=0;i<r;i++)e[o+i]=t[n+i]},flattenChunks:function(e){var t,n,r,o,i,a;for(r=0,t=0,n=e.length;t<n;t++)r+=e[t].length;for(a=new Uint8Array(r),o=0,t=0,n=e.length;t<n;t++)i=e[t],a.set(i,o),o+=i.length;return a}},i={arraySet:function(e,t,n,r,o){for(var i=0;i<r;i++)e[o+i]=t[n+i]},flattenChunks:function(e){return[].concat.apply([],e)}};t.setTyped=function(e){e?(t.Buf8=Uint8Array,t.Buf16=Uint16Array,t.Buf32=Int32Array,t.assign(t,o)):(t.Buf8=Array,t.Buf16=Array,t.Buf32=Array,t.assign(t,i))},t.setTyped(n)},8592:function(e,t,n){"use strict";var r=n(9187),o=!0,i=!0;try{String.fromCharCode.apply(null,[0])}catch(e){o=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(e){i=!1}for(var a=new r.Buf8(256),l=0;l<256;l++)a[l]=l>=252?6:l>=248?5:l>=240?4:l>=224?3:l>=192?2:1;function c(e,t){if(t<65534&&(e.subarray&&i||!e.subarray&&o))return String.fromCharCode.apply(null,r.shrinkBuf(e,t));for(var n="",a=0;a<t;a++)n+=String.fromCharCode(e[a]);return n}a[254]=a[254]=1,t.string2buf=function(e){var t,n,o,i,a,l=e.length,c=0;for(i=0;i<l;i++)55296==(64512&(n=e.charCodeAt(i)))&&i+1<l&&56320==(64512&(o=e.charCodeAt(i+1)))&&(n=65536+(n-55296<<10)+(o-56320),i++),c+=n<128?1:n<2048?2:n<65536?3:4;for(t=new r.Buf8(c),a=0,i=0;a<c;i++)55296==(64512&(n=e.charCodeAt(i)))&&i+1<l&&56320==(64512&(o=e.charCodeAt(i+1)))&&(n=65536+(n-55296<<10)+(o-56320),i++),n<128?t[a++]=n:n<2048?(t[a++]=192|n>>>6,t[a++]=128|63&n):n<65536?(t[a++]=224|n>>>12,t[a++]=128|n>>>6&63,t[a++]=128|63&n):(t[a++]=240|n>>>18,t[a++]=128|n>>>12&63,t[a++]=128|n>>>6&63,t[a++]=128|63&n);return t},t.buf2binstring=function(e){return c(e,e.length)},t.binstring2buf=function(e){for(var t=new r.Buf8(e.length),n=0,o=t.length;n<o;n++)t[n]=e.charCodeAt(n);return t},t.buf2string=function(e,t){var n,r,o,i,l=t||e.length,s=new Array(2*l);for(r=0,n=0;n<l;)if((o=e[n++])<128)s[r++]=o;else if((i=a[o])>4)s[r++]=65533,n+=i-1;else{for(o&=2===i?31:3===i?15:7;i>1&&n<l;)o=o<<6|63&e[n++],i--;i>1?s[r++]=65533:o<65536?s[r++]=o:(o-=65536,s[r++]=55296|o>>10&1023,s[r++]=56320|1023&o)}return c(s,r)},t.utf8border=function(e,t){var n;for((t=t||e.length)>e.length&&(t=e.length),n=t-1;n>=0&&128==(192&e[n]);)n--;return n<0||0===n?t:n+a[e[n]]>t?n:t}},3693:function(e){"use strict";e.exports=function(e,t,n,r){for(var o=65535&e|0,i=e>>>16&65535|0,a=0;0!==n;){n-=a=n>2e3?2e3:n;do{i=i+(o=o+t[r++]|0)|0}while(--a);o%=65521,i%=65521}return o|i<<16|0}},2684:function(e){"use strict";e.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},8464:function(e){"use strict";var t=function(){for(var e,t=[],n=0;n<256;n++){e=n;for(var r=0;r<8;r++)e=1&e?3988292384^e>>>1:e>>>1;t[n]=e}return t}();e.exports=function(e,n,r,o){var i=t,a=o+r;e^=-1;for(var l=o;l<a;l++)e=e>>>8^i[255&(e^n[l])];return-1^e}},7651:function(e,t,n){"use strict";var r,o=n(9187),i=n(8676),a=n(3693),l=n(8464),c=n(5604),s=-2,u=258,d=262,f=103,p=113,h=666;function m(e,t){return e.msg=c[t],t}function g(e){return(e<<1)-(e>4?9:0)}function v(e){for(var t=e.length;--t>=0;)e[t]=0}function b(e){var t=e.state,n=t.pending;n>e.avail_out&&(n=e.avail_out),0!==n&&(o.arraySet(e.output,t.pending_buf,t.pending_out,n,e.next_out),e.next_out+=n,t.pending_out+=n,e.total_out+=n,e.avail_out-=n,t.pending-=n,0===t.pending&&(t.pending_out=0))}function y(e,t){i._tr_flush_block(e,e.block_start>=0?e.block_start:-1,e.strstart-e.block_start,t),e.block_start=e.strstart,b(e.strm)}function x(e,t){e.pending_buf[e.pending++]=t}function w(e,t){e.pending_buf[e.pending++]=t>>>8&255,e.pending_buf[e.pending++]=255&t}function k(e,t){var n,r,o=e.max_chain_length,i=e.strstart,a=e.prev_length,l=e.nice_match,c=e.strstart>e.w_size-d?e.strstart-(e.w_size-d):0,s=e.window,f=e.w_mask,p=e.prev,h=e.strstart+u,m=s[i+a-1],g=s[i+a];e.prev_length>=e.good_match&&(o>>=2),l>e.lookahead&&(l=e.lookahead);do{if(s[(n=t)+a]===g&&s[n+a-1]===m&&s[n]===s[i]&&s[++n]===s[i+1]){i+=2,n++;do{}while(s[++i]===s[++n]&&s[++i]===s[++n]&&s[++i]===s[++n]&&s[++i]===s[++n]&&s[++i]===s[++n]&&s[++i]===s[++n]&&s[++i]===s[++n]&&s[++i]===s[++n]&&i<h);if(r=u-(h-i),i=h-u,r>a){if(e.match_start=t,a=r,r>=l)break;m=s[i+a-1],g=s[i+a]}}}while((t=p[t&f])>c&&0!=--o);return a<=e.lookahead?a:e.lookahead}function E(e){var t,n,r,i,c,s,u,f,p,h,m=e.w_size;do{if(i=e.window_size-e.lookahead-e.strstart,e.strstart>=m+(m-d)){o.arraySet(e.window,e.window,m,m,0),e.match_start-=m,e.strstart-=m,e.block_start-=m,t=n=e.hash_size;do{r=e.head[--t],e.head[t]=r>=m?r-m:0}while(--n);t=n=m;do{r=e.prev[--t],e.prev[t]=r>=m?r-m:0}while(--n);i+=m}if(0===e.strm.avail_in)break;if(s=e.strm,u=e.window,f=e.strstart+e.lookahead,p=i,h=void 0,(h=s.avail_in)>p&&(h=p),n=0===h?0:(s.avail_in-=h,o.arraySet(u,s.input,s.next_in,h,f),1===s.state.wrap?s.adler=a(s.adler,u,h,f):2===s.state.wrap&&(s.adler=l(s.adler,u,h,f)),s.next_in+=h,s.total_in+=h,h),e.lookahead+=n,e.lookahead+e.insert>=3)for(c=e.strstart-e.insert,e.ins_h=e.window[c],e.ins_h=(e.ins_h<<e.hash_shift^e.window[c+1])&e.hash_mask;e.insert&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[c+3-1])&e.hash_mask,e.prev[c&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=c,c++,e.insert--,!(e.lookahead+e.insert<3)););}while(e.lookahead<d&&0!==e.strm.avail_in)}function S(e,t){for(var n,r;;){if(e.lookahead<d){if(E(e),e.lookahead<d&&0===t)return 1;if(0===e.lookahead)break}if(n=0,e.lookahead>=3&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+3-1])&e.hash_mask,n=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),0!==n&&e.strstart-n<=e.w_size-d&&(e.match_length=k(e,n)),e.match_length>=3)if(r=i._tr_tally(e,e.strstart-e.match_start,e.match_length-3),e.lookahead-=e.match_length,e.match_length<=e.max_lazy_match&&e.lookahead>=3){e.match_length--;do{e.strstart++,e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+3-1])&e.hash_mask,n=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart}while(0!=--e.match_length);e.strstart++}else e.strstart+=e.match_length,e.match_length=0,e.ins_h=e.window[e.strstart],e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+1])&e.hash_mask;else r=i._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++;if(r&&(y(e,!1),0===e.strm.avail_out))return 1}return e.insert=e.strstart<2?e.strstart:2,4===t?(y(e,!0),0===e.strm.avail_out?3:4):e.last_lit&&(y(e,!1),0===e.strm.avail_out)?1:2}function O(e,t){for(var n,r,o;;){if(e.lookahead<d){if(E(e),e.lookahead<d&&0===t)return 1;if(0===e.lookahead)break}if(n=0,e.lookahead>=3&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+3-1])&e.hash_mask,n=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),e.prev_length=e.match_length,e.prev_match=e.match_start,e.match_length=2,0!==n&&e.prev_length<e.max_lazy_match&&e.strstart-n<=e.w_size-d&&(e.match_length=k(e,n),e.match_length<=5&&(1===e.strategy||3===e.match_length&&e.strstart-e.match_start>4096)&&(e.match_length=2)),e.prev_length>=3&&e.match_length<=e.prev_length){o=e.strstart+e.lookahead-3,r=i._tr_tally(e,e.strstart-1-e.prev_match,e.prev_length-3),e.lookahead-=e.prev_length-1,e.prev_length-=2;do{++e.strstart<=o&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+3-1])&e.hash_mask,n=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart)}while(0!=--e.prev_length);if(e.match_available=0,e.match_length=2,e.strstart++,r&&(y(e,!1),0===e.strm.avail_out))return 1}else if(e.match_available){if((r=i._tr_tally(e,0,e.window[e.strstart-1]))&&y(e,!1),e.strstart++,e.lookahead--,0===e.strm.avail_out)return 1}else e.match_available=1,e.strstart++,e.lookahead--}return e.match_available&&(r=i._tr_tally(e,0,e.window[e.strstart-1]),e.match_available=0),e.insert=e.strstart<2?e.strstart:2,4===t?(y(e,!0),0===e.strm.avail_out?3:4):e.last_lit&&(y(e,!1),0===e.strm.avail_out)?1:2}function j(e,t,n,r,o){this.good_length=e,this.max_lazy=t,this.nice_length=n,this.max_chain=r,this.func=o}function _(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=8,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new o.Buf16(1146),this.dyn_dtree=new o.Buf16(122),this.bl_tree=new o.Buf16(78),v(this.dyn_ltree),v(this.dyn_dtree),v(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new o.Buf16(16),this.heap=new o.Buf16(573),v(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new o.Buf16(573),v(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function C(e){var t;return e&&e.state?(e.total_in=e.total_out=0,e.data_type=2,(t=e.state).pending=0,t.pending_out=0,t.wrap<0&&(t.wrap=-t.wrap),t.status=t.wrap?42:p,e.adler=2===t.wrap?0:1,t.last_flush=0,i._tr_init(t),0):m(e,s)}function I(e){var t,n=C(e);return 0===n&&((t=e.state).window_size=2*t.w_size,v(t.head),t.max_lazy_match=r[t.level].max_lazy,t.good_match=r[t.level].good_length,t.nice_match=r[t.level].nice_length,t.max_chain_length=r[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=2,t.match_available=0,t.ins_h=0),n}function T(e,t,n,r,i,a){if(!e)return s;var l=1;if(-1===t&&(t=6),r<0?(l=0,r=-r):r>15&&(l=2,r-=16),i<1||i>9||8!==n||r<8||r>15||t<0||t>9||a<0||a>4)return m(e,s);8===r&&(r=9);var c=new _;return e.state=c,c.strm=e,c.wrap=l,c.gzhead=null,c.w_bits=r,c.w_size=1<<c.w_bits,c.w_mask=c.w_size-1,c.hash_bits=i+7,c.hash_size=1<<c.hash_bits,c.hash_mask=c.hash_size-1,c.hash_shift=~~((c.hash_bits+3-1)/3),c.window=new o.Buf8(2*c.w_size),c.head=new o.Buf16(c.hash_size),c.prev=new o.Buf16(c.w_size),c.lit_bufsize=1<<i+6,c.pending_buf_size=4*c.lit_bufsize,c.pending_buf=new o.Buf8(c.pending_buf_size),c.d_buf=1*c.lit_bufsize,c.l_buf=3*c.lit_bufsize,c.level=t,c.strategy=a,c.method=n,I(e)}r=[new j(0,0,0,0,(function(e,t){var n=65535;for(n>e.pending_buf_size-5&&(n=e.pending_buf_size-5);;){if(e.lookahead<=1){if(E(e),0===e.lookahead&&0===t)return 1;if(0===e.lookahead)break}e.strstart+=e.lookahead,e.lookahead=0;var r=e.block_start+n;if((0===e.strstart||e.strstart>=r)&&(e.lookahead=e.strstart-r,e.strstart=r,y(e,!1),0===e.strm.avail_out))return 1;if(e.strstart-e.block_start>=e.w_size-d&&(y(e,!1),0===e.strm.avail_out))return 1}return e.insert=0,4===t?(y(e,!0),0===e.strm.avail_out?3:4):(e.strstart>e.block_start&&(y(e,!1),e.strm.avail_out),1)})),new j(4,4,8,4,S),new j(4,5,16,8,S),new j(4,6,32,32,S),new j(4,4,16,16,O),new j(8,16,32,32,O),new j(8,16,128,128,O),new j(8,32,128,256,O),new j(32,128,258,1024,O),new j(32,258,258,4096,O)],t.deflateInit=function(e,t){return T(e,t,8,15,8,0)},t.deflateInit2=T,t.deflateReset=I,t.deflateResetKeep=C,t.deflateSetHeader=function(e,t){return e&&e.state?2!==e.state.wrap?s:(e.state.gzhead=t,0):s},t.deflate=function(e,t){var n,o,a,c;if(!e||!e.state||t>5||t<0)return e?m(e,s):s;if(o=e.state,!e.output||!e.input&&0!==e.avail_in||o.status===h&&4!==t)return m(e,0===e.avail_out?-5:s);if(o.strm=e,n=o.last_flush,o.last_flush=t,42===o.status)if(2===o.wrap)e.adler=0,x(o,31),x(o,139),x(o,8),o.gzhead?(x(o,(o.gzhead.text?1:0)+(o.gzhead.hcrc?2:0)+(o.gzhead.extra?4:0)+(o.gzhead.name?8:0)+(o.gzhead.comment?16:0)),x(o,255&o.gzhead.time),x(o,o.gzhead.time>>8&255),x(o,o.gzhead.time>>16&255),x(o,o.gzhead.time>>24&255),x(o,9===o.level?2:o.strategy>=2||o.level<2?4:0),x(o,255&o.gzhead.os),o.gzhead.extra&&o.gzhead.extra.length&&(x(o,255&o.gzhead.extra.length),x(o,o.gzhead.extra.length>>8&255)),o.gzhead.hcrc&&(e.adler=l(e.adler,o.pending_buf,o.pending,0)),o.gzindex=0,o.status=69):(x(o,0),x(o,0),x(o,0),x(o,0),x(o,0),x(o,9===o.level?2:o.strategy>=2||o.level<2?4:0),x(o,3),o.status=p);else{var d=8+(o.w_bits-8<<4)<<8;d|=(o.strategy>=2||o.level<2?0:o.level<6?1:6===o.level?2:3)<<6,0!==o.strstart&&(d|=32),d+=31-d%31,o.status=p,w(o,d),0!==o.strstart&&(w(o,e.adler>>>16),w(o,65535&e.adler)),e.adler=1}if(69===o.status)if(o.gzhead.extra){for(a=o.pending;o.gzindex<(65535&o.gzhead.extra.length)&&(o.pending!==o.pending_buf_size||(o.gzhead.hcrc&&o.pending>a&&(e.adler=l(e.adler,o.pending_buf,o.pending-a,a)),b(e),a=o.pending,o.pending!==o.pending_buf_size));)x(o,255&o.gzhead.extra[o.gzindex]),o.gzindex++;o.gzhead.hcrc&&o.pending>a&&(e.adler=l(e.adler,o.pending_buf,o.pending-a,a)),o.gzindex===o.gzhead.extra.length&&(o.gzindex=0,o.status=73)}else o.status=73;if(73===o.status)if(o.gzhead.name){a=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>a&&(e.adler=l(e.adler,o.pending_buf,o.pending-a,a)),b(e),a=o.pending,o.pending===o.pending_buf_size)){c=1;break}c=o.gzindex<o.gzhead.name.length?255&o.gzhead.name.charCodeAt(o.gzindex++):0,x(o,c)}while(0!==c);o.gzhead.hcrc&&o.pending>a&&(e.adler=l(e.adler,o.pending_buf,o.pending-a,a)),0===c&&(o.gzindex=0,o.status=91)}else o.status=91;if(91===o.status)if(o.gzhead.comment){a=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>a&&(e.adler=l(e.adler,o.pending_buf,o.pending-a,a)),b(e),a=o.pending,o.pending===o.pending_buf_size)){c=1;break}c=o.gzindex<o.gzhead.comment.length?255&o.gzhead.comment.charCodeAt(o.gzindex++):0,x(o,c)}while(0!==c);o.gzhead.hcrc&&o.pending>a&&(e.adler=l(e.adler,o.pending_buf,o.pending-a,a)),0===c&&(o.status=f)}else o.status=f;if(o.status===f&&(o.gzhead.hcrc?(o.pending+2>o.pending_buf_size&&b(e),o.pending+2<=o.pending_buf_size&&(x(o,255&e.adler),x(o,e.adler>>8&255),e.adler=0,o.status=p)):o.status=p),0!==o.pending){if(b(e),0===e.avail_out)return o.last_flush=-1,0}else if(0===e.avail_in&&g(t)<=g(n)&&4!==t)return m(e,-5);if(o.status===h&&0!==e.avail_in)return m(e,-5);if(0!==e.avail_in||0!==o.lookahead||0!==t&&o.status!==h){var k=2===o.strategy?function(e,t){for(var n;;){if(0===e.lookahead&&(E(e),0===e.lookahead)){if(0===t)return 1;break}if(e.match_length=0,n=i._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++,n&&(y(e,!1),0===e.strm.avail_out))return 1}return e.insert=0,4===t?(y(e,!0),0===e.strm.avail_out?3:4):e.last_lit&&(y(e,!1),0===e.strm.avail_out)?1:2}(o,t):3===o.strategy?function(e,t){for(var n,r,o,a,l=e.window;;){if(e.lookahead<=u){if(E(e),e.lookahead<=u&&0===t)return 1;if(0===e.lookahead)break}if(e.match_length=0,e.lookahead>=3&&e.strstart>0&&(r=l[o=e.strstart-1])===l[++o]&&r===l[++o]&&r===l[++o]){a=e.strstart+u;do{}while(r===l[++o]&&r===l[++o]&&r===l[++o]&&r===l[++o]&&r===l[++o]&&r===l[++o]&&r===l[++o]&&r===l[++o]&&o<a);e.match_length=u-(a-o),e.match_length>e.lookahead&&(e.match_length=e.lookahead)}if(e.match_length>=3?(n=i._tr_tally(e,1,e.match_length-3),e.lookahead-=e.match_length,e.strstart+=e.match_length,e.match_length=0):(n=i._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++),n&&(y(e,!1),0===e.strm.avail_out))return 1}return e.insert=0,4===t?(y(e,!0),0===e.strm.avail_out?3:4):e.last_lit&&(y(e,!1),0===e.strm.avail_out)?1:2}(o,t):r[o.level].func(o,t);if(3!==k&&4!==k||(o.status=h),1===k||3===k)return 0===e.avail_out&&(o.last_flush=-1),0;if(2===k&&(1===t?i._tr_align(o):5!==t&&(i._tr_stored_block(o,0,0,!1),3===t&&(v(o.head),0===o.lookahead&&(o.strstart=0,o.block_start=0,o.insert=0))),b(e),0===e.avail_out))return o.last_flush=-1,0}return 4!==t?0:o.wrap<=0?1:(2===o.wrap?(x(o,255&e.adler),x(o,e.adler>>8&255),x(o,e.adler>>16&255),x(o,e.adler>>24&255),x(o,255&e.total_in),x(o,e.total_in>>8&255),x(o,e.total_in>>16&255),x(o,e.total_in>>24&255)):(w(o,e.adler>>>16),w(o,65535&e.adler)),b(e),o.wrap>0&&(o.wrap=-o.wrap),0!==o.pending?0:1)},t.deflateEnd=function(e){var t;return e&&e.state?42!==(t=e.state.status)&&69!==t&&73!==t&&91!==t&&t!==f&&t!==p&&t!==h?m(e,s):(e.state=null,t===p?m(e,-3):0):s},t.deflateSetDictionary=function(e,t){var n,r,i,l,c,u,d,f,p=t.length;if(!e||!e.state)return s;if(2===(l=(n=e.state).wrap)||1===l&&42!==n.status||n.lookahead)return s;for(1===l&&(e.adler=a(e.adler,t,p,0)),n.wrap=0,p>=n.w_size&&(0===l&&(v(n.head),n.strstart=0,n.block_start=0,n.insert=0),f=new o.Buf8(n.w_size),o.arraySet(f,t,p-n.w_size,n.w_size,0),t=f,p=n.w_size),c=e.avail_in,u=e.next_in,d=e.input,e.avail_in=p,e.next_in=0,e.input=t,E(n);n.lookahead>=3;){r=n.strstart,i=n.lookahead-2;do{n.ins_h=(n.ins_h<<n.hash_shift^n.window[r+3-1])&n.hash_mask,n.prev[r&n.w_mask]=n.head[n.ins_h],n.head[n.ins_h]=r,r++}while(--i);n.strstart=r,n.lookahead=2,E(n)}return n.strstart+=n.lookahead,n.block_start=n.strstart,n.insert=n.lookahead,n.lookahead=0,n.match_length=n.prev_length=2,n.match_available=0,e.next_in=u,e.input=d,e.avail_in=c,n.wrap=l,0},t.deflateInfo="pako deflate (from Nodeca project)"},9968:function(e){"use strict";e.exports=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}},9365:function(e){"use strict";e.exports=function(e,t){var n,r,o,i,a,l,c,s,u,d,f,p,h,m,g,v,b,y,x,w,k,E,S,O,j;n=e.state,r=e.next_in,O=e.input,o=r+(e.avail_in-5),i=e.next_out,j=e.output,a=i-(t-e.avail_out),l=i+(e.avail_out-257),c=n.dmax,s=n.wsize,u=n.whave,d=n.wnext,f=n.window,p=n.hold,h=n.bits,m=n.lencode,g=n.distcode,v=(1<<n.lenbits)-1,b=(1<<n.distbits)-1;e:do{h<15&&(p+=O[r++]<<h,h+=8,p+=O[r++]<<h,h+=8),y=m[p&v];t:for(;;){if(p>>>=x=y>>>24,h-=x,0===(x=y>>>16&255))j[i++]=65535&y;else{if(!(16&x)){if(0==(64&x)){y=m[(65535&y)+(p&(1<<x)-1)];continue t}if(32&x){n.mode=12;break e}e.msg="invalid literal/length code",n.mode=30;break e}w=65535&y,(x&=15)&&(h<x&&(p+=O[r++]<<h,h+=8),w+=p&(1<<x)-1,p>>>=x,h-=x),h<15&&(p+=O[r++]<<h,h+=8,p+=O[r++]<<h,h+=8),y=g[p&b];n:for(;;){if(p>>>=x=y>>>24,h-=x,!(16&(x=y>>>16&255))){if(0==(64&x)){y=g[(65535&y)+(p&(1<<x)-1)];continue n}e.msg="invalid distance code",n.mode=30;break e}if(k=65535&y,h<(x&=15)&&(p+=O[r++]<<h,(h+=8)<x&&(p+=O[r++]<<h,h+=8)),(k+=p&(1<<x)-1)>c){e.msg="invalid distance too far back",n.mode=30;break e}if(p>>>=x,h-=x,k>(x=i-a)){if((x=k-x)>u&&n.sane){e.msg="invalid distance too far back",n.mode=30;break e}if(E=0,S=f,0===d){if(E+=s-x,x<w){w-=x;do{j[i++]=f[E++]}while(--x);E=i-k,S=j}}else if(d<x){if(E+=s+d-x,(x-=d)<w){w-=x;do{j[i++]=f[E++]}while(--x);if(E=0,d<w){w-=x=d;do{j[i++]=f[E++]}while(--x);E=i-k,S=j}}}else if(E+=d-x,x<w){w-=x;do{j[i++]=f[E++]}while(--x);E=i-k,S=j}for(;w>2;)j[i++]=S[E++],j[i++]=S[E++],j[i++]=S[E++],w-=3;w&&(j[i++]=S[E++],w>1&&(j[i++]=S[E++]))}else{E=i-k;do{j[i++]=j[E++],j[i++]=j[E++],j[i++]=j[E++],w-=3}while(w>2);w&&(j[i++]=j[E++],w>1&&(j[i++]=j[E++]))}break}}break}}while(r<o&&i<l);r-=w=h>>3,p&=(1<<(h-=w<<3))-1,e.next_in=r,e.next_out=i,e.avail_in=r<o?o-r+5:5-(r-o),e.avail_out=i<l?l-i+257:257-(i-l),n.hold=p,n.bits=h}},7823:function(e,t,n){"use strict";var r=n(9187),o=n(3693),i=n(8464),a=n(9365),l=n(6446),c=-2,s=12,u=30;function d(e){return(e>>>24&255)+(e>>>8&65280)+((65280&e)<<8)+((255&e)<<24)}function f(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new r.Buf16(320),this.work=new r.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function p(e){var t;return e&&e.state?(t=e.state,e.total_in=e.total_out=t.total=0,e.msg="",t.wrap&&(e.adler=1&t.wrap),t.mode=1,t.last=0,t.havedict=0,t.dmax=32768,t.head=null,t.hold=0,t.bits=0,t.lencode=t.lendyn=new r.Buf32(852),t.distcode=t.distdyn=new r.Buf32(592),t.sane=1,t.back=-1,0):c}function h(e){var t;return e&&e.state?((t=e.state).wsize=0,t.whave=0,t.wnext=0,p(e)):c}function m(e,t){var n,r;return e&&e.state?(r=e.state,t<0?(n=0,t=-t):(n=1+(t>>4),t<48&&(t&=15)),t&&(t<8||t>15)?c:(null!==r.window&&r.wbits!==t&&(r.window=null),r.wrap=n,r.wbits=t,h(e))):c}function g(e,t){var n,r;return e?(r=new f,e.state=r,r.window=null,0!==(n=m(e,t))&&(e.state=null),n):c}var v,b,y=!0;function x(e){if(y){var t;for(v=new r.Buf32(512),b=new r.Buf32(32),t=0;t<144;)e.lens[t++]=8;for(;t<256;)e.lens[t++]=9;for(;t<280;)e.lens[t++]=7;for(;t<288;)e.lens[t++]=8;for(l(1,e.lens,0,288,v,0,e.work,{bits:9}),t=0;t<32;)e.lens[t++]=5;l(2,e.lens,0,32,b,0,e.work,{bits:5}),y=!1}e.lencode=v,e.lenbits=9,e.distcode=b,e.distbits=5}function w(e,t,n,o){var i,a=e.state;return null===a.window&&(a.wsize=1<<a.wbits,a.wnext=0,a.whave=0,a.window=new r.Buf8(a.wsize)),o>=a.wsize?(r.arraySet(a.window,t,n-a.wsize,a.wsize,0),a.wnext=0,a.whave=a.wsize):((i=a.wsize-a.wnext)>o&&(i=o),r.arraySet(a.window,t,n-o,i,a.wnext),(o-=i)?(r.arraySet(a.window,t,n-o,o,0),a.wnext=o,a.whave=a.wsize):(a.wnext+=i,a.wnext===a.wsize&&(a.wnext=0),a.whave<a.wsize&&(a.whave+=i))),0}t.inflateReset=h,t.inflateReset2=m,t.inflateResetKeep=p,t.inflateInit=function(e){return g(e,15)},t.inflateInit2=g,t.inflate=function(e,t){var n,f,p,h,m,g,v,b,y,k,E,S,O,j,_,C,I,T,P,M,D,A,L,Z,R=0,z=new r.Buf8(4),N=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!e||!e.state||!e.output||!e.input&&0!==e.avail_in)return c;(n=e.state).mode===s&&(n.mode=13),m=e.next_out,p=e.output,v=e.avail_out,h=e.next_in,f=e.input,g=e.avail_in,b=n.hold,y=n.bits,k=g,E=v,A=0;e:for(;;)switch(n.mode){case 1:if(0===n.wrap){n.mode=13;break}for(;y<16;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}if(2&n.wrap&&35615===b){n.check=0,z[0]=255&b,z[1]=b>>>8&255,n.check=i(n.check,z,2,0),b=0,y=0,n.mode=2;break}if(n.flags=0,n.head&&(n.head.done=!1),!(1&n.wrap)||(((255&b)<<8)+(b>>8))%31){e.msg="incorrect header check",n.mode=u;break}if(8!=(15&b)){e.msg="unknown compression method",n.mode=u;break}if(y-=4,D=8+(15&(b>>>=4)),0===n.wbits)n.wbits=D;else if(D>n.wbits){e.msg="invalid window size",n.mode=u;break}n.dmax=1<<D,e.adler=n.check=1,n.mode=512&b?10:s,b=0,y=0;break;case 2:for(;y<16;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}if(n.flags=b,8!=(255&n.flags)){e.msg="unknown compression method",n.mode=u;break}if(57344&n.flags){e.msg="unknown header flags set",n.mode=u;break}n.head&&(n.head.text=b>>8&1),512&n.flags&&(z[0]=255&b,z[1]=b>>>8&255,n.check=i(n.check,z,2,0)),b=0,y=0,n.mode=3;case 3:for(;y<32;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}n.head&&(n.head.time=b),512&n.flags&&(z[0]=255&b,z[1]=b>>>8&255,z[2]=b>>>16&255,z[3]=b>>>24&255,n.check=i(n.check,z,4,0)),b=0,y=0,n.mode=4;case 4:for(;y<16;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}n.head&&(n.head.xflags=255&b,n.head.os=b>>8),512&n.flags&&(z[0]=255&b,z[1]=b>>>8&255,n.check=i(n.check,z,2,0)),b=0,y=0,n.mode=5;case 5:if(1024&n.flags){for(;y<16;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}n.length=b,n.head&&(n.head.extra_len=b),512&n.flags&&(z[0]=255&b,z[1]=b>>>8&255,n.check=i(n.check,z,2,0)),b=0,y=0}else n.head&&(n.head.extra=null);n.mode=6;case 6:if(1024&n.flags&&((S=n.length)>g&&(S=g),S&&(n.head&&(D=n.head.extra_len-n.length,n.head.extra||(n.head.extra=new Array(n.head.extra_len)),r.arraySet(n.head.extra,f,h,S,D)),512&n.flags&&(n.check=i(n.check,f,S,h)),g-=S,h+=S,n.length-=S),n.length))break e;n.length=0,n.mode=7;case 7:if(2048&n.flags){if(0===g)break e;S=0;do{D=f[h+S++],n.head&&D&&n.length<65536&&(n.head.name+=String.fromCharCode(D))}while(D&&S<g);if(512&n.flags&&(n.check=i(n.check,f,S,h)),g-=S,h+=S,D)break e}else n.head&&(n.head.name=null);n.length=0,n.mode=8;case 8:if(4096&n.flags){if(0===g)break e;S=0;do{D=f[h+S++],n.head&&D&&n.length<65536&&(n.head.comment+=String.fromCharCode(D))}while(D&&S<g);if(512&n.flags&&(n.check=i(n.check,f,S,h)),g-=S,h+=S,D)break e}else n.head&&(n.head.comment=null);n.mode=9;case 9:if(512&n.flags){for(;y<16;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}if(b!==(65535&n.check)){e.msg="header crc mismatch",n.mode=u;break}b=0,y=0}n.head&&(n.head.hcrc=n.flags>>9&1,n.head.done=!0),e.adler=n.check=0,n.mode=s;break;case 10:for(;y<32;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}e.adler=n.check=d(b),b=0,y=0,n.mode=11;case 11:if(0===n.havedict)return e.next_out=m,e.avail_out=v,e.next_in=h,e.avail_in=g,n.hold=b,n.bits=y,2;e.adler=n.check=1,n.mode=s;case s:if(5===t||6===t)break e;case 13:if(n.last){b>>>=7&y,y-=7&y,n.mode=27;break}for(;y<3;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}switch(n.last=1&b,y-=1,3&(b>>>=1)){case 0:n.mode=14;break;case 1:if(x(n),n.mode=20,6===t){b>>>=2,y-=2;break e}break;case 2:n.mode=17;break;case 3:e.msg="invalid block type",n.mode=u}b>>>=2,y-=2;break;case 14:for(b>>>=7&y,y-=7&y;y<32;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}if((65535&b)!=(b>>>16^65535)){e.msg="invalid stored block lengths",n.mode=u;break}if(n.length=65535&b,b=0,y=0,n.mode=15,6===t)break e;case 15:n.mode=16;case 16:if(S=n.length){if(S>g&&(S=g),S>v&&(S=v),0===S)break e;r.arraySet(p,f,h,S,m),g-=S,h+=S,v-=S,m+=S,n.length-=S;break}n.mode=s;break;case 17:for(;y<14;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}if(n.nlen=257+(31&b),b>>>=5,y-=5,n.ndist=1+(31&b),b>>>=5,y-=5,n.ncode=4+(15&b),b>>>=4,y-=4,n.nlen>286||n.ndist>30){e.msg="too many length or distance symbols",n.mode=u;break}n.have=0,n.mode=18;case 18:for(;n.have<n.ncode;){for(;y<3;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}n.lens[N[n.have++]]=7&b,b>>>=3,y-=3}for(;n.have<19;)n.lens[N[n.have++]]=0;if(n.lencode=n.lendyn,n.lenbits=7,L={bits:n.lenbits},A=l(0,n.lens,0,19,n.lencode,0,n.work,L),n.lenbits=L.bits,A){e.msg="invalid code lengths set",n.mode=u;break}n.have=0,n.mode=19;case 19:for(;n.have<n.nlen+n.ndist;){for(;C=(R=n.lencode[b&(1<<n.lenbits)-1])>>>16&255,I=65535&R,!((_=R>>>24)<=y);){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}if(I<16)b>>>=_,y-=_,n.lens[n.have++]=I;else{if(16===I){for(Z=_+2;y<Z;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}if(b>>>=_,y-=_,0===n.have){e.msg="invalid bit length repeat",n.mode=u;break}D=n.lens[n.have-1],S=3+(3&b),b>>>=2,y-=2}else if(17===I){for(Z=_+3;y<Z;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}y-=_,D=0,S=3+(7&(b>>>=_)),b>>>=3,y-=3}else{for(Z=_+7;y<Z;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}y-=_,D=0,S=11+(127&(b>>>=_)),b>>>=7,y-=7}if(n.have+S>n.nlen+n.ndist){e.msg="invalid bit length repeat",n.mode=u;break}for(;S--;)n.lens[n.have++]=D}}if(n.mode===u)break;if(0===n.lens[256]){e.msg="invalid code -- missing end-of-block",n.mode=u;break}if(n.lenbits=9,L={bits:n.lenbits},A=l(1,n.lens,0,n.nlen,n.lencode,0,n.work,L),n.lenbits=L.bits,A){e.msg="invalid literal/lengths set",n.mode=u;break}if(n.distbits=6,n.distcode=n.distdyn,L={bits:n.distbits},A=l(2,n.lens,n.nlen,n.ndist,n.distcode,0,n.work,L),n.distbits=L.bits,A){e.msg="invalid distances set",n.mode=u;break}if(n.mode=20,6===t)break e;case 20:n.mode=21;case 21:if(g>=6&&v>=258){e.next_out=m,e.avail_out=v,e.next_in=h,e.avail_in=g,n.hold=b,n.bits=y,a(e,E),m=e.next_out,p=e.output,v=e.avail_out,h=e.next_in,f=e.input,g=e.avail_in,b=n.hold,y=n.bits,n.mode===s&&(n.back=-1);break}for(n.back=0;C=(R=n.lencode[b&(1<<n.lenbits)-1])>>>16&255,I=65535&R,!((_=R>>>24)<=y);){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}if(C&&0==(240&C)){for(T=_,P=C,M=I;C=(R=n.lencode[M+((b&(1<<T+P)-1)>>T)])>>>16&255,I=65535&R,!(T+(_=R>>>24)<=y);){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}b>>>=T,y-=T,n.back+=T}if(b>>>=_,y-=_,n.back+=_,n.length=I,0===C){n.mode=26;break}if(32&C){n.back=-1,n.mode=s;break}if(64&C){e.msg="invalid literal/length code",n.mode=u;break}n.extra=15&C,n.mode=22;case 22:if(n.extra){for(Z=n.extra;y<Z;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}n.length+=b&(1<<n.extra)-1,b>>>=n.extra,y-=n.extra,n.back+=n.extra}n.was=n.length,n.mode=23;case 23:for(;C=(R=n.distcode[b&(1<<n.distbits)-1])>>>16&255,I=65535&R,!((_=R>>>24)<=y);){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}if(0==(240&C)){for(T=_,P=C,M=I;C=(R=n.distcode[M+((b&(1<<T+P)-1)>>T)])>>>16&255,I=65535&R,!(T+(_=R>>>24)<=y);){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}b>>>=T,y-=T,n.back+=T}if(b>>>=_,y-=_,n.back+=_,64&C){e.msg="invalid distance code",n.mode=u;break}n.offset=I,n.extra=15&C,n.mode=24;case 24:if(n.extra){for(Z=n.extra;y<Z;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}n.offset+=b&(1<<n.extra)-1,b>>>=n.extra,y-=n.extra,n.back+=n.extra}if(n.offset>n.dmax){e.msg="invalid distance too far back",n.mode=u;break}n.mode=25;case 25:if(0===v)break e;if(S=E-v,n.offset>S){if((S=n.offset-S)>n.whave&&n.sane){e.msg="invalid distance too far back",n.mode=u;break}S>n.wnext?(S-=n.wnext,O=n.wsize-S):O=n.wnext-S,S>n.length&&(S=n.length),j=n.window}else j=p,O=m-n.offset,S=n.length;S>v&&(S=v),v-=S,n.length-=S;do{p[m++]=j[O++]}while(--S);0===n.length&&(n.mode=21);break;case 26:if(0===v)break e;p[m++]=n.length,v--,n.mode=21;break;case 27:if(n.wrap){for(;y<32;){if(0===g)break e;g--,b|=f[h++]<<y,y+=8}if(E-=v,e.total_out+=E,n.total+=E,E&&(e.adler=n.check=n.flags?i(n.check,p,E,m-E):o(n.check,p,E,m-E)),E=v,(n.flags?b:d(b))!==n.check){e.msg="incorrect data check",n.mode=u;break}b=0,y=0}n.mode=28;case 28:if(n.wrap&&n.flags){for(;y<32;){if(0===g)break e;g--,b+=f[h++]<<y,y+=8}if(b!==(4294967295&n.total)){e.msg="incorrect length check",n.mode=u;break}b=0,y=0}n.mode=29;case 29:A=1;break e;case u:A=-3;break e;case 31:return-4;default:return c}return e.next_out=m,e.avail_out=v,e.next_in=h,e.avail_in=g,n.hold=b,n.bits=y,(n.wsize||E!==e.avail_out&&n.mode<u&&(n.mode<27||4!==t))&&w(e,e.output,e.next_out,E-e.avail_out)?(n.mode=31,-4):(k-=e.avail_in,E-=e.avail_out,e.total_in+=k,e.total_out+=E,n.total+=E,n.wrap&&E&&(e.adler=n.check=n.flags?i(n.check,p,E,e.next_out-E):o(n.check,p,E,e.next_out-E)),e.data_type=n.bits+(n.last?64:0)+(n.mode===s?128:0)+(20===n.mode||15===n.mode?256:0),(0===k&&0===E||4===t)&&0===A&&(A=-5),A)},t.inflateEnd=function(e){if(!e||!e.state)return c;var t=e.state;return t.window&&(t.window=null),e.state=null,0},t.inflateGetHeader=function(e,t){var n;return e&&e.state?0==(2&(n=e.state).wrap)?c:(n.head=t,t.done=!1,0):c},t.inflateSetDictionary=function(e,t){var n,r=t.length;return e&&e.state?0!==(n=e.state).wrap&&11!==n.mode?c:11===n.mode&&o(1,t,r,0)!==n.check?-3:w(e,t,r,r)?(n.mode=31,-4):(n.havedict=1,0):c},t.inflateInfo="pako inflate (from Nodeca project)"},6446:function(e,t,n){"use strict";var r=n(9187),o=15,i=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],a=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],l=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],c=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];e.exports=function(e,t,n,s,u,d,f,p){var h,m,g,v,b,y,x,w,k,E=p.bits,S=0,O=0,j=0,_=0,C=0,I=0,T=0,P=0,M=0,D=0,A=null,L=0,Z=new r.Buf16(16),R=new r.Buf16(16),z=null,N=0;for(S=0;S<=o;S++)Z[S]=0;for(O=0;O<s;O++)Z[t[n+O]]++;for(C=E,_=o;_>=1&&0===Z[_];_--);if(C>_&&(C=_),0===_)return u[d++]=20971520,u[d++]=20971520,p.bits=1,0;for(j=1;j<_&&0===Z[j];j++);for(C<j&&(C=j),P=1,S=1;S<=o;S++)if(P<<=1,(P-=Z[S])<0)return-1;if(P>0&&(0===e||1!==_))return-1;for(R[1]=0,S=1;S<o;S++)R[S+1]=R[S]+Z[S];for(O=0;O<s;O++)0!==t[n+O]&&(f[R[t[n+O]]++]=O);if(0===e?(A=z=f,y=19):1===e?(A=i,L-=257,z=a,N-=257,y=256):(A=l,z=c,y=-1),D=0,O=0,S=j,b=d,I=C,T=0,g=-1,v=(M=1<<C)-1,1===e&&M>852||2===e&&M>592)return 1;for(;;){x=S-T,f[O]<y?(w=0,k=f[O]):f[O]>y?(w=z[N+f[O]],k=A[L+f[O]]):(w=96,k=0),h=1<<S-T,j=m=1<<I;do{u[b+(D>>T)+(m-=h)]=x<<24|w<<16|k|0}while(0!==m);for(h=1<<S-1;D&h;)h>>=1;if(0!==h?(D&=h-1,D+=h):D=0,O++,0==--Z[S]){if(S===_)break;S=t[n+f[O]]}if(S>C&&(D&v)!==g){for(0===T&&(T=C),b+=j,P=1<<(I=S-T);I+T<_&&!((P-=Z[I+T])<=0);)I++,P<<=1;if(M+=1<<I,1===e&&M>852||2===e&&M>592)return 1;u[g=D&v]=C<<24|I<<16|b-d|0}}return 0!==D&&(u[b+D]=S-T<<24|64<<16|0),p.bits=C,0}},5604:function(e){"use strict";e.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},8676:function(e,t,n){"use strict";var r=n(9187);function o(e){for(var t=e.length;--t>=0;)e[t]=0}var i=256,a=286,l=30,c=15,s=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],u=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],d=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],f=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],p=new Array(576);o(p);var h=new Array(60);o(h);var m=new Array(512);o(m);var g=new Array(256);o(g);var v=new Array(29);o(v);var b,y,x,w=new Array(l);function k(e,t,n,r,o){this.static_tree=e,this.extra_bits=t,this.extra_base=n,this.elems=r,this.max_length=o,this.has_stree=e&&e.length}function E(e,t){this.dyn_tree=e,this.max_code=0,this.stat_desc=t}function S(e){return e<256?m[e]:m[256+(e>>>7)]}function O(e,t){e.pending_buf[e.pending++]=255&t,e.pending_buf[e.pending++]=t>>>8&255}function j(e,t,n){e.bi_valid>16-n?(e.bi_buf|=t<<e.bi_valid&65535,O(e,e.bi_buf),e.bi_buf=t>>16-e.bi_valid,e.bi_valid+=n-16):(e.bi_buf|=t<<e.bi_valid&65535,e.bi_valid+=n)}function _(e,t,n){j(e,n[2*t],n[2*t+1])}function C(e,t){var n=0;do{n|=1&e,e>>>=1,n<<=1}while(--t>0);return n>>>1}function I(e,t,n){var r,o,i=new Array(16),a=0;for(r=1;r<=c;r++)i[r]=a=a+n[r-1]<<1;for(o=0;o<=t;o++){var l=e[2*o+1];0!==l&&(e[2*o]=C(i[l]++,l))}}function T(e){var t;for(t=0;t<a;t++)e.dyn_ltree[2*t]=0;for(t=0;t<l;t++)e.dyn_dtree[2*t]=0;for(t=0;t<19;t++)e.bl_tree[2*t]=0;e.dyn_ltree[512]=1,e.opt_len=e.static_len=0,e.last_lit=e.matches=0}function P(e){e.bi_valid>8?O(e,e.bi_buf):e.bi_valid>0&&(e.pending_buf[e.pending++]=e.bi_buf),e.bi_buf=0,e.bi_valid=0}function M(e,t,n,r){var o=2*t,i=2*n;return e[o]<e[i]||e[o]===e[i]&&r[t]<=r[n]}function D(e,t,n){for(var r=e.heap[n],o=n<<1;o<=e.heap_len&&(o<e.heap_len&&M(t,e.heap[o+1],e.heap[o],e.depth)&&o++,!M(t,r,e.heap[o],e.depth));)e.heap[n]=e.heap[o],n=o,o<<=1;e.heap[n]=r}function A(e,t,n){var r,o,a,l,c=0;if(0!==e.last_lit)do{r=e.pending_buf[e.d_buf+2*c]<<8|e.pending_buf[e.d_buf+2*c+1],o=e.pending_buf[e.l_buf+c],c++,0===r?_(e,o,t):(_(e,(a=g[o])+i+1,t),0!==(l=s[a])&&j(e,o-=v[a],l),_(e,a=S(--r),n),0!==(l=u[a])&&j(e,r-=w[a],l))}while(c<e.last_lit);_(e,256,t)}function L(e,t){var n,r,o,i=t.dyn_tree,a=t.stat_desc.static_tree,l=t.stat_desc.has_stree,s=t.stat_desc.elems,u=-1;for(e.heap_len=0,e.heap_max=573,n=0;n<s;n++)0!==i[2*n]?(e.heap[++e.heap_len]=u=n,e.depth[n]=0):i[2*n+1]=0;for(;e.heap_len<2;)i[2*(o=e.heap[++e.heap_len]=u<2?++u:0)]=1,e.depth[o]=0,e.opt_len--,l&&(e.static_len-=a[2*o+1]);for(t.max_code=u,n=e.heap_len>>1;n>=1;n--)D(e,i,n);o=s;do{n=e.heap[1],e.heap[1]=e.heap[e.heap_len--],D(e,i,1),r=e.heap[1],e.heap[--e.heap_max]=n,e.heap[--e.heap_max]=r,i[2*o]=i[2*n]+i[2*r],e.depth[o]=(e.depth[n]>=e.depth[r]?e.depth[n]:e.depth[r])+1,i[2*n+1]=i[2*r+1]=o,e.heap[1]=o++,D(e,i,1)}while(e.heap_len>=2);e.heap[--e.heap_max]=e.heap[1],function(e,t){var n,r,o,i,a,l,s=t.dyn_tree,u=t.max_code,d=t.stat_desc.static_tree,f=t.stat_desc.has_stree,p=t.stat_desc.extra_bits,h=t.stat_desc.extra_base,m=t.stat_desc.max_length,g=0;for(i=0;i<=c;i++)e.bl_count[i]=0;for(s[2*e.heap[e.heap_max]+1]=0,n=e.heap_max+1;n<573;n++)(i=s[2*s[2*(r=e.heap[n])+1]+1]+1)>m&&(i=m,g++),s[2*r+1]=i,r>u||(e.bl_count[i]++,a=0,r>=h&&(a=p[r-h]),l=s[2*r],e.opt_len+=l*(i+a),f&&(e.static_len+=l*(d[2*r+1]+a)));if(0!==g){do{for(i=m-1;0===e.bl_count[i];)i--;e.bl_count[i]--,e.bl_count[i+1]+=2,e.bl_count[m]--,g-=2}while(g>0);for(i=m;0!==i;i--)for(r=e.bl_count[i];0!==r;)(o=e.heap[--n])>u||(s[2*o+1]!==i&&(e.opt_len+=(i-s[2*o+1])*s[2*o],s[2*o+1]=i),r--)}}(e,t),I(i,u,e.bl_count)}function Z(e,t,n){var r,o,i=-1,a=t[1],l=0,c=7,s=4;for(0===a&&(c=138,s=3),t[2*(n+1)+1]=65535,r=0;r<=n;r++)o=a,a=t[2*(r+1)+1],++l<c&&o===a||(l<s?e.bl_tree[2*o]+=l:0!==o?(o!==i&&e.bl_tree[2*o]++,e.bl_tree[32]++):l<=10?e.bl_tree[34]++:e.bl_tree[36]++,l=0,i=o,0===a?(c=138,s=3):o===a?(c=6,s=3):(c=7,s=4))}function R(e,t,n){var r,o,i=-1,a=t[1],l=0,c=7,s=4;for(0===a&&(c=138,s=3),r=0;r<=n;r++)if(o=a,a=t[2*(r+1)+1],!(++l<c&&o===a)){if(l<s)do{_(e,o,e.bl_tree)}while(0!=--l);else 0!==o?(o!==i&&(_(e,o,e.bl_tree),l--),_(e,16,e.bl_tree),j(e,l-3,2)):l<=10?(_(e,17,e.bl_tree),j(e,l-3,3)):(_(e,18,e.bl_tree),j(e,l-11,7));l=0,i=o,0===a?(c=138,s=3):o===a?(c=6,s=3):(c=7,s=4)}}o(w);var z=!1;function N(e,t,n,o){j(e,0+(o?1:0),3),function(e,t,n,o){P(e),o&&(O(e,n),O(e,~n)),r.arraySet(e.pending_buf,e.window,t,n,e.pending),e.pending+=n}(e,t,n,!0)}t._tr_init=function(e){z||(!function(){var e,t,n,r,o,i=new Array(16);for(n=0,r=0;r<28;r++)for(v[r]=n,e=0;e<1<<s[r];e++)g[n++]=r;for(g[n-1]=r,o=0,r=0;r<16;r++)for(w[r]=o,e=0;e<1<<u[r];e++)m[o++]=r;for(o>>=7;r<l;r++)for(w[r]=o<<7,e=0;e<1<<u[r]-7;e++)m[256+o++]=r;for(t=0;t<=c;t++)i[t]=0;for(e=0;e<=143;)p[2*e+1]=8,e++,i[8]++;for(;e<=255;)p[2*e+1]=9,e++,i[9]++;for(;e<=279;)p[2*e+1]=7,e++,i[7]++;for(;e<=287;)p[2*e+1]=8,e++,i[8]++;for(I(p,287,i),e=0;e<l;e++)h[2*e+1]=5,h[2*e]=C(e,5);b=new k(p,s,257,a,c),y=new k(h,u,0,l,c),x=new k(new Array(0),d,0,19,7)}(),z=!0),e.l_desc=new E(e.dyn_ltree,b),e.d_desc=new E(e.dyn_dtree,y),e.bl_desc=new E(e.bl_tree,x),e.bi_buf=0,e.bi_valid=0,T(e)},t._tr_stored_block=N,t._tr_flush_block=function(e,t,n,r){var o,a,l=0;e.level>0?(2===e.strm.data_type&&(e.strm.data_type=function(e){var t,n=4093624447;for(t=0;t<=31;t++,n>>>=1)if(1&n&&0!==e.dyn_ltree[2*t])return 0;if(0!==e.dyn_ltree[18]||0!==e.dyn_ltree[20]||0!==e.dyn_ltree[26])return 1;for(t=32;t<i;t++)if(0!==e.dyn_ltree[2*t])return 1;return 0}(e)),L(e,e.l_desc),L(e,e.d_desc),l=function(e){var t;for(Z(e,e.dyn_ltree,e.l_desc.max_code),Z(e,e.dyn_dtree,e.d_desc.max_code),L(e,e.bl_desc),t=18;t>=3&&0===e.bl_tree[2*f[t]+1];t--);return e.opt_len+=3*(t+1)+5+5+4,t}(e),o=e.opt_len+3+7>>>3,(a=e.static_len+3+7>>>3)<=o&&(o=a)):o=a=n+5,n+4<=o&&-1!==t?N(e,t,n,r):4===e.strategy||a===o?(j(e,2+(r?1:0),3),A(e,p,h)):(j(e,4+(r?1:0),3),function(e,t,n,r){var o;for(j(e,t-257,5),j(e,n-1,5),j(e,r-4,4),o=0;o<r;o++)j(e,e.bl_tree[2*f[o]+1],3);R(e,e.dyn_ltree,t-1),R(e,e.dyn_dtree,n-1)}(e,e.l_desc.max_code+1,e.d_desc.max_code+1,l+1),A(e,e.dyn_ltree,e.dyn_dtree)),T(e),r&&P(e)},t._tr_tally=function(e,t,n){return e.pending_buf[e.d_buf+2*e.last_lit]=t>>>8&255,e.pending_buf[e.d_buf+2*e.last_lit+1]=255&t,e.pending_buf[e.l_buf+e.last_lit]=255&n,e.last_lit++,0===t?e.dyn_ltree[2*n]++:(e.matches++,t--,e.dyn_ltree[2*(g[n]+i+1)]++,e.dyn_dtree[2*S(t)]++),e.last_lit===e.lit_bufsize-1},t._tr_align=function(e){j(e,2,3),_(e,256,p),function(e){16===e.bi_valid?(O(e,e.bi_buf),e.bi_buf=0,e.bi_valid=0):e.bi_valid>=8&&(e.pending_buf[e.pending++]=255&e.bi_buf,e.bi_buf>>=8,e.bi_valid-=8)}(e)}},249:function(e){"use strict";e.exports=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},9066:function(e){e.exports=function(e){e.data&&e.name&&(e=e.data);for(var t=!0,n="",r="",o=0;o<e.length;o++){var i=e[o];if(t)i?r+=String.fromCharCode(i):t=!1;else{if(!i)throw new Error("Invalid NULL character found. 0x00 character is not permitted in tEXt content");n+=String.fromCharCode(i)}}return{keyword:r,text:n}}},9686:function(e){e.exports=function(e,t){if(e=String(e),t=String(t),!/^[\x00-\xFF]+$/.test(e)||!/^[\x00-\xFF]+$/.test(t))throw new Error("Only Latin-1 characters are permitted in PNG tEXt chunks. You might want to consider base64 encoding and/or zEXt compression");if(e.length>=80)throw new Error('Keyword "'+e+'" is longer than the 79-character limit imposed by the PNG specification');for(var n,r=e.length+t.length+1,o=new Uint8Array(r),i=0,a=0;a<e.length;a++){if(!(n=e.charCodeAt(a)))throw new Error("0x00 character is not permitted in tEXt keywords");o[i++]=n}o[i++]=0;for(var l=0;l<t.length;l++){if(!(n=t.charCodeAt(l)))throw new Error("0x00 character is not permitted in tEXt content");o[i++]=n}return{name:"tEXt",data:o}}},1194:function(e,t,n){t.encode=n(9686),t.decode=n(9066)},3434:function(e,t,n){var r=n(5714),o=n(6233);e.exports=function(e){var t,n=8,c=n;for(t=0;t<e.length;t++)n+=e[t].data.length,n+=12;var s=new Uint8Array(n);for(s[0]=137,s[1]=80,s[2]=78,s[3]=71,s[4]=13,s[5]=10,s[6]=26,s[7]=10,t=0;t<e.length;t++){var u=e[t],d=u.name,f=u.data,p=f.length,h=[d.charCodeAt(0),d.charCodeAt(1),d.charCodeAt(2),d.charCodeAt(3)];l[0]=p,s[c++]=i[3],s[c++]=i[2],s[c++]=i[1],s[c++]=i[0],s[c++]=h[0],s[c++]=h[1],s[c++]=h[2],s[c++]=h[3];for(var m=0;m<p;)s[c++]=f[m++];var g=h.concat(r(f)),v=o.buf(g);a[0]=v,s[c++]=i[3],s[c++]=i[2],s[c++]=i[1],s[c++]=i[0]}return s};var i=new Uint8Array(4),a=new Int32Array(i.buffer),l=new Uint32Array(i.buffer)},2983:function(e,t,n){var r=n(6233);e.exports=function(e){if(137!==e[0])throw new Error("Invalid .png file header");if(80!==e[1])throw new Error("Invalid .png file header");if(78!==e[2])throw new Error("Invalid .png file header");if(71!==e[3])throw new Error("Invalid .png file header");if(13!==e[4])throw new Error("Invalid .png file header: possibly caused by DOS-Unix line ending conversion?");if(10!==e[5])throw new Error("Invalid .png file header: possibly caused by DOS-Unix line ending conversion?");if(26!==e[6])throw new Error("Invalid .png file header");if(10!==e[7])throw new Error("Invalid .png file header: possibly caused by DOS-Unix line ending conversion?");var t=!1,n=[],l=8;for(;l<e.length;){o[3]=e[l++],o[2]=e[l++],o[1]=e[l++],o[0]=e[l++];var c=a[0]+4,s=new Uint8Array(c);s[0]=e[l++],s[1]=e[l++],s[2]=e[l++],s[3]=e[l++];var u=String.fromCharCode(s[0])+String.fromCharCode(s[1])+String.fromCharCode(s[2])+String.fromCharCode(s[3]);if(!n.length&&"IHDR"!==u)throw new Error("IHDR header missing");if("IEND"===u){t=!0,n.push({name:u,data:new Uint8Array(0)});break}for(var d=4;d<c;d++)s[d]=e[l++];o[3]=e[l++],o[2]=e[l++],o[1]=e[l++],o[0]=e[l++];var f=i[0];if(r.buf(s)!==f)throw new Error("CRC values for "+u+" header do not match, PNG file is likely corrupted");var p=new Uint8Array(s.buffer.slice(4));n.push({name:u,data:p})}if(!t)throw new Error(".png file ended prematurely: no IEND header was found");return n};var o=new Uint8Array(4),i=new Int32Array(o.buffer),a=new Uint32Array(o.buffer)},1493:function(e,t,n){"use strict";function r(e,t){return Math.pow(e[0]-t[0],2)+Math.pow(e[1]-t[1],2)}function o(e,t,n){const o=r(t,n);if(0===o)return r(e,t);let a=((e[0]-t[0])*(n[0]-t[0])+(e[1]-t[1])*(n[1]-t[1]))/o;return a=Math.max(0,Math.min(1,a)),r(e,i(t,n,a))}function i(e,t,n){return[e[0]+(t[0]-e[0])*n,e[1]+(t[1]-e[1])*n]}function a(e,t,n,o){const l=o||[];if(function(e,t){const n=e[t+0],r=e[t+1],o=e[t+2],i=e[t+3];let a=3*r[0]-2*n[0]-i[0];a*=a;let l=3*r[1]-2*n[1]-i[1];l*=l;let c=3*o[0]-2*i[0]-n[0];c*=c;let s=3*o[1]-2*i[1]-n[1];return s*=s,a<c&&(a=c),l<s&&(l=s),a+l}(e,t)<n){const n=e[t+0];if(l.length){(c=l[l.length-1],s=n,Math.sqrt(r(c,s)))>1&&l.push(n)}else l.push(n);l.push(e[t+3])}else{const r=.5,o=e[t+0],c=e[t+1],s=e[t+2],u=e[t+3],d=i(o,c,r),f=i(c,s,r),p=i(s,u,r),h=i(d,f,r),m=i(f,p,r),g=i(h,m,r);a([o,d,h,g],0,n,l),a([g,m,p,u],0,n,l)}var c,s;return l}function l(e,t){return c(e,0,e.length,t)}function c(e,t,n,r,i){const a=i||[],l=e[t],s=e[n-1];let u=0,d=1;for(let r=t+1;r<n-1;++r){const t=o(e[r],l,s);t>u&&(u=t,d=r)}return Math.sqrt(u)>r?(c(e,t,d+1,r,a),c(e,d,n,r,a)):(a.length||a.push(l),a.push(s)),a}function s(e,t=.15,n){const r=[],o=(e.length-1)/3;for(let n=0;n<o;n++){a(e,3*n,t,r)}return n&&n>0?c(r,0,r.length,n):r}n.d(t,{o:function(){return l},s:function(){return s}})},6094:function(e,t,n){"use strict";var r=n(9787),o=Symbol.for("react.element"),i=Symbol.for("react.fragment"),a=Object.prototype.hasOwnProperty,l=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,c={key:!0,ref:!0,__self:!0,__source:!0};function s(e,t,n){var r,i={},s=null,u=null;for(r in void 0!==n&&(s=""+n),void 0!==t.key&&(s=""+t.key),void 0!==t.ref&&(u=t.ref),t)a.call(t,r)&&!c.hasOwnProperty(r)&&(i[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===i[r]&&(i[r]=t[r]);return{$$typeof:o,type:e,key:s,ref:u,props:i,_owner:l.current}}t.Fragment=i,t.jsx=s,t.jsxs=s},4512:function(e,t,n){"use strict";e.exports=n(6094)},8152:function(e,t,n){"use strict";function r(){return Math.floor(Math.random()*2**31)}n.d(t,{W:function(){return r},k:function(){return o}});class o{constructor(e){this.seed=e}next(){return this.seed?(2**31-1&(this.seed=Math.imul(48271,this.seed)))/2**31:Math.random()}}},8234:function(e,t,n){"use strict";function r(e,t,n){if(e&&e.length){const[r,o]=t,i=Math.PI/180*n,a=Math.cos(i),l=Math.sin(i);e.forEach((e=>{const[t,n]=e;e[0]=(t-r)*a-(n-o)*l+r,e[1]=(t-r)*l+(n-o)*a+o}))}}function o(e){const t=e[0],n=e[1];return Math.sqrt(Math.pow(t[0]-n[0],2)+Math.pow(t[1]-n[1],2))}function i(e,t){const n=t.hachureAngle+90;let o=t.hachureGap;o<0&&(o=4*t.strokeWidth),o=Math.max(o,.1);const i=[0,0];if(n)for(const t of e)r(t,i,n);const a=function(e,t){const n=[];for(const t of e){const e=[...t];e[0].join(",")!==e[e.length-1].join(",")&&e.push([e[0][0],e[0][1]]),e.length>2&&n.push(e)}const r=[];t=Math.max(t,.1);const o=[];for(const e of n)for(let t=0;t<e.length-1;t++){const n=e[t],r=e[t+1];if(n[1]!==r[1]){const e=Math.min(n[1],r[1]);o.push({ymin:e,ymax:Math.max(n[1],r[1]),x:e===n[1]?n[0]:r[0],islope:(r[0]-n[0])/(r[1]-n[1])})}}if(o.sort(((e,t)=>e.ymin<t.ymin?-1:e.ymin>t.ymin?1:e.x<t.x?-1:e.x>t.x?1:e.ymax===t.ymax?0:(e.ymax-t.ymax)/Math.abs(e.ymax-t.ymax))),!o.length)return r;let i=[],a=o[0].ymin;for(;i.length||o.length;){if(o.length){let e=-1;for(let t=0;t<o.length&&!(o[t].ymin>a);t++)e=t;o.splice(0,e+1).forEach((e=>{i.push({s:a,edge:e})}))}if(i=i.filter((e=>!(e.edge.ymax<=a))),i.sort(((e,t)=>e.edge.x===t.edge.x?0:(e.edge.x-t.edge.x)/Math.abs(e.edge.x-t.edge.x))),i.length>1)for(let e=0;e<i.length;e+=2){const t=e+1;if(t>=i.length)break;const n=i[e].edge,o=i[t].edge;r.push([[Math.round(n.x),a],[Math.round(o.x),a]])}a+=t,i.forEach((e=>{e.edge.x=e.edge.x+t*e.edge.islope}))}return r}(e,o);if(n){for(const t of e)r(t,i,-n);!function(e,t,n){const o=[];e.forEach((e=>o.push(...e))),r(o,t,n)}(a,i,-n)}return a}n.d(t,{Z:function(){return V}});class a{constructor(e){this.helper=e}fillPolygons(e,t){return this._fillPolygons(e,t)}_fillPolygons(e,t){const n=i(e,t);return{type:"fillSketch",ops:this.renderLines(n,t)}}renderLines(e,t){const n=[];for(const r of e)n.push(...this.helper.doubleLineOps(r[0][0],r[0][1],r[1][0],r[1][1],t));return n}}class l extends a{fillPolygons(e,t){let n=t.hachureGap;n<0&&(n=4*t.strokeWidth),n=Math.max(n,.1);const r=i(e,Object.assign({},t,{hachureGap:n})),a=Math.PI/180*t.hachureAngle,l=[],c=.5*n*Math.cos(a),s=.5*n*Math.sin(a);for(const[e,t]of r)o([e,t])&&l.push([[e[0]-c,e[1]+s],[...t]],[[e[0]+c,e[1]-s],[...t]]);return{type:"fillSketch",ops:this.renderLines(l,t)}}}class c extends a{fillPolygons(e,t){const n=this._fillPolygons(e,t),r=Object.assign({},t,{hachureAngle:t.hachureAngle+90}),o=this._fillPolygons(e,r);return n.ops=n.ops.concat(o.ops),n}}class s{constructor(e){this.helper=e}fillPolygons(e,t){const n=i(e,t=Object.assign({},t,{hachureAngle:0}));return this.dotsOnLines(n,t)}dotsOnLines(e,t){const n=[];let r=t.hachureGap;r<0&&(r=4*t.strokeWidth),r=Math.max(r,.1);let i=t.fillWeight;i<0&&(i=t.strokeWidth/2);const a=r/4;for(const l of e){const e=o(l),c=e/r,s=Math.ceil(c)-1,u=e-s*r,d=(l[0][0]+l[1][0])/2-r/4,f=Math.min(l[0][1],l[1][1]);for(let e=0;e<s;e++){const o=f+u+e*r,l=d-a+2*Math.random()*a,c=o-a+2*Math.random()*a,s=this.helper.ellipse(l,c,i,i,t);n.push(...s.ops)}}return{type:"fillSketch",ops:n}}}class u{constructor(e){this.helper=e}fillPolygons(e,t){const n=i(e,t);return{type:"fillSketch",ops:this.dashedLine(n,t)}}dashedLine(e,t){const n=t.dashOffset<0?t.hachureGap<0?4*t.strokeWidth:t.hachureGap:t.dashOffset,r=t.dashGap<0?t.hachureGap<0?4*t.strokeWidth:t.hachureGap:t.dashGap,i=[];return e.forEach((e=>{const a=o(e),l=Math.floor(a/(n+r)),c=(a+r-l*(n+r))/2;let s=e[0],u=e[1];s[0]>u[0]&&(s=e[1],u=e[0]);const d=Math.atan((u[1]-s[1])/(u[0]-s[0]));for(let e=0;e<l;e++){const o=e*(n+r),a=o+n,l=[s[0]+o*Math.cos(d)+c*Math.cos(d),s[1]+o*Math.sin(d)+c*Math.sin(d)],u=[s[0]+a*Math.cos(d)+c*Math.cos(d),s[1]+a*Math.sin(d)+c*Math.sin(d)];i.push(...this.helper.doubleLineOps(l[0],l[1],u[0],u[1],t))}})),i}}class d{constructor(e){this.helper=e}fillPolygons(e,t){const n=t.hachureGap<0?4*t.strokeWidth:t.hachureGap,r=t.zigzagOffset<0?n:t.zigzagOffset,o=i(e,t=Object.assign({},t,{hachureGap:n+r}));return{type:"fillSketch",ops:this.zigzagLines(o,r,t)}}zigzagLines(e,t,n){const r=[];return e.forEach((e=>{const i=o(e),a=Math.round(i/(2*t));let l=e[0],c=e[1];l[0]>c[0]&&(l=e[1],c=e[0]);const s=Math.atan((c[1]-l[1])/(c[0]-l[0]));for(let e=0;e<a;e++){const o=2*e*t,i=2*(e+1)*t,a=Math.sqrt(2*Math.pow(t,2)),c=[l[0]+o*Math.cos(s),l[1]+o*Math.sin(s)],u=[l[0]+i*Math.cos(s),l[1]+i*Math.sin(s)],d=[c[0]+a*Math.cos(s+Math.PI/4),c[1]+a*Math.sin(s+Math.PI/4)];r.push(...this.helper.doubleLineOps(c[0],c[1],d[0],d[1],n),...this.helper.doubleLineOps(d[0],d[1],u[0],u[1],n))}})),r}}const f={};var p=n(8152);const h={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0};function m(e,t){return e.type===t}function g(e){const t=[],n=function(e){const t=new Array;for(;""!==e;)if(e.match(/^([ \t\r\n,]+)/))e=e.substr(RegExp.$1.length);else if(e.match(/^([aAcChHlLmMqQsStTvVzZ])/))t[t.length]={type:0,text:RegExp.$1},e=e.substr(RegExp.$1.length);else{if(!e.match(/^(([-+]?[0-9]+(\.[0-9]*)?|[-+]?\.[0-9]+)([eE][-+]?[0-9]+)?)/))return[];t[t.length]={type:1,text:`${parseFloat(RegExp.$1)}`},e=e.substr(RegExp.$1.length)}return t[t.length]={type:2,text:""},t}(e);let r="BOD",o=0,i=n[o];for(;!m(i,2);){let a=0;const l=[];if("BOD"===r){if("M"!==i.text&&"m"!==i.text)return g("M0,0"+e);o++,a=h[i.text],r=i.text}else m(i,1)?a=h[r]:(o++,a=h[i.text],r=i.text);if(!(o+a<n.length))throw new Error("Path data ended short");for(let e=o;e<o+a;e++){const t=n[e];if(!m(t,1))throw new Error("Param not a number: "+r+","+t.text);l[l.length]=+t.text}if("number"!=typeof h[r])throw new Error("Bad segment: "+r);{const e={key:r,data:l};t.push(e),o+=a,i=n[o],"M"===r&&(r="L"),"m"===r&&(r="l")}}return t}function v(e){let t=0,n=0,r=0,o=0;const i=[];for(const{key:a,data:l}of e)switch(a){case"M":i.push({key:"M",data:[...l]}),[t,n]=l,[r,o]=l;break;case"m":t+=l[0],n+=l[1],i.push({key:"M",data:[t,n]}),r=t,o=n;break;case"L":i.push({key:"L",data:[...l]}),[t,n]=l;break;case"l":t+=l[0],n+=l[1],i.push({key:"L",data:[t,n]});break;case"C":i.push({key:"C",data:[...l]}),t=l[4],n=l[5];break;case"c":{const e=l.map(((e,r)=>r%2?e+n:e+t));i.push({key:"C",data:e}),t=e[4],n=e[5];break}case"Q":i.push({key:"Q",data:[...l]}),t=l[2],n=l[3];break;case"q":{const e=l.map(((e,r)=>r%2?e+n:e+t));i.push({key:"Q",data:e}),t=e[2],n=e[3];break}case"A":i.push({key:"A",data:[...l]}),t=l[5],n=l[6];break;case"a":t+=l[5],n+=l[6],i.push({key:"A",data:[l[0],l[1],l[2],l[3],l[4],t,n]});break;case"H":i.push({key:"H",data:[...l]}),t=l[0];break;case"h":t+=l[0],i.push({key:"H",data:[t]});break;case"V":i.push({key:"V",data:[...l]}),n=l[0];break;case"v":n+=l[0],i.push({key:"V",data:[n]});break;case"S":i.push({key:"S",data:[...l]}),t=l[2],n=l[3];break;case"s":{const e=l.map(((e,r)=>r%2?e+n:e+t));i.push({key:"S",data:e}),t=e[2],n=e[3];break}case"T":i.push({key:"T",data:[...l]}),t=l[0],n=l[1];break;case"t":t+=l[0],n+=l[1],i.push({key:"T",data:[t,n]});break;case"Z":case"z":i.push({key:"Z",data:[]}),t=r,n=o}return i}function b(e){const t=[];let n="",r=0,o=0,i=0,a=0,l=0,c=0;for(const{key:s,data:u}of e){switch(s){case"M":t.push({key:"M",data:[...u]}),[r,o]=u,[i,a]=u;break;case"C":t.push({key:"C",data:[...u]}),r=u[4],o=u[5],l=u[2],c=u[3];break;case"L":t.push({key:"L",data:[...u]}),[r,o]=u;break;case"H":r=u[0],t.push({key:"L",data:[r,o]});break;case"V":o=u[0],t.push({key:"L",data:[r,o]});break;case"S":{let e=0,i=0;"C"===n||"S"===n?(e=r+(r-l),i=o+(o-c)):(e=r,i=o),t.push({key:"C",data:[e,i,...u]}),l=u[0],c=u[1],r=u[2],o=u[3];break}case"T":{const[e,i]=u;let a=0,s=0;"Q"===n||"T"===n?(a=r+(r-l),s=o+(o-c)):(a=r,s=o);const d=r+2*(a-r)/3,f=o+2*(s-o)/3,p=e+2*(a-e)/3,h=i+2*(s-i)/3;t.push({key:"C",data:[d,f,p,h,e,i]}),l=a,c=s,r=e,o=i;break}case"Q":{const[e,n,i,a]=u,s=r+2*(e-r)/3,d=o+2*(n-o)/3,f=i+2*(e-i)/3,p=a+2*(n-a)/3;t.push({key:"C",data:[s,d,f,p,i,a]}),l=e,c=n,r=i,o=a;break}case"A":{const e=Math.abs(u[0]),n=Math.abs(u[1]),i=u[2],a=u[3],l=u[4],c=u[5],s=u[6];if(0===e||0===n)t.push({key:"C",data:[r,o,c,s,c,s]}),r=c,o=s;else if(r!==c||o!==s){x(r,o,c,s,e,n,i,a,l).forEach((function(e){t.push({key:"C",data:e})})),r=c,o=s}break}case"Z":t.push({key:"Z",data:[]}),r=i,o=a}n=s}return t}function y(e,t,n){return[e*Math.cos(n)-t*Math.sin(n),e*Math.sin(n)+t*Math.cos(n)]}function x(e,t,n,r,o,i,a,l,c,s){const u=(d=a,Math.PI*d/180);var d;let f=[],p=0,h=0,m=0,g=0;if(s)[p,h,m,g]=s;else{[e,t]=y(e,t,-u),[n,r]=y(n,r,-u);const a=(e-n)/2,s=(t-r)/2;let d=a*a/(o*o)+s*s/(i*i);d>1&&(d=Math.sqrt(d),o*=d,i*=d);const f=o*o,v=i*i,b=f*v-f*s*s-v*a*a,x=f*s*s+v*a*a,w=(l===c?-1:1)*Math.sqrt(Math.abs(b/x));m=w*o*s/i+(e+n)/2,g=w*-i*a/o+(t+r)/2,p=Math.asin(parseFloat(((t-g)/i).toFixed(9))),h=Math.asin(parseFloat(((r-g)/i).toFixed(9))),e<m&&(p=Math.PI-p),n<m&&(h=Math.PI-h),p<0&&(p=2*Math.PI+p),h<0&&(h=2*Math.PI+h),c&&p>h&&(p-=2*Math.PI),!c&&h>p&&(h-=2*Math.PI)}let v=h-p;if(Math.abs(v)>120*Math.PI/180){const e=h,t=n,l=r;h=c&&h>p?p+120*Math.PI/180*1:p+120*Math.PI/180*-1,f=x(n=m+o*Math.cos(h),r=g+i*Math.sin(h),t,l,o,i,a,0,c,[h,e,m,g])}v=h-p;const b=Math.cos(p),w=Math.sin(p),k=Math.cos(h),E=Math.sin(h),S=Math.tan(v/4),O=4/3*o*S,j=4/3*i*S,_=[e,t],C=[e+O*w,t-j*b],I=[n+O*E,r-j*k],T=[n,r];if(C[0]=2*_[0]-C[0],C[1]=2*_[1]-C[1],s)return[C,I,T].concat(f);{f=[C,I,T].concat(f);const e=[];for(let t=0;t<f.length;t+=3){const n=y(f[t][0],f[t][1],u),r=y(f[t+1][0],f[t+1][1],u),o=y(f[t+2][0],f[t+2][1],u);e.push([n[0],n[1],r[0],r[1],o[0],o[1]])}return e}}const w={randOffset:function(e,t){return D(e,t)},randOffsetWithRange:function(e,t,n){return M(e,t,n)},ellipse:function(e,t,n,r,o){const i=j(n,r,o);return _(e,t,o,i).opset},doubleLineOps:function(e,t,n,r,o){return A(e,t,n,r,o,!0)}};function k(e,t,n,r,o){return{type:"path",ops:A(e,t,n,r,o)}}function E(e,t,n){const r=(e||[]).length;if(r>2){const o=[];for(let t=0;t<r-1;t++)o.push(...A(e[t][0],e[t][1],e[t+1][0],e[t+1][1],n));return t&&o.push(...A(e[r-1][0],e[r-1][1],e[0][0],e[0][1],n)),{type:"path",ops:o}}return 2===r?k(e[0][0],e[0][1],e[1][0],e[1][1],n):{type:"path",ops:[]}}function S(e,t,n,r,o){return function(e,t){return E(e,!0,t)}([[e,t],[e+n,t],[e+n,t+r],[e,t+r]],o)}function O(e,t){let n=Z(e,1*(1+.2*t.roughness),t);if(!t.disableMultiStroke){const r=Z(e,1.5*(1+.22*t.roughness),function(e){const t=Object.assign({},e);t.randomizer=void 0,e.seed&&(t.seed=e.seed+1);return t}(t));n=n.concat(r)}return{type:"path",ops:n}}function j(e,t,n){const r=Math.sqrt(2*Math.PI*Math.sqrt((Math.pow(e/2,2)+Math.pow(t/2,2))/2)),o=Math.ceil(Math.max(n.curveStepCount,n.curveStepCount/Math.sqrt(200)*r)),i=2*Math.PI/o;let a=Math.abs(e/2),l=Math.abs(t/2);const c=1-n.curveFitting;return a+=D(a*c,n),l+=D(l*c,n),{increment:i,rx:a,ry:l}}function _(e,t,n,r){const[o,i]=z(r.increment,e,t,r.rx,r.ry,1,r.increment*M(.1,M(.4,1,n),n),n);let a=R(o,null,n);if(!n.disableMultiStroke&&0!==n.roughness){const[o]=z(r.increment,e,t,r.rx,r.ry,1.5,0,n),i=R(o,null,n);a=a.concat(i)}return{estimatedPoints:i,opset:{type:"path",ops:a}}}function C(e,t,n,r,o,i,a,l,c){const s=e,u=t;let d=Math.abs(n/2),f=Math.abs(r/2);d+=D(.01*d,c),f+=D(.01*f,c);let p=o,h=i;for(;p<0;)p+=2*Math.PI,h+=2*Math.PI;h-p>2*Math.PI&&(p=0,h=2*Math.PI);const m=2*Math.PI/c.curveStepCount,g=Math.min(m/2,(h-p)/2),v=N(g,s,u,d,f,p,h,1,c);if(!c.disableMultiStroke){const e=N(g,s,u,d,f,p,h,1.5,c);v.push(...e)}return a&&(l?v.push(...A(s,u,s+d*Math.cos(p),u+f*Math.sin(p),c),...A(s,u,s+d*Math.cos(h),u+f*Math.sin(h),c)):v.push({op:"lineTo",data:[s,u]},{op:"lineTo",data:[s+d*Math.cos(p),u+f*Math.sin(p)]})),{type:"path",ops:v}}function I(e,t){const n=[];for(const r of e)if(r.length){const e=t.maxRandomnessOffset||0,o=r.length;if(o>2){n.push({op:"move",data:[r[0][0]+D(e,t),r[0][1]+D(e,t)]});for(let i=1;i<o;i++)n.push({op:"lineTo",data:[r[i][0]+D(e,t),r[i][1]+D(e,t)]})}}return{type:"fillPath",ops:n}}function T(e,t){return function(e,t){let n=e.fillStyle||"hachure";if(!f[n])switch(n){case"zigzag":f[n]||(f[n]=new l(t));break;case"cross-hatch":f[n]||(f[n]=new c(t));break;case"dots":f[n]||(f[n]=new s(t));break;case"dashed":f[n]||(f[n]=new u(t));break;case"zigzag-line":f[n]||(f[n]=new d(t));break;default:n="hachure",f[n]||(f[n]=new a(t))}return f[n]}(t,w).fillPolygons(e,t)}function P(e){return e.randomizer||(e.randomizer=new p.k(e.seed||0)),e.randomizer.next()}function M(e,t,n,r=1){return n.roughness*r*(P(n)*(t-e)+e)}function D(e,t,n=1){return M(-e,e,t,n)}function A(e,t,n,r,o,i=!1){const a=i?o.disableMultiStrokeFill:o.disableMultiStroke,l=L(e,t,n,r,o,!0,!1);if(a)return l;const c=L(e,t,n,r,o,!0,!0);return l.concat(c)}function L(e,t,n,r,o,i,a){const l=Math.pow(e-n,2)+Math.pow(t-r,2),c=Math.sqrt(l);let s=1;s=c<200?1:c>500?.4:-.0016668*c+1.233334;let u=o.maxRandomnessOffset||0;u*u*100>l&&(u=c/10);const d=u/2,f=.2+.2*P(o);let p=o.bowing*o.maxRandomnessOffset*(r-t)/200,h=o.bowing*o.maxRandomnessOffset*(e-n)/200;p=D(p,o,s),h=D(h,o,s);const m=[],g=()=>D(d,o,s),v=()=>D(u,o,s),b=o.preserveVertices;return i&&(a?m.push({op:"move",data:[e+(b?0:g()),t+(b?0:g())]}):m.push({op:"move",data:[e+(b?0:D(u,o,s)),t+(b?0:D(u,o,s))]})),a?m.push({op:"bcurveTo",data:[p+e+(n-e)*f+g(),h+t+(r-t)*f+g(),p+e+2*(n-e)*f+g(),h+t+2*(r-t)*f+g(),n+(b?0:g()),r+(b?0:g())]}):m.push({op:"bcurveTo",data:[p+e+(n-e)*f+v(),h+t+(r-t)*f+v(),p+e+2*(n-e)*f+v(),h+t+2*(r-t)*f+v(),n+(b?0:v()),r+(b?0:v())]}),m}function Z(e,t,n){const r=[];r.push([e[0][0]+D(t,n),e[0][1]+D(t,n)]),r.push([e[0][0]+D(t,n),e[0][1]+D(t,n)]);for(let o=1;o<e.length;o++)r.push([e[o][0]+D(t,n),e[o][1]+D(t,n)]),o===e.length-1&&r.push([e[o][0]+D(t,n),e[o][1]+D(t,n)]);return R(r,null,n)}function R(e,t,n){const r=e.length,o=[];if(r>3){const i=[],a=1-n.curveTightness;o.push({op:"move",data:[e[1][0],e[1][1]]});for(let t=1;t+2<r;t++){const n=e[t];i[0]=[n[0],n[1]],i[1]=[n[0]+(a*e[t+1][0]-a*e[t-1][0])/6,n[1]+(a*e[t+1][1]-a*e[t-1][1])/6],i[2]=[e[t+1][0]+(a*e[t][0]-a*e[t+2][0])/6,e[t+1][1]+(a*e[t][1]-a*e[t+2][1])/6],i[3]=[e[t+1][0],e[t+1][1]],o.push({op:"bcurveTo",data:[i[1][0],i[1][1],i[2][0],i[2][1],i[3][0],i[3][1]]})}if(t&&2===t.length){const e=n.maxRandomnessOffset;o.push({op:"lineTo",data:[t[0]+D(e,n),t[1]+D(e,n)]})}}else 3===r?(o.push({op:"move",data:[e[1][0],e[1][1]]}),o.push({op:"bcurveTo",data:[e[1][0],e[1][1],e[2][0],e[2][1],e[2][0],e[2][1]]})):2===r&&o.push(...A(e[0][0],e[0][1],e[1][0],e[1][1],n));return o}function z(e,t,n,r,o,i,a,l){const c=[],s=[];if(0===l.roughness){e/=4,s.push([t+r*Math.cos(-e),n+o*Math.sin(-e)]);for(let i=0;i<=2*Math.PI;i+=e){const e=[t+r*Math.cos(i),n+o*Math.sin(i)];c.push(e),s.push(e)}s.push([t+r*Math.cos(0),n+o*Math.sin(0)]),s.push([t+r*Math.cos(e),n+o*Math.sin(e)])}else{const u=D(.5,l)-Math.PI/2;s.push([D(i,l)+t+.9*r*Math.cos(u-e),D(i,l)+n+.9*o*Math.sin(u-e)]);const d=2*Math.PI+u-.01;for(let a=u;a<d;a+=e){const e=[D(i,l)+t+r*Math.cos(a),D(i,l)+n+o*Math.sin(a)];c.push(e),s.push(e)}s.push([D(i,l)+t+r*Math.cos(u+2*Math.PI+.5*a),D(i,l)+n+o*Math.sin(u+2*Math.PI+.5*a)]),s.push([D(i,l)+t+.98*r*Math.cos(u+a),D(i,l)+n+.98*o*Math.sin(u+a)]),s.push([D(i,l)+t+.9*r*Math.cos(u+.5*a),D(i,l)+n+.9*o*Math.sin(u+.5*a)])}return[s,c]}function N(e,t,n,r,o,i,a,l,c){const s=i+D(.1,c),u=[];u.push([D(l,c)+t+.9*r*Math.cos(s-e),D(l,c)+n+.9*o*Math.sin(s-e)]);for(let i=s;i<=a;i+=e)u.push([D(l,c)+t+r*Math.cos(i),D(l,c)+n+o*Math.sin(i)]);return u.push([t+r*Math.cos(a),n+o*Math.sin(a)]),u.push([t+r*Math.cos(a),n+o*Math.sin(a)]),R(u,null,c)}function B(e,t,n,r,o,i,a,l){const c=[],s=[l.maxRandomnessOffset||1,(l.maxRandomnessOffset||1)+.3];let u=[0,0];const d=l.disableMultiStroke?1:2,f=l.preserveVertices;for(let p=0;p<d;p++)0===p?c.push({op:"move",data:[a[0],a[1]]}):c.push({op:"move",data:[a[0]+(f?0:D(s[0],l)),a[1]+(f?0:D(s[0],l))]}),u=f?[o,i]:[o+D(s[p],l),i+D(s[p],l)],c.push({op:"bcurveTo",data:[e+D(s[p],l),t+D(s[p],l),n+D(s[p],l),r+D(s[p],l),u[0],u[1]]});return c}function H(e){return[...e]}var F=n(1493);const W="none";class U{constructor(e){this.defaultOptions={maxRandomnessOffset:2,roughness:1,bowing:1,stroke:"#000",strokeWidth:1,curveTightness:0,curveFitting:.95,curveStepCount:9,fillStyle:"hachure",fillWeight:-1,hachureAngle:-41,hachureGap:-1,dashOffset:-1,dashGap:-1,zigzagOffset:-1,seed:0,disableMultiStroke:!1,disableMultiStrokeFill:!1,preserveVertices:!1},this.config=e||{},this.config.options&&(this.defaultOptions=this._o(this.config.options))}static newSeed(){return(0,p.W)()}_o(e){return e?Object.assign({},this.defaultOptions,e):this.defaultOptions}_d(e,t,n){return{shape:e,sets:t||[],options:n||this.defaultOptions}}line(e,t,n,r,o){const i=this._o(o);return this._d("line",[k(e,t,n,r,i)],i)}rectangle(e,t,n,r,o){const i=this._o(o),a=[],l=S(e,t,n,r,i);if(i.fill){const o=[[e,t],[e+n,t],[e+n,t+r],[e,t+r]];"solid"===i.fillStyle?a.push(I([o],i)):a.push(T([o],i))}return i.stroke!==W&&a.push(l),this._d("rectangle",a,i)}ellipse(e,t,n,r,o){const i=this._o(o),a=[],l=j(n,r,i),c=_(e,t,i,l);if(i.fill)if("solid"===i.fillStyle){const n=_(e,t,i,l).opset;n.type="fillPath",a.push(n)}else a.push(T([c.estimatedPoints],i));return i.stroke!==W&&a.push(c.opset),this._d("ellipse",a,i)}circle(e,t,n,r){const o=this.ellipse(e,t,n,n,r);return o.shape="circle",o}linearPath(e,t){const n=this._o(t);return this._d("linearPath",[E(e,!1,n)],n)}arc(e,t,n,r,o,i,a=!1,l){const c=this._o(l),s=[],u=C(e,t,n,r,o,i,a,!0,c);if(a&&c.fill)if("solid"===c.fillStyle){const a=Object.assign({},c);a.disableMultiStroke=!0;const l=C(e,t,n,r,o,i,!0,!1,a);l.type="fillPath",s.push(l)}else s.push(function(e,t,n,r,o,i,a){const l=e,c=t;let s=Math.abs(n/2),u=Math.abs(r/2);s+=D(.01*s,a),u+=D(.01*u,a);let d=o,f=i;for(;d<0;)d+=2*Math.PI,f+=2*Math.PI;f-d>2*Math.PI&&(d=0,f=2*Math.PI);const p=(f-d)/a.curveStepCount,h=[];for(let e=d;e<=f;e+=p)h.push([l+s*Math.cos(e),c+u*Math.sin(e)]);return h.push([l+s*Math.cos(f),c+u*Math.sin(f)]),h.push([l,c]),T([h],a)}(e,t,n,r,o,i,c));return c.stroke!==W&&s.push(u),this._d("arc",s,c)}curve(e,t){const n=this._o(t),r=[],o=O(e,n);if(n.fill&&n.fill!==W&&e.length>=3){const t=function(e,t=0){const n=e.length;if(n<3)throw new Error("A curve must have at least three points.");const r=[];if(3===n)r.push(H(e[0]),H(e[1]),H(e[2]),H(e[2]));else{const n=[];n.push(e[0],e[0]);for(let t=1;t<e.length;t++)n.push(e[t]),t===e.length-1&&n.push(e[t]);const o=[],i=1-t;r.push(H(n[0]));for(let e=1;e+2<n.length;e++){const t=n[e];o[0]=[t[0],t[1]],o[1]=[t[0]+(i*n[e+1][0]-i*n[e-1][0])/6,t[1]+(i*n[e+1][1]-i*n[e-1][1])/6],o[2]=[n[e+1][0]+(i*n[e][0]-i*n[e+2][0])/6,n[e+1][1]+(i*n[e][1]-i*n[e+2][1])/6],o[3]=[n[e+1][0],n[e+1][1]],r.push(o[1],o[2],o[3])}}return r}(e),o=(0,F.s)(t,10,(1+n.roughness)/2);"solid"===n.fillStyle?r.push(I([o],n)):r.push(T([o],n))}return n.stroke!==W&&r.push(o),this._d("curve",r,n)}polygon(e,t){const n=this._o(t),r=[],o=E(e,!0,n);return n.fill&&("solid"===n.fillStyle?r.push(I([e],n)):r.push(T([e],n))),n.stroke!==W&&r.push(o),this._d("polygon",r,n)}path(e,t){const n=this._o(t),r=[];if(!e)return this._d("path",r,n);e=(e||"").replace(/\n/g," ").replace(/(-\s)/g,"-").replace("/(ss)/g"," ");const o=n.fill&&"transparent"!==n.fill&&n.fill!==W,i=n.stroke!==W,a=!!(n.simplification&&n.simplification<1),l=function(e,t,n){const r=b(v(g(e))),o=[];let i=[],a=[0,0],l=[];const c=()=>{l.length>=4&&i.push(...(0,F.s)(l,t)),l=[]},s=()=>{c(),i.length&&(o.push(i),i=[])};for(const{key:e,data:t}of r)switch(e){case"M":s(),a=[t[0],t[1]],i.push(a);break;case"L":c(),i.push([t[0],t[1]]);break;case"C":if(!l.length){const e=i.length?i[i.length-1]:a;l.push([e[0],e[1]])}l.push([t[0],t[1]]),l.push([t[2],t[3]]),l.push([t[4],t[5]]);break;case"Z":c(),i.push([a[0],a[1]])}if(s(),!n)return o;const u=[];for(const e of o){const t=(0,F.o)(e,n);t.length&&u.push(t)}return u}(e,1,a?4-4*n.simplification:(1+n.roughness)/2);return o&&("solid"===n.fillStyle?r.push(I(l,n)):r.push(T(l,n))),i&&(a?l.forEach((e=>{r.push(E(e,!1,n))})):r.push(function(e,t){const n=b(v(g(e))),r=[];let o=[0,0],i=[0,0];for(const{key:e,data:a}of n)switch(e){case"M":{const e=1*(t.maxRandomnessOffset||0),n=t.preserveVertices;r.push({op:"move",data:a.map((r=>r+(n?0:D(e,t))))}),i=[a[0],a[1]],o=[a[0],a[1]];break}case"L":r.push(...A(i[0],i[1],a[0],a[1],t)),i=[a[0],a[1]];break;case"C":{const[e,n,o,l,c,s]=a;r.push(...B(e,n,o,l,c,s,i,t)),i=[c,s];break}case"Z":r.push(...A(i[0],i[1],o[0],o[1],t)),i=[o[0],o[1]]}return{type:"path",ops:r}}(e,n))),this._d("path",r,n)}opsToPath(e,t){let n="";for(const r of e.ops){const e="number"==typeof t&&t>=0?r.data.map((e=>+e.toFixed(t))):r.data;switch(r.op){case"move":n+=`M${e[0]} ${e[1]} `;break;case"bcurveTo":n+=`C${e[0]} ${e[1]}, ${e[2]} ${e[3]}, ${e[4]} ${e[5]} `;break;case"lineTo":n+=`L${e[0]} ${e[1]} `}}return n.trim()}toPaths(e){const t=e.sets||[],n=e.options||this.defaultOptions,r=[];for(const e of t){let t=null;switch(e.type){case"path":t={d:this.opsToPath(e),stroke:n.stroke,strokeWidth:n.strokeWidth,fill:W};break;case"fillPath":t={d:this.opsToPath(e),stroke:W,strokeWidth:0,fill:n.fill||W};break;case"fillSketch":t=this.fillSketch(e,n)}t&&r.push(t)}return r}fillSketch(e,t){let n=t.fillWeight;return n<0&&(n=t.strokeWidth/2),{d:this.opsToPath(e),stroke:t.fill||W,strokeWidth:n,fill:W}}}class K{constructor(e,t){this.canvas=e,this.ctx=this.canvas.getContext("2d"),this.gen=new U(t)}draw(e){const t=e.sets||[],n=e.options||this.getDefaultOptions(),r=this.ctx,o=e.options.fixedDecimalPlaceDigits;for(const i of t)switch(i.type){case"path":r.save(),r.strokeStyle="none"===n.stroke?"transparent":n.stroke,r.lineWidth=n.strokeWidth,n.strokeLineDash&&r.setLineDash(n.strokeLineDash),n.strokeLineDashOffset&&(r.lineDashOffset=n.strokeLineDashOffset),this._drawToContext(r,i,o),r.restore();break;case"fillPath":{r.save(),r.fillStyle=n.fill||"";const t="curve"===e.shape||"polygon"===e.shape||"path"===e.shape?"evenodd":"nonzero";this._drawToContext(r,i,o,t),r.restore();break}case"fillSketch":this.fillSketch(r,i,n)}}fillSketch(e,t,n){let r=n.fillWeight;r<0&&(r=n.strokeWidth/2),e.save(),n.fillLineDash&&e.setLineDash(n.fillLineDash),n.fillLineDashOffset&&(e.lineDashOffset=n.fillLineDashOffset),e.strokeStyle=n.fill||"",e.lineWidth=r,this._drawToContext(e,t,n.fixedDecimalPlaceDigits),e.restore()}_drawToContext(e,t,n,r="nonzero"){e.beginPath();for(const r of t.ops){const t="number"==typeof n&&n>=0?r.data.map((e=>+e.toFixed(n))):r.data;switch(r.op){case"move":e.moveTo(t[0],t[1]);break;case"bcurveTo":e.bezierCurveTo(t[0],t[1],t[2],t[3],t[4],t[5]);break;case"lineTo":e.lineTo(t[0],t[1])}}"fillPath"===t.type?e.fill(r):e.stroke()}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}line(e,t,n,r,o){const i=this.gen.line(e,t,n,r,o);return this.draw(i),i}rectangle(e,t,n,r,o){const i=this.gen.rectangle(e,t,n,r,o);return this.draw(i),i}ellipse(e,t,n,r,o){const i=this.gen.ellipse(e,t,n,r,o);return this.draw(i),i}circle(e,t,n,r){const o=this.gen.circle(e,t,n,r);return this.draw(o),o}linearPath(e,t){const n=this.gen.linearPath(e,t);return this.draw(n),n}polygon(e,t){const n=this.gen.polygon(e,t);return this.draw(n),n}arc(e,t,n,r,o,i,a=!1,l){const c=this.gen.arc(e,t,n,r,o,i,a,l);return this.draw(c),c}curve(e,t){const n=this.gen.curve(e,t);return this.draw(n),n}path(e,t){const n=this.gen.path(e,t);return this.draw(n),n}}const Y="http://www.w3.org/2000/svg";class G{constructor(e,t){this.svg=e,this.gen=new U(t)}draw(e){const t=e.sets||[],n=e.options||this.getDefaultOptions(),r=this.svg.ownerDocument||window.document,o=r.createElementNS(Y,"g"),i=e.options.fixedDecimalPlaceDigits;for(const a of t){let t=null;switch(a.type){case"path":t=r.createElementNS(Y,"path"),t.setAttribute("d",this.opsToPath(a,i)),t.setAttribute("stroke",n.stroke),t.setAttribute("stroke-width",n.strokeWidth+""),t.setAttribute("fill","none"),n.strokeLineDash&&t.setAttribute("stroke-dasharray",n.strokeLineDash.join(" ").trim()),n.strokeLineDashOffset&&t.setAttribute("stroke-dashoffset",`${n.strokeLineDashOffset}`);break;case"fillPath":t=r.createElementNS(Y,"path"),t.setAttribute("d",this.opsToPath(a,i)),t.setAttribute("stroke","none"),t.setAttribute("stroke-width","0"),t.setAttribute("fill",n.fill||""),"curve"!==e.shape&&"polygon"!==e.shape||t.setAttribute("fill-rule","evenodd");break;case"fillSketch":t=this.fillSketch(r,a,n)}t&&o.appendChild(t)}return o}fillSketch(e,t,n){let r=n.fillWeight;r<0&&(r=n.strokeWidth/2);const o=e.createElementNS(Y,"path");return o.setAttribute("d",this.opsToPath(t,n.fixedDecimalPlaceDigits)),o.setAttribute("stroke",n.fill||""),o.setAttribute("stroke-width",r+""),o.setAttribute("fill","none"),n.fillLineDash&&o.setAttribute("stroke-dasharray",n.fillLineDash.join(" ").trim()),n.fillLineDashOffset&&o.setAttribute("stroke-dashoffset",`${n.fillLineDashOffset}`),o}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}opsToPath(e,t){return this.gen.opsToPath(e,t)}line(e,t,n,r,o){const i=this.gen.line(e,t,n,r,o);return this.draw(i)}rectangle(e,t,n,r,o){const i=this.gen.rectangle(e,t,n,r,o);return this.draw(i)}ellipse(e,t,n,r,o){const i=this.gen.ellipse(e,t,n,r,o);return this.draw(i)}circle(e,t,n,r){const o=this.gen.circle(e,t,n,r);return this.draw(o)}linearPath(e,t){const n=this.gen.linearPath(e,t);return this.draw(n)}polygon(e,t){const n=this.gen.polygon(e,t);return this.draw(n)}arc(e,t,n,r,o,i,a=!1,l){const c=this.gen.arc(e,t,n,r,o,i,a,l);return this.draw(c)}curve(e,t){const n=this.gen.curve(e,t);return this.draw(n)}path(e,t){const n=this.gen.path(e,t);return this.draw(n)}}var V={canvas:(e,t)=>new K(e,t),svg:(e,t)=>new G(e,t),generator:e=>new U(e),newSeed:()=>U.newSeed()}},5714:function(e){e.exports=function(e,t,n){var r=[],o=e.length;if(0===o)return r;var i=t<0?Math.max(0,t+o):t||0;for(void 0!==n&&(o=n<0?n+o:n);o-- >i;)r[o-i]=e[o];return r}},5422:function(e,t,n){"use strict";var r=n(487),o=n.n(r),i=n(631),a=n.n(i),l=n(2052),c=n.n(l),s=n(4010),u=n.n(s),d=n(1469),f=n.n(d),p=n(9329),h=n.n(p),m=n(2044),g={};g.styleTagTransform=h(),g.setAttributes=u(),g.insert=c().bind(null,"head"),g.domAPI=a(),g.insertStyleElement=f();o()(m.Z,g),m.Z&&m.Z.locals&&m.Z.locals},487:function(e){"use strict";var t=[];function n(e){for(var n=-1,r=0;r<t.length;r++)if(t[r].identifier===e){n=r;break}return n}function r(e,r){for(var i={},a=[],l=0;l<e.length;l++){var c=e[l],s=r.base?c[0]+r.base:c[0],u=i[s]||0,d="".concat(s," ").concat(u);i[s]=u+1;var f=n(d),p={css:c[1],media:c[2],sourceMap:c[3],supports:c[4],layer:c[5]};if(-1!==f)t[f].references++,t[f].updater(p);else{var h=o(p,r);r.byIndex=l,t.splice(l,0,{identifier:d,updater:h,references:1})}a.push(d)}return a}function o(e,t){var n=t.domAPI(t);n.update(e);return function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;n.update(e=t)}else n.remove()}}e.exports=function(e,o){var i=r(e=e||[],o=o||{});return function(e){e=e||[];for(var a=0;a<i.length;a++){var l=n(i[a]);t[l].references--}for(var c=r(e,o),s=0;s<i.length;s++){var u=n(i[s]);0===t[u].references&&(t[u].updater(),t.splice(u,1))}i=c}}},2052:function(e){"use strict";var t={};e.exports=function(e,n){var r=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!r)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");r.appendChild(n)}},1469:function(e){"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},4010:function(e,t,n){"use strict";e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},631:function(e){"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var r="";n.supports&&(r+="@supports (".concat(n.supports,") {")),n.media&&(r+="@media ".concat(n.media," {"));var o=void 0!==n.layer;o&&(r+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),r+=n.css,o&&(r+="}"),n.media&&(r+="}"),n.supports&&(r+="}");var i=n.sourceMap;i&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),t.styleTagTransform(r,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},9329:function(e){"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},2173:function(e,t,n){"use strict";var r=n(9787);var o="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},i=r.useState,a=r.useEffect,l=r.useLayoutEffect,c=r.useDebugValue;function s(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!o(e,n)}catch(e){return!0}}var u="undefined"==typeof window||void 0===window.document||void 0===window.document.createElement?function(e,t){return t()}:function(e,t){var n=t(),r=i({inst:{value:n,getSnapshot:t}}),o=r[0].inst,u=r[1];return l((function(){o.value=n,o.getSnapshot=t,s(o)&&u({inst:o})}),[e,n,t]),a((function(){return s(o)&&u({inst:o}),e((function(){s(o)&&u({inst:o})}))}),[e]),c(n),n};t.useSyncExternalStore=void 0!==r.useSyncExternalStore?r.useSyncExternalStore:u},5917:function(e,t,n){"use strict";var r=n(9787),o=n(1374);var i="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},a=o.useSyncExternalStore,l=r.useRef,c=r.useEffect,s=r.useMemo,u=r.useDebugValue;t.useSyncExternalStoreWithSelector=function(e,t,n,r,o){var d=l(null);if(null===d.current){var f={hasValue:!1,value:null};d.current=f}else f=d.current;d=s((function(){function e(e){if(!c){if(c=!0,a=e,e=r(e),void 0!==o&&f.hasValue){var t=f.value;if(o(t,e))return l=t}return l=e}if(t=l,i(a,e))return t;var n=r(e);return void 0!==o&&o(t,n)?t:(a=e,l=n)}var a,l,c=!1,s=void 0===n?null:n;return[function(){return e(t())},null===s?void 0:function(){return e(s())}]}),[t,n,r,o]);var p=a(e,d[0],d[1]);return c((function(){f.hasValue=!0,f.value=p}),[p]),u(p),p}},1374:function(e,t,n){"use strict";e.exports=n(2173)},5668:function(e,t,n){"use strict";e.exports=n(5917)},9713:function(e){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},6479:function(e,t,n){var r=n(7316);e.exports=function(e,t){if(null==e)return{};var n,o,i=r(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(o=0;o<a.length;o++)n=a[o],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}},7316:function(e){e.exports=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}},4295:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i),l=n(1667),c=n.n(l),s=new URL(n(3940),n.b),u=new URL(n(3147),n.b),d=new URL(n(8303),n.b),f=new URL(n(1273),n.b),p=new URL(n(9577),n.b),h=new URL(n(9729),n.b),m=a()(o()),g=c()(s),v=c()(u),b=c()(d),y=c()(f),x=c()(p),w=c()(h);m.push([e.id,'@font-face{font-family:"Virgil";src:url('+g+');font-display:swap}@font-face{font-family:"Cascadia";src:url('+v+');font-display:swap}@font-face{font-family:"Assistant";src:url('+b+');font-display:swap;font-weight:400}@font-face{font-family:"Assistant";src:url('+y+');font-display:swap;font-weight:500}@font-face{font-family:"Assistant";src:url('+x+');font-display:swap;font-weight:600}@font-face{font-family:"Assistant";src:url('+w+");font-display:swap;font-weight:700}",""]),t.Z=m},6086:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".zoom-actions,.undo-redo-buttons{background-color:var(--island-bg-color);border-radius:var(--border-radius-lg)}.zoom-button,.undo-redo-buttons button{border:1px solid var(--default-border-color) !important;border-radius:0 !important;background-color:rgba(0,0,0,0) !important;font-size:.875rem !important;width:var(--lg-button-size);height:var(--lg-button-size)}.zoom-button svg,.undo-redo-buttons button svg{width:var(--lg-icon-size) !important;height:var(--lg-icon-size) !important}.zoom-button .ToolIcon__icon,.undo-redo-buttons button .ToolIcon__icon{width:100%;height:100%}.reset-zoom-button{border-left:0 !important;border-right:0 !important;padding:0 .625rem !important;width:3.75rem !important;justify-content:center;color:var(--text-primary-color)}.zoom-out-button{border-top-left-radius:var(--border-radius-lg) !important;border-bottom-left-radius:var(--border-radius-lg) !important}:root[dir=rtl] .zoom-out-button{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.zoom-out-button .ToolIcon__icon{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.zoom-in-button{border-top-right-radius:var(--border-radius-lg) !important;border-bottom-right-radius:var(--border-radius-lg) !important}:root[dir=rtl] .zoom-in-button{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.zoom-in-button .ToolIcon__icon{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}.undo-redo-buttons .undo-button-container button{border-top-left-radius:var(--border-radius-lg) !important;border-bottom-left-radius:var(--border-radius-lg) !important;border-right:0 !important}:root[dir=rtl] .undo-redo-buttons .undo-button-container button{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.undo-redo-buttons .undo-button-container button .ToolIcon__icon{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.undo-redo-buttons .redo-button-container button{border-top-right-radius:var(--border-radius-lg) !important;border-bottom-right-radius:var(--border-radius-lg) !important}:root[dir=rtl] .undo-redo-buttons .redo-button-container button{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.undo-redo-buttons .redo-button-container button .ToolIcon__icon{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}",""]),t.Z=a},3729:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,':export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .Avatar{width:1.25rem;height:1.25rem;position:relative;border-radius:100%;outline-offset:2px;display:flex;justify-content:center;align-items:center;cursor:pointer;font-size:.75rem;font-weight:800;line-height:1}.excalidraw .Avatar-img{width:100%;height:100%;border-radius:100%}.excalidraw .Avatar::before{content:"";position:absolute;top:-3px;right:-3px;bottom:-3px;left:-3px;border:1px solid var(--avatar-border-color);border-radius:100%}',""]),t.Z=a},3137:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i),l=n(1667),c=n.n(l),s=new URL(n(7984),n.b),u=new URL(n(1639),n.b),d=a()(o()),f=c()(s),p=c()(u);d.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw{--theme-filter: none;--button-destructive-bg-color: #ffe3e3;--button-destructive-color: #c92a2a;--button-gray-1: #e9ecef;--button-gray-2: #ced4da;--button-gray-3: #adb5bd;--button-special-active-bg-color: #ebfbee;--dialog-border-color: var(--color-gray-20);--dropdown-icon: url("+f+");--focus-highlight-color: #a5d8ff;--icon-fill-color: var(--color-gray-80);--icon-green-fill-color: #2b8a3e;--default-bg-color: #ffffff;--input-bg-color: #ffffff;--input-border-color: #ced4da;--input-hover-bg-color: #f1f3f5;--input-label-color: #495057;--island-bg-color: rgba(255, 255, 255, 0.96);--keybinding-color: var(--color-gray-40);--link-color: #1c7ed6;--overlay-bg-color: rgba(255, 255, 255, 0.88);--popup-bg-color: #ffffff;--popup-secondary-bg-color: #f1f3f5;--popup-text-color: #000000;--popup-text-inverted-color: #ffffff;--sab: env(safe-area-inset-bottom);--sal: env(safe-area-inset-left);--sar: env(safe-area-inset-right);--sat: env(safe-area-inset-top);--select-highlight-color: #339af0;--shadow-island: 0px 7px 14px rgba(0, 0, 0, 0.05), 0px 0px 3.12708px rgba(0, 0, 0, 0.0798), 0px 0px 0.931014px rgba(0, 0, 0, 0.1702);--button-hover-bg: var(--color-gray-10);--default-border-color: var(--color-gray-30);--default-button-size: 2rem;--default-icon-size: 1rem;--lg-button-size: 2.25rem;--lg-icon-size: 1rem;--editor-container-padding: 1rem;--scrollbar-thumb: var(--button-gray-2);--scrollbar-thumb-hover: var(--button-gray-3);--modal-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);--avatar-border-color: var(--color-gray-20);--sidebar-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);--sidebar-border-color: var(--color-gray-20);--sidebar-bg-color: #fff;--library-dropdown-shadow: 0px 15px 6px rgba(0, 0, 0, 0.01), 0px 8px 5px rgba(0, 0, 0, 0.05), 0px 4px 4px rgba(0, 0, 0, 0.09), 0px 1px 2px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);--space-factor: 0.25rem;--text-primary-color: var(--color-gray-80);--color-selection: #6965db;--color-icon-white: #ffffff;--color-primary: #6965db;--color-primary-darker: #5b57d1;--color-primary-darkest: #4a47b1;--color-primary-light: #e3e2fe;--color-primary-light-darker: #d7d5ff;--color-gray-10: #f5f5f5;--color-gray-20: #ebebeb;--color-gray-30: #d6d6d6;--color-gray-40: #b8b8b8;--color-gray-50: #999999;--color-gray-60: #7a7a7a;--color-gray-70: #5c5c5c;--color-gray-80: #3d3d3d;--color-gray-85: #242424;--color-gray-90: #1e1e1e;--color-gray-100: #121212;--color-warning: #fceeca;--color-text-warning: var(--text-primary-color);--color-danger: #db6965;--color-promo: #e70078;--color-success: #268029;--color-success-lighter: #cafccc;--border-radius-md: 0.375rem;--border-radius-lg: 0.5rem}@media screen and (min-device-width: 1921px){.excalidraw{--lg-button-size: 2.5rem;--lg-icon-size: 1.25rem;--default-button-size: 2.25rem;--default-icon-size: 1.25rem}}.excalidraw.theme--dark.theme--dark-background-none{background:none}.excalidraw.theme--dark{--theme-filter: invert(93%) hue-rotate(180deg);--button-destructive-bg-color: #5a0000;--button-destructive-color: #ffa8a8;--button-gray-1: #363636;--button-gray-2: #272727;--button-gray-3: #222;--button-special-active-bg-color: #204624;--dialog-border-color: var(--color-gray-80);--dropdown-icon: url("+p+");--focus-highlight-color: #228be6;--icon-fill-color: var(--color-gray-40);--icon-green-fill-color: #69db7c;--default-bg-color: #121212;--input-bg-color: #121212;--input-border-color: #2e2e2e;--input-hover-bg-color: #181818;--input-label-color: #e9ecef;--island-bg-color: #262627;--keybinding-color: var(--color-gray-60);--link-color: #4dabf7;--overlay-bg-color: rgba(52, 58, 64, 0.12);--popup-bg-color: #2c2c2c;--popup-secondary-bg-color: #222;--popup-text-color: #ced4da;--popup-text-inverted-color: #2c2c2c;--select-highlight-color: #4dabf7;--text-primary-color: var(--color-gray-40);--button-hover-bg: var(--color-gray-80);--default-border-color: var(--color-gray-80);--shadow-island: 0px 13px 33px rgba(0, 0, 0, 0.07), 0px 4.13px 9.94853px rgba(0, 0, 0, 0.0456112), 0px 1.13px 4.13211px rgba(0, 0, 0, 0.035), 0px 0.769896px 1.4945px rgba(0, 0, 0, 0.0243888);--modal-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);--avatar-border-color: var(--color-gray-85);--sidebar-border-color: var(--color-gray-85);--sidebar-bg-color: #191919;--scrollbar-thumb: #343a40;--scrollbar-thumb-hover: #495057;--color-selection: #3530c4;--color-icon-white: var(--color-gray-90);--color-primary: #a8a5ff;--color-primary-darker: #b2aeff;--color-primary-darkest: #beb9ff;--color-primary-light: #4f4d6f;--color-primary-light-darker: #43415e;--color-text-warning: var(--color-gray-80);--color-danger: #ffa8a5;--color-promo: #d297ff}.excalidraw .excalidraw-button{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--button-width, var(--default-button-size));height:var(--button-height, var(--default-button-size));box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--button-border, var(--default-border-color));border-radius:var(--border-radius-lg);cursor:pointer;background-color:var(--button-bg, var(--island-bg-color));color:var(--button-color, var(--text-primary-color))}.excalidraw .excalidraw-button svg{width:var(--button-width, var(--lg-icon-size));height:var(--button-height, var(--lg-icon-size))}.excalidraw .excalidraw-button:hover{background-color:var(--button-hover-bg, var(--island-bg-color));border-color:var(--button-hover-border, var(--button-border, var(--default-border-color)));color:var(--button-hover-color, var(--button-color, var(--text-primary-color, inherit)))}.excalidraw .excalidraw-button:active{background-color:var(--button-active-bg, var(--island-bg-color));border-color:var(--button-active-border, var(--color-primary-darkest))}.excalidraw .excalidraw-button.active{background-color:var(--button-selected-bg, var(--color-primary-light));border-color:var(--button-selected-border, var(--color-primary-light))}.excalidraw .excalidraw-button.active:hover{background-color:var(--button-selected-hover-bg, var(--color-primary-light))}.excalidraw .excalidraw-button.active svg{color:var(--button-color, var(--color-primary-darker))}",""]),t.Z=d},4241:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .Card{display:flex;flex-direction:column;align-items:center;max-width:290px;margin:1em;text-align:center}.excalidraw .Card .Card-icon{font-size:2.6em;display:flex;flex:0 0 auto;padding:1.4rem;border-radius:50%;background:var(--card-color);color:#fff}.excalidraw .Card .Card-icon svg{width:2.8rem;height:2.8rem}.excalidraw .Card .Card-details{font-size:.96em;min-height:90px;padding:0 1em;margin-bottom:auto}.excalidraw .Card .Card-button.ToolIcon_type_button{height:2.5rem;margin-top:1em;margin-bottom:.3em;background-color:var(--card-color)}.excalidraw .Card .Card-button.ToolIcon_type_button:hover{background-color:var(--card-color-darker)}.excalidraw .Card .Card-button.ToolIcon_type_button:active{background-color:var(--card-color-darkest)}.excalidraw .Card .Card-button.ToolIcon_type_button .ToolIcon__label{color:#fff}.excalidraw .Card .Card-button.ToolIcon_type_button .Spinner{--spinner-color: #fff}",""]),t.Z=a},6029:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .Checkbox{margin:4px .3em;display:flex;align-items:center;cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.excalidraw .Checkbox:hover:not(.is-checked) .Checkbox-box:not(:focus){box-shadow:0 0 0 2px #4dabf7}.excalidraw .Checkbox:hover:not(.is-checked) .Checkbox-box:not(:focus) svg{display:block;opacity:.3}.excalidraw .Checkbox:active .Checkbox-box{box-shadow:0 0 2px 1px inset #1c7ed6 !important}.excalidraw .Checkbox:hover .Checkbox-box{background-color:rgba(208,235,255,.2)}.excalidraw .Checkbox.is-checked .Checkbox-box{background-color:#d0ebff}.excalidraw .Checkbox.is-checked .Checkbox-box svg{display:block}.excalidraw .Checkbox.is-checked:hover .Checkbox-box{background-color:#a5d8ff}.excalidraw .Checkbox .Checkbox-box{width:22px;height:22px;padding:0;flex:0 0 auto;margin:0 1em;display:flex;align-items:center;justify-content:center;box-shadow:0 0 0 2px #1c7ed6;background-color:rgba(0,0,0,0);border-radius:4px;color:#1c7ed6;border:0}.excalidraw .Checkbox .Checkbox-box:focus{box-shadow:0 0 0 3px #1c7ed6}.excalidraw .Checkbox .Checkbox-box svg{display:none;width:16px;height:16px;stroke-width:3px}.excalidraw .Checkbox .Checkbox-label{display:flex;align-items:center}.excalidraw .Checkbox .excalidraw-tooltip-icon{width:1em;height:1em}",""]),t.Z=a},4269:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i),l=n(1667),c=n.n(l),s=new URL(n(9669),n.b),u=a()(o()),d=c()(s);u.push([e.id,':export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .focus-visible-none:focus-visible{outline:none !important}.excalidraw .color-picker__heading{padding:0 .5rem;font-size:.75rem;text-align:left}.excalidraw .color-picker-container{display:grid;grid-template-columns:1fr 20px 1.625rem;padding:.25rem 0px;align-items:center}.excalidraw--mobile.excalidraw .color-picker-container{max-width:175px}.excalidraw .color-picker__top-picks{display:flex;justify-content:space-between}.excalidraw .color-picker__button{--radius: 0.25rem;padding:0;margin:0;width:1.35rem;height:1.35rem;border:1px solid var(--color-gray-30);border-radius:var(--radius);-webkit-filter:var(--theme-filter);filter:var(--theme-filter);background-color:var(--swatch-color);background-position:left center;position:relative;font-family:inherit;box-sizing:border-box}.excalidraw .color-picker__button:hover::after{content:"";position:absolute;top:-2px;left:-2px;right:-2px;bottom:-2px;box-shadow:0 0 0 1px var(--color-gray-30);border-radius:calc(var(--radius) + 1px);-webkit-filter:var(--theme-filter);filter:var(--theme-filter)}.excalidraw .color-picker__button.active .color-picker__button-outline{position:absolute;top:-2px;left:-2px;right:-2px;bottom:-2px;box-shadow:0 0 0 1px var(--color-primary-darkest);z-index:1;border-radius:calc(var(--radius) + 1px);-webkit-filter:var(--theme-filter);filter:var(--theme-filter)}.excalidraw .color-picker__button:focus-visible{outline:none}.excalidraw .color-picker__button:focus-visible::after{content:"";position:absolute;top:-4px;right:-4px;bottom:-4px;left:-4px;border:3px solid var(--focus-highlight-color);border-radius:calc(var(--radius) + 1px)}.excalidraw .color-picker__button:focus-visible.active .color-picker__button-outline{display:none}.excalidraw .color-picker__button--large{--radius: 0.5rem;width:1.875rem;height:1.875rem}.excalidraw .color-picker__button.is-transparent{background-image:url('+d+")}.excalidraw .color-picker__button--no-focus-visible{border:0}.excalidraw .color-picker__button--no-focus-visible::after{display:none}.excalidraw .color-picker__button--no-focus-visible:focus-visible{outline:none !important}.excalidraw .color-picker__button.active-color{border-radius:calc(var(--radius) + 1px);width:1.625rem;height:1.625rem}.excalidraw .color-picker__button__hotkey-label{position:absolute;right:4px;bottom:4px;-webkit-filter:none;filter:none;font-size:11px}.excalidraw .color-picker{background:var(--popup-bg-color);border:0 solid rgba(255,255,255,.25);box-shadow:rgba(0,0,0,.25) 0 1px 4px;border-radius:4px;position:absolute}:root[dir=ltr] .excalidraw .color-picker{left:-5.5px}:root[dir=rtl] .excalidraw .color-picker{right:-5.5px}.excalidraw .color-picker-control-container{display:grid;grid-template-columns:auto 1fr;align-items:center;-webkit-column-gap:.5rem;column-gap:.5rem}.excalidraw .color-picker-control-container+.popover{position:static}.excalidraw .color-picker-popover-container{margin-top:-0.25rem}:root[dir=ltr] .excalidraw .color-picker-popover-container{margin-left:.5rem}:root[dir=rtl] .excalidraw .color-picker-popover-container{margin-left:-3rem}.excalidraw .color-picker-triangle{width:0;height:0;border-style:solid;border-width:0 9px 10px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) var(--popup-bg-color);position:absolute;top:10px}:root[dir=ltr] .excalidraw .color-picker-triangle{-webkit-transform:rotate(270deg);transform:rotate(270deg);left:-14px}:root[dir=rtl] .excalidraw .color-picker-triangle{-webkit-transform:rotate(90deg);transform:rotate(90deg);right:-14px}.excalidraw .color-picker-triangle-shadow{border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,.1)}:root[dir=ltr] .excalidraw .color-picker-triangle-shadow{left:-14px}:root[dir=rtl] .excalidraw .color-picker-triangle-shadow{right:-16px}.excalidraw .color-picker-content{display:flex;flex-direction:column;gap:.75rem;outline:none}.excalidraw .color-picker-content--default{padding:.5rem;display:grid;grid-template-columns:repeat(5, 1.875rem);grid-gap:.25rem;border-radius:4px}.excalidraw .color-picker-content--default:focus{outline:none;box-shadow:0 0 0 2px var(--focus-highlight-color)}.excalidraw .color-picker-content--canvas{display:flex;flex-direction:column;padding:.25rem}.excalidraw .color-picker-content--canvas-title{color:#868e96;font-size:12px;padding:0 .25rem}.excalidraw .color-picker-content--canvas-colors{padding:.5rem 0}.excalidraw .color-picker-content--canvas-colors .color-picker-swatch{margin:0 .25rem}.excalidraw .color-picker-content .color-input-container{grid-column:1/span 5}.excalidraw .color-picker-swatch{position:relative;height:1.875rem;width:1.875rem;cursor:pointer;border-radius:4px;margin:0;box-sizing:border-box;border:1px solid #ddd;background-color:currentColor !important;-webkit-filter:var(--theme-filter);filter:var(--theme-filter)}.excalidraw .color-picker-swatch:focus{box-shadow:0 0 4px 1px currentColor;border-color:var(--select-highlight-color)}.excalidraw .color-picker-transparent{border-radius:4px;box-shadow:rgba(0,0,0,.1) 0 0 0 1px inset;position:absolute;top:0;right:0;bottom:0;left:0}.excalidraw .color-picker-transparent,.excalidraw .color-picker-label-swatch{background:url("+d+') left center}.excalidraw .color-picker-hash{height:var(--default-button-size);flex-shrink:0;padding:.5rem .5rem .5rem .75rem;border:1px solid var(--default-border-color);border-right:0;box-sizing:border-box;color:var(--input-label-color);display:flex;align-items:center;justify-content:center;position:relative}:root[dir=ltr] .excalidraw .color-picker-hash{border-radius:var(--border-radius-lg) 0 0 var(--border-radius-lg)}:root[dir=rtl] .excalidraw .color-picker-hash{border-radius:0 var(--border-radius-lg) var(--border-radius-lg) 0;border-right:1px solid var(--default-border-color);border-left:0}.excalidraw .color-input-container{display:flex}.excalidraw .color-input-container:focus-within{box-shadow:0 0 0 1px var(--color-primary-darkest);border-radius:var(--border-radius-lg)}.excalidraw .color-picker__input-label{display:grid;grid-template-columns:auto 1fr auto auto;gap:8px;align-items:center;border:1px solid var(--default-border-color);border-radius:8px;padding:0 12px;margin:8px;box-sizing:border-box}.excalidraw .color-picker__input-label:focus-within{box-shadow:0 0 0 1px var(--color-primary-darkest);border-radius:var(--border-radius-lg)}.excalidraw .color-picker__input-hash{padding:0 .25rem}.excalidraw .color-picker-input{box-sizing:border-box;width:100%;margin:0;font-size:.875rem;font-family:inherit;background-color:rgba(0,0,0,0);color:var(--text-primary-color);border:0;outline:none;height:var(--default-button-size);border:1px solid var(--default-border-color);border-left:0;letter-spacing:.4px;padding:.5rem;padding-left:.25rem;-webkit-appearance:none;appearance:none}:root[dir=ltr] .excalidraw .color-picker-input{border-radius:0 var(--border-radius-lg) var(--border-radius-lg) 0}:root[dir=rtl] .excalidraw .color-picker-input{border-radius:var(--border-radius-lg) 0 0 var(--border-radius-lg);border-left:1px solid var(--default-border-color);border-right:0}.excalidraw .color-picker-input:focus-visible{box-shadow:none}.excalidraw .color-picker-label-swatch-container{border:1px solid var(--default-border-color);border-radius:var(--border-radius-lg);width:var(--default-button-size);height:var(--default-button-size);box-sizing:border-box;overflow:hidden}.excalidraw .color-picker-label-swatch{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--button-width, var(--default-button-size));height:var(--button-height, var(--default-button-size));box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--button-border, var(--default-border-color));border-radius:var(--border-radius-lg);cursor:pointer;background-color:var(--button-bg, var(--island-bg-color));color:var(--button-color, var(--text-primary-color));background-color:var(--swatch-color) !important;overflow:hidden;position:relative;-webkit-filter:var(--theme-filter);filter:var(--theme-filter);border:0 !important}.excalidraw .color-picker-label-swatch svg{width:var(--button-width, var(--lg-icon-size));height:var(--button-height, var(--lg-icon-size))}.excalidraw .color-picker-label-swatch:hover{background-color:var(--button-hover-bg, var(--island-bg-color));border-color:var(--button-hover-border, var(--button-border, var(--default-border-color)));color:var(--button-hover-color, var(--button-color, var(--text-primary-color, inherit)))}.excalidraw .color-picker-label-swatch:active{background-color:var(--button-active-bg, var(--island-bg-color));border-color:var(--button-active-border, var(--color-primary-darkest))}.excalidraw .color-picker-label-swatch.active{background-color:var(--button-selected-bg, var(--color-primary-light));border-color:var(--button-selected-border, var(--color-primary-light))}.excalidraw .color-picker-label-swatch.active:hover{background-color:var(--button-selected-hover-bg, var(--color-primary-light))}.excalidraw .color-picker-label-swatch.active svg{color:var(--button-color, var(--color-primary-darker))}.excalidraw .color-picker-label-swatch:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:var(--swatch-color)}.excalidraw .color-picker-keybinding{position:absolute;bottom:2px;font-size:.7em}:root[dir=ltr] .excalidraw .color-picker-keybinding{right:2px}:root[dir=rtl] .excalidraw .color-picker-keybinding{left:2px}.excalidraw--mobile.excalidraw .color-picker-keybinding{display:none}.excalidraw .color-picker-type-canvasBackground .color-picker-keybinding{color:#aaa}.excalidraw .color-picker-type-elementBackground .color-picker-keybinding{color:#fff}.excalidraw .color-picker-swatch[aria-label=transparent] .color-picker-keybinding{color:#aaa}.excalidraw .color-picker-type-elementStroke .color-picker-keybinding{color:#d4d4d4}.excalidraw.theme--dark .color-picker-type-elementBackground .color-picker-keybinding{color:#000}.excalidraw.theme--dark .color-picker-swatch[aria-label=transparent] .color-picker-keybinding{color:#000}',""]),t.Z=u},9393:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .confirm-dialog-buttons{display:flex;-webkit-column-gap:.5rem;column-gap:.5rem;justify-content:flex-end}",""]),t.Z=a},6578:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,':export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .context-menu{position:relative;border-radius:4px;box-shadow:0 3px 10px rgba(0,0,0,.2);padding:0;list-style:none;-webkit-user-select:none;user-select:none;margin:-0.25rem 0 0 .125rem;padding:.5rem 0;background-color:var(--popup-secondary-bg-color);border:1px solid var(--button-gray-3);cursor:default}.excalidraw .context-menu button{color:var(--popup-text-color)}.excalidraw .context-menu-item{position:relative;width:100%;min-width:9.5rem;margin:0;padding:.25rem 1rem .25rem 1.25rem;text-align:start;border-radius:0;background-color:rgba(0,0,0,0);border:none;white-space:nowrap;font-family:inherit;display:grid;grid-template-columns:1fr .2fr;align-items:center}.excalidraw .context-menu-item.checkmark::before{position:absolute;left:6px;margin-bottom:1px;content:"✓"}.excalidraw .context-menu-item.dangerous .context-menu-item__label{color:#f03e3e}.excalidraw .context-menu-item .context-menu-item__label{justify-self:start;-webkit-margin-end:20px;margin-inline-end:20px}.excalidraw .context-menu-item .context-menu-item__shortcut{justify-self:end;opacity:.6;font-family:inherit;font-size:.7rem}.excalidraw .context-menu-item:hover{color:var(--popup-bg-color);background-color:var(--select-highlight-color)}.excalidraw .context-menu-item:hover.dangerous{background-color:#fa5252}.excalidraw .context-menu-item:hover.dangerous .context-menu-item__label{color:var(--popup-bg-color)}.excalidraw .context-menu-item:focus{z-index:1}.excalidraw--mobile.excalidraw .context-menu-item{display:block}.excalidraw--mobile.excalidraw .context-menu-item .context-menu-item__label{-webkit-margin-end:0;margin-inline-end:0}.excalidraw--mobile.excalidraw .context-menu-item .context-menu-item__shortcut{display:none}.excalidraw .context-menu-item-separator{border:none;border-top:1px solid #adb5bd}',""]),t.Z=a},9482:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .Dialog{-webkit-user-select:text;user-select:text;cursor:auto}.excalidraw .Dialog__title{margin:0;text-align:left;font-size:1.25rem;border-bottom:1px solid var(--dialog-border-color);padding:0 0 .75rem;margin-bottom:1.5rem}.excalidraw .Dialog__close{color:var(--color-gray-40);margin:0;position:absolute;top:.75rem;right:.5rem;border:0;background-color:rgba(0,0,0,0);line-height:0;cursor:pointer}.excalidraw .Dialog__close:hover{color:var(--color-gray-60)}.excalidraw .Dialog__close:active{color:var(--color-gray-40)}.excalidraw--mobile.excalidraw .Dialog__close{top:1.25rem;right:1.25rem}.excalidraw .Dialog__close svg{width:1.5rem;height:1.5rem}",""]),t.Z=a},6148:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .Dialog__action-button{position:relative;display:flex;-webkit-column-gap:.5rem;column-gap:.5rem;align-items:center;padding:.5rem 1.5rem;border:1px solid var(--default-border-color);background-color:rgba(0,0,0,0);height:3rem;border-radius:var(--border-radius-lg);letter-spacing:.4px;color:inherit;font-family:inherit;font-size:.875rem;font-weight:600;-webkit-user-select:none;user-select:none}.excalidraw .Dialog__action-button svg{display:block;width:1rem;height:1rem}.excalidraw .Dialog__action-button--danger{background-color:var(--color-danger);border-color:var(--color-danger);color:#fff}.excalidraw .Dialog__action-button--primary{background-color:var(--color-primary);border-color:var(--color-primary);color:#fff}.excalidraw.theme--dark .Dialog__action-button--danger{color:var(--color-gray-100)}.excalidraw.theme--dark .Dialog__action-button--primary{color:var(--color-gray-100)}",""]),t.Z=a},7955:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i),l=n(1667),c=n.n(l),s=new URL(n(9669),n.b),u=a()(o()),d=c()(s);u.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .ExportDialog__preview{--preview-padding: calc(var(--space-factor) * 4);background:url("+d+") left center;text-align:center;padding:var(--preview-padding);margin-bottom:calc(var(--space-factor)*3);display:flex;justify-content:center;align-items:center}.excalidraw .ExportDialog__preview canvas{max-width:calc(100% - var(--preview-padding)*2);max-height:25rem}.excalidraw.theme--dark .ExportDialog__preview canvas{-webkit-filter:none;filter:none}.excalidraw .ExportDialog__actions{width:100%;display:flex;grid-gap:calc(var(--space-factor)*2);align-items:top;justify-content:space-between}.excalidraw--mobile.excalidraw .ExportDialog{display:flex;flex-direction:column}.excalidraw--mobile.excalidraw .ExportDialog__actions{flex-direction:column;align-items:center}.excalidraw--mobile.excalidraw .ExportDialog__actions>*{margin-bottom:calc(var(--space-factor)*3)}.excalidraw--mobile.excalidraw .ExportDialog__preview canvas{max-height:30vh}.excalidraw--mobile.excalidraw .ExportDialog__dialog,.excalidraw--mobile.excalidraw .ExportDialog__dialog .Island{height:100%;box-sizing:border-box}.excalidraw--mobile.excalidraw .ExportDialog__dialog .Island{overflow-y:auto}.excalidraw .ExportDialog--json .ExportDialog-cards{display:grid;grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));justify-items:center;row-gap:2em}@media(max-width: 460px){.excalidraw .ExportDialog--json .ExportDialog-cards{grid-template-columns:repeat(auto-fit, minmax(240px, 1fr))}.excalidraw .ExportDialog--json .ExportDialog-cards .Card-details{min-height:40px}}.excalidraw .ExportDialog--json .ExportDialog-cards .ProjectName{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin:1em auto;align-items:flex-start;flex-direction:column}.excalidraw .ExportDialog--json .ExportDialog-cards .ProjectName .TextInput{width:auto}.excalidraw .ExportDialog--json .ExportDialog-cards .ProjectName-label{margin:.625em 0;font-weight:bold}.excalidraw button.ExportDialog-imageExportButton{border:0;width:5rem;height:5rem;margin:0 .2em;padding:0;display:flex;align-items:center;justify-content:center;border-radius:1rem;background-color:var(--button-color);box-shadow:0 3px 5px -1px rgba(0,0,0,.28),0 6px 10px 0 rgba(0,0,0,.14);font-family:Cascadia;font-size:1.8em;color:#fff}.excalidraw button.ExportDialog-imageExportButton:hover{background-color:var(--button-color-darker)}.excalidraw button.ExportDialog-imageExportButton:active{background-color:var(--button-color-darkest);box-shadow:none}.excalidraw button.ExportDialog-imageExportButton svg{width:.9em}",""]),t.Z=u},7522:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .excalidraw-eye-dropper-container,.excalidraw .excalidraw-eye-dropper-backdrop{position:absolute;width:100%;height:100%;z-index:2;touch-action:none}.excalidraw .excalidraw-eye-dropper-container{pointer-events:none}.excalidraw .excalidraw-eye-dropper-backdrop{pointer-events:all}.excalidraw .excalidraw-eye-dropper-preview{pointer-events:none;width:3rem;height:3rem;position:fixed;z-index:999999;border-radius:1rem;border:1px solid var(--default-border-color);-webkit-filter:var(--theme-filter);filter:var(--theme-filter)}.excalidraw .excalidraw-eye-dropper-trigger{width:1.25rem;height:1.25rem;cursor:pointer;padding:4px;margin-right:-4px;margin-left:-2px;border-radius:.5rem;color:var(--icon-fill-color)}.excalidraw .excalidraw-eye-dropper-trigger:hover{background:var(--button-hover-bg)}.excalidraw .excalidraw-eye-dropper-trigger.selected{color:var(--color-primary);background:var(--color-primary-light)}",""]),t.Z=a},8960:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,':export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .ExcButton{display:flex;justify-content:center;align-items:center;flex-shrink:0;flex-wrap:nowrap;border-radius:.5rem;font-family:"Assistant";-webkit-user-select:none;user-select:none;transition:all 150ms ease-out}.excalidraw .ExcButton--color-primary{color:var(--input-bg-color);--accent-color: var(--color-primary);--accent-color-hover: var(--color-primary-darker);--accent-color-active: var(--color-primary-darkest)}.excalidraw .ExcButton--color-danger{color:var(--input-bg-color);--accent-color: var(--color-danger);--accent-color-hover: #d65550;--accent-color-active: #d1413c}.excalidraw .ExcButton--size-large{font-weight:400;font-size:.875rem;height:3rem;padding:.5rem 1.5rem;gap:.75rem;letter-spacing:.4px}.excalidraw .ExcButton--size-medium{font-weight:600;font-size:.75rem;height:2.5rem;padding:.5rem 1rem;gap:.5rem;letter-spacing:normal}.excalidraw .ExcButton--variant-filled{background:var(--accent-color);border:1px solid rgba(0,0,0,0)}.excalidraw .ExcButton--variant-filled:hover{background:var(--accent-color-hover)}.excalidraw .ExcButton--variant-filled:active{background:var(--accent-color-active)}.excalidraw .ExcButton--variant-outlined,.excalidraw .ExcButton--variant-icon{border:1px solid var(--accent-color);color:var(--accent-color);background:rgba(0,0,0,0)}.excalidraw .ExcButton--variant-outlined:hover,.excalidraw .ExcButton--variant-icon:hover{border:1px solid var(--accent-color-hover);color:var(--accent-color-hover)}.excalidraw .ExcButton--variant-outlined:active,.excalidraw .ExcButton--variant-icon:active{border:1px solid var(--accent-color-active);color:var(--accent-color-active)}.excalidraw .ExcButton--variant-icon{padding:.5rem .75rem;width:3rem}.excalidraw .ExcButton__icon{width:1.25rem;height:1.25rem}',""]),t.Z=a},3195:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .FixedSideContainer{position:absolute;pointer-events:none}.excalidraw .FixedSideContainer>*{pointer-events:all}.excalidraw .FixedSideContainer_side_top{left:var(--editor-container-padding);top:var(--editor-container-padding);right:var(--editor-container-padding);bottom:var(--editor-container-padding);z-index:2}.excalidraw .FixedSideContainer_side_top.zen-mode{right:42px}",""]),t.Z=a},2978:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .HelpDialog .Modal__content{max-width:960px}.excalidraw .HelpDialog h3{margin:1.5rem 0;font-weight:bold;font-size:1.125rem}.excalidraw .HelpDialog__header{display:flex;flex-wrap:wrap;gap:.75rem}.excalidraw .HelpDialog__btn{display:flex;-webkit-column-gap:.5rem;column-gap:.5rem;align-items:center;border:1px solid var(--default-border-color);padding:.625rem 1rem;border-radius:var(--border-radius-lg);color:var(--text-primary-color);font-weight:600;font-size:.75rem;letter-spacing:.4px}.excalidraw .HelpDialog__btn:hover{text-decoration:none}.excalidraw .HelpDialog__link-icon{line-height:0}.excalidraw .HelpDialog__link-icon svg{width:1rem;height:1rem}.excalidraw .HelpDialog__islands-container{display:grid;grid-column-gap:1.5rem;grid-row-gap:2rem}@media screen and (min-width: 1024px){.excalidraw .HelpDialog__islands-container{grid-template-columns:1fr 1fr}}@media screen and (min-width: 1024px){.excalidraw .HelpDialog__island--tools{grid-area:1/1/2/2}.excalidraw .HelpDialog__island--view{grid-area:2/1/3/2}.excalidraw .HelpDialog__island--editor{grid-area:1/2/3/3}}.excalidraw .HelpDialog__island h4{font-size:1rem;font-weight:bold;margin:0;margin-bottom:.625rem}.excalidraw .HelpDialog__island-content{border:1px solid var(--dialog-border-color);border-radius:var(--border-radius-lg)}.excalidraw .HelpDialog__shortcut{border-bottom:1px solid var(--dialog-border-color);padding:.375rem .75rem;display:flex;justify-content:space-between;align-items:center;font-size:.875rem;-webkit-column-gap:.5rem;column-gap:.5rem}.excalidraw .HelpDialog__shortcut:last-child{border-bottom:none}.excalidraw .HelpDialog__key-container{display:flex;align-items:center;-webkit-column-gap:.25rem;column-gap:.25rem;flex-shrink:0}.excalidraw .HelpDialog__key{display:flex;box-sizing:border-box;font-size:.625rem;background-color:var(--color-primary-light);border-radius:var(--border-radius-md);padding:.5rem;word-break:keep-all;align-items:center;font-family:inherit;line-height:1}",""]),t.Z=a},1587:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .HintViewer{pointer-events:none;box-sizing:border-box;position:absolute;display:flex;justify-content:center;left:0;top:100%;max-width:100%;width:100%;margin-top:.5rem;text-align:center;color:var(--color-gray-40);font-size:.75rem}.excalidraw--mobile.excalidraw .HintViewer{position:static;padding-right:2rem}.excalidraw .HintViewer>span{padding:.25rem}.excalidraw.theme--dark .HintViewer{color:var(--color-gray-60)}",""]),t.Z=a},2561:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.home-button{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--button-width, var(--default-button-size));height:var(--button-height, var(--default-button-size));box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--button-border, var(--default-border-color));border-radius:var(--border-radius-lg);cursor:pointer;background-color:var(--button-bg, var(--island-bg-color));color:var(--button-color, var(--text-primary-color));background-color:var(--island-bg-color);border:0;width:auto;height:var(--lg-button-size);display:flex;align-items:center;gap:.5rem;line-height:0;font-size:.75rem;letter-spacing:.4px}.home-button svg{width:var(--button-width, var(--lg-icon-size));height:var(--button-height, var(--lg-icon-size))}.home-button:hover{background-color:var(--button-hover-bg, var(--island-bg-color));border-color:var(--button-hover-border, var(--button-border, var(--default-border-color)));color:var(--button-hover-color, var(--button-color, var(--text-primary-color, inherit)))}.home-button:active{background-color:var(--button-active-bg, var(--island-bg-color));border-color:var(--button-active-border, var(--color-primary-darkest))}.home-button.active{background-color:var(--button-selected-bg, var(--color-primary-light));border-color:var(--button-selected-border, var(--color-primary-light))}.home-button.active:hover{background-color:var(--button-selected-hover-bg, var(--color-primary-light))}.home-button.active svg{color:var(--button-color, var(--color-primary-darker))}.home-button svg{width:var(--lg-icon-size);height:var(--lg-icon-size)}.home-button__label{display:none}@media screen and (min-width: 1024px){.home-button__label{display:block}}",""]),t.Z=a},9478:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,':export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .picker-container{display:inline-block;box-sizing:border-box;margin-right:.25rem}.excalidraw .picker{background:var(--popup-bg-color);border:0 solid rgba(255,255,255,.25);box-shadow:rgba(0,0,0,.25) 2px 2px 4px 2px;border-radius:4px;position:absolute}.excalidraw .picker-container button,.excalidraw .picker button{position:relative;display:flex;align-items:center;justify-content:center}.excalidraw .picker-container button:focus-visible,.excalidraw .picker button:focus-visible{outline:rgba(0,0,0,0);background-color:var(--button-gray-2)}.excalidraw .picker-container button:focus-visible svg,.excalidraw .picker button:focus-visible svg{opacity:1}.excalidraw .picker-container button:hover,.excalidraw .picker button:hover{background-color:var(--button-gray-2)}.excalidraw .picker-container button:active,.excalidraw .picker button:active{background-color:var(--button-gray-3)}.excalidraw .picker-container button:disabled,.excalidraw .picker button:disabled{cursor:not-allowed}.excalidraw .picker-container button svg,.excalidraw .picker button svg{margin:0;width:36px;height:18px;pointer-events:none}.excalidraw .picker button{padding:.25rem .28rem .35rem .25rem}.excalidraw .picker-triangle{width:0;height:0;position:relative;top:-10px;z-index:10}:root[dir=ltr] .excalidraw .picker-triangle{left:12px}:root[dir=rtl] .excalidraw .picker-triangle{right:12px}.excalidraw .picker-triangle:before{content:"";position:absolute;border-style:solid;border-width:0 9px 10px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,.1);top:-1px}.excalidraw .picker-triangle:after{content:"";position:absolute;border-style:solid;border-width:0 9px 10px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) var(--popup-bg-color)}.excalidraw .picker-content{padding:.5rem;display:grid;grid-template-columns:repeat(3, auto);grid-gap:.5rem;border-radius:4px}:root[dir=rtl] .excalidraw .picker-content{padding:.4rem}.excalidraw .picker-keybinding{position:absolute;bottom:2px;font-size:.7em;color:var(--keybinding-color)}:root[dir=ltr] .excalidraw .picker-keybinding{right:2px}:root[dir=rtl] .excalidraw .picker-keybinding{left:2px}.excalidraw--mobile.excalidraw .picker-keybinding{display:none}.excalidraw .picker-type-canvasBackground .picker-keybinding{color:#aaa}.excalidraw .picker-type-elementBackground .picker-keybinding{color:#fff}.excalidraw .picker-swatch[aria-label=transparent] .picker-keybinding{color:#aaa}.excalidraw .picker-type-elementStroke .picker-keybinding{color:#d4d4d4}.excalidraw.theme--dark .picker-type-elementBackground .picker-keybinding{color:#000}.excalidraw.theme--dark .picker-swatch[aria-label=transparent] .picker-keybinding{color:#000}',""]),t.Z=a},9706:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i),l=n(1667),c=n.n(l),s=new URL(n(9669),n.b),u=a()(o()),d=c()(s);u.push([e.id,':export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw{--ImageExportModal-preview-border: #d6d6d6}.excalidraw.theme--dark{--ImageExportModal-preview-border: #5c5c5c}.excalidraw .ImageExportModal{display:flex;flex-direction:row;justify-content:space-between}.excalidraw .ImageExportModal h3{font-family:"Assistant";font-style:normal;font-weight:700;font-size:1.313rem;line-height:130%;padding:0;margin:0}.excalidraw--mobile.excalidraw .ImageExportModal h3{display:none}.excalidraw .ImageExportModal>h3{display:none}.excalidraw--mobile.excalidraw .ImageExportModal>h3{display:block}.excalidraw--mobile.excalidraw .ImageExportModal{flex-direction:column;height:calc(100vh - 5rem)}.excalidraw .ImageExportModal__preview{box-sizing:border-box;display:flex;flex-direction:column;align-items:center;height:360px;width:55%;margin-right:1.5rem}.excalidraw--mobile.excalidraw .ImageExportModal__preview{max-width:unset;margin-right:unset;width:100%;height:unset;flex-grow:1}.excalidraw .ImageExportModal__preview__filename>input{margin-top:1rem}.excalidraw .ImageExportModal__preview__canvas{box-sizing:border-box;width:100%;height:100%;display:flex;flex-grow:1;justify-content:center;align-items:center;background:url('+d+') left center;border:1px solid var(--ImageExportModal-preview-border);border-radius:12px;overflow:hidden;padding:1rem}.excalidraw .ImageExportModal__preview__canvas>canvas{max-width:calc(100% - 2rem);max-height:calc(100% - 2rem);-webkit-filter:none !important;filter:none !important}.excalidraw--mobile.excalidraw .ImageExportModal__preview__canvas>canvas{max-height:100%}.excalidraw--mobile.excalidraw .ImageExportModal__preview__canvas{margin-top:24px;max-width:unset}.excalidraw .ImageExportModal__settings{display:flex;flex-direction:column;flex-wrap:wrap;gap:18px}.excalidraw--mobile.excalidraw .ImageExportModal__settings{margin-left:unset;margin-top:1rem;flex-direction:row;gap:6px 34px;align-content:flex-start}.excalidraw .ImageExportModal__settings__setting{display:flex;flex-direction:row;justify-content:space-between;align-items:center}.excalidraw--mobile.excalidraw .ImageExportModal__settings__setting{flex-direction:column;align-items:start;justify-content:unset;height:52px}.excalidraw .ImageExportModal__settings__setting__label{display:flex;flex-direction:row;align-items:center;font-family:"Assistant";font-weight:600;font-size:1rem;line-height:150%}.excalidraw .ImageExportModal__settings__setting__label svg{width:20px;height:20px;margin-left:10px}.excalidraw .ImageExportModal__settings__setting__content{display:flex;height:100%;align-items:center}.excalidraw .ImageExportModal__settings__buttons{flex-grow:1;flex-wrap:wrap;display:flex;flex-direction:row;gap:11px;align-items:flex-end;align-content:flex-end}.excalidraw--mobile.excalidraw .ImageExportModal__settings__buttons{padding-top:32px;flex-basis:100%;justify-content:center}',""]),t.Z=u},7369:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .Island{--padding: 0;box-sizing:border-box;background-color:var(--island-bg-color);box-shadow:var(--shadow-island);border-radius:var(--border-radius-lg);padding:calc(var(--padding)*var(--space-factor));position:relative;transition:box-shadow .5s ease-in-out}.excalidraw .Island.zen-mode{box-shadow:none}",""]),t.Z=a},1434:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .layer-ui__wrapper.animate{transition:width .1s ease-in-out}.excalidraw .layer-ui__wrapper{position:absolute;width:100%;height:100%;pointer-events:none;z-index:var(--zIndex-layerUI)}.excalidraw .layer-ui__wrapper__top-right{display:flex;gap:.75rem}.excalidraw .layer-ui__wrapper__footer{width:100%}.excalidraw .layer-ui__wrapper__footer-right{z-index:100;display:flex}.excalidraw .layer-ui__wrapper .zen-mode-transition{transition:-webkit-transform .5s ease-in-out;transition:transform .5s ease-in-out;transition:transform .5s ease-in-out, -webkit-transform .5s ease-in-out}:root[dir=ltr] .excalidraw .layer-ui__wrapper .zen-mode-transition.transition-left{-webkit-transform:translate(-999px, 0);transform:translate(-999px, 0)}:root[dir=ltr] .excalidraw .layer-ui__wrapper .zen-mode-transition.transition-right{-webkit-transform:translate(999px, 0);transform:translate(999px, 0)}:root[dir=rtl] .excalidraw .layer-ui__wrapper .zen-mode-transition.transition-left{-webkit-transform:translate(999px, 0);transform:translate(999px, 0)}:root[dir=rtl] .excalidraw .layer-ui__wrapper .zen-mode-transition.transition-right{-webkit-transform:translate(-999px, 0);transform:translate(-999px, 0)}.excalidraw .layer-ui__wrapper .zen-mode-transition.layer-ui__wrapper__footer-left--transition-bottom{-webkit-transform:translate(0, 92px);transform:translate(0, 92px)}.excalidraw .layer-ui__wrapper .disable-zen-mode{height:30px;position:absolute;bottom:10px;font-size:10px;padding:10px;font-weight:500;opacity:0;visibility:hidden;transition:visibility 0s linear 0s,opacity .5s}[dir=ltr] .excalidraw .layer-ui__wrapper .disable-zen-mode{right:15px}[dir=rtl] .excalidraw .layer-ui__wrapper .disable-zen-mode{left:15px}.excalidraw .layer-ui__wrapper .disable-zen-mode--visible{opacity:1;visibility:visible;transition:visibility 0s linear 300ms,opacity .5s;transition-delay:.8s}.excalidraw .layer-ui__wrapper .layer-ui__wrapper__footer-left,.excalidraw .layer-ui__wrapper .layer-ui__wrapper__footer-right,.excalidraw .layer-ui__wrapper .disable-zen-mode--visible{pointer-events:all}.excalidraw .layer-ui__wrapper .layer-ui__wrapper__footer-right{margin-top:auto;margin-bottom:auto}",""]),t.Z=a},8923:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,'.excalidraw .layer-ui__library{display:flex;flex-direction:column;flex:1 1 auto}.excalidraw .library-actions-counter{background-color:var(--color-primary);color:var(--color-primary-light);font-weight:bold;display:flex;align-items:center;justify-content:center;border-radius:50%;width:1rem;height:1rem;position:absolute;bottom:-0.25rem;right:-0.25rem;font-size:.625rem;pointer-events:none}.excalidraw .layer-ui__library-message{padding:2rem;min-width:200px;display:flex;flex-direction:column;align-items:center;flex-grow:1;justify-content:center}.excalidraw .layer-ui__library-message span{font-size:.8em}.excalidraw .publish-library-success .Dialog__content{display:flex;flex-direction:column}.excalidraw .publish-library-success-close.ToolIcon_type_button{background-color:#228be6;align-self:flex-end}.excalidraw .publish-library-success-close.ToolIcon_type_button:hover{background-color:#1971c2}.excalidraw .publish-library-success-close.ToolIcon_type_button .ToolIcon__icon{width:auto;font-size:1rem;color:#fff;padding:0 .5rem}.excalidraw .library-menu-control-buttons{display:flex;align-items:center;justify-content:center;gap:.625rem;position:relative}.excalidraw .library-menu-control-buttons--at-bottom::before{content:"";width:calc(100% - 1.5rem);height:1px;position:absolute;top:-1px;background:var(--sidebar-border-color)}.excalidraw .library-menu-browse-button{flex:1;height:var(--lg-button-size);display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative;border-radius:var(--border-radius-lg);background-color:var(--color-primary);color:#fff;text-align:center;white-space:nowrap;text-decoration:none !important;font-weight:600;font-size:.75rem}.excalidraw .library-menu-browse-button:hover{background-color:var(--color-primary-darker)}.excalidraw .library-menu-browse-button:active{background-color:var(--color-primary-darkest)}.excalidraw.theme--dark .library-menu-browse-button{color:var(--color-gray-100)}.excalidraw.excalidraw--mobile .library-menu-browse-button{height:var(--default-button-size)}.excalidraw .layer-ui__library .dropdown-menu{width:auto;top:initial;right:0;left:initial;bottom:100%;margin-bottom:.625rem}.excalidraw .layer-ui__library .dropdown-menu .dropdown-menu-container{width:196px;box-shadow:var(--library-dropdown-shadow);border-radius:var(--border-radius-lg);padding:.25rem .5rem}.excalidraw .layer-ui__library .library-menu-dropdown-container{position:relative}.excalidraw .layer-ui__library .library-menu-dropdown-container--in-heading{padding:0;position:absolute;top:1rem;right:.75rem;z-index:1}.excalidraw .layer-ui__library .library-menu-dropdown-container--in-heading .dropdown-menu{top:100%}',""]),t.Z=a},6440:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw{--container-padding-y: 1.5rem;--container-padding-x: 0.75rem}.excalidraw .library-menu-items__no-items{text-align:center;color:var(--color-gray-70);line-height:1.5;font-size:.875rem;width:100%}.excalidraw .library-menu-items__no-items__label{color:var(--color-primary);font-weight:bold;font-size:1.125rem;margin-bottom:.75rem}.excalidraw.theme--dark .library-menu-items__no-items{color:var(--color-gray-40)}.excalidraw .library-menu-items-container{width:100%;display:flex;flex-grow:1;flex-shrink:1;flex-basis:0;overflow-y:auto;flex-direction:column;height:100%;justify-content:center;margin:0;position:relative}.excalidraw .library-menu-items-container>div{padding-left:.75rem;padding-right:.75rem}.excalidraw .library-menu-items-container__row{display:grid;grid-template-columns:repeat(4, 1fr);gap:1rem}.excalidraw .library-menu-items-container__items{row-gap:.5rem;padding:var(--container-padding-y) 0;flex:1;overflow-y:auto;overflow-x:hidden;margin-bottom:1rem}.excalidraw .library-menu-items-container__header{color:var(--color-primary);font-size:1.125rem;font-weight:bold;margin-bottom:.75rem;width:100%;padding-right:4rem;box-sizing:border-box}.excalidraw .library-menu-items-container__header--excal{margin-top:2rem}.excalidraw .library-menu-items-container__grid{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;grid-gap:1rem}.excalidraw .library-menu-items-container .separator{width:100%;display:flex;align-items:center;font-weight:500;font-size:.9rem;margin:.6em .2em;color:var(--text-primary-color)}.excalidraw .library-menu-items-private-library-container{min-height:3.75rem;width:100%}",""]),t.Z=a},2701:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .library-unit{align-items:center;border:1px solid rgba(0,0,0,0);display:flex;justify-content:center;position:relative;width:55px;height:55px;box-sizing:border-box;border-radius:var(--border-radius-lg)}.excalidraw .library-unit--hover{border-color:var(--color-primary)}.excalidraw .library-unit--selected{border-color:var(--color-primary);border-width:1px}.excalidraw .library-unit--skeleton{opacity:.5;background:linear-gradient(-45deg, var(--color-gray-10), var(--color-gray-20), var(--color-gray-10));background-size:200% 200%;-webkit-animation:library-unit__skeleton-opacity-animation .2s linear;animation:library-unit__skeleton-opacity-animation .2s linear}.excalidraw.theme--dark .library-unit--skeleton{background-image:linear-gradient(-45deg, var(--color-gray-100), var(--color-gray-80), var(--color-gray-100))}.excalidraw .library-unit__dragger{display:flex;align-items:center;justify-content:center;height:100%;width:100%}.excalidraw .library-unit__dragger>svg{-webkit-filter:var(--theme-filter);filter:var(--theme-filter);flex-grow:1;max-height:100%;max-width:100%}.excalidraw .library-unit__checkbox-container,.excalidraw .library-unit__checkbox-container:hover,.excalidraw .library-unit__checkbox-container:active{align-items:center;background:none;border:none;color:var(--icon-fill-color);display:flex;justify-content:center;margin:0;padding:.5rem;position:absolute;left:2rem;bottom:2rem;cursor:pointer}.excalidraw .library-unit__checkbox-container input,.excalidraw .library-unit__checkbox-container:hover input,.excalidraw .library-unit__checkbox-container:active input{cursor:pointer}.excalidraw .library-unit__checkbox{position:absolute;top:.125rem;right:.125rem;margin:0}.excalidraw .library-unit__checkbox .Checkbox-box{margin:0;width:1rem;height:1rem;border-radius:4px;background-color:var(--color-primary-light);border:1px solid var(--color-primary);box-shadow:none !important;padding:2px}.excalidraw .library-unit__checkbox.Checkbox:hover .Checkbox-box{background-color:var(--color-primary-light)}.excalidraw .library-unit__checkbox.is-checked .Checkbox-box{background-color:var(--color-primary) !important}.excalidraw .library-unit__checkbox.is-checked .Checkbox-box svg{color:var(--color-primary-light)}.excalidraw .library-unit__removeFromLibrary>svg{height:16px;width:16px}.excalidraw .library-unit__adder{-webkit-transform:scale(1);transform:scale(1);-webkit-animation:library-unit__adder-animation 1s ease-in infinite;animation:library-unit__adder-animation 1s ease-in infinite;position:absolute;width:1.5rem;height:1.5rem;background-color:var(--color-primary);border-radius:var(--border-radius-md);display:flex;justify-content:center;align-items:center;pointer-events:none}.excalidraw .library-unit__adder svg{color:var(--color-primary-light);width:1rem;height:1rem}.excalidraw .library-unit:active .library-unit__adder{-webkit-animation:none;animation:none;-webkit-transform:scale(0.8);transform:scale(0.8)}.excalidraw .library-unit__active{cursor:pointer}@-webkit-keyframes library-unit__adder-animation{0%{-webkit-transform:scale(0.85);transform:scale(0.85)}50%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0.85);transform:scale(0.85)}}@keyframes library-unit__adder-animation{0%{-webkit-transform:scale(0.85);transform:scale(0.85)}50%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0.85);transform:scale(0.85)}}@-webkit-keyframes library-unit__skeleton-opacity-animation{0%{opacity:0}75%{opacity:0}100%{opacity:.5}}@keyframes library-unit__skeleton-opacity-animation{0%{opacity:0}75%{opacity:0}100%{opacity:.5}}",""]),t.Z=a},6843:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw.excalidraw-modal-container{position:absolute;z-index:10}.excalidraw .Modal{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center;overflow:auto;padding:calc(var(--space-factor)*10)}.excalidraw .Modal .Island{padding:2.5rem !important}.excalidraw .Modal__background{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1;background-color:rgba(18,18,18,.2);-webkit-animation:Modal__background__fade-in .125s linear forwards;animation:Modal__background__fade-in .125s linear forwards}.excalidraw .Modal__content{position:relative;z-index:2;width:100%;max-width:var(--max-width);max-height:100%;opacity:0;-webkit-transform:translateY(10px);transform:translateY(10px);-webkit-animation:Modal__content_fade-in .1s ease-out .05s forwards;animation:Modal__content_fade-in .1s ease-out .05s forwards;position:relative;overflow-y:auto;background:var(--island-bg-color);border:1px solid var(--dialog-border-color);box-shadow:var(--modal-shadow);border-radius:6px;box-sizing:border-box}.excalidraw .Modal__content:focus{outline:none}.excalidraw--mobile.excalidraw .Modal__content{max-width:100%;border:0;border-radius:0}@-webkit-keyframes Modal__background__fade-in{from{opacity:0}to{opacity:1}}@keyframes Modal__background__fade-in{from{opacity:0}to{opacity:1}}@-webkit-keyframes Modal__content_fade-in{from{opacity:0;-webkit-transform:scale(0.9);transform:scale(0.9)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes Modal__content_fade-in{from{opacity:0;-webkit-transform:scale(0.9);transform:scale(0.9)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.excalidraw .Modal__close{color:var(--icon-fill-color);margin:0;padding:.375rem;position:absolute;top:1rem;right:1rem;border:0;background-color:rgba(0,0,0,0);line-height:0;cursor:pointer}.excalidraw .Modal__close svg{width:1.5rem;height:1.5rem}.excalidraw--mobile.excalidraw .Modal{padding:0}.excalidraw--mobile.excalidraw .Modal__content{position:absolute;top:0;left:0;right:0;bottom:0}",""]),t.Z=a},8461:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw--mobile.excalidraw .PasteChartDialog .Island{display:flex;flex-direction:column}.excalidraw .PasteChartDialog .container{display:flex;align-items:center;justify-content:space-around;flex-wrap:wrap}.excalidraw--mobile.excalidraw .PasteChartDialog .container{flex-direction:column;justify-content:center}.excalidraw .PasteChartDialog .ChartPreview{margin:8px;text-align:center;width:192px;height:128px;border-radius:2px;padding:1px;border:1px solid #ced4da;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0)}.excalidraw .PasteChartDialog .ChartPreview div{display:inline-block}.excalidraw .PasteChartDialog .ChartPreview svg{max-height:120px;max-width:186px}.excalidraw .PasteChartDialog .ChartPreview:hover{padding:0;border:2px solid #339af0}",""]),t.Z=a},9935:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .popover{position:absolute;z-index:10;padding:5px 0 5px;outline:none}",""]),t.Z=a},532:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".ProjectName{margin:auto;display:flex;align-items:center}.ProjectName .TextInput{height:calc(1rem - 3px);width:200px;overflow:hidden;text-align:center;margin-left:8px;text-overflow:ellipsis}.ProjectName .TextInput--readonly{background:none;border:none;width:auto;max-width:200px;padding-left:2px}.ProjectName .TextInput--readonly:hover{background:none}",""]),t.Z=a},7589:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .publish-library__fields{display:flex;flex-direction:column}.excalidraw .publish-library__fields label{padding:1em 0;display:flex;justify-content:space-between;align-items:center}.excalidraw .publish-library__fields label span{font-weight:500;font-size:1rem;color:#868e96}.excalidraw .publish-library__fields label input,.excalidraw .publish-library__fields label textarea{width:70%;padding:.6em;font-family:var(--ui-font)}.excalidraw .publish-library__fields label .required{color:#e03131;margin:.2rem}.excalidraw .publish-library__buttons{display:flex;padding:.2rem 0;justify-content:flex-end;gap:.5rem}.excalidraw .publish-library__buttons .ToolIcon__icon{min-width:2.5rem;width:auto;font-size:1rem}.excalidraw .publish-library__buttons .ToolIcon_type_button{margin-left:1rem;padding:0 .5rem}.excalidraw .publish-library__buttons--confirm.ToolIcon_type_button{background-color:#228be6}.excalidraw .publish-library__buttons--confirm.ToolIcon_type_button:hover{background-color:#1971c2}.excalidraw .publish-library__buttons--cancel.ToolIcon_type_button{background-color:#adb5bd}.excalidraw .publish-library__buttons--cancel.ToolIcon_type_button:hover{background-color:#868e96}.excalidraw .publish-library__buttons .ToolIcon__icon{color:#fff}.excalidraw .publish-library__buttons .ToolIcon__icon .Spinner{--spinner-color: #fff}.excalidraw .publish-library__buttons .ToolIcon__icon .Spinner svg{padding:.5rem}.excalidraw .publish-library .selected-library-items{display:flex;flex-wrap:wrap}.excalidraw .publish-library .selected-library-items .single-library-item-wrapper{width:9rem}.excalidraw .publish-library-warning{color:#fa5252}.excalidraw .publish-library-note{padding:1em 0;font-style:italic;font-size:14px;display:block}.excalidraw .single-library-item{position:relative}.excalidraw .single-library-item-status{position:absolute;top:.3rem;left:.3rem;font-size:.7rem;color:#f03e3e;background:rgba(255,255,255,.9);padding:.1rem .2rem;border-radius:.2rem}.excalidraw .single-library-item__svg{background-color:#fff;padding:.3rem;width:7.5rem;height:7.5rem;border:1px solid var(--button-gray-2)}.excalidraw .single-library-item__svg svg{width:100%;height:100%}.excalidraw .single-library-item .ToolIcon__icon{background-color:#fff;width:auto;height:auto;margin:0 .5rem}.excalidraw .single-library-item .ToolIcon,.excalidraw .single-library-item .ToolIcon_type_button:hover{background-color:#fff}.excalidraw .single-library-item .required,.excalidraw .single-library-item .error{color:#e03131;font-weight:bold;font-size:1rem;margin:.2rem}.excalidraw .single-library-item .error{font-weight:500;margin:0;padding:.3em 0}.excalidraw .single-library-item--remove{position:absolute;top:.2rem;right:1rem}.excalidraw .single-library-item--remove .ToolIcon__icon{margin:0}.excalidraw .single-library-item--remove .ToolIcon__icon{background-color:#fa5252}.excalidraw .single-library-item--remove .ToolIcon__icon:hover{background-color:#f03e3e}.excalidraw .single-library-item--remove .ToolIcon__icon:active{background-color:#e03131}.excalidraw .single-library-item--remove svg{color:#fff;padding:.26rem;border-radius:.3em;width:1rem;height:1rem}",""]),t.Z=a},6217:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,':export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw{--RadioGroup-background: #ffffff;--RadioGroup-border: var(--color-gray-30);--RadioGroup-choice-color-off: var(--color-primary);--RadioGroup-choice-color-off-hover: var(--color-primary-darkest);--RadioGroup-choice-background-off: white;--RadioGroup-choice-background-off-active: var(--color-gray-20);--RadioGroup-choice-color-on: white;--RadioGroup-choice-background-on: var(--color-primary);--RadioGroup-choice-background-on-hover: var(--color-primary-darker);--RadioGroup-choice-background-on-active: var(--color-primary-darkest)}.excalidraw.theme--dark{--RadioGroup-background: var(--color-gray-85);--RadioGroup-border: var(--color-gray-70);--RadioGroup-choice-background-off: var(--color-gray-85);--RadioGroup-choice-background-off-active: var(--color-gray-70);--RadioGroup-choice-color-on: var(--color-gray-85)}.excalidraw .RadioGroup{box-sizing:border-box;display:flex;flex-direction:row;align-items:flex-start;padding:3px;border-radius:10px;background:var(--RadioGroup-background);border:1px solid var(--RadioGroup-border)}.excalidraw .RadioGroup__choice{position:relative;display:flex;align-items:center;justify-content:center;width:32px;height:24px;color:var(--RadioGroup-choice-color-off);background:var(--RadioGroup-choice-background-off);border-radius:8px;font-family:"Assistant";font-style:normal;font-weight:600;font-size:.75rem;line-height:100%;-webkit-user-select:none;user-select:none;letter-spacing:.4px;transition:all 75ms ease-out}.excalidraw .RadioGroup__choice:hover{color:var(--RadioGroup-choice-color-off-hover)}.excalidraw .RadioGroup__choice:active{background:var(--RadioGroup-choice-background-off-active)}.excalidraw .RadioGroup__choice.active{color:var(--RadioGroup-choice-color-on);background:var(--RadioGroup-choice-background-on)}.excalidraw .RadioGroup__choice.active:hover{background:var(--RadioGroup-choice-background-on-hover)}.excalidraw .RadioGroup__choice.active:active{background:var(--RadioGroup-choice-background-on-active)}.excalidraw .RadioGroup__choice input{z-index:1;position:absolute;width:100%;height:100%;margin:0;padding:0;border-radius:8px;-webkit-appearance:none;appearance:none;cursor:pointer}',""]),t.Z=a},8208:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,':export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .sidebar{display:flex;flex-direction:column;position:absolute;top:0;bottom:0;right:0;z-index:5;margin:0;padding:0;box-sizing:border-box;background-color:var(--sidebar-bg-color);box-shadow:var(--sidebar-shadow);overflow:hidden;border-radius:0;width:calc(302px - var(--space-factor) * 2);border-left:1px solid var(--sidebar-border-color)}:root[dir=rtl] .excalidraw .sidebar{left:0;right:auto}.excalidraw .sidebar--docked{box-shadow:none}:root[dir=rtl] .excalidraw .sidebar{border-right:1px solid var(--sidebar-border-color);border-left:0}.excalidraw .sidebar__header{box-sizing:border-box;display:flex;justify-content:space-between;align-items:center;width:100%;padding:1rem .75rem;position:relative}.excalidraw .sidebar__header::after{content:"";width:calc(100% - 1.5rem);height:1px;background:var(--sidebar-border-color);position:absolute;bottom:-1px}.excalidraw .sidebar__header__buttons{gap:0;display:flex;align-items:center;margin-left:auto}.excalidraw .sidebar__header__buttons button{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--button-width, var(--default-button-size));height:var(--button-height, var(--default-button-size));box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--button-border, var(--default-border-color));border-radius:var(--border-radius-lg);cursor:pointer;background-color:var(--button-bg, var(--island-bg-color));color:var(--button-color, var(--text-primary-color));--button-bg: transparent;border:0 !important;width:var(--lg-button-size);height:var(--lg-button-size);padding:0}.excalidraw .sidebar__header__buttons button svg{width:var(--button-width, var(--lg-icon-size));height:var(--button-height, var(--lg-icon-size))}.excalidraw .sidebar__header__buttons button:hover{background-color:var(--button-hover-bg, var(--island-bg-color));border-color:var(--button-hover-border, var(--button-border, var(--default-border-color)));color:var(--button-hover-color, var(--button-color, var(--text-primary-color, inherit)))}.excalidraw .sidebar__header__buttons button:active{background-color:var(--button-active-bg, var(--island-bg-color));border-color:var(--button-active-border, var(--color-primary-darkest))}.excalidraw .sidebar__header__buttons button.active{background-color:var(--button-selected-bg, var(--color-primary-light));border-color:var(--button-selected-border, var(--color-primary-light))}.excalidraw .sidebar__header__buttons button.active:hover{background-color:var(--button-selected-hover-bg, var(--color-primary-light))}.excalidraw .sidebar__header__buttons button.active svg{color:var(--button-color, var(--color-primary-darker))}.excalidraw .sidebar__header__buttons button svg{width:var(--lg-icon-size);height:var(--lg-icon-size)}.excalidraw .sidebar__header__buttons button:hover{background:var(--button-hover-bg, var(--island-bg-color))}.excalidraw .sidebar__header__buttons .sidebar__dock.selected svg{stroke:var(--color-primary);fill:var(--color-primary)}.excalidraw .sidebar-tabs-root{display:flex;flex-direction:column;flex:1 1 auto;padding:1rem 0}.excalidraw .sidebar-tabs-root [role=tabpanel]{flex:1;outline:none;flex:1 1 auto;display:flex;flex-direction:column;outline:none}.excalidraw .sidebar-tabs-root [role=tabpanel][data-state=inactive]{display:none !important}.excalidraw .sidebar-tabs-root [role=tablist]{display:grid;gap:1rem;grid-template-columns:repeat(auto-fit, minmax(0, 1fr))}.excalidraw .sidebar-tabs-root>.sidebar__header{padding-top:0;padding-bottom:1rem}.excalidraw .sidebar-tab-trigger{--button-width: auto;--button-bg: transparent;--button-hover-bg: transparent;--button-active-bg: var(--color-primary);--button-hover-color: var(--color-primary);--button-hover-border: var(--color-primary)}.excalidraw .sidebar-tab-trigger[data-state=active]{--button-bg: var(--color-primary);--button-hover-bg: var(--color-primary-darker);--button-hover-color: var(--color-icon-white);--button-border: var(--color-primary);color:var(--color-icon-white)}.excalidraw .default-sidebar{display:flex;flex-direction:column}.excalidraw .default-sidebar .sidebar-triggers{display:flex;gap:0;padding:2px;margin-top:-3px;margin-bottom:-3px;border:1px solid var(--sidebar-border-color);background:var(--default-bg-color);border-radius:.625rem}.excalidraw .default-sidebar .sidebar-triggers .sidebar-tab-trigger{height:var(--lg-button-size);width:var(--lg-button-size);border:none}',""]),t.Z=a},7051:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .sidebar-trigger{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--button-width, var(--default-button-size));height:var(--button-height, var(--default-button-size));box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--button-border, var(--default-border-color));border-radius:var(--border-radius-lg);cursor:pointer;background-color:var(--button-bg, var(--island-bg-color));color:var(--button-color, var(--text-primary-color));background-color:var(--island-bg-color);width:auto;height:var(--lg-button-size);display:flex;align-items:center;gap:.5rem;line-height:0;font-size:.75rem;letter-spacing:.4px}.excalidraw .sidebar-trigger svg{width:var(--button-width, var(--lg-icon-size));height:var(--button-height, var(--lg-icon-size))}.excalidraw .sidebar-trigger:hover{background-color:var(--button-hover-bg, var(--island-bg-color));border-color:var(--button-hover-border, var(--button-border, var(--default-border-color)));color:var(--button-hover-color, var(--button-color, var(--text-primary-color, inherit)))}.excalidraw .sidebar-trigger:active{background-color:var(--button-active-bg, var(--island-bg-color));border-color:var(--button-active-border, var(--color-primary-darkest))}.excalidraw .sidebar-trigger.active{background-color:var(--button-selected-bg, var(--color-primary-light));border-color:var(--button-selected-border, var(--color-primary-light))}.excalidraw .sidebar-trigger.active:hover{background-color:var(--button-selected-hover-bg, var(--color-primary-light))}.excalidraw .sidebar-trigger.active svg{color:var(--button-color, var(--color-primary-darker))}.excalidraw .sidebar-trigger svg{width:var(--lg-icon-size);height:var(--lg-icon-size)}.excalidraw .default-sidebar-trigger .sidebar-trigger__label{display:none}@media screen and (min-width: 1024px){.excalidraw .default-sidebar-trigger .sidebar-trigger__label{display:block}}",""]),t.Z=a},5892:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .Spinner{display:flex;align-items:center;justify-content:center;height:100%;margin-left:auto;margin-right:auto;--spinner-color: var(--icon-fill-color)}.excalidraw .Spinner svg{-webkit-animation:rotate 1.6s linear infinite;animation:rotate 1.6s linear infinite;-webkit-animation-delay:var(--spinner-delay);animation-delay:var(--spinner-delay);-webkit-transform-origin:center center;transform-origin:center center}.excalidraw .Spinner circle{stroke:var(--spinner-color);-webkit-animation:dash 1.6s linear 0s infinite;animation:dash 1.6s linear 0s infinite;stroke-linecap:round}@-webkit-keyframes rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes dash{0%{stroke-dasharray:1,300;stroke-dashoffset:0}50%{stroke-dasharray:150,300;stroke-dashoffset:-200}100%{stroke-dasharray:1,300;stroke-dashoffset:-280}}@keyframes dash{0%{stroke-dasharray:1,300;stroke-dashoffset:0}50%{stroke-dasharray:150,300;stroke-dashoffset:-200}100%{stroke-dasharray:1,300;stroke-dashoffset:-280}}",""]),t.Z=a},3874:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .Stack{--gap: 0;display:grid;gap:calc(var(--space-factor)*var(--gap))}.excalidraw .Stack_vertical{grid-template-columns:auto;grid-auto-flow:row;grid-auto-rows:-webkit-min-content;grid-auto-rows:min-content}.excalidraw .Stack_horizontal{grid-template-rows:auto;grid-auto-flow:column;grid-auto-columns:-webkit-min-content;grid-auto-columns:min-content}",""]),t.Z=a},2681:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .Stats{position:absolute;top:64px;right:12px;font-size:12px;z-index:10;pointer-events:all}.excalidraw .Stats h3{margin:0 24px 8px 0;white-space:nowrap}.excalidraw .Stats .close{float:right;height:16px;width:16px;cursor:pointer}.excalidraw .Stats .close svg{width:100%;height:100%}.excalidraw .Stats table{width:100%}.excalidraw .Stats table th{border-bottom:1px solid var(--input-border-color);padding:4px}.excalidraw .Stats table tr td:nth-child(2){min-width:24px;text-align:right}:root[dir=rtl] .excalidraw .Stats{left:12px;right:initial}:root[dir=rtl] .excalidraw .Stats h3{margin:0 0 8px 24px}:root[dir=rtl] .excalidraw .Stats .close{float:left}",""]),t.Z=a},7802:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,':export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw{--Switch-disabled-color: #d6d6d6;--Switch-track-background: white;--Switch-thumb-background: #3d3d3d}.excalidraw.theme--dark{--Switch-disabled-color: #5c5c5c;--Switch-track-background: #242424;--Switch-thumb-background: #b8b8b8}.excalidraw .Switch{position:relative;box-sizing:border-box;width:40px;height:20px;border-radius:12px;transition-property:background,border;transition-duration:150ms;transition-timing-function:ease-out;background:var(--Switch-track-background);border:1px solid var(--Switch-disabled-color)}.excalidraw .Switch:hover{background:var(--Switch-track-background);border:1px solid #999}.excalidraw .Switch.toggled{background:var(--color-primary);border:1px solid var(--color-primary)}.excalidraw .Switch.toggled:hover{background:var(--color-primary-darker);border:1px solid var(--color-primary-darker)}.excalidraw .Switch.disabled{background:var(--Switch-track-background);border:1px solid var(--Switch-disabled-color)}.excalidraw .Switch.disabled.toggled{background:var(--Switch-disabled-color);border:1px solid var(--Switch-disabled-color)}.excalidraw .Switch:before{content:"";box-sizing:border-box;display:block;pointer-events:none;position:absolute;border-radius:100%;transition:all 150ms ease-out;width:10px;height:10px;top:4px;left:4px;background:var(--Switch-thumb-background)}.excalidraw .Switch:active:before{width:12px}.excalidraw .Switch.toggled:before{width:14px;height:14px;left:22px;top:2px;background:var(--Switch-track-background)}.excalidraw .Switch.toggled:active:before{width:16px;left:20px}.excalidraw .Switch.disabled:before{background:var(--Switch-disabled-color)}.excalidraw .Switch.disabled.toggled:before{background:var(--color-gray-50)}.excalidraw .Switch input{width:100%;height:100%;margin:0;border-radius:12px;-webkit-appearance:none;appearance:none;cursor:pointer}.excalidraw .Switch input:disabled{cursor:unset}',""]),t.Z=a},6759:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .TextInput{display:inline-block}",""]),t.Z=a},9650:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .Toast{-webkit-animation:fade-in .5s;animation:fade-in .5s;background-color:var(--button-gray-1);border-radius:4px;bottom:10px;box-sizing:border-box;cursor:default;left:50%;margin-left:-150px;padding:4px 0;position:absolute;text-align:center;width:300px;z-index:999999}.excalidraw .Toast .Toast__message{padding:0 1.6rem;color:var(--popup-text-color);white-space:pre-wrap}.excalidraw .Toast .close{position:absolute;top:0;right:0;padding:.4rem}.excalidraw .Toast .close .ToolIcon__icon{width:1.2rem;height:1.2rem}@-webkit-keyframes fade-in{from{opacity:0}to{opacity:1}}@keyframes fade-in{from{opacity:0}to{opacity:1}}",""]),t.Z=a},2044:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .ToolIcon{border-radius:var(--border-radius-lg);display:inline-flex;align-items:center;position:relative;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-user-select:none;user-select:none}.excalidraw .ToolIcon__hidden{display:none !important}.excalidraw .ToolIcon.fillable .ToolIcon_type_radio:checked+.ToolIcon__icon,.excalidraw .ToolIcon.fillable .ToolIcon_type_checkbox:checked+.ToolIcon__icon{--icon-fill-color: var(--color-primary-darker)}.excalidraw .ToolIcon.fillable .ToolIcon_type_radio:checked+.ToolIcon__icon svg,.excalidraw .ToolIcon.fillable .ToolIcon_type_checkbox:checked+.ToolIcon__icon svg{fill:var(--icon-fill-color)}.excalidraw .ToolIcon .ToolIcon_type_radio:checked+.ToolIcon__icon,.excalidraw .ToolIcon .ToolIcon_type_checkbox:checked+.ToolIcon__icon{background:var(--color-primary-light);--keybinding-color: var(--color-gray-60)}.excalidraw .ToolIcon .ToolIcon_type_radio:checked+.ToolIcon__icon svg,.excalidraw .ToolIcon .ToolIcon_type_checkbox:checked+.ToolIcon__icon svg{color:var(--color-primary-darker)}.excalidraw .ToolIcon .ToolIcon__keybinding{bottom:4px;right:4px}.excalidraw .ToolIcon .ToolIcon__icon:hover{background:var(--button-hover-bg)}.excalidraw .ToolIcon .ToolIcon__icon:active{background:var(--button-hover-bg);border:1px solid var(--color-primary-darkest)}.excalidraw .ToolIcon--plain{background-color:rgba(0,0,0,0)}.excalidraw .ToolIcon--plain .ToolIcon__icon{width:2rem;height:2rem}.excalidraw .ToolIcon_type_radio,.excalidraw .ToolIcon_type_checkbox{position:absolute;opacity:0;pointer-events:none}.excalidraw .ToolIcon__icon{box-sizing:border-box;width:var(--default-button-size);height:var(--default-button-size);color:var(--icon-fill-color);display:flex;justify-content:center;align-items:center;border-radius:var(--border-radius-lg)}.excalidraw .ToolIcon__icon+.ToolIcon__label{-webkit-margin-start:0;margin-inline-start:0}.excalidraw .ToolIcon__icon svg{position:relative;width:var(--default-icon-size);height:var(--default-icon-size);color:var(--icon-fill-color)}.excalidraw .ToolIcon__label{display:flex;align-items:center;color:var(--icon-fill-color);font-family:var(--ui-font);margin:0 .8em;text-overflow:ellipsis}.excalidraw .ToolIcon__label .Spinner{margin-left:.6em}.excalidraw .ToolIcon_size_small .ToolIcon__icon{width:2rem;height:2rem;font-size:.8em}.excalidraw .ToolIcon_type_button,.excalidraw .Modal .ToolIcon_type_button,.excalidraw .ToolIcon_type_button{padding:0;border:none;margin:0;font-size:inherit;background-color:initial}.excalidraw .ToolIcon_type_button:focus-visible,.excalidraw .Modal .ToolIcon_type_button:focus-visible,.excalidraw .ToolIcon_type_button:focus-visible{box-shadow:0 0 0 2px var(--focus-highlight-color)}.excalidraw .ToolIcon_type_button.ToolIcon--selected,.excalidraw .Modal .ToolIcon_type_button.ToolIcon--selected,.excalidraw .ToolIcon_type_button.ToolIcon--selected{background-color:var(--button-gray-2)}.excalidraw .ToolIcon_type_button.ToolIcon--selected:active,.excalidraw .Modal .ToolIcon_type_button.ToolIcon--selected:active,.excalidraw .ToolIcon_type_button.ToolIcon--selected:active{background-color:var(--button-gray-3)}.excalidraw .ToolIcon_type_button:active,.excalidraw .Modal .ToolIcon_type_button:active,.excalidraw .ToolIcon_type_button:active{background-color:var(--button-gray-3)}.excalidraw .ToolIcon_type_button--show,.excalidraw .Modal .ToolIcon_type_button--show,.excalidraw .ToolIcon_type_button--show{visibility:visible}.excalidraw .ToolIcon_type_button--hide,.excalidraw .Modal .ToolIcon_type_button--hide,.excalidraw .ToolIcon_type_button--hide{display:none !important}.excalidraw .ToolIcon_type_floating{background-color:rgba(0,0,0,0)}.excalidraw .ToolIcon_type_floating:hover{background-color:rgba(0,0,0,0)}.excalidraw .ToolIcon_type_floating:active{background-color:rgba(0,0,0,0)}.excalidraw .ToolIcon_type_floating .ToolIcon__icon{background-color:var(--button-gray-1);width:2rem;height:2rem}.excalidraw .ToolIcon_type_floating .ToolIcon__icon:hover{background-color:var(--button-gray-2)}.excalidraw .ToolIcon_type_floating .ToolIcon__icon:active{background-color:var(--button-gray-3)}.excalidraw .ToolIcon__keybinding{position:absolute;bottom:2px;right:3px;font-size:.625rem;color:var(--keybinding-color);font-family:var(--ui-font);-webkit-user-select:none;user-select:none}:root[dir=ltr] .excalidraw .unlocked-icon{left:2px}:root[dir=rtl] .excalidraw .unlocked-icon{right:2px}.excalidraw .App-toolbar-container .ToolIcon__icon{width:var(--lg-button-size);height:var(--lg-button-size)}.excalidraw .App-toolbar-container .ToolIcon__icon svg{width:var(--lg-icon-size);height:var(--lg-icon-size)}",""]),t.Z=a},9144:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .App-toolbar.zen-mode .ToolIcon__keybinding,.excalidraw .App-toolbar.zen-mode .HintViewer{display:none}.excalidraw .App-toolbar__divider{width:1px;height:1.5rem;align-self:center;background-color:var(--default-border-color);margin:0 .25rem}.excalidraw .App-toolbar__extra-tools-trigger{box-shadow:none;border:0}.excalidraw .App-toolbar__extra-tools-trigger:active{background-color:var(--button-hover-bg);box-shadow:0 0 0 1px var(--button-active-border, var(--color-primary-darkest)) inset}.excalidraw .App-toolbar__extra-tools-dropdown{margin-top:.375rem;right:0;min-width:11.875rem}",""]),t.Z=a},6626:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw-tooltip{--ui-font: Assistant, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;font-family:var(--ui-font);position:fixed;z-index:1000;padding:8px;border-radius:6px;box-sizing:border-box;pointer-events:none;word-wrap:break-word;background:#000;line-height:1.5;text-align:center;font-size:13px;font-weight:500;color:#fff;display:none}.excalidraw-tooltip.excalidraw-tooltip--visible{display:block}.excalidraw-tooltip-wrapper{display:flex}.excalidraw-tooltip-icon{width:.9em;height:.9em;margin-left:5px;margin-top:1px;display:flex}.excalidraw--mobile.excalidraw-tooltip-icon{display:none}",""]),t.Z=a},6359:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .UserList{pointer-events:none;padding:var(--space-factor) var(--space-factor) var(--space-factor) var(--space-factor);display:flex;flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:.625rem;max-height:140px;max-width:290px;overflow:hidden}.excalidraw .UserList:empty{display:none}.excalidraw .UserList>*{pointer-events:all}.excalidraw .UserList_mobile{padding:0;justify-content:normal;margin:.5rem 0}",""]),t.Z=a},7399:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .dropdown-menu{position:absolute;top:100%;margin-top:.25rem}.excalidraw .dropdown-menu--mobile{bottom:55px;top:auto;left:0;width:100%;row-gap:.75rem}.excalidraw .dropdown-menu--mobile .dropdown-menu-container{padding:8px 8px;box-sizing:border-box;background-color:var(--island-bg-color);box-shadow:var(--shadow-island);border-radius:var(--border-radius-lg);position:relative;transition:box-shadow .5s ease-in-out}.excalidraw .dropdown-menu--mobile .dropdown-menu-container.zen-mode{box-shadow:none}.excalidraw .dropdown-menu .dropdown-menu-container{background-color:#fff !important;max-height:calc(100vh - 150px);overflow-y:auto;--gap: 2}.excalidraw .dropdown-menu .dropdown-menu-item-base{display:flex;padding:0 .625rem;-webkit-column-gap:.625rem;column-gap:.625rem;font-size:.875rem;color:var(--color-gray-100);width:100%;box-sizing:border-box;font-weight:normal;font-family:inherit}.excalidraw .dropdown-menu .dropdown-menu-item{background-color:rgba(0,0,0,0);border:0;align-items:center;height:2rem;cursor:pointer;border-radius:var(--border-radius-md)}@media screen and (min-width: 1921px){.excalidraw .dropdown-menu .dropdown-menu-item{height:2.25rem}}.excalidraw .dropdown-menu .dropdown-menu-item__text{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.excalidraw .dropdown-menu .dropdown-menu-item__shortcut{-webkit-margin-start:auto;margin-inline-start:auto;opacity:.5}.excalidraw .dropdown-menu .dropdown-menu-item:hover{background-color:var(--button-hover-bg);text-decoration:none}.excalidraw .dropdown-menu .dropdown-menu-item svg{width:1rem;height:1rem;display:block}.excalidraw .dropdown-menu .dropdown-menu-item-custom{margin-top:.5rem}.excalidraw .dropdown-menu .dropdown-menu-group-title{font-size:14px;text-align:left;margin:10px 0;font-weight:500}.excalidraw.theme--dark .dropdown-menu-item{color:var(--color-gray-40)}.excalidraw.theme--dark .dropdown-menu-container{background-color:var(--color-gray-90) !important}.excalidraw .dropdown-menu-button{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--button-width, var(--default-button-size));height:var(--button-height, var(--default-button-size));box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--button-border, var(--default-border-color));border-radius:var(--border-radius-lg);cursor:pointer;background-color:var(--button-bg, var(--island-bg-color));color:var(--button-color, var(--text-primary-color));background-color:var(--island-bg-color);width:var(--lg-button-size);height:var(--lg-button-size)}.excalidraw .dropdown-menu-button svg{width:var(--button-width, var(--lg-icon-size));height:var(--button-height, var(--lg-icon-size))}.excalidraw .dropdown-menu-button:hover{background-color:var(--button-hover-bg, var(--island-bg-color));border-color:var(--button-hover-border, var(--button-border, var(--default-border-color)));color:var(--button-hover-color, var(--button-color, var(--text-primary-color, inherit)))}.excalidraw .dropdown-menu-button:active{background-color:var(--button-active-bg, var(--island-bg-color));border-color:var(--button-active-border, var(--color-primary-darkest))}.excalidraw .dropdown-menu-button.active{background-color:var(--button-selected-bg, var(--color-primary-light));border-color:var(--button-selected-border, var(--color-primary-light))}.excalidraw .dropdown-menu-button.active:hover{background-color:var(--button-selected-hover-bg, var(--color-primary-light))}.excalidraw .dropdown-menu-button.active svg{color:var(--button-color, var(--color-primary-darker))}.excalidraw .dropdown-menu-button svg{width:var(--lg-icon-size);height:var(--lg-icon-size)}.excalidraw .dropdown-menu-button--mobile{border:none;margin:0;padding:0;width:var(--default-button-size);height:var(--default-button-size)}",""]),t.Z=a},8793:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".footer-center{pointer-events:none;display:flex;width:100%;justify-content:flex-start}.footer-center>*{pointer-events:all}",""]),t.Z=a},3397:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,':export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw .collab-button{--button-bg: var(--color-primary);--button-color: white;--button-border: var(--color-primary);--button-width: var(--lg-button-size);--button-height: var(--lg-button-size);--button-hover-bg: var(--color-primary-darker);--button-hover-border: var(--color-primary-darker);--button-active-bg: var(--color-primary-darker);flex-shrink:0}.excalidraw .collab-button.active.active{background-color:#0fb884;border-color:#0fb884}.excalidraw .collab-button.active.active svg{color:#fff}.excalidraw .collab-button.active.active:hover,.excalidraw .collab-button.active.active:active{background-color:#0fb884;border-color:#0fb884}.excalidraw.theme--dark .collab-button{color:var(--color-gray-90)}.excalidraw .CollabButton.is-collaborating{background-color:var(--button-special-active-bg-color)}.excalidraw .CollabButton.is-collaborating .ToolIcon__icon svg,.excalidraw .CollabButton.is-collaborating .ToolIcon__label{color:var(--icon-green-fill-color)}.excalidraw .CollabButton-collaborators{min-width:1em;min-height:1em;line-height:1;position:absolute;bottom:-5px;padding:3px;border-radius:50%;background-color:#b2f2bb;color:#2b8a3e;font-size:.6rem;font-family:"Cascadia"}:root[dir=ltr] .excalidraw .CollabButton-collaborators{right:-5px}:root[dir=rtl] .excalidraw .CollabButton-collaborators{left:-5px}',""]),t.Z=a},4343:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".excalidraw .ActiveFile .ActiveFile__fileName{display:flex;align-items:center}.excalidraw .ActiveFile .ActiveFile__fileName span{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;width:9.3em}.excalidraw .ActiveFile .ActiveFile__fileName svg{width:1.15em;-webkit-margin-end:.3em;margin-inline-end:.3em;-webkit-transform:scaleY(0.9);transform:scaleY(0.9)}",""]),t.Z=a},1569:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,'.excalidraw .virgil{font-family:"Virgil"}.excalidraw .welcome-screen-decor{pointer-events:none;color:var(--color-gray-40)}.excalidraw.theme--dark .welcome-screen-decor{color:var(--color-gray-60)}@media(max-height: 599px){.excalidraw .welcome-screen-decor-hint{display:none !important}}@media(max-width: 1024px),(max-width: 800px){.excalidraw .welcome-screen-decor-hint .welcome-screen-decor--help,.excalidraw .welcome-screen-decor-hint .welcome-screen-decor--menu{display:none}}.excalidraw .welcome-screen-decor-hint--help{display:flex;position:absolute;right:0;bottom:100%}:root[dir=rtl] .excalidraw .welcome-screen-decor-hint--help{left:0;right:auto}.excalidraw .welcome-screen-decor-hint--help svg{margin-top:.5rem;width:85px;height:71px;-webkit-transform:scaleX(-1) rotate(80deg);transform:scaleX(-1) rotate(80deg)}:root[dir=rtl] .excalidraw .welcome-screen-decor-hint--help svg{-webkit-transform:rotate(80deg);transform:rotate(80deg)}.excalidraw .welcome-screen-decor-hint--toolbar{position:absolute;top:100%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin-top:2.5rem;display:flex;align-items:baseline}.excalidraw .welcome-screen-decor-hint--toolbar .welcome-screen-decor-hint__label{width:120px;position:relative;top:-0.5rem}.excalidraw .welcome-screen-decor-hint--toolbar svg{width:38px;height:78px}:root[dir=rtl] .excalidraw .welcome-screen-decor-hint--toolbar svg{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.excalidraw .welcome-screen-decor-hint--menu{position:absolute;width:320px;font-size:1rem;top:100%;margin-top:.25rem;-webkit-margin-start:.6rem;margin-inline-start:.6rem;display:flex;align-items:flex-end;gap:.5rem}.excalidraw .welcome-screen-decor-hint--menu svg{width:41px;height:94px}:root[dir=rtl] .excalidraw .welcome-screen-decor-hint--menu svg{-webkit-transform:scaleX(-1);transform:scaleX(-1)}@media(max-width: 860px){.excalidraw .welcome-screen-decor-hint--menu .welcome-screen-decor-hint__label{max-width:160px}}.excalidraw .welcome-screen-center{display:flex;flex-direction:column;gap:2rem;justify-content:center;align-items:center;position:absolute;pointer-events:none;left:1rem;top:1rem;right:1rem;bottom:1rem}.excalidraw .welcome-screen-center__logo{display:flex;align-items:center;-webkit-column-gap:.75rem;column-gap:.75rem;font-size:2.25rem}.excalidraw .welcome-screen-center__logo svg{width:1.625rem;height:auto}.excalidraw .welcome-screen-center__heading{font-size:1.125rem;text-align:center}.excalidraw .welcome-screen-menu{display:flex;flex-direction:column;gap:2px;justify-content:center;align-items:center}.excalidraw .welcome-screen-menu-item{box-sizing:border-box;pointer-events:all;color:var(--color-gray-50);font-size:.875rem;width:100%;min-width:300px;max-width:400px;display:grid;align-items:center;justify-content:space-between;background:none;border:none;padding:.75rem;border-radius:var(--border-radius-md);grid-template-columns:calc(var(--default-icon-size) + .5rem) 1fr 3rem}.excalidraw .welcome-screen-menu-item__text{display:flex;align-items:center;margin-right:auto;text-align:left;-webkit-column-gap:.5rem;column-gap:.5rem}.excalidraw .welcome-screen-menu-item__icon{width:var(--default-icon-size);height:var(--default-icon-size)}.excalidraw .welcome-screen-menu-item__shortcut{margin-left:auto;color:var(--color-gray-40);font-size:.75rem}.excalidraw:not(:active) .welcome-screen-menu-item:hover{text-decoration:none;background:var(--color-gray-10)}.excalidraw:not(:active) .welcome-screen-menu-item:hover .welcome-screen-menu-item__shortcut{color:var(--color-gray-50)}.excalidraw:not(:active) .welcome-screen-menu-item:hover .welcome-screen-menu-item__text{color:var(--color-gray-100)}.excalidraw .welcome-screen-menu-item:active{background:var(--color-gray-20)}.excalidraw .welcome-screen-menu-item:active .welcome-screen-menu-item__shortcut{color:var(--color-gray-50)}.excalidraw .welcome-screen-menu-item:active .welcome-screen-menu-item__text{color:var(--color-gray-100)}.excalidraw .welcome-screen-menu-item:active--promo{color:var(--color-promo) !important}.excalidraw .welcome-screen-menu-item:active--promo:hover .welcome-screen-menu-item__text{color:var(--color-promo) !important}.excalidraw.theme--dark .welcome-screen-menu-item{color:var(--color-gray-60)}.excalidraw.theme--dark .welcome-screen-menu-item__shortcut{color:var(--color-gray-60)}.excalidraw.theme--dark:not(:active) .welcome-screen-menu-item:hover{background:var(--color-gray-85)}.excalidraw.theme--dark:not(:active) .welcome-screen-menu-item:hover .welcome-screen-menu-item__shortcut{color:var(--color-gray-50)}.excalidraw.theme--dark:not(:active) .welcome-screen-menu-item:hover .welcome-screen-menu-item__text{color:var(--color-gray-10)}.excalidraw.theme--dark .welcome-screen-menu-item:active{background-color:var(--color-gray-90)}.excalidraw.theme--dark .welcome-screen-menu-item:active .welcome-screen-menu-item__text{color:var(--color-gray-10)}@media(max-height: 599px){.excalidraw .welcome-screen-center{margin-top:4rem}}@media(min-height: 600px)and (max-height: 900px){.excalidraw .welcome-screen-center{margin-top:8rem}}@media(max-height: 500px),(max-width: 320px){.excalidraw .welcome-screen-center{display:none}}',""]),t.Z=a},9915:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,".visually-hidden{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);white-space:nowrap;-webkit-user-select:none;user-select:none}.LoadingMessage{position:absolute;top:0;right:0;bottom:0;left:0;z-index:999;display:flex;flex-direction:column;align-items:center;justify-content:center;pointer-events:none}.LoadingMessage .Spinner{font-size:2.8em}.LoadingMessage .LoadingMessage-text{margin-top:1em;font-size:.8em}.LoadingMessage--dark{background-color:#121212;color:#ced4da}",""]),t.Z=a},9310:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i),l=n(1667),c=n.n(l),s=new URL(n(7984),n.b),u=new URL(n(1639),n.b),d=a()(o()),f=c()(s),p=c()(u);d.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}:export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw{--theme-filter: none;--button-destructive-bg-color: #ffe3e3;--button-destructive-color: #c92a2a;--button-gray-1: #e9ecef;--button-gray-2: #ced4da;--button-gray-3: #adb5bd;--button-special-active-bg-color: #ebfbee;--dialog-border-color: var(--color-gray-20);--dropdown-icon: url("+f+");--focus-highlight-color: #a5d8ff;--icon-fill-color: var(--color-gray-80);--icon-green-fill-color: #2b8a3e;--default-bg-color: #ffffff;--input-bg-color: #ffffff;--input-border-color: #ced4da;--input-hover-bg-color: #f1f3f5;--input-label-color: #495057;--island-bg-color: rgba(255, 255, 255, 0.96);--keybinding-color: var(--color-gray-40);--link-color: #1c7ed6;--overlay-bg-color: rgba(255, 255, 255, 0.88);--popup-bg-color: #ffffff;--popup-secondary-bg-color: #f1f3f5;--popup-text-color: #000000;--popup-text-inverted-color: #ffffff;--sab: env(safe-area-inset-bottom);--sal: env(safe-area-inset-left);--sar: env(safe-area-inset-right);--sat: env(safe-area-inset-top);--select-highlight-color: #339af0;--shadow-island: 0px 7px 14px rgba(0, 0, 0, 0.05), 0px 0px 3.12708px rgba(0, 0, 0, 0.0798), 0px 0px 0.931014px rgba(0, 0, 0, 0.1702);--button-hover-bg: var(--color-gray-10);--default-border-color: var(--color-gray-30);--default-button-size: 2rem;--default-icon-size: 1rem;--lg-button-size: 2.25rem;--lg-icon-size: 1rem;--editor-container-padding: 1rem;--scrollbar-thumb: var(--button-gray-2);--scrollbar-thumb-hover: var(--button-gray-3);--modal-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);--avatar-border-color: var(--color-gray-20);--sidebar-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);--sidebar-border-color: var(--color-gray-20);--sidebar-bg-color: #fff;--library-dropdown-shadow: 0px 15px 6px rgba(0, 0, 0, 0.01), 0px 8px 5px rgba(0, 0, 0, 0.05), 0px 4px 4px rgba(0, 0, 0, 0.09), 0px 1px 2px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);--space-factor: 0.25rem;--text-primary-color: var(--color-gray-80);--color-selection: #6965db;--color-icon-white: #ffffff;--color-primary: #6965db;--color-primary-darker: #5b57d1;--color-primary-darkest: #4a47b1;--color-primary-light: #e3e2fe;--color-primary-light-darker: #d7d5ff;--color-gray-10: #f5f5f5;--color-gray-20: #ebebeb;--color-gray-30: #d6d6d6;--color-gray-40: #b8b8b8;--color-gray-50: #999999;--color-gray-60: #7a7a7a;--color-gray-70: #5c5c5c;--color-gray-80: #3d3d3d;--color-gray-85: #242424;--color-gray-90: #1e1e1e;--color-gray-100: #121212;--color-warning: #fceeca;--color-text-warning: var(--text-primary-color);--color-danger: #db6965;--color-promo: #e70078;--color-success: #268029;--color-success-lighter: #cafccc;--border-radius-md: 0.375rem;--border-radius-lg: 0.5rem}@media screen and (min-device-width: 1921px){.excalidraw{--lg-button-size: 2.5rem;--lg-icon-size: 1.25rem;--default-button-size: 2.25rem;--default-icon-size: 1.25rem}}.excalidraw.theme--dark.theme--dark-background-none{background:none}.excalidraw.theme--dark{--theme-filter: invert(93%) hue-rotate(180deg);--button-destructive-bg-color: #5a0000;--button-destructive-color: #ffa8a8;--button-gray-1: #363636;--button-gray-2: #272727;--button-gray-3: #222;--button-special-active-bg-color: #204624;--dialog-border-color: var(--color-gray-80);--dropdown-icon: url("+p+');--focus-highlight-color: #228be6;--icon-fill-color: var(--color-gray-40);--icon-green-fill-color: #69db7c;--default-bg-color: #121212;--input-bg-color: #121212;--input-border-color: #2e2e2e;--input-hover-bg-color: #181818;--input-label-color: #e9ecef;--island-bg-color: #262627;--keybinding-color: var(--color-gray-60);--link-color: #4dabf7;--overlay-bg-color: rgba(52, 58, 64, 0.12);--popup-bg-color: #2c2c2c;--popup-secondary-bg-color: #222;--popup-text-color: #ced4da;--popup-text-inverted-color: #2c2c2c;--select-highlight-color: #4dabf7;--text-primary-color: var(--color-gray-40);--button-hover-bg: var(--color-gray-80);--default-border-color: var(--color-gray-80);--shadow-island: 0px 13px 33px rgba(0, 0, 0, 0.07), 0px 4.13px 9.94853px rgba(0, 0, 0, 0.0456112), 0px 1.13px 4.13211px rgba(0, 0, 0, 0.035), 0px 0.769896px 1.4945px rgba(0, 0, 0, 0.0243888);--modal-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);--avatar-border-color: var(--color-gray-85);--sidebar-border-color: var(--color-gray-85);--sidebar-bg-color: #191919;--scrollbar-thumb: #343a40;--scrollbar-thumb-hover: #495057;--color-selection: #3530c4;--color-icon-white: var(--color-gray-90);--color-primary: #a8a5ff;--color-primary-darker: #b2aeff;--color-primary-darkest: #beb9ff;--color-primary-light: #4f4d6f;--color-primary-light-darker: #43415e;--color-text-warning: var(--color-gray-80);--color-danger: #ffa8a5;--color-promo: #d297ff}:root{--zIndex-canvas: 1;--zIndex-wysiwyg: 2;--zIndex-layerUI: 3}.excalidraw{--ui-font: Assistant, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;font-family:var(--ui-font);position:relative;overflow:hidden;color:var(--text-primary-color);display:flex;top:0;bottom:0;left:0;right:0;height:100%;width:100%;-webkit-user-select:none;user-select:none}.excalidraw button{cursor:pointer}.excalidraw:focus{outline:none}.excalidraw a{font-weight:500;text-decoration:none;color:var(--link-color)}.excalidraw a:hover{text-decoration:underline}.excalidraw canvas{touch-action:none;image-rendering:pixelated;image-rendering:-moz-crisp-edges;z-index:var(--zIndex-canvas)}.excalidraw__canvas{position:absolute}.excalidraw.theme--dark canvas{-webkit-filter:var(--theme-filter);filter:var(--theme-filter)}.excalidraw .FixedSideContainer{padding-top:var(--sat, 0);padding-right:var(--sar, 0);padding-bottom:var(--sab, 0);padding-left:var(--sal, 0)}.excalidraw .panelRow{display:flex;justify-content:space-between}.excalidraw .panelColumn{display:flex;flex-direction:column;row-gap:.75rem}.excalidraw .panelColumn h3,.excalidraw .panelColumn legend,.excalidraw .panelColumn .control-label{margin:0;margin-bottom:.25rem;font-size:.75rem;color:var(--text-primary-color);font-weight:normal;display:block}.excalidraw .panelColumn .control-label input{display:block;width:100%}.excalidraw .panelColumn legend{padding:0}.excalidraw .panelColumn .iconSelectList{flex-wrap:wrap;position:relative}.excalidraw .panelColumn .buttonList{flex-wrap:wrap;display:flex;-webkit-column-gap:.5rem;column-gap:.5rem;row-gap:.5rem}.excalidraw .panelColumn .buttonList label{font-size:.75rem}.excalidraw .panelColumn .buttonList input[type=radio],.excalidraw .panelColumn .buttonList input[type=button]{opacity:0;position:absolute;pointer-events:none}.excalidraw .panelColumn .buttonList .iconRow{margin-top:8px}.excalidraw .panelColumn fieldset{margin:0;padding:0;border:none}.excalidraw .divider{width:1px;background-color:#e9ecef;margin:1px}.excalidraw .welcome-screen-menu-item:focus-visible,.excalidraw .dropdown-menu-item:focus-visible,.excalidraw button:focus-visible,.excalidraw .buttonList label:focus-within,.excalidraw input:focus-visible{outline:rgba(0,0,0,0);box-shadow:0 0 0 2px var(--focus-highlight-color)}.excalidraw .buttonList .ToolIcon__icon{all:unset !important;display:flex !important}.excalidraw .buttonList button{background-color:rgba(0,0,0,0)}.excalidraw .buttonList label,.excalidraw .buttonList button,.excalidraw .buttonList .zIndexButton{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--button-width, var(--default-button-size));height:var(--button-height, var(--default-button-size));box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--button-border, var(--default-border-color));border-radius:var(--border-radius-lg);cursor:pointer;background-color:var(--button-bg, var(--island-bg-color));color:var(--button-color, var(--text-primary-color));padding:0}.excalidraw .buttonList label svg,.excalidraw .buttonList button svg,.excalidraw .buttonList .zIndexButton svg{width:var(--button-width, var(--lg-icon-size));height:var(--button-height, var(--lg-icon-size))}.excalidraw .buttonList label:hover,.excalidraw .buttonList button:hover,.excalidraw .buttonList .zIndexButton:hover{background-color:var(--button-hover-bg, var(--island-bg-color));border-color:var(--button-hover-border, var(--button-border, var(--default-border-color)));color:var(--button-hover-color, var(--button-color, var(--text-primary-color, inherit)))}.excalidraw .buttonList label:active,.excalidraw .buttonList button:active,.excalidraw .buttonList .zIndexButton:active{background-color:var(--button-active-bg, var(--island-bg-color));border-color:var(--button-active-border, var(--color-primary-darkest))}.excalidraw .buttonList label.active,.excalidraw .buttonList button.active,.excalidraw .buttonList .zIndexButton.active{background-color:var(--button-selected-bg, var(--color-primary-light));border-color:var(--button-selected-border, var(--color-primary-light))}.excalidraw .buttonList label.active:hover,.excalidraw .buttonList button.active:hover,.excalidraw .buttonList .zIndexButton.active:hover{background-color:var(--button-selected-hover-bg, var(--color-primary-light))}.excalidraw .buttonList label.active svg,.excalidraw .buttonList button.active svg,.excalidraw .buttonList .zIndexButton.active svg{color:var(--button-color, var(--color-primary-darker))}.excalidraw .buttonList label svg,.excalidraw .buttonList button svg,.excalidraw .buttonList .zIndexButton svg{width:var(--default-icon-size);height:var(--default-icon-size)}.excalidraw .App-top-bar{z-index:var(--zIndex-layerUI);display:flex;flex-direction:column;align-items:center}.excalidraw .App-bottom-bar{position:absolute;top:0;bottom:0;left:0;right:0;--bar-padding: calc(4 * var(--space-factor));padding-top:max(var(--bar-padding), var(--sat,0));padding-right:var(--sar, 0);padding-bottom:var(--sab, 0);padding-left:var(--sal, 0);z-index:4;display:flex;align-items:flex-end;pointer-events:none}.excalidraw .App-bottom-bar>.Island{width:100%;max-width:100%;min-width:100%;box-sizing:border-box;max-height:100%;display:flex;flex-direction:column;pointer-events:initial}.excalidraw .App-bottom-bar>.Island .panelColumn{padding:8px 8px 0 8px}.excalidraw .App-toolbar{width:100%}.excalidraw .App-toolbar .eraser.ToolIcon:hover{--icon-fill-color: #fff;--keybinding-color: #fff}.excalidraw .App-toolbar .eraser.active{background-color:var(--color-primary)}.excalidraw .App-toolbar-content{display:flex;align-items:center;justify-content:space-between;padding:8px}.excalidraw .App-mobile-menu{width:100%;overflow-x:visible;overflow-y:auto;box-sizing:border-box;margin-bottom:var(--bar-padding)}.excalidraw .App-menu{display:grid;color:var(--icon-fill-color)}.excalidraw .shapes-section{display:flex;justify-content:center;pointer-events:none !important}.excalidraw .shapes-section>*{pointer-events:all}.excalidraw .App-menu_top{grid-template-columns:1fr 2fr 1fr;grid-gap:2rem;align-items:flex-start;cursor:default;pointer-events:none !important}@media(min-width: 1536px){.excalidraw .App-menu_top{grid-template-columns:1fr 1fr 1fr;grid-gap:3rem}}.excalidraw .layer-ui__wrapper:not(.disable-pointerEvents) .App-menu_top>*{pointer-events:all}.excalidraw .App-menu_top>*:first-child{justify-self:flex-start}.excalidraw .App-menu_top>*:last-child{justify-self:flex-end}.excalidraw .App-menu_bottom{position:absolute;bottom:1rem;display:flex;justify-content:space-between;align-items:flex-start;cursor:default;pointer-events:none !important;box-sizing:border-box;padding:0 1rem}.excalidraw .App-menu_bottom--transition-left section{width:185px}.excalidraw .App-menu_bottom section{display:flex}.excalidraw .App-menu_bottom>*:first-child{justify-self:flex-start}.excalidraw .App-menu_bottom>*:last-child{justify-self:flex-end}.excalidraw .App-menu_left{grid-template-rows:1fr auto 1fr;height:100%}.excalidraw .App-menu_right{grid-template-rows:1fr;height:100%}.excalidraw .App-menu__left{overflow-y:auto;padding:.75rem;width:202px;box-sizing:border-box;position:absolute}.excalidraw .dropdown-select{height:1.5rem;padding:0;-webkit-padding-start:.5rem;padding-inline-start:.5rem;-webkit-padding-end:1.5rem;padding-inline-end:1.5rem;color:var(--icon-fill-color);background-color:var(--button-gray-1);border-radius:var(--space-factor);border:1px solid var(--button-gray-2);font-size:.8rem;font-family:inherit;outline:none;-webkit-appearance:none;appearance:none;background-image:var(--dropdown-icon);background-repeat:no-repeat;background-position:right .7rem top 50%,0 0;background-size:.65em auto,100%}:root[dir=rtl] .excalidraw .dropdown-select{background-position:left .7rem top 50%,0 0}.excalidraw .dropdown-select:focus{box-shadow:0 0 0 2px var(--focus-highlight-color)}.excalidraw .dropdown-select:hover{background-color:var(--button-gray-2)}.excalidraw .dropdown-select:active{background-color:var(--button-gray-2)}.excalidraw .dropdown-select__language{height:2rem;background-color:var(--island-bg-color);border-color:var(--default-border-color) !important;cursor:pointer}.excalidraw .dropdown-select__language:hover{background-color:var(--island-bg-color)}.excalidraw .disable-zen-mode{border-radius:var(--border-radius-lg);background-color:var(--color-gray-20);border:1px solid var(--color-gray-30);padding:10px 20px}.excalidraw .disable-zen-mode:hover{background-color:var(--color-gray-30)}.excalidraw .scroll-back-to-content{border-radius:var(--border-radius-lg);background-color:var(--island-bg-color);color:var(--icon-fill-color);border:1px solid var(--default-border-color);padding:10px 20px;position:absolute;left:50%;bottom:30px;-webkit-transform:translateX(-50%);transform:translateX(-50%);pointer-events:all;font-family:inherit}.excalidraw .scroll-back-to-content:hover{background-color:var(--button-hover-bg)}.excalidraw .scroll-back-to-content:active{border:1px solid var(--color-primary-darkest)}.excalidraw .help-icon{display:flex;justify-content:center;align-items:center;padding:.625rem;width:var(--button-width, var(--default-button-size));height:var(--button-height, var(--default-button-size));box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--button-border, var(--default-border-color));border-radius:var(--border-radius-lg);cursor:pointer;background-color:var(--button-bg, var(--island-bg-color));color:var(--button-color, var(--text-primary-color));background-color:var(--island-bg-color);width:var(--lg-button-size);height:var(--lg-button-size)}.excalidraw .help-icon svg{width:var(--button-width, var(--lg-icon-size));height:var(--button-height, var(--lg-icon-size))}.excalidraw .help-icon:hover{background-color:var(--button-hover-bg, var(--island-bg-color));border-color:var(--button-hover-border, var(--button-border, var(--default-border-color)));color:var(--button-hover-color, var(--button-color, var(--text-primary-color, inherit)))}.excalidraw .help-icon:active{background-color:var(--button-active-bg, var(--island-bg-color));border-color:var(--button-active-border, var(--color-primary-darkest))}.excalidraw .help-icon.active{background-color:var(--button-selected-bg, var(--color-primary-light));border-color:var(--button-selected-border, var(--color-primary-light))}.excalidraw .help-icon.active:hover{background-color:var(--button-selected-hover-bg, var(--color-primary-light))}.excalidraw .help-icon.active svg{color:var(--button-color, var(--color-primary-darker))}.excalidraw .help-icon svg{width:var(--lg-icon-size);height:var(--lg-icon-size)}.excalidraw .reset-zoom-button{font-family:var(--ui-font)}.excalidraw .finalize-button{display:grid;grid-auto-flow:column;gap:.4em;margin-top:auto;margin-bottom:auto;-webkit-margin-start:.6em;margin-inline-start:.6em}.excalidraw .undo-redo-buttons,.excalidraw .eraser-buttons{display:grid;grid-auto-flow:column;margin-top:auto;margin-bottom:auto;-webkit-margin-start:.6em;margin-inline-start:.6em}.excalidraw--mobile.excalidraw aside{display:none}.excalidraw--mobile.excalidraw .scroll-back-to-content{bottom:calc(80px + var(--sab, 0));z-index:-1}:root[dir=rtl] .excalidraw .rtl-mirror{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.excalidraw .zen-mode-visibility{visibility:visible;opacity:1;height:auto;width:auto;transition:opacity .5s}.excalidraw .zen-mode-visibility.zen-mode-visibility--hidden{visibility:hidden;opacity:0;height:0;width:0;transition:opacity .5s}.excalidraw .disable-pointerEvents{pointer-events:none !important}.excalidraw.excalidraw--view-mode .App-menu{display:flex;justify-content:space-between}.excalidraw input[type=text],.excalidraw textarea:not(.excalidraw-wysiwyg){color:var(--text-primary-color);border:1.5px solid var(--input-border-color);padding:.75rem;white-space:nowrap;border-radius:var(--space-factor);background-color:var(--input-bg-color)}.excalidraw input[type=text]:not(:focus):hover,.excalidraw textarea:not(.excalidraw-wysiwyg):not(:focus):hover{background-color:var(--input-hover-bg-color)}.excalidraw input[type=text]:focus,.excalidraw textarea:not(.excalidraw-wysiwyg):focus{outline:none;box-shadow:0 0 0 2px var(--focus-highlight-color)}@media print{.excalidraw .App-bottom-bar,.excalidraw .FixedSideContainer,.excalidraw .layer-ui__wrapper{display:none}}.excalidraw ::-webkit-scrollbar{width:3px;height:3px}.excalidraw select::-webkit-scrollbar{width:10px}.excalidraw ::-webkit-scrollbar-thumb{background:var(--scrollbar-thumb);border-radius:10px}.excalidraw ::-webkit-scrollbar-thumb:hover{background:var(--scrollbar-thumb-hover)}.excalidraw ::-webkit-scrollbar-thumb:active{background:var(--scrollbar-thumb)}.excalidraw .mobile-misc-tools-container{position:absolute;top:calc(5rem - var(--editor-container-padding));right:calc(var(--editor-container-padding)*-1);display:flex;flex-direction:column;border:1px solid var(--sidebar-border-color);border-top-left-radius:var(--border-radius-lg);border-bottom-left-radius:var(--border-radius-lg);border-right:0;overflow:hidden;background-color:var(--island-bg-color)}.excalidraw .mobile-misc-tools-container .ToolIcon__icon{border-radius:0}.excalidraw .mobile-misc-tools-container .default-sidebar-trigger{border:0}.excalidraw .mobile-misc-tools-container-left{position:fixed;top:5rem;left:0;display:flex;flex-direction:column;border:1px solid var(--sidebar-border-color);border-top-right-radius:var(--border-radius-lg);border-bottom-right-radius:var(--border-radius-lg);border-left:0;background-color:var(--island-bg-color)}.excalidraw .mobile-misc-tools-container-left .ToolIcon__icon{border-radius:0}.excalidraw .mobile-misc-tools-container-left .library-button{border:0}.excalidraw .App-toolbar--mobile{overflow-x:auto;max-width:90vw}.excalidraw .App-toolbar--mobile .ToolIcon__keybinding{display:none}.excalidraw .UserList-Wrapper{margin:0;padding:0;border:none;text-align:left}.excalidraw .UserList-Wrapper legend{display:block;font-size:.75rem;font-weight:400;margin:0 0 .25rem;padding:0}.ErrorSplash.excalidraw{min-height:100vh;padding:20px 0;overflow:auto;display:flex;align-items:center;justify-content:center;-webkit-user-select:text;user-select:text}.ErrorSplash.excalidraw .ErrorSplash-messageContainer{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:40px;background-color:#ffe3e3;border:3px solid #c92a2a}.ErrorSplash.excalidraw .ErrorSplash-paragraph{margin:15px 0;max-width:600px}.ErrorSplash.excalidraw .ErrorSplash-paragraph.align-center{text-align:center}.ErrorSplash.excalidraw .bigger,.ErrorSplash.excalidraw .bigger button{font-size:1.1em}.ErrorSplash.excalidraw .smaller,.ErrorSplash.excalidraw .smaller button{font-size:.9em}.ErrorSplash.excalidraw .ErrorSplash-details{display:flex;flex-direction:column;align-items:flex-start}.ErrorSplash.excalidraw .ErrorSplash-details textarea{width:100%;margin:10px 0;font-family:"Cascadia";font-size:.8em}',""]),t.Z=d},6464:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,"",""]),a.locals={themeFilter:"invert(93%) hue-rotate(180deg)",rightSidebarWidth:"302px"},t.Z=a},5260:function(e,t,n){"use strict";var r=n(8081),o=n.n(r),i=n(3645),a=n.n(i)()(o());a.push([e.id,":export{themeFilter:invert(93%) hue-rotate(180deg);rightSidebarWidth:302px}.excalidraw-hyperlinkContainer{display:flex;align-items:center;justify-content:space-between;position:absolute;box-shadow:0px 2px 4px 0 rgba(0,0,0,.3);z-index:100;background:var(--island-bg-color);border-radius:var(--border-radius-md);box-sizing:border-box;min-height:42px}.excalidraw-hyperlinkContainer-input,.excalidraw-hyperlinkContainer button{z-index:100}.excalidraw-hyperlinkContainer-input,.excalidraw-hyperlinkContainer-link{height:24px;padding:0 8px;line-height:24px;font-size:.9rem;font-weight:500;font-family:var(--ui-font)}.excalidraw-hyperlinkContainer-input{width:18rem;border:none;background-color:rgba(0,0,0,0);color:var(--text-primary-color);outline:none;border:none;box-shadow:none !important}.excalidraw-hyperlinkContainer-link{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:15rem}.excalidraw-hyperlinkContainer button{color:#228be6;background-color:rgba(0,0,0,0) !important;font-weight:500}.excalidraw-hyperlinkContainer button.excalidraw-hyperlinkContainer--remove{color:#c92a2a}.excalidraw-hyperlinkContainer .d-none{display:none}.excalidraw-hyperlinkContainer--remove .ToolIcon__icon svg{color:#fa5252}.excalidraw-hyperlinkContainer .ToolIcon__icon{width:2rem;height:2rem}.excalidraw-hyperlinkContainer__buttons{flex:0 0 auto}",""]),t.Z=a},3645:function(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,r,o,i){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(r)for(var l=0;l<this.length;l++){var c=this[l][0];null!=c&&(a[c]=!0)}for(var s=0;s<e.length;s++){var u=[].concat(e[s]);r&&a[u[0]]||(void 0!==i&&(void 0===u[5]||(u[1]="@layer".concat(u[5].length>0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=i),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),t.push(u))}},t}},1667:function(e){"use strict";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/["'() \t\n]|(%20)/.test(e)||t.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e):e}},8081:function(e){"use strict";e.exports=function(e){return e[1]}},202:function(e,t,n){"use strict";n.d(t,{JQ:function(){return w},vD:function(){return y},y7:function(){return b}});var r=n(1930),o=n(7169),i=n(2335),a=n(1047),l=n(1935),c=n(5710),s=n(6906),u=n(1974),d=n(75),f=n(6340),p=n(7901);function h(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return m(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return m(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function g(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function v(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?g(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):g(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var b=(0,p.z)({name:"unbindText",contextItemLabel:"labels.unbindText",trackEvent:{category:"element"},predicate:function(e,t){return(0,d.eD)(e,t).some((function(e){return(0,u.Xo)(e)}))},perform:function(e,t){return(0,d.eD)((0,a.Lm)(e),t).forEach((function(e){var t=(0,c.WJ)(e);if(t){var n,r=(0,c.X1)(t.originalText,(0,f.mO)(t),t.lineHeight),o=r.width,i=r.height,a=r.baseline,u=(0,s.eR)(e.id);(0,s.kT)(e.id);var d=(0,c.FE)(e,t),p=d.x,h=d.y;(0,l.DR)(t,{containerId:null,width:o,height:i,baseline:a,text:t.originalText,x:p,y:h}),(0,l.DR)(e,{boundElements:null===(n=e.boundElements)||void 0===n?void 0:n.filter((function(e){return e.id!==t.id})),height:u||e.height})}})),{elements:e,appState:t,commitToHistory:!0}}}),y=(0,p.z)({name:"bindText",contextItemLabel:"labels.bindText",trackEvent:{category:"element"},predicate:function(e,t){var n=(0,d.eD)(e,t);if(2===n.length){var r,o=(0,a.iB)(n[0])||(0,a.iB)(n[1]);if((0,u.mG)(n[0])?r=n[0]:(0,u.mG)(n[1])&&(r=n[1]),o&&r&&null===(0,c.WJ)(r))return!0}return!1},perform:function(e,t){var n,r,f=(0,d.eD)((0,a.Lm)(e),t);(0,a.iB)(f[0])&&(0,u.mG)(f[1])?(n=f[0],r=f[1]):(n=f[1],r=f[0]),(0,l.DR)(n,{containerId:r.id,verticalAlign:i.oX.MIDDLE,textAlign:i.I8.CENTER}),(0,l.DR)(r,{boundElements:(r.boundElements||[]).concat({type:"text",id:n.id})});var p=r.height;return(0,c.oN)(n,r),(0,s.h_)(r.id,p),{elements:x(e,r,n),appState:v(v({},t),{},{selectedElementIds:(0,o.Z)({},r.id,!0)}),commitToHistory:!0}}}),x=function(e,t,n){var r=e.slice(),o=r.findIndex((function(e){return e.id===n.id}));r.splice(o,1);var i=r.findIndex((function(e){return e.id===t.id}));return r.splice(i+1,0,n),r},w=(0,p.z)({name:"wrapTextInContainer",contextItemLabel:"labels.createContainerFromText",trackEvent:{category:"element"},predicate:function(e,t){var n=(0,d.eD)(e,t),r=n.every((function(e){return(0,a.iB)(e)}));return n.length>0&&r},perform:function(e,t){var n,o=(0,d.eD)((0,a.Lm)(e),t),s=e.slice(),f={},p=h(o);try{var m=function(){var e=n.value;if((0,a.iB)(e)){var o,d=(0,a.Up)({type:"rectangle",backgroundColor:t.currentItemBackgroundColor,boundElements:[].concat((0,r.Z)(e.boundElements||[]),[{id:e.id,type:"text"}]),angle:e.angle,fillStyle:t.currentItemFillStyle,strokeColor:t.currentItemStrokeColor,roughness:t.currentItemRoughness,strokeWidth:t.currentItemStrokeWidth,strokeStyle:t.currentItemStrokeStyle,roundness:"round"===t.currentItemRoundness?{type:(0,u.QI)("rectangle")?i.a6.ADAPTIVE_RADIUS:i.a6.PROPORTIONAL_RADIUS}:null,opacity:100,locked:!1,x:e.x-i.gK,y:e.y-i.gK,width:(0,c.NS)(e.width,"rectangle"),height:(0,c.NS)(e.height,"rectangle"),groupIds:e.groupIds,frameId:e.frameId});if(null!==(o=e.boundElements)&&void 0!==o&&o.length){var p=e.boundElements.filter((function(e){return"arrow"===e.type})).map((function(e){return e.id}));s.filter((function(e){return p.includes(e.id)})).forEach((function(t){var n,r,o=t.startBinding,i=t.endBinding;(null===(n=o)||void 0===n?void 0:n.elementId)===e.id&&(o=v(v({},o),{},{elementId:d.id})),(null===(r=i)||void 0===r?void 0:r.elementId)===e.id&&(i=v(v({},i),{},{elementId:d.id})),(o||i)&&(0,l.DR)(t,{startBinding:o,endBinding:i},!1)}))}(0,l.DR)(e,{containerId:d.id,verticalAlign:i.oX.MIDDLE,boundElements:null,textAlign:i.I8.CENTER},!1),(0,c.oN)(e,d),s=function(e,t,n){var r=e.slice(),o=r.findIndex((function(e){return e.id===t.id}));r.splice(o,1);var i=r.findIndex((function(e){return e.id===n.id}));return r.splice(i,0,t),r}([].concat((0,r.Z)(s),[d]),d,e),f[d.id]=!0}};for(p.s();!(n=p.n()).done;)m()}catch(e){p.e(e)}finally{p.f()}return{elements:s,appState:v(v({},t),{},{selectedElementIds:f}),commitToHistory:!0}}})},2416:function(e,t,n){"use strict";n.d(t,{CZ:function(){return C},Lo:function(){return _},Ol:function(){return M},Ph:function(){return O},Zp:function(){return D},_s:function(){return I},eF:function(){return A},md:function(){return P},mo:function(){return j}});var r=n(2577),o=n(7169),i=n(8206),a=n(3646),l=n(1319),c=n(2335),s=n(1047),u=n(5202),d=n(6066),f=n(75),p=n(2264),h=n(746),m=n(6340),g=n(7901),v=n(1894),b=n(1935),y=n(8897),x=n(56),w=n(1868),k=n(4512);function E(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function S(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?E(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):E(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var O=(0,g.z)({name:"changeViewBackgroundColor",trackEvent:!1,predicate:function(e,t,n,r){return!!r.props.UIOptions.canvasActions.changeViewBackgroundColor&&!t.viewModeEnabled},perform:function(e,t,n){return{appState:S(S({},t),n),commitToHistory:!!n.viewBackgroundColor}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;e.appProps;return(0,k.jsx)(i.z,{palette:null,topPicks:x.ay,label:(0,u.t)("labels.canvasBackground"),type:"canvasBackground",color:n.viewBackgroundColor,onChange:function(e){return r({viewBackgroundColor:e})},"data-testid":"canvas-background-picker",elements:t,appState:n,updateData:r})}}),j=(0,g.z)({name:"clearCanvas",trackEvent:{category:"canvas"},predicate:function(e,t,n,r){return!!r.props.UIOptions.canvasActions.clearCanvas&&!t.viewModeEnabled},perform:function(e,t,n,r){return r.imageCache.clear(),{elements:e.map((function(e){return(0,b.BE)(e,{isDeleted:!0})})),appState:S(S({},(0,y.im)()),{},{files:{},theme:t.theme,penMode:t.penMode,penDetected:t.penDetected,exportBackground:t.exportBackground,exportEmbedScene:t.exportEmbedScene,gridSize:t.gridSize,showStats:t.showStats,pasteDialog:t.pasteDialog,activeTool:"image"===t.activeTool.type?S(S({},t.activeTool),{},{type:"selection"}):t.activeTool}),commitToHistory:!0}}}),_=(0,g.z)({name:"zoomIn",viewMode:!0,trackEvent:{category:"canvas"},perform:function(e,t,n,r){return{appState:S(S({},t),(0,h.E)({viewportX:t.width/2+t.offsetLeft,viewportY:t.height/2+t.offsetTop,nextZoom:(0,f.j)(t.zoom.value+c.V4)},t)),commitToHistory:!1}},PanelComponent:function(e){var t=e.updateData;return(0,k.jsx)(l.V,{type:"button",className:"zoom-in-button zoom-button",icon:a.ZoomInIcon,title:"".concat((0,u.t)("buttons.zoomIn")," — ").concat((0,m.uY)("CtrlOrCmd++")),"aria-label":(0,u.t)("buttons.zoomIn"),onClick:function(){t(null)}})},keyTest:function(e){return(e.code===d.aU.EQUAL||e.code===d.aU.NUM_ADD)&&(e[d.tW.CTRL_OR_CMD]||e.shiftKey)}}),C=(0,g.z)({name:"zoomOut",viewMode:!0,trackEvent:{category:"canvas"},perform:function(e,t,n,r){return{appState:S(S({},t),(0,h.E)({viewportX:t.width/2+t.offsetLeft,viewportY:t.height/2+t.offsetTop,nextZoom:(0,f.j)(t.zoom.value-c.V4)},t)),commitToHistory:!1}},PanelComponent:function(e){var t=e.updateData;return(0,k.jsx)(l.V,{type:"button",className:"zoom-out-button zoom-button",icon:a.ZoomOutIcon,title:"".concat((0,u.t)("buttons.zoomOut")," — ").concat((0,m.uY)("CtrlOrCmd+-")),"aria-label":(0,u.t)("buttons.zoomOut"),onClick:function(){t(null)}})},keyTest:function(e){return(e.code===d.aU.MINUS||e.code===d.aU.NUM_SUBTRACT)&&(e[d.tW.CTRL_OR_CMD]||e.shiftKey)}}),I=(0,g.z)({name:"resetZoom",viewMode:!0,trackEvent:{category:"canvas"},perform:function(e,t,n,r){return{appState:S(S({},t),(0,h.E)({viewportX:t.width/2+t.offsetLeft,viewportY:t.height/2+t.offsetTop,nextZoom:(0,f.j)(1)},t)),commitToHistory:!1}},PanelComponent:function(e){var t=e.updateData,n=e.appState;return(0,k.jsx)(v.u,{label:(0,u.t)("buttons.resetZoom"),style:{height:"100%"},children:(0,k.jsxs)(l.V,{type:"button",className:"reset-zoom-button zoom-button",title:(0,u.t)("buttons.resetZoom"),"aria-label":(0,u.t)("buttons.resetZoom"),onClick:function(){t(null)},children:[(100*n.zoom.value).toFixed(0),"%"]})})},keyTest:function(e){return(e.code===d.aU.ZERO||e.code===d.aU.NUM_ZERO)&&(e[d.tW.CTRL_OR_CMD]||e.shiftKey)}}),T=function(e,t){var n=(0,r.Z)(e,4),o=n[0],i=n[1],a=n[2],l=n[3],s=a-o,u=t.width/s,d=l-i,f=t.height/d,p=Math.min(u,f),h=Math.floor(p/c.V4)*c.V4;return Math.min(Math.max(h,c.Zj),1)},P=function(e,t,n){var o=(0,s.Lm)(e),i=(0,f.eD)(o,t),a=n&&i.length>0?(0,s.KP)((0,w.aI)(i)):(0,s.KP)((0,w.aI)(o)),l={value:T(a,{width:t.width,height:t.height})},c=(0,r.Z)(a,4),u=c[0],d=c[1],h=(u+c[2])/2,m=(d+c[3])/2;return{appState:S(S(S({},t),(0,p.s)({scenePoint:{x:h,y:m},viewportDimensions:{width:t.width,height:t.height},zoom:l})),{},{zoom:l}),commitToHistory:!1}},M=((0,g.z)({name:"zoomToSelection",trackEvent:{category:"canvas"},perform:function(e,t){return P(e,t,!0)},keyTest:function(e){return e.code===d.aU.TWO&&e.shiftKey&&!e.altKey&&!e[d.tW.CTRL_OR_CMD]}}),(0,g.z)({name:"zoomToFit",viewMode:!0,trackEvent:{category:"canvas"},perform:function(e,t){return P(e,t,!1)},keyTest:function(e){return e.code===d.aU.ONE&&e.shiftKey&&!e.altKey&&!e[d.tW.CTRL_OR_CMD]}})),D=(0,g.z)({name:"toggleTheme",viewMode:!0,trackEvent:{category:"canvas"},perform:function(e,t,n){return{appState:S(S({},t),{},{theme:n||(t.theme===c.C6.LIGHT?c.C6.DARK:c.C6.LIGHT)}),commitToHistory:!1}},keyTest:function(e){return e.altKey&&e.shiftKey&&e.code===d.aU.D},predicate:function(e,t,n,r){return!!r.props.UIOptions.canvasActions.toggleTheme}}),A=((0,g.z)({name:"toggleEraserTool",trackEvent:{category:"toolbar"},perform:function(e,t){var n;return n=(0,y.EN)(t)?(0,m.Om)(t,S(S({},t.activeTool.lastActiveTool||{type:"selection"}),{},{lastActiveToolBeforeEraser:null})):(0,m.Om)(t,{type:"eraser",lastActiveToolBeforeEraser:t.activeTool}),{appState:S(S({},t),{},{selectedElementIds:{},selectedGroupIds:{},activeTool:n}),commitToHistory:!0}},keyTest:function(e){return e.key===d.tW.E}}),(0,g.z)({name:"toggleHandTool",trackEvent:{category:"toolbar"},perform:function(e,t,n,r){var o;return(0,y.l$)(t)?o=(0,m.Om)(t,S(S({},t.activeTool.lastActiveTool||{type:"selection"}),{},{lastActiveToolBeforeEraser:null})):(o=(0,m.Om)(t,{type:"hand",lastActiveToolBeforeEraser:t.activeTool}),(0,m.KJ)(r.canvas,c.oc.GRAB)),{appState:S(S({},t),{},{selectedElementIds:{},selectedGroupIds:{},activeTool:o}),commitToHistory:!0}},keyTest:function(e){return e.key===d.tW.H}}))},4688:function(e,t,n){"use strict";n.d(t,{FA:function(){return k},ZM:function(){return w},jK:function(){return E},uN:function(){return y},yQ:function(){return x},zp:function(){return S}});var r=n(7169),o=n(8950),i=n(2975),a=n.n(i),l=n(6066),c=n(7901),s=n(6665),u=n(533),d=n(1868),f=n(9485),p=n(1047),h=n(5202);function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function g(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?m(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):m(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var v,b,y=(0,c.z)({name:"copy",trackEvent:{category:"element"},perform:function(e,t,n,r){var o=(0,d.eD)(e,t,{includeBoundTextElement:!0,includeElementsInFrames:!0});return(0,s.vQ)(o,r.files),{commitToHistory:!1}},predicate:function(e,t,n,r){return r.device.isMobile&&!!navigator.clipboard},contextItemLabel:"labels.copy",keyTest:void 0}),x=(0,c.z)({name:"paste",trackEvent:{category:"element"},perform:function(e,t,n,r){return r.pasteFromClipboard(null),{commitToHistory:!1}},predicate:function(e,t,n,r){return r.device.isMobile&&!!navigator.clipboard},contextItemLabel:"labels.paste",keyTest:void 0}),w=(0,c.z)({name:"cut",trackEvent:{category:"element"},perform:function(e,t,n,r){return y.perform(e,t,n,r),u.X.perform(e,t)},predicate:function(e,t,n,r){return r.device.isMobile&&!!navigator.clipboard},contextItemLabel:"labels.cut",keyTest:function(e){return e[l.tW.CTRL_OR_CMD]&&e.key===l.tW.X}}),k=(0,c.z)({name:"copyAsSvg",trackEvent:{category:"element"},perform:(v=(0,o.Z)(a().mark((function e(t,n,r,o){var i;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(o.canvas){e.next=2;break}return e.abrupt("return",{commitToHistory:!1});case 2:return i=(0,d.eD)((0,p.Lm)(t),n,{includeBoundTextElement:!0,includeElementsInFrames:!0}),e.prev=3,e.next=6,(0,f.tq)("clipboard-svg",i.length?i:(0,p.Lm)(t),n,o.files,n);case 6:return e.abrupt("return",{commitToHistory:!1});case 9:return e.prev=9,e.t0=e.catch(3),console.error(e.t0),e.abrupt("return",{appState:g(g({},n),{},{errorMessage:e.t0.message}),commitToHistory:!1});case 13:case"end":return e.stop()}}),e,null,[[3,9]])}))),function(e,t,n,r){return v.apply(this,arguments)}),predicate:function(e){return s.wx&&e.length>0},contextItemLabel:"labels.copyAsSvg"}),E=(0,c.z)({name:"copyAsPng",trackEvent:{category:"element"},perform:(b=(0,o.Z)(a().mark((function e(t,n,r,o){var i;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(o.canvas){e.next=2;break}return e.abrupt("return",{commitToHistory:!1});case 2:return i=(0,d.eD)((0,p.Lm)(t),n,{includeBoundTextElement:!0,includeElementsInFrames:!0}),e.prev=3,e.next=6,(0,f.tq)("clipboard",i.length?i:(0,p.Lm)(t),n,o.files,n);case 6:return e.abrupt("return",{appState:g(g({},n),{},{toast:{message:(0,h.t)("toast.copyToClipboardAsPng",{exportSelection:i.length?(0,h.t)("toast.selection"):(0,h.t)("toast.canvas"),exportColorScheme:n.exportWithDarkMode?(0,h.t)("buttons.darkMode"):(0,h.t)("buttons.lightMode")})}}),commitToHistory:!1});case 9:return e.prev=9,e.t0=e.catch(3),console.error(e.t0),e.abrupt("return",{appState:g(g({},n),{},{errorMessage:e.t0.message}),commitToHistory:!1});case 13:case"end":return e.stop()}}),e,null,[[3,9]])}))),function(e,t,n,r){return b.apply(this,arguments)}),predicate:function(e){return s.vt&&e.length>0},contextItemLabel:"labels.copyAsPng",keyTest:function(e){return e.code===l.aU.C&&e.altKey&&e.shiftKey}}),S=(0,c.z)({name:"copyText",trackEvent:{category:"element"},perform:function(e,t){var n=(0,d.eD)((0,p.Lm)(e),t,{includeBoundTextElement:!0}).reduce((function(e,t){return(0,p.iB)(t)&&e.push(t.text),e}),[]).join("\n\n");return(0,s.dd)(n),{commitToHistory:!1}},predicate:function(e,t){return s.wx&&(0,d.eD)(e,t,{includeBoundTextElement:!0}).some(p.iB)},contextItemLabel:"labels.copyText"})},533:function(e,t,n){"use strict";n.d(t,{X:function(){return w}});var r=n(7169),o=n(75),i=n(6066),a=n(1319),l=n(5202),c=n(7901),s=n(1047),u=n(1935),d=n(242),f=n(6938),p=n(8290),h=n(1974),m=n(6340),g=n(3646),v=n(4512);function b(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function y(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?b(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):b(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var x=function(e,t){if(e.editingGroupId){var n=(0,d.Fb)((0,s.Lm)(t),e.editingGroupId);if(n.length)return y(y({},e),{},{selectedElementIds:(0,r.Z)({},n[0].id,!0)})}return e},w=(0,c.z)({name:"deleteSelectedElements",trackEvent:{category:"element",action:"delete"},perform:function(e,t){if(t.editingLinearElement){var n=t.editingLinearElement,r=n.elementId,i=n.selectedPointsIndices,a=n.startBindingElement,l=n.endBindingElement,c=f._.getElement(r);if(!c)return!1;if(null==i)return!1;if(c.points.length<2){var d=e.map((function(e){return e.id===c.id?(0,u.BE)(e,{isDeleted:!0}):e}));return{elements:d,appState:y(y({},x(t,d)),{},{editingLinearElement:null}),commitToHistory:!1}}var g={startBindingElement:null!=i&&i.includes(0)?null:a,endBindingElement:null!=i&&i.includes(c.points.length-1)?null:l};return f._.deletePoints(c,i),{elements:e,appState:y(y({},t),{},{editingLinearElement:y(y(y({},t.editingLinearElement),g),{},{selectedPointsIndices:(null==i?void 0:i[0])>0?[i[0]-1]:[0]})}),commitToHistory:!0}}var v=function(e,t){var n=new Set((0,o.eD)(e.filter((function(e){return"frame"===e.type})),t).map((function(e){return e.id})));return{elements:e.map((function(e){return t.selectedElementIds[e.id]||e.frameId&&n.has(e.frameId)||(0,h.Xh)(e)&&t.selectedElementIds[e.containerId]?(0,u.BE)(e,{isDeleted:!0}):e})),appState:y(y({},t),{},{selectedElementIds:{}})}}(e,t),b=v.elements,w=v.appState;return(0,p.$q)(b,e.filter((function(e){var n=e.id;return t.selectedElementIds[n]}))),{elements:b,appState:y(y({},w=x(w,b)),{},{activeTool:(0,m.Om)(t,{type:"selection"}),multiElement:null}),commitToHistory:(0,o.N)((0,s.Lm)(e),t)}},contextItemLabel:"labels.delete",keyTest:function(e,t,n){return(e.key===i.tW.BACKSPACE||e.key===i.tW.DELETE)&&!e[i.tW.CTRL_OR_CMD]},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,v.jsx)(a.V,{type:"button",icon:g.TrashIcon,title:(0,l.t)("labels.delete"),"aria-label":(0,l.t)("labels.delete"),onClick:function(){return r(null)},visible:(0,o.N)((0,s.Lm)(t),n)})}})},3248:function(e,t,n){"use strict";n.d(t,{$:function(){return f},U:function(){return p}});var r=n(7169),o=n(1935),i=n(6066),a=n(75),l=n(6340),c=n(7901);function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function u(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?s(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var d=function(e){return e.every((function(e){return!e.locked}))},f=(0,c.z)({name:"toggleElementLock",trackEvent:{category:"element"},predicate:function(e,t){return!(0,a.eD)(e,t).some((function(e){return e.locked&&e.frameId}))},perform:function(e,t){var n=(0,a.eD)(e,t,{includeBoundTextElement:!0,includeElementsInFrames:!0});if(!n.length)return!1;var r=d(n),i=(0,l.xn)(n);return{elements:e.map((function(e){return i.has(e.id)?(0,o.BE)(e,{locked:r}):e})),appState:u(u({},t),{},{selectedLinearElement:r?null:t.selectedLinearElement}),commitToHistory:!0}},contextItemLabel:function(e,t){var n=(0,a.eD)(e,t,{includeBoundTextElement:!1});return 1===n.length&&"frame"!==n[0].type?n[0].locked?"labels.elementLock.unlock":"labels.elementLock.lock":d(n)?"labels.elementLock.lockAll":"labels.elementLock.unlockAll"},keyTest:function(e,t,n){return e.key.toLocaleLowerCase()===i.tW.L&&e[i.tW.CTRL_OR_CMD]&&e.shiftKey&&(0,a.eD)(n,t,{includeBoundTextElement:!1}).length>0}}),p=(0,c.z)({name:"unlockAllElements",trackEvent:{category:"canvas"},viewMode:!1,predicate:function(e){return e.some((function(e){return e.locked}))},perform:function(e,t){var n=e.filter((function(e){return e.locked}));return{elements:e.map((function(e){return e.locked?(0,o.BE)(e,{locked:!1}):e})),appState:u(u({},t),{},{selectedElementIds:Object.fromEntries(n.map((function(e){return[e.id,!0]})))}),commitToHistory:!0}},contextItemLabel:"labels.elementLock.unlockAll"})},8671:function(e,t,n){"use strict";n.d(t,{XA:function(){return te},Du:function(){return ne},sK:function(){return ee},zX:function(){return Q},bJ:function(){return ae},_d:function(){return ie},mM:function(){return oe},ns:function(){return re}});var r=n(8950),o=n(2577),i=n(7169),a=n(2975),l=n.n(a),c=n(3646),s=n(487),u=n.n(s),d=n(631),f=n.n(d),p=n(2052),h=n.n(p),m=n(4010),g=n.n(m),v=n(1469),b=n.n(v),y=n(9329),x=n.n(y),w=n(6759),k={};k.styleTagTransform=x(),k.setAttributes=g(),k.insert=h().bind(null,"head"),k.domAPI=f(),k.insertStyleElement=b();u()(w.Z,k),w.Z&&w.Z.locals&&w.Z.locals;var E=n(9787),S=n(6340),O=n(532),j={};j.styleTagTransform=x(),j.setAttributes=g(),j.insert=h().bind(null,"head"),j.domAPI=f(),j.insertStyleElement=b();u()(O.Z,j),O.Z&&O.Z.locals&&O.Z.locals;var _=n(8993),C=n(6066),I=n(4512),T=function(e){var t=(0,_.J0)().id,n=(0,E.useState)(e.value),r=(0,o.Z)(n,2),i=r[0],a=r[1];return(0,I.jsxs)("div",{className:"ProjectName",children:[(0,I.jsx)("label",{className:"ProjectName-label",htmlFor:"filename",children:"".concat(e.label).concat(e.isNameEditable?"":":")}),e.isNameEditable?(0,I.jsx)("input",{type:"text",className:"TextInput",onBlur:function(t){e.ignoreFocus||(0,S.qz)(t.target);var n=t.target.value;n!==e.value&&e.onChange(n)},onKeyDown:function(e){if(e.key===C.tW.ENTER){if(e.preventDefault(),e.nativeEvent.isComposing||229===e.keyCode)return;e.currentTarget.blur()}},id:"".concat(t,"-filename"),value:i,onChange:function(e){return a(e.target.value)}}):(0,I.jsx)("span",{className:"TextInput TextInput--readonly",id:"".concat(t,"-filename"),children:e.value})]})},P=n(1319),M=n(1894),D=(n(5422),n(5202)),A=n(2335),L=function(e){var t=e.title||("dark"===e.value?(0,D.t)("buttons.lightMode"):(0,D.t)("buttons.darkMode"));return(0,I.jsx)(P.V,{type:"icon",icon:e.value===A.C6.LIGHT?Z.MOON:Z.SUN,title:t,"aria-label":t,onClick:function(){return e.onChange(e.value===A.C6.DARK?A.C6.LIGHT:A.C6.DARK)},"data-testid":"toggle-dark-mode"})},Z={SUN:(0,I.jsx)("svg",{width:"512",height:"512",className:"rtl-mirror",viewBox:"0 0 512 512",children:(0,I.jsx)("path",{fill:"currentColor",d:"M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z"})}),MOON:(0,I.jsx)("svg",{width:"512",height:"512",className:"rtl-mirror",viewBox:"0 0 512 512",children:(0,I.jsx)("path",{fill:"currentColor",d:"M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"})})},R=n(9485),z=n(1047),N=n(434);function B(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function H(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?B(Object(n),!0).forEach((function(t){(0,i.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):B(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var F=function(){var e=(0,r.Z)(l().mark((function e(t,n,r){var o,i,a,c,s,u;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(i=(o=n).exportBackground,a=o.viewBackgroundColor,c=o.name,s=o.fileHandle,u=(0,N.Qk)(s),s&&(0,N.DQ)(u)){e.next=4;break}throw new Error("fileHandle should exist and should be of type svg or png when resaving");case 4:return n=H(H({},n),{},{exportEmbedScene:!0}),e.next=7,(0,R.tq)(u,(0,z.Lm)(t),n,r,{exportBackground:i,viewBackgroundColor:a,name:c,fileHandle:s});case 7:return e.abrupt("return",{fileHandle:s});case 8:case"end":return e.stop()}}),e)})));return function(t,n,r){return e.apply(this,arguments)}}(),W=n(7901),U=n(3807),K=n(4162),Y=n(75),G=n(1393);function V(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function X(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?V(Object(n),!0).forEach((function(t){(0,i.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):V(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var q,$,J,Q=(0,W.z)({name:"changeProjectName",trackEvent:!1,perform:function(e,t,n){return{appState:X(X({},t),{},{name:n}),commitToHistory:!1}},PanelComponent:function(e){var t,n=e.appState,r=e.updateData,o=e.appProps,i=e.data;return(0,I.jsx)(T,{label:(0,D.t)("labels.fileTitle"),value:n.name||"Unnamed",onChange:function(e){return r(e)},isNameEditable:void 0===o.name&&!n.viewModeEnabled,ignoreFocus:null!==(t=null==i?void 0:i.ignoreFocus)&&void 0!==t&&t})}}),ee=(0,W.z)({name:"changeExportScale",trackEvent:{category:"export",action:"scale"},perform:function(e,t,n){return{appState:X(X({},t),{},{exportScale:n}),commitToHistory:!1}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData,i=(0,z.Lm)(t),a=(0,Y.N)(i,n)?(0,Y.eD)(i,n):i;return(0,I.jsx)(I.Fragment,{children:A.ZB.map((function(e){var t=(0,K.Cg)(a,A.qy,e),i=(0,o.Z)(t,2),l=i[0],c=i[1],s="".concat((0,D.t)("buttons.scale")," ").concat(e,"x (").concat(l,"x").concat(c,")");return(0,I.jsx)(P.V,{size:"small",type:"radio",icon:"".concat(e,"x"),name:"export-canvas-scale",title:s,"aria-label":s,id:"export-canvas-scale",checked:e===n.exportScale,onChange:function(){return r(e)}},e)}))})}}),te=(0,W.z)({name:"changeExportBackground",trackEvent:{category:"export",action:"toggleBackground"},perform:function(e,t,n){return{appState:X(X({},t),{},{exportBackground:n}),commitToHistory:!1}},PanelComponent:function(e){var t=e.appState,n=e.updateData;return(0,I.jsx)(U.o,{checked:t.exportBackground,onChange:function(e){return n(e)},children:(0,D.t)("labels.withBackground")})}}),ne=(0,W.z)({name:"changeExportEmbedScene",trackEvent:{category:"export",action:"embedScene"},perform:function(e,t,n){return{appState:X(X({},t),{},{exportEmbedScene:n}),commitToHistory:!1}},PanelComponent:function(e){var t=e.appState,n=e.updateData;return(0,I.jsxs)(U.o,{checked:t.exportEmbedScene,onChange:function(e){return n(e)},children:[(0,D.t)("labels.exportEmbedScene"),(0,I.jsx)(M.u,{label:(0,D.t)("labels.exportEmbedScene_details"),long:!0,children:(0,I.jsx)("div",{className:"excalidraw-tooltip-icon",children:c.questionCircle})})]})}}),re=(0,W.z)({name:"saveToActiveFile",trackEvent:{category:"export"},predicate:function(e,t,n,r){return!!r.props.UIOptions.canvasActions.saveToActiveFile&&!!t.fileHandle&&!t.viewModeEnabled},perform:(q=(0,r.Z)(l().mark((function e(t,n,r,o){var i,a,c;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(i=!!n.fileHandle,e.prev=1,!(0,N.g8)(n.fileHandle)){e.next=8;break}return e.next=5,F(t,n,o.files);case 5:e.t0=e.sent,e.next=11;break;case 8:return e.next=10,(0,R.Um)(t,n,o.files);case 10:e.t0=e.sent;case 11:return a=e.t0,c=a.fileHandle,e.abrupt("return",{commitToHistory:!1,appState:X(X({},n),{},{fileHandle:c,toast:i?{message:null!=c&&c.name?(0,D.t)("toast.fileSavedToFilename").replace("{filename}",'"'.concat(c.name,'"')):(0,D.t)("toast.fileSaved")}:null})});case 16:return e.prev=16,e.t1=e.catch(1),"AbortError"!==(null===e.t1||void 0===e.t1?void 0:e.t1.name)?console.error(e.t1):console.warn(e.t1),e.abrupt("return",{commitToHistory:!1});case 20:case"end":return e.stop()}}),e,null,[[1,16]])}))),function(e,t,n,r){return q.apply(this,arguments)}),keyTest:function(e){return e.key===C.tW.S&&e[C.tW.CTRL_OR_CMD]&&!e.shiftKey}}),oe=(0,W.z)({name:"saveFileToDisk",viewMode:!0,trackEvent:{category:"export"},perform:($=(0,r.Z)(l().mark((function e(t,n,r,o){var i,a;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,(0,R.Um)(t,X(X({},n),{},{fileHandle:null}),o.files);case 3:return i=e.sent,a=i.fileHandle,e.abrupt("return",{commitToHistory:!1,appState:X(X({},n),{},{fileHandle:a})});case 8:return e.prev=8,e.t0=e.catch(0),"AbortError"!==(null===e.t0||void 0===e.t0?void 0:e.t0.name)?console.error(e.t0):console.warn(e.t0),e.abrupt("return",{commitToHistory:!1});case 12:case"end":return e.stop()}}),e,null,[[0,8]])}))),function(e,t,n,r){return $.apply(this,arguments)}),keyTest:function(e){return e.key===C.tW.S&&e.shiftKey&&e[C.tW.CTRL_OR_CMD]},PanelComponent:function(e){var t=e.updateData;return(0,I.jsx)(P.V,{type:"button",icon:c.saveAs,title:(0,D.t)("buttons.saveAs"),"aria-label":(0,D.t)("buttons.saveAs"),showAriaLabel:(0,_.Fy)().isMobile,hidden:!G.kr,onClick:function(){return t(null)},"data-testid":"save-as-button"})}}),ie=(0,W.z)({name:"loadScene",trackEvent:{category:"export"},predicate:function(e,t,n,r){return!!r.props.UIOptions.canvasActions.loadScene&&!t.viewModeEnabled},perform:(J=(0,r.Z)(l().mark((function e(t,n,r,o){var i,a,c,s;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,(0,R.n8)(n,t);case 3:return i=e.sent,a=i.elements,c=i.appState,s=i.files,e.abrupt("return",{elements:a,appState:c,files:s,commitToHistory:!0});case 10:if(e.prev=10,e.t0=e.catch(0),"AbortError"!==(null===e.t0||void 0===e.t0?void 0:e.t0.name)){e.next=15;break}return console.warn(e.t0),e.abrupt("return",!1);case 15:return e.abrupt("return",{elements:t,appState:X(X({},n),{},{errorMessage:e.t0.message}),files:o.files,commitToHistory:!1});case 16:case"end":return e.stop()}}),e,null,[[0,10]])}))),function(e,t,n,r){return J.apply(this,arguments)}),keyTest:function(e){return e[C.tW.CTRL_OR_CMD]&&e.key===C.tW.O}}),ae=(0,W.z)({name:"exportWithDarkMode",trackEvent:{category:"export",action:"toggleTheme"},perform:function(e,t,n){return{appState:X(X({},t),{},{exportWithDarkMode:n}),commitToHistory:!1}},PanelComponent:function(e){var t=e.appState,n=e.updateData;return(0,I.jsx)("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"-45px",marginBottom:"10px"},children:(0,I.jsx)(L,{value:t.exportWithDarkMode?A.C6.DARK:A.C6.LIGHT,onChange:function(e){n(e===A.C6.DARK)},title:(0,D.t)("labels.toggleExportColorScheme")})})}})},6208:function(e,t,n){"use strict";n.d(t,{lR:function(){return J},AP:function(){return Q},PR:function(){return ae},ue:function(){return re},$o:function(){return ne},w8:function(){return te},o8:function(){return $},BI:function(){return ee},hH:function(){return le},IP:function(){return ce},Tu:function(){return oe},Zq:function(){return ie}});var r=n(1930),o=n(7169),i=n(56),a=n(7047),l=n(45),c=n(4512),s=function(e){return(0,c.jsx)("div",{className:"buttonList buttonListIcon",children:e.options.map((function(t){var n;return"button"===e.type?(0,c.jsx)("button",{onClick:function(n){return e.onClick(t.value,n)},className:(0,l.Z)({active:null!==(n=t.active)&&void 0!==n?n:e.value===t.value}),"data-testid":t.testId,title:t.text,children:t.icon},t.text):(0,c.jsxs)("label",{className:(0,l.Z)({active:e.value===t.value}),title:t.text,children:[(0,c.jsx)("input",{type:"radio",name:e.group,onChange:function(){return e.onChange(t.value)},checked:e.value===t.value,"data-testid":t.testId}),t.icon]},t.text)}))})},u=n(8206),d=n(2577),f=n(9787),p=n.n(f),h=n(2891),m=n(487),g=n.n(m),v=n(631),b=n.n(v),y=n(2052),x=n.n(y),w=n(4010),k=n.n(w),E=n(1469),S=n.n(E),O=n(9329),j=n.n(O),_=n(9478),C={};C.styleTagTransform=j(),C.setAttributes=k(),C.insert=x().bind(null,"head"),C.domAPI=b(),C.insertStyleElement=S();g()(_.Z,C),_.Z&&_.Z.locals&&_.Z.locals;var I=n(6066),T=n(5202);function P(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function M(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?P(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):P(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function D(e){var t=e.options,n=e.value,r=e.label,o=e.onChange,i=e.onClose,a=p().useRef(),s=p().useRef(),u=p().useRef(null);p().useEffect((function(){s.current?s.current.focus():u.current&&u.current.focus()}),[]);return(0,c.jsx)("div",{className:"picker",role:"dialog","aria-modal":"true","aria-label":r,onKeyDown:function(e){var n=t.find((function(t){return t.keyBinding===e.key.toLowerCase()}));if(e.metaKey||e.altKey||e.ctrlKey||!n)if(e.key===I.tW.TAB)setTimeout((function(){s.current!==document.activeElement&&i()}),0);else if((0,I.Wl)(e.key)){var r=document.activeElement,o=(0,T.G3)().rtl,a=Array.prototype.indexOf.call(u.current.children,r);if(-1!==a){var l=t.length,c=a;switch(e.key){case o?I.tW.ARROW_LEFT:I.tW.ARROW_RIGHT:case I.tW.ARROW_DOWN:c=(a+1)%l;break;case o?I.tW.ARROW_RIGHT:I.tW.ARROW_LEFT:case I.tW.ARROW_UP:c=(l+a-1)%l}u.current.children[c].focus()}e.preventDefault()}else e.key!==I.tW.ESCAPE&&e.key!==I.tW.ENTER||(e.preventDefault(),i());else{var d=t.indexOf(n);u.current.children[d].focus(),e.preventDefault()}e.nativeEvent.stopImmediatePropagation(),e.stopPropagation()},children:(0,c.jsx)("div",{className:"picker-content",ref:u,children:t.map((function(e,t){return(0,c.jsxs)("button",{className:(0,l.Z)("picker-option",{active:n===e.value}),onClick:function(t){t.currentTarget.focus(),o(e.value)},title:"".concat(e.text," — ").concat(e.keyBinding.toUpperCase()),"aria-label":e.text||"none","aria-keyshortcuts":e.keyBinding,ref:function(r){r&&0===t&&(a.current=r),r&&e.value===n&&(s.current=r)},onFocus:function(){o(e.value)},children:[e.icon,(0,c.jsx)("span",{className:"picker-keybinding",children:e.keyBinding})]},e.text)}))})})}function A(e){var t,n=e.value,r=e.label,o=e.options,i=e.onChange,a=e.group,l=void 0===a?"":a,s=p().useState(!1),u=(0,d.Z)(s,2),f=u[0],m=u[1],g=p().useRef(null),v=(0,T.G3)().rtl;return(0,c.jsxs)("div",{children:[(0,c.jsx)("button",{name:l,className:f?"active":"","aria-label":r,onClick:function(){return m(!f)},ref:g,children:null===(t=o.find((function(e){return e.value===n})))||void 0===t?void 0:t.icon}),(0,c.jsx)(p().Suspense,{fallback:"",children:f?(0,c.jsxs)(c.Fragment,{children:[(0,c.jsx)(h.J,M(M({onCloseRequest:function(e){return e.target!==g.current&&m(!1)}},v?{right:5.5}:{left:-5.5}),{},{children:(0,c.jsx)(D,{options:o,value:n,label:r,onChange:i,onClose:function(){var e;m(!1),null===(e=g.current)||void 0===e||e.focus()}})})),(0,c.jsx)("div",{className:"picker-triangle"})]}):null})]})}var L=n(3646),Z=n(2335),R=n(1047),z=n(1935),N=n(5710),B=n(1974),H=n(6954),F=n(75),W=n(8120),U=n(6340),K=n(7901);function Y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function G(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Y(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Y(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var V=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]&&arguments[3],o=(0,U.xn)((0,F.eD)(e,t,{includeBoundTextElement:r}));return e.map((function(e){var r;return o.get(e.id)||e.id===(null===(r=t.editingElement)||void 0===r?void 0:r.id)?n(e):e}))},X=function(e,t,n,r){var o,i,a=t.editingElement,l=(0,R.Lm)(e);return null!==(o=null!==(i=a&&n(a))&&void 0!==i?i:(0,F.N)(l,t)?(0,F.PR)(l,t,n):r)&&void 0!==o?o:r},q=function(e,t,n,o){var i=new Set;return{elements:V(e,t,(function(e){if((0,R.iB)(e)){var t=n(e);i.add(t);var r=(0,z.BE)(e,{fontSize:t});return(0,R.oN)(r,(0,N.tl)(e)),o=e,a=r,r=(0,B.Xh)(a)?a:(0,z.DR)(a,{x:"left"===o.textAlign?o.x:o.x+(o.width-a.width)/("center"===o.textAlign?2:1),y:o.y+(o.height-a.height)/2},!1)}var o,a;return e}),!0),appState:G(G({},t),{},{currentItemFontSize:1===i.size?(0,r.Z)(i)[0]:null!=o?o:t.currentItemFontSize}),commitToHistory:!0}},$=(0,K.z)({name:"changeStrokeColor",trackEvent:!1,perform:function(e,t,n){return G(G({},n.currentItemStrokeColor&&{elements:V(e,t,(function(e){return(0,W.PD)(e.type)?(0,z.BE)(e,{strokeColor:n.currentItemStrokeColor}):e}),!0)}),{},{appState:G(G({},t),n),commitToHistory:!!n.currentItemStrokeColor})},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;e.appProps;return(0,c.jsxs)(c.Fragment,{children:[(0,c.jsx)("h3",{"aria-hidden":"true",children:(0,T.t)("labels.stroke")}),(0,c.jsx)(u.z,{topPicks:i.fY,palette:i.Wk,type:"elementStroke",label:(0,T.t)("labels.stroke"),color:X(t,n,(function(e){return e.strokeColor}),n.currentItemStrokeColor),onChange:function(e){return r({currentItemStrokeColor:e})},elements:t,appState:n,updateData:r})]})}}),J=(0,K.z)({name:"changeBackgroundColor",trackEvent:!1,perform:function(e,t,n){return G(G({},n.currentItemBackgroundColor&&{elements:V(e,t,(function(e){return(0,z.BE)(e,{backgroundColor:n.currentItemBackgroundColor})}))}),{},{appState:G(G({},t),n),commitToHistory:!!n.currentItemBackgroundColor})},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;e.appProps;return(0,c.jsxs)(c.Fragment,{children:[(0,c.jsx)("h3",{"aria-hidden":"true",children:(0,T.t)("labels.background")}),(0,c.jsx)(u.z,{topPicks:i.eq,palette:i.SF,type:"elementBackground",label:(0,T.t)("labels.background"),color:X(t,n,(function(e){return e.backgroundColor}),n.currentItemBackgroundColor),onChange:function(e){return r({currentItemBackgroundColor:e})},elements:t,appState:n,updateData:r})]})}}),Q=(0,K.z)({name:"changeFillStyle",trackEvent:!1,perform:function(e,t,n,r){return(0,a.L)("element","changeFillStyle","".concat(n," (").concat(r.device.isMobile?"mobile":"desktop",")")),{elements:V(e,t,(function(e){return(0,z.BE)(e,{fillStyle:n})})),appState:G(G({},t),{},{currentItemFillStyle:n}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData,o=(0,F.eD)(t,n),i=o.length>0&&o.every((function(e){return"zigzag"===e.fillStyle}));return(0,c.jsxs)("fieldset",{children:[(0,c.jsx)("legend",{children:(0,T.t)("labels.fill")}),(0,c.jsx)(s,{type:"button",options:[{value:"hachure",text:"".concat(i?(0,T.t)("labels.zigzag"):(0,T.t)("labels.hachure")," (").concat((0,U.uY)("Alt-Click"),")"),icon:i?L.FillZigZagIcon:L.FillHachureIcon,active:!!i||void 0},{value:"cross-hatch",text:(0,T.t)("labels.crossHatch"),icon:L.FillCrossHatchIcon},{value:"solid",text:(0,T.t)("labels.solid"),icon:L.FillSolidIcon}],value:X(t,n,(function(e){return e.fillStyle}),n.currentItemFillStyle),onClick:function(e,t){var n=t.altKey&&"hachure"===e&&o.every((function(e){return"hachure"===e.fillStyle}))?"zigzag":e;r(n)}})]})}}),ee=(0,K.z)({name:"changeStrokeWidth",trackEvent:!1,perform:function(e,t,n){return{elements:V(e,t,(function(e){return(0,z.BE)(e,{strokeWidth:n})})),appState:G(G({},t),{},{currentItemStrokeWidth:n}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,c.jsxs)("fieldset",{children:[(0,c.jsx)("legend",{children:(0,T.t)("labels.strokeWidth")}),(0,c.jsx)(s,{group:"stroke-width",options:[{value:1,text:(0,T.t)("labels.thin"),icon:L.StrokeWidthBaseIcon},{value:2,text:(0,T.t)("labels.bold"),icon:L.StrokeWidthBoldIcon},{value:4,text:(0,T.t)("labels.extraBold"),icon:L.StrokeWidthExtraBoldIcon}],value:X(t,n,(function(e){return e.strokeWidth}),n.currentItemStrokeWidth),onChange:function(e){return r(e)}})]})}}),te=(0,K.z)({name:"changeSloppiness",trackEvent:!1,perform:function(e,t,n){return{elements:V(e,t,(function(e){return(0,z.BE)(e,{seed:(0,H.LU)(),roughness:n})})),appState:G(G({},t),{},{currentItemRoughness:n}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,c.jsxs)("fieldset",{children:[(0,c.jsx)("legend",{children:(0,T.t)("labels.sloppiness")}),(0,c.jsx)(s,{group:"sloppiness",options:[{value:0,text:(0,T.t)("labels.architect"),icon:L.SloppinessArchitectIcon},{value:1,text:(0,T.t)("labels.artist"),icon:L.SloppinessArtistIcon},{value:2,text:(0,T.t)("labels.cartoonist"),icon:L.SloppinessCartoonistIcon}],value:X(t,n,(function(e){return e.roughness}),n.currentItemRoughness),onChange:function(e){return r(e)}})]})}}),ne=((0,K.z)({name:"changeStrokeStyle",trackEvent:!1,perform:function(e,t,n){return{elements:V(e,t,(function(e){return(0,z.BE)(e,{strokeStyle:n})})),appState:G(G({},t),{},{currentItemStrokeStyle:n}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,c.jsxs)("fieldset",{children:[(0,c.jsx)("legend",{children:(0,T.t)("labels.strokeStyle")}),(0,c.jsx)(s,{group:"strokeStyle",options:[{value:"solid",text:(0,T.t)("labels.strokeStyle_solid"),icon:L.StrokeWidthBaseIcon},{value:"dashed",text:(0,T.t)("labels.strokeStyle_dashed"),icon:L.StrokeStyleDashedIcon},{value:"dotted",text:(0,T.t)("labels.strokeStyle_dotted"),icon:L.StrokeStyleDottedIcon}],value:X(t,n,(function(e){return e.strokeStyle}),n.currentItemStrokeStyle),onChange:function(e){return r(e)}})]})}}),(0,K.z)({name:"changeOpacity",trackEvent:!1,perform:function(e,t,n){return{elements:V(e,t,(function(e){return(0,z.BE)(e,{opacity:n})}),!0),appState:G(G({},t),{},{currentItemOpacity:n}),commitToHistory:!0}},PanelComponent:function(e){var t,n=e.elements,r=e.appState,o=e.updateData;return(0,c.jsxs)("label",{className:"control-label",children:[(0,T.t)("labels.opacity"),(0,c.jsx)("input",{type:"range",min:"0",max:"100",step:"10",onChange:function(e){return o(+e.target.value)},value:null!==(t=X(n,r,(function(e){return e.opacity}),r.currentItemOpacity))&&void 0!==t?t:void 0})]})}})),re=(0,K.z)({name:"changeFontSize",trackEvent:!1,perform:function(e,t,n){return q(e,t,(function(){return n}),n)},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,c.jsxs)("fieldset",{children:[(0,c.jsx)("legend",{children:(0,T.t)("labels.fontSize")}),(0,c.jsx)(s,{group:"font-size",options:[{value:16,text:(0,T.t)("labels.small"),icon:L.FontSizeSmallIcon,testId:"fontSize-small"},{value:20,text:(0,T.t)("labels.medium"),icon:L.FontSizeMediumIcon,testId:"fontSize-medium"},{value:28,text:(0,T.t)("labels.large"),icon:L.FontSizeLargeIcon,testId:"fontSize-large"},{value:36,text:(0,T.t)("labels.veryLarge"),icon:L.FontSizeExtraLargeIcon,testId:"fontSize-veryLarge"}],value:X(t,n,(function(e){if((0,R.iB)(e))return e.fontSize;var t=(0,N.WJ)(e);return t?t.fontSize:null}),n.currentItemFontSize||Z.n5),onChange:function(e){return r(e)}})]})}}),oe=(0,K.z)({name:"decreaseFontSize",trackEvent:!1,perform:function(e,t,n){return q(e,t,(function(e){return Math.round(1/1.1*e.fontSize)}))},keyTest:function(e){return e[I.tW.CTRL_OR_CMD]&&e.shiftKey&&(e.key===I.tW.CHEVRON_LEFT||e.key===I.tW.COMMA)}}),ie=(0,K.z)({name:"increaseFontSize",trackEvent:!1,perform:function(e,t,n){return q(e,t,(function(e){return Math.round(1.1*e.fontSize)}))},keyTest:function(e){return e[I.tW.CTRL_OR_CMD]&&e.shiftKey&&(e.key===I.tW.CHEVRON_RIGHT||e.key===I.tW.PERIOD)}}),ae=(0,K.z)({name:"changeFontFamily",trackEvent:!1,perform:function(e,t,n){return{elements:V(e,t,(function(e){if((0,R.iB)(e)){var t=(0,z.BE)(e,{fontFamily:n,lineHeight:(0,N.PT)(n)});return(0,R.oN)(t,(0,N.tl)(e)),t}return e}),!0),appState:G(G({},t),{},{currentItemFontFamily:n}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData,o=[{value:Z.ut.Virgil,text:(0,T.t)("labels.handDrawn"),icon:L.FreedrawIcon},{value:Z.ut.Helvetica,text:(0,T.t)("labels.normal"),icon:L.FontFamilyNormalIcon},{value:Z.ut.Cascadia,text:(0,T.t)("labels.code"),icon:L.FontFamilyCodeIcon}];return(0,c.jsxs)("fieldset",{children:[(0,c.jsx)("legend",{children:(0,T.t)("labels.fontFamily")}),(0,c.jsx)(s,{group:"font-family",options:o,value:X(t,n,(function(e){if((0,R.iB)(e))return e.fontFamily;var t=(0,N.WJ)(e);return t?t.fontFamily:null}),n.currentItemFontFamily||Z.rk),onChange:function(e){return r(e)}})]})}}),le=(0,K.z)({name:"changeTextAlign",trackEvent:!1,perform:function(e,t,n){return{elements:V(e,t,(function(e){if((0,R.iB)(e)){var t=(0,z.BE)(e,{textAlign:n});return(0,R.oN)(t,(0,N.tl)(e)),t}return e}),!0),appState:G(G({},t),{},{currentItemTextAlign:n}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,c.jsxs)("fieldset",{children:[(0,c.jsx)("legend",{children:(0,T.t)("labels.textAlign")}),(0,c.jsx)(s,{group:"text-align",options:[{value:"left",text:(0,T.t)("labels.left"),icon:L.TextAlignLeftIcon,testId:"align-left"},{value:"center",text:(0,T.t)("labels.center"),icon:L.TextAlignCenterIcon,testId:"align-horizontal-center"},{value:"right",text:(0,T.t)("labels.right"),icon:L.TextAlignRightIcon,testId:"align-right"}],value:X(t,n,(function(e){if((0,R.iB)(e))return e.textAlign;var t=(0,N.WJ)(e);return t?t.textAlign:null}),n.currentItemTextAlign),onChange:function(e){return r(e)}})]})}}),ce=(0,K.z)({name:"changeVerticalAlign",trackEvent:{category:"element"},perform:function(e,t,n){return{elements:V(e,t,(function(e){if((0,R.iB)(e)){var t=(0,z.BE)(e,{verticalAlign:n});return(0,R.oN)(t,(0,N.tl)(e)),t}return e}),!0),appState:G({},t),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,c.jsx)("fieldset",{children:(0,c.jsx)(s,{group:"text-align",options:[{value:Z.oX.TOP,text:(0,T.t)("labels.alignTop"),icon:(0,c.jsx)(L.TextAlignTopIcon,{theme:n.theme}),testId:"align-top"},{value:Z.oX.MIDDLE,text:(0,T.t)("labels.centerVertically"),icon:(0,c.jsx)(L.TextAlignMiddleIcon,{theme:n.theme}),testId:"align-middle"},{value:Z.oX.BOTTOM,text:(0,T.t)("labels.alignBottom"),icon:(0,c.jsx)(L.TextAlignBottomIcon,{theme:n.theme}),testId:"align-bottom"}],value:X(t,n,(function(e){if((0,R.iB)(e)&&e.containerId)return e.verticalAlign;var t=(0,N.WJ)(e);return t?t.verticalAlign:null}),Z.oX.MIDDLE),onChange:function(e){return r(e)}})})}});(0,K.z)({name:"changeRoundness",trackEvent:!1,perform:function(e,t,n){return{elements:V(e,t,(function(e){return(0,z.BE)(e,{roundness:"round"===n?{type:(0,B.QI)(e.type)?Z.a6.ADAPTIVE_RADIUS:Z.a6.PROPORTIONAL_RADIUS}:null})})),appState:G(G({},t),{},{currentItemRoundness:n}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData,o=(0,F.Zs)((0,R.Lm)(t),n).some((function(e){var t;return(null===(t=e.roundness)||void 0===t?void 0:t.type)===Z.a6.LEGACY}));return(0,c.jsxs)("fieldset",{children:[(0,c.jsx)("legend",{children:(0,T.t)("labels.edges")}),(0,c.jsx)(s,{group:"edges",options:[{value:"sharp",text:(0,T.t)("labels.sharp"),icon:L.EdgeSharpIcon},{value:"round",text:(0,T.t)("labels.round"),icon:L.EdgeRoundIcon}],value:X(t,n,(function(e){return o?null:e.roundness?"round":"sharp"}),(0,F.sh)(n.activeTool.type)&&n.currentItemRoundness||null),onChange:function(e){return r(e)}})]})}}),(0,K.z)({name:"changeArrowhead",trackEvent:!1,perform:function(e,t,n){return{elements:V(e,t,(function(e){if((0,B.bt)(e)){var t=n.position,r=n.type;if("start"===t)return(0,z.BE)(e,{startArrowhead:r});if("end"===t)return(0,z.BE)(e,{endArrowhead:r})}return e})),appState:G(G({},t),{},(0,o.Z)({},"start"===n.position?"currentItemStartArrowhead":"currentItemEndArrowhead",n.type)),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData,o=(0,T.G3)().rtl;return(0,c.jsxs)("fieldset",{children:[(0,c.jsx)("legend",{children:(0,T.t)("labels.arrowheads")}),(0,c.jsxs)("div",{className:"iconSelectList buttonList",children:[(0,c.jsx)(A,{label:"arrowhead_start",options:[{value:null,text:(0,T.t)("labels.arrowhead_none"),icon:L.ArrowheadNoneIcon,keyBinding:"q"},{value:"arrow",text:(0,T.t)("labels.arrowhead_arrow"),icon:(0,c.jsx)(L.ArrowheadArrowIcon,{flip:!o}),keyBinding:"w"},{value:"bar",text:(0,T.t)("labels.arrowhead_bar"),icon:(0,c.jsx)(L.ArrowheadBarIcon,{flip:!o}),keyBinding:"e"},{value:"dot",text:(0,T.t)("labels.arrowhead_dot"),icon:(0,c.jsx)(L.ArrowheadDotIcon,{flip:!o}),keyBinding:"r"},{value:"triangle",text:(0,T.t)("labels.arrowhead_triangle"),icon:(0,c.jsx)(L.ArrowheadTriangleIcon,{flip:!o}),keyBinding:"t"}],value:X(t,n,(function(e){return(0,B.bt)(e)&&(0,F.Un)(e.type)?e.startArrowhead:n.currentItemStartArrowhead}),n.currentItemStartArrowhead),onChange:function(e){return r({position:"start",type:e})}}),(0,c.jsx)(A,{label:"arrowhead_end",group:"arrowheads",options:[{value:null,text:(0,T.t)("labels.arrowhead_none"),keyBinding:"q",icon:L.ArrowheadNoneIcon},{value:"arrow",text:(0,T.t)("labels.arrowhead_arrow"),keyBinding:"w",icon:(0,c.jsx)(L.ArrowheadArrowIcon,{flip:o})},{value:"bar",text:(0,T.t)("labels.arrowhead_bar"),keyBinding:"e",icon:(0,c.jsx)(L.ArrowheadBarIcon,{flip:o})},{value:"dot",text:(0,T.t)("labels.arrowhead_dot"),keyBinding:"r",icon:(0,c.jsx)(L.ArrowheadDotIcon,{flip:o})},{value:"triangle",text:(0,T.t)("labels.arrowhead_triangle"),icon:(0,c.jsx)(L.ArrowheadTriangleIcon,{flip:o}),keyBinding:"t"}],value:X(t,n,(function(e){return(0,B.bt)(e)&&(0,F.Un)(e.type)?e.endArrowhead:n.currentItemEndArrowhead}),n.currentItemEndArrowhead),onChange:function(e){return r({position:"end",type:e})}})]})]})}})},4958:function(e,t,n){"use strict";n.d(t,{u:function(){return c}});var r=n(7169),o=n(7901),i=n(6066);function a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function l(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?a(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):a(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var c=(0,o.z)({name:"stats",viewMode:!0,trackEvent:{category:"menu"},perform:function(e,t){return{appState:l(l({},t),{},{showStats:!this.checked(t)}),commitToHistory:!1}},checked:function(e){return e.showStats},contextItemLabel:"stats.title",keyTest:function(e){return!e[i.tW.CTRL_OR_CMD]&&e.altKey&&e.code===i.aU.SLASH}})},1781:function(e,t,n){"use strict";n.r(t),n.d(t,{actionAddToLibrary:function(){return He},actionAlignBottom:function(){return Xe},actionAlignHorizontallyCentered:function(){return Qe},actionAlignLeft:function(){return qe},actionAlignRight:function(){return $e},actionAlignTop:function(){return Ve},actionAlignVerticallyCentered:function(){return Je},actionBindText:function(){return yt.vD},actionBringForward:function(){return p},actionBringToFront:function(){return m},actionChangeBackgroundColor:function(){return H.lR},actionChangeExportBackground:function(){return q.XA},actionChangeFillStyle:function(){return H.AP},actionChangeFontFamily:function(){return H.PR},actionChangeFontSize:function(){return H.ue},actionChangeOpacity:function(){return H.$o},actionChangeProjectName:function(){return q.zX},actionChangeSloppiness:function(){return H.w8},actionChangeStrokeColor:function(){return H.o8},actionChangeStrokeWidth:function(){return H.BI},actionChangeTextAlign:function(){return H.hH},actionChangeVerticalAlign:function(){return H.IP},actionChangeViewBackgroundColor:function(){return F.Ph},actionClearCanvas:function(){return F.mo},actionCopy:function(){return dt.uN},actionCopyAsPng:function(){return dt.jK},actionCopyAsSvg:function(){return dt.FA},actionCopyStyles:function(){return ee},actionCut:function(){return dt.ZM},actionDeleteSelected:function(){return r.X},actionDuplicateSelection:function(){return N},actionFinalize:function(){return X},actionFlipHorizontal:function(){return lt},actionFlipVertical:function(){return ct},actionFullScreen:function(){return ae},actionGoToCollaborator:function(){return Re},actionGroup:function(){return me},actionLink:function(){return xt.nz},actionLoadScene:function(){return q._d},actionPasteStyles:function(){return te},actionResetZoom:function(){return F._s},actionSaveFileToDisk:function(){return q.mM},actionSaveToActiveFile:function(){return q.ns},actionSelectAll:function(){return S},actionSendBackward:function(){return f},actionSendToBack:function(){return h},actionShortcuts:function(){return le},actionToggleCanvasMenu:function(){return oe},actionToggleEditMenu:function(){return ie},actionToggleElementLock:function(){return wt.$},actionToggleGridMode:function(){return ht},actionToggleLinearEditor:function(){return St},actionToggleStats:function(){return bt.u},actionToggleTheme:function(){return F.Zp},actionToggleZenMode:function(){return vt},actionUnbindText:function(){return yt.y7},actionUngroup:function(){return ge},actionZoomIn:function(){return F.Lo},actionZoomOut:function(){return F.CZ},actionZoomToFit:function(){return F.Ol},copyText:function(){return dt.zp},distributeHorizontally:function(){return ot},distributeVertically:function(){return it}});var r=n(533),o=n(7642),i=n(6066),a=n(5202),l=n(6340),c=n(7901),s=n(3646),u=n(2335),d=n(4512),f=(0,c.z)({name:"sendBackward",trackEvent:{category:"element"},perform:function(e,t){return{elements:(0,o.ux)(e,t),appState:t,commitToHistory:!0}},contextItemLabel:"labels.sendBackward",keyPriority:40,keyTest:function(e){return e[i.tW.CTRL_OR_CMD]&&!e.shiftKey&&e.code===i.aU.BRACKET_LEFT},PanelComponent:function(e){var t=e.updateData;e.appState;return(0,d.jsx)("button",{type:"button",className:"zIndexButton",onClick:function(){return t(null)},title:"".concat((0,a.t)("labels.sendBackward")," — ").concat((0,l.uY)("CtrlOrCmd+[")),children:s.SendBackwardIcon})}}),p=(0,c.z)({name:"bringForward",trackEvent:{category:"element"},perform:function(e,t){return{elements:(0,o.jY)(e,t),appState:t,commitToHistory:!0}},contextItemLabel:"labels.bringForward",keyPriority:40,keyTest:function(e){return e[i.tW.CTRL_OR_CMD]&&!e.shiftKey&&e.code===i.aU.BRACKET_RIGHT},PanelComponent:function(e){var t=e.updateData;e.appState;return(0,d.jsx)("button",{type:"button",className:"zIndexButton",onClick:function(){return t(null)},title:"".concat((0,a.t)("labels.bringForward")," — ").concat((0,l.uY)("CtrlOrCmd+]")),children:s.BringForwardIcon})}}),h=(0,c.z)({name:"sendToBack",trackEvent:{category:"element"},perform:function(e,t){return{elements:(0,o.yZ)(e,t),appState:t,commitToHistory:!0}},contextItemLabel:"labels.sendToBack",keyTest:function(e){return u.Um?e[i.tW.CTRL_OR_CMD]&&e.altKey&&e.code===i.aU.BRACKET_LEFT:e[i.tW.CTRL_OR_CMD]&&e.shiftKey&&e.code===i.aU.BRACKET_LEFT},PanelComponent:function(e){var t=e.updateData;e.appState;return(0,d.jsx)("button",{type:"button",className:"zIndexButton",onClick:function(){return t(null)},title:"".concat((0,a.t)("labels.sendToBack")," — ").concat(u.Um?(0,l.uY)("CtrlOrCmd+Alt+["):(0,l.uY)("CtrlOrCmd+Shift+[")),children:s.SendToBackIcon})}}),m=(0,c.z)({name:"bringToFront",trackEvent:{category:"element"},perform:function(e,t){return{elements:(0,o.rr)(e,t),appState:t,commitToHistory:!0}},contextItemLabel:"labels.bringToFront",keyTest:function(e){return u.Um?e[i.tW.CTRL_OR_CMD]&&e.altKey&&e.code===i.aU.BRACKET_RIGHT:e[i.tW.CTRL_OR_CMD]&&e.shiftKey&&e.code===i.aU.BRACKET_RIGHT},PanelComponent:function(e){var t=e.updateData;e.appState;return(0,d.jsx)("button",{type:"button",className:"zIndexButton",onClick:function(e){return t(null)},title:"".concat((0,a.t)("labels.bringToFront")," — ").concat(u.Um?(0,l.uY)("CtrlOrCmd+Alt+]"):(0,l.uY)("CtrlOrCmd+Shift+]")),children:s.BringToFrontIcon})}}),g=n(7169),v=n(242),b=n(1047),y=n(1974),x=n(6938),w=n(1868);function k(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function E(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?k(Object(n),!0).forEach((function(t){(0,g.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):k(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var S=(0,c.z)({name:"selectAll",trackEvent:{category:"canvas"},perform:function(e,t,n,r){if(t.editingLinearElement)return!1;var o=(0,w.aI)(e.filter((function(e){return!(e.isDeleted||(0,b.iB)(e)&&e.containerId||e.locked)}))).reduce((function(e,t){return e[t.id]=!0,e}),{});return{appState:(0,v.bO)(E(E({},t),{},{selectedLinearElement:1===Object.keys(o).length&&(0,y.bt)(e[0])?new x._(e[0],r.scene):null,editingGroupId:null,selectedElementIds:o}),(0,b.Lm)(e)),commitToHistory:!0}},contextItemLabel:"labels.selectAll",keyTest:function(e){return e[i.tW.CTRL_OR_CMD]&&e.key===i.tW.A}}),O=n(1930),j=n(75),_=n(1319),C=n(8290),I=n(5710);function T(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return P(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return P(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function P(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var M=function(e){var t=e.slice(),n=new Set,r=function e(t){var n,r,o,i=null===(n=t[0])||void 0===n||null===(r=n.groupIds)||void 0===r?void 0:r.join(""),a=[t[0]],l=[],c=T(t.slice(1));try{for(c.s();!(o=c.n()).done;){var s,u=o.value;(null===(s=u.groupIds)||void 0===s?void 0:s.join(""))===i?a.push(u):l.push(u)}}catch(e){c.e(e)}finally{c.f()}return l.length?[].concat(a,(0,O.Z)(e(l))):a},o=new Map;return t.forEach((function(e,i){var a;if(!o.has(e.id))if(null!==(a=e.groupIds)&&void 0!==a&&a.length){var l,c=e.groupIds[e.groupIds.length-1],s=t.slice(i).filter((function(e){var t,n=null==e||null===(t=e.groupIds)||void 0===t?void 0:t.some((function(e){return e===c}));return n&&o.set(e.id,!0),n})),u=T(r(s));try{for(u.s();!(l=u.n()).done;){var d=l.value;n.add(d)}}catch(e){u.e(e)}finally{u.f()}}else n.add(e)})),n.size!==e.length?(console.error("normalizeGroupElementOrder: lost some elements... bailing!"),e):(0,O.Z)(n)},D=function(e){var t=function(e){var t=(0,l.I4)(e),n=e.slice(),r=new Set;return n.forEach((function(e,o){var i;if(e)if(null!==(i=e.boundElements)&&void 0!==i&&i.length)r.add(e),n[o]=null,e.boundElements.forEach((function(e){var o=t.get(e.id);o&&"text"===e.type&&(r.add(o[0]),n[o[1]]=null)}));else if("text"===e.type&&e.containerId){var a,l=t.get(e.containerId);null!=l&&null!==(a=l[0].boundElements)&&void 0!==a&&a.find((function(t){return t.id===e.id}))||(r.add(e),n[o]=null)}else r.add(e),n[o]=null})),r.size!==e.length?(console.error("normalizeBoundElementsOrder: lost some elements... bailing!"),e):(0,O.Z)(r)}(M(e));return t},A=n(9040);function L(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return Z(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Z(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function Z(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function R(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function z(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?R(Object(n),!0).forEach((function(t){(0,g.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):R(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var N=(0,c.z)({name:"duplicateSelection",trackEvent:{category:"element"},perform:function(e,t){if(t.editingLinearElement){var n=x._.duplicateSelectedPoints(t);return!!n&&{elements:e,appState:n.appState,commitToHistory:!0}}return z(z({},B(e,t)),{},{commitToHistory:!0})},contextItemLabel:"labels.duplicateSelection",keyTest:function(e){return e[i.tW.CTRL_OR_CMD]&&e.key===i.tW.D},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,d.jsx)(_.V,{type:"button",icon:s.DuplicateIcon,title:"".concat((0,a.t)("labels.duplicateSelection")," — ").concat((0,l.uY)("CtrlOrCmd+D")),"aria-label":(0,a.t)("labels.duplicateSelection"),onClick:function(){return r(null)},visible:(0,j.N)((0,b.Lm)(t),n)})}}),B=function(e,t){for(var n=D(e),r=new Map,o=[],i=[],a=new Map,c=function(e){var n=(0,b.Sy)(t.editingGroupId,r,e,{x:e.x+u.k/2,y:e.y+u.k/2});return a.set(e.id,n.id),i.push(e),o.push(n),n},s=(0,l.xn)((0,w.eD)(n,t,{includeBoundTextElement:!0,includeElementsInFrames:!0})),d=new Map,f=function(e){var t,n=L(e);try{for(n.s();!(t=n.n()).done;){var r=t.value;d.set(r.id,!0)}}catch(e){n.e(e)}finally{n.f()}return e},p=[],h=-1;++h<n.length;){var m=n[h];if(!d.get(m.id)){var g=(0,I.WJ)(m),x=(0,y.He)(m);if(s.get(m.id)){if(m.groupIds.length||g||x){var k=(0,v.yO)(t,m);if(k){var E=(0,v.Fb)(n,k).flatMap((function(t){return(0,y.He)(t)?[].concat((0,O.Z)((0,A.wO)(e,t.id)),[t]):[t]}));p.push.apply(p,(0,O.Z)(f([].concat((0,O.Z)(E),(0,O.Z)(E.map((function(e){return c(e)})))))));continue}if(g){p.push.apply(p,(0,O.Z)(f([m,g,c(m),c(g)])));continue}if(x){var S=(0,A.wO)(n,m.id);p.push.apply(p,(0,O.Z)(f([].concat((0,O.Z)(S),[m],(0,O.Z)(S.map((function(e){return c(e)}))),[c(m)]))));continue}}m.frameId&&s.has(m.frameId)||p.push.apply(p,(0,O.Z)(f([m,c(m)])))}else p.push.apply(p,(0,O.Z)(f([m])))}}var j=[],_=new Map;for(h=p.length;--h>=0;){var T=p[h];_.get(T.id)||(_.set(T.id,!0),j.push(T))}var P=j.reverse();(0,I.P7)(p,i,a),(0,C.ek)(p,i,a),(0,A.xr)(P,i,a);var M=(0,w.aI)(o);return{elements:P,appState:(0,v.bO)(z(z({},t),{},{selectedGroupIds:{},selectedElementIds:M.reduce((function(e,t){return(0,y.Xh)(t)||(e[t.id]=!0),e}),{})}),(0,b.Lm)(P))}},H=n(6208),F=n(2416),W=n(2577),U=n(1935),K=n(6552),Y=n(1564);function G(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function V(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?G(Object(n),!0).forEach((function(t){(0,g.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):G(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var X=(0,c.z)({name:"finalize",trackEvent:!1,perform:function(e,t,n,r){var o,i=r.canvas,a=r.focusContainer,c=r.scene;if(t.editingLinearElement){var s=t.editingLinearElement,u=s.elementId,d=s.startBindingElement,f=s.endBindingElement,p=x._.getElement(u);if(p)return(0,y.Mn)(p)&&(0,C.HG)(p,d,f),{elements:p.points.length<2||(0,b.QD)(p)?e.filter((function(e){return e.id!==p.id})):void 0,appState:V(V({},t),{},{cursorButton:"up",editingLinearElement:null}),commitToHistory:!0}}var h=e,m=t.pendingImageElementId&&c.getElement(t.pendingImageElementId);m&&(0,U.DR)(m,{isDeleted:!0},!1),window.document.activeElement instanceof HTMLElement&&a();var v,w=t.multiElement?t.multiElement:"freedraw"===(null===(o=t.editingElement)||void 0===o?void 0:o.type)?t.editingElement:null;if(w){if("freedraw"!==w.type&&"touch"!==t.lastPointerDownWith){var k=w.points,E=w.lastCommittedPoint;E&&k[k.length-1]===E||(0,U.DR)(w,{points:w.points.slice(0,-1)})}(0,b.QD)(w)&&(h=h.slice(0,-1));var S=(0,K.g6)(w.points,t.zoom.value);if(("line"===w.type||"freedraw"===w.type)&&S){var O=w.points,j=O[0];(0,U.DR)(w,{points:O.map((function(e,t){return t===O.length-1?[j[0],j[1]]:e}))})}if((0,y.Mn)(w)&&!S&&w.points.length>1){var _=x._.getPointAtIndexGlobalCoordinates(w,-1),I=(0,W.Z)(_,2),T=I[0],P=I[1];(0,C.R)(w,t,Y.Z.getScene(w),{x:T,y:P})}t.activeTool.locked||"freedraw"===t.activeTool.type||(t.selectedElementIds[w.id]=!0)}return(t.activeTool.locked||"freedraw"===t.activeTool.type)&&w||(0,l.z8)(i),v="eraser"===t.activeTool.type?(0,l.Om)(t,V(V({},t.activeTool.lastActiveTool||{type:"selection"}),{},{lastActiveToolBeforeEraser:null})):(0,l.Om)(t,{type:"selection"}),{elements:h,appState:V(V({},t),{},{cursorButton:"up",activeTool:(t.activeTool.locked||"freedraw"===t.activeTool.type)&&w?t.activeTool:v,draggingElement:null,multiElement:null,editingElement:null,startBoundElement:null,suggestedBindings:[],selectedElementIds:w&&!t.activeTool.locked&&"freedraw"!==t.activeTool.type?V(V({},t.selectedElementIds),{},(0,g.Z)({},w.id,!0)):t.selectedElementIds,selectedLinearElement:w&&(0,y.bt)(w)?new x._(w,c):t.selectedLinearElement,pendingImageElementId:null}),commitToHistory:"freedraw"===t.activeTool.type}},keyTest:function(e,t){return e.key===i.tW.ESCAPE&&(null!==t.editingLinearElement||!t.draggingElement&&null===t.multiElement)||(e.key===i.tW.ESCAPE||e.key===i.tW.ENTER)&&null!==t.multiElement},PanelComponent:function(e){var t=e.appState,n=e.updateData,r=e.data;return(0,d.jsx)(_.V,{type:"button",icon:s.done,title:(0,a.t)("buttons.done"),"aria-label":(0,a.t)("buttons.done"),onClick:n,visible:null!=t.multiElement,size:(null==r?void 0:r.size)||"medium"})}}),q=n(8671);function $(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function J(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?$(Object(n),!0).forEach((function(t){(0,g.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):$(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Q="{}",ee=(0,c.z)({name:"copyStyles",trackEvent:{category:"element"},perform:function(e,t){var n=[],r=e.find((function(e){return t.selectedElementIds[e.id]}));if(n.push(r),r&&(0,y.Xo)(r)){var o=(0,I.WJ)(r);n.push(o)}return r&&(Q=JSON.stringify(n)),{appState:J(J({},t),{},{toast:{message:(0,a.t)("toast.copyStyles")}}),commitToHistory:!1}},contextItemLabel:"labels.copyStyles",keyTest:function(e){return e[i.tW.CTRL_OR_CMD]&&e.altKey&&e.code===i.aU.C}}),te=(0,c.z)({name:"pasteStyles",trackEvent:{category:"element"},perform:function(e,t){var n=JSON.parse(Q),r=n[0],o=n[1];if(!(0,b.r2)(r))return{elements:e,commitToHistory:!1};var i=(0,j.eD)(e,t,{includeBoundTextElement:!0}),a=i.map((function(e){return e.id}));return{elements:e.map((function(e){if(a.includes(e.id)){var t,n,l,c,s,d,f,p=r;if((0,b.iB)(e)&&e.containerId&&(p=o),!p)return e;var h=(0,U.BE)(e,{backgroundColor:null===(t=p)||void 0===t?void 0:t.backgroundColor,strokeWidth:null===(n=p)||void 0===n?void 0:n.strokeWidth,strokeColor:null===(l=p)||void 0===l?void 0:l.strokeColor,strokeStyle:null===(c=p)||void 0===c?void 0:c.strokeStyle,fillStyle:null===(s=p)||void 0===s?void 0:s.fillStyle,opacity:null===(d=p)||void 0===d?void 0:d.opacity,roughness:null===(f=p)||void 0===f?void 0:f.roughness,roundness:p.roundness?(0,y.eK)(p.roundness.type,e)?p.roundness:(0,y.UQ)(e):null});if((0,b.iB)(h)){var m,g,v,x=(null===(m=p)||void 0===m?void 0:m.fontSize)||u.n5,w=(null===(g=p)||void 0===g?void 0:g.fontFamily)||u.rk,k=null;(h=(0,U.BE)(h,{fontSize:x,fontFamily:w,textAlign:(null===(v=p)||void 0===v?void 0:v.textAlign)||u.Hg,lineHeight:p.lineHeight||(0,I.PT)(w)})).containerId&&(k=i.find((function(e){return(0,b.iB)(h)&&e.id===h.containerId}))||null),(0,b.oN)(h,k)}return"arrow"===h.type&&(h=(0,U.BE)(h,{startArrowhead:p.startArrowhead,endArrowhead:p.endArrowhead})),(0,y.He)(e)&&(h=(0,U.BE)(h,{roundness:null,backgroundColor:"transparent"})),h}return e})),commitToHistory:!0}},contextItemLabel:"labels.pasteStyles",keyTest:function(e){return e[i.tW.CTRL_OR_CMD]&&e.altKey&&e.code===i.aU.V}});function ne(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function re(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ne(Object(n),!0).forEach((function(t){(0,g.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ne(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var oe=(0,c.z)({name:"toggleCanvasMenu",trackEvent:{category:"menu"},perform:function(e,t){return{appState:re(re({},t),{},{openMenu:"canvas"===t.openMenu?null:"canvas"}),commitToHistory:!1}},PanelComponent:function(e){var t=e.appState,n=e.updateData;return(0,d.jsx)(_.V,{type:"button",icon:s.HamburgerMenuIcon,"aria-label":(0,a.t)("buttons.menu"),onClick:n,selected:"canvas"===t.openMenu})}}),ie=(0,c.z)({name:"toggleEditMenu",trackEvent:{category:"menu"},perform:function(e,t){return{appState:re(re({},t),{},{openMenu:"shape"===t.openMenu?null:"shape"}),commitToHistory:!1}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,d.jsx)(_.V,{visible:(0,b.RT)(n,(0,b.Lm)(t)),type:"button",icon:s.palette,"aria-label":(0,a.t)("buttons.edit"),onClick:r,selected:"shape"===n.openMenu})}}),ae=(0,c.z)({name:"toggleFullScreen",viewMode:!0,trackEvent:{category:"canvas",predicate:function(e){return!(0,l.rB)()}},perform:function(){return(0,l.rB)()||(0,l.wo)(),(0,l.rB)()&&(0,l.Pr)(),{commitToHistory:!1}}}),le=(0,c.z)({name:"toggleShortcuts",viewMode:!0,trackEvent:{category:"menu",action:"toggleHelpDialog"},perform:function(e,t,n,r){var o=r.focusContainer;return"help"===t.openDialog&&o(),{appState:re(re({},t),{},{openDialog:"help"===t.openDialog?null:"help"}),commitToHistory:!1}},keyTest:function(e){return e.key===i.tW.QUESTION_MARK}}),ce=n(6655),se=n(6954);function ue(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function de(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ue(Object(n),!0).forEach((function(t){(0,g.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ue(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function fe(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return pe(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return pe(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function pe(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var he=function(e,t){var n=(0,j.eD)((0,b.Lm)(e),t,{includeBoundTextElement:!0});return n.length>=2&&!function(e){if(e.length>=2){var t,n=fe(e[0].groupIds);try{var r=function(){var n=t.value;if(e.reduce((function(e,t){return e&&(0,v.Nd)(t,n)}),!0))return{v:!0}};for(n.s();!(t=n.n()).done;){var o=r();if("object"===(0,ce.Z)(o))return o.v}}catch(e){n.e(e)}finally{n.f()}}return!1}(n)},me=(0,c.z)({name:"group",trackEvent:{category:"element"},perform:function(e,t,n,r){var o=(0,j.eD)((0,b.Lm)(e),t,{includeBoundTextElement:!0});if(o.length<2)return{appState:t,elements:e,commitToHistory:!1};var i=(0,v.iJ)(t);if(1===i.length){var a=i[0],c=new Set((0,v.Fb)(e,a).map((function(e){return e.id}))),s=new Set(o.map((function(e){return e.id})));if(new Set([].concat((0,O.Z)(Array.from(c)),(0,O.Z)(Array.from(s)))).size===c.size)return{appState:t,elements:e,commitToHistory:!1}}var u=(0,O.Z)(e);new Set(o.map((function(e){return e.frameId}))).size>1&&(0,A.SH)(o).forEach((function(e,n){u=(0,A.lz)(u,e,t)}));var d=(0,se.kb)(),f=(0,l.xn)(o);u=u.map((function(e){return f.get(e.id)?(0,U.BE)(e,{groupIds:(0,v.S_)(e.groupIds,d,t.editingGroupId)}):e}));var p=(0,v.Fb)(u,d),h=p[p.length-1],m=u.lastIndexOf(h),g=u.slice(m+1),y=u.slice(0,m).filter((function(e){return!(0,v.Nd)(e,d)}));return u=[].concat((0,O.Z)(y),(0,O.Z)(p),(0,O.Z)(g)),{appState:(0,v.F$)(d,de(de({},t),{},{selectedGroupIds:{}}),(0,b.Lm)(u)),elements:u,commitToHistory:!0}},contextItemLabel:"labels.group",predicate:function(e,t){return he(e,t)},keyTest:function(e){return!e.shiftKey&&e[i.tW.CTRL_OR_CMD]&&e.key===i.tW.G},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,d.jsx)(_.V,{hidden:!he(t,n),type:"button",icon:(0,d.jsx)(s.GroupIcon,{theme:n.theme}),onClick:function(){return r(null)},title:"".concat((0,a.t)("labels.group")," — ").concat((0,l.uY)("CtrlOrCmd+G")),"aria-label":(0,a.t)("labels.group"),visible:(0,j.N)((0,b.Lm)(t),n)})}}),ge=(0,c.z)({name:"ungroup",trackEvent:{category:"element"},perform:function(e,t,n,r){if(0===(0,v.iJ)(t).length)return{appState:t,elements:e,commitToHistory:!1};var o=(0,O.Z)(e),i=(0,j.eD)(o,t).filter((function(e){return e.frameId})).map((function(e){return r.scene.getElement(e.frameId)})),a=[];o=o.map((function(e){(0,y.Xh)(e)&&a.push(e.id);var n=(0,v.h6)(e.groupIds,t.selectedGroupIds);return n.length===e.groupIds.length?e:(0,U.BE)(e,{groupIds:n})}));var l=(0,v.bO)(de(de({},t),{},{selectedGroupIds:{}}),(0,b.Lm)(o));return i.forEach((function(e){e&&(o=(0,A.pr)(o,(0,A.ni)(o,e,t),e,t))})),a.forEach((function(e){return l.selectedElementIds[e]=!1})),{appState:l,elements:o,commitToHistory:!0}},keyTest:function(e){return e.shiftKey&&e[i.tW.CTRL_OR_CMD]&&e.key===i.tW.G.toUpperCase()},contextItemLabel:"labels.ungroup",predicate:function(e,t){return(0,v.iJ)(t).length>0},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,d.jsx)(_.V,{type:"button",hidden:0===(0,v.iJ)(n).length,icon:(0,d.jsx)(s.UngroupIcon,{theme:n.theme}),onClick:function(){return r(null)},title:"".concat((0,a.t)("labels.ungroup")," — ").concat((0,l.uY)("CtrlOrCmd+Shift+G")),"aria-label":(0,a.t)("labels.ungroup"),visible:(0,j.N)((0,b.Lm)(t),n)})}}),ve=n(8982),be=n(487),ye=n.n(be),xe=n(631),we=n.n(xe),ke=n(2052),Ee=n.n(ke),Se=n(4010),Oe=n.n(Se),je=n(1469),_e=n.n(je),Ce=n(9329),Ie=n.n(Ce),Te=n(3729),Pe={};Pe.styleTagTransform=Ie(),Pe.setAttributes=Oe(),Pe.insert=Ee().bind(null,"head"),Pe.domAPI=we(),Pe.insertStyleElement=_e();ye()(Te.Z,Pe),Te.Z&&Te.Z.locals&&Te.Z.locals;var Me=n(9787),De=function(e){var t=e.color,n=e.onClick,r=e.name,o=e.src,i=(0,ve.l)(r),a=(0,Me.useState)(!1),l=(0,W.Z)(a,2),c=l[0],s=l[1],u=!c&&o,f=u?void 0:{background:t};return(0,d.jsx)("div",{className:"Avatar",style:f,onClick:n,children:u?(0,d.jsx)("img",{className:"Avatar-img",src:o,alt:i,referrerPolicy:"no-referrer",onError:function(){return s(!0)}}):i})},Ae=n(2264);function Le(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ze(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Le(Object(n),!0).forEach((function(t){(0,g.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Le(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Re=(0,c.z)({name:"goToCollaborator",viewMode:!0,trackEvent:{category:"collab"},perform:function(e,t,n){var r=n;return r?{appState:Ze(Ze(Ze({},t),(0,Ae.s)({scenePoint:r,viewportDimensions:{width:t.width,height:t.height},zoom:t.zoom})),{},{openMenu:"canvas"===t.openMenu?null:t.openMenu}),commitToHistory:!1}:{appState:t,commitToHistory:!1}},PanelComponent:function(e){var t=e.updateData,n=e.data,r=(0,W.Z)(n,2),o=r[0],i=r[1],a=(0,ve.G)(o);return(0,d.jsx)(De,{color:a,onClick:function(){return t(i.pointer)},name:i.username||"",src:i.avatarUrl})}}),ze=n(2791);function Ne(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Be(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ne(Object(n),!0).forEach((function(t){(0,g.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ne(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var He=(0,c.z)({name:"addToLibrary",trackEvent:{category:"element"},perform:function(e,t,n,r){var o=(0,j.eD)((0,b.Lm)(e),t,{includeBoundTextElement:!0,includeElementsInFrames:!0});return o.some((function(e){return"image"===e.type}))?{commitToHistory:!1,appState:Be(Be({},t),{},{errorMessage:"Support for adding images to the library coming soon!"})}:r.library.getLatestLibrary().then((function(e){return r.library.setLibrary([{id:(0,se.kb)(),status:"unpublished",elements:o.map(ze.OL),created:Date.now()}].concat((0,O.Z)(e)))})).then((function(){return{commitToHistory:!1,appState:Be(Be({},t),{},{toast:{message:(0,a.t)("toast.addedToLibrary")}})}})).catch((function(e){return{commitToHistory:!1,appState:Be(Be({},t),{},{errorMessage:e.message})}}))},contextItemLabel:"labels.addToLibrary"}),Fe=n(8925);function We(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ue(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?We(Object(n),!0).forEach((function(t){(0,g.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):We(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Ke=function(e,t,n){var r=n.axis,o=n.position,i=(0,Fe.v2)(e),a="x"===r?["minX","maxX"]:["minY","maxY"],l=(0,W.Z)(a,2),c=l[0],s=l[1],u={x:0,y:0};return Ue(Ue({},u),{},"start"===o?(0,g.Z)({},r,t[c]-i[c]):"end"===o?(0,g.Z)({},r,t[s]-i[s]):(0,g.Z)({},r,(t[c]+t[s])/2-(i[c]+i[s])/2))},Ye=function(e,t){var n=(0,j.eD)((0,b.Lm)(e),t);return n.length>1&&!n.some((function(e){return"frame"===e.type}))},Ge=function(e,t,n){var r=function(e,t){var n=(0,v.AI)(e),r=(0,Fe.v2)(e);return n.flatMap((function(e){var n=Ke(e,r,t);return e.map((function(e){return(0,U.BE)(e,{x:e.x+n.x,y:e.y+n.y})}))}))}((0,j.eD)((0,b.Lm)(e),t),n),o=(0,l.xn)(r);return(0,A.Tq)(e.map((function(e){return o.get(e.id)||e})),t)},Ve=(0,c.z)({name:"alignTop",trackEvent:{category:"element"},predicate:Ye,perform:function(e,t){return{appState:t,elements:Ge(e,t,{position:"start",axis:"y"}),commitToHistory:!0}},keyTest:function(e){return e[i.tW.CTRL_OR_CMD]&&e.shiftKey&&e.key===i.tW.ARROW_UP},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,d.jsx)(_.V,{hidden:!Ye(t,n),type:"button",icon:s.AlignTopIcon,onClick:function(){return r(null)},title:"".concat((0,a.t)("labels.alignTop")," — ").concat((0,l.uY)("CtrlOrCmd+Shift+Up")),"aria-label":(0,a.t)("labels.alignTop"),visible:(0,j.N)((0,b.Lm)(t),n)})}}),Xe=(0,c.z)({name:"alignBottom",trackEvent:{category:"element"},predicate:Ye,perform:function(e,t){return{appState:t,elements:Ge(e,t,{position:"end",axis:"y"}),commitToHistory:!0}},keyTest:function(e){return e[i.tW.CTRL_OR_CMD]&&e.shiftKey&&e.key===i.tW.ARROW_DOWN},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,d.jsx)(_.V,{hidden:!Ye(t,n),type:"button",icon:s.AlignBottomIcon,onClick:function(){return r(null)},title:"".concat((0,a.t)("labels.alignBottom")," — ").concat((0,l.uY)("CtrlOrCmd+Shift+Down")),"aria-label":(0,a.t)("labels.alignBottom"),visible:(0,j.N)((0,b.Lm)(t),n)})}}),qe=(0,c.z)({name:"alignLeft",trackEvent:{category:"element"},predicate:Ye,perform:function(e,t){return{appState:t,elements:Ge(e,t,{position:"start",axis:"x"}),commitToHistory:!0}},keyTest:function(e){return e[i.tW.CTRL_OR_CMD]&&e.shiftKey&&e.key===i.tW.ARROW_LEFT},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,d.jsx)(_.V,{hidden:!Ye(t,n),type:"button",icon:s.AlignLeftIcon,onClick:function(){return r(null)},title:"".concat((0,a.t)("labels.alignLeft")," — ").concat((0,l.uY)("CtrlOrCmd+Shift+Left")),"aria-label":(0,a.t)("labels.alignLeft"),visible:(0,j.N)((0,b.Lm)(t),n)})}}),$e=(0,c.z)({name:"alignRight",trackEvent:{category:"element"},predicate:Ye,perform:function(e,t){return{appState:t,elements:Ge(e,t,{position:"end",axis:"x"}),commitToHistory:!0}},keyTest:function(e){return e[i.tW.CTRL_OR_CMD]&&e.shiftKey&&e.key===i.tW.ARROW_RIGHT},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,d.jsx)(_.V,{hidden:!Ye(t,n),type:"button",icon:s.AlignRightIcon,onClick:function(){return r(null)},title:"".concat((0,a.t)("labels.alignRight")," — ").concat((0,l.uY)("CtrlOrCmd+Shift+Right")),"aria-label":(0,a.t)("labels.alignRight"),visible:(0,j.N)((0,b.Lm)(t),n)})}}),Je=(0,c.z)({name:"alignVerticallyCentered",trackEvent:{category:"element"},predicate:Ye,perform:function(e,t){return{appState:t,elements:Ge(e,t,{position:"center",axis:"y"}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,d.jsx)(_.V,{hidden:!Ye(t,n),type:"button",icon:s.CenterVerticallyIcon,onClick:function(){return r(null)},title:(0,a.t)("labels.centerVertically"),"aria-label":(0,a.t)("labels.centerVertically"),visible:(0,j.N)((0,b.Lm)(t),n)})}}),Qe=(0,c.z)({name:"alignHorizontallyCentered",trackEvent:{category:"element"},predicate:Ye,perform:function(e,t){return{appState:t,elements:Ge(e,t,{position:"center",axis:"x"}),commitToHistory:!0}},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,d.jsx)(_.V,{hidden:!Ye(t,n),type:"button",icon:s.CenterHorizontallyIcon,onClick:function(){return r(null)},title:(0,a.t)("labels.centerHorizontally"),"aria-label":(0,a.t)("labels.centerHorizontally"),visible:(0,j.N)((0,b.Lm)(t),n)})}});function et(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return tt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return tt(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function tt(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var nt=function(e,t){var n=(0,j.eD)((0,b.Lm)(e),t);return n.length>1&&!n.some((function(e){return"frame"===e.type}))},rt=function(e,t,n){var r=function(e,t){var n,r="x"===t.axis?["minX","midX","maxX","width"]:["minY","midY","maxY","height"],o=(0,W.Z)(r,4),i=o[0],a=o[1],l=o[2],c=o[3],s=(0,Fe.v2)(e),u=(0,v.AI)(e).map((function(e){return[e,(0,Fe.v2)(e)]})).sort((function(e,t){return e[1][a]-t[1][a]})),d=0,f=et(u);try{for(f.s();!(n=f.n()).done;)d+=n.value[1][c]}catch(e){f.e(e)}finally{f.f()}var p=(s[c]-d)/(u.length-1);if(p<0){var h=u.findIndex((function(e){return e[1][i]===s[i]})),m=u.findIndex((function(e){return e[1][l]===s[l]})),g=(u[m][1][a]-u[h][1][a])/(u.length-1),b=u[h][1][a];return u.flatMap((function(e,n){var r=(0,W.Z)(e,2),o=r[0],i=r[1],l={x:0,y:0};return n!==h&&n!==m&&(b+=g,l[t.axis]=b-i[a]),o.map((function(e){return(0,U.BE)(e,{x:e.x+l.x,y:e.y+l.y})}))}))}var y=s[i];return u.flatMap((function(e){var n=(0,W.Z)(e,2),r=n[0],o=n[1],a={x:0,y:0};return a[t.axis]=y-o[i],y+=p,y+=o[c],r.map((function(e){return(0,U.BE)(e,{x:e.x+a.x,y:e.y+a.y})}))}))}((0,j.eD)((0,b.Lm)(e),t),n),o=(0,l.xn)(r);return(0,A.Tq)(e.map((function(e){return o.get(e.id)||e})),t)},ot=(0,c.z)({name:"distributeHorizontally",trackEvent:{category:"element"},perform:function(e,t){return{appState:t,elements:rt(e,t,{space:"between",axis:"x"}),commitToHistory:!0}},keyTest:function(e){return!e[i.tW.CTRL_OR_CMD]&&e.altKey&&e.code===i.aU.H},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,d.jsx)(_.V,{hidden:!nt(t,n),type:"button",icon:s.DistributeHorizontallyIcon,onClick:function(){return r(null)},title:"".concat((0,a.t)("labels.distributeHorizontally")," — ").concat((0,l.uY)("Alt+H")),"aria-label":(0,a.t)("labels.distributeHorizontally"),visible:(0,j.N)((0,b.Lm)(t),n)})}}),it=(0,c.z)({name:"distributeVertically",trackEvent:{category:"element"},perform:function(e,t){return{appState:t,elements:rt(e,t,{space:"between",axis:"y"}),commitToHistory:!0}},keyTest:function(e){return!e[i.tW.CTRL_OR_CMD]&&e.altKey&&e.code===i.aU.V},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData;return(0,d.jsx)(_.V,{hidden:!nt(t,n),type:"button",icon:s.DistributeVerticallyIcon,onClick:function(){return r(null)},title:"".concat((0,a.t)("labels.distributeVertically")," — ").concat((0,l.uY)("Alt+V")),"aria-label":(0,a.t)("labels.distributeVertically"),visible:(0,j.N)((0,b.Lm)(t),n)})}}),at=n(8634),lt=(0,c.z)({name:"flipHorizontal",trackEvent:{category:"element"},perform:function(e,t){return{elements:(0,A.Tq)(st(e,t,"horizontal"),t),appState:t,commitToHistory:!0}},keyTest:function(e){return e.shiftKey&&e.code===i.aU.H},contextItemLabel:"labels.flipHorizontal"}),ct=(0,c.z)({name:"flipVertical",trackEvent:{category:"element"},perform:function(e,t){return{elements:(0,A.Tq)(st(e,t,"vertical"),t),appState:t,commitToHistory:!0}},keyTest:function(e){return e.shiftKey&&e.code===i.aU.V&&!e[i.tW.CTRL_OR_CMD]},contextItemLabel:"labels.flipVertical"}),st=function(e,t,n){var r=(0,j.eD)((0,b.Lm)(e),t,{includeElementsInFrames:!0}),o=ut(r,t,n),i=(0,l.xn)(o);return e.map((function(e){return i.get(e.id)||e}))},ut=function(e,t,n){var r=(0,Fe.v2)(e),o=r.minX,i=r.minY,a=r.maxX,c=r.maxY;return(0,at.LM)({originalElements:(0,l.xn)(e)},e,"nw",!0,"horizontal"===n?a:o,"horizontal"===n?i:c),((0,C.N1)(t)?C.el:C.H)(e),e},dt=n(4688);function ft(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function pt(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ft(Object(n),!0).forEach((function(t){(0,g.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ft(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ht=(0,c.z)({name:"gridMode",viewMode:!0,trackEvent:{category:"canvas",predicate:function(e){return!e.gridSize}},perform:function(e,t){return{appState:pt(pt({},t),{},{gridSize:this.checked(t)?null:u.k}),commitToHistory:!1}},checked:function(e){return null!==e.gridSize},predicate:function(e,t,n){return void 0===n.gridModeEnabled},contextItemLabel:"labels.showGrid",keyTest:function(e){return e[i.tW.CTRL_OR_CMD]&&e.code===i.aU.QUOTE}});function mt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function gt(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?mt(Object(n),!0).forEach((function(t){(0,g.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):mt(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var vt=(0,c.z)({name:"zenMode",viewMode:!0,trackEvent:{category:"canvas",predicate:function(e){return!e.zenModeEnabled}},perform:function(e,t){return{appState:gt(gt({},t),{},{zenModeEnabled:!this.checked(t)}),commitToHistory:!1}},checked:function(e){return e.zenModeEnabled},predicate:function(e,t,n){return void 0===n.zenModeEnabled},contextItemLabel:"buttons.zenMode",keyTest:function(e){return!e[i.tW.CTRL_OR_CMD]&&e.altKey&&e.code===i.aU.Z}}),bt=n(4958),yt=n(202),xt=n(4929),wt=n(3248);function kt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Et(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?kt(Object(n),!0).forEach((function(t){(0,g.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):kt(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var St=(0,c.z)({name:"toggleLinearEditor",trackEvent:{category:"element"},predicate:function(e,t){var n=(0,j.eD)(e,t);return!(1!==n.length||!(0,y.bt)(n[0]))},perform:function(e,t,n,r){var o,i=(0,j.eD)((0,b.Lm)(e),t,{includeBoundTextElement:!0})[0],a=(null===(o=t.editingLinearElement)||void 0===o?void 0:o.elementId)===i.id?null:new x._(i,r.scene);return{appState:Et(Et({},t),{},{editingLinearElement:a}),commitToHistory:!1}},contextItemLabel:function(e,t){var n,r=(0,j.eD)((0,b.Lm)(e),t,{includeBoundTextElement:!0})[0];return(null===(n=t.editingLinearElement)||void 0===n?void 0:n.elementId)===r.id?"labels.lineEditor.exit":"labels.lineEditor.edit"}})},7901:function(e,t,n){"use strict";n.d(t,{N:function(){return r},z:function(){return o}});var r=[],o=function(e){return r=r.concat(e),e}},785:function(e,t,n){"use strict";n.d(t,{C:function(){return l}});var r=n(2335),o=n(5202),i=n(6340),a={toggleTheme:[(0,i.uY)("Shift+Alt+D")],saveScene:[(0,i.uY)("CtrlOrCmd+S")],loadScene:[(0,i.uY)("CtrlOrCmd+O")],clearCanvas:[(0,i.uY)("CtrlOrCmd+Delete")],imageExport:[(0,i.uY)("CtrlOrCmd+Shift+E")],cut:[(0,i.uY)("CtrlOrCmd+X")],copy:[(0,i.uY)("CtrlOrCmd+C")],paste:[(0,i.uY)("CtrlOrCmd+V")],copyStyles:[(0,i.uY)("CtrlOrCmd+Alt+C")],pasteStyles:[(0,i.uY)("CtrlOrCmd+Alt+V")],selectAll:[(0,i.uY)("CtrlOrCmd+A")],deleteSelectedElements:[(0,i.uY)("Delete")],duplicateSelection:[(0,i.uY)("CtrlOrCmd+D"),(0,i.uY)("Alt+".concat((0,o.t)("helpDialog.drag")))],sendBackward:[(0,i.uY)("CtrlOrCmd+[")],bringForward:[(0,i.uY)("CtrlOrCmd+]")],sendToBack:[r.Um?(0,i.uY)("CtrlOrCmd+Alt+["):(0,i.uY)("CtrlOrCmd+Shift+[")],bringToFront:[r.Um?(0,i.uY)("CtrlOrCmd+Alt+]"):(0,i.uY)("CtrlOrCmd+Shift+]")],copyAsPng:[(0,i.uY)("Shift+Alt+C")],copyAsSvg:[],group:[(0,i.uY)("CtrlOrCmd+G")],ungroup:[(0,i.uY)("CtrlOrCmd+Shift+G")],gridMode:[(0,i.uY)("CtrlOrCmd+'")],zenMode:[(0,i.uY)("Alt+Z")],stats:[(0,i.uY)("Alt+/")],addToLibrary:[],flipHorizontal:[(0,i.uY)("Shift+H")],flipVertical:[(0,i.uY)("Shift+V")],viewMode:[(0,i.uY)("Alt+R")],hyperlink:[(0,i.uY)("CtrlOrCmd+K")],toggleElementLock:[(0,i.uY)("CtrlOrCmd+Shift+L")]},l=function(e){var t=a[e];return t&&t.length>0?t[0]:""}},7047:function(e,t,n){"use strict";n.d(t,{L:function(){return r}});var r=function(e,t,n,r){try{if("undefined"==typeof window||{REACT_APP_BACKEND_V2_GET_URL:"https://json.excalidraw.com/api/v2/",REACT_APP_BACKEND_V2_POST_URL:"https://json.excalidraw.com/api/v2/post/",REACT_APP_LIBRARY_URL:"https://libraries.excalidraw.com",REACT_APP_LIBRARY_BACKEND:"https://us-central1-excalidraw-room-persistence.cloudfunctions.net/libraries",REACT_APP_PORTAL_URL:"https://portal.excalidraw.com",REACT_APP_WS_SERVER_URL:"",REACT_APP_FIREBASE_CONFIG:'{"apiKey":"AIzaSyAd15pYlMci_xIp9ko6wkEsDzAAA0Dn0RU","authDomain":"excalidraw-room-persistence.firebaseapp.com","databaseURL":"https://excalidraw-room-persistence.firebaseio.com","projectId":"excalidraw-room-persistence","storageBucket":"excalidraw-room-persistence.appspot.com","messagingSenderId":"654800341332","appId":"1:654800341332:web:4a692de832b55bd57ce0c1"}',REACT_APP_GOOGLE_ANALYTICS_ID:"UA-387204-13",REACT_APP_MATOMO_URL:"https://excalidraw.matomo.cloud/",REACT_APP_CDN_MATOMO_TRACKER_URL:"//cdn.matomo.cloud/excalidraw.matomo.cloud/matomo.js",REACT_APP_MATOMO_SITE_ID:"1",REACT_APP_PLUS_APP:"https://app.excalidraw.com",PKG_NAME:"@dwelle/excalidraw",PKG_VERSION:"0.4.0-eadd4b9",IS_EXCALIDRAW_NPM_PACKAGE:!0}.JEST_WORKER_ID)return;window.gtag&&window.gtag("event",t,{event_category:e,event_label:n,value:r}),window.sa_event&&window.sa_event(t,{category:e,label:n,value:r}),window.fathom&&window.fathom.trackEvent(t,{category:e,label:n,value:r})}catch(e){console.error("error during analytics",e)}}},8897:function(e,t,n){"use strict";n.d(t,{EN:function(){return h},eS:function(){return p},fx:function(){return d},im:function(){return c},l$:function(){return m},s:function(){return f}});var r=n(56),o=n(2335),i=n(5202),a=n(6340),l=o.ZB.includes(devicePixelRatio)?devicePixelRatio:1,c=function(){return{showWelcomeScreen:!1,theme:o.C6.LIGHT,collaborators:new Map,currentChartType:"bar",currentItemBackgroundColor:o.HN.backgroundColor,currentItemEndArrowhead:"arrow",currentItemFillStyle:o.HN.fillStyle,currentItemFontFamily:o.rk,currentItemFontSize:o.n5,currentItemOpacity:o.HN.opacity,currentItemRoughness:o.HN.roughness,currentItemStartArrowhead:null,currentItemStrokeColor:o.HN.strokeColor,currentItemRoundness:"round",currentItemStrokeStyle:o.HN.strokeStyle,currentItemStrokeWidth:o.HN.strokeWidth,currentItemTextAlign:o.Hg,cursorButton:"up",draggingElement:null,editingElement:null,editingGroupId:null,editingLinearElement:null,activeTool:{type:"selection",customType:null,locked:o.HN.locked,lastActiveTool:null},penMode:!1,penDetected:!1,errorMessage:null,exportBackground:!0,exportScale:l,exportEmbedScene:!1,exportWithDarkMode:!1,fileHandle:null,gridSize:null,isBindingEnabled:!0,defaultSidebarDockedPreference:!1,isLoading:!1,isResizing:!1,isRotating:!1,lastPointerDownWith:"mouse",multiElement:null,name:"".concat((0,i.t)("labels.untitled"),"-").concat((0,a.Fc)()),contextMenu:null,openMenu:null,openPopup:null,openSidebar:null,openDialog:null,pasteDialog:{shown:!1,data:null},previousSelectedElementIds:{},resizingElement:null,scrolledOutside:!1,scrollX:0,scrollY:0,selectedElementIds:{},selectedGroupIds:{},selectedElementsAreBeingDragged:!1,selectionElement:null,shouldCacheIgnoreZoom:!1,showStats:!1,startBoundElement:null,suggestedBindings:[],shouldRenderFrames:!0,frameToHighlight:null,editingFrame:null,elementsToHighlight:null,toast:null,viewBackgroundColor:r.HO.white,zenModeEnabled:!1,zoom:{value:o.jU},viewModeEnabled:!1,pendingImageElementId:null,showHyperlinkPopup:!1,selectedLinearElement:null}},s={showWelcomeScreen:{browser:!0,export:!1,server:!1},theme:{browser:!0,export:!1,server:!1},collaborators:{browser:!1,export:!1,server:!1},currentChartType:{browser:!0,export:!1,server:!1},currentItemBackgroundColor:{browser:!0,export:!1,server:!1},currentItemEndArrowhead:{browser:!0,export:!1,server:!1},currentItemFillStyle:{browser:!0,export:!1,server:!1},currentItemFontFamily:{browser:!0,export:!1,server:!1},currentItemFontSize:{browser:!0,export:!1,server:!1},currentItemRoundness:{browser:!0,export:!1,server:!1},currentItemOpacity:{browser:!0,export:!1,server:!1},currentItemRoughness:{browser:!0,export:!1,server:!1},currentItemStartArrowhead:{browser:!0,export:!1,server:!1},currentItemStrokeColor:{browser:!0,export:!1,server:!1},currentItemStrokeStyle:{browser:!0,export:!1,server:!1},currentItemStrokeWidth:{browser:!0,export:!1,server:!1},currentItemTextAlign:{browser:!0,export:!1,server:!1},cursorButton:{browser:!0,export:!1,server:!1},draggingElement:{browser:!1,export:!1,server:!1},editingElement:{browser:!1,export:!1,server:!1},editingGroupId:{browser:!0,export:!1,server:!1},editingLinearElement:{browser:!1,export:!1,server:!1},activeTool:{browser:!0,export:!1,server:!1},penMode:{browser:!0,export:!1,server:!1},penDetected:{browser:!0,export:!1,server:!1},errorMessage:{browser:!1,export:!1,server:!1},exportBackground:{browser:!0,export:!1,server:!1},exportEmbedScene:{browser:!0,export:!1,server:!1},exportScale:{browser:!0,export:!1,server:!1},exportWithDarkMode:{browser:!0,export:!1,server:!1},fileHandle:{browser:!1,export:!1,server:!1},gridSize:{browser:!0,export:!0,server:!0},height:{browser:!1,export:!1,server:!1},isBindingEnabled:{browser:!1,export:!1,server:!1},defaultSidebarDockedPreference:{browser:!0,export:!1,server:!1},isLoading:{browser:!1,export:!1,server:!1},isResizing:{browser:!1,export:!1,server:!1},isRotating:{browser:!1,export:!1,server:!1},lastPointerDownWith:{browser:!0,export:!1,server:!1},multiElement:{browser:!1,export:!1,server:!1},name:{browser:!0,export:!1,server:!1},offsetLeft:{browser:!1,export:!1,server:!1},offsetTop:{browser:!1,export:!1,server:!1},contextMenu:{browser:!1,export:!1,server:!1},openMenu:{browser:!0,export:!1,server:!1},openPopup:{browser:!1,export:!1,server:!1},openSidebar:{browser:!0,export:!1,server:!1},openDialog:{browser:!1,export:!1,server:!1},pasteDialog:{browser:!1,export:!1,server:!1},previousSelectedElementIds:{browser:!0,export:!1,server:!1},resizingElement:{browser:!1,export:!1,server:!1},scrolledOutside:{browser:!0,export:!1,server:!1},scrollX:{browser:!0,export:!1,server:!1},scrollY:{browser:!0,export:!1,server:!1},selectedElementIds:{browser:!0,export:!1,server:!1},selectedGroupIds:{browser:!0,export:!1,server:!1},selectedElementsAreBeingDragged:{browser:!1,export:!1,server:!1},selectionElement:{browser:!1,export:!1,server:!1},shouldCacheIgnoreZoom:{browser:!0,export:!1,server:!1},showStats:{browser:!0,export:!1,server:!1},startBoundElement:{browser:!1,export:!1,server:!1},suggestedBindings:{browser:!1,export:!1,server:!1},shouldRenderFrames:{browser:!1,export:!1,server:!1},frameToHighlight:{browser:!1,export:!1,server:!1},editingFrame:{browser:!1,export:!1,server:!1},elementsToHighlight:{browser:!1,export:!1,server:!1},toast:{browser:!1,export:!1,server:!1},viewBackgroundColor:{browser:!0,export:!0,server:!0},width:{browser:!1,export:!1,server:!1},zenModeEnabled:{browser:!0,export:!1,server:!1},zoom:{browser:!0,export:!1,server:!1},viewModeEnabled:{browser:!1,export:!1,server:!1},pendingImageElementId:{browser:!1,export:!1,server:!1},showHyperlinkPopup:{browser:!1,export:!1,server:!1},selectedLinearElement:{browser:!0,export:!1,server:!1}},u=function(e,t){for(var n={},r=0,o=Object.keys(e);r<o.length;r++){var i=o[r],a=s[i];if(null!=a&&a[t]){var l=e[i];n[i]=l}}return n},d=function(e){return u(e,"browser")},f=function(e){return u(e,"export")},p=function(e){return u(e,"server")},h=function(e){return"eraser"===e.activeTool.type},m=function(e){return"hand"===e.activeTool.type}},5674:function(e,t,n){"use strict";n.d(t,{dz:function(){return k},i$:function(){return b},ps:function(){return _}});var r=n(1930),o=n(7169),i=n(2577),a=n(56),l=n(2335),c=n(1047),s=n(6954);function u(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function f(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function p(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?f(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):f(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var h=32,m=12,g=256,v="NOT_SPREADSHEET",b="VALID_SPREADSHEET",y=function(e){var t=/^([-+]?)[$€£¥₩]?([-+]?)([\d.,]+)[%]?$/.exec(e);return t?parseFloat("".concat((t[1]||t[2])+t[3]).replace(/,/g,"")):null},x=function(e,t){return e.slice(1).every((function(e){return null!==y(e[t])}))},w=function(e){var t=e[0].length;if(t>2)return{type:v,reason:"More than 2 columns"};if(1===t){if(!x(e,0))return{type:v,reason:"Value is not numeric"};var n=null===y(e[0][0]),r=(n?e.slice(1):e).map((function(e){return y(e[0])}));return r.length<2?{type:v,reason:"Less than two rows"}:{type:b,spreadsheet:{title:n?e[0][0]:null,labels:null,values:r}}}var o=x(e,0),a=x(e,1);if(!o&&!a)return{type:v,reason:"Value is not numeric"};var l=a?[0,1]:[1,0],c=(0,i.Z)(l,2),s=c[0],u=c[1],d=null===y(e[0][u]),f=d?e.slice(1):e;return f.length<2?{type:v,reason:"Less than 2 rows"}:{type:b,spreadsheet:{title:d?e[0][u]:null,labels:f.map((function(e){return e[s]})),values:f.map((function(e){return y(e[u])}))}}},k=function(e){var t=e.trim().split("\n").map((function(e){return e.trim().split("\t")}));if(t.length&&2!==t[0].length&&(t=e.trim().split("\n").map((function(e){return e.trim().split(",")}))),0===t.length)return{type:v,reason:"No values"};var n=t[0].length;if(!t.every((function(e){return e.length===n})))return{type:v,reason:"All rows don't have same number of columns"};var r=w(t);if(r.type!==b){var o=w(function(e){for(var t=[],n=0;n<e[0].length;n++){for(var r=[],o=0;o<e.length;o++)r.push(e[o][n]);t.push(r)}return t}(t));if(o.type===b)return o}return r},E=(0,a.sF)(a.C2),S={fillStyle:"hachure",fontFamily:l.rk,fontSize:l.n5,opacity:100,roughness:1,strokeColor:a.HO.black,roundness:null,strokeStyle:"solid",strokeWidth:1,verticalAlign:l.oX.MIDDLE,locked:!1},O=function(e){return{chartWidth:44*e.values.length+m,chartHeight:280}},j=function(e,t,n,o,i,s){var u=O(e),d=u.chartWidth,f=u.chartHeight,v=e.title?(0,c.VL)(p(p({backgroundColor:i,groupIds:[o]},S),{},{text:e.title,x:t+d/2,y:n-g-24-l.n5,roundness:null,textAlign:"center"})):null,b=s?(0,c.Up)(p(p({backgroundColor:i,groupIds:[o]},S),{},{type:"rectangle",x:t,y:n-f,width:d,height:f,strokeColor:a.HO.black,fillStyle:"solid",opacity:6})):null;return[].concat((0,r.Z)(b?[b]:[]),(0,r.Z)(v?[v]:[]),(0,r.Z)(function(e,t,n,r,o){var i;return(null===(i=e.labels)||void 0===i?void 0:i.map((function(e,i){return(0,c.VL)(p(p({groupIds:[r],backgroundColor:o},S),{},{text:e.length>8?"".concat(e.slice(0,5),"..."):e,x:t+44*i+24,y:n+6,width:h,angle:5.87,fontSize:16,textAlign:"center",verticalAlign:"top"}))})))||[]}(e,t,n,o,i)),(0,r.Z)(function(e,t,n,o,i){var a=(0,c.VL)(p(p({groupIds:[o],backgroundColor:i},S),{},{x:t-m,y:n-m,text:"0",textAlign:"right"}));return[a,(0,c.VL)(p(p({groupIds:[o],backgroundColor:i},S),{},{x:t-m,y:n-g-a.height/2,text:Math.max.apply(Math,(0,r.Z)(e.values)).toLocaleString(),textAlign:"right"}))]}(e,t,n,o,i)),(0,r.Z)(function(e,t,n,r,o){var i=O(e),a=i.chartWidth,l=i.chartHeight;return[(0,c.y8)(p(p({backgroundColor:o,groupIds:[r]},S),{},{type:"line",x:t,y:n,startArrowhead:null,endArrowhead:null,width:a,points:[[0,0],[a,0]]})),(0,c.y8)(p(p({backgroundColor:o,groupIds:[r]},S),{},{type:"line",x:t,y:n,startArrowhead:null,endArrowhead:null,height:l,points:[[0,0],[0,-l]]})),(0,c.y8)(p(p({backgroundColor:o,groupIds:[r]},S),{},{type:"line",x:t,y:n-g-m,startArrowhead:null,endArrowhead:null,strokeStyle:"dotted",width:a,opacity:50,points:[[0,0],[a,0]]}))]}(e,t,n,o,i)))},_=function(e,t,n,o){return"line"===e?function(e,t,n){var o,i=Math.max.apply(Math,(0,r.Z)(e.values)),a=(0,s.kb)(),d=E[Math.floor(Math.random()*E.length)],f=0,h=[],v=u(e.values);try{for(v.s();!(o=v.n()).done;){var b=o.value,y=44*f,x=-b/i*g;h.push([y,x]),f++}}catch(e){v.e(e)}finally{v.f()}var w=Math.max.apply(Math,(0,r.Z)(h.map((function(e){return e[0]})))),k=Math.max.apply(Math,(0,r.Z)(h.map((function(e){return e[1]})))),O=Math.min.apply(Math,(0,r.Z)(h.map((function(e){return e[0]})))),_=Math.min.apply(Math,(0,r.Z)(h.map((function(e){return e[1]})))),C=(0,c.y8)(p(p({backgroundColor:d,groupIds:[a]},S),{},{type:"line",x:t+m+16,y:n-m,startArrowhead:null,endArrowhead:null,height:k-_,width:w-O,strokeWidth:2,points:h})),I=e.values.map((function(e,r){var o=44*r+6,l=-e/i*g+6;return(0,c.Up)(p(p({backgroundColor:d,groupIds:[a]},S),{},{fillStyle:"solid",strokeWidth:2,type:"ellipse",x:t+o+16,y:n+l-24,width:m,height:m}))})),T=e.values.map((function(e,r){var o=44*r+6,l=e/i*g+6+m;return(0,c.y8)(p(p({backgroundColor:d,groupIds:[a]},S),{},{type:"line",x:t+o+16+6,y:n-l,startArrowhead:null,endArrowhead:null,height:l,strokeStyle:"dotted",opacity:50,points:[[0,0],[0,l]]}))}));return[].concat((0,r.Z)(j(e,t,n,a,d,"production"===l.Vi.DEVELOPMENT)),[C],(0,r.Z)(T),(0,r.Z)(I))}(t,n,o):function(e,t,n){var o=Math.max.apply(Math,(0,r.Z)(e.values)),i=(0,s.kb)(),a=E[Math.floor(Math.random()*E.length)],u=e.values.map((function(e,r){var l=e/o*g;return(0,c.Up)(p(p({backgroundColor:a,groupIds:[i]},S),{},{type:"rectangle",x:t+44*r+m,y:n-l-m,width:h,height:l}))}));return[].concat((0,r.Z)(u),(0,r.Z)(j(e,t,n,i,a,"production"===l.Vi.DEVELOPMENT)))}(t,n,o)}},8982:function(e,t,n){"use strict";n.d(t,{G:function(){return r},l:function(){return o}});var r=function(e){var t=Math.abs(function(e){var t=0;if(0===e.length)return t;for(var n=0;n<e.length;n++)t=(t<<5)-t+e.charCodeAt(n);return t}(e));return"hsl(".concat(t%37*10,", ").concat(100,"%, ").concat(83,"%)")},o=function(e){var t,n=null==e||null===(t=e.trim())||void 0===t?void 0:t.codePointAt(0);return(n?String.fromCodePoint(n):"?").toUpperCase()}},6665:function(e,t,n){"use strict";n.d(t,{dd:function(){return I},mQ:function(){return _},uR:function(){return C},vQ:function(){return E},vt:function(){return w},wx:function(){return x}});var r=n(7169),o=n(8950),i=n(2975),a=n.n(i),l=n(4162),c=n(5674),s=n(2335),u=n(1974),d=n(2791),f=n(1935),p=n(9040),h=n(6340);function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function g(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?m(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):m(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var v="",b=!1,y="clipboard"in navigator&&"readText"in navigator.clipboard,x="clipboard"in navigator&&"writeText"in navigator.clipboard,w="clipboard"in navigator&&"write"in navigator.clipboard&&"ClipboardItem"in window&&"toBlob"in HTMLCanvasElement.prototype,k=function(e){return!(![s.r8.excalidraw,s.r8.excalidrawClipboard].includes(null==e?void 0:e.type)||!Array.isArray(e.elements))},E=function(){var e=(0,o.Z)(a().mark((function e(t,n){var r,o,i,l,c;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(r=new Set(t.filter((function(e){return"frame"===e.type}))),o=!1,i=t.reduce((function(e,t){return(0,u.wi)(t)&&(o=!0,n&&n[t.fileId]&&(e[t.fileId]=n[t.fileId])),e}),{}),o&&!n&&console.warn("copyToClipboard: attempting to file element(s) without providing associated `files` object."),l={type:s.r8.excalidrawClipboard,elements:t.map((function(e){if((0,p.$Z)(e)&&!r.has((0,p.$Z)(e))){var t=(0,d.OL)(e);return(0,f.DR)(t,{frameId:null}),t}return e})),files:n?i:void 0},c=JSON.stringify(l),!(0,h.h2)()){e.next=8;break}return e.abrupt("return",c);case 8:return v=c,e.prev=9,b=!1,e.next=13,I(c);case 13:e.next=19;break;case 15:e.prev=15,e.t0=e.catch(9),b=!0,console.error(e.t0);case 19:case"end":return e.stop()}}),e,null,[[9,15]])})));return function(t,n){return e.apply(this,arguments)}}(),S=function(){if(!v)return{};try{return JSON.parse(v)}catch(e){return console.error(e),{}}},O=function(e){var t=(0,c.dz)(e);return t.type===c.i$?{spreadsheet:t.spreadsheet}:null},j=function(){var e=(0,o.Z)(a().mark((function e(t){var n,r;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(e.prev=0,!t){e.next=5;break}e.t0=null===(n=t.clipboardData)||void 0===n?void 0:n.getData("text/plain"),e.next=11;break;case 5:if(e.t1=y,!e.t1){e.next=10;break}return e.next=9,navigator.clipboard.readText();case 9:e.t1=e.sent;case 10:e.t0=e.t1;case 11:return r=e.t0,e.abrupt("return",(r||"").trim());case 15:return e.prev=15,e.t2=e.catch(0),e.abrupt("return","");case 18:case"end":return e.stop()}}),e,null,[[0,15]])})));return function(t){return e.apply(this,arguments)}}(),_=function(){var e=(0,o.Z)(a().mark((function e(t){var n,r,o,i,c,s=arguments;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=s.length>1&&void 0!==s[1]&&s[1],e.next=3,j(t);case 3:if((r=e.sent)&&(n||!r.includes(l.oj))){e.next=6;break}return e.abrupt("return",S());case 6:if(!(o=!n&&O(r))){e.next=9;break}return e.abrupt("return",o);case 9:if(i=S(),e.prev=10,c=JSON.parse(r),!k(c)){e.next=14;break}return e.abrupt("return",{elements:c.elements,files:c.files,text:n?JSON.stringify(c.elements,null,2):void 0});case 14:e.next=18;break;case 16:e.prev=16,e.t0=e.catch(10);case 18:return e.abrupt("return",b&&i.elements?g(g({},i),{},{text:n?JSON.stringify(i.elements,null,2):void 0}):{text:r});case 19:case"end":return e.stop()}}),e,null,[[10,16]])})));return function(t){return e.apply(this,arguments)}}(),C=function(){var e=(0,o.Z)(a().mark((function e(t){return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,navigator.clipboard.write([new window.ClipboardItem((0,r.Z)({},s.LO.png,t))]);case 3:case 21:e.next=24;break;case 5:if(e.prev=5,e.t0=e.catch(0),!(0,h.y8)(t)){e.next=23;break}return e.t1=navigator.clipboard,e.t2=window.ClipboardItem,e.t3=r.Z,e.t4={},e.t5=s.LO.png,e.next=15,t;case 15:return e.t6=e.sent,e.t7=(0,e.t3)(e.t4,e.t5,e.t6),e.t8=new e.t2(e.t7),e.t9=[e.t8],e.next=21,e.t1.write.call(e.t1,e.t9);case 23:throw e.t0;case 24:case"end":return e.stop()}}),e,null,[[0,5]])})));return function(t){return e.apply(this,arguments)}}(),I=function(){var e=(0,o.Z)(a().mark((function e(t){var n;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=!1,!x){e.next=11;break}return e.prev=2,e.next=5,navigator.clipboard.writeText(t||"");case 5:n=!0,e.next=11;break;case 8:e.prev=8,e.t0=e.catch(2),console.error(e.t0);case 11:if(n||T(t||" ")){e.next=13;break}throw new Error("couldn't copy");case 13:case"end":return e.stop()}}),e,null,[[2,8]])})));return function(t){return e.apply(this,arguments)}}(),T=function(e){var t="rtl"===document.documentElement.getAttribute("dir"),n=document.createElement("textarea");n.style.border="0",n.style.padding="0",n.style.margin="0",n.style.position="absolute",n.style[t?"right":"left"]="-9999px";var r=window.pageYOffset||document.documentElement.scrollTop;n.style.top="".concat(r,"px"),n.style.fontSize="12pt",n.setAttribute("readonly",""),n.value=e,document.body.appendChild(n);var o=!1;try{n.select(),n.setSelectionRange(0,n.value.length),o=document.execCommand("copy")}catch(e){console.error(e)}return n.remove(),o}},56:function(e,t,n){"use strict";n.d(t,{C2:function(){return u},HO:function(){return m},Lx:function(){return c},SF:function(){return w},Wk:function(){return x},_T:function(){return f},ay:function(){return y},dC:function(){return s},eq:function(){return b},fY:function(){return v},sF:function(){return k},vq:function(){return E},z8:function(){return d}});var r=n(7169),o=n(5284);function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function a(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?i(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):i(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var l,c=5,s=5,u=4,d=4,f=1,p=[0,2,4,6,8],h=function(e,t){return t.map((function(t){return o[e][t]}))},m={transparent:"transparent",black:"#1e1e1e",white:"#ffffff",gray:h("gray",p),red:h("red",p),pink:h("pink",p),grape:h("grape",p),violet:h("violet",p),blue:h("blue",p),cyan:h("cyan",p),teal:h("teal",p),green:h("green",p),yellow:h("yellow",p),orange:h("orange",p),bronze:["#f8f1ee","#eaddd7","#d2bab0","#a18072","#846358"]},g=(l=m,["cyan","blue","violet","grape","pink","green","teal","yellow","orange","red"].reduce((function(e,t){return t in l&&(e[t]=l[t]),e}),{})),v=[m.black,m.red[d],m.green[d],m.blue[d],m.yellow[d]],b=[m.transparent,m.red[f],m.green[f],m.blue[f],m.yellow[f]],y=[m.white,"#f8f9fa","#f5faff","#fffce8","#fdf8f6"],x=a({transparent:m.transparent,white:m.white,gray:m.gray,black:m.black,bronze:m.bronze},g),w=a({transparent:m.transparent,white:m.white,gray:m.gray,black:m.black,bronze:m.bronze},g),k=function(e){return[m.cyan[e],m.blue[e],m.violet[e],m.grape[e],m.pink[e],m.green[e],m.teal[e],m.yellow[e],m.orange[e],m.red[e]]},E=function(e,t,n){return"#".concat(((1<<24)+(e<<16)+(t<<8)+n).toString(16).slice(1))}},6798:function(e,t,n){"use strict";n.d(t,{o:function(){return f},w:function(){return d}});var r=n(2577),o=n(3607),i=n(1781),a=n(5202),l=n(9487),c=n(8993),s=n(7046),u=n(4512),d=(0,o.cn)(null),f=function(){var e=(0,o.KO)(d,l.yE),t=(0,r.Z)(e,2),n=t[0],f=t[1],p=(0,c.eh)();return n&&"clearCanvas"===n?(0,u.jsx)(s.Z,{onConfirm:function(){p.executeAction(i.actionClearCanvas),f(null)},onCancel:function(){return f(null)},title:(0,a.t)("clearCanvasDialog.title"),children:(0,u.jsxs)("p",{className:"clear-canvas__content",children:[" ",(0,a.t)("alerts.clearReset")]})}):null}},8993:function(e,t,n){"use strict";n.d(t,{ZP:function(){return Jr},qD:function(){return Cr},hY:function(){return Ir},Fy:function(){return Tr},eh:function(){return Lr},gF:function(){return Dr},J0:function(){return Pr},bd:function(){return Mr},n9:function(){return Ar}});var r=n(6655),o=n(2577),i=n(1930),a=n(8950),l=n(8821),c=n(5169),s=n(3173),u=n(2248),d=n(7245),f=n(2312),p=n(7169),h=n(2975),m=n.n(h),g=n(9787),v=n.n(g),b=n(5156),y=n(8234),x=n(45),w=n(5605),k=n(1781),E=n(3646),S=n(1319),O=n(5202),j=n(6066),_=n(1935),C=n(8290),I=n(6340),T=n(2335),P=n(4512);function M(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function D(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?M(Object(n),!0).forEach((function(t){(0,p.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):M(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var A=function(e,t,n){var r=!1;if(!(t.multiElement||t.resizingElement||t.editingElement||t.draggingElement)){var o=n();if(null===o)return{commitToHistory:r};var i=(0,I.xn)(e),a=o.elements,l=(0,I.xn)(a),c=e.filter((function(e){return!l.has(e.id)})),s=a.map((function(e){return(0,_.BE)(i.get(e.id)||e,e)})).concat(c.map((function(e){return(0,_.BE)(e,{isDeleted:!0})})));return(0,C.$q)(s,c),{elements:s,appState:D(D({},t),o.appState),commitToHistory:r,syncHistory:!0}}return{commitToHistory:r}},L=n(7047),Z=function(e,t,n,o,i,a){if(e.trackEvent)try{if("object"===(0,r.Z)(e.trackEvent))(!e.trackEvent.predicate||e.trackEvent.predicate(n,o,a))&&(0,L.L)(e.trackEvent.category,e.trackEvent.action||e.name,"".concat(t," (").concat(i.device.isMobile?"mobile":"desktop",")"))}catch(e){console.error("error while logging action:",e)}},R=function(){function e(t,n,r,o){var i=this;(0,l.Z)(this,e),this.actions={},this.renderAction=function(e,t){var n=i.app.props.UIOptions.canvasActions;if(i.actions[e]&&"PanelComponent"in i.actions[e]&&(!(e in n)||n[e])){var r=i.actions[e],o=r.PanelComponent;o.displayName="PanelComponent";var a=i.getElementsIncludingDeleted(),l=i.getAppState();return(0,P.jsx)(o,{elements:i.getElementsIncludingDeleted(),appState:i.getAppState(),updateData:function(e){Z(r,"ui",l,a,i.app,e),i.updater(r.perform(i.getElementsIncludingDeleted(),i.getAppState(),e,i.app))},appProps:i.app.props,data:t})}return null},this.isActionEnabled=function(e){var t=i.getElementsIncludingDeleted(),n=i.getAppState();return!e.predicate||e.predicate(t,n,i.app.props,i.app)},this.updater=function(e){if(!e||!("then"in e))return t(e);e.then((function(e){return t(e)}))},this.getAppState=n,this.getElementsIncludingDeleted=r,this.app=o}return(0,c.Z)(e,[{key:"registerAction",value:function(e){this.actions[e.name]=e}},{key:"registerAll",value:function(e){var t=this;e.forEach((function(e){return t.registerAction(e)}))}},{key:"handleKeyDown",value:function(e){var t=this,n=this.app.props.UIOptions.canvasActions,r=Object.values(this.actions).sort((function(e,t){return(t.keyPriority||0)-(e.keyPriority||0)})).filter((function(r){return(!(r.name in n)||n[r.name])&&r.keyTest&&r.keyTest(e,t.getAppState(),t.getElementsIncludingDeleted())}));if(1!==r.length)return r.length>1&&console.warn("Canceling as multiple actions match this shortcut",r),!1;var o=r[0];if(this.getAppState().viewModeEnabled&&!0!==o.viewMode)return!1;var i=this.getElementsIncludingDeleted(),a=this.getAppState();return Z(o,"keyboard",a,i,this.app,null),e.preventDefault(),e.stopPropagation(),this.updater(r[0].perform(i,a,null,this.app)),!0}},{key:"executeAction",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"api",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=this.getElementsIncludingDeleted(),o=this.getAppState();Z(e,t,o,r,this.app,n),this.updater(e.perform(r,o,n,this.app))}}]),e}(),z=n(7901),N=n(8897),B=n(6665),H=n(9485),F=n(7053),W=n(679),U=n(1047),K=n(6938),Y=n(2791),G=n(1974),V=function(e){var t=Array.from(e.values());return{x:q(t,(function(e){return e.x}))/t.length,y:q(t,(function(e){return e.y}))/t.length}},X=function(e){var t=(0,o.Z)(e,2),n=t[0],r=t[1];return Math.hypot(n.x-r.x,n.y-r.y)},q=function(e,t){return e.reduce((function(e,n){return e+t(n)}),0)},$=n(242);function J(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Q(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?J(Object(n),!0).forEach((function(t){(0,p.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):J(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ee=function(e){return{selectedElementIds:e.selectedElementIds,selectedGroupIds:e.selectedGroupIds,viewBackgroundColor:e.viewBackgroundColor,editingLinearElement:e.editingLinearElement,editingGroupId:e.editingGroupId,name:e.name}},te=function(){function e(){var t=this;(0,l.Z)(this,e),this.elementCache=new Map,this.recording=!0,this.stateHistory=[],this.redoStack=[],this.lastEntry=null,this.generateEntry=function(e,n){return t.dehydrateHistoryEntry({appState:ee(e),elements:n.reduce((function(t,n){if((0,G.bt)(n)&&e.multiElement&&e.multiElement.id===n.id){if(e.multiElement&&e.multiElement.id===n.id&&n.points.length<2)return t;t.push(Q(Q({},n),{},{points:n.lastCommittedPoint!==n.points[n.points.length-1]?n.points.slice(0,-1):n.points}))}else t.push(n);return t}),[])})}}return(0,c.Z)(e,[{key:"hydrateHistoryEntry",value:function(e){var t=this,n=e.appState,r=e.elements;return{appState:JSON.parse(n),elements:r.map((function(e){var n,r=null===(n=t.elementCache.get(e.id))||void 0===n?void 0:n.get(e.versionNonce);if(!r)throw new Error("Element not found: ".concat(e.id,":").concat(e.versionNonce));return r}))}}},{key:"dehydrateHistoryEntry",value:function(e){var t=this,n=e.appState,r=e.elements;return{appState:JSON.stringify(n),elements:r.map((function(e){t.elementCache.has(e.id)||t.elementCache.set(e.id,new Map);var n=t.elementCache.get(e.id);return n.has(e.versionNonce)||n.set(e.versionNonce,(0,Y.OL)(e)),{id:e.id,versionNonce:e.versionNonce}}))}}},{key:"getSnapshotForTest",value:function(){var e=this;return{recording:this.recording,stateHistory:this.stateHistory.map((function(t){return e.hydrateHistoryEntry(t)})),redoStack:this.redoStack.map((function(t){return e.hydrateHistoryEntry(t)}))}}},{key:"clear",value:function(){this.stateHistory.length=0,this.redoStack.length=0,this.lastEntry=null,this.elementCache.clear()}},{key:"shouldCreateEntry",value:function(e){var t,n=this.lastEntry;if(!n)return!0;if(e.elements.length!==n.elements.length)return!0;for(var r=e.elements.length-1;r>-1;r--){var o=e.elements[r],i=n.elements[r];if(!o||!i||o.id!==i.id||o.versionNonce!==i.versionNonce)return!0}for(t in e.appState){var a,l;if("editingLinearElement"===t)if((null===(a=e.appState[t])||void 0===a?void 0:a.elementId)===(null===(l=n.appState[t])||void 0===l?void 0:l.elementId))continue;if("selectedElementIds"!==t&&"selectedGroupIds"!==t&&e.appState[t]!==n.appState[t])return!0}return!1}},{key:"pushEntry",value:function(e,t){var n=this.generateEntry(e,t),r=this.hydrateHistoryEntry(n);if(r){if(!this.shouldCreateEntry(r))return;this.stateHistory.push(n),this.lastEntry=r,this.clearRedoStack()}}},{key:"clearRedoStack",value:function(){this.redoStack.splice(0,this.redoStack.length)}},{key:"redoOnce",value:function(){if(0===this.redoStack.length)return null;var e=this.redoStack.pop();return void 0!==e?(this.stateHistory.push(e),this.hydrateHistoryEntry(e)):null}},{key:"undoOnce",value:function(){if(1===this.stateHistory.length)return null;var e=this.stateHistory.pop(),t=this.stateHistory[this.stateHistory.length-1];return void 0!==e?(this.redoStack.push(e),this.hydrateHistoryEntry(t)):null}},{key:"setCurrentState",value:function(e,t){this.lastEntry=this.hydrateHistoryEntry(this.generateEntry(e,t))}},{key:"resumeRecording",value:function(){this.recording=!0}},{key:"record",value:function(e,t){this.recording&&(this.pushEntry(e,t),this.recording=!1)}}]),e}(),ne=n(6552),re=n(3063),oe=n(2438),ie=n(75),ae=n(1564),le=n(746),ce=[{icon:E.SelectionIcon,value:"selection",key:j.tW.V,numericKey:j.tW[1],fillable:!0},{icon:E.RectangleIcon,value:"rectangle",key:j.tW.R,numericKey:j.tW[2],fillable:!0},{icon:E.DiamondIcon,value:"diamond",key:j.tW.D,numericKey:j.tW[3],fillable:!0},{icon:E.EllipseIcon,value:"ellipse",key:j.tW.O,numericKey:j.tW[4],fillable:!0},{icon:E.ArrowIcon,value:"arrow",key:j.tW.A,numericKey:j.tW[5],fillable:!0},{icon:E.LineIcon,value:"line",key:j.tW.L,numericKey:j.tW[6],fillable:!0},{icon:E.FreedrawIcon,value:"freedraw",key:[j.tW.P,j.tW.X],numericKey:j.tW[7],fillable:!1},{icon:E.TextIcon,value:"text",key:j.tW.T,numericKey:j.tW[8],fillable:!1},{icon:E.ImageIcon,value:"image",key:null,numericKey:j.tW[9],fillable:!1},{icon:E.EraserIcon,value:"eraser",key:j.tW.E,numericKey:j.tW[0],fillable:!1}],se=n(2891),ue=n(487),de=n.n(ue),fe=n(631),pe=n.n(fe),he=n(2052),me=n.n(he),ge=n(4010),ve=n.n(ge),be=n(1469),ye=n.n(be),xe=n(9329),we=n.n(xe),ke=n(6578),Ee={};Ee.styleTagTransform=we(),Ee.setAttributes=ve(),Ee.insert=me().bind(null,"head"),Ee.domAPI=pe(),Ee.insertStyleElement=ye();de()(ke.Z,Ee),ke.Z&&ke.Z.locals&&ke.Z.locals;var Se=n(785),Oe="separator",je=v().memo((function(e){var t=e.actionManager,n=e.items,r=e.top,o=e.left,i=Dr(),a=Ar(),l=Mr(),c=n.reduce((function(e,n){return!n||n!==Oe&&n.predicate&&!n.predicate(l,i,t.app.props,t.app)||e.push(n),e}),[]);return(0,P.jsx)(se.J,{onCloseRequest:function(){return a({contextMenu:null})},top:r,left:o,fitInViewport:!0,offsetLeft:i.offsetLeft,offsetTop:i.offsetTop,viewportWidth:i.width,viewportHeight:i.height,children:(0,P.jsx)("ul",{className:"context-menu",onContextMenu:function(e){return e.preventDefault()},children:c.map((function(e,n){var r;if(e===Oe)return c[n-1]&&c[n-1]!==Oe?(0,P.jsx)("hr",{className:"context-menu-item-separator"},n):null;var o=e.name,s="";return e.contextItemLabel&&(s="function"==typeof e.contextItemLabel?(0,O.t)(e.contextItemLabel(l,i)):(0,O.t)(e.contextItemLabel)),(0,P.jsx)("li",{"data-testid":o,onClick:function(){a({contextMenu:null},(function(){t.executeAction(e,"contextMenu")}))},children:(0,P.jsxs)("button",{className:(0,x.Z)("context-menu-item",{dangerous:"deleteSelectedElements"===o,checkmark:null===(r=e.checked)||void 0===r?void 0:r.call(e,i)}),children:[(0,P.jsx)("div",{className:"context-menu-item__label",children:s}),(0,P.jsx)("kbd",{className:"context-menu-item__shortcut",children:o?(0,Se.C)(o):""})]})},n)}))})})})),_e=n(2726),Ce=n(7239),Ie=n(8120),Te=n(1894),Pe=n(5710),Me=n(6086),De={};De.styleTagTransform=we(),De.setAttributes=ve(),De.insert=me().bind(null,"head"),De.domAPI=pe(),De.insertStyleElement=ye();de()(Me.Z,De),Me.Z&&Me.Z.locals&&Me.Z.locals;var Ae=n(1510);function Le(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ze(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Le(Object(n),!0).forEach((function(t){(0,p.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Le(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Re(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return ze(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ze(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function ze(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Ne=function(e){var t,n=e.appState,r=e.elements,o=e.renderAction,i=(0,ie.Zs)((0,U.Lm)(r),n),a=!1;2===i.length&&((0,G.Xo)(i[0])||(0,G.Xo)(i[1]))&&(a=!0);var l,c=Boolean(n.editingElement),s=Tr(),u="rtl"===document.documentElement.getAttribute("dir"),d=(0,ie.$b)(n.activeTool.type)||i.some((function(e){return(0,ie.$b)(e.type)&&!(0,I.Qm)(e.backgroundColor)})),f=(0,ie.$b)(n.activeTool.type)||i.some((function(e){return(0,ie.$b)(e.type)})),p=1===i.length||a,h=(null===(t=i[0])||void 0===t?void 0:t.type)||null,m=Re(i);try{for(m.s();!(l=m.n()).done;){if(l.value.type!==h){h=null;break}}}catch(e){m.e(e)}finally{m.f()}return(0,P.jsxs)("div",{className:"panelColumn",children:[(0,P.jsx)("div",{children:((0,Ie.PD)(n.activeTool.type)&&"image"!==n.activeTool.type&&"image"!==h&&"frame"!==h||i.some((function(e){return(0,Ie.PD)(e.type)})))&&o("changeStrokeColor")}),f&&(0,P.jsx)("div",{children:o("changeBackgroundColor")}),d&&o("changeFillStyle"),((0,ie.Zd)(n.activeTool.type)||i.some((function(e){return(0,ie.Zd)(e.type)})))&&o("changeStrokeWidth"),("freedraw"===n.activeTool.type||i.some((function(e){return"freedraw"===e.type})))&&o("changeStrokeShape"),((0,ie.M9)(n.activeTool.type)||i.some((function(e){return(0,ie.M9)(e.type)})))&&(0,P.jsxs)(P.Fragment,{children:[o("changeStrokeStyle"),o("changeSloppiness")]}),((0,ie.sh)(n.activeTool.type)||i.some((function(e){return(0,ie.sh)(e.type)})))&&(0,P.jsx)(P.Fragment,{children:o("changeRoundness")}),((0,ie.bZ)(n.activeTool.type)||i.some((function(e){return(0,ie.bZ)(e.type)})))&&(0,P.jsxs)(P.Fragment,{children:[o("changeFontSize"),o("changeFontFamily"),(0,Pe.aV)(i)&&o("changeTextAlign")]}),(0,Pe.cn)(i)&&o("changeVerticalAlign"),((0,ie.Un)(n.activeTool.type)||i.some((function(e){return(0,ie.Un)(e.type)})))&&(0,P.jsx)(P.Fragment,{children:o("changeArrowhead")}),o("changeOpacity"),(0,P.jsxs)("fieldset",{children:[(0,P.jsx)("legend",{children:(0,O.t)("labels.layers")}),(0,P.jsxs)("div",{className:"buttonList",children:[o("sendToBack"),o("sendBackward"),o("bringToFront"),o("bringForward")]})]}),i.length>1&&!a&&(0,P.jsxs)("fieldset",{children:[(0,P.jsx)("legend",{children:(0,O.t)("labels.align")}),(0,P.jsxs)("div",{className:"buttonList",children:[u?(0,P.jsxs)(P.Fragment,{children:[o("alignRight"),o("alignHorizontallyCentered"),o("alignLeft")]}):(0,P.jsxs)(P.Fragment,{children:[o("alignLeft"),o("alignHorizontallyCentered"),o("alignRight")]}),i.length>2&&o("distributeHorizontally"),(0,P.jsx)("div",{style:{flexBasis:"100%",height:0}}),(0,P.jsxs)("div",{style:{display:"flex",flexWrap:"wrap",gap:".5rem",marginTop:"-0.5rem"},children:[o("alignTop"),o("alignVerticallyCentered"),o("alignBottom"),i.length>2&&o("distributeVertically")]})]})]}),!c&&i.length>0&&(0,P.jsxs)("fieldset",{children:[(0,P.jsx)("legend",{children:(0,O.t)("labels.actions")}),(0,P.jsxs)("div",{className:"buttonList",children:[!s.isMobile&&o("duplicateSelection"),!s.isMobile&&o("deleteSelectedElements"),o("group"),o("ungroup"),p&&o("hyperlink")]})]})]})},Be=function(e){var t=e.canvas,n=e.activeTool,r=e.setAppState,i=e.onImageAction,a=e.appState,l=(0,g.useState)(!1),c=(0,o.Z)(l,2),s=c[0],u=c[1],d=Tr();return(0,P.jsxs)(P.Fragment,{children:[ce.map((function(e,o){var l=e.value,c=e.icon,s=e.key,u=e.numericKey,d=e.fillable,f=(0,O.t)("toolBar.".concat(l)),p=s&&(0,I.Oo)("string"==typeof s?s:s[0]),h=p?"".concat(p," ").concat((0,O.t)("helpDialog.or")," ").concat(u):"".concat(u);return(0,P.jsx)(S.V,{className:(0,x.Z)("Shape",{fillable:d}),type:"radio",icon:c,checked:n.type===l,name:"editor-current-shape",title:"".concat((0,I.Oo)(f)," — ").concat(h),keyBindingLabel:u||p,"aria-label":(0,I.Oo)(f),"aria-keyshortcuts":h,"data-testid":"toolbar-".concat(l),onPointerDown:function(e){var t=e.pointerType;a.penDetected||"pen"!==t||r({penDetected:!0,penMode:!0})},onChange:function(e){var n=e.pointerType;a.activeTool.type!==l&&(0,L.L)("toolbar",l,"ui");var o=(0,I.Om)(a,{type:l});r({activeTool:o,multiElement:null,selectedElementIds:{}}),(0,I.Uk)(t,Ze(Ze({},a),{},{activeTool:o})),"image"===l&&i({pointerType:n})}},l)})),(0,P.jsx)("div",{className:"App-toolbar__divider"}),d.isMobile?(0,P.jsx)(S.V,{className:(0,x.Z)("Shape",{fillable:!1}),type:"radio",icon:E.frameToolIcon,checked:"frame"===n.type,name:"editor-current-shape",title:"".concat((0,I.Oo)((0,O.t)("toolBar.frame"))," — ").concat(j.tW.F.toLocaleUpperCase()),keyBindingLabel:j.tW.F.toLocaleUpperCase(),"aria-label":(0,I.Oo)((0,O.t)("toolBar.frame")),"aria-keyshortcuts":j.tW.F.toLocaleUpperCase(),"data-testid":"toolbar-frame",onPointerDown:function(e){var t=e.pointerType;a.penDetected||"pen"!==t||r({penDetected:!0,penMode:!0})},onChange:function(e){e.pointerType;(0,L.L)("toolbar","frame","ui");var t=(0,I.Om)(a,{type:"frame"});r({activeTool:t,multiElement:null,selectedElementIds:{}})}}):(0,P.jsxs)(Ae.Z,{open:s,children:[(0,P.jsx)(Ae.Z.Trigger,{className:"App-toolbar__extra-tools-trigger",onToggle:function(){return u(!s)},title:(0,O.t)("toolBar.extraTools"),children:E.extraToolsIcon}),(0,P.jsx)(Ae.Z.Content,{onClickOutside:function(){return u(!1)},onSelect:function(){return u(!1)},className:"App-toolbar__extra-tools-dropdown",children:(0,P.jsx)(Ae.Z.Item,{onSelect:function(){var e=(0,I.Om)(a,{type:"frame"});r({activeTool:e,multiElement:null,selectedElementIds:{}})},icon:E.frameToolIcon,shortcut:j.tW.F.toLocaleUpperCase(),"data-testid":"toolbar-frame",children:(0,O.t)("toolBar.frame")})})]})]})},He=function(e){var t=e.renderAction;e.zoom;return(0,P.jsx)(Ce.Z.Col,{gap:1,className:"zoom-actions",children:(0,P.jsxs)(Ce.Z.Row,{align:"center",children:[t("zoomOut"),t("resetZoom"),t("zoomIn")]})})},Fe=function(e){var t=e.renderAction,n=e.className;return(0,P.jsxs)("div",{className:"undo-redo-buttons ".concat(n),children:[(0,P.jsx)("div",{className:"undo-button-container",children:(0,P.jsx)(Te.u,{label:(0,O.t)("buttons.undo"),children:t("undo")})}),(0,P.jsx)("div",{className:"redo-button-container",children:(0,P.jsxs)(Te.u,{label:(0,O.t)("buttons.redo"),children:[" ",t("redo")]})})]})},We=function(e){var t=e.actionManager,n=e.showExitZenModeBtn;return(0,P.jsx)("button",{className:(0,x.Z)("disable-zen-mode",{"disable-zen-mode--visible":n}),onClick:function(){return t.executeAction(k.actionToggleZenMode)},children:(0,O.t)("buttons.exitZenMode")})},Ue=function(e){var t=e.renderAction,n=e.className;return(0,P.jsx)("div",{className:"finalize-button ".concat(n),children:t("finalize",{size:"small"})})},Ke=n(8396),Ye=function(e){var t=e.children,n=e.onClose,r=(0,g.useState)(!!t),i=(0,o.Z)(r,2),a=i[0],l=i[1],c=Pr().container,s=v().useCallback((function(){l(!1),n&&n(),null==c||c.focus()}),[n,c]);return(0,P.jsx)(P.Fragment,{children:a&&(0,P.jsx)(Ke.V,{size:"small",onCloseRequest:s,title:(0,O.t)("errorDialog.title"),children:(0,P.jsx)("div",{style:{whiteSpace:"pre-wrap"},children:t})})})},Ge=n(8671),Ve=n(434),Xe=n(1393),qe=n(3024),$e=n(6217),Je={};Je.styleTagTransform=we(),Je.setAttributes=ve(),Je.insert=me().bind(null,"head"),Je.domAPI=pe(),Je.insertStyleElement=ye();de()($e.Z,Je),$e.Z&&$e.Z.locals&&$e.Z.locals;var Qe=function(e){var t=e.onChange,n=e.value,r=e.choices,o=e.name;return(0,P.jsx)("div",{className:"RadioGroup",children:r.map((function(e){return(0,P.jsxs)("div",{className:(0,x.Z)("RadioGroup__choice",{active:e.value===n}),children:[(0,P.jsx)("input",{name:o,type:"radio",checked:e.value===n,onChange:function(){return t(e.value)}}),e.label]},e.label)}))})},et=n(7802),tt={};tt.styleTagTransform=we(),tt.setAttributes=ve(),tt.insert=me().bind(null,"head"),tt.domAPI=pe(),tt.insertStyleElement=ye();de()(et.Z,tt),et.Z&&et.Z.locals&&et.Z.locals;var nt=function(e){var t=e.title,n=e.name,r=e.checked,o=e.onChange,i=e.disabled,a=void 0!==i&&i;return(0,P.jsx)("div",{className:(0,x.Z)("Switch",{toggled:r,disabled:a}),children:(0,P.jsx)("input",{name:n,id:n,title:t,type:"checkbox",checked:r,disabled:a,onChange:function(){return o(!r)},onKeyDown:function(e){" "===e.key&&o(!r)}})})},rt=n(9706),ot={};ot.styleTagTransform=we(),ot.setAttributes=ve(),ot.insert=me().bind(null,"head"),ot.domAPI=pe(),ot.insertStyleElement=ye();de()(rt.Z,ot),rt.Z&&rt.Z.locals&&rt.Z.locals;var it=n(8960),at={};at.styleTagTransform=we(),at.setAttributes=ve(),at.insert=me().bind(null,"head"),at.domAPI=pe(),at.insertStyleElement=ye();de()(it.Z,at),it.Z&&it.Z.locals&&it.Z.locals;var lt=(0,g.forwardRef)((function(e,t){var n=e.children,r=e.startIcon,o=e.onClick,i=e.label,a=e.variant,l=void 0===a?"filled":a,c=e.color,s=void 0===c?"primary":c,u=e.size,d=void 0===u?"medium":u,f=e.className;return(0,P.jsxs)("button",{className:(0,x.Z)("ExcButton","ExcButton--color-".concat(s),"ExcButton--variant-".concat(l),"ExcButton--size-".concat(d),f),onClick:o,type:"button","aria-label":i,ref:t,children:[r&&(0,P.jsx)("div",{className:"ExcButton__icon","aria-hidden":!0,children:r}),"icon"!==l&&(null!=n?n:i)]})})),ct="filter"in document.createElement("canvas").getContext("2d"),st=function(){return(0,P.jsxs)("div",{children:[(0,P.jsx)("h3",{children:(0,O.t)("canvasError.cannotShowPreview")}),(0,P.jsx)("p",{children:(0,P.jsx)("span",{children:(0,O.t)("canvasError.canvasTooBig")})}),(0,P.jsxs)("em",{children:["(",(0,O.t)("canvasError.canvasTooBigTip"),")"]})]})},ut=function(e){var t=e.appState,n=e.elements,r=e.files,i=e.actionManager,a=e.onExportImage,l=Ir(),c=(0,g.useState)(t.name),s=(0,o.Z)(c,2),u=s[0],d=s[1],f=(0,ie.N)(n,t),p=(0,g.useState)(f),h=(0,o.Z)(p,2),m=h[0],v=h[1],b=(0,g.useState)(t.exportBackground),y=(0,o.Z)(b,2),x=y[0],w=y[1],k=(0,g.useState)(t.exportWithDarkMode),S=(0,o.Z)(k,2),j=S[0],_=S[1],C=(0,g.useState)(t.exportEmbedScene),I=(0,o.Z)(C,2),M=I[0],D=I[1],A=(0,g.useState)(t.exportScale),L=(0,o.Z)(A,2),Z=L[0],R=L[1],z=(0,g.useRef)(null),N=(0,g.useState)(null),H=(0,o.Z)(N,2),F=H[0],W=H[1],U=m?(0,ie.eD)(n,t,{includeBoundTextElement:!0,includeElementsInFrames:!0}):n;return(0,g.useEffect)((function(){var e=z.current;if(e){var n=e.offsetWidth,o=e.offsetHeight;n&&(0,qe.NL)({data:{elements:U,appState:t,files:r},config:{canvasBackgroundColor:!!t.exportBackground&&t.viewBackgroundColor,padding:T.qy,theme:t.exportWithDarkMode?"dark":"light",scale:t.exportScale,maxWidthOrHeight:Math.max(n,o)}}).then((function(t){return W(null),(0,Ve._c)(t).then((function(){e.replaceChildren(t)}))})).catch((function(e){console.error(e),W(e)}))}}),[t,r,U]),(0,P.jsxs)("div",{className:"ImageExportModal",children:[(0,P.jsx)("h3",{children:(0,O.t)("imageExportDialog.header")}),(0,P.jsxs)("div",{className:"ImageExportModal__preview",children:[(0,P.jsx)("div",{className:"ImageExportModal__preview__canvas",ref:z,children:F&&(0,P.jsx)(st,{})}),(0,P.jsx)("div",{className:"ImageExportModal__preview__filename",children:!Xe.kr&&(0,P.jsx)("input",{type:"text",className:"TextInput",value:u,style:{width:"30ch"},disabled:void 0!==l.name||t.viewModeEnabled,onChange:function(e){d(e.target.value),i.executeAction(Ge.zX,"ui",e.target.value)}})})]}),(0,P.jsxs)("div",{className:"ImageExportModal__settings",children:[(0,P.jsx)("h3",{children:(0,O.t)("imageExportDialog.header")}),f&&(0,P.jsx)(dt,{label:(0,O.t)("imageExportDialog.label.onlySelected"),name:"exportOnlySelected",children:(0,P.jsx)(nt,{name:"exportOnlySelected",checked:m,onChange:function(e){v(e)}})}),(0,P.jsx)(dt,{label:(0,O.t)("imageExportDialog.label.withBackground"),name:"exportBackgroundSwitch",children:(0,P.jsx)(nt,{name:"exportBackgroundSwitch",checked:x,onChange:function(e){w(e),i.executeAction(Ge.XA,"ui",e)}})}),ct&&(0,P.jsx)(dt,{label:(0,O.t)("imageExportDialog.label.darkMode"),name:"exportDarkModeSwitch",children:(0,P.jsx)(nt,{name:"exportDarkModeSwitch",checked:j,onChange:function(e){_(e),i.executeAction(Ge.bJ,"ui",e)}})}),(0,P.jsx)(dt,{label:(0,O.t)("imageExportDialog.label.embedScene"),tooltip:(0,O.t)("imageExportDialog.tooltip.embedScene"),name:"exportEmbedSwitch",children:(0,P.jsx)(nt,{name:"exportEmbedSwitch",checked:M,onChange:function(e){D(e),i.executeAction(Ge.Du,"ui",e)}})}),(0,P.jsx)(dt,{label:(0,O.t)("imageExportDialog.label.scale"),name:"exportScale",children:(0,P.jsx)(Qe,{name:"exportScale",value:Z,onChange:function(e){R(e),i.executeAction(Ge.sK,"ui",e)},choices:T.ZB.map((function(e){return{value:e,label:"".concat(e,"×")}}))})}),(0,P.jsxs)("div",{className:"ImageExportModal__settings__buttons",children:[(0,P.jsx)(lt,{className:"ImageExportModal__settings__buttons__button",label:(0,O.t)("imageExportDialog.title.exportToPng"),onClick:function(){return a(T.I_.png,U)},startIcon:E.downloadIcon,children:(0,O.t)("imageExportDialog.button.exportToPng")}),(0,P.jsx)(lt,{className:"ImageExportModal__settings__buttons__button",label:(0,O.t)("imageExportDialog.title.exportToSvg"),onClick:function(){return a(T.I_.svg,U)},startIcon:E.downloadIcon,children:(0,O.t)("imageExportDialog.button.exportToSvg")}),(B.vt||T.vU)&&(0,P.jsx)(lt,{className:"ImageExportModal__settings__buttons__button",label:(0,O.t)("imageExportDialog.title.copyPngToClipboard"),onClick:function(){return a(T.I_.clipboard,U)},startIcon:E.copyIcon,children:(0,O.t)("imageExportDialog.button.copyPngToClipboard")})]})]})]})},dt=function(e){var t=e.label,n=e.children,r=e.tooltip,o=e.name;return(0,P.jsxs)("div",{className:"ImageExportModal__settings__setting",title:t,children:[(0,P.jsxs)("label",{htmlFor:o,className:"ImageExportModal__settings__setting__label",children:[t,r&&(0,P.jsx)(Te.u,{label:r,long:!0,children:E.helpIcon})]}),(0,P.jsx)("div",{className:"ImageExportModal__settings__setting__content",children:n})]})},ft=function(e){var t=e.elements,n=e.appState,r=e.files,o=e.actionManager,i=e.onExportImage,a=e.onCloseRequest;return"imageExport"!==n.openDialog?null:(0,P.jsx)(Ke.V,{onCloseRequest:a,size:"wide",title:!1,children:(0,P.jsx)(ut,{elements:t,appState:n,files:r,actionManager:o,onExportImage:i})})},pt=n(3195),ht={};ht.styleTagTransform=we(),ht.setAttributes=ve(),ht.insert=me().bind(null,"head"),ht.domAPI=pe(),ht.insertStyleElement=ye();de()(pt.Z,ht),pt.Z&&pt.Z.locals&&pt.Z.locals;var mt=function(e){var t=e.children,n=e.side,r=e.className;return(0,P.jsx)("div",{className:(0,x.Z)("FixedSideContainer","FixedSideContainer_side_".concat(n),r),children:t})},gt=n(1587),vt={};vt.styleTagTransform=we(),vt.setAttributes=ve(),vt.insert=me().bind(null,"head"),vt.domAPI=pe(),vt.insertStyleElement=ye();de()(gt.Z,vt),gt.Z&&gt.Z.locals&&gt.Z.locals;var bt=function(e){var t=function(e){var t=e.appState,n=e.elements,r=e.isMobile,o=e.device,i=t.activeTool,a=t.isResizing,l=t.isRotating,c=t.lastPointerDownWith,s=null!==t.multiElement;if(t.openSidebar&&!o.canDeviceFitSidebar)return null;if((0,N.EN)(t))return(0,O.t)("hints.eraserRevert");if("arrow"===i.type||"line"===i.type)return s?(0,O.t)("hints.linearElementMulti"):(0,O.t)("hints.linearElement");if("freedraw"===i.type)return(0,O.t)("hints.freeDraw");if("text"===i.type)return(0,O.t)("hints.text");if("image"===t.activeTool.type&&t.pendingImageElementId)return(0,O.t)("hints.placeImage");var u=(0,ie.eD)(n,t);if(a&&"mouse"===c&&1===u.length){var d=u[0];return(0,G.bt)(d)&&2===d.points.length?(0,O.t)("hints.lockAngle"):(0,G.pC)(d)?(0,O.t)("hints.resizeImage"):(0,O.t)("hints.resize")}if(l&&"mouse"===c)return(0,O.t)("hints.rotate");if(1===u.length&&(0,G.iB)(u[0]))return(0,O.t)("hints.text_selected");if(t.editingElement&&(0,G.iB)(t.editingElement))return(0,O.t)("hints.text_editing");if("selection"===i.type){var f;if("selection"===(null===(f=t.draggingElement)||void 0===f?void 0:f.type)&&!t.editingElement&&!t.editingLinearElement)return(0,O.t)("hints.deepBoxSelect");if(!u.length&&!r)return(0,O.t)("hints.canvasPanning")}if(1===u.length){if((0,G.bt)(u[0]))return t.editingLinearElement?t.editingLinearElement.selectedPointsIndices?(0,O.t)("hints.lineEditor_pointSelected"):(0,O.t)("hints.lineEditor_nothingSelected"):(0,O.t)("hints.lineEditor_info");if((0,G.mG)(u[0]))return(0,O.t)("hints.bindTextToElement")}return null}({appState:e.appState,elements:e.elements,isMobile:e.isMobile,device:e.device});return t?(t=(0,I.uY)(t),(0,P.jsx)("div",{className:"HintViewer",children:(0,P.jsx)("span",{children:t})})):null},yt=n(1881),xt=n(5440),wt=(n(5422),{CHECKED:E.LockedIcon,UNCHECKED:E.UnlockedIcon}),kt=function(e){return(0,P.jsxs)("label",{className:(0,x.Z)("ToolIcon ToolIcon__lock","ToolIcon_size_".concat("medium"),{"is-mobile":e.isMobile}),title:"".concat(e.title," — Q"),children:[(0,P.jsx)("input",{className:"ToolIcon_type_checkbox",type:"checkbox",name:e.name,onChange:e.onChange,checked:e.checked,"aria-label":e.title,"data-testid":"toolbar-lock"}),(0,P.jsx)("div",{className:"ToolIcon__icon",children:e.checked?wt.CHECKED:wt.UNCHECKED})]})},Et=["heading","children"];function St(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ot(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?St(Object(n),!0).forEach((function(t){(0,p.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):St(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var jt=function(e){var t=e.heading,n=e.children,r=(0,_e.Z)(e,Et),o=Pr().id,i=(0,P.jsx)("h2",{className:"visually-hidden",id:"".concat(o,"-").concat(t,"-title"),children:(0,O.t)("headings.".concat(t))});return(0,P.jsx)("section",Ot(Ot({},r),{},{"aria-labelledby":"".concat(o,"-").concat(t,"-title"),children:"function"==typeof n?n(i):(0,P.jsxs)(P.Fragment,{children:[i,n]})}))},_t=n(756),Ct=function(e){return e.penDetected?(0,P.jsxs)("label",{className:(0,x.Z)("ToolIcon ToolIcon__penMode","ToolIcon_size_".concat("medium"),{"is-mobile":e.isMobile}),title:"".concat(e.title),children:[(0,P.jsx)("input",{className:"ToolIcon_type_checkbox",type:"checkbox",name:e.name,onChange:e.onChange,checked:e.checked,"aria-label":e.title}),(0,P.jsx)("div",{className:"ToolIcon__icon",children:E.PenModeIcon})]}):null},It=n(8925),Tt=n(2681),Pt={};Pt.styleTagTransform=we(),Pt.setAttributes=ve(),Pt.insert=me().bind(null,"head"),Pt.domAPI=pe(),Pt.insertStyleElement=ye();de()(Tt.Z,Pt),Tt.Z&&Tt.Z.locals&&Tt.Z.locals;var Mt=function(e){var t,n=(0,It.KP)(e.elements),r=(0,ie.Zs)(e.elements,e.appState),o=(0,It.KP)(r);return(0,P.jsx)("div",{className:"Stats",children:(0,P.jsxs)(yt.W,{padding:2,children:[(0,P.jsx)("div",{className:"close",onClick:e.onClose,children:E.CloseIcon}),(0,P.jsx)("h3",{children:(0,O.t)("stats.title")}),(0,P.jsx)("table",{children:(0,P.jsxs)("tbody",{children:[(0,P.jsx)("tr",{children:(0,P.jsx)("th",{colSpan:2,children:(0,O.t)("stats.scene")})}),(0,P.jsxs)("tr",{children:[(0,P.jsx)("td",{children:(0,O.t)("stats.elements")}),(0,P.jsx)("td",{children:e.elements.length})]}),(0,P.jsxs)("tr",{children:[(0,P.jsx)("td",{children:(0,O.t)("stats.width")}),(0,P.jsx)("td",{children:Math.round(n[2])-Math.round(n[0])})]}),(0,P.jsxs)("tr",{children:[(0,P.jsx)("td",{children:(0,O.t)("stats.height")}),(0,P.jsx)("td",{children:Math.round(n[3])-Math.round(n[1])})]}),1===r.length&&(0,P.jsx)("tr",{children:(0,P.jsx)("th",{colSpan:2,children:(0,O.t)("stats.element")})}),r.length>1&&(0,P.jsxs)(P.Fragment,{children:[(0,P.jsx)("tr",{children:(0,P.jsx)("th",{colSpan:2,children:(0,O.t)("stats.selected")})}),(0,P.jsxs)("tr",{children:[(0,P.jsx)("td",{children:(0,O.t)("stats.elements")}),(0,P.jsx)("td",{children:r.length})]})]}),r.length>0&&(0,P.jsxs)(P.Fragment,{children:[(0,P.jsxs)("tr",{children:[(0,P.jsx)("td",{children:"x"}),(0,P.jsx)("td",{children:Math.round(o[0])})]}),(0,P.jsxs)("tr",{children:[(0,P.jsx)("td",{children:"y"}),(0,P.jsx)("td",{children:Math.round(o[1])})]}),(0,P.jsxs)("tr",{children:[(0,P.jsx)("td",{children:(0,O.t)("stats.width")}),(0,P.jsx)("td",{children:Math.round(o[2]-o[0])})]}),(0,P.jsxs)("tr",{children:[(0,P.jsx)("td",{children:(0,O.t)("stats.height")}),(0,P.jsx)("td",{children:Math.round(o[3]-o[1])})]})]}),1===r.length&&(0,P.jsxs)("tr",{children:[(0,P.jsx)("td",{children:(0,O.t)("stats.angle")}),(0,P.jsx)("td",{children:"".concat(Math.round(180*r[0].angle/Math.PI),"°")})]}),null===(t=e.renderCustomStats)||void 0===t?void 0:t.call(e,e.elements,e.appState)]})})]})})},Dt=function(e){return(0,P.jsx)(S.V,{className:(0,x.Z)("Shape",{fillable:!1}),type:"radio",icon:E.handIcon,name:"editor-current-shape",checked:e.checked,title:"".concat(e.title," — H"),keyBindingLabel:e.isMobile?void 0:j.tW.H.toLocaleUpperCase(),"aria-label":"".concat(e.title," — H"),"aria-keyshortcuts":j.tW.H,"data-testid":"toolbar-hand",onChange:function(){var t;return null===(t=e.onChange)||void 0===t?void 0:t.call(e)}})},At=n(7681),Lt=n(2561),Zt={};Zt.styleTagTransform=we(),Zt.setAttributes=ve(),Zt.insert=me().bind(null,"head"),Zt.domAPI=pe(),Zt.insertStyleElement=ye();de()(Lt.Z,Zt),Lt.Z&&Lt.Z.locals&&Lt.Z.locals;var Rt=function(e){var t=e.onHomeButtonClick;return(0,P.jsx)("label",{title:"".concat((0,I.Oo)((0,O.t)("toolBar.library"))," — 0"),children:(0,P.jsx)("div",{className:"library-button",onClick:t,children:(0,P.jsx)("div",{children:E.HomeIcon})})})};function zt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var Nt=function(e){var t=e.appState,n=e.elements,r=e.actionManager,o=e.setAppState,i=e.onLockToggle,a=e.onHandToolToggle,l=e.onPenModeToggle,c=e.canvas,s=e.onImageAction,u=e.renderTopRightUI,d=e.renderCustomStats,f=e.renderSidebars,h=e.device,m=e.renderWelcomeScreen,g=e.onHomeButtonClick,v=(0,At.R6)(),b=v.WelcomeScreenCenterTunnel,y=v.MainMenuTunnel,x=v.DefaultSidebarTriggerTunnel;return(0,P.jsxs)(P.Fragment,{children:[f(),!t.viewModeEnabled&&(0,P.jsxs)(mt,{side:"top",className:"App-top-bar",children:[m&&(0,P.jsx)(b.Out,{}),(0,P.jsx)(jt,{heading:"shapes",children:function(e){return(0,P.jsx)(Ce.Z.Col,{gap:4,align:"center",children:(0,P.jsxs)(Ce.Z.Row,{gap:1,className:"App-toolbar-container",children:[(0,P.jsxs)(yt.W,{padding:1,className:"App-toolbar App-toolbar--mobile",children:[e,(0,P.jsx)(Ce.Z.Row,{gap:1,children:(0,P.jsx)(Be,{appState:t,canvas:c,activeTool:t.activeTool,setAppState:o,onImageAction:function(e){var t=e.pointerType;s({insertOnCanvasDirectly:"mouse"!==t})}})})]}),u&&u(!0,t),(0,P.jsxs)("div",{className:"mobile-misc-tools-container",children:[!t.viewModeEnabled&&(0,P.jsx)(x.Out,{}),(0,P.jsx)(Ct,{checked:t.penMode,onChange:l,title:(0,O.t)("toolBar.penMode"),isMobile:!0,penDetected:t.penDetected}),(0,P.jsx)(kt,{checked:t.activeTool.locked,onChange:i,title:(0,O.t)("toolBar.lock"),isMobile:!0}),(0,P.jsx)(Dt,{checked:(0,N.l$)(t),onChange:function(){return a()},title:(0,O.t)("toolBar.hand"),isMobile:!0})]}),(0,P.jsx)("div",{className:"mobile-misc-tools-container-left",children:(0,P.jsx)(Rt,{onHomeButtonClick:g})})]})})}}),(0,P.jsx)(bt,{appState:t,elements:n,isMobile:!0,device:h})]}),!t.openMenu&&t.showStats&&(0,P.jsx)(Mt,{appState:t,setAppState:o,elements:n,onClose:function(){r.executeAction(k.actionToggleStats)},renderCustomStats:d}),(0,P.jsx)("div",{className:"App-bottom-bar",style:{marginBottom:_t.nn+2*_t.WM,marginLeft:_t.nn+2*_t.WM,marginRight:_t.nn+2*_t.WM},children:(0,P.jsxs)(yt.W,{padding:0,children:["shape"===t.openMenu&&!t.viewModeEnabled&&(0,U.RT)(t,n)?(0,P.jsx)(jt,{className:"App-mobile-menu",heading:"selectedShapeActions",children:(0,P.jsx)(Ne,{appState:t,elements:n,renderAction:r.renderAction})}):null,(0,P.jsxs)("footer",{className:"App-toolbar",children:[t.viewModeEnabled?(0,P.jsx)("div",{className:"App-toolbar-content",children:(0,P.jsx)(y.Out,{})}):(0,P.jsxs)("div",{className:"App-toolbar-content",children:[(0,P.jsx)(y.Out,{}),r.renderAction("toggleEditMenu"),r.renderAction("undo"),r.renderAction("redo"),r.renderAction(t.multiElement?"finalize":"duplicateSelection"),r.renderAction("deleteSelectedElements")]}),t.scrolledOutside&&!t.openMenu&&!t.openSidebar&&(0,P.jsx)("button",{className:"scroll-back-to-content",onClick:function(){o((function(e){return function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?zt(Object(n),!0).forEach((function(t){(0,p.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):zt(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},(0,ie.W)(n,e,c))}))},children:(0,O.t)("buttons.scrollBackToContent")})]})]})})]})},Bt=n(5284),Ht=n(5674),Ft=n(4162),Wt=n(8461),Ut={};Ut.styleTagTransform=we(),Ut.setAttributes=ve(),Ut.insert=me().bind(null,"head"),Ut.domAPI=pe(),Ut.insertStyleElement=ye();de()(Wt.Z,Ut),Wt.Z&&Wt.Z.locals&&Wt.Z.locals;var Kt=function(e){var t=(0,g.useRef)(null),n=(0,g.useState)(null),r=(0,o.Z)(n,2),i=r[0],l=r[1];return(0,g.useLayoutEffect)((function(){if(e.spreadsheet){var n,r=(0,Ht.ps)(e.chartType,e.spreadsheet,0,0);l(r);var o=t.current;return(0,a.Z)(m().mark((function t(){var i;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,(0,Ft.$D)(r,{exportBackground:!1,viewBackgroundColor:Bt.white},null);case 2:n=t.sent,null===(i=n.querySelector(".style-fonts"))||void 0===i||i.remove(),o.replaceChildren(),o.appendChild(n),e.selected&&o.parentNode.focus();case 7:case"end":return t.stop()}}),t)})))(),function(){o.replaceChildren()}}}),[e.spreadsheet,e.chartType,e.selected]),(0,P.jsx)("button",{className:"ChartPreview",onClick:function(){i&&e.onClick(e.chartType,i)},children:(0,P.jsx)("div",{ref:t})})},Yt=function(e){var t=e.setAppState,n=e.appState,r=e.onClose,o=Cr().onInsertElements,i=v().useCallback((function(){r&&r()}),[r]),a=function(e,n){o(n),(0,L.L)("magic","chart",e),t({currentChartType:e,pasteDialog:{shown:!1,data:null}})};return(0,P.jsx)(Ke.V,{size:"small",onCloseRequest:i,title:(0,O.t)("labels.pasteCharts"),className:"PasteChartDialog",autofocus:!1,children:(0,P.jsxs)("div",{className:"container",children:[(0,P.jsx)(Kt,{chartType:"bar",spreadsheet:n.pasteDialog.data,selected:"bar"===n.currentChartType,onClick:a}),(0,P.jsx)(Kt,{chartType:"line",spreadsheet:n.pasteDialog.data,selected:"line"===n.currentChartType,onClick:a})]})})},Gt=n(2978),Vt={};Vt.styleTagTransform=we(),Vt.setAttributes=ve(),Vt.insert=me().bind(null,"head"),Vt.domAPI=pe(),Vt.insertStyleElement=ye();de()(Gt.Z,Vt),Gt.Z&&Gt.Z.locals&&Gt.Z.locals;function Xt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var qt=m().mark(nn);function $t(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return Jt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Jt(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function Jt(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Qt=function(){return(0,P.jsxs)("div",{className:"HelpDialog__header",children:[(0,P.jsxs)("a",{className:"HelpDialog__btn",href:"https://github.com/excalidraw/excalidraw#documentation",target:"_blank",rel:"noopener noreferrer",children:[(0,O.t)("helpDialog.documentation"),(0,P.jsx)("div",{className:"HelpDialog__link-icon",children:E.ExternalLinkIcon})]}),(0,P.jsxs)("a",{className:"HelpDialog__btn",href:"https://blog.excalidraw.com",target:"_blank",rel:"noopener noreferrer",children:[(0,O.t)("helpDialog.blog"),(0,P.jsx)("div",{className:"HelpDialog__link-icon",children:E.ExternalLinkIcon})]}),(0,P.jsxs)("a",{className:"HelpDialog__btn",href:"https://github.com/excalidraw/excalidraw/issues",target:"_blank",rel:"noopener noreferrer",children:[(0,O.t)("helpDialog.github"),(0,P.jsx)("div",{className:"HelpDialog__link-icon",children:E.ExternalLinkIcon})]})]})},en=function(e){return(0,P.jsxs)(P.Fragment,{children:[(0,P.jsx)("h3",{children:e.title}),(0,P.jsx)("div",{className:"HelpDialog__islands-container",children:e.children})]})},tn=function(e){return(0,P.jsxs)("div",{className:"HelpDialog__island ".concat(e.className),children:[(0,P.jsx)("h4",{className:"HelpDialog__island-title",children:e.caption}),(0,P.jsx)("div",{className:"HelpDialog__island-content",children:e.children})]})};function nn(e,t){var n,r,o,i;return m().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:n=!0,r=$t(e),a.prev=2,r.s();case 4:if((o=r.n()).done){a.next=14;break}if(i=o.value,n){a.next=9;break}return a.next=9,t;case 9:return n=!1,a.next=12,i;case 12:a.next=4;break;case 14:a.next=19;break;case 16:a.prev=16,a.t0=a.catch(2),r.e(a.t0);case 19:return a.prev=19,r.f(),a.finish(19);case 22:case"end":return a.stop()}}),qt,null,[[2,16,19,22]])}var rn=function(e){var t=e.label,n=e.shortcuts,r=e.isOr,o=void 0===r||r,a=n.map((function(e){return(e.endsWith("++")?[].concat((0,i.Z)(e.slice(0,-2).split("+")),["+"]):e.split("+")).map((function(e){return(0,P.jsx)(on,{children:(t=e,t.replace(/\b[a-z]\b/,(function(e){return e.toUpperCase()})))},e);var t}))}));return(0,P.jsxs)("div",{className:"HelpDialog__shortcut",children:[(0,P.jsx)("div",{children:t}),(0,P.jsx)("div",{className:"HelpDialog__key-container",children:(0,i.Z)(nn(a,o?(0,O.t)("helpDialog.or"):null))})]})},on=function(e){return(0,P.jsx)("kbd",function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Xt(Object(n),!0).forEach((function(t){(0,p.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Xt(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({className:"HelpDialog__key"},e))},an=function(e){var t=e.onClose,n=v().useCallback((function(){t&&t()}),[t]);return(0,P.jsx)(P.Fragment,{children:(0,P.jsxs)(Ke.V,{onCloseRequest:n,title:(0,O.t)("helpDialog.title"),className:"HelpDialog",children:[(0,P.jsx)(Qt,{}),(0,P.jsxs)(en,{title:(0,O.t)("helpDialog.shortcuts"),children:[(0,P.jsxs)(tn,{className:"HelpDialog__island--tools",caption:(0,O.t)("helpDialog.tools"),children:[(0,P.jsx)(rn,{label:(0,O.t)("toolBar.hand"),shortcuts:[j.tW.H]}),(0,P.jsx)(rn,{label:(0,O.t)("toolBar.selection"),shortcuts:[j.tW.V,j.tW[1]]}),(0,P.jsx)(rn,{label:(0,O.t)("toolBar.rectangle"),shortcuts:[j.tW.R,j.tW[2]]}),(0,P.jsx)(rn,{label:(0,O.t)("toolBar.diamond"),shortcuts:[j.tW.D,j.tW[3]]}),(0,P.jsx)(rn,{label:(0,O.t)("toolBar.ellipse"),shortcuts:[j.tW.O,j.tW[4]]}),(0,P.jsx)(rn,{label:(0,O.t)("toolBar.arrow"),shortcuts:[j.tW.A,j.tW[5]]}),(0,P.jsx)(rn,{label:(0,O.t)("toolBar.line"),shortcuts:[j.tW.L,j.tW[6]]}),(0,P.jsx)(rn,{label:(0,O.t)("toolBar.freedraw"),shortcuts:[j.tW.P,j.tW[7]]}),(0,P.jsx)(rn,{label:(0,O.t)("toolBar.text"),shortcuts:[j.tW.T,j.tW[8]]}),(0,P.jsx)(rn,{label:(0,O.t)("toolBar.image"),shortcuts:[j.tW[9]]}),(0,P.jsx)(rn,{label:(0,O.t)("toolBar.eraser"),shortcuts:[j.tW.E,j.tW[0]]}),(0,P.jsx)(rn,{label:(0,O.t)("toolBar.frame"),shortcuts:[j.tW.F]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.eyeDropper"),shortcuts:[j.tW.I,"Shift+S","Shift+G"]}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.editLineArrowPoints"),shortcuts:[(0,I.uY)("CtrlOrCmd+Enter")]}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.editText"),shortcuts:[(0,I.uY)("Enter")]}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.textNewLine"),shortcuts:[(0,I.uY)("Enter"),(0,I.uY)("Shift+Enter")]}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.textFinish"),shortcuts:[(0,I.uY)("Esc"),(0,I.uY)("CtrlOrCmd+Enter")]}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.curvedArrow"),shortcuts:["A",(0,O.t)("helpDialog.click"),(0,O.t)("helpDialog.click"),(0,O.t)("helpDialog.click")],isOr:!1}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.curvedLine"),shortcuts:["L",(0,O.t)("helpDialog.click"),(0,O.t)("helpDialog.click"),(0,O.t)("helpDialog.click")],isOr:!1}),(0,P.jsx)(rn,{label:(0,O.t)("toolBar.lock"),shortcuts:[j.tW.Q]}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.preventBinding"),shortcuts:[(0,I.uY)("CtrlOrCmd")]}),(0,P.jsx)(rn,{label:(0,O.t)("toolBar.link"),shortcuts:[(0,I.uY)("CtrlOrCmd+K")]})]}),(0,P.jsxs)(tn,{className:"HelpDialog__island--view",caption:(0,O.t)("helpDialog.view"),children:[(0,P.jsx)(rn,{label:(0,O.t)("buttons.zoomIn"),shortcuts:[(0,I.uY)("CtrlOrCmd++")]}),(0,P.jsx)(rn,{label:(0,O.t)("buttons.zoomOut"),shortcuts:[(0,I.uY)("CtrlOrCmd+-")]}),(0,P.jsx)(rn,{label:(0,O.t)("buttons.resetZoom"),shortcuts:[(0,I.uY)("CtrlOrCmd+0")]}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.zoomToFit"),shortcuts:["Shift+1"]}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.zoomToSelection"),shortcuts:["Shift+2"]}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.movePageUpDown"),shortcuts:["PgUp/PgDn"]}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.movePageLeftRight"),shortcuts:["Shift+PgUp/PgDn"]}),(0,P.jsx)(rn,{label:(0,O.t)("buttons.fullScreen"),shortcuts:["F"]}),(0,P.jsx)(rn,{label:(0,O.t)("buttons.zenMode"),shortcuts:[(0,I.uY)("Alt+Z")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.showGrid"),shortcuts:[(0,I.uY)("CtrlOrCmd+'")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.viewMode"),shortcuts:[(0,I.uY)("Alt+R")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.toggleTheme"),shortcuts:[(0,I.uY)("Alt+Shift+D")]}),(0,P.jsx)(rn,{label:(0,O.t)("stats.title"),shortcuts:[(0,I.uY)("Alt+/")]})]}),(0,P.jsxs)(tn,{className:"HelpDialog__island--editor",caption:(0,O.t)("helpDialog.editor"),children:[(0,P.jsx)(rn,{label:(0,O.t)("labels.moveCanvas"),shortcuts:[(0,I.uY)("Space+".concat((0,O.t)("helpDialog.drag"))),(0,I.uY)("Wheel+".concat((0,O.t)("helpDialog.drag")))],isOr:!0}),(0,P.jsx)(rn,{label:(0,O.t)("buttons.clearReset"),shortcuts:[(0,I.uY)("CtrlOrCmd+Delete")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.delete"),shortcuts:[(0,I.uY)("Delete")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.cut"),shortcuts:[(0,I.uY)("CtrlOrCmd+X")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.copy"),shortcuts:[(0,I.uY)("CtrlOrCmd+C")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.paste"),shortcuts:[(0,I.uY)("CtrlOrCmd+V")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.pasteAsPlaintext"),shortcuts:[(0,I.uY)("CtrlOrCmd+Shift+V")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.selectAll"),shortcuts:[(0,I.uY)("CtrlOrCmd+A")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.multiSelect"),shortcuts:[(0,I.uY)("Shift+".concat((0,O.t)("helpDialog.click")))]}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.deepSelect"),shortcuts:[(0,I.uY)("CtrlOrCmd+".concat((0,O.t)("helpDialog.click")))]}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.deepBoxSelect"),shortcuts:[(0,I.uY)("CtrlOrCmd+".concat((0,O.t)("helpDialog.drag")))]}),(B.vt||T.vU)&&(0,P.jsx)(rn,{label:(0,O.t)("labels.copyAsPng"),shortcuts:[(0,I.uY)("Shift+Alt+C")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.copyStyles"),shortcuts:[(0,I.uY)("CtrlOrCmd+Alt+C")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.pasteStyles"),shortcuts:[(0,I.uY)("CtrlOrCmd+Alt+V")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.sendToBack"),shortcuts:[T.Um?(0,I.uY)("CtrlOrCmd+Alt+["):(0,I.uY)("CtrlOrCmd+Shift+[")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.bringToFront"),shortcuts:[T.Um?(0,I.uY)("CtrlOrCmd+Alt+]"):(0,I.uY)("CtrlOrCmd+Shift+]")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.sendBackward"),shortcuts:[(0,I.uY)("CtrlOrCmd+[")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.bringForward"),shortcuts:[(0,I.uY)("CtrlOrCmd+]")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.alignTop"),shortcuts:[(0,I.uY)("CtrlOrCmd+Shift+Up")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.alignBottom"),shortcuts:[(0,I.uY)("CtrlOrCmd+Shift+Down")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.alignLeft"),shortcuts:[(0,I.uY)("CtrlOrCmd+Shift+Left")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.alignRight"),shortcuts:[(0,I.uY)("CtrlOrCmd+Shift+Right")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.duplicateSelection"),shortcuts:[(0,I.uY)("CtrlOrCmd+D"),(0,I.uY)("Alt+".concat((0,O.t)("helpDialog.drag")))]}),(0,P.jsx)(rn,{label:(0,O.t)("helpDialog.toggleElementLock"),shortcuts:[(0,I.uY)("CtrlOrCmd+Shift+L")]}),(0,P.jsx)(rn,{label:(0,O.t)("buttons.undo"),shortcuts:[(0,I.uY)("CtrlOrCmd+Z")]}),(0,P.jsx)(rn,{label:(0,O.t)("buttons.redo"),shortcuts:T.ED?[(0,I.uY)("CtrlOrCmd+Y"),(0,I.uY)("CtrlOrCmd+Shift+Z")]:[(0,I.uY)("CtrlOrCmd+Shift+Z")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.group"),shortcuts:[(0,I.uY)("CtrlOrCmd+G")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.ungroup"),shortcuts:[(0,I.uY)("CtrlOrCmd+Shift+G")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.flipHorizontal"),shortcuts:[(0,I.uY)("Shift+H")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.flipVertical"),shortcuts:[(0,I.uY)("Shift+V")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.showStroke"),shortcuts:[(0,I.uY)("S")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.showBackground"),shortcuts:[(0,I.uY)("G")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.decreaseFontSize"),shortcuts:[(0,I.uY)("CtrlOrCmd+Shift+<")]}),(0,P.jsx)(rn,{label:(0,O.t)("labels.increaseFontSize"),shortcuts:[(0,I.uY)("CtrlOrCmd+Shift+>")]})]})]})]})})},ln=n(6773),cn=n(4241),sn={};sn.styleTagTransform=we(),sn.setAttributes=ve(),sn.insert=me().bind(null,"head"),sn.domAPI=pe(),sn.insertStyleElement=ye();de()(cn.Z,sn),cn.Z&&cn.Z.locals&&cn.Z.locals;var un=function(e){var t,n=e.children,r=e.color;return(0,P.jsx)("div",{className:"Card",style:(t={},(0,p.Z)(t,"--card-color","primary"===r?"var(--color-primary)":Bt[r][7]),(0,p.Z)(t,"--card-color-darker","primary"===r?"var(--color-primary-darker)":Bt[r][8]),(0,p.Z)(t,"--card-color-darkest","primary"===r?"var(--color-primary-darkest)":Bt[r][9]),t),children:n})},dn=n(7955),fn={};fn.styleTagTransform=we(),fn.setAttributes=ve(),fn.insert=me().bind(null,"head"),fn.domAPI=pe(),fn.insertStyleElement=ye();de()(dn.Z,fn),dn.Z&&dn.Z.locals&&dn.Z.locals;var pn=function(e){var t=e.elements,n=e.appState,r=e.files,o=e.actionManager,i=e.exportOpts,a=e.canvas,l=i.onExportToBackend;return(0,P.jsx)("div",{className:"ExportDialog ExportDialog--json",children:(0,P.jsxs)("div",{className:"ExportDialog-cards",children:[i.saveFileToDisk&&(0,P.jsxs)(un,{color:"lime",children:[(0,P.jsx)("div",{className:"Card-icon",children:E.exportToFileIcon}),(0,P.jsx)("h2",{children:(0,O.t)("exportDialog.disk_title")}),(0,P.jsxs)("div",{className:"Card-details",children:[(0,O.t)("exportDialog.disk_details"),!Xe.kr&&o.renderAction("changeProjectName")]}),(0,P.jsx)(S.V,{className:"Card-button",type:"button",title:(0,O.t)("exportDialog.disk_button"),"aria-label":(0,O.t)("exportDialog.disk_button"),showAriaLabel:!0,onClick:function(){o.executeAction(Ge.mM,"ui")}})]}),l&&(0,P.jsxs)(un,{color:"pink",children:[(0,P.jsx)("div",{className:"Card-icon",children:E.LinkIcon}),(0,P.jsx)("h2",{children:(0,O.t)("exportDialog.link_title")}),(0,P.jsx)("div",{className:"Card-details",children:(0,O.t)("exportDialog.link_details")}),(0,P.jsx)(S.V,{className:"Card-button",type:"button",title:(0,O.t)("exportDialog.link_button"),"aria-label":(0,O.t)("exportDialog.link_button"),showAriaLabel:!0,onClick:function(){l(t,n,r,a),(0,L.L)("export","link","ui (".concat((0,I.$h)(),")"))}})]}),i.renderCustomUI&&i.renderCustomUI(t,n,r,a)]})})},hn=function(e){var t=e.elements,n=e.appState,r=e.files,o=e.actionManager,i=e.exportOpts,a=e.canvas,l=e.setAppState,c=v().useCallback((function(){l({openDialog:null})}),[l]);return(0,P.jsx)(P.Fragment,{children:"jsonExport"===n.openDialog&&(0,P.jsx)(Ke.V,{onCloseRequest:c,title:(0,O.t)("buttons.export"),children:(0,P.jsx)(pn,{elements:t,appState:n,files:r,actionManager:o,onCloseRequest:c,exportOpts:i,canvas:a})})})},mn=n(4958),gn=function(e){return(0,P.jsx)("button",{className:"help-icon",onClick:e.onClick,type:"button",title:"".concat((0,O.t)("helpDialog.title")," — ?"),"aria-label":(0,O.t)("helpDialog.title"),children:E.HelpIcon})},vn=function(e){var t=e.appState,n=e.actionManager,r=e.showExitZenModeBtn,o=e.renderWelcomeScreen,i=(0,At.R6)(),a=i.FooterCenterTunnel,l=i.WelcomeScreenHelpHintTunnel,c=Tr(),s=!t.viewModeEnabled&&t.multiElement&&c.isTouchScreen;return(0,P.jsxs)("footer",{role:"contentinfo",className:"layer-ui__wrapper__footer App-menu App-menu_bottom",children:[(0,P.jsx)("div",{className:(0,x.Z)("layer-ui__wrapper__footer-left zen-mode-transition",{"layer-ui__wrapper__footer-left--transition-left":t.zenModeEnabled}),children:(0,P.jsx)(Ce.Z.Col,{gap:2,children:(0,P.jsxs)(jt,{heading:"canvasActions",children:[(0,P.jsx)(He,{renderAction:n.renderAction,zoom:t.zoom}),!t.viewModeEnabled&&(0,P.jsx)(Fe,{renderAction:n.renderAction,className:(0,x.Z)("zen-mode-transition",{"layer-ui__wrapper__footer-left--transition-bottom":t.zenModeEnabled})}),s&&(0,P.jsx)(Ue,{renderAction:n.renderAction,className:(0,x.Z)("zen-mode-transition",{"layer-ui__wrapper__footer-left--transition-left":t.zenModeEnabled})})]})})}),(0,P.jsx)(a.Out,{}),(0,P.jsx)("div",{className:(0,x.Z)("layer-ui__wrapper__footer-right zen-mode-transition",{"transition-right disable-pointerEvents":t.zenModeEnabled}),children:(0,P.jsxs)("div",{style:{position:"relative"},children:[o&&(0,P.jsx)(l.Out,{}),(0,P.jsx)(gn,{onClick:function(){return n.executeAction(k.actionShortcuts)}})]})}),(0,P.jsx)(We,{actionManager:n,showExitZenModeBtn:r})]})},bn=vn;vn.displayName="Footer";var yn=n(1034),xn=n(9487),wn=n(3607),kn=n(6756),En=n(6798),Sn=n(96),On=n(704),jn=n(3550),_n=n(1434),Cn={};Cn.styleTagTransform=we(),Cn.setAttributes=ve(),Cn.insert=me().bind(null,"head"),Cn.domAPI=pe(),Cn.insertStyleElement=ye();de()(_n.Z,Cn),_n.Z&&_n.Z.locals&&_n.Z.locals;var In=n(9144),Tn={};Tn.styleTagTransform=we(),Tn.setAttributes=ve(),Tn.insert=me().bind(null,"head"),Tn.domAPI=pe(),Tn.insertStyleElement=ye();de()(In.Z,Tn),In.Z&&In.Z.locals&&In.Z.locals;var Pn=["suggestedBindings","startBoundElement","cursorButton","scrollX","scrollY"],Mn=["canvas","appState"],Dn=["canvas","appState"];function An(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var Ln=function(e){var t=e.UIOptions;return(0,P.jsxs)(kn.Z,{__fallback:!0,children:[(0,P.jsx)(kn.Z.DefaultItems.LoadScene,{}),(0,P.jsx)(kn.Z.DefaultItems.SaveToActiveFile,{}),t.canvasActions.export&&(0,P.jsx)(kn.Z.DefaultItems.Export,{}),t.canvasActions.saveAsImage&&(0,P.jsx)(kn.Z.DefaultItems.SaveAsImage,{}),(0,P.jsx)(kn.Z.DefaultItems.Help,{}),(0,P.jsx)(kn.Z.DefaultItems.ClearCanvas,{}),(0,P.jsx)(kn.Z.Separator,{}),(0,P.jsx)(kn.Z.Group,{title:"Excalidraw links",children:(0,P.jsx)(kn.Z.DefaultItems.Socials,{})}),(0,P.jsx)(kn.Z.Separator,{}),(0,P.jsx)(kn.Z.DefaultItems.ToggleTheme,{}),(0,P.jsx)(kn.Z.DefaultItems.ChangeCanvasBackground,{})]})},Zn=function(e){var t,n,r=e.actionManager,i=e.appState,a=e.files,l=e.setAppState,c=e.elements,s=e.canvas,u=e.onLockToggle,d=e.onHandToolToggle,f=e.onPenModeToggle,h=e.showExitZenModeBtn,m=e.renderTopRightUI,g=e.renderCustomStats,v=e.UIOptions,b=e.onImageAction,y=e.onExportImage,w=e.renderWelcomeScreen,k=e.onHomeButtonClick,S=e.children,j=Tr(),_=(0,At.ZC)(),C=(0,wn.KO)(jn.$,xn.yE),M=(0,o.Z)(C,2),D=M[0],A=M[1],Z=function(){return v.canvasActions.export?(0,P.jsx)(hn,{elements:c,appState:i,files:a,actionManager:r,exportOpts:v.canvasActions.export,canvas:s,setAppState:l}):null},R=function(){return v.canvasActions.saveAsImage?(0,P.jsx)(ft,{elements:c,appState:i,files:a,actionManager:r,onExportImage:y,onCloseRequest:function(){return l({openDialog:null})}}):null},z=function(){return(0,P.jsx)(On.O,{__fallback:!0,onDock:function(e){(0,L.L)("sidebar","toggleDock (".concat(e?"dock":"undock",")"),"(".concat(j.isMobile?"mobile":"desktop",")"))}})},B=(0,wn.Dv)(yn.t6,xn.yE),H=(0,P.jsxs)(P.Fragment,{children:[S,(0,P.jsx)(Ln,{UIOptions:v}),(0,P.jsx)(On.O.Trigger,{__fallback:!0,icon:E.LibraryIcon,title:(0,I.Oo)((0,O.t)("toolBar.library")),onToggle:function(e){e&&(0,L.L)("sidebar","".concat(T.Cc.name," (open)"),"button (".concat(j.isMobile?"mobile":"desktop",")"))},tab:T.Cc.defaultTab,children:(0,O.t)("toolBar.library")}),i.isLoading&&(0,P.jsx)(xt.z,{delay:250}),i.errorMessage&&(0,P.jsx)(Ye,{onClose:function(){return l({errorMessage:null})},children:i.errorMessage}),D&&!j.isMobile&&(0,P.jsx)(jn.p,{swapPreviewOnAlt:D.swapPreviewOnAlt,previewType:D.previewType,onCancel:function(){A(null)},onSelect:function(e,t){var n;A((function(e){return null!=e&&e.keepOpenOnAlt&&t.altKey?e:null})),null==D||null===(n=D.onSelect)||void 0===n||n.call(D,e,t)}}),"help"===i.openDialog&&(0,P.jsx)(an,{onClose:function(){l({openDialog:null})}}),(0,P.jsx)(En.o,{}),R(),Z(),i.pasteDialog.shown&&(0,P.jsx)(Yt,{setAppState:l,appState:i,onClose:function(){return l({pasteDialog:{shown:!1,data:null}})}}),j.isMobile&&!D&&(0,P.jsx)(Nt,{onHomeButtonClick:k,appState:i,elements:c,actionManager:r,renderJSONExportDialog:Z,renderImageExportDialog:R,setAppState:l,onLockToggle:u,onHandToolToggle:d,onPenModeToggle:f,canvas:s,onImageAction:b,renderTopRightUI:m,renderCustomStats:g,renderSidebars:z,device:j,renderWelcomeScreen:w}),!j.isMobile&&(0,P.jsxs)(P.Fragment,{children:[(0,P.jsxs)("div",{className:(0,x.Z)("layer-ui__wrapper",{"disable-pointerEvents":i.draggingElement||i.resizingElement||i.editingElement&&!(0,U.iB)(i.editingElement)}),style:i.openSidebar&&B&&j.canDeviceFitSidebar?{width:"calc(100% - ".concat(T.EE,"px)")}:{},children:[w&&(0,P.jsx)(_.WelcomeScreenCenterTunnel.Out,{}),(n=(0,U.RT)(i,c),(0,P.jsx)(mt,{side:"top",children:(0,P.jsxs)("div",{className:"App-menu App-menu_top",children:[(0,P.jsxs)(Ce.Z.Col,{gap:6,className:(0,x.Z)("App-menu_top__left"),children:[(0,P.jsxs)("div",{style:{position:"relative"},children:[(0,P.jsx)(_.MainMenuTunnel.Out,{}),w&&(0,P.jsx)(_.WelcomeScreenMenuHintTunnel.Out,{})]}),n&&(0,P.jsx)(jt,{heading:"selectedShapeActions",className:(0,x.Z)("selected-shape-actions zen-mode-transition",{"transition-left":i.zenModeEnabled}),children:(0,P.jsx)(yt.W,{className:T.$C.SHAPE_ACTIONS_MENU,padding:2,style:{maxHeight:"".concat(i.height-166,"px")},children:(0,P.jsx)(Ne,{appState:i,elements:c,renderAction:r.renderAction})})})]}),!i.viewModeEnabled&&(0,P.jsx)(jt,{heading:"shapes",className:"shapes-section",children:function(e){return(0,P.jsxs)("div",{style:{position:"relative"},children:[w&&(0,P.jsx)(_.WelcomeScreenToolbarHintTunnel.Out,{}),(0,P.jsx)(Ce.Z.Col,{gap:4,align:"start",children:(0,P.jsx)(Ce.Z.Row,{gap:1,className:(0,x.Z)("App-toolbar-container",{"zen-mode":i.zenModeEnabled}),children:(0,P.jsxs)(yt.W,{padding:1,className:(0,x.Z)("App-toolbar",{"zen-mode":i.zenModeEnabled}),children:[(0,P.jsx)(bt,{appState:i,elements:c,isMobile:j.isMobile,device:j}),e,(0,P.jsxs)(Ce.Z.Row,{gap:1,children:[(0,P.jsx)(Ct,{zenModeEnabled:i.zenModeEnabled,checked:i.penMode,onChange:f,title:(0,O.t)("toolBar.penMode"),penDetected:i.penDetected}),(0,P.jsx)(kt,{checked:i.activeTool.locked,onChange:u,title:(0,O.t)("toolBar.lock")}),(0,P.jsx)("div",{className:"App-toolbar__divider"}),(0,P.jsx)(Dt,{checked:(0,N.l$)(i),onChange:function(){return d()},title:(0,O.t)("toolBar.hand"),isMobile:!0}),(0,P.jsx)(Be,{appState:i,canvas:s,activeTool:i.activeTool,setAppState:l,onImageAction:function(e){var t=e.pointerType;b({insertOnCanvasDirectly:"mouse"!==t})}})]})]})})})]})}}),(0,P.jsxs)("div",{className:(0,x.Z)("layer-ui__wrapper__top-right zen-mode-transition",{"transition-right":i.zenModeEnabled}),children:[(0,P.jsx)(ln.Z,{collaborators:i.collaborators}),null==m?void 0:m(j.isMobile,i),!i.viewModeEnabled&&(!B||(null===(t=i.openSidebar)||void 0===t?void 0:t.name)!==T.Cc.name)&&(0,P.jsx)(_.DefaultSidebarTriggerTunnel.Out,{})]})]})})),(0,P.jsx)(bn,{appState:i,actionManager:r,showExitZenModeBtn:h,renderWelcomeScreen:w}),i.showStats&&(0,P.jsx)(Mt,{appState:i,setAppState:l,elements:c,onClose:function(){r.executeAction(mn.u)},renderCustomStats:g}),i.scrolledOutside&&(0,P.jsx)("button",{className:"scroll-back-to-content",onClick:function(){l((function(e){return function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?An(Object(n),!0).forEach((function(t){(0,p.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):An(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},(0,ie.W)(c,e,s))}))},children:(0,O.t)("buttons.scrollBackToContent")})]}),z()]})]});return(0,P.jsx)(Sn.k.Provider,{value:i,children:(0,P.jsx)(wn.zt,{scope:_.jotaiScope,children:(0,P.jsx)(At.A3.Provider,{value:_,children:H})})})},Rn=function(e){e.suggestedBindings,e.startBoundElement,e.cursorButton,e.scrollX,e.scrollY;return(0,_e.Z)(e,Pn)},zn=function(e,t){if(e.children!==t.children)return!1;e.canvas;var n=e.appState,r=(0,_e.Z)(e,Mn),o=(t.canvas,t.appState),i=(0,_e.Z)(t,Dn);return(0,I.w8)(Rn(n),Rn(o),{selectedElementIds:I.w8,selectedGroupIds:I.w8})&&(0,I.w8)(r,i)},Nn=v().memo(Zn,zn),Bn=n(9650),Hn={};Hn.styleTagTransform=we(),Hn.setAttributes=ve(),Hn.insert=me().bind(null,"head"),Hn.domAPI=pe(),Hn.insertStyleElement=ye();de()(Bn.Z,Hn),Bn.Z&&Bn.Z.locals&&Bn.Z.locals;var Fn=function(e){var t=e.message,n=e.onClose,r=e.closable,o=void 0!==r&&r,i=e.duration,a=void 0===i?5e3:i,l=(0,g.useRef)(0),c=a!==1/0,s=(0,g.useCallback)((function(){c&&(l.current=window.setTimeout((function(){return n()}),a))}),[n,a,c]);(0,g.useEffect)((function(){if(c)return s(),function(){return clearTimeout(l.current)}}),[s,t,a,c]);var u=c?function(){return clearTimeout(null==l?void 0:l.current)}:void 0,d=c?s:void 0;return(0,P.jsxs)("div",{className:"Toast",onMouseEnter:u,onMouseLeave:d,children:[(0,P.jsx)("p",{className:"Toast__message",children:t}),o&&(0,P.jsx)(S.V,{icon:E.CloseIcon,"aria-label":"close",type:"icon",onClick:n,className:"close"})]})};function Wn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Un(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Wn(Object(n),!0).forEach((function(t){(0,p.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Wn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Kn=(0,z.z)({name:"viewMode",viewMode:!0,trackEvent:{category:"canvas",predicate:function(e){return!e.viewModeEnabled}},perform:function(e,t){return{appState:Un(Un({},t),{},{viewModeEnabled:!this.checked(t)}),commitToHistory:!1}},checked:function(e){return e.viewModeEnabled},predicate:function(e,t,n){return void 0===n.viewModeEnabled},contextItemLabel:"labels.viewMode",keyTest:function(e){return!e[j.tW.CTRL_OR_CMD]&&e.altKey&&e.code===j.aU.R}}),Yn=n(5637),Gn=n(200),Vn=n.n(Gn),Xn=n(2325),qn=n(4929),$n=n(267),Jn=n(3248);function Qn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var er=(0,c.Z)((function e(t){var n=this,r=t.scene,o=t.onSceneUpdated;(0,l.Z)(this,e),this.onFontsLoaded=function(t){if(t.every((function(t){var n="".concat(t.family,"-").concat(t.style,"-").concat(t.weight);return!!e.loadedFontFaces.has(n)||(e.loadedFontFaces.add(n),!1)})))return!1;var r=!1;n.scene.mapElements((function(e){return(0,U.iB)(e)&&!(0,G.Xh)(e)?((0,re.bI)(e),r=!0,(0,_.BE)(e,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Qn(Object(n),!0).forEach((function(t){(0,p.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Qn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},(0,U.JZ)(e)))):e})),r&&n.onSceneUpdated()},this.loadFontsForElements=function(){var e=(0,a.Z)(m().mark((function e(t){var r;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all((0,i.Z)(new Set(t.filter((function(e){return(0,U.iB)(e)})).map((function(e){return e.fontFamily})))).map((function(e){var t,n,r,o,i=(0,I.mO)({fontFamily:e,fontSize:16});if(null===(t=document.fonts)||void 0===t||null===(n=t.check)||void 0===n||!n.call(t,i))return null===(r=document.fonts)||void 0===r||null===(o=r.load)||void 0===o?void 0:o.call(r,i)})));case 2:r=e.sent,n.onFontsLoaded(r.flat().filter(Boolean));case 4:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),this.scene=r,this.onSceneUpdated=o}));er.loadedFontFaces=new Set;var tr=n(9040),nr=n(1868),rr=n(4688);function or(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ir(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?or(Object(n),!0).forEach((function(t){(0,p.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):or(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ar=function(e,t){var n=(0,ie.eD)((0,U.Lm)(e),t);return 1===n.length&&"frame"===n[0].type},lr=(0,z.z)({name:"selectAllElementsInFrame",trackEvent:{category:"canvas"},perform:function(e,t){var n=(0,ie.eD)((0,U.Lm)(e),t)[0];if(n&&"frame"===n.type){var r=(0,tr.wO)((0,U.Lm)(e),n.id).filter((function(e){return!("text"===e.type&&e.containerId)}));return{elements:e,appState:ir(ir({},t),{},{selectedElementIds:r.reduce((function(e,t){return e[t.id]=!0,e}),{})}),commitToHistory:!1}}return{elements:e,appState:t,commitToHistory:!1}},contextItemLabel:"labels.selectAllElementsInFrame",predicate:function(e,t){return ar(e,t)}}),cr=(0,z.z)({name:"removeAllElementsFromFrame",trackEvent:{category:"history"},perform:function(e,t){var n=(0,ie.eD)((0,U.Lm)(e),t)[0];return n&&"frame"===n.type?{elements:(0,tr.yZ)(e,n,t),appState:ir(ir({},t),{},{selectedElementIds:(0,p.Z)({},n.id,!0)}),commitToHistory:!0}:{elements:e,appState:t,commitToHistory:!1}},contextItemLabel:"labels.removeAllElementsFromFrame",predicate:function(e,t){return ar(e,t)}}),sr=((0,z.z)({name:"toggleFrameRendering",viewMode:!0,trackEvent:{category:"canvas"},perform:function(e,t){return{elements:e,appState:ir(ir({},t),{},{shouldRenderFrames:!t.shouldRenderFrames}),commitToHistory:!1}},contextItemLabel:"labels.toggleFrameRendering",checked:function(e){return e.shouldRenderFrames}}),(0,z.z)({name:"setFrameAsActiveTool",trackEvent:{category:"toolbar"},perform:function(e,t,n,r){var o=(0,I.Om)(t,{type:"frame"});return(0,I.Uk)(r.canvas,ir(ir({},t),{},{activeTool:o})),{elements:e,appState:ir(ir({},t),{},{activeTool:(0,I.Om)(t,{type:"frame"})}),commitToHistory:!1}},keyTest:function(e){return!e[j.tW.CTRL_OR_CMD]&&!e.shiftKey&&!e.altKey&&e.key.toLocaleLowerCase()===j.tW.F}}),n(2416)),ur=n(202),dr=n(2242),fr=function(){return(0,P.jsxs)("div",{"data-testid":"brave-measure-text-error",children:[(0,P.jsx)("p",{children:(0,P.jsx)(dr.Z,{i18nKey:"errors.brave_measure_text_error.line1",bold:function(e){return(0,P.jsx)("span",{style:{fontWeight:600},children:e})}})}),(0,P.jsx)("p",{children:(0,P.jsx)(dr.Z,{i18nKey:"errors.brave_measure_text_error.line2",bold:function(e){return(0,P.jsx)("span",{style:{fontWeight:600},children:e})}})}),(0,P.jsx)("p",{children:(0,P.jsx)(dr.Z,{i18nKey:"errors.brave_measure_text_error.line3",link:function(e){return(0,P.jsx)("a",{href:"http://docs.excalidraw.com/docs/@excalidraw/excalidraw/faq#turning-off-aggresive-block-fingerprinting-in-brave-browser",children:e})}})}),(0,P.jsx)("p",{children:(0,P.jsx)(dr.Z,{i18nKey:"errors.brave_measure_text_error.line4",issueLink:function(e){return(0,P.jsx)("a",{href:"https://github.com/excalidraw/excalidraw/issues/new",children:e})},discordLink:function(e){return(0,P.jsxs)("a",{href:"https://discord.gg/UexuTaE",children:[e,"."]})}})})]})},pr=function(){function e(t){var n;(0,l.Z)(this,e),this.subscribers=[],this.updateOnChangeOnly=null!==(n=null==t?void 0:t.updateOnChangeOnly)&&void 0!==n&&n,this.value=null==t?void 0:t.initialState}return(0,c.Z)(e,[{key:"on",value:function(){for(var e,t=this,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];var a=r.flat().filter((function(e){return"function"==typeof e}));return(e=this.subscribers).push.apply(e,(0,i.Z)(a)),function(){return t.off(a)}}},{key:"once",value:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=t.flat().filter((function(e){return"function"==typeof e})),o=this.on.apply(this,(0,i.Z)(r));return r.push((function(){return o()})),o}},{key:"off",value:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=t.flat();this.subscribers=this.subscribers.filter((function(e){return!r.includes(e)}))}},{key:"trigger",value:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return this.updateOnChangeOnly&&this.value===t?[]:(this.value=t,this.subscribers.map((function(e){return e.apply(void 0,t)})))}},{key:"destroy",value:function(){this.subscribers=[],this.value=void 0}}]),e}();function hr(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return mr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return mr(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function mr(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function gr(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=(0,f.Z)(e);if(t){var o=(0,f.Z)(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return(0,d.Z)(this,n)}}function vr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function br(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?vr(Object(n),!0).forEach((function(t){(0,p.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):vr(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var yr=v().createContext(null),xr=v().createContext(null),wr={isSmScreen:!1,isMobile:!1,isTouchScreen:!1,canDeviceFitSidebar:!1,isLandscape:!1},kr=v().createContext(wr);kr.displayName="DeviceContext";var Er=v().createContext({container:null,id:null});Er.displayName="ExcalidrawContainerContext";var Sr=v().createContext([]);Sr.displayName="ExcalidrawElementsContext";var Or=v().createContext(br(br({},(0,N.im)()),{},{width:0,height:0,offsetLeft:0,offsetTop:0}));Or.displayName="ExcalidrawAppStateContext";var jr=v().createContext((function(){console.warn("unitialized ExcalidrawSetAppStateContext context!")}));jr.displayName="ExcalidrawSetAppStateContext";var _r=v().createContext(null);_r.displayName="ExcalidrawActionManagerContext";var Cr=function(){return(0,g.useContext)(yr)},Ir=function(){return(0,g.useContext)(xr)},Tr=function(){return(0,g.useContext)(kr)},Pr=function(){return(0,g.useContext)(Er)},Mr=function(){return(0,g.useContext)(Sr)},Dr=function(){return(0,g.useContext)(Or)},Ar=function(){return(0,g.useContext)(jr)},Lr=function(){return(0,g.useContext)(_r)},Zr=!1,Rr=0,zr=!1,Nr=!1,Br=!1,Hr={horizontal:null,vertical:null},Fr=0,Wr=!1,Ur=!0,Kr=!1,Yr=0,Gr=!1,Vr=null,Xr={pointers:new Map,lastCenter:null,initialDistance:null,initialScale:null},qr=function(e){(0,u.Z)(d,e);var t,n,r=gr(d);function d(e){var t;(0,l.Z)(this,d),t=r.call(this,e),$r.call((0,s.Z)(t));var n,o=(0,N.im)(),i=e.excalidrawRef,a=e.viewModeEnabled,c=void 0!==a&&a,u=e.zenModeEnabled,f=void 0!==u&&u,p=e.gridModeEnabled,h=void 0!==p&&p,m=e.theme,g=void 0===m?o.theme:m,v=e.name,b=void 0===v?o.name:v;if(t.state=br(br(br({},o),{},{theme:g,isLoading:!0},t.getCanvasOffsets()),{},{viewModeEnabled:c,zenModeEnabled:f,gridSize:h?T.k:null,name:b,width:window.innerWidth,height:window.innerHeight,showHyperlinkPopup:!1,defaultSidebarDockedPreference:!1}),t.id=(0,w.x0)(),t.library=new F.ZP((0,s.Z)(t)),i){var y,x="current"in i&&(null===(y=i.current)||void 0===y?void 0:y.readyPromise)||(0,I.PI)(),k={ready:!0,readyPromise:x,updateScene:t.updateScene,updateLibrary:t.library.updateLibrary,addFiles:t.addFiles,resetScene:t.resetScene,getSceneElementsIncludingDeleted:t.getSceneElementsIncludingDeleted,history:{clear:t.resetHistory},scrollToContent:t.scrollToContent,getSceneElements:t.getSceneElements,getAppState:function(){return t.state},getFiles:function(){return t.files},refresh:t.refresh,setToast:t.setToast,id:t.id,setActiveTool:t.setActiveTool,setCursor:t.setCursor,resetCursor:t.resetCursor,toggleFrameRendering:t.toggleFrameRendering,toggleSidebar:t.toggleSidebar,app:(0,s.Z)(t),onChange:function(e){return t.onChangeEmitter.on(e)},onPointerDown:function(e){return t.onPointerDownEmitter.on(e)},onPointerUp:function(e){return t.onPointerUpEmitter.on(e)}};"function"==typeof i?i(k):i.current=k,x.resolve(k)}return t.excalidrawContainerValue={container:t.excalidrawContainerRef.current,id:t.id},t.scene=new ae.Z,t.fonts=new er({scene:t.scene,onSceneUpdated:t.onSceneUpdated}),t.history=new te,t.actionManager=new R(t.syncActionResult,(function(){return t.state}),(function(){return t.scene.getElementsIncludingDeleted()}),(0,s.Z)(t)),t.actionManager.registerAll(z.N),t.actionManager.registerAction((n=t.history,{name:"undo",trackEvent:{category:"history"},perform:function(e,t){return A(e,t,(function(){return n.undoOnce()}))},keyTest:function(e){return e[j.tW.CTRL_OR_CMD]&&e.key.toLowerCase()===j.tW.Z&&!e.shiftKey},PanelComponent:function(e){var t=e.updateData,n=e.data;return(0,P.jsx)(S.V,{type:"button",icon:E.UndoIcon,"aria-label":(0,O.t)("buttons.undo"),onClick:t,size:(null==n?void 0:n.size)||"medium"})},commitToHistory:function(){return!1}})),t.actionManager.registerAction(function(e){return{name:"redo",trackEvent:{category:"history"},perform:function(t,n){return A(t,n,(function(){return e.redoOnce()}))},keyTest:function(e){return e[j.tW.CTRL_OR_CMD]&&e.shiftKey&&e.key.toLowerCase()===j.tW.Z||T.ED&&e.ctrlKey&&!e.shiftKey&&e.key===j.tW.Y},PanelComponent:function(e){var t=e.updateData,n=e.data;return(0,P.jsx)(S.V,{type:"button",icon:E.RedoIcon,"aria-label":(0,O.t)("buttons.redo"),onClick:t,size:(null==n?void 0:n.size)||"medium"})},commitToHistory:function(){return!1}}}(t.history)),t}return(0,c.Z)(d,[{key:"renderCanvas",value:function(){var e=this,t=window.devicePixelRatio,n=this.state,r=n.width,o=n.height,i=r*t,a=o*t;return n.viewModeEnabled?(0,P.jsx)("canvas",{className:"excalidraw__canvas",style:{width:r,height:o,cursor:T.oc.GRAB},width:i,height:a,ref:this.handleCanvasRef,onContextMenu:function(t){return e.handleCanvasContextMenu(t)},onPointerMove:this.handleCanvasPointerMove,onPointerUp:this.handleCanvasPointerUp,onPointerCancel:this.removePointer,onTouchMove:this.handleTouchMove,onPointerDown:this.handleCanvasPointerDown,children:(0,O.t)("labels.drawingCanvas")}):(0,P.jsx)("canvas",{className:"excalidraw__canvas",style:{width:r,height:o},width:i,height:a,ref:this.handleCanvasRef,onContextMenu:function(t){return e.handleCanvasContextMenu(t)},onPointerDown:this.handleCanvasPointerDown,onDoubleClick:this.handleCanvasDoubleClick,onPointerMove:this.handleCanvasPointerMove,onPointerUp:this.handleCanvasPointerUp,onPointerCancel:this.removePointer,onTouchMove:this.handleTouchMove,children:(0,O.t)("labels.drawingCanvas")})}},{key:"render",value:function(){var e,t=this,n=(0,ie.eD)(this.scene.getNonDeletedElements(),this.state),r=this.props,o=r.renderTopRightUI,i=r.renderCustomStats;return(0,P.jsx)("div",{className:(0,x.Z)("excalidraw excalidraw-container",{"excalidraw--view-mode":this.state.viewModeEnabled,"excalidraw--zen-mode":this.state.zenModeEnabled,"excalidraw--mobile":this.device.isMobile}),ref:this.excalidrawContainerRef,onDrop:this.handleAppOnDrop,tabIndex:0,onKeyDown:this.props.handleKeyboardGlobally?void 0:this.onKeyDown,children:(0,P.jsx)(yr.Provider,{value:this,children:(0,P.jsx)(xr.Provider,{value:this.props,children:(0,P.jsx)(Er.Provider,{value:this.excalidrawContainerValue,children:(0,P.jsx)(kr.Provider,{value:this.device,children:(0,P.jsx)(jr.Provider,{value:this.setAppState,children:(0,P.jsx)(Or.Provider,{value:this.state,children:(0,P.jsx)(Sr.Provider,{value:this.scene.getNonDeletedElements(),children:(0,P.jsxs)(_r.Provider,{value:this.actionManager,children:[(0,P.jsx)(Nn,{onHomeButtonClick:this.props.onHomeButtonClick||function(){},canvas:this.canvas,appState:this.state,files:this.files,setAppState:this.setAppState,actionManager:this.actionManager,elements:this.scene.getNonDeletedElements(),onLockToggle:this.toggleLock,onPenModeToggle:this.togglePenMode,onHandToolToggle:this.onHandToolToggle,langCode:(0,O.G3)().code,renderCustomStats:i,showExitZenModeBtn:void 0===(null===(e=this.props)||void 0===e?void 0:e.zenModeEnabled)&&this.state.zenModeEnabled,UIOptions:this.props.UIOptions,onExportImage:this.onExportImage,onImageAction:this.onImageAction,renderWelcomeScreen:!this.state.isLoading&&this.state.showWelcomeScreen&&"selection"===this.state.activeTool.type&&!this.state.zenModeEnabled&&!this.scene.getElementsIncludingDeleted().length,renderTopRightUI:o,children:this.props.children}),(0,P.jsx)("div",{className:"excalidraw-textEditorContainer"}),(0,P.jsx)("div",{className:"excalidraw-contextMenuContainer"}),(0,P.jsx)("div",{className:"excalidraw-eye-dropper-container"}),1===n.length&&!this.state.contextMenu&&this.state.showHyperlinkPopup&&(0,P.jsx)(qn.nW,{element:n[0],setAppState:this.setAppState,onLinkOpen:this.props.onLinkOpen},n[0].id),null!==this.state.toast&&(0,P.jsx)(Fn,{message:this.state.toast.message,onClose:function(){return t.setToast(null)},duration:this.state.toast.duration,closable:this.state.toast.closable}),this.state.contextMenu&&(0,P.jsx)(je,{items:this.state.contextMenu.items,top:this.state.contextMenu.top,left:this.state.contextMenu.left,actionManager:this.actionManager}),(0,P.jsx)("main",{children:this.renderCanvas()}),this.renderFrameNames()]})})})})})})})})})}},{key:"componentDidMount",value:(n=(0,a.Z)(m().mark((function e(){var t,n,r,o,i,a,l=this;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:this.unmounted=!1,this.excalidrawContainerValue.container=this.excalidrawContainerRef.current,"production"!==T.Vi.TEST&&"production"!==T.Vi.DEVELOPMENT||(this.setState.bind(this),Object.defineProperties(window.h,{state:{configurable:!0,get:function(){return l.state}},setState:{configurable:!0,value:function(){return l.setState.apply(l,arguments)}},app:{configurable:!0,value:this},history:{configurable:!0,value:this.history}})),this.scene.addCallback(this.onSceneUpdated),this.addEventListeners(),this.props.autoFocus&&this.excalidrawContainerRef.current&&this.focusContainer(),this.excalidrawContainerRef.current&&this.refreshDeviceState(this.excalidrawContainerRef.current),"ResizeObserver"in window&&null!==(t=this.excalidrawContainerRef)&&void 0!==t&&t.current?(this.resizeObserver=new ResizeObserver((function(){Ur=!1,l.refreshDeviceState(l.excalidrawContainerRef.current),l.updateDOMRect()})),null===(n=this.resizeObserver)||void 0===n||n.observe(this.excalidrawContainerRef.current)):window.matchMedia&&(r=window.matchMedia("(max-width: ".concat(T.kV,"px), (max-height: ").concat(T.Yx,"px) and (max-width: ").concat(T.sS,"px)")),o=window.matchMedia("(max-width: ".concat(T.eF,"px)")),i=window.matchMedia("(min-width: ".concat(null!=this.props.UIOptions.dockedSidebarBreakpoint?this.props.UIOptions.dockedSidebarBreakpoint:T.sk,"px)")),a=function(){l.excalidrawContainerRef.current.getBoundingClientRect(),l.device=(0,I.v4)(l.device,{isSmScreen:o.matches,isMobile:r.matches,canDeviceFitSidebar:i.matches})},r.addListener(a),this.detachIsMobileMqHandler=function(){return r.removeListener(a)}),new URLSearchParams(window.location.search.slice(1)).has("web-share-target")?this.restoreFileFromShare():this.updateDOMRect(this.initializeScene),(0,T.jP)()&&!(0,Pe.eB)()&&this.setState({errorMessage:(0,P.jsx)(fr,{})});case 11:case"end":return e.stop()}}),e,this)}))),function(){return n.apply(this,arguments)})},{key:"componentWillUnmount",value:function(){var e,t=this;this.files={},this.imageCache.clear(),null===(e=this.resizeObserver)||void 0===e||e.disconnect(),this.unmounted=!0,this.removeEventListeners(),this.scene.destroy(),this.library.destroy(),(0,re.aL)(),this.onChangeEmitter.destroy(),this.scene=new ae.Z,this.history=new te,this.actionManager=new R(this.syncActionResult,(function(){return t.state}),(function(){return t.scene.getElementsIncludingDeleted()}),this),this.library=new F.ZP(this),this.canvas=null,this.rc=null,this.excalidrawContainerRef.current=void 0,this.nearestScrollableContainer=void 0,this.excalidrawContainerValue={container:null,id:"unmounted"},clearTimeout(Fr),Fr=0}},{key:"removeEventListeners",value:function(){var e,t,n,r,o,i,a;document.removeEventListener(T.Ks.POINTER_UP,this.removePointer),document.removeEventListener(T.Ks.COPY,this.onCopy),document.removeEventListener(T.Ks.PASTE,this.pasteFromClipboard),document.removeEventListener(T.Ks.CUT,this.onCut),null===(e=this.excalidrawContainerRef.current)||void 0===e||e.removeEventListener(T.Ks.WHEEL,this.onWheel),null===(t=this.nearestScrollableContainer)||void 0===t||t.removeEventListener(T.Ks.SCROLL,this.onScroll),document.removeEventListener(T.Ks.KEYDOWN,this.onKeyDown,!1),document.removeEventListener(T.Ks.MOUSE_MOVE,this.updateCurrentCursorPosition,!1),document.removeEventListener(T.Ks.KEYUP,this.onKeyUp),window.removeEventListener(T.Ks.RESIZE,this.onResize,!1),window.removeEventListener(T.Ks.UNLOAD,this.onUnload,!1),window.removeEventListener(T.Ks.BLUR,this.onBlur,!1),null===(n=this.excalidrawContainerRef.current)||void 0===n||n.removeEventListener(T.Ks.DRAG_OVER,this.disableEvent,!1),null===(r=this.excalidrawContainerRef.current)||void 0===r||r.removeEventListener(T.Ks.DROP,this.disableEvent,!1),null===(o=document.fonts)||void 0===o||null===(i=o.removeEventListener)||void 0===i||i.call(o,"loadingdone",this.onFontsLoadingDone),document.removeEventListener(T.Ks.GESTURE_START,this.onGestureStart,!1),document.removeEventListener(T.Ks.GESTURE_CHANGE,this.onGestureChange,!1),document.removeEventListener(T.Ks.GESTURE_END,this.onGestureEnd,!1),null===(a=this.detachIsMobileMqHandler)||void 0===a||a.call(this)}},{key:"addEventListeners",value:function(){var e,t,n,r,o;this.removeEventListeners(),document.addEventListener(T.Ks.POINTER_UP,this.removePointer),document.addEventListener(T.Ks.COPY,this.onCopy),null===(e=this.excalidrawContainerRef.current)||void 0===e||e.addEventListener(T.Ks.WHEEL,this.onWheel,{passive:!1}),this.props.handleKeyboardGlobally&&document.addEventListener(T.Ks.KEYDOWN,this.onKeyDown,!1),document.addEventListener(T.Ks.KEYUP,this.onKeyUp,{passive:!0}),document.addEventListener(T.Ks.MOUSE_MOVE,this.updateCurrentCursorPosition),null===(t=document.fonts)||void 0===t||null===(n=t.addEventListener)||void 0===n||n.call(t,"loadingdone",this.onFontsLoadingDone),document.addEventListener(T.Ks.GESTURE_START,this.onGestureStart,!1),document.addEventListener(T.Ks.GESTURE_CHANGE,this.onGestureChange,!1),document.addEventListener(T.Ks.GESTURE_END,this.onGestureEnd,!1),this.state.viewModeEnabled||(document.addEventListener(T.Ks.PASTE,this.pasteFromClipboard),document.addEventListener(T.Ks.CUT,this.onCut),this.props.detectScroll&&(this.nearestScrollableContainer=(0,I.Ip)(this.excalidrawContainerRef.current),this.nearestScrollableContainer.addEventListener(T.Ks.SCROLL,this.onScroll)),window.addEventListener(T.Ks.RESIZE,this.onResize,!1),window.addEventListener(T.Ks.UNLOAD,this.onUnload,!1),window.addEventListener(T.Ks.BLUR,this.onBlur,!1),null===(r=this.excalidrawContainerRef.current)||void 0===r||r.addEventListener(T.Ks.DRAG_OVER,this.disableEvent,!1),null===(o=this.excalidrawContainerRef.current)||void 0===o||o.addEventListener(T.Ks.DROP,this.disableEvent,!1))}},{key:"componentDidUpdate",value:function(e,t){var n,r,o,i,a=this;(this.state.showWelcomeScreen||this.scene.getElementsIncludingDeleted().length||this.setState({showWelcomeScreen:!0}),this.excalidrawContainerRef.current&&e.UIOptions.dockedSidebarBreakpoint!==this.props.UIOptions.dockedSidebarBreakpoint&&this.refreshDeviceState(this.excalidrawContainerRef.current),t.scrollX!==this.state.scrollX||t.scrollY!==this.state.scrollY)&&(null===(o=this.props)||void 0===o||null===(i=o.onScrollChange)||void 0===i||i.call(o,this.state.scrollX,this.state.scrollY));Object.keys(this.state.selectedElementIds).length&&(0,N.EN)(this.state)&&this.setState({activeTool:(0,I.Om)(this.state,{type:"selection"})}),"eraser"===this.state.activeTool.type&&t.theme!==this.state.theme&&(0,I.OF)(this.canvas,this.state.theme),"selection"===t.activeTool.type&&"selection"!==this.state.activeTool.type&&this.state.showHyperlinkPopup&&this.setState({showHyperlinkPopup:!1}),e.langCode!==this.props.langCode&&this.updateLanguage(),e.viewModeEnabled!==this.props.viewModeEnabled&&this.setState({viewModeEnabled:!!this.props.viewModeEnabled}),t.viewModeEnabled!==this.state.viewModeEnabled&&(this.addEventListeners(),this.deselectElements()),e.zenModeEnabled!==this.props.zenModeEnabled&&this.setState({zenModeEnabled:!!this.props.zenModeEnabled}),e.theme!==this.props.theme&&this.props.theme&&this.setState({theme:this.props.theme}),e.gridModeEnabled!==this.props.gridModeEnabled&&this.setState({gridSize:this.props.gridModeEnabled?T.k:null}),this.props.UIOptions.canvasActions||"canvas"!==this.state.openMenu||this.setState({openMenu:null}),this.props.name&&e.name!==this.props.name&&this.setState({name:this.props.name}),null===(n=this.excalidrawContainerRef.current)||void 0===n||n.classList.toggle("theme--dark","dark"===this.state.theme),this.state.editingLinearElement&&!this.state.selectedElementIds[this.state.editingLinearElement.elementId]&&setTimeout((function(){a.state.editingLinearElement&&a.actionManager.executeAction(k.actionFinalize)})),null!==(r=this.state.editingElement)&&void 0!==r&&r.isDeleted&&this.setState({editingElement:null}),this.state.selectedLinearElement&&!this.state.selectedElementIds[this.state.selectedLinearElement.elementId]&&this.setState({selectedLinearElement:null});var l,c,s=t.multiElement;(t.activeTool!==this.state.activeTool&&null!=s&&(0,C.N1)(this.state)&&(0,G.Mn)(s,!1)&&(0,C.R)(s,this.state,this.scene,(0,I.AK)(K._.getPointAtIndexGlobalCoordinates(s,-1))),this.renderScene(),this.history.record(this.state,this.scene.getElementsIncludingDeleted()),this.state.isLoading)||(null===(l=(c=this.props).onChange)||void 0===l||l.call(c,this.scene.getElementsIncludingDeleted(),this.state,this.files,this.props.id),this.onChangeEmitter.trigger(this.scene.getElementsIncludingDeleted(),this.state,this.files))}},{key:"addTextFromPaste",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=(0,I.dE)({clientX:this.lastViewportPosition.x,clientY:this.lastViewportPosition.y},this.state),o=r.x,a=r.y,l={x:o,y:a,strokeColor:this.state.currentItemStrokeColor,backgroundColor:this.state.currentItemBackgroundColor,fillStyle:this.state.currentItemFillStyle,strokeWidth:this.state.currentItemStrokeWidth,strokeStyle:this.state.currentItemStrokeStyle,roundness:null,roughness:this.state.currentItemRoughness,opacity:this.state.currentItemOpacity,text:e,fontSize:this.state.currentItemFontSize,fontFamily:this.state.currentItemFontFamily,textAlign:this.state.currentItemTextAlign,verticalAlign:T.hs,locked:!1},c=10,s=a,u=n?[e]:e.split("\n"),d=u.reduce((function(e,n,r){var i=n.trim(),a=(0,Pe.PT)(l.fontFamily);if(i.length){var d=t.getTopLayerFrameAtSceneCoords({x:o,y:s}),f=(0,U.VL)(br(br({},l),{},{x:o,y:s,text:i,lineHeight:a,frameId:d?d.id:null}));e.push(f),s+=f.height+c}else{var p;(null===(p=u[r-1])||void 0===p?void 0:p.trim())&&(s+=(0,Pe.Rg)(l.fontSize,a)+c)}return e}),[]);if(0!==d.length){var f=d[0].frameId;f?this.scene.insertElementsAtIndex(d,this.scene.getElementIndex(f)):this.scene.replaceAllElements([].concat((0,i.Z)(this.scene.getElementsIncludingDeleted()),(0,i.Z)(d))),this.setState({selectedElementIds:Object.fromEntries(d.map((function(e){return[e.id,!0]})))}),!n&&d.length>1&&!1===Gr&&!this.device.isMobile&&(this.setToast({message:(0,O.t)("toast.pasteAsSingleElement",{shortcut:(0,I.uY)("CtrlOrCmd+Shift+V")}),duration:5e3}),Gr=!0),this.history.resumeRecording()}}},{key:"handleTextWysiwyg",value:function(e,t){var n=this,r=t.isExistingElement,o=void 0!==r&&r,a=function(t,r,o){n.scene.replaceAllElements((0,i.Z)(n.scene.getElementsIncludingDeleted().map((function(n){return n.id===e.id&&(0,U.iB)(n)?(0,U.N_)(n,{text:t,isDeleted:o,originalText:r}):n}))))};(0,U.b_)({id:e.id,canvas:this.canvas,getViewportCoords:function(e,t){var r=(0,I._i)({sceneX:e,sceneY:t},n.state),o=r.x,i=r.y;return[o-n.state.offsetLeft,i-n.state.offsetTop]},onChange:(0,I.tH)((function(t){a(t,t,!1),(0,U.qP)(e)&&(0,C.Ww)(e)})),onSubmit:(0,I.tH)((function(t){var r=t.text,i=t.viaKeyboard,l=t.originalText,c=!r.trim();if(a(r,l,c),!c&&i){var s=e.containerId?e.containerId:e.id;n.setState((function(e){return{selectedElementIds:br(br({},e.selectedElementIds),{},(0,p.Z)({},s,!0))}}))}c&&(0,C.$q)(n.scene.getNonDeletedElements(),[e]),c&&!o||n.history.resumeRecording(),n.setState({draggingElement:null,editingElement:null}),n.state.activeTool.locked&&(0,I.Uk)(n.canvas,n.state),n.focusContainer()})),element:e,excalidrawContainer:this.excalidrawContainerRef.current,app:this}),this.deselectElements(),a(e.text,e.originalText,!1)}},{key:"deselectElements",value:function(){this.setState({selectedElementIds:{},selectedGroupIds:{},editingGroupId:null})}},{key:"getTextElementAtPosition",value:function(e,t){var n=this.getElementAtPosition(e,t,{includeBoundTextElement:!0});return n&&(0,U.iB)(n)&&!n.isDeleted?n:null}},{key:"getElementAtPosition",value:function(e,t,n){var r=this.getElementsAtPosition(e,t,null==n?void 0:n.includeBoundTextElement,null==n?void 0:n.includeLockedElements);if(r.length>1){if(null!=n&&n.preferSelected)for(var o=r.length-1;o>-1;o--)if(this.state.selectedElementIds[r[o].id])return r[o];var i=r[r.length-1];return(0,U.wB)(i,this.state,this.frameNameBoundsCache,e,t)?r[r.length-2]:i}return 1===r.length?r[0]:null}},{key:"getElementsAtPosition",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],o=arguments.length>3&&void 0!==arguments[3]&&arguments[3],i=r&&o?this.scene.getNonDeletedElements():this.scene.getNonDeletedElements().filter((function(e){return(o||!e.locked)&&(r||!((0,U.iB)(e)&&e.containerId))}));return(0,ie.CJ)(i,(function(r){return(0,U.wX)(r,n.state,n.frameNameBoundsCache,e,t)})).filter((function(r){var o=(0,tr.$Z)(r);return!o||!n.state.shouldRenderFrames||(0,tr.Dn)({x:e,y:t},o)}))}},{key:"handleHoverSelectedLinearElement",value:function(e,t,n){var r=K._.getElement(e.elementId),o=(0,Pe.WJ)(r);if(r)if(this.state.selectedLinearElement){var i=-1,a=null;(0,Xn.Qu)(r,this.state,this.frameNameBoundsCache,[t,n])?(i=K._.getPointIndexUnderCursor(r,this.state.zoom,t,n),a=K._.getSegmentMidpointHitCoords(e,{x:t,y:n},this.state),i>=0||a?(0,I.KJ)(this.canvas,T.oc.POINTER):(0,I.KJ)(this.canvas,T.oc.MOVE)):((0,$n.oY)([r],this.state)&&(0,U.wB)(r,this.state,this.frameNameBoundsCache,t,n)||o&&(0,U.wX)(o,this.state,this.frameNameBoundsCache,t,n))&&(0,I.KJ)(this.canvas,T.oc.MOVE),this.state.selectedLinearElement.hoverPointIndex!==i&&this.setState({selectedLinearElement:br(br({},this.state.selectedLinearElement),{},{hoverPointIndex:i})}),K._.arePointsEqual(this.state.selectedLinearElement.segmentMidPointHoveredCoords,a)||this.setState({selectedLinearElement:br(br({},this.state.selectedLinearElement),{},{segmentMidPointHoveredCoords:a})})}else(0,I.KJ)(this.canvas,T.oc.AUTO)}},{key:"maybeCleanupAfterMissingPointerUp",value:function(e){null!==Vr&&Vr(e)}},{key:"updateGestureOnPointerDown",value:function(e){Xr.pointers.set(e.pointerId,{x:e.clientX,y:e.clientY}),2===Xr.pointers.size&&(Xr.lastCenter=V(Xr.pointers),Xr.initialScale=this.state.zoom.value,Xr.initialDistance=X(Array.from(Xr.pointers.values())))}},{key:"initialPointerDownState",value:function(e){var t=(0,I.dE)(e,this.state),n=(0,ie.eD)(this.scene.getNonDeletedElements(),this.state),r=(0,U.KP)(n),i=(0,o.Z)(r,4),a=i[0],l=i[1],c=i[2],s=i[3];return{origin:t,withCmdOrCtrl:e[j.tW.CTRL_OR_CMD],originInGrid:(0,I.AK)((0,ne.wC)(t.x,t.y,this.state.gridSize)),scrollbars:(0,ie._4)(Hr,e.clientX-this.state.offsetLeft,e.clientY-this.state.offsetTop),lastCoords:br({},t),originalElements:this.scene.getNonDeletedElements().reduce((function(e,t){return e.set(t.id,(0,Y.OL)(t)),e}),new Map),resize:{handleType:!1,isResizing:!1,offset:{x:0,y:0},arrowDirection:"origin",center:{x:(c+a)/2,y:(s+l)/2}},hit:{element:null,allHitElements:[],wasAddedToSelection:!1,hasBeenDuplicated:!1,hasHitCommonBoundingBoxOfSelectedElements:this.isHittingCommonBoundingBoxOfSelectedElements(t,n)},drag:{hasOccurred:!1,offset:null},eventListeners:{onMove:null,onUp:null,onKeyUp:null,onKeyDown:null},boxSelection:{hasOccurred:!1},elementIdsToErase:{}}}},{key:"handleDraggingScrollBar",value:function(e,t){var n=this;if(!t.scrollbars.isOverEither||this.state.multiElement)return!1;Br=!0,t.lastCoords.x=e.clientX,t.lastCoords.y=e.clientY;var r=(0,I.$9)((function(e){e.target instanceof HTMLElement&&n.handlePointerMoveOverScrollbars(e,t)})),o=(0,I.tH)((function(){Br=!1,(0,I.Uk)(n.canvas,n.state),Vr=null,n.setState({cursorButton:"up"}),n.savePointer(e.clientX,e.clientY,"up"),window.removeEventListener(T.Ks.POINTER_MOVE,r),window.removeEventListener(T.Ks.POINTER_UP,o),r.flush()}));return Vr=o,window.addEventListener(T.Ks.POINTER_MOVE,r),window.addEventListener(T.Ks.POINTER_UP,o),!0}},{key:"isASelectedElement",value:function(e){return null!=e&&this.state.selectedElementIds[e.id]}},{key:"isHittingCommonBoundingBoxOfSelectedElements",value:function(e,t){if(t.length<2)return!1;var n=10/this.state.zoom.value,r=(0,U.KP)(t),i=(0,o.Z)(r,4),a=i[0],l=i[1],c=i[2],s=i[3];return e.x>a-n&&e.x<c+n&&e.y>l-n&&e.y<s+n}},{key:"onKeyDownFromPointerDownHandler",value:function(e){var t=this;return(0,I.tH)((function(n){t.maybeHandleResize(e,n)||t.maybeDragNewGenericElement(e,n)}))}},{key:"onKeyUpFromPointerDownHandler",value:function(e){var t=this;return(0,I.tH)((function(n){n.key===j.tW.ALT&&n.preventDefault(),t.maybeHandleResize(e,n)||t.maybeDragNewGenericElement(e,n)}))}},{key:"onPointerMoveFromPointerDownHandler",value:function(e){var t=this;return(0,I.$9)((function(n){var r;if(null===e.drag.offset&&(e.drag.offset=(0,I.AK)((0,U.$V)((0,ie.eD)(t.scene.getNonDeletedElements(),t.state),e.origin.x,e.origin.y))),n.target instanceof HTMLElement&&!t.handlePointerMoveOverScrollbars(n,e)){var a=(0,I.dE)(n,t.state);if((0,N.EN)(t.state))t.handleEraser(n,e,a);else{var l=(0,ne.wC)(a.x,a.y,t.state.gridSize),c=(0,o.Z)(l,2),s=c[0],u=c[1];if(e.drag.hasOccurred||"arrow"!==t.state.activeTool.type&&"line"!==t.state.activeTool.type||!((0,ne.LW)(a.x,a.y,e.origin.x,e.origin.y)<T.f)){if(e.resize.isResizing&&(e.lastCoords.x=a.x,e.lastCoords.y=a.y,t.maybeHandleResize(e,n)))return!0;if(t.state.selectedLinearElement){var d=t.state.editingLinearElement||t.state.selectedLinearElement;if(K._.shouldAddMidpoint(t.state.selectedLinearElement,a,t.state)){var f=K._.addMidpoint(t.state.selectedLinearElement,a,t.state);if(!f)return;return void(0,b.flushSync)((function(){t.state.selectedLinearElement&&t.setState({selectedLinearElement:br(br({},t.state.selectedLinearElement),{},{pointerDownState:f.pointerDownState,selectedPointsIndices:f.selectedPointsIndices})}),t.state.editingLinearElement&&t.setState({editingLinearElement:br(br({},t.state.editingLinearElement),{},{pointerDownState:f.pointerDownState,selectedPointsIndices:f.selectedPointsIndices})})}))}if(null!==d.pointerDownState.segmentMidpoint.value&&!d.pointerDownState.segmentMidpoint.added)return;var h=K._.handlePointDragging(n,t.state,a.x,a.y,(function(e,n){t.maybeSuggestBindingsForLinearElementAtCoords(e,n)}),d);if(h)return e.lastCoords.x=a.x,e.lastCoords.y=a.y,e.drag.hasOccurred=!0,t.state.editingLinearElement&&!t.state.editingLinearElement.isDragging&&t.setState({editingLinearElement:br(br({},t.state.editingLinearElement),{},{isDragging:!0})}),void(t.state.selectedLinearElement.isDragging||t.setState({selectedLinearElement:br(br({},t.state.selectedLinearElement),{},{isDragging:!0})}))}var m=e.hit.allHitElements.some((function(e){return t.isASelectedElement(e)})),g=t.state.editingLinearElement&&n.shiftKey&&t.state.editingLinearElement.elementId===(null===(r=e.hit.element)||void 0===r?void 0:r.id);if((m||e.hit.hasHitCommonBoundingBoxOfSelectedElements)&&!g){var v=(0,ie.eD)(t.scene.getNonDeletedElements(),t.state);if(v.every((function(e){return e.locked})))return;var y=v.find((function(e){return(0,G.He)(e)})),x=t.getTopLayerFrameAtSceneCoords(a);if(t.setState({frameToHighlight:x&&!y?x:null}),e.drag.hasOccurred=!0,t.setState({selectedElementsAreBeingDragged:!0}),v.length>0&&!e.withCmdOrCtrl&&!t.state.editingElement){var w=(0,ne.wC)(a.x-e.drag.offset.x,a.y-e.drag.offset.y,t.state.gridSize),k=(0,o.Z)(w,2),E=k[0],S=k[1],O=[Math.abs(a.x-e.origin.x),Math.abs(a.y-e.origin.y)],P=O[0],M=O[1],D=n.shiftKey;if(!t.state.editingFrame&&(0,U.o8)(e,v,E,S,D,P,M,t.state,t.scene),t.maybeSuggestBindingForAll(v),n.altKey&&!e.hit.hasBeenDuplicated){e.hit.hasBeenDuplicated=!0;var A,L=[],Z=[],R=new Map,z=new Map,B=e.hit.element,H=t.scene.getElementsIncludingDeleted(),F=(0,ie.eD)(H,t.state,{includeBoundTextElement:!0,includeElementsInFrames:!0}).map((function(e){return e.id})),W=hr(H);try{for(W.s();!(A=W.n()).done;){var Y=A.value;if(F.includes(Y.id)||Y.id===(null==B?void 0:B.id)&&e.hit.wasAddedToSelection){var V=(0,U.Sy)(t.state.editingGroupId,R,Y),X=(0,ne.wC)(e.origin.x-e.drag.offset.x,e.origin.y-e.drag.offset.y,t.state.gridSize),q=(0,o.Z)(X,2),J=q[0],Q=q[1];(0,_.DR)(V,{x:V.x+(J-E),y:V.y+(Q-S)}),L.push(V),Z.push(Y),z.set(Y.id,V.id)}else L.push(Y)}}catch(e){W.e(e)}finally{W.f()}var ee=[].concat(L,Z);(0,Pe.P7)(L,Z,z),(0,C.ek)(ee,Z,z,"duplicatesServeAsOld"),(0,tr.xr)(ee,Z,z),t.scene.replaceAllElements(ee)}return}}var te=t.state.draggingElement;if(te){if("freedraw"===te.type){var re=te.points,oe=a.x-te.x,ae=a.y-te.y,le=re.length>0&&re[re.length-1];if(!(le&&le[0]===oe&&le[1]===ae)){var ce=te.simulatePressure?te.pressures:[].concat((0,i.Z)(te.pressures),[n.pressure]);(0,_.DR)(te,{points:[].concat((0,i.Z)(re),[[oe,ae]]),pressures:ce})}}else if((0,G.bt)(te)){e.drag.hasOccurred=!0,t.setState({selectedElementsAreBeingDragged:!0});var se=te.points,ue=s-te.x,de=u-te.y;if((0,j.Ge)(n)&&2===se.length){var fe=(0,U.o4)(te.x,te.y,a.x,a.y);ue=fe.width,de=fe.height}1===se.length?(0,_.DR)(te,{points:[].concat((0,i.Z)(se),[[ue,de]])}):2===se.length&&(0,_.DR)(te,{points:[].concat((0,i.Z)(se.slice(0,-1)),[[ue,de]])}),(0,G.Mn)(te,!1)&&t.maybeSuggestBindingsForLinearElementAtCoords(te,[a],t.state.startBoundElement)}else e.lastCoords.x=a.x,e.lastCoords.y=a.y,t.maybeDragNewGenericElement(e,n);if("selection"===t.state.activeTool.type){e.boxSelection.hasOccurred=!0;var pe=t.scene.getNonDeletedElements();if(n.shiftKey||t.state.editingLinearElement||!(0,ie.N)(pe,t.state)||(e.withCmdOrCtrl&&e.hit.element?t.setState((function(n){return(0,$.bO)(br(br({},n),{},{selectedElementIds:(0,p.Z)({},e.hit.element.id,!0)}),t.scene.getNonDeletedElements())})):t.setState({selectedElementIds:{},selectedGroupIds:{},editingGroupId:null})),t.state.editingLinearElement)K._.handleBoxSelection(n,t.state,t.setState.bind(t));else{var he=(0,ie.Yp)(pe,te);t.setState((function(n){return(0,$.bO)(br(br({},n),{},{selectedElementIds:br(br(br({},n.selectedElementIds),he.reduce((function(e,t){return e[t.id]=!0,e}),{})),e.hit.element?(0,p.Z)({},e.hit.element.id,!he.length):null),showHyperlinkPopup:!(1!==he.length||!he[0].link)&&"info",selectedLinearElement:1===he.length&&(0,G.bt)(he[0])?new K._(he[0],t.scene):null}),t.scene.getNonDeletedElements())}))}}}}}}}))}},{key:"handlePointerMoveOverScrollbars",value:function(e,t){if(t.scrollbars.isOverHorizontal){var n=e.clientX,r=n-t.lastCoords.x;return this.translateCanvas({scrollX:this.state.scrollX-r/this.state.zoom.value}),t.lastCoords.x=n,!0}if(t.scrollbars.isOverVertical){var o=e.clientY,i=o-t.lastCoords.y;return this.translateCanvas({scrollY:this.state.scrollY-i/this.state.zoom.value}),t.lastCoords.y=o,!0}return!1}},{key:"onPointerUpFromPointerDownHandler",value:function(e){var t=this;return(0,I.tH)((function(n){var r;e.eventListeners.onMove&&e.eventListeners.onMove.flush();var o,a,l=t.state,c=l.draggingElement,s=l.resizingElement,u=l.multiElement,d=l.activeTool,f=l.isResizing,h=l.isRotating;if(t.setState({isResizing:!1,isRotating:!1,resizingElement:null,selectionElement:null,frameToHighlight:null,elementsToHighlight:null,cursorButton:"up",editingElement:u||(0,U.iB)(t.state.editingElement)?t.state.editingElement:null}),t.savePointer(n.clientX,n.clientY,"up"),t.onPointerUpEmitter.trigger(t.state.activeTool,e,n),t.setState({selectedElementsAreBeingDragged:!1}),t.state.editingLinearElement)if(e.boxSelection.hasOccurred||(null===(o=e.hit)||void 0===o||null===(a=o.element)||void 0===a?void 0:a.id)===t.state.editingLinearElement.elementId){var m=K._.handlePointerUp(n,t.state.editingLinearElement,t.state);m!==t.state.editingLinearElement&&t.setState({editingLinearElement:m,suggestedBindings:[]})}else t.actionManager.executeAction(k.actionFinalize);else if(t.state.selectedLinearElement){var g,v;if((null===(g=e.hit)||void 0===g||null===(v=g.element)||void 0===v?void 0:v.id)!==t.state.selectedLinearElement.elementId){(0,ie.eD)(t.scene.getNonDeletedElements(),t.state).length>1&&t.setState({selectedLinearElement:null})}else{var b=K._.handlePointerUp(n,t.state.selectedLinearElement,t.state),y=b.startBindingElement,x=b.endBindingElement,w=t.scene.getElement(b.elementId);(0,G.Mn)(w)&&(0,C.HG)(w,y,x),b!==t.state.selectedLinearElement&&t.setState({selectedLinearElement:br(br({},b),{},{selectedPointsIndices:null}),suggestedBindings:[]})}}if(Vr=null,window.removeEventListener(T.Ks.POINTER_MOVE,e.eventListeners.onMove),window.removeEventListener(T.Ks.POINTER_UP,e.eventListeners.onUp),window.removeEventListener(T.Ks.KEYDOWN,e.eventListeners.onKeyDown),window.removeEventListener(T.Ks.KEYUP,e.eventListeners.onKeyUp),t.state.pendingImageElementId&&t.setState({pendingImageElementId:null}),"freedraw"===(null==c?void 0:c.type)){var E=(0,I.dE)(n,t.state),S=c.points,O=E.x-c.x,j=E.y-c.y;O===S[0][0]&&j===S[0][1]&&(j+=1e-4,O+=1e-4);var P=c.simulatePressure?[]:[].concat((0,i.Z)(c.pressures),[n.pressure]);return(0,_.DR)(c,{points:[].concat((0,i.Z)(S),[[O,j]]),pressures:P,lastCommittedPoint:[O,j]}),void t.actionManager.executeAction(k.actionFinalize)}if((0,G.pC)(c)){var M=c;try{t.initializeImageDimensions(M),t.setState({selectedElementIds:(0,p.Z)({},M.id,!0)},(function(){t.actionManager.executeAction(k.actionFinalize)}))}catch(e){console.error(e),t.scene.replaceAllElements(t.scene.getElementsIncludingDeleted().filter((function(e){return e.id!==M.id}))),t.actionManager.executeAction(k.actionFinalize)}}else if((0,G.bt)(c)){c.points.length>1&&t.history.resumeRecording();var D=(0,I.dE)(n,t.state);e.drag.hasOccurred||!c||u?e.drag.hasOccurred&&!u&&((0,C.N1)(t.state)&&(0,G.Mn)(c,!1)&&(0,C.R)(c,t.state,t.scene,D),t.setState({suggestedBindings:[],startBoundElement:null}),d.locked?t.setState((function(e){return{draggingElement:null}})):((0,I.z8)(t.canvas),t.setState((function(e){return{draggingElement:null,activeTool:(0,I.Om)(t.state,{type:"selection"}),selectedElementIds:br(br({},e.selectedElementIds),{},(0,p.Z)({},c.id,!0)),selectedLinearElement:new K._(c,t.scene)}})))):((0,_.DR)(c,{points:[].concat((0,i.Z)(c.points),[[D.x-c.x,D.y-c.y]])}),t.setState({multiElement:c,editingElement:t.state.draggingElement}))}else{if("selection"!==d.type&&c&&(0,U.QD)(c))return t.scene.replaceAllElements(t.scene.getElementsIncludingDeleted().slice(0,-1)),void t.setState({draggingElement:null});if(c){if(e.drag.hasOccurred){var A=(0,I.dE)(n,t.state);if(t.state.selectedLinearElement&&t.state.selectedLinearElement.isDragging){var L=t.scene.getElement(t.state.selectedLinearElement.elementId);if(null!=L&&L.frameId){var Z=(0,tr.$Z)(L);Z&&L&&((0,tr.cO)(L,Z)||((0,_.DR)(L,{groupIds:[]}),t.scene.replaceAllElements((0,tr.lz)(t.scene.getElementsIncludingDeleted(),[L],t.state))))}}else{var R=t.getTopLayerFrameAtSceneCoords(A),z=(0,ie.eD)(t.scene.getNonDeletedElements(),t.state),B=t.scene.getElementsIncludingDeleted(),H=function(e){if(e.length>0){var n,r=hr(e);try{for(r.s();!(n=r.n()).done;){var o=n.value,i=o.groupIds.indexOf(t.state.editingGroupId);(0,_.DR)(o,{groupIds:o.groupIds.slice(0,i)},!1)}}catch(e){r.e(e)}finally{r.f()}B.forEach((function(e){e.groupIds.length&&(0,$.Fb)(B,e.groupIds[e.groupIds.length-1]).length<2&&(0,_.DR)(e,{groupIds:[]},!1)})),t.setState({editingGroupId:null})}};if(R&&!t.state.selectedElementIds[R.id]){var F=z.filter((function(e){return e.frameId!==R.id&&(0,tr.Qs)(e,B,t.state)}));t.state.editingGroupId&&H(F),B=(0,tr.A_)(B,F,R)}else if(!R&&t.state.editingGroupId){var W=z.filter((function(e){return e.frameId&&!(0,tr.Qs)(e,B,t.state)}));H(W)}B=(0,tr.Tq)(t.scene.getElementsIncludingDeleted(),t.state),t.scene.replaceAllElements(B)}}if("frame"===c.type){var Y=(0,tr.fj)(t.scene.getElementsIncludingDeleted(),c);t.scene.replaceAllElements((0,tr.A_)(t.scene.getElementsIncludingDeleted(),Y,c))}(0,_.DR)(c,(0,U.Qp)(c))}if(s&&t.history.resumeRecording(),s&&(0,U.QD)(s)&&t.scene.replaceAllElements(t.scene.getElementsIncludingDeleted().filter((function(e){return e.id!==s.id}))),e.resize.isResizing){var V,X=(0,tr.Tq)(t.scene.getElementsIncludingDeleted(),t.state),q=(0,ie.eD)(t.scene.getElementsIncludingDeleted(),t.state).filter((function(e){return"frame"===e.type})),J=hr(q);try{for(J.s();!(V=J.n()).done;){var Q=V.value;X=(0,tr.pr)(X,(0,tr.ni)(t.scene.getElementsIncludingDeleted(),Q,t.state),Q,t.state)}}catch(e){J.e(e)}finally{J.f()}t.scene.replaceAllElements(X)}var ee=e.hit.element;if((null===(r=t.state.selectedLinearElement)||void 0===r?void 0:r.elementId)!==(null==ee?void 0:ee.id)&&(0,G.bt)(ee))1===(0,ie.eD)(t.scene.getNonDeletedElements(),t.state).length&&t.setState({selectedLinearElement:new K._(ee,t.scene)});if((0,N.EN)(t.state)){if(0===(0,ne.LW)(t.lastPointerDown.clientX,t.lastPointerDown.clientY,t.lastPointerUp.clientX,t.lastPointerUp.clientY)){var te=(0,I.dE)({clientX:t.lastPointerUp.clientX,clientY:t.lastPointerUp.clientY},t.state);t.getElementsAtPosition(te.x,te.y).forEach((function(t){return e.elementIdsToErase[t.id]={erase:!0,opacity:t.opacity}}))}t.eraseElements(e)}else{var re;if(Object.keys(e.elementIdsToErase).length&&t.restoreReadyToEraseElements(e),ee&&!e.drag.hasOccurred&&!e.hit.wasAddedToSelection&&(!t.state.editingLinearElement||!e.boxSelection.hasOccurred))if(n.shiftKey&&!t.state.editingLinearElement)if(t.state.selectedElementIds[ee.id])if((0,$.zq)(t.state,ee)){var oe=ee.groupIds.flatMap((function(e){return(0,$.Fb)(t.scene.getNonDeletedElements(),e)})).map((function(e){return(0,p.Z)({},e.id,!1)})).reduce((function(e,t){return br(br({},e),t)}),{});t.setState((function(e){return{selectedGroupIds:br(br({},e.selectedElementIds),ee.groupIds.map((function(e){return(0,p.Z)({},e,!1)})).reduce((function(e,t){return br(br({},e),t)}),{})),selectedElementIds:br(br({},e.selectedElementIds),oe)}}))}else null!==(re=t.state.selectedLinearElement)&&void 0!==re&&re.isDragging||t.setState((function(e){var n=br(br({},e.selectedElementIds),{},(0,p.Z)({},ee.id,!1)),r=(0,ie.eD)(t.scene.getNonDeletedElements(),br(br({},e),{},{selectedElementIds:n}));return(0,$.bO)(br(br({},e),{},{selectedElementIds:n,selectedLinearElement:1===r.length&&(0,G.bt)(r[0])?new K._(r[0],t.scene):e.selectedLinearElement}),t.scene.getNonDeletedElements())}));else ee.frameId&&t.state.selectedElementIds[ee.frameId]?t.setState((function(e){var n,r,o,i=br(br({},e.selectedElementIds),{},(n={},(0,p.Z)(n,ee.id,!0),(0,p.Z)(n,ee.frameId,!1),n));return(null!==(r=null===(o=t.scene.getElement(ee.frameId))||void 0===o?void 0:o.groupIds)&&void 0!==r?r:[]).flatMap((function(e){return(0,$.Fb)(t.scene.getNonDeletedElements(),e)})).forEach((function(e){return i[e.id]=!1})),(0,$.bO)(br(br({},e),{},{selectedElementIds:i,showHyperlinkPopup:!!ee.link&&"info"}),t.scene.getNonDeletedElements())})):t.setState((function(e){return{selectedElementIds:br(br({},e.selectedElementIds),{},(0,p.Z)({},ee.id,!0))}}));else t.setState((function(e){var n;return br({},(0,$.bO)(br(br({},e),{},{selectedElementIds:(0,p.Z)({},ee.id,!0),selectedLinearElement:(0,G.bt)(ee)&&(null===(n=e.selectedLinearElement)||void 0===n?void 0:n.elementId)!==ee.id?new K._(ee,t.scene):e.selectedLinearElement}),t.scene.getNonDeletedElements()))}));e.drag.hasOccurred||t.state.isResizing||!(ee&&(0,U.wB)(ee,t.state,t.frameNameBoundsCache,e.origin.x,e.origin.y)||!ee&&e.hit.hasHitCommonBoundingBoxOfSelectedElements)?(!d.locked&&"freedraw"!==d.type&&c&&t.setState((function(e){return{selectedElementIds:br(br({},e.selectedElementIds),{},(0,p.Z)({},c.id,!0))}})),("selection"!==d.type||(0,ie.N)(t.scene.getNonDeletedElements(),t.state))&&t.history.resumeRecording(),(e.drag.hasOccurred||f||h)&&((0,C.N1)(t.state)?C.el:C.H)((0,ie.eD)(t.scene.getNonDeletedElements(),t.state)),d.locked||"freedraw"===d.type?t.setState({draggingElement:null,suggestedBindings:[]}):((0,I.z8)(t.canvas),t.setState({draggingElement:null,suggestedBindings:[],activeTool:(0,I.Om)(t.state,{type:"selection"})}))):t.state.editingLinearElement?t.setState({editingLinearElement:null}):t.setState({selectedElementIds:{},selectedGroupIds:{},editingGroupId:null})}}}))}},{key:"maybeSuggestBindingForAll",value:function(e){var t=(0,C.ZB)(e);this.setState({suggestedBindings:t})}},{key:"clearSelection",value:function(e){this.setState((function(t){return{selectedElementIds:{},selectedGroupIds:{},editingGroupId:t.editingGroupId&&null!=e&&(0,$.Nd)(e,t.editingGroupId)?t.editingGroupId:null}})),this.setState({selectedElementIds:{},previousSelectedElementIds:this.state.selectedElementIds})}},{key:"getTextWysiwygSnappedToCenterPosition",value:function(e,t,n,r){if(r){var o=r.x+r.width/2,i=r.y+r.height/2,a=(0,Pe.TP)(r,n);if(a&&(o=a.x,i=a.y),Math.hypot(e-o,t-i)<T.wZ){var l=(0,I._i)({sceneX:o,sceneY:i},n);return{viewportX:l.x,viewportY:l.y,elementCenterX:o,elementCenterY:i}}}}},{key:"getCanvasOffsets",value:function(){var e;if(null!==(e=this.excalidrawContainerRef)&&void 0!==e&&e.current){var t=this.excalidrawContainerRef.current.getBoundingClientRect();return{offsetLeft:t.left,offsetTop:t.top}}return{offsetLeft:0,offsetTop:0}}},{key:"updateLanguage",value:(t=(0,a.Z)(m().mark((function e(){var t,n=this;return m().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=O.Mj.find((function(e){return e.code===n.props.langCode}))||O.Fp,e.next=3,(0,O.m0)(t);case 3:this.setAppState({});case 4:case"end":return e.stop()}}),e,this)}))),function(){return t.apply(this,arguments)})}],[{key:"resetTapTwice",value:function(){Zr=!1}}]),d}(v().Component);qr.defaultProps={UIOptions:T.cW};var $r=function(){var e=this;this.canvas=null,this.rc=null,this.unmounted=!1,this.device=wr,this.excalidrawContainerRef=v().createRef(),this.files={},this.imageCache=new Map,this.lastPointerDown=null,this.lastPointerUp=null,this.lastViewportPosition={x:0,y:0},this.onChangeEmitter=new pr,this.onPointerDownEmitter=new pr,this.onPointerUpEmitter=new pr,this.getFrameNameDOMId=function(t){return"".concat(e.id,"-frame-name-").concat(t.id)},this.frameNameBoundsCache={get:function(t){var n=e.frameNameBoundsCache._cache.get(t.id);if(!n||n.zoom!==e.state.zoom.value||n.versionNonce!==t.versionNonce){var r=document.getElementById(e.getFrameNameDOMId(t));if(r){var o=r.getBoundingClientRect(),i=(0,I.dE)({clientX:o.x,clientY:o.y},e.state),a=(0,I.dE)({clientX:o.right,clientY:o.bottom},e.state);return n={x:i.x,y:i.y,width:a.x-i.x,height:a.y-i.y,angle:0,zoom:e.state.zoom.value,versionNonce:t.versionNonce},e.frameNameBoundsCache._cache.set(t.id,n),n}return null}return n},_cache:new Map},this.renderFrameNames=function(){if(!e.state.shouldRenderFrames)return null;var t="dark"===e.state.theme;return e.scene.getNonDeletedFrames().map((function(n,r){if(!e.canvas||!(0,oe.Ic)(n,e.canvas.width/window.devicePixelRatio,e.canvas.height/window.devicePixelRatio,{offsetLeft:e.state.offsetLeft,offsetTop:e.state.offsetTop,scrollX:e.state.scrollX,scrollY:e.state.scrollY,zoom:e.state.zoom}))return null;var o,i=(0,I._i)({sceneX:n.x,sceneY:n.y},e.state),a=i.x,l=i.y,c=(0,I._i)({sceneX:n.x+n.width,sceneY:n.y+n.height},e.state).x,s=function(){var t;""===(null===(t=n.name)||void 0===t?void 0:t.trim())&&(0,_.DR)(n,{name:null}),e.setState({editingFrame:null})};if(n.id===e.state.editingFrame){var u=null==n.name?"Frame ".concat(r+1):n.name;o=(0,P.jsx)("input",{autoFocus:!0,value:u,onChange:function(e){(0,_.DR)(n,{name:e.target.value})},onBlur:function(){return s()},onKeyDown:function(e){e.key!==j.tW.ESCAPE&&e.key!==j.tW.ENTER||s()},style:{background:e.state.viewBackgroundColor,filter:t?T.ZF:"none",zIndex:2,border:"none",display:"block",padding:"".concat(6,"px"),borderRadius:4,boxShadow:"inset 0 0 0 1px var(--color-primary)",fontFamily:"Assistant",fontSize:"14px",transform:"translateY(-".concat(6,"px)"),color:"var(--color-gray-80)",overflow:"hidden",maxWidth:"".concat(Math.min(c-a-6,document.body.clientWidth-a-6),"px")},size:u.length+1||1,dir:"auto",autoComplete:"off",autoCapitalize:"off",autoCorrect:"off"})}else o=null==n.name||""===n.name.trim()?"Frame ".concat(r+1):n.name.trim();return(0,P.jsx)("div",{id:e.getFrameNameDOMId(n),style:{position:"absolute",top:"".concat(l-20-e.state.offsetTop,"px"),left:"".concat(a-e.state.offsetLeft-(e.state.editingFrame===n.id?6:0),"px"),zIndex:2,fontSize:"14px",color:t?"var(--color-gray-60)":"var(--color-gray-50)",width:"max-content",maxWidth:"".concat(c-a+12,"px"),overflow:n.id===e.state.editingFrame?"visible":"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis",cursor:T.oc.MOVE,pointerEvents:e.state.viewModeEnabled?"none":"all"},onPointerDown:function(t){return e.handleCanvasPointerDown(t)},onWheel:function(t){return e.handleWheel(t)},onContextMenu:function(t){e.handleCanvasContextMenu(t)},onDoubleClick:function(){e.setState({editingFrame:n.id})},children:o},n.id)}))},this.focusContainer=function(){var t;null===(t=e.excalidrawContainerRef.current)||void 0===t||t.focus()},this.getSceneElementsIncludingDeleted=function(){return e.scene.getElementsIncludingDeleted()},this.getSceneElements=function(){return e.scene.getNonDeletedElements()},this.onInsertElements=function(t){e.addElementsFromPasteOrLibrary({elements:t,position:"center",files:null})},this.onExportImage=function(){var t=(0,a.Z)(m().mark((function t(n,r){var o;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(0,L.L)("export",n,"ui"),t.next=3,(0,H.tq)(n,r,e.state,e.files,{exportBackground:e.state.exportBackground,name:e.state.name,viewBackgroundColor:e.state.viewBackgroundColor}).catch(I.FG).catch((function(t){console.error(t),e.setState({errorMessage:t.message})}));case 3:o=t.sent,e.state.exportEmbedScene&&o&&(0,Ve.g8)(o)&&e.setState({fileHandle:o});case 5:case"end":return t.stop()}}),t)})));return function(e,n){return t.apply(this,arguments)}}(),this.openEyeDropper=function(t){var n=t.type;xn.e_.set(jn.$,{swapPreviewOnAlt:!0,previewType:"stroke"===n?"strokeColor":"backgroundColor",onSelect:function(t,r){var o="background"===n&&r.altKey||"stroke"===n&&!r.altKey;(0,ie.eD)(e.scene.getElementsIncludingDeleted(),e.state).length&&"selection"===e.state.activeTool.type?e.updateScene({elements:e.scene.getElementsIncludingDeleted().map((function(n){return e.state.selectedElementIds[n.id]?(0,_.BE)(n,(0,p.Z)({},o?"strokeColor":"backgroundColor",t)):n}))}):o?e.setState({currentItemStrokeColor:t}):e.setState({currentItemBackgroundColor:t})},keepOpenOnAlt:!1})},this.syncActionResult=(0,I.tH)((function(t){if(!e.unmounted&&!1!==t){var n=null;if(t.elements&&(t.elements.forEach((function(t){var r;(null===(r=e.state.editingElement)||void 0===r?void 0:r.id)===t.id&&e.state.editingElement!==t&&(0,U.qP)(t)&&(n=t)})),e.scene.replaceAllElements(t.elements),t.commitToHistory&&e.history.resumeRecording()),t.files&&(e.files=t.replaceFiles?t.files:br(br({},e.files),t.files),e.addNewImagesToImageCache()),t.appState||n||e.state.contextMenu){var r,o,i,a,l,c,s,u,d,f;t.commitToHistory&&e.history.resumeRecording();var p=(null==t||null===(r=t.appState)||void 0===r?void 0:r.viewModeEnabled)||!1,h=(null==t||null===(o=t.appState)||void 0===o?void 0:o.zenModeEnabled)||!1,m=(null==t||null===(i=t.appState)||void 0===i?void 0:i.gridSize)||null,g=(null==t||null===(a=t.appState)||void 0===a?void 0:a.theme)||e.props.theme||T.C6.LIGHT,v=null!==(l=null==t||null===(c=t.appState)||void 0===c?void 0:c.name)&&void 0!==l?l:e.state.name,b=null!==(s=null==t||null===(u=t.appState)||void 0===u?void 0:u.errorMessage)&&void 0!==s?s:e.state.errorMessage;void 0!==e.props.viewModeEnabled&&(p=e.props.viewModeEnabled),void 0!==e.props.zenModeEnabled&&(h=e.props.zenModeEnabled),void 0!==e.props.gridModeEnabled&&(m=e.props.gridModeEnabled?T.k:null),void 0!==e.props.name&&(v=e.props.name),null!==(f=n=n||(null===(d=t.appState)||void 0===d?void 0:d.editingElement)||null)&&void 0!==f&&f.isDeleted&&(n=null),e.setState((function(e){return Object.assign(t.appState||{},{contextMenu:null,editingElement:n,viewModeEnabled:p,zenModeEnabled:h,gridSize:m,theme:g,name:v,errorMessage:b})}),(function(){t.syncHistory&&e.history.setCurrentState(e.state,e.scene.getElementsIncludingDeleted())}))}}})),this.onBlur=(0,I.tH)((function(){zr=!1,e.setState({isBindingEnabled:!0})})),this.onUnload=function(){e.onBlur()},this.disableEvent=function(e){e.preventDefault()},this.resetHistory=function(){e.history.clear()},this.resetScene=(0,I.tH)((function(t){e.scene.replaceAllElements([]),e.setState((function(n){return br(br({},(0,N.im)()),{},{isLoading:(null==t||!t.resetLoadingState)&&n.isLoading,theme:e.state.theme})})),e.resetHistory()})),this.initializeScene=(0,a.Z)(m().mark((function t(){var n,r,o,i,l,c,s;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return"launchQueue"in window&&"LaunchParams"in window&&window.launchQueue.setConsumer(function(){var t=(0,a.Z)(m().mark((function t(n){var r,o;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(n.files.length){t.next=2;break}return t.abrupt("return");case 2:return r=n.files[0],t.next=5,r.getFile();case 5:o=t.sent,e.loadFileToCanvas(new File([o],o.name||"",{type:o.type}),r);case 7:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}()),e.props.theme&&e.setState({theme:e.props.theme}),e.state.isLoading||e.setState({isLoading:!0}),l=null,t.prev=4,t.next=7,e.props.initialData;case 7:if(t.t0=t.sent,t.t0){t.next=10;break}t.t0=null;case 10:l=t.t0,null!==(c=l)&&void 0!==c&&c.libraryItems&&e.library.updateLibrary({libraryItems:l.libraryItems,merge:!0}).catch((function(e){console.error(e)})),t.next=18;break;case 14:t.prev=14,t.t1=t.catch(4),console.error(t.t1),l={appState:{errorMessage:t.t1.message||"Encountered an error during importing or restoring scene data"}};case 18:(s=(0,W.nu)(l,null,null,{repairBindings:!0})).appState=br(br({},s.appState),{},{theme:e.props.theme||s.appState.theme,openSidebar:(null===(n=s.appState)||void 0===n?void 0:n.openSidebar)||e.state.openSidebar,activeTool:"image"===s.appState.activeTool.type?br(br({},s.appState.activeTool),{},{type:"selection"}):s.appState.activeTool,isLoading:!1,toast:e.state.toast}),null!==(r=l)&&void 0!==r&&r.scrollToContent&&(s.appState=br(br({},s.appState),(0,ie.W)(s.elements,br(br({},s.appState),{},{width:e.state.width,height:e.state.height,offsetTop:e.state.offsetTop,offsetLeft:e.state.offsetLeft}),null))),e.fonts.loadFontsForElements(s.elements),null!=(null===(o=l)||void 0===o?void 0:o.scrollX)&&(s.appState.scrollX=l.scrollX),null!=(null===(i=l)||void 0===i?void 0:i.scrollY)&&(s.appState.scrollY=l.scrollY),e.resetHistory(),e.syncActionResult(br(br({},s),{},{commitToHistory:!0}));case 26:case"end":return t.stop()}}),t,null,[[4,14]])}))),this.refreshDeviceState=function(t){var n=t.getBoundingClientRect(),r=n.width,o=n.height,i=null!=e.props.UIOptions.dockedSidebarBreakpoint?e.props.UIOptions.dockedSidebarBreakpoint:T.sk;e.device=(0,I.v4)(e.device,{isLandscape:r>o,isSmScreen:r<T.eF,isMobile:r<T.kV||o<T.Yx&&r<T.sS,canDeviceFitSidebar:r>i})},this.onResize=(0,I.tH)((function(){e.scene.getElementsIncludingDeleted().forEach((function(e){return(0,re.bI)(e)})),e.setState({})})),this.onFontsLoadingDone=function(t){var n=t.fontfaces;e.fonts.onFontsLoaded(n)},this.renderScene=function(){var t={},n={},r={},o={},i={};e.state.collaborators.forEach((function(a,l){if(a.selectedElementIds)for(var c=0,s=Object.keys(a.selectedElementIds);c<s.length;c++){var u=s[c];u in r||(r[u]=[]),r[u].push(l)}a.pointer&&(a.username&&(o[l]=a.username),a.userState&&(i[l]=a.userState),n[l]=(0,I._i)({sceneX:a.pointer.x,sceneY:a.pointer.y},e.state),t[l]=a.button)}));var a=e.scene.getNonDeletedElements().filter((function(t){return(!(0,G.pC)(t)||e.state.pendingImageElementId!==t.id)&&(!e.state.editingElement||"text"!==e.state.editingElement.type||t.id!==e.state.editingElement.id)})),l=getComputedStyle(document.querySelector(".excalidraw")).getPropertyValue("--color-selection");(0,oe.Eu)({elements:a,appState:e.state,rc:e.rc,canvas:e.canvas,renderConfig:{canvasScale:window.devicePixelRatio,selectionColor:l,scrollX:e.state.scrollX,scrollY:e.state.scrollY,canvasBackgroundColor:e.state.viewBackgroundColor,zoom:e.state.zoom,remotePointerViewportCoords:n,remotePointerButton:t,remoteSelectedElementIds:r,remotePointerUsernames:o,remotePointerUserStates:i,shouldCacheIgnoreZoom:e.state.shouldCacheIgnoreZoom,theme:e.state.theme,imageCache:e.imageCache,isExporting:!1,renderScrollbars:!e.device.isMobile},callback:function(t){var n=t.atLeastOneVisibleElement,r=t.scrollBars;r&&(Hr=r);var o=!(0,U.iB)(e.state.editingElement)&&(!n&&a.length>0);e.state.scrolledOutside!==o&&e.setState({scrolledOutside:o}),e.scheduleImageRefresh()}},Ur&&!0===window.EXCALIDRAW_THROTTLE_RENDER),Ur||(Ur=!0)},this.onScroll=(0,I.Ds)((function(){var t=e.getCanvasOffsets(),n=t.offsetTop,r=t.offsetLeft;e.setState((function(e){return e.offsetLeft===r&&e.offsetTop===n?null:{offsetTop:n,offsetLeft:r}}))}),T.HM),this.onCut=(0,I.tH)((function(t){var n;(null===(n=e.excalidrawContainerRef.current)||void 0===n?void 0:n.contains(document.activeElement))&&!(0,I.s)(t.target)&&(e.cutAll(),t.preventDefault(),t.stopPropagation())})),this.onCopy=(0,I.tH)((function(t){var n;(null===(n=e.excalidrawContainerRef.current)||void 0===n?void 0:n.contains(document.activeElement))&&!(0,I.s)(t.target)&&(e.copyAll(),t.preventDefault(),t.stopPropagation())})),this.cutAll=function(){e.actionManager.executeAction(k.actionCut,"keyboard")},this.copyAll=function(){e.actionManager.executeAction(k.actionCopy,"keyboard")},this.onTapStart=function(t){if(T.Dt||t.preventDefault(),!Zr)return Zr=!0,clearTimeout(Rr),void(Rr=window.setTimeout(qr.resetTapTwice,T.Gj));if(Zr&&1===t.touches.length){var n=(0,o.Z)(t.touches,1)[0];e.handleCanvasDoubleClick({clientX:n.clientX,clientY:n.clientY}),Zr=!1,clearTimeout(Rr)}T.Dt&&t.preventDefault(),2===t.touches.length&&e.setState({selectedElementIds:{}})},this.onTapEnd=function(t){e.resetContextMenuTimer(),t.touches.length>0?e.setState({previousSelectedElementIds:{},selectedElementIds:e.state.previousSelectedElementIds}):Xr.pointers.clear()},this.pasteFromClipboard=(0,I.tH)(function(){var t=(0,a.Z)(m().mark((function t(n){var r,o,i,a,l,c,s,u,d,f,h,g,v;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(i=!(!Kr||!n),a=document.activeElement,l=null===(r=e.excalidrawContainerRef.current)||void 0===r?void 0:r.contains(a),!n||l){t.next=5;break}return t.abrupt("return");case 5:if(c=document.elementFromPoint(e.lastViewportPosition.x,e.lastViewportPosition.y),!n||c instanceof HTMLCanvasElement&&!(0,I.s)(a)){t.next=8;break}return t.abrupt("return");case 8:return s=null==n||null===(o=n.clipboardData)||void 0===o?void 0:o.files[0],t.next=11,(0,B.mQ)(n,i);case 11:if(u=t.sent,s||!u.text||i||(d=u.text.trim()).startsWith("<svg")&&d.endsWith("</svg>")&&(s=(0,Ve.Pn)(d)),!(0,Ve.Wr)(s)||u.spreadsheet){t.next=20;break}return f=(0,I.dE)({clientX:e.lastViewportPosition.x,clientY:e.lastViewportPosition.y},e.state),h=f.x,g=f.y,v=e.createImageElement({sceneX:h,sceneY:g}),e.insertImageElement(v,s),e.initializeImageDimensions(v),e.setState({selectedElementIds:(0,p.Z)({},v.id,!0)}),t.abrupt("return");case 20:if(!e.props.onPaste){t.next=32;break}return t.prev=21,t.next=24,e.props.onPaste(u,n);case 24:if(t.t0=t.sent,!1!==t.t0){t.next=27;break}return t.abrupt("return");case 27:t.next=32;break;case 29:t.prev=29,t.t1=t.catch(21),console.error(t.t1);case 32:u.errorMessage?e.setState({errorMessage:u.errorMessage}):u.spreadsheet&&!i?e.setState({pasteDialog:{data:u.spreadsheet,shown:!0}}):u.elements?e.addElementsFromPasteOrLibrary({elements:u.elements,files:u.files||null,position:"cursor",retainSeed:i}):u.text&&e.addTextFromPaste(u.text,i),e.setActiveTool({type:"selection"}),null==n||n.preventDefault();case 35:case"end":return t.stop()}}),t,null,[[21,29]])})));return function(e){return t.apply(this,arguments)}}()),this.addElementsFromPasteOrLibrary=function(t){var n=(0,W.ET)(t.elements,null),a=(0,U.KP)(n),l=(0,o.Z)(a,4),c=l[0],s=l[1],u=l[2],d=l[3],f=(0,I.TE)(c,u)/2,p=(0,I.TE)(s,d)/2,h="object"===(0,r.Z)(t.position)?t.position.clientX:"cursor"===t.position?e.lastViewportPosition.x:e.state.width/2+e.state.offsetLeft,m="object"===(0,r.Z)(t.position)?t.position.clientY:"cursor"===t.position?e.lastViewportPosition.y:e.state.height/2+e.state.offsetTop,g=(0,I.dE)({clientX:h,clientY:m},e.state),v=g.x-f,b=g.y-p,y=(0,ne.wC)(v,b,e.state.gridSize),x=(0,o.Z)(y,2),w=x[0],k=x[1],E=(0,Y._N)(n.map((function(e){return(0,_.BE)(e,{x:e.x+w-c,y:e.y+k-s})})),{randomizeSeed:!t.retainSeed}),S=[].concat((0,i.Z)(e.scene.getElementsIncludingDeleted()),(0,i.Z)(E));e.scene.replaceAllElements(S),E.forEach((function(e){if((0,U.iB)(e)&&(0,G.Xh)(e)){var t=(0,Pe.tl)(e);(0,U.oN)(e,t)}})),t.files&&(e.files=br(br({},e.files),t.files)),e.history.resumeRecording();var O=(0,nr.aI)(E);e.setState((0,$.bO)(br(br({},e.state),{},{openSidebar:e.state.openSidebar&&e.device.canDeviceFitSidebar&&e.state.defaultSidebarDockedPreference?e.state.openSidebar:null,selectedElementIds:O.reduce((function(e,t){return(0,G.Xh)(t)||(e[t.id]=!0),e}),{}),selectedGroupIds:{}}),e.scene.getNonDeletedElements()),(function(){t.files&&e.addNewImagesToImageCache()})),e.setActiveTool({type:"selection"})},this.setAppState=function(t,n){e.setState(t,n)},this.removePointer=function(t){Fr&&e.resetContextMenuTimer(),Xr.pointers.delete(t.pointerId)},this.toggleLock=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"ui";e.state.activeTool.locked||(0,L.L)("toolbar","toggleLock","".concat(t," (").concat(e.device.isMobile?"mobile":"desktop",")")),e.setState((function(t){return{activeTool:br(br(br({},t.activeTool),(0,I.Om)(e.state,t.activeTool.locked?{type:"selection"}:t.activeTool)),{},{locked:!t.activeTool.locked})}}))},this.toggleFrameRendering=function(){e.setState((function(e){return{shouldRenderFrames:!e.shouldRenderFrames}}))},this.togglePenMode=function(){e.setState((function(e){return{penMode:!e.penMode}}))},this.onHandToolToggle=function(){e.actionManager.executeAction(sr.eF)},this.zoomCanvas=function(t){e.setState(br({},(0,le.E)({viewportX:e.state.width/2+e.state.offsetLeft,viewportY:e.state.height/2+e.state.offsetTop,nextZoom:(0,ie.j)(t)},e.state)))},this.cancelInProgresAnimation=null,this.scrollToContent=function(){var t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:e.scene.getNonDeletedElements(),r=arguments.length>1?arguments[1]:void 0;null===(t=e.cancelInProgresAnimation)||void 0===t||t.call(e);var o=Array.isArray(n)?n:[n],i=e.state.zoom,a=e.state.scrollX,l=e.state.scrollY;if(null!=r&&r.fitToContent){var c=(0,sr.md)(o,e.state,!1),s=c.appState;i=s.zoom,a=s.scrollX,l=s.scrollY}else{var u=(0,ie.W)(o,e.state,e.canvas);a=u.scrollX,l=u.scrollY}if(null!=r&&r.animate){var d,f=e.state.scrollX,p=e.state.scrollY;e.zoomCanvas(i.value);var h=(0,I.B4)([f,p],[a,l],(function(t,n){return e.setState({scrollX:t,scrollY:n})}),{duration:null!==(d=null==r?void 0:r.duration)&&void 0!==d?d:500});e.cancelInProgresAnimation=function(){h(),e.cancelInProgresAnimation=null}}else e.setState({scrollX:a,scrollY:l,zoom:i})},this.translateCanvas=function(t){var n;null===(n=e.cancelInProgresAnimation)||void 0===n||n.call(e),e.setState(t)},this.setToast=function(t){e.setState({toast:t})},this.restoreFileFromShare=(0,a.Z)(m().mark((function t(){var n,r,o,i;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,caches.open("web-share-target");case 3:return n=t.sent,t.next=6,n.match("shared-file");case 6:if(!(r=t.sent)){t.next=16;break}return t.next=10,r.blob();case 10:return o=t.sent,i=new File([o],o.name||"",{type:o.type}),e.loadFileToCanvas(i,null),t.next=15,n.delete("shared-file");case 15:window.history.replaceState(null,T.iC,window.location.pathname);case 16:t.next=21;break;case 18:t.prev=18,t.t0=t.catch(0),e.setState({errorMessage:t.t0.message});case 21:case"end":return t.stop()}}),t,null,[[0,18]])}))),this.addFiles=(0,I.tH)((function(t){var n=t.reduce((function(e,t){return e.set(t.id,t),e}),new Map);e.files=br(br({},e.files),Object.fromEntries(n)),e.scene.getNonDeletedElements().forEach((function(t){(0,G.wi)(t)&&n.has(t.fileId)&&(e.imageCache.delete(t.fileId),(0,re.bI)(t))})),e.scene.informMutation(),e.addNewImagesToImageCache()})),this.updateScene=(0,I.tH)((function(t){t.commitToHistory&&e.history.resumeRecording(),t.appState&&e.setState(t.appState),t.elements&&e.scene.replaceAllElements(t.elements),t.collaborators&&e.setState({collaborators:t.collaborators})})),this.onSceneUpdated=function(){e.setState({})},this.toggleSidebar=function(t){var n,r,o=t.name,i=t.tab,a=t.force;void 0===a?n=(null===(r=e.state.openSidebar)||void 0===r?void 0:r.name)===o?null:o:n=a?o:null;return e.setState({openSidebar:n?{name:n,tab:i}:null}),!!n},this.updateCurrentCursorPosition=(0,I.tH)((function(t){e.lastViewportPosition.x=t.clientX,e.lastViewportPosition.y=t.clientY})),this.onKeyDown=(0,I.tH)((function(t){if("Proxy"in window&&(!t.shiftKey&&/^[A-Z]$/.test(t.key)||t.shiftKey&&/^[a-z]$/.test(t.key))&&(t=new Proxy(t,{get:function(e,n){var r=e[n];return"function"==typeof r?r.bind(e):"key"===n?t.shiftKey?e.key.toUpperCase():e.key.toLowerCase():r}})),t[j.tW.CTRL_OR_CMD]&&t.key.toLowerCase()===j.tW.V&&(Kr=t.shiftKey,clearTimeout(Yr),Yr=window.setTimeout((function(){Kr=!1}),100)),!t[j.tW.CTRL_OR_CMD]||!(0,I.s)(t.target)||t.code!==j.aU.MINUS&&t.code!==j.aU.EQUAL){if(!((0,I.s)(t.target)&&t.key!==j.tW.ESCAPE||(0,j.Wl)(t.key)&&(0,I._Z)(t.target)))if(t.key!==j.tW.QUESTION_MARK){if(t.key.toLowerCase()===j.tW.E&&t.shiftKey&&t[j.tW.CTRL_OR_CMD])return t.preventDefault(),void e.setState({openDialog:"imageExport"});if(t.key===j.tW.PAGE_UP||t.key===j.tW.PAGE_DOWN){var n=(t.shiftKey?e.state.width:e.state.height)/e.state.zoom.value;t.key===j.tW.PAGE_DOWN&&(n=-n),t.shiftKey?e.translateCanvas((function(e){return{scrollX:e.scrollX+n}})):e.translateCanvas((function(e){return{scrollY:e.scrollY+n}}))}if(!e.actionManager.handleKeyDown(t)&&!e.state.viewModeEnabled){if(t[j.tW.CTRL_OR_CMD]&&e.state.isBindingEnabled&&e.setState({isBindingEnabled:!1}),(0,j.Wl)(t.key)){var r=e.state.gridSize&&(t.shiftKey?T.$e:e.state.gridSize)||(t.shiftKey?T.Iw:T.$e),o=0,i=0;t.key===j.tW.ARROW_LEFT?o=-r:t.key===j.tW.ARROW_RIGHT?o=r:t.key===j.tW.ARROW_UP?i=-r:t.key===j.tW.ARROW_DOWN&&(i=r);var a=(0,ie.eD)(e.scene.getNonDeletedElements(),e.state,{includeBoundTextElement:!0,includeElementsInFrames:!0});a.forEach((function(e){(0,_.DR)(e,{x:e.x+o,y:e.y+i}),(0,C.Ww)(e,{simultaneouslyUpdated:a})})),e.maybeSuggestBindingForAll(a),t.preventDefault()}else if(t.key===j.tW.ENTER){var l=(0,ie.eD)(e.scene.getNonDeletedElements(),e.state);if(1===l.length){var c=l[0];if(t[j.tW.CTRL_OR_CMD])(0,G.bt)(c)&&(e.state.editingLinearElement&&e.state.editingLinearElement.elementId===l[0].id||(e.history.resumeRecording(),e.setState({editingLinearElement:new K._(c,e.scene)})));else{if((0,U.iB)(c)||(0,Pe.Zr)(c)){var s;(0,U.iB)(c)||(s=c);var u=(0,Pe.TP)(c,e.state),d=u.x,f=u.y;return e.startTextEditing({sceneX:d,sceneY:f,container:s}),void t.preventDefault()}(0,G.He)(c)&&e.setState({editingFrame:c.id})}}}else if(!t.ctrlKey&&!t.altKey&&!t.metaKey&&null===e.state.draggingElement){var p=function(e){var t=ce.find((function(t,n){return null!=t.numericKey&&e===t.numericKey.toString()||t.key&&("string"==typeof t.key?t.key===e:t.key.includes(e))}));return(null==t?void 0:t.value)||null}(t.key);p?(e.state.activeTool.type!==p&&(0,L.L)("toolbar",p,"keyboard (".concat(e.device.isMobile?"mobile":"desktop",")")),e.setActiveTool({type:p}),t.stopPropagation()):t.key===j.tW.Q&&(e.toggleLock("keyboard"),t.stopPropagation())}if(t.key===j.tW.SPACE&&0===Xr.pointers.size&&(zr=!0,(0,I.KJ)(e.canvas,T.oc.GRAB),t.preventDefault()),!(t.key!==j.tW.G&&t.key!==j.tW.S||t.altKey||t[j.tW.CTRL_OR_CMD])){var h=(0,ie.eD)(e.scene.getNonDeletedElements(),e.state);if("selection"===e.state.activeTool.type&&!h.length)return;t.key===j.tW.G&&((0,ie.$b)(e.state.activeTool.type)||h.some((function(e){return(0,ie.$b)(e.type)})))&&(e.setState({openPopup:"elementBackground"}),t.stopPropagation()),t.key===j.tW.S&&(e.setState({openPopup:"elementStroke"}),t.stopPropagation())}!t[j.tW.CTRL_OR_CMD]||t.key!==j.tW.BACKSPACE&&t.key!==j.tW.DELETE||xn.e_.set(En.w,"clearCanvas");var m=t.key.toLocaleLowerCase(),g=m===j.tW.S&&t.shiftKey,v=t.key===j.tW.I||m===j.tW.G&&t.shiftKey;(g||v)&&e.openEyeDropper({type:g?"stroke":"background"})}}else e.setState({openDialog:"help"})}else t.preventDefault()})),this.onWheel=(0,I.tH)((function(e){e.target instanceof HTMLCanvasElement||!e.ctrlKey||e.preventDefault()})),this.onKeyUp=(0,I.tH)((function(t){if(t.key===j.tW.SPACE&&(e.state.viewModeEnabled?(0,I.KJ)(e.canvas,T.oc.GRAB):"selection"===e.state.activeTool.type?(0,I.z8)(e.canvas):((0,I.Uk)(e.canvas,e.state),e.setState({selectedElementIds:{},selectedGroupIds:{},editingGroupId:null})),zr=!1),t[j.tW.CTRL_OR_CMD]||e.state.isBindingEnabled||e.setState({isBindingEnabled:!0}),(0,j.Wl)(t.key)){var n=(0,ie.eD)(e.scene.getNonDeletedElements(),e.state);(0,C.N1)(e.state)?(0,C.el)(n):(0,C.H)(n),e.setState({suggestedBindings:[]})}})),this.setActiveTool=function(t){var n=(0,I.Om)(e.state,t);"hand"===n.type?(0,I.KJ)(e.canvas,T.oc.GRAB):zr||(0,I.Uk)(e.canvas,e.state),(0,I.wO)(document.activeElement)&&e.focusContainer(),(0,G.dt)(n.type)||e.setState({suggestedBindings:[]}),"image"===n.type&&e.onImageAction(),"selection"!==n.type?e.setState({activeTool:n,selectedElementIds:{},selectedGroupIds:{},editingGroupId:null}):e.setState({activeTool:n})},this.setCursor=function(t){(0,I.KJ)(e.canvas,t)},this.resetCursor=function(){(0,I.z8)(e.canvas)},this.isTouchScreenMultiTouchGesture=function(){return Xr.pointers.size>=2},this.onGestureStart=(0,I.tH)((function(t){t.preventDefault(),e.isTouchScreenMultiTouchGesture()&&e.setState({selectedElementIds:{}}),Xr.initialScale=e.state.zoom.value})),this.onGestureChange=(0,I.tH)((function(t){if(t.preventDefault(),!e.isTouchScreenMultiTouchGesture()){var n=Xr.initialScale;n&&e.setState((function(r){return br({},(0,le.E)({viewportX:e.lastViewportPosition.x,viewportY:e.lastViewportPosition.y,nextZoom:(0,ie.j)(n*t.scale)},r))}))}})),this.onGestureEnd=(0,I.tH)((function(t){t.preventDefault(),e.isTouchScreenMultiTouchGesture()&&e.setState({previousSelectedElementIds:{},selectedElementIds:e.state.previousSelectedElementIds}),Xr.initialScale=null})),this.startTextEditing=function(t){var n,r,o,i,a=t.sceneX,l=t.sceneY,c=t.insertAtParentCenter,s=void 0===c||c,u=t.container,d=!1,f=s&&e.getTextWysiwygSnappedToCenterPosition(a,l,e.state,u);u&&f&&(d=!0);var p=null,h=(0,ie.eD)(e.scene.getNonDeletedElements(),e.state),m=(null===(n=p=1===h.length?(0,U.iB)(h[0])?h[0]:u?(0,Pe.WJ)(h[0]):e.getTextElementAtPosition(a,l):e.getTextElementAtPosition(a,l))||void 0===n?void 0:n.fontFamily)||e.state.currentItemFontFamily,g=(null===(r=p)||void 0===r?void 0:r.lineHeight)||(0,Pe.PT)(m),v=e.state.currentItemFontSize;if(!p&&d&&u&&!(0,G.Yv)(u)){var b={fontSize:v,fontFamily:m},y=(0,Pe.AT)((0,I.mO)(b),g),x=(0,Pe.w_)(v,g),w=(0,Pe.HE)(u),k=Math.max(w.height,x),E=Math.max(w.width,y);(0,_.DR)(u,{height:k,width:E}),a=u.x+E/2,l=u.y+k/2,f&&(f=e.getTextWysiwygSnappedToCenterPosition(a,l,e.state,u))}var S=e.getTopLayerFrameAtSceneCoords({x:a,y:l}),O=p||(0,U.VL)({x:f?f.elementCenterX:a,y:f?f.elementCenterY:l,strokeColor:e.state.currentItemStrokeColor,backgroundColor:e.state.currentItemBackgroundColor,fillStyle:e.state.currentItemFillStyle,strokeWidth:e.state.currentItemStrokeWidth,strokeStyle:e.state.currentItemStrokeStyle,roughness:e.state.currentItemRoughness,opacity:e.state.currentItemOpacity,text:"",fontSize:v,fontFamily:m,textAlign:f?"center":e.state.currentItemTextAlign,verticalAlign:f?T.oX.MIDDLE:T.hs,containerId:d?null==u?void 0:u.id:void 0,groupIds:null!==(o=null==u?void 0:u.groupIds)&&void 0!==o?o:[],lineHeight:g,angle:null!==(i=null==u?void 0:u.angle)&&void 0!==i?i:0,frameId:S?S.id:null});if(!p&&d&&u&&(0,_.DR)(u,{boundElements:(u.boundElements||[]).concat({type:"text",id:O.id})}),e.setState({editingElement:O}),!p)if(u&&d){var j=e.scene.getElementIndex(u.id);e.scene.insertElementAtIndex(O,j+1)}else e.scene.addNewElement(O);e.setState({editingElement:O}),e.handleTextWysiwyg(O,{isExistingElement:!!p})},this.handleCanvasDoubleClick=function(t){if(!e.state.multiElement&&"selection"===e.state.activeTool.type){var n=(0,ie.eD)(e.scene.getNonDeletedElements(),e.state);if(1===n.length&&(0,G.bt)(n[0])){if(t[j.tW.CTRL_OR_CMD]&&(!e.state.editingLinearElement||e.state.editingLinearElement.elementId!==n[0].id))return e.history.resumeRecording(),void e.setState({editingLinearElement:new K._(n[0],e.scene)});if(e.state.editingLinearElement&&e.state.editingLinearElement.elementId===n[0].id)return}(0,I.z8)(e.canvas);var r=(0,I.dE)(t,e.state),o=r.x,i=r.y;if((0,$.iJ)(e.state).length>0){var a=e.getElementAtPosition(o,i),l=a&&(0,$.YS)(a,e.state.selectedGroupIds);if(l)return void e.setState((function(t){return(0,$.bO)(br(br({},t),{},{editingGroupId:l,selectedElementIds:(0,p.Z)({},a.id,!0),selectedGroupIds:{}}),e.scene.getNonDeletedElements())}))}if((0,I.z8)(e.canvas),!t[j.tW.CTRL_OR_CMD]&&!e.state.viewModeEnabled){var c=(0,Pe.OW)(e.scene.getNonDeletedElements(),e.state,o,i);if(c&&((0,G.Xo)(c)||!(0,I.Qm)(c.backgroundColor)||(0,Xn.Qu)(c,e.state,e.frameNameBoundsCache,[o,i]))){var s=(0,Pe.TP)(c,e.state);o=s.x,i=s.y}e.startTextEditing({sceneX:o,sceneY:i,insertAtParentCenter:!t.altKey,container:c})}}},this.getElementLinkAtPosition=function(t,n){var r=e.scene.getNonDeletedElements().slice().reverse(),o=1/0;return r.find((function(r,i){return n&&r.id===n.id&&(o=i),r.link&&i<=o&&(0,qn.wq)(r,e.state,[t.x,t.y],e.device.isMobile)}))},this.redirectToLink=function(t,n){var r=(0,ne.LW)(e.lastPointerDown.clientX,e.lastPointerDown.clientY,e.lastPointerUp.clientX,e.lastPointerUp.clientY);if(!(!e.hitLinkElement||n&&r>T.f||!n&&0!==r)){var o=(0,I.dE)(e.lastPointerDown,e.state),i=(0,qn.wq)(e.hitLinkElement,e.state,[o.x,o.y],e.device.isMobile),a=(0,I.dE)(e.lastPointerUp,e.state),l=(0,qn.wq)(e.hitLinkElement,e.state,[a.x,a.y],e.device.isMobile);if(i&&l){var c,s,u=e.hitLinkElement.link;if(u)if(e.props.onLinkOpen&&(s=(0,I.ag)(T.Ks.EXCALIDRAW_LINK,t.nativeEvent),e.props.onLinkOpen(e.hitLinkElement,s)),null===(c=s)||void 0===c||!c.defaultPrevented){var d=(0,qn.q$)(u)?"_self":"_blank",f=window.open(void 0,d);f&&(f.opener=null,f.location=(0,qn.$u)(u))}}}},this.getTopLayerFrameAtSceneCoords=function(t){var n=e.scene.getNonDeletedFrames().filter((function(e){return(0,tr.Dn)(t,e)}));return n.length?n[n.length-1]:null},this.handleCanvasPointerMove=function(t){e.savePointer(t.clientX,t.clientY,e.state.cursorButton),Xr.pointers.has(t.pointerId)&&Xr.pointers.set(t.pointerId,{x:t.clientX,y:t.clientY});var n=Xr.initialScale;if(2===Xr.pointers.size&&Xr.lastCenter&&n&&Xr.initialDistance){var r=V(Xr.pointers),a=r.x-Xr.lastCenter.x,l=r.y-Xr.lastCenter.y;Xr.lastCenter=r;var c=X(Array.from(Xr.pointers.values())),s="freedraw"===e.state.activeTool.type&&e.state.penMode?1:c/Xr.initialDistance,u=s?(0,ie.j)(n*s):e.state.zoom.value;e.setState((function(t){var n=(0,le.E)({viewportX:r.x,viewportY:r.y,nextZoom:u},t);e.translateCanvas({zoom:n.zoom,scrollX:n.scrollX+a/u,scrollY:n.scrollY+l/u,shouldCacheIgnoreZoom:!0})})),e.resetShouldCacheIgnoreZoomDebounced()}else Xr.lastCenter=Xr.initialDistance=Xr.initialScale=null;if(!(zr||Nr||Br||(0,N.l$)(e.state))){var d=(0,ie._4)(Hr,t.clientX-e.state.offsetLeft,t.clientY-e.state.offsetTop).isOverEither;e.state.draggingElement||e.state.multiElement||(d?(0,I.z8)(e.canvas):(0,I.Uk)(e.canvas,e.state));var f=(0,I.dE)(t,e.state),p=f.x,h=f.y;if(e.state.editingLinearElement&&!e.state.editingLinearElement.isDragging){var m=K._.handlePointerMove(t,p,h,e.state);m&&m!==e.state.editingLinearElement&&(0,b.flushSync)((function(){e.setState({editingLinearElement:m})})),null!=(null==m?void 0:m.lastUncommittedPoint)?e.maybeSuggestBindingAtCursor(f):(0,b.flushSync)((function(){e.setState({suggestedBindings:[]})}))}if((0,G.Lx)(e.state.activeTool.type)){var g=e.state.draggingElement;(0,G.Mn)(g,!1)?e.maybeSuggestBindingsForLinearElementAtCoords(g,[f],e.state.startBoundElement):e.maybeSuggestBindingAtCursor(f)}if(e.state.multiElement){var v=e.state.multiElement,y=v.x,x=v.y,w=v.points,k=v.lastCommittedPoint,E=w[w.length-1];if((0,I.Uk)(e.canvas,e.state),E===k)(0,ne.LW)(p-y,h-x,E[0],E[1])>=T.qx?(0,_.DR)(v,{points:[].concat((0,i.Z)(w),[[p-y,h-x]])}):(0,I.KJ)(e.canvas,T.oc.POINTER);else if(w.length>2&&k&&(0,ne.LW)(p-y,h-x,k[0],k[1])<T.qx)(0,I.KJ)(e.canvas,T.oc.POINTER),(0,_.DR)(v,{points:w.slice(0,-1)});else{var S,O=(0,ne.wC)(p,h,e.state.gridSize),C=(0,o.Z)(O,2),P=C[0],M=C[1],D=null!==(S=null==v?void 0:v.lastCommittedPoint)&&void 0!==S?S:[0,0],A=(0,o.Z)(D,2),L=A[0],Z=A[1],R=P-y-L,z=M-x-Z;if((0,j.Ge)(t)){var B=(0,U.o4)(L+y,Z+x,P,M);R=B.width,z=B.height}(0,ne.g6)(w,e.state.zoom.value)&&(0,I.KJ)(e.canvas,T.oc.POINTER),(0,_.DR)(v,{points:[].concat((0,i.Z)(w.slice(0,-1)),[[L+R,Z+z]])})}}else{if(!(Boolean(t.buttons)||"selection"!==e.state.activeTool.type&&"text"!==e.state.activeTool.type&&"eraser"!==e.state.activeTool.type)){var H=e.scene.getNonDeletedElements(),F=(0,ie.eD)(H,e.state);if(1!==F.length||d||e.state.editingLinearElement){if(F.length>1&&!d){var W=(0,U.n2)((0,U.KP)(F),p,h,e.state.zoom,t.pointerType);if(W)return void(0,I.KJ)(e.canvas,(0,U.Un)({transformHandleType:W}))}}else{var Y=(0,U.jt)(H,e.state,p,h,e.state.zoom,t.pointerType);if(Y&&Y.transformHandleType)return void(0,I.KJ)(e.canvas,(0,U.Un)(Y))}var q=e.getElementAtPosition(f.x,f.y);e.hitLinkElement=e.getElementLinkAtPosition(f,q),(0,N.EN)(e.state)||(e.hitLinkElement&&!e.state.selectedElementIds[e.hitLinkElement.id]?((0,I.KJ)(e.canvas,T.oc.POINTER),(0,qn.Pp)(e.hitLinkElement,e.state)):((0,qn.lV)(),q&&q.link&&e.state.selectedElementIds[q.id]&&!e.state.contextMenu&&!e.state.showHyperlinkPopup?e.setState({showHyperlinkPopup:"info"}):"text"===e.state.activeTool.type?(0,I.KJ)(e.canvas,(0,U.iB)(q)?T.oc.TEXT:T.oc.CROSSHAIR):e.state.viewModeEnabled?(0,I.KJ)(e.canvas,T.oc.GRAB):d?(0,I.KJ)(e.canvas,T.oc.AUTO):e.state.selectedLinearElement?e.handleHoverSelectedLinearElement(e.state.selectedLinearElement,p,h):t[j.tW.CTRL_OR_CMD]?(0,I.KJ)(e.canvas,T.oc.AUTO):!q&&!e.isHittingCommonBoundingBoxOfSelectedElements(f,F)||null!=q&&q.locked||(0,I.KJ)(e.canvas,T.oc.MOVE)))}}}},this.handleEraser=function(t,n,r){for(var o=function(e){e.forEach((function(e){e.locked||(i.push(e.id),t.altKey?n.elementIdsToErase[e.id]&&n.elementIdsToErase[e.id].erase&&(n.elementIdsToErase[e.id].erase=!1):n.elementIdsToErase[e.id]||(n.elementIdsToErase[e.id]={erase:!0,opacity:e.opacity}))}))},i=[],a=(0,ne.LW)(n.lastCoords.x,n.lastCoords.y,r.x,r.y),l=10/e.state.zoom.value,c=br({},n.lastCoords),s=0;s<=a;){if(o(e.getElementsAtPosition(c.x,c.y)),s===a)break;var u=(s=Math.min(s+l,a))/a,d=(1-u)*c.x+u*r.x,f=(1-u)*c.y+u*r.y;c.x=d,c.y=f}var p=e.scene.getElementsIncludingDeleted().map((function(e){var r=(0,G.Xh)(e)&&i.includes(e.containerId)?e.containerId:e.id;if(i.includes(r)){if(!t.altKey)return(0,_.BE)(e,{opacity:T.xY});if(n.elementIdsToErase[r]&&!1===n.elementIdsToErase[r].erase)return(0,_.BE)(e,{opacity:n.elementIdsToErase[r].opacity})}return e}));e.scene.replaceAllElements(p),n.lastCoords.x=r.x,n.lastCoords.y=r.y},this.handleTouchMove=function(e){Wr=!0},this.handleCanvasPointerDown=function(t){var n,r;if(e.state.contextMenu&&e.setState({contextMenu:null}),e.updateGestureOnPointerDown(t),"touch"===t.pointerType&&e.state.draggingElement&&"freedraw"===e.state.draggingElement.type){var o=e.state.draggingElement;e.updateScene(br(br({},o.points.length<10?{elements:e.scene.getElementsIncludingDeleted().filter((function(e){return e.id!==o.id}))}:{}),{},{appState:{draggingElement:null,editingElement:null,startBoundElement:null,suggestedBindings:[],selectedElementIds:Object.keys(e.state.selectedElementIds).filter((function(e){return e!==o.id})).reduce((function(t,n){return t[n]=e.state.selectedElementIds[n],t}),{})}}))}else{var i=document.getSelection();if(null!=i&&i.anchorNode&&i.removeAllRanges(),e.maybeOpenContextMenuAfterPointerDownOnTouchDevices(t),e.maybeCleanupAfterMissingPointerUp(t),e.state.penDetected||"pen"!==t.pointerType||e.setState((function(e){return{penMode:!0,penDetected:!0}})),!e.device.isTouchScreen&&["pen","touch"].includes(t.pointerType)&&(e.device=(0,I.v4)(e.device,{isTouchScreen:!0})),!Nr&&(e.lastPointerDown=t,e.setState({lastPointerDownWith:t.pointerType,cursorButton:"down"}),e.savePointer(t.clientX,t.clientY,"down"),!e.handleCanvasPanUsingWheelOrSpaceDrag(t)&&!(t.button!==T.Oh.MAIN&&t.button!==T.Oh.TOUCH||Xr.pointers.size>1))){var a=e.initialPointerDownState(t);if(e.setState({selectedElementsAreBeingDragged:!1}),!e.handleDraggingScrollBar(t,a))if(e.clearSelectionIfNotUsingSelection(),e.updateBindingEnabledOnPointerMove(t),!e.handleSelectionOnPointerDown(t,a))if(!e.state.penMode||"touch"!==t.pointerType||"selection"===e.state.activeTool.type||"text"===e.state.activeTool.type||"image"===e.state.activeTool.type)if("text"!==e.state.activeTool.type){if("arrow"===e.state.activeTool.type||"line"===e.state.activeTool.type)e.handleLinearElementOnPointerDown(t,e.state.activeTool.type,a);else if("image"===e.state.activeTool.type){(0,I.KJ)(e.canvas,T.oc.CROSSHAIR);var l=e.state.pendingImageElementId&&e.scene.getElement(e.state.pendingImageElementId);if(!l)return;e.setState({draggingElement:l,editingElement:l,pendingImageElementId:null,multiElement:null});var c=(0,I.dE)(t,e.state),s=c.x,u=c.y;(0,_.DR)(l,{x:s,y:u})}else"freedraw"===e.state.activeTool.type?e.handleFreeDrawElementOnPointerDown(t,e.state.activeTool.type,a):"custom"===e.state.activeTool.type?"comment"===e.state.activeTool.customType&&(0,I.Uk)(e.canvas,e.state):"frame"===e.state.activeTool.type?e.createFrameElementOnPointerDown(a):"eraser"!==e.state.activeTool.type&&"hand"!==e.state.activeTool.type&&e.createGenericElementOnPointerDown(e.state.activeTool.type,a);null===(n=e.props)||void 0===n||null===(r=n.onPointerDown)||void 0===r||r.call(n,e.state.activeTool,a),e.onPointerDownEmitter.trigger(e.state.activeTool,a,t);var d=e.onPointerMoveFromPointerDownHandler(a),f=e.onPointerUpFromPointerDownHandler(a),p=e.onKeyDownFromPointerDownHandler(a),h=e.onKeyUpFromPointerDownHandler(a);Vr=f,e.state.viewModeEnabled||(window.addEventListener(T.Ks.POINTER_MOVE,d),window.addEventListener(T.Ks.POINTER_UP,f),window.addEventListener(T.Ks.KEYDOWN,p),window.addEventListener(T.Ks.KEYUP,h),a.eventListeners.onMove=d,a.eventListeners.onUp=f,a.eventListeners.onKeyUp=h,a.eventListeners.onKeyDown=p)}else e.handleTextOnPointerDown(t,a)}}},this.handleCanvasPointerUp=function(t){if(e.lastPointerUp=t,e.device.isTouchScreen){var n=(0,I.dE)({clientX:t.clientX,clientY:t.clientY},e.state),r=e.getElementAtPosition(n.x,n.y);e.hitLinkElement=e.getElementLinkAtPosition(n,r)}e.hitLinkElement&&!e.state.selectedElementIds[e.hitLinkElement.id]&&e.redirectToLink(t,e.device.isTouchScreen),e.removePointer(t)},this.maybeOpenContextMenuAfterPointerDownOnTouchDevices=function(t){"touch"===t.pointerType&&(Wr=!1,Fr?Wr=!0:Fr=window.setTimeout((function(){Fr=0,Wr||e.handleCanvasContextMenu(t)}),T.nM))},this.resetContextMenuTimer=function(){clearTimeout(Fr),Fr=0,Wr=!1},this.handleCanvasPanUsingWheelOrSpaceDrag=function(t){if(!(Xr.pointers.size<=1&&(t.button===T.Oh.WHEEL||t.button===T.Oh.MAIN&&zr||(0,N.l$)(e.state)||e.state.viewModeEnabled))||(0,U.iB)(e.state.editingElement))return!1;Nr=!0,t.preventDefault();var n=!1,r=/Linux/.test(window.navigator.platform);(0,I.KJ)(e.canvas,T.oc.GRABBING);var o=t.clientX,i=t.clientY,a=(0,I.$9)((function(t){var a=o-t.clientX,l=i-t.clientY;if(o=t.clientX,i=t.clientY,r&&!n&&(Math.abs(a)>1||Math.abs(l)>1)){n=!0;var c=function e(t){document.body.removeEventListener(T.Ks.PASTE,e),t.stopPropagation()};document.body.addEventListener(T.Ks.PASTE,c),window.addEventListener(T.Ks.POINTER_UP,(function e(){setTimeout((function(){document.body.removeEventListener(T.Ks.PASTE,c),window.removeEventListener(T.Ks.POINTER_UP,e)}),100)}))}e.translateCanvas({scrollX:e.state.scrollX-a/e.state.zoom.value,scrollY:e.state.scrollY-l/e.state.zoom.value})})),l=(0,I.tH)(Vr=function(){Vr=null,Nr=!1,zr||(e.state.viewModeEnabled?(0,I.KJ)(e.canvas,T.oc.GRAB):(0,I.Uk)(e.canvas,e.state)),e.setState({cursorButton:"up"}),e.savePointer(t.clientX,t.clientY,"up"),window.removeEventListener(T.Ks.POINTER_MOVE,a),window.removeEventListener(T.Ks.POINTER_UP,l),window.removeEventListener(T.Ks.BLUR,l),a.flush()});return window.addEventListener(T.Ks.BLUR,l),window.addEventListener(T.Ks.POINTER_MOVE,a,{passive:!0}),window.addEventListener(T.Ks.POINTER_UP,l),!0},this.clearSelectionIfNotUsingSelection=function(){"selection"!==e.state.activeTool.type&&e.setState({selectedElementIds:{},selectedGroupIds:{},editingGroupId:null})},this.handleSelectionOnPointerDown=function(t,n){if("selection"===e.state.activeTool.type){var r=e.scene.getNonDeletedElements(),o=(0,ie.eD)(r,e.state);if(1!==o.length||e.state.editingLinearElement)o.length>1&&(n.resize.handleType=(0,U.n2)((0,U.KP)(o),n.origin.x,n.origin.y,e.state.zoom,t.pointerType));else{var i=(0,U.jt)(r,e.state,n.origin.x,n.origin.y,e.state.zoom,t.pointerType);null!=i&&(e.setState({resizingElement:i.element}),n.resize.handleType=i.transformHandleType)}if(n.resize.handleType)n.resize.isResizing=!0,n.resize.offset=(0,I.AK)((0,U.xx)(n.resize.handleType,o,n.origin.x,n.origin.y)),1===o.length&&(0,G.bt)(o[0])&&2===o[0].points.length&&(n.resize.arrowDirection=(0,U.T)(n.resize.handleType,o[0]));else{var a;if(e.state.selectedLinearElement){var l=e.state.editingLinearElement||e.state.selectedLinearElement,c=K._.handlePointerDown(t,e.state,e.history,n.origin,l);if(c.hitElement&&(n.hit.element=c.hitElement),c.linearElementEditor&&(e.setState({selectedLinearElement:c.linearElementEditor}),e.state.editingLinearElement&&e.setState({editingLinearElement:c.linearElementEditor})),c.didAddPoint)return!0}if(n.hit.element=null!==(a=n.hit.element)&&void 0!==a?a:e.getElementAtPosition(n.origin.x,n.origin.y),n.hit.element)if(e.getElementLinkAtPosition({x:n.origin.x,y:n.origin.y},n.hit.element))return!1;n.hit.allHitElements=e.getElementsAtPosition(n.origin.x,n.origin.y);var s=n.hit.element,u=n.hit.allHitElements.some((function(t){return e.isASelectedElement(t)}));if(null!==s&&u||t.shiftKey||n.hit.hasHitCommonBoundingBoxOfSelectedElements||e.clearSelection(s),e.state.editingLinearElement)e.setState({selectedElementIds:(0,p.Z)({},e.state.editingLinearElement.elementId,!0)});else if(null!=s){if(t[j.tW.CTRL_OR_CMD])return e.state.selectedElementIds[s.id]||(n.hit.wasAddedToSelection=!0),e.setState((function(t){return br(br({},(0,$.iE)(t,s)),{},{previousSelectedElementIds:e.state.selectedElementIds})})),!1;e.state.selectedElementIds[s.id]||(e.state.editingGroupId&&!(0,$.Nd)(s,e.state.editingGroupId)&&e.setState({selectedElementIds:{},selectedGroupIds:{},editingGroupId:null}),u||n.hit.hasHitCommonBoundingBoxOfSelectedElements||(e.setState((function(t){var n=br(br({},t.selectedElementIds),{},(0,p.Z)({},s.id,!0)),r=[];if(Object.keys(t.selectedElementIds).forEach((function(t){var n=e.scene.getElement(t);n&&r.push(n)})),"frame"===s.type)(0,tr.wO)(r,s.id).forEach((function(e){n[e.id]=!1}));else if(s.frameId)n[s.frameId]&&(n[s.id]=!1);else{var o=s.groupIds,i=new Set(o.flatMap((function(t){return(0,$.Fb)(e.scene.getNonDeletedElements(),t)})).filter((function(e){return"frame"===e.type})).map((function(e){return e.id})));i.size>0&&r.forEach((function(t){t.frameId&&i.has(t.frameId)&&(n[t.id]=!1,t.groupIds.flatMap((function(t){return(0,$.Fb)(e.scene.getNonDeletedElements(),t)})).forEach((function(e){return n[e.id]=!1})))}))}return(0,$.bO)(br(br({},t),{},{selectedElementIds:n,showHyperlinkPopup:!!s.link&&"info"}),e.scene.getNonDeletedElements())})),n.hit.wasAddedToSelection=!0))}e.setState({previousSelectedElementIds:e.state.selectedElementIds})}}return!1},this.handleTextOnPointerDown=function(t,n){if(!(0,U.iB)(e.state.editingElement)){var r=n.origin.x,o=n.origin.y,i=e.getElementAtPosition(r,o,{includeBoundTextElement:!0}),a=(0,Pe.OW)(e.scene.getNonDeletedElements(),e.state,r,o);(0,G.Xo)(i)&&(a=i,r=i.x+i.width/2,o=i.y+i.height/2),e.startTextEditing({sceneX:r,sceneY:o,insertAtParentCenter:!t.altKey,container:a}),(0,I.z8)(e.canvas),e.state.activeTool.locked||e.setState({activeTool:(0,I.Om)(e.state,{type:"selection"})})}},this.handleFreeDrawElementOnPointerDown=function(t,n,r){var a=(0,ne.wC)(r.origin.x,r.origin.y,null),l=(0,o.Z)(a,2),c=l[0],s=l[1],u=e.getTopLayerFrameAtSceneCoords({x:c,y:s}),d=(0,Y.KE)({type:n,x:c,y:s,strokeColor:e.state.currentItemStrokeColor,backgroundColor:e.state.currentItemBackgroundColor,fillStyle:e.state.currentItemFillStyle,strokeWidth:e.state.currentItemStrokeWidth,strokeStyle:e.state.currentItemStrokeStyle,roughness:e.state.currentItemRoughness,opacity:e.state.currentItemOpacity,roundness:null,simulatePressure:.5===t.pressure,locked:!1,frameId:u?u.id:null});e.setState((function(e){return{selectedElementIds:br(br({},e.selectedElementIds),{},(0,p.Z)({},d.id,!1))}}));var f=d.simulatePressure?d.pressures:[].concat((0,i.Z)(d.pressures),[t.pressure]);(0,_.DR)(d,{points:[[0,0]],pressures:f});var h=(0,C.Y9)(r.origin,e.scene);e.scene.addNewElement(d),e.setState({draggingElement:d,editingElement:d,startBoundElement:h,suggestedBindings:[]})},this.createImageElement=function(t){var n=t.sceneX,r=t.sceneY,i=(0,ne.wC)(n,r,e.state.gridSize),a=(0,o.Z)(i,2),l=a[0],c=a[1],s=e.getTopLayerFrameAtSceneCoords({x:l,y:c});return(0,U.vw)({type:"image",x:l,y:c,strokeColor:e.state.currentItemStrokeColor,backgroundColor:e.state.currentItemBackgroundColor,fillStyle:e.state.currentItemFillStyle,strokeWidth:e.state.currentItemStrokeWidth,strokeStyle:e.state.currentItemStrokeStyle,roughness:e.state.currentItemRoughness,roundness:null,opacity:e.state.currentItemOpacity,locked:!1,frameId:s?s.id:null})},this.handleLinearElementOnPointerDown=function(t,n,r){if(e.state.multiElement){var a=e.state.multiElement;if("line"===a.type&&(0,ne.g6)(a.points,e.state.zoom.value))return(0,_.DR)(a,{lastCommittedPoint:a.points[a.points.length-1]}),void e.actionManager.executeAction(k.actionFinalize);var l=a.x,c=a.y,s=a.lastCommittedPoint;if(a.points.length>1&&s&&(0,ne.LW)(r.origin.x-l,r.origin.y-c,s[0],s[1])<T.qx)return void e.actionManager.executeAction(k.actionFinalize);e.setState((function(e){return{selectedElementIds:br(br({},e.selectedElementIds),{},(0,p.Z)({},a.id,!0))}})),(0,_.DR)(a,{lastCommittedPoint:a.points[a.points.length-1]}),(0,I.KJ)(e.canvas,T.oc.POINTER)}else{var u=(0,ne.wC)(r.origin.x,r.origin.y,e.state.gridSize),d=(0,o.Z)(u,2),f=d[0],h=d[1],m=e.getTopLayerFrameAtSceneCoords({x:f,y:h}),g=e.state,v=g.currentItemStartArrowhead,b=g.currentItemEndArrowhead,y="arrow"===n?[v,b]:[null,null],x=(0,o.Z)(y,2),w=x[0],E=x[1],S=(0,U.y8)({type:n,x:f,y:h,strokeColor:e.state.currentItemStrokeColor,backgroundColor:e.state.currentItemBackgroundColor,fillStyle:e.state.currentItemFillStyle,strokeWidth:e.state.currentItemStrokeWidth,strokeStyle:e.state.currentItemStrokeStyle,roughness:e.state.currentItemRoughness,opacity:e.state.currentItemOpacity,roundness:"round"===e.state.currentItemRoundness?{type:T.a6.PROPORTIONAL_RADIUS}:null,startArrowhead:w,endArrowhead:E,locked:!1,frameId:m?m.id:null});e.setState((function(e){return{selectedElementIds:br(br({},e.selectedElementIds),{},(0,p.Z)({},S.id,!1))}})),(0,_.DR)(S,{points:[].concat((0,i.Z)(S.points),[[0,0]])});var O=(0,C.Y9)(r.origin,e.scene);e.scene.addNewElement(S),e.setState({draggingElement:S,editingElement:S,startBoundElement:O,suggestedBindings:[]})}},this.createGenericElementOnPointerDown=function(t,n){var r=(0,ne.wC)(n.origin.x,n.origin.y,e.state.gridSize),i=(0,o.Z)(r,2),a=i[0],l=i[1],c=e.getTopLayerFrameAtSceneCoords({x:a,y:l}),s=(0,U.Up)({type:t,x:a,y:l,strokeColor:e.state.currentItemStrokeColor,backgroundColor:e.state.currentItemBackgroundColor,fillStyle:e.state.currentItemFillStyle,strokeWidth:e.state.currentItemStrokeWidth,strokeStyle:e.state.currentItemStrokeStyle,roughness:e.state.currentItemRoughness,opacity:e.state.currentItemOpacity,roundness:"round"===e.state.currentItemRoundness?{type:(0,G.QI)(t)?T.a6.ADAPTIVE_RADIUS:T.a6.PROPORTIONAL_RADIUS}:null,locked:!1,frameId:c?c.id:null});"selection"===s.type?e.setState({selectionElement:s,draggingElement:s}):(e.scene.addNewElement(s),e.setState({multiElement:null,draggingElement:s,editingElement:s}))},this.createFrameElementOnPointerDown=function(t){var n=(0,ne.wC)(t.origin.x,t.origin.y,e.state.gridSize),r=(0,o.Z)(n,2),a=r[0],l=r[1],c=(0,Y.M3)(br({x:a,y:l,opacity:e.state.currentItemOpacity,locked:!1},T.iG));e.scene.replaceAllElements([].concat((0,i.Z)(e.scene.getElementsIncludingDeleted()),[c])),e.setState({multiElement:null,draggingElement:c,editingElement:c})},this.restoreReadyToEraseElements=function(t){var n=e.scene.getElementsIncludingDeleted().map((function(e){return t.elementIdsToErase[e.id]&&t.elementIdsToErase[e.id].erase?(0,_.BE)(e,{opacity:t.elementIdsToErase[e.id].opacity}):(0,G.Xh)(e)&&t.elementIdsToErase[e.containerId]&&t.elementIdsToErase[e.containerId].erase?(0,_.BE)(e,{opacity:t.elementIdsToErase[e.containerId].opacity}):e.frameId&&t.elementIdsToErase[e.frameId]&&t.elementIdsToErase[e.frameId].erase?(0,_.BE)(e,{opacity:t.elementIdsToErase[e.frameId].opacity}):e}));e.scene.replaceAllElements(n)},this.eraseElements=function(t){var n=e.scene.getElementsIncludingDeleted().map((function(e){return t.elementIdsToErase[e.id]&&t.elementIdsToErase[e.id].erase||(0,G.Xh)(e)&&t.elementIdsToErase[e.containerId]&&t.elementIdsToErase[e.containerId].erase||e.frameId&&t.elementIdsToErase[e.frameId]&&t.elementIdsToErase[e.frameId].erase?(0,_.BE)(e,{isDeleted:!0}):e}));e.history.resumeRecording(),e.scene.replaceAllElements(n)},this.initializeImage=function(){var t=(0,a.Z)(m().mark((function t(n){var r,o,i,l,c,s,u,d,f,h,g,v,b,y,x;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(l=n.imageFile,c=n.imageElement,s=n.showCursorImagePreview,u=void 0!==s&&s,(0,Ve.Wr)(l)){t.next=3;break}throw new Error((0,O.t)("errors.unsupportedFileType"));case 3:if(d=l.type,(0,I.KJ)(e.canvas,"wait"),d!==T.LO.svg){t.next=23;break}return t.prev=6,t.t0=Ve.Pn,t.t1=Yn.bp,t.next=11,l.text();case 11:return t.t2=t.sent,t.next=14,(0,t.t1)(t.t2);case 14:t.t3=t.sent,t.t4=l.name,l=(0,t.t0)(t.t3,t.t4),t.next=23;break;case 19:throw t.prev=19,t.t5=t.catch(6),console.warn(t.t5),new Error((0,O.t)("errors.svgImageInsertError"));case 23:return t.next=25,(null===(r=(o=e.props).generateIdForFile)||void 0===r?void 0:r.call(o,l))||(0,Ve.tW)(l);case 25:if(f=t.sent){t.next=29;break}throw console.warn("Couldn't generate file id or the supplied `generateIdForFile` didn't resolve to one."),new Error((0,O.t)("errors.imageInsertError"));case 29:if(null!=(h=e.files[f])&&h.dataURL){t.next=42;break}return t.prev=31,t.next=34,(0,Ve.Tu)(l,{maxWidthOrHeight:T.h6});case 34:l=t.sent,t.next=40;break;case 37:t.prev=37,t.t6=t.catch(31),console.error("error trying to resing image file on insertion",t.t6);case 40:if(!(l.size>T.$n)){t.next=42;break}throw new Error((0,O.t)("errors.fileTooBig",{maxSize:"".concat(Math.trunc(T.$n/1024/1024),"MB")}));case 42:if(u&&(v=null===(g=e.files[f])||void 0===g?void 0:g.dataURL,b=v&&(0,Ve.KG)(v),e.setImagePreviewCursor(b||l)),t.t7=null===(i=e.files[f])||void 0===i?void 0:i.dataURL,t.t7){t.next=48;break}return t.next=47,(0,Ve.Sf)(l);case 47:t.t7=t.sent;case 48:return y=t.t7,x=(0,_.DR)(c,{fileId:f},!1),t.abrupt("return",new Promise(function(){var t=(0,a.Z)(m().mark((function t(n,r){var o,i;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(t.prev=0,e.files=br(br({},e.files),{},(0,p.Z)({},f,{mimeType:d,id:f,dataURL:y,created:Date.now(),lastRetrieved:Date.now()})),i=e.imageCache.get(f)){t.next=7;break}return e.addNewImagesToImageCache(),t.next=7,e.updateImageCache([x]);case 7:if(!((null==i?void 0:i.image)instanceof Promise)){t.next=10;break}return t.next=10,i.image;case 10:e.state.pendingImageElementId!==x.id&&(null===(o=e.state.draggingElement)||void 0===o?void 0:o.id)!==x.id&&e.initializeImageDimensions(x,!0),n(x),t.next=18;break;case 14:t.prev=14,t.t0=t.catch(0),console.error(t.t0),r(new Error((0,O.t)("errors.imageInsertError")));case 18:return t.prev=18,u||(0,I.z8)(e.canvas),t.finish(18);case 21:case"end":return t.stop()}}),t,null,[[0,14,18,21]])})));return function(e,n){return t.apply(this,arguments)}}()));case 51:case"end":return t.stop()}}),t,null,[[6,19],[31,37]])})));return function(e){return t.apply(this,arguments)}}(),this.insertImageElement=function(){var t=(0,a.Z)(m().mark((function t(n,r,o){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return e.scene.addNewElement(n),t.prev=1,t.next=4,e.initializeImage({imageFile:r,imageElement:n,showCursorImagePreview:o});case 4:t.next=11;break;case 6:t.prev=6,t.t0=t.catch(1),(0,_.DR)(n,{isDeleted:!0}),e.actionManager.executeAction(k.actionFinalize),e.setState({errorMessage:t.t0.message||(0,O.t)("errors.imageInsertError")});case 11:case"end":return t.stop()}}),t,null,[[1,6]])})));return function(e,n,r){return t.apply(this,arguments)}}(),this.setImagePreviewCursor=function(){var t=(0,a.Z)(m().mark((function t(n){var r,o,i,a,l,c,s;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return r=96,t.next=3,(0,Ve.Tu)(n,{maxWidthOrHeight:r});case 3:return o=t.sent,t.next=6,(0,Ve.Sf)(o);case 6:if(i=t.sent,n.type!==T.LO.svg){t.next=20;break}return t.next=10,(0,Yn.PK)(i);case 10:a=t.sent,l=Math.min(a.height,r),(c=l*(a.width/a.height))>r&&(l=(c=r)*(a.height/a.width)),(s=document.createElement("canvas")).height=l,s.width=c,s.getContext("2d").drawImage(a,0,0,c,l),i=s.toDataURL(T.LO.svg);case 20:e.state.pendingImageElementId&&(0,I.KJ)(e.canvas,"url(".concat(i,") 4 4, auto"));case 21:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}(),this.onImageAction=(0,a.Z)(m().mark((function t(){var n,r,o,i,a,l,c,s,u,d=arguments;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return n=d.length>0&&void 0!==d[0]?d[0]:{insertOnCanvasDirectly:!1},r=n.insertOnCanvasDirectly,t.prev=1,o=e.state.width/2+e.state.offsetLeft,i=e.state.height/2+e.state.offsetTop,a=(0,I.dE)({clientX:o,clientY:i},e.state),l=a.x,c=a.y,t.next=7,(0,Xe.I$)({description:"Image",extensions:Object.keys(T.KL)});case 7:s=t.sent,u=e.createImageElement({sceneX:l,sceneY:c}),r?(e.insertImageElement(u,s),e.initializeImageDimensions(u),e.setState({selectedElementIds:(0,p.Z)({},u.id,!0)},(function(){e.actionManager.executeAction(k.actionFinalize)}))):e.setState({pendingImageElementId:u.id},(function(){e.insertImageElement(u,s,!0)})),t.next=16;break;case 12:t.prev=12,t.t0=t.catch(1),"AbortError"!==t.t0.name?console.error(t.t0):console.warn(t.t0),e.setState({pendingImageElementId:null,editingElement:null,activeTool:(0,I.Om)(e.state,{type:"selection"})},(function(){e.actionManager.executeAction(k.actionFinalize)}));case 16:case"end":return t.stop()}}),t,null,[[1,12]])}))),this.initializeImageDimensions=function(t){var n,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o=(0,G.wi)(t)&&(null===(n=e.imageCache.get(t.fileId))||void 0===n?void 0:n.image);if(!o||o instanceof Promise){if(t.width<T.f/e.state.zoom.value&&t.height<T.f/e.state.zoom.value){var i=100/e.state.zoom.value;(0,_.DR)(t,{x:t.x-i/2,y:t.y-i/2,width:i,height:i})}}else if(r||t.width<T.f/e.state.zoom.value&&t.height<T.f/e.state.zoom.value){var a=Math.max(e.state.height-120,160),l=Math.min(a,Math.floor(.5*e.state.height)/e.state.zoom.value),c=Math.min(o.naturalHeight,l),s=c*(o.naturalWidth/o.naturalHeight),u=t.x+t.width/2-s/2,d=t.y+t.height/2-c/2;(0,_.DR)(t,{x:u,y:d,width:s,height:c})}},this.updateImageCache=function(){var t=(0,a.Z)(m().mark((function t(n){var r,o,i,a,l,c,s,u=arguments;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return r=u.length>1&&void 0!==u[1]?u[1]:e.files,t.next=3,(0,Yn.Xx)({imageCache:e.imageCache,fileIds:n.map((function(e){return e.fileId})),files:r});case 3:if(o=t.sent,i=o.updatedFiles,a=o.erroredFiles,i.size||a.size){l=hr(n);try{for(l.s();!(c=l.n()).done;)s=c.value,i.has(s.fileId)&&(0,re.bI)(s)}catch(e){l.e(e)}finally{l.f()}}return a.size&&e.scene.replaceAllElements(e.scene.getElementsIncludingDeleted().map((function(e){return(0,G.wi)(e)&&a.has(e.fileId)?(0,_.BE)(e,{status:"error"}):e}))),t.abrupt("return",{updatedFiles:i,erroredFiles:a});case 9:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}(),this.addNewImagesToImageCache=(0,a.Z)(m().mark((function t(){var n,r,o,i,a=arguments;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(n=a.length>0&&void 0!==a[0]?a[0]:(0,Yn.oA)(e.scene.getNonDeletedElements()),r=a.length>1&&void 0!==a[1]?a[1]:e.files,!(o=n.filter((function(t){return!t.isDeleted&&!e.imageCache.has(t.fileId)}))).length){t.next=9;break}return t.next=6,e.updateImageCache(o,r);case 6:i=t.sent,i.updatedFiles.size&&e.scene.informMutation();case 9:case"end":return t.stop()}}),t)}))),this.scheduleImageRefresh=Vn()((function(){e.addNewImagesToImageCache()}),T.LL),this.updateBindingEnabledOnPointerMove=function(t){var n=(0,C.cz)(t);e.state.isBindingEnabled!==n&&e.setState({isBindingEnabled:n})},this.maybeSuggestBindingAtCursor=function(t){var n=(0,C.Y9)(t,e.scene);e.setState({suggestedBindings:null!=n?[n]:[]})},this.maybeSuggestBindingsForLinearElementAtCoords=function(t,n,r){if(n.length){var o=n.reduce((function(n,o){var i=(0,C.Y9)(o,e.scene);return null==i||(0,C.DK)(t,null==r?void 0:r.id,i)||n.push(i),n}),[]);e.setState({suggestedBindings:o})}},this.handleCanvasRef=function(t){var n,r,o;null!==t?(e.canvas=t,e.rc=y.Z.canvas(e.canvas),e.canvas.addEventListener(T.Ks.WHEEL,e.handleWheel,{passive:!1}),e.canvas.addEventListener(T.Ks.TOUCH_START,e.onTapStart),e.canvas.addEventListener(T.Ks.TOUCH_END,e.onTapEnd)):(null===(n=e.canvas)||void 0===n||n.removeEventListener(T.Ks.WHEEL,e.handleWheel),null===(r=e.canvas)||void 0===r||r.removeEventListener(T.Ks.TOUCH_START,e.onTapStart),null===(o=e.canvas)||void 0===o||o.removeEventListener(T.Ks.TOUCH_END,e.onTapEnd))},this.handleAppOnDrop=function(){var t=(0,a.Z)(m().mark((function t(n){var r,o,i,a,l,c,s,u,d,f;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,(0,Ve.bv)(n);case 2:if(r=t.sent,o=r.file,i=r.fileHandle,t.prev=5,!(0,Ve.Wr)(o)){t.next=26;break}if((null==o?void 0:o.type)!==T.LO.png&&(null==o?void 0:o.type)!==T.LO.svg){t.next=20;break}return t.prev=8,t.next=11,(0,H.cT)(o,e.state,e.scene.getElementsIncludingDeleted(),i);case 11:return a=t.sent,e.syncActionResult(br(br({},a),{},{appState:br(br({},a.appState||e.state),{},{isLoading:!1}),replaceFiles:!0,commitToHistory:!0})),t.abrupt("return");case 16:if(t.prev=16,t.t0=t.catch(8),"EncodingError"===t.t0.name){t.next=20;break}throw t.t0;case 20:return l=(0,I.dE)(n,e.state),c=l.x,s=l.y,u=e.createImageElement({sceneX:c,sceneY:s}),e.insertImageElement(u,o),e.initializeImageDimensions(u),e.setState({selectedElementIds:(0,p.Z)({},u.id,!0)}),t.abrupt("return");case 26:t.next=31;break;case 28:return t.prev=28,t.t1=t.catch(5),t.abrupt("return",e.setState({isLoading:!1,errorMessage:t.t1.message}));case 31:if(!(d=n.dataTransfer.getData(T.LO.excalidrawlib))||"string"!=typeof d){t.next=35;break}try{f=(0,Ve.wf)(d),e.addElementsFromPasteOrLibrary({elements:(0,F.WV)(f),position:n,files:null})}catch(t){e.setState({errorMessage:t.message})}return t.abrupt("return");case 35:if(!o){t.next=38;break}return t.next=38,e.loadFileToCanvas(o,i);case 38:case"end":return t.stop()}}),t,null,[[5,28],[8,16]])})));return function(e){return t.apply(this,arguments)}}(),this.loadFileToCanvas=function(){var t=(0,a.Z)(m().mark((function t(n,r){var o;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,(0,Ve.gY)(n);case 2:return n=t.sent,t.prev=3,t.next=6,(0,Ve.ZY)(n,e.state,e.scene.getElementsIncludingDeleted(),r);case 6:if((o=t.sent).type!==T.LO.excalidraw){t.next=12;break}e.setState({isLoading:!0}),e.syncActionResult(br(br({},o.data),{},{appState:br(br({},o.data.appState||e.state),{},{isLoading:!1}),replaceFiles:!0,commitToHistory:!0})),t.next=15;break;case 12:if(o.type!==T.LO.excalidrawlib){t.next=15;break}return t.next=15,e.library.updateLibrary({libraryItems:n,merge:!0,openLibraryMenu:!0}).catch((function(t){console.error(t),e.setState({errorMessage:(0,O.t)("errors.importLibraryError")})}));case 15:t.next=20;break;case 17:t.prev=17,t.t0=t.catch(3),e.setState({isLoading:!1,errorMessage:t.t0.message});case 20:case"end":return t.stop()}}),t,null,[[3,17]])})));return function(e,n){return t.apply(this,arguments)}}(),this.handleCanvasContextMenu=function(t){if(t.preventDefault(),"touch"!==t.nativeEvent.pointerType&&("pen"!==t.nativeEvent.pointerType||t.button===T.Oh.SECONDARY)||"selection"===e.state.activeTool.type){var n=(0,I.dE)(t,e.state),r=n.x,o=n.y,i=e.getElementAtPosition(r,o,{preferSelected:!0,includeLockedElements:!0}),a=(0,ie.eD)(e.scene.getNonDeletedElements(),e.state),l=e.isHittingCommonBoundingBoxOfSelectedElements({x:r,y:o},a),c=i||l?"element":"canvas",s=e.excalidrawContainerRef.current.getBoundingClientRect(),u=s.top,d=s.left,f=t.clientX-d,h=t.clientY-u;(0,L.L)("contextMenu","openContextMenu",c),e.setState(br(br({},i&&!e.state.selectedElementIds[i.id]?(0,$.bO)(br(br({},e.state),{},{selectedElementIds:(0,p.Z)({},i.id,!0),selectedLinearElement:(0,G.bt)(i)?new K._(i,e.scene):null}),e.scene.getNonDeletedElements()):e.state),{},{showHyperlinkPopup:!1}),(function(){e.setState({contextMenu:{top:h,left:f,items:e.getContextMenuItems(c)}})}))}},this.maybeDragNewGenericElement=function(t,n){var r=e.state.draggingElement,i=t.lastCoords;if(r)if("selection"===r.type&&"eraser"!==e.state.activeTool.type)(0,U.EJ)(r,e.state.activeTool.type,t.origin.x,t.origin.y,i.x,i.y,(0,I.TE)(t.origin.x,i.x),(0,I.TE)(t.origin.y,i.y),(0,j.E0)(n),(0,j.OA)(n));else{var a,l=(0,ne.wC)(i.x,i.y,e.state.gridSize),c=(0,o.Z)(l,2),s=c[0],u=c[1],d=(0,G.wi)(r)&&(null===(a=e.imageCache.get(r.fileId))||void 0===a?void 0:a.image),f=!d||d instanceof Promise?null:d.width/d.height;(0,U.EJ)(r,e.state.activeTool.type,t.originInGrid.x,t.originInGrid.y,s,u,(0,I.TE)(t.originInGrid.x,s),(0,I.TE)(t.originInGrid.y,u),(0,G.pC)(r)?!(0,j.E0)(n):(0,j.E0)(n),(0,j.OA)(n),f),e.maybeSuggestBindingForAll([r]),"frame"===e.state.activeTool.type&&e.setState({elementsToHighlight:(0,tr.ni)(e.scene.getNonDeletedElements(),r,e.state)})}},this.maybeHandleResize=function(t,n){var r=(0,ie.eD)(e.scene.getNonDeletedElements(),e.state),a=r.filter((function(e){return"frame"===e.type})),l=t.resize.handleType;if(a.length>0&&"rotation"===l)return!1;e.setState({isResizing:l&&"rotation"!==l,isRotating:"rotation"===l});var c=t.lastCoords,s=(0,ne.wC)(c.x-t.resize.offset.x,c.y-t.resize.offset.y,e.state.gridSize),u=(0,o.Z)(s,2),d=u[0],f=u[1],p=new Map;if(a.forEach((function(t){(0,tr.wO)(e.scene.getNonDeletedElements(),t.id).forEach((function(e){p.set(t.id+e.id,{x:e.x-t.x,y:e.y-t.y})}))})),(0,U.vY)(t,l,r,t.resize.arrowDirection,(0,j.Ge)(n),(0,j.OA)(n),1===r.length&&(0,G.pC)(r[0])?!(0,j.E0)(n):(0,j.E0)(n),d,f,t.resize.center.x,t.resize.center.y)){e.maybeSuggestBindingForAll(r);var h=new Set;return a.forEach((function(t){var n=(0,tr.wO)(e.scene.getNonDeletedElements(),t.id);l&&(l.includes("w")&&n.forEach((function(e){var n,r;(0,_.DR)(e,{x:t.x+((null===(n=p.get(t.id+e.id))||void 0===n?void 0:n.x)||0),y:t.y+((null===(r=p.get(t.id+e.id))||void 0===r?void 0:r.y)||0)})})),l.includes("n")&&n.forEach((function(e){var n,r;(0,_.DR)(e,{x:t.x+((null===(n=p.get(t.id+e.id))||void 0===n?void 0:n.x)||0),y:t.y+((null===(r=p.get(t.id+e.id))||void 0===r?void 0:r.y)||0)})}))),(0,tr.ni)(e.scene.getNonDeletedElements(),t,e.state).forEach((function(e){return h.add(e)}))})),e.setState({elementsToHighlight:(0,i.Z)(h)}),!0}return!1},this.getContextMenuItems=function(t){var n=[];return n.push(k.actionCopyAsPng,k.actionCopyAsSvg),"canvas"===t?e.state.viewModeEnabled?[].concat(n,[k.actionToggleGridMode,k.actionToggleZenMode,Kn,k.actionToggleStats]):[rr.yQ,Oe,k.actionCopyAsPng,k.actionCopyAsSvg,k.copyText,Oe,k.actionSelectAll,Jn.U,Oe,k.actionToggleGridMode,k.actionToggleZenMode,Kn,k.actionToggleStats]:(n.push(k.copyText),e.state.viewModeEnabled?[k.actionCopy].concat(n):[k.actionCut,k.actionCopy,rr.yQ,lr,cr,Oe].concat(n,[Oe,k.actionCopyStyles,k.actionPasteStyles,Oe,k.actionGroup,k.actionUnbindText,k.actionBindText,ur.JQ,k.actionUngroup,Oe,k.actionAddToLibrary,Oe,k.actionSendBackward,k.actionBringForward,k.actionSendToBack,k.actionBringToFront,Oe,k.actionFlipHorizontal,k.actionFlipVertical,Oe,k.actionToggleLinearEditor,k.actionLink,k.actionDuplicateSelection,k.actionToggleElementLock,Oe,k.actionDeleteSelected]))},this.handleWheel=(0,I.tH)((function(t){if(t.preventDefault(),!Nr){var n=t.deltaX,r=t.deltaY;if(t.metaKey||t.ctrlKey){var o=Math.sign(r),i=100*T.V4,a=Math.abs(r),l=r;a>i&&(l=i*o);var c=e.state.zoom.value-l/100;return c+=Math.log10(Math.max(1,e.state.zoom.value))*-o*Math.min(1,a/20),e.translateCanvas((function(t){return br(br({},(0,le.E)({viewportX:e.lastViewportPosition.x,viewportY:e.lastViewportPosition.y,nextZoom:(0,ie.j)(c)},t)),{},{shouldCacheIgnoreZoom:!0})})),void e.resetShouldCacheIgnoreZoomDebounced()}t.shiftKey?e.translateCanvas((function(e){var t=e.zoom;return{scrollX:e.scrollX-(r||n)/t.value}})):e.translateCanvas((function(e){var t=e.zoom,o=e.scrollX,i=e.scrollY;return{scrollX:o-n/t.value,scrollY:i-r/t.value}}))}})),this.savePointer=function(t,n,r){var o,i;if(t&&n){var a=(0,I.dE)({clientX:t,clientY:n},e.state);isNaN(a.x)||isNaN(a.y),null===(o=(i=e.props).onPointerUpdate)||void 0===o||o.call(i,{pointer:a,button:r,pointersMap:Xr.pointers})}},this.resetShouldCacheIgnoreZoomDebounced=(0,I.Ds)((function(){e.unmounted||e.setState({shouldCacheIgnoreZoom:!1})}),300),this.updateDOMRect=function(t){var n;if(null!==(n=e.excalidrawContainerRef)&&void 0!==n&&n.current){var r=e.excalidrawContainerRef.current.getBoundingClientRect(),o=r.width,i=r.height,a=r.left,l=r.top,c=e.state,s=c.width,u=c.height,d=c.offsetTop,f=c.offsetLeft;if(o===s&&i===u&&a===f&&l===d)return void(t&&t());e.setState({width:o,height:i,offsetLeft:a,offsetTop:l},(function(){t&&t()}))}},this.refresh=function(){e.setState(br({},e.getCanvasOffsets()))}};"production"!==T.Vi.TEST&&"production"!==T.Vi.DEVELOPMENT||(window.h=window.h||{},Object.defineProperties(window.h,{elements:{configurable:!0,get:function(){var e;return null===(e=this.app)||void 0===e?void 0:e.scene.getElementsIncludingDeleted()},set:function(e){var t;return null===(t=this.app)||void 0===t?void 0:t.scene.replaceAllElements(e)}}}));var Jr=qr},7172:function(e,t,n){"use strict";n.d(t,{z:function(){return O}});var r=n(7169),o=n(2726),i=n(45),a=n(6340),l=n(487),c=n.n(l),s=n(631),u=n.n(s),d=n(2052),f=n.n(d),p=n(4010),h=n.n(p),m=n(1469),g=n.n(m),v=n(9329),b=n.n(v),y=n(3137),x={};x.styleTagTransform=b(),x.setAttributes=h(),x.insert=f().bind(null,"head"),x.domAPI=u(),x.insertStyleElement=g();c()(y.Z,x),y.Z&&y.Z.locals&&y.Z.locals;var w=n(4512),k=["type","onSelect","selected","children","className"];function E(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function S(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?E(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):E(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var O=function(e){var t=e.type,n=void 0===t?"button":t,r=e.onSelect,l=e.selected,c=e.children,s=e.className,u=void 0===s?"":s,d=(0,o.Z)(e,k);return(0,w.jsx)("button",S(S({onClick:(0,a.Mj)(d.onClick,(function(e){r()})),type:n,className:(0,i.Z)("excalidraw-button",u,{selected:l})},d),{},{children:c}))}},3807:function(e,t,n){"use strict";n.d(t,{o:function(){return x}});var r=n(45),o=n(3646),i=n(487),a=n.n(i),l=n(631),c=n.n(l),s=n(2052),u=n.n(s),d=n(4010),f=n.n(d),p=n(1469),h=n.n(p),m=n(9329),g=n.n(m),v=n(6029),b={};b.styleTagTransform=g(),b.setAttributes=f(),b.insert=u().bind(null,"head"),b.domAPI=c(),b.insertStyleElement=h();a()(v.Z,b),v.Z&&v.Z.locals&&v.Z.locals;var y=n(4512),x=function(e){var t=e.children,n=e.checked,i=e.onChange,a=e.className;return(0,y.jsxs)("div",{className:(0,r.Z)("Checkbox",a,{"is-checked":n}),onClick:function(e){i(!n,e),e.currentTarget.querySelector(".Checkbox-box").focus()},children:[(0,y.jsx)("button",{className:"Checkbox-box",role:"checkbox","aria-checked":n,children:o.checkIcon}),(0,y.jsx)("div",{className:"Checkbox-label",children:t})]})}},8206:function(e,t,n){"use strict";n.d(t,{z:function(){return Ar},L:function(){return Pr}});var r=n(2577),o=n(6340),i=n(45),a=n(56),l=n(4512),c=function(e){var t,n=e.onChange,r=e.type,o=e.activeColor,c=e.topPicks;return"elementStroke"===r&&(t=a.fY),"elementBackground"===r&&(t=a.eq),"canvasBackground"===r&&(t=a.ay),c&&(t=c),t?(0,l.jsx)("div",{className:"color-picker__top-picks",children:t.map((function(e){return(0,l.jsx)("button",{className:(0,i.Z)("color-picker__button",{active:e===o,"is-transparent":"transparent"===e||!e}),style:{"--swatch-color":e},type:"button",title:e,onClick:function(){return n(e)},children:(0,l.jsx)("div",{className:"color-picker__button-outline"})},e)}))}):(console.error("Invalid type for TopPicks"),null)},s=n(9787),u=n.n(s),d=n(5202),f=n(3607),p=n(1930),h=function(e){for(var t=e.palette,n=e.color,o=0,i=Object.entries(t);o<i.length;o++){var a=(0,r.Z)(i[o],2),l=a[0],c=a[1];if(Array.isArray(c)){var s=c.indexOf(n);if(s>-1)return{colorName:l,shade:s}}else if(c===n)return{colorName:l,shade:null}}return null},m=[["q","w","e","r","t"],["a","s","d","f","g"],["z","x","c","v","b"]].flat(),g=function(e){var t=e.color,n=e.palette;return!Object.values(n).flat().includes(t)},v=(0,f.cn)(null),b=function(e,t,n){return(299*e+587*t+114*n)/1e3>=160?"black":"white"},y=function(e,t){if(t){var n=(new Option).style;if(n.color=e,n.color){var r=n.color.replace(/^(rgb|rgba)\(/,"").replace(/\)$/,"").replace(/\s/g,"").split(","),o=parseInt(r[0]),i=parseInt(r[1]),a=parseInt(r[2]);return b(o,i,a)}}if("transparent"===e)return"black";var l=parseInt(e.substring(1,3),16),c=parseInt(e.substring(3,5),16),s=parseInt(e.substring(5,7),16);return b(l,c,s)},x=function(e){var t=e.color,n=e.keyLabel,r=e.isCustomColor,o=void 0!==r&&r,i=e.isShade,a=void 0!==i&&i;return(0,l.jsxs)("div",{className:"color-picker__button__hotkey-label",style:{color:y(t,o)},children:[a&&"⇧",n]})},w=function(e){var t=e.hex,n=e.onChange,o=e.palette,a=h({color:t||"transparent",palette:o}),c=(0,f.KO)(v),u=(0,r.Z)(c,2),p=u[0],m=u[1],g=(0,s.useRef)(null);if((0,s.useEffect)((function(){g.current&&"shades"===p&&g.current.focus()}),[a,p]),a){var b=a.colorName,y=a.shade,w=o[b];if(Array.isArray(w))return(0,l.jsx)("div",{className:"color-picker-content--default shades",children:w.map((function(e,t){return(0,l.jsxs)("button",{ref:t===y&&"shades"===p?g:void 0,tabIndex:-1,type:"button",className:(0,i.Z)("color-picker__button color-picker__button--large",{active:t===y}),"aria-label":"Shade",title:"".concat(b," - ").concat(t+1),style:e?{"--swatch-color":e}:void 0,onClick:function(){n(e),m("shades")},children:[(0,l.jsx)("div",{className:"color-picker__button-outline"}),(0,l.jsx)(x,{color:e,keyLabel:t+1,isShade:!0})]},t)}))})}return(0,l.jsxs)("div",{className:"color-picker-content--default",style:{position:"relative"},tabIndex:-1,children:[(0,l.jsx)("button",{type:"button",tabIndex:-1,className:"color-picker__button color-picker__button--large color-picker__button--no-focus-visible"}),(0,l.jsx)("div",{tabIndex:-1,style:{position:"absolute",top:0,left:0,right:0,bottom:0,display:"flex",alignItems:"center",justifyContent:"center",textAlign:"center",fontSize:"0.75rem"},children:(0,d.t)("colorPicker.noShades")})]})},k=function(e){var t=e.palette,n=e.color,o=e.onChange,a=(e.label,e.activeShade),c=h({color:n||"transparent",palette:t}),u=(0,f.KO)(v),p=(0,r.Z)(u,2),g=p[0],b=p[1],y=(0,s.useRef)(null);return(0,s.useEffect)((function(){y.current&&"baseColors"===g&&y.current.focus()}),[null==c?void 0:c.colorName,g]),(0,l.jsx)("div",{className:"color-picker-content--default",children:Object.entries(t).map((function(e,t){var n=(0,r.Z)(e,2),s=n[0],u=n[1],f=(Array.isArray(u)?u[a]:u)||"transparent",p=m[t],h=(0,d.t)("colors.".concat(s.replace(/\d+/,"")),null,"");return(0,l.jsxs)("button",{ref:(null==c?void 0:c.colorName)===s?y:void 0,tabIndex:-1,type:"button",className:(0,i.Z)("color-picker__button color-picker__button--large",{active:(null==c?void 0:c.colorName)===s,"is-transparent":"transparent"===f||!f}),onClick:function(){o(f),b("baseColors")},title:"".concat(h).concat(f.startsWith("#")?" ".concat(f):""," — ").concat(p),"aria-label":"".concat(h," — ").concat(p),style:f?{"--swatch-color":f}:void 0,"data-testid":"color-".concat(s),children:[(0,l.jsx)("div",{className:"color-picker__button-outline"}),(0,l.jsx)(x,{color:f,keyLabel:p})]},s)}))})},E=function(e){var t=e.colors,n=e.color,o=e.onChange,a=e.label,c=(0,f.KO)(v),u=(0,r.Z)(c,2),d=u[0],p=u[1],h=(0,s.useRef)(null);return(0,s.useEffect)((function(){h.current&&h.current.focus()}),[n,d]),(0,l.jsx)("div",{className:"color-picker-content--default",children:t.map((function(e,t){return(0,l.jsxs)("button",{ref:n===e?h:void 0,tabIndex:-1,type:"button",className:(0,i.Z)("color-picker__button color-picker__button--large",{active:n===e,"is-transparent":"transparent"===e||!e}),onClick:function(){o(e),p("custom")},title:e,"aria-label":a,style:{"--swatch-color":e},children:[(0,l.jsx)("div",{className:"color-picker__button-outline"}),(0,l.jsx)(x,{color:e,keyLabel:t+1,isCustomColor:!0})]},t)}))})},S=n(6066),O=function(e,t,n){var r,o=Math.ceil(n/a.dC);switch(t=null!==(r=t)&&void 0!==r?r:-1,e){case"ArrowLeft":var i=t-1;return i<0?n-1:i;case"ArrowRight":return(t+1)%n;case"ArrowDown":var l=t+a.dC;return l>=n?t%a.dC:l;case"ArrowUp":var c=t-a.dC,s=c<0?a.dC*o+c:c;return s>=n?void 0:s}},j=function(e){var t=e.event,n=e.activeColorPickerSection,o=e.palette,i=e.color,l=e.onChange,c=e.customColors,s=e.setActiveColorPickerSection,u=(e.updateData,e.activeShade),d=e.onEyeDropperToggle,f=e.onEscape;if(t[S.tW.CTRL_OR_CMD])return!1;if(t.key===S.tW.ESCAPE)return f(t),!0;if(t.key===S.tW.ALT)return d(!0),!0;if(t.key===S.tW.I)return d(),!0;var p=h({color:i,palette:o});if(t.key===S.tW.TAB){var g={custom:!!c.length,baseColors:!0,shades:null!=(null==p?void 0:p.shade),hex:!0},v=Object.entries(g).reduce((function(e,t){var n=(0,r.Z)(t,2),o=n[0];return n[1]&&e.push(o),e}),[]),b=v.indexOf(n),y=t.shiftKey?-1:1,x=v[b+y>v.length-1?0:b+y<0?v.length-1:b+y];if(x&&s(x),"custom"===x)l(c[0]);else if("baseColors"===x){Object.entries(o).find((function(e){var t=(0,r.Z)(e,2),n=t[0],o=t[1];return Array.isArray(o)?o.includes(i):o===i?n:null}))||l(a.HO.black)}return t.preventDefault(),t.stopPropagation(),!0}if(function(e){var t=e.e,n=e.colorObj,r=e.onChange,o=e.palette,i=e.customColors,a=e.setActiveColorPickerSection,l=e.activeShade;if(null!=(null==n?void 0:n.shade)&&["Digit1","Digit2","Digit3","Digit4","Digit5"].includes(t.code)&&t.shiftKey){var c=Number(t.code.slice(-1))-1;return r(o[n.colorName][c]),a("shades"),!0}if(["1","2","3","4","5"].includes(t.key)&&i[Number(t.key)-1])return r(i[Number(t.key)-1]),a("custom"),!0;if(m.includes(t.key)){var s=m.indexOf(t.key),u=o[Object.keys(o)[s]];return r(Array.isArray(u)?u[l]:u),a("baseColors"),!0}return!1}({e:t,colorObj:p,onChange:l,palette:o,customColors:c,setActiveColorPickerSection:s,activeShade:u}))return!0;if("shades"===n&&p){var w=p.shade,k=O(t.key,w,a.dC);if(void 0!==k)return l(o[p.colorName][k]),!0}if("baseColors"===n&&p){var E=p.colorName,j=Object.keys(o),_=j.indexOf(E),C=O(t.key,_,j.length);if(void 0!==C){var I=o[j[C]];return l(Array.isArray(I)?I[u]:I),!0}}if("custom"===n){var T=c.indexOf(i),P=O(t.key,T,c.length);if(void 0!==P)return l(c[P]),!0}return!1},_=function(e){var t=e.children;return(0,l.jsx)("div",{className:"color-picker__heading",children:t})},C=n(2335),I=function(e){var t,n=e.color,o=e.onChange,i=e.label,c=e.type,m=e.elements,b=e.palette,y=e.updateData,x=e.children,O=e.onEyeDropperToggle,I=e.onEscape,T=u().useState((function(){return"canvasBackground"===c?[]:function(e,t,n){var r={elementBackground:"backgroundColor",elementStroke:"strokeColor"},o=e.filter((function(e){if(e.isDeleted)return!1;var o=e[r[t]];return g({color:o,palette:n})})),i=new Map;return o.forEach((function(e){var n=e[r[t]];i.has(n)?i.set(n,i.get(n)+1):i.set(n,1)})),(0,p.Z)(i.entries()).sort((function(e,t){return t[1]-e[1]})).map((function(e){return e[0]})).slice(0,a.Lx)}(m,c,b)})),P=(0,r.Z)(T,1)[0],M=(0,f.KO)(v),D=(0,r.Z)(M,2),A=D[0],L=D[1],Z=h({color:n,palette:b});(0,s.useEffect)((function(){if(!A){var e=g({color:n,palette:b}),t=e&&!P.includes(n);L(t?"hex":e?"custom":null!=(null==Z?void 0:Z.shade)?"shades":"baseColors")}}),[A,n,b,L,Z,P]);var R=(0,s.useState)(null!==(t=null==Z?void 0:Z.shade)&&void 0!==t?t:"elementBackground"===c?a._T:a.z8),z=(0,r.Z)(R,2),N=z[0],B=z[1];(0,s.useEffect)((function(){null!=(null==Z?void 0:Z.shade)&&B(Z.shade);var e=function(e){e.key===S.tW.ALT&&O(!1)};return document.addEventListener(C.Ks.KEYUP,e,{capture:!0}),function(){document.removeEventListener(C.Ks.KEYUP,e,{capture:!0})}}),[Z,O]);var H=u().useRef(null);return(0,l.jsx)("div",{role:"dialog","aria-modal":"true","aria-label":(0,d.t)("labels.colorPicker"),children:(0,l.jsxs)("div",{ref:H,onKeyDown:function(e){j({event:e,activeColorPickerSection:A,palette:b,color:n,onChange:o,onEyeDropperToggle:O,customColors:P,setActiveColorPickerSection:L,updateData:y,activeShade:N,onEscape:I})&&(e.preventDefault(),e.stopPropagation())},className:"color-picker-content",tabIndex:-1,children:[!!P.length&&(0,l.jsxs)("div",{children:[(0,l.jsx)(_,{children:(0,d.t)("colorPicker.mostUsedCustomColors")}),(0,l.jsx)(E,{colors:P,color:n,label:(0,d.t)("colorPicker.mostUsedCustomColors"),onChange:o})]}),(0,l.jsxs)("div",{children:[(0,l.jsx)(_,{children:(0,d.t)("colorPicker.colors")}),(0,l.jsx)(k,{color:n,label:i,palette:b,onChange:o,activeShade:N})]}),(0,l.jsxs)("div",{children:[(0,l.jsx)(_,{children:(0,d.t)("colorPicker.shades")}),(0,l.jsx)(w,{hex:n,onChange:o,palette:b})]}),x]})})},T=n(11),P=n(7217),M=n(9335),D=n(1267),A=n(3119),L=n(3060);const Z="dismissableLayer.update",R="dismissableLayer.pointerDownOutside",z="dismissableLayer.focusOutside";let N;const B=(0,s.createContext)({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),H=(0,s.forwardRef)(((e,t)=>{var n;const{disableOutsidePointerEvents:r=!1,onEscapeKeyDown:o,onPointerDownOutside:i,onFocusOutside:a,onInteractOutside:l,onDismiss:c,...u}=e,d=(0,s.useContext)(B),[f,p]=(0,s.useState)(null),h=null!==(n=null==f?void 0:f.ownerDocument)&&void 0!==n?n:null===globalThis||void 0===globalThis?void 0:globalThis.document,[,m]=(0,s.useState)({}),g=(0,M.e)(t,(e=>p(e))),v=Array.from(d.layers),[b]=[...d.layersWithOutsidePointerEventsDisabled].slice(-1),y=v.indexOf(b),x=f?v.indexOf(f):-1,w=d.layersWithOutsidePointerEventsDisabled.size>0,k=x>=y,E=function(e,t=(null===globalThis||void 0===globalThis?void 0:globalThis.document)){const n=(0,L.W)(e),r=(0,s.useRef)(!1),o=(0,s.useRef)((()=>{}));return(0,s.useEffect)((()=>{const e=e=>{if(e.target&&!r.current){const i={originalEvent:e};function a(){W(R,n,i,{discrete:!0})}"touch"===e.pointerType?(t.removeEventListener("click",o.current),o.current=a,t.addEventListener("click",o.current,{once:!0})):a()}r.current=!1},i=window.setTimeout((()=>{t.addEventListener("pointerdown",e)}),0);return()=>{window.clearTimeout(i),t.removeEventListener("pointerdown",e),t.removeEventListener("click",o.current)}}),[t,n]),{onPointerDownCapture:()=>r.current=!0}}((e=>{const t=e.target,n=[...d.branches].some((e=>e.contains(t)));k&&!n&&(null==i||i(e),null==l||l(e),e.defaultPrevented||null==c||c())}),h),S=function(e,t=(null===globalThis||void 0===globalThis?void 0:globalThis.document)){const n=(0,L.W)(e),r=(0,s.useRef)(!1);return(0,s.useEffect)((()=>{const e=e=>{if(e.target&&!r.current){W(z,n,{originalEvent:e},{discrete:!1})}};return t.addEventListener("focusin",e),()=>t.removeEventListener("focusin",e)}),[t,n]),{onFocusCapture:()=>r.current=!0,onBlurCapture:()=>r.current=!1}}((e=>{const t=e.target;[...d.branches].some((e=>e.contains(t)))||(null==a||a(e),null==l||l(e),e.defaultPrevented||null==c||c())}),h);return function(e,t=(null===globalThis||void 0===globalThis?void 0:globalThis.document)){const n=(0,L.W)(e);(0,s.useEffect)((()=>{const e=e=>{"Escape"===e.key&&n(e)};return t.addEventListener("keydown",e),()=>t.removeEventListener("keydown",e)}),[n,t])}((e=>{x===d.layers.size-1&&(null==o||o(e),!e.defaultPrevented&&c&&(e.preventDefault(),c()))}),h),(0,s.useEffect)((()=>{if(f)return r&&(0===d.layersWithOutsidePointerEventsDisabled.size&&(N=h.body.style.pointerEvents,h.body.style.pointerEvents="none"),d.layersWithOutsidePointerEventsDisabled.add(f)),d.layers.add(f),F(),()=>{r&&1===d.layersWithOutsidePointerEventsDisabled.size&&(h.body.style.pointerEvents=N)}}),[f,h,r,d]),(0,s.useEffect)((()=>()=>{f&&(d.layers.delete(f),d.layersWithOutsidePointerEventsDisabled.delete(f),F())}),[f,d]),(0,s.useEffect)((()=>{const e=()=>m({});return document.addEventListener(Z,e),()=>document.removeEventListener(Z,e)}),[]),(0,s.createElement)(A.WV.div,(0,T.Z)({},u,{ref:g,style:{pointerEvents:w?k?"auto":"none":void 0,...e.style},onFocusCapture:(0,P.M)(e.onFocusCapture,S.onFocusCapture),onBlurCapture:(0,P.M)(e.onBlurCapture,S.onBlurCapture),onPointerDownCapture:(0,P.M)(e.onPointerDownCapture,E.onPointerDownCapture)}))}));function F(){const e=new CustomEvent(Z);document.dispatchEvent(e)}function W(e,t,n,{discrete:r}){const o=n.originalEvent.target,i=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&o.addEventListener(e,t,{once:!0}),r?(0,A.jH)(o,i):o.dispatchEvent(i)}let U=0;function K(){(0,s.useEffect)((()=>{var e,t;const n=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",null!==(e=n[0])&&void 0!==e?e:Y()),document.body.insertAdjacentElement("beforeend",null!==(t=n[1])&&void 0!==t?t:Y()),U++,()=>{1===U&&document.querySelectorAll("[data-radix-focus-guard]").forEach((e=>e.remove())),U--}}),[])}function Y(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.cssText="outline: none; opacity: 0; position: fixed; pointer-events: none",e}const G="focusScope.autoFocusOnMount",V="focusScope.autoFocusOnUnmount",X={bubbles:!1,cancelable:!0},q=(0,s.forwardRef)(((e,t)=>{const{loop:n=!1,trapped:r=!1,onMountAutoFocus:o,onUnmountAutoFocus:i,...a}=e,[l,c]=(0,s.useState)(null),u=(0,L.W)(o),d=(0,L.W)(i),f=(0,s.useRef)(null),p=(0,M.e)(t,(e=>c(e))),h=(0,s.useRef)({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;(0,s.useEffect)((()=>{if(r){function e(e){if(h.paused||!l)return;const t=e.target;l.contains(t)?f.current=t:ee(f.current,{select:!0})}function t(e){!h.paused&&l&&(l.contains(e.relatedTarget)||ee(f.current,{select:!0}))}return document.addEventListener("focusin",e),document.addEventListener("focusout",t),()=>{document.removeEventListener("focusin",e),document.removeEventListener("focusout",t)}}}),[r,l,h.paused]),(0,s.useEffect)((()=>{if(l){te.add(h);const t=document.activeElement;if(!l.contains(t)){const n=new CustomEvent(G,X);l.addEventListener(G,u),l.dispatchEvent(n),n.defaultPrevented||(!function(e,{select:t=!1}={}){const n=document.activeElement;for(const r of e)if(ee(r,{select:t}),document.activeElement!==n)return}((e=$(l),e.filter((e=>"A"!==e.tagName))),{select:!0}),document.activeElement===t&&ee(l))}return()=>{l.removeEventListener(G,u),setTimeout((()=>{const e=new CustomEvent(V,X);l.addEventListener(V,d),l.dispatchEvent(e),e.defaultPrevented||ee(null!=t?t:document.body,{select:!0}),l.removeEventListener(V,d),te.remove(h)}),0)}}var e}),[l,u,d,h]);const m=(0,s.useCallback)((e=>{if(!n&&!r)return;if(h.paused)return;const t="Tab"===e.key&&!e.altKey&&!e.ctrlKey&&!e.metaKey,o=document.activeElement;if(t&&o){const t=e.currentTarget,[r,i]=function(e){const t=$(e),n=J(t,e),r=J(t.reverse(),e);return[n,r]}(t);r&&i?e.shiftKey||o!==i?e.shiftKey&&o===r&&(e.preventDefault(),n&&ee(i,{select:!0})):(e.preventDefault(),n&&ee(r,{select:!0})):o===t&&e.preventDefault()}}),[n,r,h.paused]);return(0,s.createElement)(A.WV.div,(0,T.Z)({tabIndex:-1},a,{ref:p,onKeyDown:m}))}));function $(e){const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:e=>{const t="INPUT"===e.tagName&&"hidden"===e.type;return e.disabled||e.hidden||t?NodeFilter.FILTER_SKIP:e.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)t.push(n.currentNode);return t}function J(e,t){for(const n of e)if(!Q(n,{upTo:t}))return n}function Q(e,{upTo:t}){if("hidden"===getComputedStyle(e).visibility)return!0;for(;e;){if(void 0!==t&&e===t)return!1;if("none"===getComputedStyle(e).display)return!0;e=e.parentElement}return!1}function ee(e,{select:t=!1}={}){if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&function(e){return e instanceof HTMLInputElement&&"select"in e}(e)&&t&&e.select()}}const te=function(){let e=[];return{add(t){const n=e[0];t!==n&&(null==n||n.pause()),e=ne(e,t),e.unshift(t)},remove(t){var n;e=ne(e,t),null===(n=e[0])||void 0===n||n.resume()}}}();function ne(e,t){const n=[...e],r=n.indexOf(t);return-1!==r&&n.splice(r,1),n}var re=n(5622);function oe(e){return e.split("-")[0]}function ie(e){return e.split("-")[1]}function ae(e){return["top","bottom"].includes(oe(e))?"x":"y"}function le(e){return"y"===e?"height":"width"}function ce(e,t,n){let{reference:r,floating:o}=e;const i=r.x+r.width/2-o.width/2,a=r.y+r.height/2-o.height/2,l=ae(t),c=le(l),s=r[c]/2-o[c]/2,u="x"===l;let d;switch(oe(t)){case"top":d={x:i,y:r.y-o.height};break;case"bottom":d={x:i,y:r.y+r.height};break;case"right":d={x:r.x+r.width,y:a};break;case"left":d={x:r.x-o.width,y:a};break;default:d={x:r.x,y:r.y}}switch(ie(t)){case"start":d[l]-=s*(n&&u?-1:1);break;case"end":d[l]+=s*(n&&u?-1:1)}return d}function se(e){return"number"!=typeof e?function(e){return{top:0,right:0,bottom:0,left:0,...e}}(e):{top:e,right:e,bottom:e,left:e}}function ue(e){return{...e,top:e.y,left:e.x,right:e.x+e.width,bottom:e.y+e.height}}async function de(e,t){var n;void 0===t&&(t={});const{x:r,y:o,platform:i,rects:a,elements:l,strategy:c}=e,{boundary:s="clippingAncestors",rootBoundary:u="viewport",elementContext:d="floating",altBoundary:f=!1,padding:p=0}=t,h=se(p),m=l[f?"floating"===d?"reference":"floating":d],g=ue(await i.getClippingRect({element:null==(n=await(null==i.isElement?void 0:i.isElement(m)))||n?m:m.contextElement||await(null==i.getDocumentElement?void 0:i.getDocumentElement(l.floating)),boundary:s,rootBoundary:u,strategy:c})),v=ue(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({rect:"floating"===d?{...a.floating,x:r,y:o}:a.reference,offsetParent:await(null==i.getOffsetParent?void 0:i.getOffsetParent(l.floating)),strategy:c}):a[d]);return{top:g.top-v.top+h.top,bottom:v.bottom-g.bottom+h.bottom,left:g.left-v.left+h.left,right:v.right-g.right+h.right}}const fe=Math.min,pe=Math.max;function he(e,t,n){return pe(e,fe(t,n))}const me=e=>({name:"arrow",options:e,async fn(t){const{element:n,padding:r=0}=null!=e?e:{},{x:o,y:i,placement:a,rects:l,platform:c}=t;if(null==n)return{};const s=se(r),u={x:o,y:i},d=ae(a),f=ie(a),p=le(d),h=await c.getDimensions(n),m="y"===d?"top":"left",g="y"===d?"bottom":"right",v=l.reference[p]+l.reference[d]-u[d]-l.floating[p],b=u[d]-l.reference[d],y=await(null==c.getOffsetParent?void 0:c.getOffsetParent(n));let x=y?"y"===d?y.clientHeight||0:y.clientWidth||0:0;0===x&&(x=l.floating[p]);const w=v/2-b/2,k=s[m],E=x-h[p]-s[g],S=x/2-h[p]/2+w,O=he(k,S,E),j=("start"===f?s[m]:s[g])>0&&S!==O&&l.reference[p]<=l.floating[p];return{[d]:u[d]-(j?S<k?k-S:E-S:0),data:{[d]:O,centerOffset:S-O}}}}),ge={left:"right",right:"left",bottom:"top",top:"bottom"};function ve(e){return e.replace(/left|right|bottom|top/g,(e=>ge[e]))}function be(e,t,n){void 0===n&&(n=!1);const r=ie(e),o=ae(e),i=le(o);let a="x"===o?r===(n?"end":"start")?"right":"left":"start"===r?"bottom":"top";return t.reference[i]>t.floating[i]&&(a=ve(a)),{main:a,cross:ve(a)}}const ye={start:"end",end:"start"};function xe(e){return e.replace(/start|end/g,(e=>ye[e]))}const we=["top","right","bottom","left"],ke=(we.reduce(((e,t)=>e.concat(t,t+"-start",t+"-end")),[]),function(e){return void 0===e&&(e={}),{name:"flip",options:e,async fn(t){var n;const{placement:r,middlewareData:o,rects:i,initialPlacement:a,platform:l,elements:c}=t,{mainAxis:s=!0,crossAxis:u=!0,fallbackPlacements:d,fallbackStrategy:f="bestFit",flipAlignment:p=!0,...h}=e,m=oe(r),g=d||(m!==a&&p?function(e){const t=ve(e);return[xe(e),t,xe(t)]}(a):[ve(a)]),v=[a,...g],b=await de(t,h),y=[];let x=(null==(n=o.flip)?void 0:n.overflows)||[];if(s&&y.push(b[m]),u){const{main:e,cross:t}=be(r,i,await(null==l.isRTL?void 0:l.isRTL(c.floating)));y.push(b[e],b[t])}if(x=[...x,{placement:r,overflows:y}],!y.every((e=>e<=0))){var w,k;const e=(null!=(w=null==(k=o.flip)?void 0:k.index)?w:0)+1,t=v[e];if(t)return{data:{index:e,overflows:x},reset:{placement:t}};let n="bottom";switch(f){case"bestFit":{var E;const e=null==(E=x.map((e=>[e,e.overflows.filter((e=>e>0)).reduce(((e,t)=>e+t),0)])).sort(((e,t)=>e[1]-t[1]))[0])?void 0:E[0].placement;e&&(n=e);break}case"initialPlacement":n=a}if(r!==n)return{reset:{placement:n}}}return{}}}});function Ee(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function Se(e){return we.some((t=>e[t]>=0))}const Oe=function(e){let{strategy:t="referenceHidden",...n}=void 0===e?{}:e;return{name:"hide",async fn(e){const{rects:r}=e;switch(t){case"referenceHidden":{const t=Ee(await de(e,{...n,elementContext:"reference"}),r.reference);return{data:{referenceHiddenOffsets:t,referenceHidden:Se(t)}}}case"escaped":{const t=Ee(await de(e,{...n,altBoundary:!0}),r.floating);return{data:{escapedOffsets:t,escaped:Se(t)}}}default:return{}}}}},je=function(e){return void 0===e&&(e=0),{name:"offset",options:e,async fn(t){const{x:n,y:r}=t,o=await async function(e,t){const{placement:n,platform:r,elements:o}=e,i=await(null==r.isRTL?void 0:r.isRTL(o.floating)),a=oe(n),l=ie(n),c="x"===ae(n),s=["left","top"].includes(a)?-1:1,u=i&&c?-1:1,d="function"==typeof t?t(e):t;let{mainAxis:f,crossAxis:p,alignmentAxis:h}="number"==typeof d?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...d};return l&&"number"==typeof h&&(p="end"===l?-1*h:h),c?{x:p*u,y:f*s}:{x:f*s,y:p*u}}(t,e);return{x:n+o.x,y:r+o.y,data:o}}}};function _e(e){return"x"===e?"y":"x"}const Ce=function(e){return void 0===e&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:r,placement:o}=t,{mainAxis:i=!0,crossAxis:a=!1,limiter:l={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...c}=e,s={x:n,y:r},u=await de(t,c),d=ae(oe(o)),f=_e(d);let p=s[d],h=s[f];if(i){const e="y"===d?"bottom":"right";p=he(p+u["y"===d?"top":"left"],p,p-u[e])}if(a){const e="y"===f?"bottom":"right";h=he(h+u["y"===f?"top":"left"],h,h-u[e])}const m=l.fn({...t,[d]:p,[f]:h});return{...m,data:{x:m.x-n,y:m.y-r}}}}},Ie=function(e){return void 0===e&&(e={}),{options:e,fn(t){const{x:n,y:r,placement:o,rects:i,middlewareData:a}=t,{offset:l=0,mainAxis:c=!0,crossAxis:s=!0}=e,u={x:n,y:r},d=ae(o),f=_e(d);let p=u[d],h=u[f];const m="function"==typeof l?l({...i,placement:o}):l,g="number"==typeof m?{mainAxis:m,crossAxis:0}:{mainAxis:0,crossAxis:0,...m};if(c){const e="y"===d?"height":"width",t=i.reference[d]-i.floating[e]+g.mainAxis,n=i.reference[d]+i.reference[e]-g.mainAxis;p<t?p=t:p>n&&(p=n)}if(s){var v,b,y,x;const e="y"===d?"width":"height",t=["top","left"].includes(oe(o)),n=i.reference[f]-i.floating[e]+(t&&null!=(v=null==(b=a.offset)?void 0:b[f])?v:0)+(t?0:g.crossAxis),r=i.reference[f]+i.reference[e]+(t?0:null!=(y=null==(x=a.offset)?void 0:x[f])?y:0)-(t?g.crossAxis:0);h<n?h=n:h>r&&(h=r)}return{[d]:p,[f]:h}}}},Te=function(e){return void 0===e&&(e={}),{name:"size",options:e,async fn(t){const{placement:n,rects:r,platform:o,elements:i}=t,{apply:a,...l}=e,c=await de(t,l),s=oe(n),u=ie(n);let d,f;"top"===s||"bottom"===s?(d=s,f=u===(await(null==o.isRTL?void 0:o.isRTL(i.floating))?"start":"end")?"left":"right"):(f=s,d="end"===u?"top":"bottom");const p=pe(c.left,0),h=pe(c.right,0),m=pe(c.top,0),g=pe(c.bottom,0),v={availableHeight:r.floating.height-(["left","right"].includes(n)?2*(0!==m||0!==g?m+g:pe(c.top,c.bottom)):c[d]),availableWidth:r.floating.width-(["top","bottom"].includes(n)?2*(0!==p||0!==h?p+h:pe(c.left,c.right)):c[f])},b=await o.getDimensions(i.floating);null==a||a({...t,...v});const y=await o.getDimensions(i.floating);return b.width!==y.width||b.height!==y.height?{reset:{rects:!0}}:{}}}};function Pe(e){return e&&e.document&&e.location&&e.alert&&e.setInterval}function Me(e){if(null==e)return window;if(!Pe(e)){const t=e.ownerDocument;return t&&t.defaultView||window}return e}function De(e){return Me(e).getComputedStyle(e)}function Ae(e){return Pe(e)?"":e?(e.nodeName||"").toLowerCase():""}function Le(){const e=navigator.userAgentData;return null!=e&&e.brands?e.brands.map((e=>e.brand+"/"+e.version)).join(" "):navigator.userAgent}function Ze(e){return e instanceof Me(e).HTMLElement}function Re(e){return e instanceof Me(e).Element}function ze(e){return"undefined"!=typeof ShadowRoot&&(e instanceof Me(e).ShadowRoot||e instanceof ShadowRoot)}function Ne(e){const{overflow:t,overflowX:n,overflowY:r}=De(e);return/auto|scroll|overlay|hidden/.test(t+r+n)}function Be(e){return["table","td","th"].includes(Ae(e))}function He(e){const t=/firefox/i.test(Le()),n=De(e);return"none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||["transform","perspective"].includes(n.willChange)||t&&"filter"===n.willChange||t&&!!n.filter&&"none"!==n.filter}function Fe(){return!/^((?!chrome|android).)*safari/i.test(Le())}const We=Math.min,Ue=Math.max,Ke=Math.round;function Ye(e,t,n){var r,o,i,a;void 0===t&&(t=!1),void 0===n&&(n=!1);const l=e.getBoundingClientRect();let c=1,s=1;t&&Ze(e)&&(c=e.offsetWidth>0&&Ke(l.width)/e.offsetWidth||1,s=e.offsetHeight>0&&Ke(l.height)/e.offsetHeight||1);const u=Re(e)?Me(e):window,d=!Fe()&&n,f=(l.left+(d&&null!=(r=null==(o=u.visualViewport)?void 0:o.offsetLeft)?r:0))/c,p=(l.top+(d&&null!=(i=null==(a=u.visualViewport)?void 0:a.offsetTop)?i:0))/s,h=l.width/c,m=l.height/s;return{width:h,height:m,top:p,right:f+h,bottom:p+m,left:f,x:f,y:p}}function Ge(e){return(t=e,(t instanceof Me(t).Node?e.ownerDocument:e.document)||window.document).documentElement;var t}function Ve(e){return Re(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Xe(e){return Ye(Ge(e)).left+Ve(e).scrollLeft}function qe(e,t,n){const r=Ze(t),o=Ge(t),i=Ye(e,r&&function(e){const t=Ye(e);return Ke(t.width)!==e.offsetWidth||Ke(t.height)!==e.offsetHeight}(t),"fixed"===n);let a={scrollLeft:0,scrollTop:0};const l={x:0,y:0};if(r||!r&&"fixed"!==n)if(("body"!==Ae(t)||Ne(o))&&(a=Ve(t)),Ze(t)){const e=Ye(t,!0);l.x=e.x+t.clientLeft,l.y=e.y+t.clientTop}else o&&(l.x=Xe(o));return{x:i.left+a.scrollLeft-l.x,y:i.top+a.scrollTop-l.y,width:i.width,height:i.height}}function $e(e){return"html"===Ae(e)?e:e.assignedSlot||e.parentNode||(ze(e)?e.host:null)||Ge(e)}function Je(e){return Ze(e)&&"fixed"!==getComputedStyle(e).position?e.offsetParent:null}function Qe(e){const t=Me(e);let n=Je(e);for(;n&&Be(n)&&"static"===getComputedStyle(n).position;)n=Je(n);return n&&("html"===Ae(n)||"body"===Ae(n)&&"static"===getComputedStyle(n).position&&!He(n))?t:n||function(e){let t=$e(e);for(ze(t)&&(t=t.host);Ze(t)&&!["html","body"].includes(Ae(t));){if(He(t))return t;t=t.parentNode}return null}(e)||t}function et(e){if(Ze(e))return{width:e.offsetWidth,height:e.offsetHeight};const t=Ye(e);return{width:t.width,height:t.height}}function tt(e){const t=$e(e);return["html","body","#document"].includes(Ae(t))?e.ownerDocument.body:Ze(t)&&Ne(t)?t:tt(t)}function nt(e,t){var n;void 0===t&&(t=[]);const r=tt(e),o=r===(null==(n=e.ownerDocument)?void 0:n.body),i=Me(r),a=o?[i].concat(i.visualViewport||[],Ne(r)?r:[]):r,l=t.concat(a);return o?l:l.concat(nt(a))}function rt(e,t,n){return"viewport"===t?ue(function(e,t){const n=Me(e),r=Ge(e),o=n.visualViewport;let i=r.clientWidth,a=r.clientHeight,l=0,c=0;if(o){i=o.width,a=o.height;const e=Fe();(e||!e&&"fixed"===t)&&(l=o.offsetLeft,c=o.offsetTop)}return{width:i,height:a,x:l,y:c}}(e,n)):Re(t)?function(e,t){const n=Ye(e,!1,"fixed"===t),r=n.top+e.clientTop,o=n.left+e.clientLeft;return{top:r,left:o,x:o,y:r,right:o+e.clientWidth,bottom:r+e.clientHeight,width:e.clientWidth,height:e.clientHeight}}(t,n):ue(function(e){var t;const n=Ge(e),r=Ve(e),o=null==(t=e.ownerDocument)?void 0:t.body,i=Ue(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),a=Ue(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0);let l=-r.scrollLeft+Xe(e);const c=-r.scrollTop;return"rtl"===De(o||n).direction&&(l+=Ue(n.clientWidth,o?o.clientWidth:0)-i),{width:i,height:a,x:l,y:c}}(Ge(e)))}function ot(e){const t=nt(e),n=["absolute","fixed"].includes(De(e).position)&&Ze(e)?Qe(e):e;return Re(n)?t.filter((e=>Re(e)&&function(e,t){const n=null==t.getRootNode?void 0:t.getRootNode();if(e.contains(t))return!0;if(n&&ze(n)){let n=t;do{if(n&&e===n)return!0;n=n.parentNode||n.host}while(n)}return!1}(e,n)&&"body"!==Ae(e))):[]}const it={getClippingRect:function(e){let{element:t,boundary:n,rootBoundary:r,strategy:o}=e;const i=[..."clippingAncestors"===n?ot(t):[].concat(n),r],a=i[0],l=i.reduce(((e,n)=>{const r=rt(t,n,o);return e.top=Ue(r.top,e.top),e.right=We(r.right,e.right),e.bottom=We(r.bottom,e.bottom),e.left=Ue(r.left,e.left),e}),rt(t,a,o));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}},convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{rect:t,offsetParent:n,strategy:r}=e;const o=Ze(n),i=Ge(n);if(n===i)return t;let a={scrollLeft:0,scrollTop:0};const l={x:0,y:0};if((o||!o&&"fixed"!==r)&&(("body"!==Ae(n)||Ne(i))&&(a=Ve(n)),Ze(n))){const e=Ye(n,!0);l.x=e.x+n.clientLeft,l.y=e.y+n.clientTop}return{...t,x:t.x-a.scrollLeft+l.x,y:t.y-a.scrollTop+l.y}},isElement:Re,getDimensions:et,getOffsetParent:Qe,getDocumentElement:Ge,getElementRects:e=>{let{reference:t,floating:n,strategy:r}=e;return{reference:qe(t,Qe(n),r),floating:{...et(n),x:0,y:0}}},getClientRects:e=>Array.from(e.getClientRects()),isRTL:e=>"rtl"===De(e).direction};function at(e,t,n,r){void 0===r&&(r={});const{ancestorScroll:o=!0,ancestorResize:i=!0,elementResize:a=!0,animationFrame:l=!1}=r,c=o&&!l,s=i&&!l,u=c||s?[...Re(e)?nt(e):[],...nt(t)]:[];u.forEach((e=>{c&&e.addEventListener("scroll",n,{passive:!0}),s&&e.addEventListener("resize",n)}));let d,f=null;if(a){let r=!0;f=new ResizeObserver((()=>{r||n(),r=!1})),Re(e)&&!l&&f.observe(e),f.observe(t)}let p=l?Ye(e):null;return l&&function t(){const r=Ye(e);!p||r.x===p.x&&r.y===p.y&&r.width===p.width&&r.height===p.height||n(),p=r,d=requestAnimationFrame(t)}(),n(),()=>{var e;u.forEach((e=>{c&&e.removeEventListener("scroll",n),s&&e.removeEventListener("resize",n)})),null==(e=f)||e.disconnect(),f=null,l&&cancelAnimationFrame(d)}}const lt=(e,t,n)=>(async(e,t,n)=>{const{placement:r="bottom",strategy:o="absolute",middleware:i=[],platform:a}=n,l=await(null==a.isRTL?void 0:a.isRTL(t));let c=await a.getElementRects({reference:e,floating:t,strategy:o}),{x:s,y:u}=ce(c,r,l),d=r,f={},p=0;for(let n=0;n<i.length;n++){const{name:h,fn:m}=i[n],{x:g,y:v,data:b,reset:y}=await m({x:s,y:u,initialPlacement:r,placement:d,strategy:o,middlewareData:f,rects:c,platform:a,elements:{reference:e,floating:t}});s=null!=g?g:s,u=null!=v?v:u,f={...f,[h]:{...f[h],...b}},y&&p<=50&&(p++,"object"==typeof y&&(y.placement&&(d=y.placement),y.rects&&(c=!0===y.rects?await a.getElementRects({reference:e,floating:t,strategy:o}):y.rects),({x:s,y:u}=ce(c,d,l))),n=-1)}return{x:s,y:u,placement:d,strategy:o,middlewareData:f}})(e,t,{platform:it,...n});var ct=n(5156),st=n.n(ct),ut="undefined"!=typeof document?s.useLayoutEffect:s.useEffect;function dt(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if("function"==typeof e&&e.toString()===t.toString())return!0;let n,r,o;if(e&&t&&"object"==typeof e){if(Array.isArray(e)){if(n=e.length,n!=t.length)return!1;for(r=n;0!=r--;)if(!dt(e[r],t[r]))return!1;return!0}if(o=Object.keys(e),n=o.length,n!==Object.keys(t).length)return!1;for(r=n;0!=r--;)if(!Object.prototype.hasOwnProperty.call(t,o[r]))return!1;for(r=n;0!=r--;){const n=o[r];if(("_owner"!==n||!e.$$typeof)&&!dt(e[n],t[n]))return!1}return!0}return e!=e&&t!=t}function ft(e){let{middleware:t,placement:n="bottom",strategy:r="absolute",whileElementsMounted:o}=void 0===e?{}:e;const i=s.useRef(null),a=s.useRef(null),l=function(e){const t=s.useRef(e);return ut((()=>{t.current=e})),t}(o),c=s.useRef(null),[u,d]=s.useState({x:null,y:null,strategy:r,placement:n,middlewareData:{}}),[f,p]=s.useState(t);dt(null==f?void 0:f.map((e=>{let{options:t}=e;return t})),null==t?void 0:t.map((e=>{let{options:t}=e;return t})))||p(t);const h=s.useCallback((()=>{i.current&&a.current&&lt(i.current,a.current,{middleware:f,placement:n,strategy:r}).then((e=>{m.current&&ct.flushSync((()=>{d(e)}))}))}),[f,n,r]);ut((()=>{m.current&&h()}),[h]);const m=s.useRef(!1);ut((()=>(m.current=!0,()=>{m.current=!1})),[]);const g=s.useCallback((()=>{if("function"==typeof c.current&&(c.current(),c.current=null),i.current&&a.current)if(l.current){const e=l.current(i.current,a.current,h);c.current=e}else h()}),[h,l]),v=s.useCallback((e=>{i.current=e,g()}),[g]),b=s.useCallback((e=>{a.current=e,g()}),[g]),y=s.useMemo((()=>({reference:i,floating:a})),[]);return s.useMemo((()=>({...u,update:h,refs:y,reference:v,floating:b})),[u,h,y,v,b])}const pt=e=>{const{element:t,padding:n}=e;return{name:"arrow",options:e,fn(e){return r=t,Object.prototype.hasOwnProperty.call(r,"current")?null!=t.current?me({element:t.current,padding:n}).fn(e):{}:t?me({element:t,padding:n}).fn(e):{};var r}}},ht=(0,s.forwardRef)(((e,t)=>{const{children:n,width:r=10,height:o=5,...i}=e;return(0,s.createElement)(A.WV.svg,(0,T.Z)({},i,{ref:t,width:r,height:o,viewBox:"0 0 30 10",preserveAspectRatio:"none"}),e.asChild?n:(0,s.createElement)("polygon",{points:"0,0 30,0 15,10"}))})),mt=ht;var gt=n(3348);const vt="Popper",[bt,yt]=(0,D.b)(vt),[xt,wt]=bt(vt),kt=e=>{const{__scopePopper:t,children:n}=e,[r,o]=(0,s.useState)(null);return(0,s.createElement)(xt,{scope:t,anchor:r,onAnchorChange:o},n)},Et="PopperAnchor",St=(0,s.forwardRef)(((e,t)=>{const{__scopePopper:n,virtualRef:r,...o}=e,i=wt(Et,n),a=(0,s.useRef)(null),l=(0,M.e)(t,a);return(0,s.useEffect)((()=>{i.onAnchorChange((null==r?void 0:r.current)||a.current)})),r?null:(0,s.createElement)(A.WV.div,(0,T.Z)({},o,{ref:l}))})),Ot="PopperContent",[jt,_t]=bt(Ot),[Ct,It]=bt(Ot,{hasParent:!1,positionUpdateFns:new Set}),Tt=(0,s.forwardRef)(((e,t)=>{var n,r,o,i,a,l,c,u;const{__scopePopper:d,side:f="bottom",sideOffset:p=0,align:h="center",alignOffset:m=0,arrowPadding:g=0,collisionBoundary:v=[],collisionPadding:b=0,sticky:y="partial",hideWhenDetached:x=!1,avoidCollisions:w=!0,onPlaced:k,...E}=e,S=wt(Ot,d),[O,j]=(0,s.useState)(null),_=(0,M.e)(t,(e=>j(e))),[C,I]=(0,s.useState)(null),T=function(e){const[t,n]=(0,s.useState)(void 0);return(0,gt.b)((()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});const t=new ResizeObserver((t=>{if(!Array.isArray(t))return;if(!t.length)return;const r=t[0];let o,i;if("borderBoxSize"in r){const e=r.borderBoxSize,t=Array.isArray(e)?e[0]:e;o=t.inlineSize,i=t.blockSize}else o=e.offsetWidth,i=e.offsetHeight;n({width:o,height:i})}));return t.observe(e,{box:"border-box"}),()=>t.unobserve(e)}n(void 0)}),[e]),t}(C),P=null!==(n=null==T?void 0:T.width)&&void 0!==n?n:0,D=null!==(r=null==T?void 0:T.height)&&void 0!==r?r:0,Z=f+("center"!==h?"-"+h:""),R="number"==typeof b?b:{top:0,right:0,bottom:0,left:0,...b},z=Array.isArray(v)?v:[v],N=z.length>0,B={padding:R,boundary:z.filter(Lt),altBoundary:N},{reference:H,floating:F,strategy:W,x:U,y:K,placement:Y,middlewareData:G,update:V}=ft({strategy:"fixed",placement:Z,whileElementsMounted:at,middleware:[Zt(),je({mainAxis:p+D,alignmentAxis:m}),w?Ce({mainAxis:!0,crossAxis:!1,limiter:"partial"===y?Ie():void 0,...B}):void 0,C?pt({element:C,padding:g}):void 0,w?ke({...B}):void 0,Te({...B,apply:({elements:e,availableWidth:t,availableHeight:n})=>{e.floating.style.setProperty("--radix-popper-available-width",`${t}px`),e.floating.style.setProperty("--radix-popper-available-height",`${n}px`)}}),Rt({arrowWidth:P,arrowHeight:D}),x?Oe({strategy:"referenceHidden"}):void 0].filter(At)});(0,gt.b)((()=>{H(S.anchor)}),[H,S.anchor]);const X=null!==U&&null!==K,[q,$]=zt(Y),J=(0,L.W)(k);(0,gt.b)((()=>{X&&(null==J||J())}),[X,J]);const Q=null===(o=G.arrow)||void 0===o?void 0:o.x,ee=null===(i=G.arrow)||void 0===i?void 0:i.y,te=0!==(null===(a=G.arrow)||void 0===a?void 0:a.centerOffset),[ne,re]=(0,s.useState)();(0,gt.b)((()=>{O&&re(window.getComputedStyle(O).zIndex)}),[O]);const{hasParent:oe,positionUpdateFns:ie}=It(Ot,d),ae=!oe;(0,s.useLayoutEffect)((()=>{if(!ae)return ie.add(V),()=>{ie.delete(V)}}),[ae,ie,V]),(0,gt.b)((()=>{ae&&X&&Array.from(ie).reverse().forEach((e=>requestAnimationFrame(e)))}),[ae,X,ie]);const le={"data-side":q,"data-align":$,...E,ref:_,style:{...E.style,animation:X?void 0:"none",opacity:null!==(l=G.hide)&&void 0!==l&&l.referenceHidden?0:void 0}};return(0,s.createElement)("div",{ref:F,"data-radix-popper-content-wrapper":"",style:{position:W,left:0,top:0,transform:X?`translate3d(${Math.round(U)}px, ${Math.round(K)}px, 0)`:"translate3d(0, -200%, 0)",minWidth:"max-content",zIndex:ne,"--radix-popper-transform-origin":[null===(c=G.transformOrigin)||void 0===c?void 0:c.x,null===(u=G.transformOrigin)||void 0===u?void 0:u.y].join(" ")},dir:e.dir},(0,s.createElement)(jt,{scope:d,placedSide:q,onArrowChange:I,arrowX:Q,arrowY:ee,shouldHideArrow:te},ae?(0,s.createElement)(Ct,{scope:d,hasParent:!0,positionUpdateFns:ie},(0,s.createElement)(A.WV.div,le)):(0,s.createElement)(A.WV.div,le)))})),Pt="PopperArrow",Mt={top:"bottom",right:"left",bottom:"top",left:"right"},Dt=(0,s.forwardRef)((function(e,t){const{__scopePopper:n,...r}=e,o=_t(Pt,n),i=Mt[o.placedSide];return(0,s.createElement)("span",{ref:o.onArrowChange,style:{position:"absolute",left:o.arrowX,top:o.arrowY,[i]:0,transformOrigin:{top:"",right:"0 0",bottom:"center 0",left:"100% 0"}[o.placedSide],transform:{top:"translateY(100%)",right:"translateY(50%) rotate(90deg) translateX(-50%)",bottom:"rotate(180deg)",left:"translateY(50%) rotate(-90deg) translateX(50%)"}[o.placedSide],visibility:o.shouldHideArrow?"hidden":void 0}},(0,s.createElement)(mt,(0,T.Z)({},r,{ref:t,style:{...r.style,display:"block"}})))}));function At(e){return void 0!==e}function Lt(e){return null!==e}const Zt=()=>({name:"anchorCssProperties",fn(e){const{rects:t,elements:n}=e,{width:r,height:o}=t.reference;return n.floating.style.setProperty("--radix-popper-anchor-width",`${r}px`),n.floating.style.setProperty("--radix-popper-anchor-height",`${o}px`),{}}}),Rt=e=>({name:"transformOrigin",options:e,fn(t){var n,r,o,i,a;const{placement:l,rects:c,middlewareData:s}=t,u=0!==(null===(n=s.arrow)||void 0===n?void 0:n.centerOffset),d=u?0:e.arrowWidth,f=u?0:e.arrowHeight,[p,h]=zt(l),m={start:"0%",center:"50%",end:"100%"}[h],g=(null!==(r=null===(o=s.arrow)||void 0===o?void 0:o.x)&&void 0!==r?r:0)+d/2,v=(null!==(i=null===(a=s.arrow)||void 0===a?void 0:a.y)&&void 0!==i?i:0)+f/2;let b="",y="";return"bottom"===p?(b=u?m:`${g}px`,y=-f+"px"):"top"===p?(b=u?m:`${g}px`,y=`${c.floating.height+f}px`):"right"===p?(b=-f+"px",y=u?m:`${v}px`):"left"===p&&(b=`${c.floating.width+f}px`,y=u?m:`${v}px`),{data:{x:b,y:y}}}});function zt(e){const[t,n="center"]=e.split("-");return[t,n]}const Nt=kt,Bt=St,Ht=Tt,Ft=Dt,Wt=(0,s.forwardRef)(((e,t)=>{var n;const{container:r=(null===globalThis||void 0===globalThis||null===(n=globalThis.document)||void 0===n?void 0:n.body),...o}=e;return r?st().createPortal((0,s.createElement)(A.WV.div,(0,T.Z)({},o,{ref:t})),r):null}));var Ut=n(1483),Kt=n(4801),Yt=n(2673),Gt=function(e){return"undefined"==typeof document?null:(Array.isArray(e)?e[0]:e).ownerDocument.body},Vt=new WeakMap,Xt=new WeakMap,qt={},$t=0,Jt=function(e){return e&&(e.host||Jt(e.parentNode))},Qt=function(e,t,n,r){var o=function(e,t){return t.map((function(t){if(e.contains(t))return t;var n=Jt(t);return n&&e.contains(n)?n:(console.error("aria-hidden",t,"in not contained inside",e,". Doing nothing"),null)})).filter((function(e){return Boolean(e)}))}(t,Array.isArray(e)?e:[e]);qt[n]||(qt[n]=new WeakMap);var i=qt[n],a=[],l=new Set,c=new Set(o),s=function(e){e&&!l.has(e)&&(l.add(e),s(e.parentNode))};o.forEach(s);var u=function(e){e&&!c.has(e)&&Array.prototype.forEach.call(e.children,(function(e){if(l.has(e))u(e);else{var t=e.getAttribute(r),o=null!==t&&"false"!==t,c=(Vt.get(e)||0)+1,s=(i.get(e)||0)+1;Vt.set(e,c),i.set(e,s),a.push(e),1===c&&o&&Xt.set(e,!0),1===s&&e.setAttribute(n,"true"),o||e.setAttribute(r,"true")}}))};return u(t),l.clear(),$t++,function(){a.forEach((function(e){var t=Vt.get(e)-1,o=i.get(e)-1;Vt.set(e,t),i.set(e,o),t||(Xt.has(e)||e.removeAttribute(r),Xt.delete(e)),o||e.removeAttribute(n)})),--$t||(Vt=new WeakMap,Vt=new WeakMap,Xt=new WeakMap,qt={})}},en=function(e,t,n){void 0===n&&(n="data-aria-hidden");var r=Array.from(Array.isArray(e)?e:[e]),o=t||Gt(e);return o?(r.push.apply(r,Array.from(o.querySelectorAll("[aria-live]"))),Qt(r,o,n,"aria-hidden")):function(){return null}};var tn=function(){return tn=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},tn.apply(this,arguments)};function nn(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o<r.length;o++)t.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]])}return n}Object.create;Object.create;var rn="right-scroll-bar-position",on="width-before-scroll-bar";function an(e,t){return n=t||null,r=function(t){return e.forEach((function(e){return function(e,t){return"function"==typeof e?e(t):e&&(e.current=t),e}(e,t)}))},(o=(0,s.useState)((function(){return{value:n,callback:r,facade:{get current(){return o.value},set current(e){var t=o.value;t!==e&&(o.value=e,o.callback(e,t))}}}}))[0]).callback=r,o.facade;var n,r,o}function ln(e){return e}function cn(e,t){void 0===t&&(t=ln);var n=[],r=!1,o={read:function(){if(r)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return n.length?n[n.length-1]:e},useMedium:function(e){var o=t(e,r);return n.push(o),function(){n=n.filter((function(e){return e!==o}))}},assignSyncMedium:function(e){for(r=!0;n.length;){var t=n;n=[],t.forEach(e)}n={push:function(t){return e(t)},filter:function(){return n}}},assignMedium:function(e){r=!0;var t=[];if(n.length){var o=n;n=[],o.forEach(e),t=n}var i=function(){var n=t;t=[],n.forEach(e)},a=function(){return Promise.resolve().then(i)};a(),n={push:function(e){t.push(e),a()},filter:function(e){return t=t.filter(e),n}}}};return o}var sn=function(e){void 0===e&&(e={});var t=cn(null);return t.options=tn({async:!0,ssr:!1},e),t}(),un=function(){},dn=s.forwardRef((function(e,t){var n=s.useRef(null),r=s.useState({onScrollCapture:un,onWheelCapture:un,onTouchMoveCapture:un}),o=r[0],i=r[1],a=e.forwardProps,l=e.children,c=e.className,u=e.removeScrollBar,d=e.enabled,f=e.shards,p=e.sideCar,h=e.noIsolation,m=e.inert,g=e.allowPinchZoom,v=e.as,b=void 0===v?"div":v,y=nn(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noIsolation","inert","allowPinchZoom","as"]),x=p,w=an([n,t]),k=tn(tn({},y),o);return s.createElement(s.Fragment,null,d&&s.createElement(x,{sideCar:sn,removeScrollBar:u,shards:f,noIsolation:h,inert:m,setCallbacks:i,allowPinchZoom:!!g,lockRef:n}),a?s.cloneElement(s.Children.only(l),tn(tn({},k),{ref:w})):s.createElement(b,tn({},k,{className:c,ref:w}),l))}));dn.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1},dn.classNames={fullWidth:on,zeroRight:rn};var fn,pn=function(e){var t=e.sideCar,n=nn(e,["sideCar"]);if(!t)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var r=t.read();if(!r)throw new Error("Sidecar medium not found");return s.createElement(r,tn({},n))};pn.isSideCarExport=!0;function hn(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=fn||n.nc;return t&&e.setAttribute("nonce",t),e}var mn=function(){var e=0,t=null;return{add:function(n){var r,o;0==e&&(t=hn())&&(o=n,(r=t).styleSheet?r.styleSheet.cssText=o:r.appendChild(document.createTextNode(o)),function(e){(document.head||document.getElementsByTagName("head")[0]).appendChild(e)}(t)),e++},remove:function(){!--e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},gn=function(){var e,t=(e=mn(),function(t,n){s.useEffect((function(){return e.add(t),function(){e.remove()}}),[t&&n])});return function(e){var n=e.styles,r=e.dynamic;return t(n,r),null}},vn={left:0,top:0,right:0,gap:0},bn=function(e){return parseInt(e||"",10)||0},yn=function(e){if(void 0===e&&(e="margin"),"undefined"==typeof window)return vn;var t=function(e){var t=window.getComputedStyle(document.body),n=t["padding"===e?"paddingLeft":"marginLeft"],r=t["padding"===e?"paddingTop":"marginTop"],o=t["padding"===e?"paddingRight":"marginRight"];return[bn(n),bn(r),bn(o)]}(e),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,r-n+t[2]-t[0])}},xn=gn(),wn=function(e,t,n,r){var o=e.left,i=e.top,a=e.right,l=e.gap;return void 0===n&&(n="margin"),"\n .".concat("with-scroll-bars-hidden"," {\n overflow: hidden ").concat(r,";\n padding-right: ").concat(l,"px ").concat(r,";\n }\n body {\n overflow: hidden ").concat(r,";\n overscroll-behavior: contain;\n ").concat([t&&"position: relative ".concat(r,";"),"margin"===n&&"\n padding-left: ".concat(o,"px;\n padding-top: ").concat(i,"px;\n padding-right: ").concat(a,"px;\n margin-left:0;\n margin-top:0;\n margin-right: ").concat(l,"px ").concat(r,";\n "),"padding"===n&&"padding-right: ".concat(l,"px ").concat(r,";")].filter(Boolean).join(""),"\n }\n \n .").concat(rn," {\n right: ").concat(l,"px ").concat(r,";\n }\n \n .").concat(on," {\n margin-right: ").concat(l,"px ").concat(r,";\n }\n \n .").concat(rn," .").concat(rn," {\n right: 0 ").concat(r,";\n }\n \n .").concat(on," .").concat(on," {\n margin-right: 0 ").concat(r,";\n }\n \n body {\n ").concat("--removed-body-scroll-bar-size",": ").concat(l,"px;\n }\n")},kn=function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,o=void 0===r?"margin":r,i=s.useMemo((function(){return yn(o)}),[o]);return s.createElement(xn,{styles:wn(i,!t,o,n?"":"!important")})},En=!1;if("undefined"!=typeof window)try{var Sn=Object.defineProperty({},"passive",{get:function(){return En=!0,!0}});window.addEventListener("test",Sn,Sn),window.removeEventListener("test",Sn,Sn)}catch(e){En=!1}var On=!!En&&{passive:!1},jn=function(e,t){var n=window.getComputedStyle(e);return"hidden"!==n[t]&&!(n.overflowY===n.overflowX&&!function(e){return"TEXTAREA"===e.tagName}(e)&&"visible"===n[t])},_n=function(e,t){var n=t;do{if("undefined"!=typeof ShadowRoot&&n instanceof ShadowRoot&&(n=n.host),Cn(e,n)){var r=In(e,n);if(r[1]>r[2])return!0}n=n.parentNode}while(n&&n!==document.body);return!1},Cn=function(e,t){return"v"===e?function(e){return jn(e,"overflowY")}(t):function(e){return jn(e,"overflowX")}(t)},In=function(e,t){return"v"===e?[(n=t).scrollTop,n.scrollHeight,n.clientHeight]:function(e){return[e.scrollLeft,e.scrollWidth,e.clientWidth]}(t);var n},Tn=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},Pn=function(e){return[e.deltaX,e.deltaY]},Mn=function(e){return e&&"current"in e?e.current:e},Dn=function(e){return"\n .block-interactivity-".concat(e," {pointer-events: none;}\n .allow-interactivity-").concat(e," {pointer-events: all;}\n")},An=0,Ln=[];var Zn,Rn=(Zn=function(e){var t=s.useRef([]),n=s.useRef([0,0]),r=s.useRef(),o=s.useState(An++)[0],i=s.useState((function(){return gn()}))[0],a=s.useRef(e);s.useEffect((function(){a.current=e}),[e]),s.useEffect((function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(o));var t=function(e,t,n){if(n||2===arguments.length)for(var r,o=0,i=t.length;o<i;o++)!r&&o in t||(r||(r=Array.prototype.slice.call(t,0,o)),r[o]=t[o]);return e.concat(r||Array.prototype.slice.call(t))}([e.lockRef.current],(e.shards||[]).map(Mn),!0).filter(Boolean);return t.forEach((function(e){return e.classList.add("allow-interactivity-".concat(o))})),function(){document.body.classList.remove("block-interactivity-".concat(o)),t.forEach((function(e){return e.classList.remove("allow-interactivity-".concat(o))}))}}}),[e.inert,e.lockRef.current,e.shards]);var l=s.useCallback((function(e,t){if("touches"in e&&2===e.touches.length)return!a.current.allowPinchZoom;var o,i=Tn(e),l=n.current,c="deltaX"in e?e.deltaX:l[0]-i[0],s="deltaY"in e?e.deltaY:l[1]-i[1],u=e.target,d=Math.abs(c)>Math.abs(s)?"h":"v";if("touches"in e&&"h"===d&&"range"===u.type)return!1;var f=_n(d,u);if(!f)return!0;if(f?o=d:(o="v"===d?"h":"v",f=_n(d,u)),!f)return!1;if(!r.current&&"changedTouches"in e&&(c||s)&&(r.current=o),!o)return!0;var p=r.current||o;return function(e,t,n,r,o){var i=function(e,t){return"h"===e&&"rtl"===t?-1:1}(e,window.getComputedStyle(t).direction),a=i*r,l=n.target,c=t.contains(l),s=!1,u=a>0,d=0,f=0;do{var p=In(e,l),h=p[0],m=p[1]-p[2]-i*h;(h||m)&&Cn(e,l)&&(d+=m,f+=h),l=l.parentNode}while(!c&&l!==document.body||c&&(t.contains(l)||t===l));return(u&&(o&&0===d||!o&&a>d)||!u&&(o&&0===f||!o&&-a>f))&&(s=!0),s}(p,t,e,"h"===p?c:s,!0)}),[]),c=s.useCallback((function(e){var n=e;if(Ln.length&&Ln[Ln.length-1]===i){var r="deltaY"in n?Pn(n):Tn(n),o=t.current.filter((function(e){return e.name===n.type&&e.target===n.target&&function(e,t){return e[0]===t[0]&&e[1]===t[1]}(e.delta,r)}))[0];if(o&&o.should)n.cancelable&&n.preventDefault();else if(!o){var c=(a.current.shards||[]).map(Mn).filter(Boolean).filter((function(e){return e.contains(n.target)}));(c.length>0?l(n,c[0]):!a.current.noIsolation)&&n.cancelable&&n.preventDefault()}}}),[]),u=s.useCallback((function(e,n,r,o){var i={name:e,delta:n,target:r,should:o};t.current.push(i),setTimeout((function(){t.current=t.current.filter((function(e){return e!==i}))}),1)}),[]),d=s.useCallback((function(e){n.current=Tn(e),r.current=void 0}),[]),f=s.useCallback((function(t){u(t.type,Pn(t),t.target,l(t,e.lockRef.current))}),[]),p=s.useCallback((function(t){u(t.type,Tn(t),t.target,l(t,e.lockRef.current))}),[]);s.useEffect((function(){return Ln.push(i),e.setCallbacks({onScrollCapture:f,onWheelCapture:f,onTouchMoveCapture:p}),document.addEventListener("wheel",c,On),document.addEventListener("touchmove",c,On),document.addEventListener("touchstart",d,On),function(){Ln=Ln.filter((function(e){return e!==i})),document.removeEventListener("wheel",c,On),document.removeEventListener("touchmove",c,On),document.removeEventListener("touchstart",d,On)}}),[]);var h=e.removeScrollBar,m=e.inert;return s.createElement(s.Fragment,null,m?s.createElement(i,{styles:Dn(o)}):null,h?s.createElement(kn,{gapMode:"margin"}):null)},sn.useMedium(Zn),pn),zn=s.forwardRef((function(e,t){return s.createElement(dn,tn({},e,{ref:t,sideCar:Rn}))}));zn.classNames=dn.classNames;var Nn=zn;const Bn="Popover",[Hn,Fn]=(0,D.b)(Bn,[yt]),Wn=yt(),[Un,Kn]=Hn(Bn),Yn=e=>{const{__scopePopover:t,children:n,open:r,defaultOpen:o,onOpenChange:i,modal:a=!1}=e,l=Wn(t),c=(0,s.useRef)(null),[u,d]=(0,s.useState)(!1),[f=!1,p]=(0,Yt.T)({prop:r,defaultProp:o,onChange:i});return(0,s.createElement)(Nt,l,(0,s.createElement)(Un,{scope:t,contentId:(0,re.M)(),triggerRef:c,open:f,onOpenChange:p,onOpenToggle:(0,s.useCallback)((()=>p((e=>!e))),[p]),hasCustomAnchor:u,onCustomAnchorAdd:(0,s.useCallback)((()=>d(!0)),[]),onCustomAnchorRemove:(0,s.useCallback)((()=>d(!1)),[]),modal:a},n))},Gn="PopoverTrigger",Vn=(0,s.forwardRef)(((e,t)=>{const{__scopePopover:n,...r}=e,o=Kn(Gn,n),i=Wn(n),a=(0,M.e)(t,o.triggerRef),l=(0,s.createElement)(A.WV.button,(0,T.Z)({type:"button","aria-haspopup":"dialog","aria-expanded":o.open,"aria-controls":o.contentId,"data-state":ir(o.open)},r,{ref:a,onClick:(0,P.M)(e.onClick,o.onOpenToggle)}));return o.hasCustomAnchor?l:(0,s.createElement)(Bt,(0,T.Z)({asChild:!0},i),l)})),Xn="PopoverPortal",[qn,$n]=Hn(Xn,{forceMount:void 0}),Jn=e=>{const{__scopePopover:t,forceMount:n,children:r,container:o}=e,i=Kn(Xn,t);return(0,s.createElement)(qn,{scope:t,forceMount:n},(0,s.createElement)(Ut.z,{present:n||i.open},(0,s.createElement)(Wt,{asChild:!0,container:o},r)))},Qn="PopoverContent",er=(0,s.forwardRef)(((e,t)=>{const n=$n(Qn,e.__scopePopover),{forceMount:r=n.forceMount,...o}=e,i=Kn(Qn,e.__scopePopover);return(0,s.createElement)(Ut.z,{present:r||i.open},i.modal?(0,s.createElement)(tr,(0,T.Z)({},o,{ref:t})):(0,s.createElement)(nr,(0,T.Z)({},o,{ref:t})))})),tr=(0,s.forwardRef)(((e,t)=>{const n=Kn(Qn,e.__scopePopover),r=(0,s.useRef)(null),o=(0,M.e)(t,r),i=(0,s.useRef)(!1);return(0,s.useEffect)((()=>{const e=r.current;if(e)return en(e)}),[]),(0,s.createElement)(Nn,{as:Kt.g7,allowPinchZoom:!0},(0,s.createElement)(rr,(0,T.Z)({},e,{ref:o,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:(0,P.M)(e.onCloseAutoFocus,(e=>{var t;e.preventDefault(),i.current||null===(t=n.triggerRef.current)||void 0===t||t.focus()})),onPointerDownOutside:(0,P.M)(e.onPointerDownOutside,(e=>{const t=e.detail.originalEvent,n=0===t.button&&!0===t.ctrlKey,r=2===t.button||n;i.current=r}),{checkForDefaultPrevented:!1}),onFocusOutside:(0,P.M)(e.onFocusOutside,(e=>e.preventDefault()),{checkForDefaultPrevented:!1})})))})),nr=(0,s.forwardRef)(((e,t)=>{const n=Kn(Qn,e.__scopePopover),r=(0,s.useRef)(!1);return(0,s.createElement)(rr,(0,T.Z)({},e,{ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:t=>{var o,i;(null===(o=e.onCloseAutoFocus)||void 0===o||o.call(e,t),t.defaultPrevented)||(r.current||null===(i=n.triggerRef.current)||void 0===i||i.focus(),t.preventDefault());r.current=!1},onInteractOutside:t=>{var o,i;null===(o=e.onInteractOutside)||void 0===o||o.call(e,t),t.defaultPrevented||(r.current=!0);const a=t.target;(null===(i=n.triggerRef.current)||void 0===i?void 0:i.contains(a))&&t.preventDefault()}}))})),rr=(0,s.forwardRef)(((e,t)=>{const{__scopePopover:n,trapFocus:r,onOpenAutoFocus:o,onCloseAutoFocus:i,disableOutsidePointerEvents:a,onEscapeKeyDown:l,onPointerDownOutside:c,onFocusOutside:u,onInteractOutside:d,...f}=e,p=Kn(Qn,n),h=Wn(n);return K(),(0,s.createElement)(q,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:o,onUnmountAutoFocus:i},(0,s.createElement)(H,{asChild:!0,disableOutsidePointerEvents:a,onInteractOutside:d,onEscapeKeyDown:l,onPointerDownOutside:c,onFocusOutside:u,onDismiss:()=>p.onOpenChange(!1)},(0,s.createElement)(Ht,(0,T.Z)({"data-state":ir(p.open),role:"dialog",id:p.contentId},h,f,{ref:t,style:{...f.style,"--radix-popover-content-transform-origin":"var(--radix-popper-transform-origin)"}}))))})),or=(0,s.forwardRef)(((e,t)=>{const{__scopePopover:n,...r}=e,o=Wn(n);return(0,s.createElement)(Ft,(0,T.Z)({},o,r,{ref:t}))}));function ir(e){return e?"open":"closed"}const ar=Yn,lr=Vn,cr=Jn,sr=er,ur=or;var dr=n(8993),fr=n(9487),pr=n(3646),hr=n(3550),mr=function(e){var t=e.color,n=e.onChange,a=e.label,c=(0,dr.Fy)(),u=(0,s.useState)(t),p=(0,r.Z)(u,2),h=p[0],m=p[1],g=(0,f.KO)(v),b=(0,r.Z)(g,2),y=b[0],x=b[1];(0,s.useEffect)((function(){m(t)}),[t]);var w=(0,s.useCallback)((function(e){var t=e.toLowerCase(),r=Pr(t);r&&n(r),m(t)}),[n]),k=(0,s.useRef)(null),E=(0,s.useRef)(null);(0,s.useEffect)((function(){k.current&&k.current.focus()}),[y]);var O=(0,f.KO)(hr.$,fr.yE),j=(0,r.Z)(O,2),_=j[0],C=j[1];return(0,s.useEffect)((function(){return function(){C(null)}}),[C]),(0,l.jsxs)("div",{className:"color-picker__input-label",children:[(0,l.jsx)("div",{className:"color-picker__input-hash",children:"#"}),(0,l.jsx)("input",{ref:"hex"===y?k:void 0,style:{border:0,padding:0},spellCheck:!1,className:"color-picker-input","aria-label":a,onChange:function(e){w(e.target.value)},value:(h||"").replace(/^#/,""),onBlur:function(){m(t)},tabIndex:-1,onFocus:function(){return x("hex")},onKeyDown:function(e){var t;e.key!==S.tW.TAB&&(e.key===S.tW.ESCAPE&&(null===(t=E.current)||void 0===t||t.focus()),e.stopPropagation())}}),!c.isMobile&&(0,l.jsxs)(l.Fragment,{children:[(0,l.jsx)("div",{style:{width:"1px",height:"1.25rem",backgroundColor:"var(--default-border-color)"}}),(0,l.jsx)("div",{ref:E,className:(0,i.Z)("excalidraw-eye-dropper-trigger",{selected:_}),onClick:function(){return C((function(e){return e?null:{keepOpenOnAlt:!1,onSelect:function(e){return n(e)}}}))},title:"".concat((0,d.t)("labels.eyeDropper")," — ").concat(S.tW.I.toLocaleUpperCase()," or ").concat((0,o.uY)("Alt")," "),children:pr.eyeDropperIcon})]})]})},gr=n(487),vr=n.n(gr),br=n(631),yr=n.n(br),xr=n(2052),wr=n.n(xr),kr=n(4010),Er=n.n(kr),Sr=n(1469),Or=n.n(Sr),jr=n(9329),_r=n.n(jr),Cr=n(4269),Ir={};Ir.styleTagTransform=_r(),Ir.setAttributes=Er(),Ir.insert=wr().bind(null,"head"),Ir.domAPI=yr(),Ir.insertStyleElement=Or();vr()(Cr.Z,Ir),Cr.Z&&Cr.Z.locals&&Cr.Z.locals;var Tr=function(e){var t=(new Option).style;return t.color=e,!!t.color},Pr=function(e){return(0,o.Qm)(e)?e:Tr("#".concat(e))?"#".concat(e):Tr(e)?e:null},Mr=function(e){var t=e.type,n=e.color,i=e.onChange,c=e.label,u=e.elements,p=e.palette,h=void 0===p?a.HO:p,m=e.updateData,g=(0,f.KO)(v),b=(0,r.Z)(g,2)[1],y=(0,f.KO)(hr.$,fr.yE),x=(0,r.Z)(y,2),w=x[0],k=x[1],E=(0,dr.J0)().container,S=(0,dr.Fy)(),O=S.isMobile,j=S.isLandscape,C=(0,l.jsxs)("div",{children:[(0,l.jsx)(_,{children:(0,d.t)("colorPicker.hexCode")}),(0,l.jsx)(mr,{color:n,label:c,onChange:function(e){i(e)}})]}),T=(0,s.useRef)(null),P=function(){var e,t;null===(e=T.current)||void 0===e||null===(t=e.querySelector(".color-picker-content"))||void 0===t||t.focus()};return(0,l.jsx)(cr,{container:E,children:(0,l.jsxs)(sr,{ref:T,className:"focus-visible-none","data-prevent-outside-click":!0,onFocusOutside:function(e){P(),e.preventDefault()},onPointerDownOutside:function(e){w&&e.preventDefault()},onCloseAutoFocus:function(e){e.stopPropagation(),e.preventDefault(),E&&!(0,o.y1)(document.activeElement)&&E.focus(),m({openPopup:null}),b(null)},side:O&&!j?"bottom":"right",align:O&&!j?"center":"start",alignOffset:-16,sideOffset:20,style:{zIndex:9999,backgroundColor:"var(--popup-bg-color)",maxWidth:"208px",maxHeight:window.innerHeight,padding:"12px",borderRadius:"8px",boxSizing:"border-box",overflowY:"auto",boxShadow:"0px 7px 14px rgba(0, 0, 0, 0.05), 0px 0px 3.12708px rgba(0, 0, 0, 0.0798), 0px 0px 0.931014px rgba(0, 0, 0, 0.1702)"},children:[h?(0,l.jsx)(I,{palette:h,color:n,onChange:function(e){i(e)},onEyeDropperToggle:function(e){k((function(t){return e?((t=t||{keepOpenOnAlt:!0,onSelect:i}).keepOpenOnAlt=!0,t):!1===e||t?null:{keepOpenOnAlt:!1,onSelect:i}}))},onEscape:function(e){w?k(null):(0,o.s)(e.target)?P():m({openPopup:null})},label:c,type:t,elements:u,updateData:m,children:C}):C,(0,l.jsx)(ur,{width:20,height:10,style:{fill:"var(--popup-bg-color)",filter:"drop-shadow(rgba(0, 0, 0, 0.05) 0px 3px 2px)"}})]})})},Dr=function(e){var t=e.label,n=e.color,r=e.type;return(0,l.jsx)(lr,{type:"button",className:(0,i.Z)("color-picker__button active-color",{"is-transparent":"transparent"===n||!n}),"aria-label":t,style:n?{"--swatch-color":n}:void 0,title:"elementStroke"===r?(0,d.t)("labels.showStroke"):(0,d.t)("labels.showBackground"),children:(0,l.jsx)("div",{className:"color-picker__button-outline"})})},Ar=function(e){var t=e.type,n=e.color,r=e.onChange,o=e.label,i=e.elements,s=e.palette,u=void 0===s?a.HO:s,d=e.topPicks,f=e.updateData,p=e.appState;return(0,l.jsx)("div",{children:(0,l.jsxs)("div",{role:"dialog","aria-modal":"true",className:"color-picker-container",children:[(0,l.jsx)(c,{activeColor:n,onChange:r,type:t,topPicks:d}),(0,l.jsx)("div",{style:{width:1,height:"100%",backgroundColor:"var(--default-border-color)",margin:"0 auto"}}),(0,l.jsxs)(ar,{open:p.openPopup===t,onOpenChange:function(e){f({openPopup:e?t:null})},children:[(0,l.jsx)(Dr,{color:n,label:o,type:t}),p.openPopup===t&&(0,l.jsx)(Mr,{type:t,color:n,onChange:r,label:o,elements:i,palette:u,updateData:f})]})]})})}},7046:function(e,t,n){"use strict";n.d(t,{Z:function(){return T}});var r=n(7169),o=n(2726),i=n(5202),a=n(8396),l=n(487),c=n.n(l),s=n(631),u=n.n(s),d=n(2052),f=n.n(d),p=n(4010),h=n.n(p),m=n(1469),g=n.n(m),v=n(9329),b=n.n(v),y=n(9393),x={};x.styleTagTransform=b(),x.setAttributes=h(),x.insert=f().bind(null,"head"),x.domAPI=u(),x.insertStyleElement=g();c()(y.Z,x),y.Z&&y.Z.locals&&y.Z.locals;var w=n(6428),k=n(3607),E=n(5448),S=n(8993),O=n(9487),j=n(4512),_=["onConfirm","onCancel","children","confirmText","cancelText","className"];function C(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function I(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?C(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):C(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var T=function(e){var t=e.onConfirm,n=e.onCancel,r=e.children,l=e.confirmText,c=void 0===l?(0,i.t)("buttons.confirm"):l,s=e.cancelText,u=void 0===s?(0,i.t)("buttons.cancel"):s,d=e.className,f=void 0===d?"":d,p=(0,o.Z)(e,_),h=(0,S.n9)(),m=(0,k.b9)(E.uh,O.yE),g=(0,S.J0)().container;return(0,j.jsxs)(a.V,I(I({onCloseRequest:n,size:"small"},p),{},{className:"confirm-dialog ".concat(f),children:[r,(0,j.jsxs)("div",{className:"confirm-dialog-buttons",children:[(0,j.jsx)(w.Z,{label:u,onClick:function(){h({openMenu:null}),m(!1),n(),null==g||g.focus()}}),(0,j.jsx)(w.Z,{label:c,onClick:function(){h({openMenu:null}),m(!1),t(),null==g||g.focus()},actionType:"danger"})]})]}))}},704:function(e,t,n){"use strict";n.d(t,{O:function(){return E}});var r=n(2726),o=n(7169),i=n(45),a=n(2335),l=n(7681),c=n(96),s=n(5202),u=n(6340),d=n(8993),f=n(7145),p=n(5448),h=n(1034),m=n(4512),g=n(9787),v=["children"],b=["children","className","onDock","docked"];function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function x(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?y(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):y(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var w=(0,f.$)("DefaultSidebarTrigger",(function(e){var t=(0,l.R6)().DefaultSidebarTriggerTunnel;return(0,m.jsx)(t.In,{children:(0,m.jsx)(h.YE.Trigger,x(x({},e),{},{className:"default-sidebar-trigger",name:a.Cc.name}))})}));w.displayName="DefaultSidebarTrigger";var k=function(e){var t=e.children,n=(0,r.Z)(e,v),o=(0,l.R6)().DefaultSidebarTabTriggersTunnel;return(0,m.jsx)(o.In,{children:(0,m.jsx)(h.YE.TabTriggers,x(x({},n),{},{children:t}))})};k.displayName="DefaultTabTriggers";var E=Object.assign((0,f.$)("DefaultSidebar",(function(e){var t=e.children,n=e.className,o=e.onDock,f=e.docked,v=(0,r.Z)(e,b),y=(0,c.I)(),w=(0,d.n9)(),k=(0,l.R6)().DefaultSidebarTabTriggersTunnel;return(0,g.createElement)(h.YE,x(x({},v),{},{name:"default",key:"default",className:(0,i.Z)("default-sidebar",n),docked:null!=f?f:y.defaultSidebarDockedPreference,onDock:!1===o||!o&&null!=f?void 0:(0,u.Mj)(o,(function(e){w({defaultSidebarDockedPreference:e})}))}),(0,m.jsxs)(h.YE.Tabs,{children:[(0,m.jsxs)(h.YE.Header,{children:[v.__fallback&&(0,m.jsx)("div",{style:{color:"var(--color-primary)",fontSize:"1.2em",fontWeight:"bold",textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap",paddingRight:"1em"},children:(0,s.t)("toolBar.library")}),(0,m.jsx)(k.Out,{})]}),(0,m.jsx)(h.YE.Tab,{tab:a.tf,children:(0,m.jsx)(p.rY,{})}),t]}))})),{Trigger:w,TabTriggers:k})},8396:function(e,t,n){"use strict";n.d(t,{V:function(){return L}});var r=n(2577),o=n(45),i=n(9787),a=n(5202),l=n(8993),c=n(6066),s=n(487),u=n.n(s),d=n(631),f=n.n(d),p=n(2052),h=n.n(p),m=n(4010),g=n.n(m),v=n(1469),b=n.n(v),y=n(9329),x=n.n(y),w=n(9482),k={};k.styleTagTransform=x(),k.setAttributes=g(),k.insert=h().bind(null,"head"),k.domAPI=f(),k.insertStyleElement=b();u()(w.Z,k),w.Z&&w.Z.locals&&w.Z.locals;var E=n(3646),S=n(1881),O=n(6843),j={};j.styleTagTransform=x(),j.setAttributes=g(),j.insert=h().bind(null,"head"),j.domAPI=f(),j.insertStyleElement=b();u()(O.Z,j),O.Z&&O.Z.locals&&O.Z.locals;var _=n(5156),C=n(8101),I=n(4512),T=function(e){var t=e.closeOnClickOutside,n=void 0===t||t,r=(0,C.F)({className:"excalidraw-modal-container"});if(!r)return null;return(0,_.createPortal)((0,I.jsxs)("div",{className:(0,o.Z)("Modal",e.className),role:"dialog","aria-modal":"true",onKeyDown:function(t){t.key===c.tW.ESCAPE&&(t.nativeEvent.stopImmediatePropagation(),t.stopPropagation(),e.onCloseRequest())},"aria-labelledby":e.labelledBy,"data-prevent-outside-click":!0,children:[(0,I.jsx)("div",{className:"Modal__background",onClick:n?e.onCloseRequest:void 0}),(0,I.jsx)("div",{className:"Modal__content",style:{"--max-width":"".concat(e.maxWidth,"px")},tabIndex:0,children:e.children})]}),r)},P=n(6340),M=n(3607),D=n(5448),A=n(9487),L=function(e){var t=function(){var e=(0,i.useState)(null),t=(0,r.Z)(e,2),n=t[0],o=t[1];return[n,(0,i.useCallback)((function(e){return o(e)}),[])]}(),n=(0,r.Z)(t,2),s=n[0],u=n[1],d=(0,i.useState)(document.activeElement),f=(0,r.Z)(d,1)[0],p=(0,l.J0)().id,h=(0,l.Fy)();(0,i.useEffect)((function(){if(s){var t=(0,P.xp)(s);t.length>0&&!1!==e.autofocus&&(t[1]||t[0]).focus();var n=function(e){if(e.key===c.tW.TAB){var t=(0,P.xp)(s),n=document.activeElement,r=t.findIndex((function(e){return e===n}));0===r&&e.shiftKey?(t[t.length-1].focus(),e.preventDefault()):r!==t.length-1||e.shiftKey||(t[0].focus(),e.preventDefault())}};return s.addEventListener("keydown",n),function(){return s.removeEventListener("keydown",n)}}}),[s,e.autofocus]);var m=(0,l.n9)(),g=(0,M.b9)(D.uh,A.yE),v=function(){m({openMenu:null}),g(!1),f.focus(),e.onCloseRequest()};return(0,I.jsx)(T,{className:(0,o.Z)("Dialog",e.className),labelledBy:"dialog-title",maxWidth:"wide"===e.size?1024:"small"===e.size?550:800,onCloseRequest:v,closeOnClickOutside:e.closeOnClickOutside,children:(0,I.jsxs)(S.W,{ref:u,children:[e.title&&(0,I.jsx)("h2",{id:"".concat(p,"-dialog-title"),className:"Dialog__title",children:(0,I.jsx)("span",{className:"Dialog__titleContent",children:e.title})}),(0,I.jsx)("button",{className:"Dialog__close",onClick:v,title:(0,a.t)("buttons.close"),"aria-label":(0,a.t)("buttons.close"),children:h.isMobile?E.back:E.CloseIcon}),(0,I.jsx)("div",{className:"Dialog__content",children:e.children})]})})}},6428:function(e,t,n){"use strict";n.d(t,{Z:function(){return O}});var r=n(7169),o=n(2726),i=n(45),a=n(487),l=n.n(a),c=n(631),s=n.n(c),u=n(2052),d=n.n(u),f=n(4010),p=n.n(f),h=n(1469),m=n.n(h),g=n(9329),v=n.n(g),b=n(6148),y={};y.styleTagTransform=v(),y.setAttributes=p(),y.insert=d().bind(null,"head"),y.domAPI=s(),y.insertStyleElement=m();l()(b.Z,y),b.Z&&b.Z.locals&&b.Z.locals;var x=n(5644),w=n(4512),k=["label","onClick","className","children","actionType","type","isLoading"];function E(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function S(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?E(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):E(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var O=function(e){var t=e.label,n=e.onClick,r=e.className,a=e.children,l=e.actionType,c=e.type,s=void 0===c?"button":c,u=e.isLoading,d=(0,o.Z)(e,k),f=l?"Dialog__action-button--".concat(l):"";return(0,w.jsxs)("button",S(S({className:(0,i.Z)("Dialog__action-button",f,r),type:s,"aria-label":t,onClick:n},d),{},{children:[a&&(0,w.jsx)("div",{style:u?{visibility:"hidden"}:{},children:a}),(0,w.jsx)("div",{style:u?{visibility:"hidden"}:{},children:t}),u&&(0,w.jsx)("div",{style:{position:"absolute",inset:0},children:(0,w.jsx)(x.Z,{})})]}))}},3550:function(e,t,n){"use strict";n.d(t,{p:function(){return Z},$:function(){return L}});var r=n(7169),o=n(3607),i=n(9787),a=n(5156),l=n(56),c=n(2335),s=n(96),u=n(1935),d=n(8101),f=n(60),p=n(6066),h=n(3063),m=n(75),g=n(1564),v=n(8993),b=n(487),y=n.n(b),x=n(631),w=n.n(x),k=n(2052),E=n.n(k),S=n(4010),O=n.n(S),j=n(1469),_=n.n(j),C=n(9329),I=n.n(C),T=n(7522),P={};P.styleTagTransform=I(),P.setAttributes=O(),P.insert=E().bind(null,"head"),P.domAPI=w(),P.insertStyleElement=_();y()(T.Z,P),T.Z&&T.Z.locals&&T.Z.locals;var M=n(4512);function D(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return A(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return A(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function A(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var L=(0,o.cn)(null),Z=function(e){var t=e.onCancel,n=e.onSelect,o=e.swapPreviewOnAlt,b=e.previewType,y=void 0===b?"backgroundColor":b,x=(0,d.F)({className:"excalidraw-eye-dropper-backdrop",parentSelector:".excalidraw-eye-dropper-container"}),w=(0,s.I)(),k=(0,v.bd)(),E=(0,v.qD)(),S=(0,m.eD)(k,w),O=(0,i.useRef)({selectedElements:S,app:E});O.current.selectedElements=S,O.current.app=E;var j=(0,v.J0)().container;(0,i.useEffect)((function(){var e=_.current;if(e&&E.canvas&&x){var i=l.HO.black,a=!1,s=E.canvas.getContext("2d"),d=function(t){var n=t.clientX,c=t.clientY,d=t.altKey;e.style.top="".concat(c+20,"px"),e.style.left="".concat(n+20,"px");var f=s.getImageData(n*window.devicePixelRatio-w.offsetLeft,c*window.devicePixelRatio-w.offsetTop,1,1).data;if(i=(0,l.vq)(f[0],f[1],f[2]),a){var p,m,v=D(O.current.selectedElements);try{for(v.s();!(m=v.n()).done;){var b=m.value;(0,u.DR)(b,(0,r.Z)({},d&&o?"strokeColor"===y?"backgroundColor":"strokeColor":y,i),!1),(0,h.bI)(b)}}catch(e){v.e(e)}finally{v.f()}null===(p=g.Z.getScene(O.current.selectedElements[0]))||void 0===p||p.informMutation()}e.style.background=i},f=function(e){a=!0,e.stopImmediatePropagation()},m=function(e){a=!1,null==j||j.focus(),e.stopImmediatePropagation(),e.preventDefault(),n(i,e)},v=function(e){e.key===p.tW.ESCAPE&&(e.preventDefault(),e.stopImmediatePropagation(),t())};return x.tabIndex=-1,x.focus(),d({clientX:O.current.app.lastViewportPosition.x,clientY:O.current.app.lastViewportPosition.y,altKey:!1}),x.addEventListener(c.Ks.KEYDOWN,v),x.addEventListener(c.Ks.POINTER_DOWN,f),x.addEventListener(c.Ks.POINTER_UP,m),window.addEventListener("pointermove",d,{passive:!0}),window.addEventListener(c.Ks.BLUR,t),function(){a=!1,x.removeEventListener(c.Ks.KEYDOWN,v),x.removeEventListener(c.Ks.POINTER_DOWN,f),x.removeEventListener(c.Ks.POINTER_UP,m),window.removeEventListener("pointermove",d),window.removeEventListener(c.Ks.BLUR,t)}}}),[E.canvas,x,t,n,o,y,j,w.offsetLeft,w.offsetTop]);var _=(0,i.useRef)(null);return(0,f.O)(_,(function(){t()}),(function(e){return!!e.target.closest(".excalidraw-eye-dropper-trigger, .excalidraw-eye-dropper-backdrop")})),x?(0,a.createPortal)((0,M.jsx)("div",{ref:_,className:"excalidraw-eye-dropper-preview"}),x):null}},1881:function(e,t,n){"use strict";n.d(t,{W:function(){return S}});var r=n(7169),o=n(487),i=n.n(o),a=n(631),l=n.n(a),c=n(2052),s=n.n(c),u=n(4010),d=n.n(u),f=n(1469),p=n.n(f),h=n(9329),m=n.n(h),g=n(7369),v={};v.styleTagTransform=m(),v.setAttributes=d(),v.insert=s().bind(null,"head"),v.domAPI=l(),v.insertStyleElement=p();i()(g.Z,v),g.Z&&g.Z.locals&&g.Z.locals;var b=n(9787),y=n.n(b),x=n(45),w=n(4512);function k(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function E(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?k(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):k(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var S=y().forwardRef((function(e,t){var n=e.children,r=e.padding,o=e.className,i=e.style;return(0,w.jsx)("div",{className:(0,x.Z)("Island",o),style:E({"--padding":r},i),ref:t,children:n})}))},5448:function(e,t,n){"use strict";n.d(t,{rY:function(){return Ae},uh:function(){return Pe}});var r=n(1930),o=n(8950),i=n(2577),a=n(2975),l=n.n(a),c=n(9787),s=n.n(c),u=n(7053),d=n(5202),f=n(6954),p=n(7169),h=n(5523),m=n(6340),g=n(7239),v=n(2335),b=n(5644),y=n(2791),x=n(4512),w=function(e){var t=e.theme,n=e.id,r=e.libraryReturnUrl||window.location.origin+window.location.pathname;return(0,x.jsx)("a",{className:"library-menu-browse-button",href:"".concat("https://libraries.excalidraw.com","?target=").concat(window.name||"_blank","&referrer=").concat(r,"&useHash=true&token=").concat(n,"&theme=").concat(t,"&version=").concat(v.Kr.excalidrawLibrary),target:"_excalidraw_libraries",children:(0,d.t)("labels.libraries")})},k=n(45),E=function(e){var t=e.libraryReturnUrl,n=e.theme,r=e.id,o=e.style,i=e.children,a=e.className;return(0,x.jsxs)("div",{className:(0,k.Z)("library-menu-control-buttons",a),style:o,children:[(0,x.jsx)(w,{id:r,libraryReturnUrl:t,theme:n}),i]})},S=n(2242),O=n(9487),j=n(8993),_=n(3646),C=n(1319),I=n(1393),T=n(3607),P=n(7046),M=n(5284),D=n(8396),A=n(3024),L=n(434),Z=n(6428),R=n(487),z=n.n(R),N=n(631),B=n.n(N),H=n(2052),F=n.n(H),W=n(4010),U=n.n(W),K=n(1469),Y=n.n(K),G=n(9329),V=n.n(G),X=n(7589),q={};q.styleTagTransform=V(),q.setAttributes=U(),q.insert=F().bind(null,"head"),q.domAPI=B(),q.insertStyleElement=Y();z()(X.Z,q),X.Z&&X.Z.locals&&X.Z.locals;function $(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function J(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?$(Object(n),!0).forEach((function(t){(0,p.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):$(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Q(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return ee(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ee(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function ee(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var te="publish-library-data",ne=function(){var e=(0,o.Z)(l().mark((function e(t){var n,r,o,a,c,s,u,d,f,p,h,g,b,y,x,w,k;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:n=6,r=128,o=Math.round(r/16),a=Math.max(Math.round(r/64),2),c=(0,m.yo)(t,n),(s=document.createElement("canvas")).width=c[0].length*r+(c[0].length+1)*(2*o)-2*o,s.height=c.length*r+(c.length+1)*(2*o)-2*o,(u=s.getContext("2d")).fillStyle=M.white,u.fillRect(0,0,s.width,s.height),d=Q(t.entries()),e.prev=12,d.s();case 14:if((f=d.n()).done){e.next=28;break}return p=(0,i.Z)(f.value,2),h=p[0],g=p[1],e.next=18,(0,A.NL)({data:{elements:g.elements,files:null},config:{maxWidthOrHeight:r}});case 18:b=e.sent,y=b.width,x=b.height,w=Math.floor(h/n)*(r+2*o),k=h%n*(r+2*o),u.drawImage(b,k+(r-y)/2+o,w+(r-x)/2+o),u.lineWidth=a,u.strokeStyle=M.gray[4],u.strokeRect(k+o/2,w+o/2,r+o,r+o);case 26:e.next=14;break;case 28:e.next=33;break;case 30:e.prev=30,e.t0=e.catch(12),d.e(e.t0);case 33:return e.prev=33,d.f(),e.finish(33);case 36:return e.t1=L.Tu,e.t2=File,e.next=40,(0,L._c)(s);case 40:return e.t3=e.sent,e.t4=[e.t3],e.t5={type:v.LO.png},e.t6=new e.t2(e.t4,"preview",e.t5),e.t7={outputType:v.LO.jpg,maxWidthOrHeight:5e3},e.next=47,(0,e.t1)(e.t6,e.t7);case 47:return e.abrupt("return",e.sent);case 48:case"end":return e.stop()}}),e,null,[[12,30,33,36]])})));return function(t){return e.apply(this,arguments)}}(),re=function(e){var t=e.libItem,n=e.appState,r=e.index,i=e.onChange,a=e.onRemove,s=(0,c.useRef)(null),u=(0,c.useRef)(null);return(0,c.useEffect)((function(){var e=s.current;e&&(0,o.Z)(l().mark((function r(){var o;return l().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,(0,A.$D)({data:{elements:t.elements,appState:J(J({},n),{},{viewBackgroundColor:M.white,exportBackground:!0}),files:null}});case 2:o=r.sent,e.innerHTML=o.outerHTML;case 4:case"end":return r.stop()}}),r)})))()}),[t.elements,n]),(0,x.jsxs)("div",{className:"single-library-item",children:["published"===t.status&&(0,x.jsx)("span",{className:"single-library-item-status",children:(0,d.t)("labels.statusPublished")}),(0,x.jsx)("div",{ref:s,className:"single-library-item__svg"}),(0,x.jsx)(C.V,{"aria-label":(0,d.t)("buttons.remove"),type:"button",icon:_.CloseIcon,className:"single-library-item--remove",onClick:a.bind(null,t.id),title:(0,d.t)("buttons.remove")}),(0,x.jsxs)("div",{style:{display:"flex",margin:"0.8rem 0",width:"100%",fontSize:"14px",fontWeight:500,flexDirection:"column"},children:[(0,x.jsxs)("label",{style:{display:"flex",justifyContent:"space-between",flexDirection:"column"},children:[(0,x.jsxs)("div",{style:{padding:"0.5em 0"},children:[(0,x.jsx)("span",{style:{fontWeight:500,color:M.gray[6]},children:(0,d.t)("publishDialog.itemName")}),(0,x.jsx)("span",{"aria-hidden":"true",className:"required",children:"*"})]}),(0,x.jsx)("input",{type:"text",ref:u,style:{width:"80%",padding:"0.2rem"},defaultValue:t.name,placeholder:"Item name",onChange:function(e){i(e.target.value,r)}})]}),(0,x.jsx)("span",{className:"error",children:t.error})]})]})},oe=function(e){var t=e.onClose,n=e.libraryItems,r=e.appState,a=e.onSuccess,s=e.onError,u=e.updateItemsInStorage,f=e.onRemove,h=(0,c.useState)({authorName:"",githubHandle:"",name:"",description:"",twitterHandle:"",website:""}),m=(0,i.Z)(h,2),g=m[0],b=m[1],y=(0,c.useState)(!1),w=(0,i.Z)(y,2),k=w[0],E=w[1];(0,c.useEffect)((function(){var e=function(){try{var e=localStorage.getItem(te);if(e)return JSON.parse(e)}catch(e){console.error(e)}return null}();e&&b(e)}),[]);var O=(0,c.useState)(n.slice()),j=(0,i.Z)(O,2),_=j[0],C=j[1];(0,c.useEffect)((function(){C(n.slice())}),[n]);var I,T=function(e){b(J(J({},g),{},(0,p.Z)({},e.target.name,e.target.value)))},P=function(){var e=(0,o.Z)(l().mark((function e(t){var n,r,o,i,c,u,f;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t.preventDefault(),E(!0),n=[],r=!1,_.forEach((function(e){var t="";e.name||(t=(0,d.t)("publishDialog.errors.required"),r=!0),n.push(J(J({},e),{},{error:t}))})),!r){e.next=9;break}return C(n),E(!1),e.abrupt("return");case 9:return e.next=11,ne(_);case 11:o=e.sent,i={type:v.r8.excalidrawLibrary,version:v.Kr.excalidrawLibrary,source:v.pb,libraryItems:_},c=JSON.stringify(i,null,2),u=new Blob([c],{type:"application/json"}),(f=new FormData).append("excalidrawLib",u),f.append("previewImage",o),f.append("previewImageType",o.type),f.append("title",g.name),f.append("authorName",g.authorName),f.append("githubHandle",g.githubHandle),f.append("name",g.name),f.append("description",g.description),f.append("twitterHandle",g.twitterHandle),f.append("website",g.website),fetch("https://us-central1-excalidraw-room-persistence.cloudfunctions.net/libraries/submit",{method:"post",body:f}).then((function(e){return e.ok?e.json().then((function(e){var t=e.url;localStorage.removeItem(te),a({url:t,authorName:g.authorName,items:_})})):e.json().catch((function(){throw new Error(e.statusText||"something went wrong")})).then((function(t){throw new Error(t.message||e.statusText||"something went wrong")}))}),(function(e){console.error(e),s(e),E(!1)})).catch((function(e){console.error(e),s(e),E(!1)}));case 27:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),M=(0,c.useCallback)((function(){u(_),function(e){try{localStorage.setItem(te,JSON.stringify(e))}catch(e){console.error(e)}}(g),t()}),[_,t,u,g]),A=!!n.length,L=n.some((function(e){return"published"===e.status}));return(0,x.jsx)(D.V,{onCloseRequest:M,title:(0,d.t)("publishDialog.title"),className:"publish-library",children:A?(0,x.jsxs)("form",{onSubmit:P,children:[(0,x.jsx)("div",{className:"publish-library-note",children:(0,x.jsx)(S.Z,{i18nKey:"publishDialog.noteDescription",link:function(e){return(0,x.jsx)("a",{href:"https://libraries.excalidraw.com",target:"_blank",rel:"noopener noreferrer",children:e})}})}),(0,x.jsx)("span",{className:"publish-library-note",children:(0,x.jsx)(S.Z,{i18nKey:"publishDialog.noteGuidelines",link:function(e){return(0,x.jsx)("a",{href:"https://github.com/excalidraw/excalidraw-libraries#guidelines",target:"_blank",rel:"noopener noreferrer",children:e})}})}),(0,x.jsx)("div",{className:"publish-library-note",children:(0,d.t)("publishDialog.noteItems")}),L&&(0,x.jsx)("span",{className:"publish-library-note publish-library-warning",children:(0,d.t)("publishDialog.republishWarning")}),(I=[],_.forEach((function(e,t){I.push((0,x.jsx)("div",{className:"single-library-item-wrapper",children:(0,x.jsx)(re,{libItem:e,appState:r,index:t,onChange:function(e,t){var n=_.slice();n[t].name=e,C(n)},onRemove:f})},t))})),(0,x.jsx)("div",{className:"selected-library-items",children:I})),(0,x.jsxs)("div",{className:"publish-library__fields",children:[(0,x.jsxs)("label",{children:[(0,x.jsxs)("div",{children:[(0,x.jsx)("span",{children:(0,d.t)("publishDialog.libraryName")}),(0,x.jsx)("span",{"aria-hidden":"true",className:"required",children:"*"})]}),(0,x.jsx)("input",{type:"text",name:"name",required:!0,value:g.name,onChange:T,placeholder:(0,d.t)("publishDialog.placeholder.libraryName")})]}),(0,x.jsxs)("label",{style:{alignItems:"flex-start"},children:[(0,x.jsxs)("div",{children:[(0,x.jsx)("span",{children:(0,d.t)("publishDialog.libraryDesc")}),(0,x.jsx)("span",{"aria-hidden":"true",className:"required",children:"*"})]}),(0,x.jsx)("textarea",{name:"description",rows:4,required:!0,value:g.description,onChange:T,placeholder:(0,d.t)("publishDialog.placeholder.libraryDesc")})]}),(0,x.jsxs)("label",{children:[(0,x.jsxs)("div",{children:[(0,x.jsx)("span",{children:(0,d.t)("publishDialog.authorName")}),(0,x.jsx)("span",{"aria-hidden":"true",className:"required",children:"*"})]}),(0,x.jsx)("input",{type:"text",name:"authorName",required:!0,value:g.authorName,onChange:T,placeholder:(0,d.t)("publishDialog.placeholder.authorName")})]}),(0,x.jsxs)("label",{children:[(0,x.jsx)("span",{children:(0,d.t)("publishDialog.githubUsername")}),(0,x.jsx)("input",{type:"text",name:"githubHandle",value:g.githubHandle,onChange:T,placeholder:(0,d.t)("publishDialog.placeholder.githubHandle")})]}),(0,x.jsxs)("label",{children:[(0,x.jsx)("span",{children:(0,d.t)("publishDialog.twitterUsername")}),(0,x.jsx)("input",{type:"text",name:"twitterHandle",value:g.twitterHandle,onChange:T,placeholder:(0,d.t)("publishDialog.placeholder.twitterHandle")})]}),(0,x.jsxs)("label",{children:[(0,x.jsx)("span",{children:(0,d.t)("publishDialog.website")}),(0,x.jsx)("input",{type:"text",name:"website",pattern:"https?://.+",title:(0,d.t)("publishDialog.errors.website"),value:g.website,onChange:T,placeholder:(0,d.t)("publishDialog.placeholder.website")})]}),(0,x.jsx)("span",{className:"publish-library-note",children:(0,x.jsx)(S.Z,{i18nKey:"publishDialog.noteLicense",link:function(e){return(0,x.jsx)("a",{href:"https://github.com/excalidraw/excalidraw-libraries/blob/main/LICENSE",target:"_blank",rel:"noopener noreferrer",children:e})}})})]}),(0,x.jsxs)("div",{className:"publish-library__buttons",children:[(0,x.jsx)(Z.Z,{label:(0,d.t)("buttons.cancel"),onClick:M,"data-testid":"cancel-clear-canvas-button"}),(0,x.jsx)(Z.Z,{type:"submit",label:(0,d.t)("buttons.submit"),actionType:"primary",isLoading:k})]})]}):(0,x.jsx)("p",{style:{padding:"1em",textAlign:"center",fontWeight:500},children:(0,d.t)("publishDialog.atleastOneLibItem")})})},ie=n(1510),ae=n(96),le=n(6127),ce=function(e,t){return e.filter((function(e){return t.includes(e.id)}))},se=function(e){var t,n,r=e.setAppState,a=e.selectedItems,s=e.library,f=e.onRemoveFromLibrary,p=e.resetLibrary,g=e.onSelectItems,v=e.appState,b=e.className,y=(0,T.KO)(u.rF,O.yE),w=(0,i.Z)(y,1)[0],E=(0,T.KO)(Pe,O.yE),j=(0,i.Z)(E,2),M=j[0],A=j[1],L=(0,c.useState)(!1),Z=(0,i.Z)(L,2),R=Z[0],z=Z[1],N=!!a.length,B=N?w.libraryItems.filter((function(e){return a.includes(e.id)})):w.libraryItems,H=N?(0,d.t)("buttons.remove"):(0,d.t)("buttons.resetLibrary"),F=(0,c.useState)(!1),W=(0,i.Z)(F,2),U=W[0],K=W[1],Y=(0,c.useState)(null),G=(0,i.Z)(Y,2),V=G[0],X=G[1],q=(0,c.useCallback)((function(){return(0,x.jsxs)(D.V,{onCloseRequest:function(){return X(null)},title:(0,d.t)("publishSuccessDialog.title"),className:"publish-library-success",size:"small",children:[(0,x.jsx)("p",{children:(0,x.jsx)(S.Z,{i18nKey:"publishSuccessDialog.content",authorName:V.authorName,link:function(e){return(0,x.jsx)("a",{href:null==V?void 0:V.url,target:"_blank",rel:"noopener noreferrer",children:e})}})}),(0,x.jsx)(C.V,{type:"button",title:(0,d.t)("buttons.close"),"aria-label":(0,d.t)("buttons.close"),label:(0,d.t)("buttons.close"),onClick:function(){return X(null)},"data-testid":"publish-library-success-close",className:"publish-library-success-close"})]})}),[X,V]),$=function(){var e=(0,o.Z)(l().mark((function e(){return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,s.updateLibrary({libraryItems:(0,I.I$)({description:"Excalidraw library files"}),merge:!0,openLibraryMenu:!0});case 3:e.next=11;break;case 5:if(e.prev=5,e.t0=e.catch(0),"AbortError"!==(null===e.t0||void 0===e.t0?void 0:e.t0.name)){e.next=10;break}return console.warn(e.t0),e.abrupt("return");case 10:r({errorMessage:(0,d.t)("errors.importLibraryError")});case 11:case"end":return e.stop()}}),e,null,[[0,5]])})));return function(){return e.apply(this,arguments)}}(),J=function(){var e=(0,o.Z)(l().mark((function e(){var t;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!N){e.next=4;break}e.t0=B,e.next=7;break;case 4:return e.next=6,s.getLatestLibrary();case 6:e.t0=e.sent;case 7:t=e.t0,(0,h.t1)(t).catch(m.FG).catch((function(e){r({errorMessage:e.message})}));case 9:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}();return(0,x.jsxs)("div",{className:(0,k.Z)("library-menu-dropdown-container",b),children:[(0,x.jsxs)(ie.Z,{open:M,children:[(0,x.jsx)(ie.Z.Trigger,{onToggle:function(){return A(!M)},children:_.DotsIcon}),(0,x.jsxs)(ie.Z.Content,{onClickOutside:function(){return A(!1)},onSelect:function(){return A(!1)},className:"library-menu",children:[!N&&(0,x.jsx)(ie.Z.Item,{onSelect:$,icon:_.LoadIcon,"data-testid":"lib-dropdown--load",children:(0,d.t)("buttons.load")}),!!B.length&&(0,x.jsx)(ie.Z.Item,{onSelect:J,icon:_.ExportIcon,"data-testid":"lib-dropdown--export",children:(0,d.t)("buttons.export")}),!!B.length&&(0,x.jsx)(ie.Z.Item,{onSelect:function(){return z(!0)},icon:_.TrashIcon,children:H}),N&&(0,x.jsx)(ie.Z.Item,{icon:_.publishIcon,onSelect:function(){return K(!0)},"data-testid":"lib-dropdown--remove",children:(0,d.t)("buttons.publishLibrary")})]})]}),a.length>0&&(0,x.jsx)("div",{className:"library-actions-counter",children:a.length}),R&&(t=a.length?(0,d.t)("alerts.removeItemsFromsLibrary",{count:a.length}):(0,d.t)("alerts.resetLibrary"),n=a.length?(0,d.t)("confirmDialog.removeItemsFromLib"):(0,d.t)("confirmDialog.resetLibrary"),(0,x.jsx)(P.Z,{onConfirm:function(){a.length?f():p(),z(!1)},onCancel:function(){z(!1)},title:n,children:(0,x.jsx)("p",{children:t})})),U&&(0,x.jsx)(oe,{onClose:function(){return K(!1)},libraryItems:ce(w.libraryItems,a),appState:v,onSuccess:function(e){return function(e,t){K(!1),X({url:e.url,authorName:e.authorName});var n=t.slice();n.forEach((function(e){a.includes(e.id)&&(e.status="published")})),s.setLibrary(n)}(e,w.libraryItems)},onError:function(e){return window.alert(e)},updateItemsInStorage:function(){return s.setLibrary(w.libraryItems)},onRemove:function(e){return g(a.filter((function(t){return t!==e})))}}),V&&q()]})},ue=function(e){var t=e.selectedItems,n=e.onSelectItems,r=e.className,a=(0,j.qD)().library,c=(0,le.yT)(),s=c.clearLibraryCache,f=c.deleteItemsFromLibraryCache,p=(0,ae.I)(),h=(0,j.n9)(),m=(0,T.KO)(u.rF,O.yE),g=(0,i.Z)(m,1)[0],v=function(){var e=(0,o.Z)(l().mark((function e(r){var o;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:o=r.filter((function(e){return!t.includes(e.id)})),a.setLibrary(o).catch((function(){h({errorMessage:(0,d.t)("alerts.errorRemovingFromLibrary")})})),f(t),n([]);case 4:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}();return(0,x.jsx)(se,{appState:p,setAppState:h,selectedItems:t,onSelectItems:n,library:a,onRemoveFromLibrary:function(){return v(g.libraryItems)},resetLibrary:function(){a.resetLibrary(),s()},className:r})},de=n(2701),fe={};fe.styleTagTransform=V(),fe.setAttributes=U(),fe.insert=F().bind(null,"head"),fe.domAPI=B(),fe.insertStyleElement=Y();z()(de.Z,fe),de.Z&&de.Z.locals&&de.Z.locals;var pe=n(3807),he=(0,c.memo)((function(e){var t=e.id,n=e.elements,r=e.isPending,o=e.onClick,a=e.selected,l=e.onToggle,s=e.onDrag,u=e.svgCache,d=(0,c.useRef)(null),f=(0,le.mF)(t,n,u);(0,c.useEffect)((function(){var e=d.current;if(e)return f&&(e.innerHTML=f.outerHTML),function(){e.innerHTML=""}}),[f]);var p=(0,c.useState)(!1),h=(0,i.Z)(p,2),m=h[0],g=h[1],v=(0,j.Fy)().isMobile,b=r&&(0,x.jsx)("div",{className:"library-unit__adder",children:_.PlusIcon});return(0,x.jsxs)("div",{className:(0,k.Z)("library-unit",{"library-unit__active":n,"library-unit--hover":n&&m,"library-unit--selected":a,"library-unit--skeleton":!f}),onMouseEnter:function(){return g(!0)},onMouseLeave:function(){return g(!1)},children:[(0,x.jsx)("div",{className:(0,k.Z)("library-unit__dragger",{"library-unit__pulse":!!r}),ref:d,draggable:!!n,onClick:n||r?function(e){t&&e.shiftKey?l(t,e):o(t)}:void 0,onDragStart:function(e){t?(g(!1),s(t,e)):e.preventDefault()}}),b,t&&n&&(m||v||a)&&(0,x.jsx)(pe.o,{checked:a,onChange:function(e,n){return l(t,n)},className:"library-unit__checkbox"})]})})),me=function(){return(0,x.jsx)("div",{className:"library-unit library-unit--skeleton"})};var ge=s().useTransition||function(){return[!1,(0,c.useCallback)((function(e){return e()}),[])]},ve=function(e){var t=e.children;return(0,x.jsx)("div",{className:"library-menu-items-container__grid",children:t})},be=(0,c.memo)((function(e){var t=e.items,n=e.onItemSelectToggle,r=e.onItemDrag,o=e.isItemSelected,a=e.onClick,l=e.svgCache,s=e.itemsRenderedPerBatch,u=ge(),d=(0,i.Z)(u,2)[1],f=(0,c.useState)(0),p=(0,i.Z)(f,2),h=p[0],m=p[1];return(0,c.useEffect)((function(){h<t.length&&d((function(){m(h+s)}))}),[h,t.length,d,s]),(0,x.jsx)(x.Fragment,{children:t.map((function(e,t){var i;return t<h?(0,x.jsx)(he,{elements:null==e?void 0:e.elements,isPending:!(null!=e&&e.id||null==e||!e.elements),onClick:a,svgCache:l,id:null==e?void 0:e.id,selected:o(e.id),onToggle:n,onDrag:r},null!==(i=null==e?void 0:e.id)&&void 0!==i?i:t):(0,x.jsx)(me,{},t)}))})})),ye=n(200),xe=n.n(ye),we=(0,T.cn)(0),ke=n(6440),Ee={};Ee.styleTagTransform=V(),Ee.setAttributes=U(),Ee.insert=F().bind(null,"head"),Ee.domAPI=B(),Ee.insertStyleElement=Y();z()(ke.Z,Ee),ke.Z&&ke.Z.locals&&ke.Z.locals;function Se(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Oe(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Se(Object(n),!0).forEach((function(t){(0,p.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Se(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function je(e){var t=e.isLoading,n=e.libraryItems,o=e.onAddToLibrary,a=e.onInsertLibraryItems,l=e.pendingElements,s=e.theme,u=e.id,f=e.libraryReturnUrl,p=e.onSelectItems,w=e.selectedItems,k=(0,c.useRef)(null),S=function(e){var t=(0,T.KO)(we),n=(0,i.Z)(t,2),r=n[0],o=n[1];return(0,c.useEffect)((function(){var t=e.current;if(t){var n=xe()((function(){var e=t.scrollTop;o(e)}),200);return t.addEventListener("scroll",n),function(){n.cancel(),t.removeEventListener("scroll",n)}}}),[e,o]),r}(k);(0,c.useEffect)((function(){var e;S>0&&(null===(e=k.current)||void 0===e||e.scrollTo(0,S))}),[]);var O=(0,le.yT)().svgCache,j=(0,c.useMemo)((function(){return n.filter((function(e){return"published"!==e.status}))}),[n]),_=(0,c.useMemo)((function(){return n.filter((function(e){return"published"===e.status}))}),[n]),C=!n.length&&!l.length,I=!l.length&&!j.length&&!_.length,P=(0,c.useState)(null),M=(0,i.Z)(P,2),D=M[0],A=M[1],L=(0,c.useCallback)((function(e,t){var n=!w.includes(e),o=[].concat((0,r.Z)(j),(0,r.Z)(_));if(n){if(t.shiftKey&&D){var i=o.findIndex((function(e){return e.id===D})),a=o.findIndex((function(t){return t.id===e}));if(-1===i||-1===a)return void p([].concat((0,r.Z)(w),[e]));var l=(0,m.xn)(w),c=o.reduce((function(e,t,n){return(n>=i&&n<=a||l.has(t.id))&&e.push(t.id),e}),[]);p(c)}else p([].concat((0,r.Z)(w),[e]));A(e)}else A(null),p(w.filter((function(t){return t!==e})))}),[D,p,_,w,j]),Z=(0,c.useCallback)((function(e){return(w.includes(e)?n.filter((function(e){return w.includes(e.id)})):n.filter((function(t){return t.id===e}))).map((function(e){return Oe(Oe({},e),{},{elements:(0,y._N)(e.elements,{randomizeSeed:!0})})}))}),[n,w]),R=(0,c.useCallback)((function(e,t){t.dataTransfer.setData(v.LO.excalidrawlib,(0,h.NI)(Z(e)))}),[Z]),z=(0,c.useCallback)((function(e){return!!e&&w.includes(e)}),[w]),N=(0,c.useCallback)((function(){o(l)}),[l,o]),B=(0,c.useCallback)((function(e){e&&a(Z(e))}),[Z,a]),H=O.size>=n.length?64:17;return(0,x.jsxs)("div",{className:"library-menu-items-container",style:l.length||j.length||_.length?{justifyContent:"flex-start"}:{borderBottom:0},children:[!I&&(0,x.jsx)(ue,{selectedItems:w,onSelectItems:p,className:"library-menu-dropdown-container--in-heading"}),(0,x.jsxs)(g.Z.Col,{className:"library-menu-items-container__items",align:"start",gap:1,style:{flex:_.length>0?1:"0 1 auto",marginBottom:0},ref:k,children:[(0,x.jsxs)(x.Fragment,{children:[!I&&(0,x.jsx)("div",{className:"library-menu-items-container__header",children:(0,d.t)("labels.personalLib")}),t&&(0,x.jsx)("div",{style:{position:"absolute",top:"var(--container-padding-y)",right:"var(--container-padding-x)",transform:"translateY(50%)"},children:(0,x.jsx)(b.Z,{})}),l.length||j.length?(0,x.jsxs)(ve,{children:[l.length>0&&(0,x.jsx)(be,{itemsRenderedPerBatch:H,items:[{id:null,elements:l}],onItemSelectToggle:L,onItemDrag:R,onClick:N,isItemSelected:z,svgCache:O}),(0,x.jsx)(be,{itemsRenderedPerBatch:H,items:j,onItemSelectToggle:L,onItemDrag:R,onClick:B,isItemSelected:z,svgCache:O})]}):(0,x.jsxs)("div",{className:"library-menu-items__no-items",children:[(0,x.jsx)("div",{className:"library-menu-items__no-items__label",children:(0,d.t)("library.noItems")}),(0,x.jsx)("div",{className:"library-menu-items__no-items__hint",children:_.length>0?(0,d.t)("library.hint_emptyPrivateLibrary"):(0,d.t)("library.hint_emptyLibrary")})]})]}),(0,x.jsxs)(x.Fragment,{children:[(_.length>0||l.length>0||j.length>0)&&(0,x.jsx)("div",{className:"library-menu-items-container__header library-menu-items-container__header--excal",children:(0,d.t)("labels.excalidrawLib")}),_.length>0?(0,x.jsx)(ve,{children:(0,x.jsx)(be,{itemsRenderedPerBatch:H,items:_,onItemSelectToggle:L,onItemDrag:R,onClick:B,isItemSelected:z,svgCache:O})}):j.length>0?(0,x.jsx)("div",{style:{margin:"1rem 0",display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",width:"100%",fontSize:".9rem"},children:(0,d.t)("library.noItems")}):null]}),C&&(0,x.jsx)(E,{style:{padding:"16px 0",width:"100%"},id:u,libraryReturnUrl:f,theme:s,children:(0,x.jsx)(ue,{selectedItems:w,onSelectItems:p})})]})]})}var _e=n(7047),Ce=n(75),Ie=n(8923),Te={};Te.styleTagTransform=V(),Te.setAttributes=U(),Te.insert=F().bind(null,"head"),Te.domAPI=B(),Te.insertStyleElement=Y();z()(Ie.Z,Te),Ie.Z&&Ie.Z.locals&&Ie.Z.locals;var Pe=(0,T.cn)(!1),Me=function(e){var t=e.children;return(0,x.jsx)("div",{className:"layer-ui__library",children:t})},De=function(e){var t=e.onInsertLibraryItems,n=e.pendingElements,a=e.onAddToLibrary,s=e.setAppState,p=e.libraryReturnUrl,h=e.library,m=e.id,g=e.theme,v=e.selectedItems,y=e.onSelectItems,w=(0,T.KO)(u.rF,O.yE),k=(0,i.Z)(w,1)[0],S=(0,c.useCallback)((function(e){var t=function(){var e=(0,o.Z)(l().mark((function e(t,n){var o;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if((0,_e.L)("element","addToLibrary","ui"),!t.some((function(e){return"image"===e.type}))){e.next=3;break}return e.abrupt("return",s({errorMessage:"Support for adding images to the library coming soon!"}));case 3:o=[{status:"unpublished",elements:t,id:(0,f.kb)(),created:Date.now()}].concat((0,r.Z)(n)),a(),h.setLibrary(o).catch((function(){s({errorMessage:(0,d.t)("alerts.errorAddingToLibrary")})}));case 6:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}();t(e,k.libraryItems)}),[a,h,s,k.libraryItems]),j=(0,c.useMemo)((function(){return k.libraryItems}),[k]);if("loading"===k.status&&!k.isInitialized)return(0,x.jsx)(Me,{children:(0,x.jsx)("div",{className:"layer-ui__library-message",children:(0,x.jsxs)("div",{children:[(0,x.jsx)(b.Z,{size:"2em"}),(0,x.jsx)("span",{children:(0,d.t)("labels.libraryLoadingMessage")})]})})});var _=k.libraryItems.length>0||n.length>0;return(0,x.jsxs)(Me,{children:[(0,x.jsx)(je,{isLoading:"loading"===k.status,libraryItems:j,onAddToLibrary:S,onInsertLibraryItems:t,pendingElements:n,id:m,libraryReturnUrl:p,theme:g,onSelectItems:y,selectedItems:v}),_&&(0,x.jsx)(E,{className:"library-menu-control-buttons--at-bottom",style:{padding:"16px 12px 0 12px"},id:m,libraryReturnUrl:p,theme:g})]})},Ae=function(){var e=(0,j.qD)(),t=e.library,n=e.id,r=e.onInsertElements,o=(0,j.hY)(),a=(0,ae.I)(),l=(0,j.n9)(),s=(0,j.bd)(),d=(0,c.useState)([]),f=(0,i.Z)(d,2),p=f[0],h=f[1],g=(0,c.useMemo)((function(){return t}),[t]),v=function(e,t){var n=function(){return(0,Ce.eD)(t,e,{includeBoundTextElement:!0,includeElementsInFrames:!0})},r=(0,c.useRef)(n()),o=(0,c.useRef)(e),i=(0,c.useRef)(t);return(0,m.w8)(e.selectedElementIds,o.current.selectedElementIds)&&(0,m.w8)(t,i.current)||(r.current=n(),o.current=e,i.current=t),r.current}(a,s),b=(0,c.useCallback)((function(e){r((0,u.WV)(e))}),[r]),y=(0,c.useCallback)((function(){l({selectedElementIds:{},selectedGroupIds:{}})}),[l]);return(0,x.jsx)(De,{pendingElements:v,onInsertLibraryItems:b,onAddToLibrary:y,setAppState:l,libraryReturnUrl:o.libraryReturnUrl,library:g,id:n,theme:a.theme,selectedItems:p,onSelectItems:h})}},5440:function(e,t,n){"use strict";n.d(t,{z:function(){return u}});var r=n(2577),o=n(5202),i=n(9787),a=n(5644),l=n(45),c=n(2335),s=n(4512),u=function(e){var t=e.delay,n=e.theme,u=(0,i.useState)(!!t),d=(0,r.Z)(u,2),f=d[0],p=d[1];return(0,i.useEffect)((function(){if(t){var e=setTimeout((function(){p(!1)}),t);return function(){return clearTimeout(e)}}}),[t]),f?null:(0,s.jsxs)("div",{className:(0,l.Z)("LoadingMessage",{"LoadingMessage--dark":n===c.C6.DARK}),children:[(0,s.jsx)("div",{children:(0,s.jsx)(a.Z,{})}),(0,s.jsx)("div",{className:"LoadingMessage-text",children:(0,o.t)("labels.loadingScene")})]})}},2891:function(e,t,n){"use strict";n.d(t,{J:function(){return k}});var r=n(9787),o=n(487),i=n.n(o),a=n(631),l=n.n(a),c=n(2052),s=n.n(c),u=n(4010),d=n.n(u),f=n(1469),p=n.n(f),h=n(9329),m=n.n(h),g=n(9935),v={};v.styleTagTransform=m(),v.setAttributes=d(),v.insert=s().bind(null,"head"),v.domAPI=l(),v.insertStyleElement=p();i()(g.Z,v),g.Z&&g.Z.locals&&g.Z.locals;var b=n(5156),y=n(6340),x=n(6066),w=n(4512),k=function(e){var t=e.children,n=e.left,o=e.top,i=e.onCloseRequest,a=e.fitInViewport,l=void 0!==a&&a,c=e.offsetLeft,s=void 0===c?0:c,u=e.offsetTop,d=void 0===u?0:u,f=e.viewportWidth,p=void 0===f?window.innerWidth:f,h=e.viewportHeight,m=void 0===h?window.innerHeight:h,g=(0,r.useRef)(null);(0,r.useEffect)((function(){var e=g.current;if(e){e.contains(document.activeElement)||e.focus();var t=function(t){if(t.key===x.tW.TAB){var n=(0,y.xp)(e),r=document.activeElement,o=n.findIndex((function(e){return e===r}));if(r===e){var i;if(t.shiftKey)null===(i=n[n.length-1])||void 0===i||i.focus();else n[0].focus();t.preventDefault(),t.stopImmediatePropagation()}else if(0===o&&t.shiftKey){var a;null===(a=n[n.length-1])||void 0===a||a.focus(),t.preventDefault(),t.stopImmediatePropagation()}else if(o===n.length-1&&!t.shiftKey){var l;null===(l=n[0])||void 0===l||l.focus(),t.preventDefault(),t.stopImmediatePropagation()}}};return e.addEventListener("keydown",t),function(){return e.removeEventListener("keydown",t)}}}),[]);var v=(0,r.useRef)(null);return(0,r.useLayoutEffect)((function(){if(l&&g.current&&null!=o&&null!=n){var e,t,r=g.current,i=r.getBoundingClientRect(),a=i.width,c=i.height;if((null===(e=v.current)||void 0===e?void 0:e.top)===o&&(null===(t=v.current)||void 0===t?void 0:t.left)===n)return;v.current={top:o,left:n},a>=p?(r.style.width="".concat(p,"px"),r.style.left="0px",r.style.overflowX="scroll"):r.style.left="".concat(n+a-s>p?p-a-10:n,"px"),c>=m?(r.style.height="".concat(m-20,"px"),r.style.top="10px",r.style.overflowY="scroll"):r.style.top="".concat(o+c-d>m?m-c:o,"px")}}),[o,n,l,p,m,s,d]),(0,r.useEffect)((function(){if(i){var e=function(e){var t;null!==(t=g.current)&&void 0!==t&&t.contains(e.target)||(0,b.unstable_batchedUpdates)((function(){return i(e)}))};return document.addEventListener("pointerdown",e,!1),function(){return document.removeEventListener("pointerdown",e,!1)}}}),[i]),(0,w.jsx)("div",{className:"popover",ref:g,tabIndex:-1,children:t})}},1034:function(e,t,n){"use strict";n.d(t,{YE:function(){return ot},t6:function(){return nt}});var r=n(2577),o=n(7169),i=n(2726),a=n(9787),l=n.n(a),c=n(1881),s=n(3607),u=n(9487),d=l().createContext({}),f=n(45),p=n(5202),h=n(8993),m=n(3646),g=n(1894),v=n(7172),b=n(4512),y=function(e){var t=e.children,n=e.className,r=(0,h.Fy)(),o=(0,a.useContext)(d),i=!(!r.canDeviceFitSidebar||!o.shouldRenderDockButton);return(0,b.jsxs)("div",{className:(0,f.Z)("sidebar__header",n),"data-testid":"sidebar-header",children:[t,(0,b.jsxs)("div",{className:"sidebar__header__buttons",children:[i&&(0,b.jsx)(g.u,{label:(0,p.t)("labels.sidebarLock"),children:(0,b.jsx)(v.z,{onSelect:function(){var e;return null===(e=o.onDock)||void 0===e?void 0:e.call(o,!o.docked)},selected:!!o.docked,className:"sidebar__dock","data-testid":"sidebar-dock","aria-label":(0,p.t)("labels.sidebarLock"),children:m.PinIcon})}),(0,b.jsx)(v.z,{"data-testid":"sidebar-close",className:"sidebar__close",onSelect:o.onCloseRequest,"aria-label":(0,p.t)("buttons.close"),children:m.CloseIcon})]})]})};y.displayName="SidebarHeader";var x=n(6340),w=n(6066),k=n(2335),E=n(96),S=n(487),O=n.n(S),j=n(631),_=n.n(j),C=n(2052),I=n.n(C),T=n(4010),P=n.n(T),M=n(1469),D=n.n(M),A=n(9329),L=n.n(A),Z=n(7051),R={};R.styleTagTransform=L(),R.setAttributes=P(),R.insert=I().bind(null,"head"),R.domAPI=_(),R.insertStyleElement=D();O()(Z.Z,R),Z.Z&&Z.Z.locals&&Z.Z.locals;var z=function(e){var t,n=e.name,r=e.tab,o=e.icon,i=e.title,a=e.children,l=e.onToggle,c=e.className,s=e.style,u=(0,h.n9)(),d=(0,E.I)();return(0,b.jsxs)("label",{title:i,children:[(0,b.jsx)("input",{className:"ToolIcon_type_checkbox",type:"checkbox",onChange:function(e){var t;null===(t=document.querySelector(".layer-ui__wrapper"))||void 0===t||t.classList.remove("animate");var o=e.target.checked;u({openSidebar:o?{name:n,tab:r}:null}),null==l||l(o)},checked:(null===(t=d.openSidebar)||void 0===t?void 0:t.name)===n,"aria-label":i,"aria-keyshortcuts":"0"}),(0,b.jsxs)("div",{className:(0,f.Z)("sidebar-trigger",c),style:s,children:[o&&(0,b.jsx)("div",{children:o}),a&&(0,b.jsx)("div",{className:"sidebar-trigger__label",children:a})]})]})};z.displayName="SidebarTrigger";var N=n(11),B=n(7217),H=n(1267),F=n(9335),W=n(4801);var U=n(5622),K=n(3119),Y=n(3060),G=n(2673);const V=(0,a.createContext)(void 0);function X(e){const t=(0,a.useContext)(V);return e||t||"ltr"}const q="rovingFocusGroup.onEntryFocus",$={bubbles:!1,cancelable:!0},J="RovingFocusGroup",[Q,ee,te]=function(e){const t=e+"CollectionProvider",[n,r]=(0,H.b)(t),[o,i]=n(t,{collectionRef:{current:null},itemMap:new Map}),a=e=>{const{scope:t,children:n}=e,r=l().useRef(null),i=l().useRef(new Map).current;return l().createElement(o,{scope:t,itemMap:i,collectionRef:r},n)},c=e+"CollectionSlot",s=l().forwardRef(((e,t)=>{const{scope:n,children:r}=e,o=i(c,n),a=(0,F.e)(t,o.collectionRef);return l().createElement(W.g7,{ref:a},r)})),u=e+"CollectionItemSlot",d="data-radix-collection-item",f=l().forwardRef(((e,t)=>{const{scope:n,children:r,...o}=e,a=l().useRef(null),c=(0,F.e)(t,a),s=i(u,n);return l().useEffect((()=>(s.itemMap.set(a,{ref:a,...o}),()=>{s.itemMap.delete(a)}))),l().createElement(W.g7,{[d]:"",ref:c},r)}));return[{Provider:a,Slot:s,ItemSlot:f},function(t){const n=i(e+"CollectionConsumer",t);return l().useCallback((()=>{const e=n.collectionRef.current;if(!e)return[];const t=Array.from(e.querySelectorAll(`[${d}]`));return Array.from(n.itemMap.values()).sort(((e,n)=>t.indexOf(e.ref.current)-t.indexOf(n.ref.current)))}),[n.collectionRef,n.itemMap])},r]}(J),[ne,re]=(0,H.b)(J,[te]),[oe,ie]=ne(J),ae=(0,a.forwardRef)(((e,t)=>(0,a.createElement)(Q.Provider,{scope:e.__scopeRovingFocusGroup},(0,a.createElement)(Q.Slot,{scope:e.__scopeRovingFocusGroup},(0,a.createElement)(le,(0,N.Z)({},e,{ref:t})))))),le=(0,a.forwardRef)(((e,t)=>{const{__scopeRovingFocusGroup:n,orientation:r,loop:o=!1,dir:i,currentTabStopId:l,defaultCurrentTabStopId:c,onCurrentTabStopIdChange:s,onEntryFocus:u,...d}=e,f=(0,a.useRef)(null),p=(0,F.e)(t,f),h=X(i),[m=null,g]=(0,G.T)({prop:l,defaultProp:c,onChange:s}),[v,b]=(0,a.useState)(!1),y=(0,Y.W)(u),x=ee(n),w=(0,a.useRef)(!1),[k,E]=(0,a.useState)(0);return(0,a.useEffect)((()=>{const e=f.current;if(e)return e.addEventListener(q,y),()=>e.removeEventListener(q,y)}),[y]),(0,a.createElement)(oe,{scope:n,orientation:r,dir:h,loop:o,currentTabStopId:m,onItemFocus:(0,a.useCallback)((e=>g(e)),[g]),onItemShiftTab:(0,a.useCallback)((()=>b(!0)),[]),onFocusableItemAdd:(0,a.useCallback)((()=>E((e=>e+1))),[]),onFocusableItemRemove:(0,a.useCallback)((()=>E((e=>e-1))),[])},(0,a.createElement)(K.WV.div,(0,N.Z)({tabIndex:v||0===k?-1:0,"data-orientation":r},d,{ref:p,style:{outline:"none",...e.style},onMouseDown:(0,B.M)(e.onMouseDown,(()=>{w.current=!0})),onFocus:(0,B.M)(e.onFocus,(e=>{const t=!w.current;if(e.target===e.currentTarget&&t&&!v){const t=new CustomEvent(q,$);if(e.currentTarget.dispatchEvent(t),!t.defaultPrevented){const e=x().filter((e=>e.focusable));de([e.find((e=>e.active)),e.find((e=>e.id===m)),...e].filter(Boolean).map((e=>e.ref.current)))}}w.current=!1})),onBlur:(0,B.M)(e.onBlur,(()=>b(!1)))})))})),ce="RovingFocusGroupItem",se=(0,a.forwardRef)(((e,t)=>{const{__scopeRovingFocusGroup:n,focusable:r=!0,active:o=!1,tabStopId:i,...l}=e,c=(0,U.M)(),s=i||c,u=ie(ce,n),d=u.currentTabStopId===s,f=ee(n),{onFocusableItemAdd:p,onFocusableItemRemove:h}=u;return(0,a.useEffect)((()=>{if(r)return p(),()=>h()}),[r,p,h]),(0,a.createElement)(Q.ItemSlot,{scope:n,id:s,focusable:r,active:o},(0,a.createElement)(K.WV.span,(0,N.Z)({tabIndex:d?0:-1,"data-orientation":u.orientation},l,{ref:t,onMouseDown:(0,B.M)(e.onMouseDown,(e=>{r?u.onItemFocus(s):e.preventDefault()})),onFocus:(0,B.M)(e.onFocus,(()=>u.onItemFocus(s))),onKeyDown:(0,B.M)(e.onKeyDown,(e=>{if("Tab"===e.key&&e.shiftKey)return void u.onItemShiftTab();if(e.target!==e.currentTarget)return;const t=function(e,t,n){const r=function(e,t){return"rtl"!==t?e:"ArrowLeft"===e?"ArrowRight":"ArrowRight"===e?"ArrowLeft":e}(e.key,n);return"vertical"===t&&["ArrowLeft","ArrowRight"].includes(r)||"horizontal"===t&&["ArrowUp","ArrowDown"].includes(r)?void 0:ue[r]}(e,u.orientation,u.dir);if(void 0!==t){e.preventDefault();let o=f().filter((e=>e.focusable)).map((e=>e.ref.current));if("last"===t)o.reverse();else if("prev"===t||"next"===t){"prev"===t&&o.reverse();const i=o.indexOf(e.currentTarget);o=u.loop?(r=i+1,(n=o).map(((e,t)=>n[(r+t)%n.length]))):o.slice(i+1)}setTimeout((()=>de(o)))}var n,r}))})))})),ue={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function de(e){const t=document.activeElement;for(const n of e){if(n===t)return;if(n.focus(),document.activeElement!==t)return}}const fe=ae,pe=se;var he=n(1483);const me="Tabs",[ge,ve]=(0,H.b)(me,[re]),be=re(),[ye,xe]=ge(me),we=(0,a.forwardRef)(((e,t)=>{const{__scopeTabs:n,value:r,onValueChange:o,defaultValue:i,orientation:l="horizontal",dir:c,activationMode:s="automatic",...u}=e,d=X(c),[f,p]=(0,G.T)({prop:r,onChange:o,defaultProp:i});return(0,a.createElement)(ye,{scope:n,baseId:(0,U.M)(),value:f,onValueChange:p,orientation:l,dir:d,activationMode:s},(0,a.createElement)(K.WV.div,(0,N.Z)({dir:d,"data-orientation":l},u,{ref:t})))})),ke="TabsList",Ee=(0,a.forwardRef)(((e,t)=>{const{__scopeTabs:n,loop:r=!0,...o}=e,i=xe(ke,n),l=be(n);return(0,a.createElement)(fe,(0,N.Z)({asChild:!0},l,{orientation:i.orientation,dir:i.dir,loop:r}),(0,a.createElement)(K.WV.div,(0,N.Z)({role:"tablist","aria-orientation":i.orientation},o,{ref:t})))})),Se="TabsTrigger",Oe=(0,a.forwardRef)(((e,t)=>{const{__scopeTabs:n,value:r,disabled:o=!1,...i}=e,l=xe(Se,n),c=be(n),s=Ce(l.baseId,r),u=Ie(l.baseId,r),d=r===l.value;return(0,a.createElement)(pe,(0,N.Z)({asChild:!0},c,{focusable:!o,active:d}),(0,a.createElement)(K.WV.button,(0,N.Z)({type:"button",role:"tab","aria-selected":d,"aria-controls":u,"data-state":d?"active":"inactive","data-disabled":o?"":void 0,disabled:o,id:s},i,{ref:t,onMouseDown:(0,B.M)(e.onMouseDown,(e=>{o||0!==e.button||!1!==e.ctrlKey?e.preventDefault():l.onValueChange(r)})),onKeyDown:(0,B.M)(e.onKeyDown,(e=>{[" ","Enter"].includes(e.key)&&l.onValueChange(r)})),onFocus:(0,B.M)(e.onFocus,(()=>{const e="manual"!==l.activationMode;d||o||!e||l.onValueChange(r)}))})))})),je="TabsContent",_e=(0,a.forwardRef)(((e,t)=>{const{__scopeTabs:n,value:r,forceMount:o,children:i,...l}=e,c=xe(je,n),s=Ce(c.baseId,r),u=Ie(c.baseId,r),d=r===c.value,f=(0,a.useRef)(d);return(0,a.useEffect)((()=>{const e=requestAnimationFrame((()=>f.current=!1));return()=>cancelAnimationFrame(e)}),[]),(0,a.createElement)(he.z,{present:o||d},(({present:n})=>(0,a.createElement)(K.WV.div,(0,N.Z)({"data-state":d?"active":"inactive","data-orientation":c.orientation,role:"tabpanel","aria-labelledby":s,hidden:!n,id:u,tabIndex:0},l,{ref:t,style:{...e.style,animationDuration:f.current?"0s":void 0}}),n&&i)))}));function Ce(e,t){return`${e}-trigger-${t}`}function Ie(e,t){return`${e}-content-${t}`}const Te=we,Pe=Ee,Me=Oe,De=_e;var Ae=["children"];function Le(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ze(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Le(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Le(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Re=function(e){var t=e.children,n=(0,i.Z)(e,Ae);return(0,b.jsx)(Pe,Ze(Ze({className:"sidebar-triggers"},n),{},{children:t}))};Re.displayName="SidebarTabTriggers";var ze=["children","tab","onSelect"];function Ne(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Be(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ne(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ne(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var He=function(e){var t=e.children,n=e.tab,r=e.onSelect,o=(0,i.Z)(e,ze);return(0,b.jsx)(Me,{value:n,asChild:!0,onSelect:r,children:(0,b.jsx)("button",Be(Be({type:"button",className:"excalidraw-button sidebar-tab-trigger"},o),{},{children:t}))})};He.displayName="SidebarTabTrigger";var Fe=["children"];function We(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ue(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?We(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):We(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Ke=function(e){var t=e.children,n=(0,i.Z)(e,Fe),r=(0,E.I)(),o=(0,h.n9)();if(!r.openSidebar)return null;var a=r.openSidebar.name;return(0,b.jsx)(Te,Ue(Ue({className:"sidebar-tabs-root",value:r.openSidebar.tab,onValueChange:function(e){return o((function(t){return Ue(Ue({},t),{},{openSidebar:Ue(Ue({},t.openSidebar),{},{name:a,tab:e})})}))}},n),{},{children:t}))};Ke.displayName="SidebarTabs";var Ye=["tab","children"];function Ge(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ve(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ge(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ge(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Xe=function(e){var t=e.tab,n=e.children,r=(0,i.Z)(e,Ye);return(0,b.jsx)(De,Ve(Ve({},r),{},{value:t,children:n}))};Xe.displayName="SidebarTab";var qe=n(60),$e=n(8208),Je={};Je.styleTagTransform=L(),Je.setAttributes=P(),Je.insert=I().bind(null,"head"),Je.domAPI=_(),Je.insertStyleElement=D();O()($e.Z,Je),$e.Z&&$e.Z.locals&&$e.Z.locals;var Qe=["name","children","onDock","docked","className"];function et(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function tt(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?et(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):et(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var nt=(0,s.cn)(!1),rt=(0,a.forwardRef)((function(e,t){e.name;var n=e.children,r=e.onDock,o=e.docked,l=e.className,p=(0,i.Z)(e,Qe);var m=(0,h.n9)(),g=(0,s.b9)(nt,u.yE);(0,a.useLayoutEffect)((function(){return g(!!o),function(){g(!1)}}),[g,o]);var v=(0,a.useRef)({});v.current.onCloseRequest=function(){m({openSidebar:null})},v.current.onDock=function(e){return null==r?void 0:r(e)},v.current=(0,x.v4)(v.current,{docked:o,shouldRenderDockButton:!!r&&null!=o});var y=(0,a.useRef)(null);(0,a.useImperativeHandle)(t,(function(){return y.current}));var E=(0,h.Fy)(),S=(0,a.useCallback)((function(){!!document.querySelector(".Dialog")||m({openSidebar:null})}),[m]);return(0,qe.O)(y,(0,a.useCallback)((function(e){e.target.closest(".sidebar-trigger")||o&&E.canDeviceFitSidebar||S()}),[S,o,E.canDeviceFitSidebar])),(0,a.useEffect)((function(){var e=function(e){e.key!==w.tW.ESCAPE||o&&E.canDeviceFitSidebar||S()};return document.addEventListener(k.Ks.KEYDOWN,e),function(){document.removeEventListener(k.Ks.KEYDOWN,e)}}),[S,o,E.canDeviceFitSidebar]),(0,b.jsx)(c.W,tt(tt({},p),{},{className:(0,f.Z)("sidebar",{"sidebar--docked":o},l),ref:y,children:(0,b.jsx)(d.Provider,{value:v.current,children:n})}))}));rt.displayName="SidebarInner";var ot=Object.assign((0,a.forwardRef)((function(e,t){var n,o=(0,E.I)(),i=e.onStateChange,l=(0,a.useRef)(o.openSidebar);(0,a.useEffect)((function(){var t,n,r,a,c;(!o.openSidebar&&(null==l||null===(t=l.current)||void 0===t?void 0:t.name)===e.name||(null===(n=o.openSidebar)||void 0===n?void 0:n.name)===e.name&&(null==l||null===(r=l.current)||void 0===r?void 0:r.name)!==e.name||(null===(a=l.current)||void 0===a?void 0:a.name)===e.name)&&o.openSidebar!==l.current&&(null==i||i((null===(c=o.openSidebar)||void 0===c?void 0:c.name)!==e.name?null:o.openSidebar));l.current=o.openSidebar}),[o.openSidebar,i,e.name]);var c=(0,a.useState)(!1),s=(0,r.Z)(c,2),u=s[0],d=s[1];return(0,a.useLayoutEffect)((function(){return d(!0),function(){return d(!1)}}),[]),u&&(null===(n=o.openSidebar)||void 0===n?void 0:n.name)===e.name?(0,a.createElement)(rt,tt(tt({},e),{},{ref:t,key:e.name})):null})),{Header:y,TabTriggers:Re,TabTrigger:He,Tabs:Ke,Tab:Xe,Trigger:z});ot.displayName="Sidebar"},5644:function(e,t,n){"use strict";n.d(t,{Z:function(){return w}});var r=n(7169),o=n(9787),i=n.n(o),a=n(487),l=n.n(a),c=n(631),s=n.n(c),u=n(2052),d=n.n(u),f=n(4010),p=n.n(f),h=n(1469),m=n.n(h),g=n(9329),v=n.n(g),b=n(5892),y={};y.styleTagTransform=v(),y.setAttributes=p(),y.insert=d().bind(null,"head"),y.domAPI=s(),y.insertStyleElement=m();l()(b.Z,y),b.Z&&b.Z.locals&&b.Z.locals;var x=n(4512),w=function(e){var t=e.size,n=void 0===t?"1em":t,o=e.circleWidth,a=void 0===o?8:o,l=e.synchronized,c=void 0!==l&&l,s=-i().useRef(Date.now()).current%1600;return(0,x.jsx)("div",{className:"Spinner",children:(0,x.jsx)("svg",{viewBox:"0 0 100 100",style:(0,r.Z)({width:n,height:n},"--spinner-delay",c?"".concat(s,"ms"):0),children:(0,x.jsx)("circle",{cx:"50",cy:"50",r:50-a/2,strokeWidth:a,fill:"none",strokeMiterlimit:"10"})})})}},7239:function(e,t,n){"use strict";n.d(t,{Z:function(){return E}});var r=n(7169),o=n(487),i=n.n(o),a=n(631),l=n.n(a),c=n(2052),s=n.n(c),u=n(4010),d=n.n(u),f=n(1469),p=n.n(f),h=n(9329),m=n.n(h),g=n(3874),v={};v.styleTagTransform=m(),v.setAttributes=d(),v.insert=s().bind(null,"head"),v.domAPI=l(),v.insertStyleElement=p();i()(g.Z,v),g.Z&&g.Z.locals&&g.Z.locals;var b=n(9787),y=n(45),x=n(4512);function w(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function k(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?w(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):w(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var E={Row:(0,b.forwardRef)((function(e,t){var n=e.children,r=e.gap,o=e.align,i=e.justifyContent,a=e.className,l=e.style;return(0,x.jsx)("div",{className:(0,y.Z)("Stack Stack_horizontal",a),style:k({"--gap":r,alignItems:o,justifyContent:i},l),ref:t,children:n})})),Col:(0,b.forwardRef)((function(e,t){var n=e.children,r=e.gap,o=e.align,i=e.justifyContent,a=e.className,l=e.style;return(0,x.jsx)("div",{className:(0,y.Z)("Stack Stack_vertical",a),style:k({"--gap":r,justifyItems:o,justifyContent:i},l),ref:t,children:n})}))}},1319:function(e,t,n){"use strict";n.d(t,{V:function(){return h}});var r=n(8950),o=n(2577),i=n(2975),a=n.n(i),l=(n(5422),n(9787)),c=n.n(l),s=n(45),u=n(8993),d=n(6797),f=n(5644),p=n(4512),h=c().forwardRef((function(e,t){var n=(0,u.J0)().id,i=c().useRef(null);c().useImperativeHandle(t,(function(){return i.current}));var h="ToolIcon_size_".concat(e.size),m=(0,l.useState)(!1),g=(0,o.Z)(m,2),v=g[0],b=g[1],y=(0,l.useRef)(!0),x=function(){var t=(0,r.Z)(a().mark((function t(n){var r,o;return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!(o="onClick"in e&&(null===(r=e.onClick)||void 0===r?void 0:r.call(e,n)))||!("then"in o)){t.next=18;break}return t.prev=2,b(!0),t.next=6,o;case 6:t.next=15;break;case 8:if(t.prev=8,t.t0=t.catch(2),t.t0 instanceof d._){t.next=14;break}throw t.t0;case 14:console.warn(t.t0);case 15:return t.prev=15,y.current&&b(!1),t.finish(15);case 18:case"end":return t.stop()}}),t,null,[[2,8,15,18]])})));return function(e){return t.apply(this,arguments)}}();(0,l.useEffect)((function(){return function(){y.current=!1}}),[]);var w=(0,l.useRef)(null);if("button"===e.type||"icon"===e.type||"submit"===e.type){var k="icon"===e.type?"button":e.type;return(0,p.jsxs)("button",{className:(0,s.Z)("ToolIcon_type_button",h,e.className,e.visible&&!e.hidden?"ToolIcon_type_button--show":"ToolIcon_type_button--hide",{ToolIcon:!e.hidden,"ToolIcon--selected":e.selected,"ToolIcon--plain":"icon"===e.type}),style:e.style,"data-testid":e["data-testid"],hidden:e.hidden,title:e.title,"aria-label":e["aria-label"],type:k,onClick:x,ref:i,disabled:v||e.isLoading,children:[(e.icon||e.label)&&(0,p.jsxs)("div",{className:"ToolIcon__icon","aria-hidden":"true",children:[e.icon||e.label,e.keyBindingLabel&&(0,p.jsx)("span",{className:"ToolIcon__keybinding",children:e.keyBindingLabel}),e.isLoading&&(0,p.jsx)(f.Z,{})]}),e.showAriaLabel&&(0,p.jsxs)("div",{className:"ToolIcon__label",children:[e["aria-label"]," ",v&&(0,p.jsx)(f.Z,{})]}),e.children]})}return(0,p.jsxs)("label",{className:(0,s.Z)("ToolIcon",e.className),title:e.title,onPointerDown:function(t){var n;w.current=t.pointerType||null,null===(n=e.onPointerDown)||void 0===n||n.call(e,{pointerType:t.pointerType||null})},onPointerUp:function(){requestAnimationFrame((function(){w.current=null}))},children:[(0,p.jsx)("input",{className:"ToolIcon_type_radio ".concat(h),type:"radio",name:e.name,"aria-label":e["aria-label"],"aria-keyshortcuts":e["aria-keyshortcuts"],"data-testid":e["data-testid"],id:"".concat(n,"-").concat(e.id),onChange:function(){var t;null===(t=e.onChange)||void 0===t||t.call(e,{pointerType:w.current})},checked:e.checked,ref:i}),(0,p.jsxs)("div",{className:"ToolIcon__icon",children:[e.icon,e.keyBindingLabel&&(0,p.jsx)("span",{className:"ToolIcon__keybinding",children:e.keyBindingLabel})]})]})}));h.defaultProps={visible:!0,className:"",size:"medium"},h.displayName="ToolButton"},1894:function(e,t,n){"use strict";n.d(t,{u:function(){return w},bK:function(){return y},Js:function(){return x}});var r=n(487),o=n.n(r),i=n(631),a=n.n(i),l=n(2052),c=n.n(l),s=n(4010),u=n.n(s),d=n(1469),f=n.n(d),p=n(9329),h=n.n(p),m=n(6626),g={};g.styleTagTransform=h(),g.setAttributes=u(),g.insert=c().bind(null,"head"),g.domAPI=a(),g.insertStyleElement=f();o()(m.Z,g),m.Z&&m.Z.locals&&m.Z.locals;var v=n(9787),b=n(4512),y=function(){var e=document.querySelector(".excalidraw-tooltip");if(e)return e;var t=document.createElement("div");return document.body.appendChild(t),t.classList.add("excalidraw-tooltip"),t},x=function(e,t){var n,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"bottom",o=e.getBoundingClientRect(),i=window.innerWidth,a=window.innerHeight,l=5,c=t.left+t.width/2-o.width/2;c<0?c=l:c+o.width>=i&&(c=i-o.width-l),"bottom"===r?(n=t.top+t.height+l)+o.height>=a&&(n=t.top-o.height-l):(n=t.top-o.height-l)<0&&(n=t.top+t.height+l),Object.assign(e.style,{top:"".concat(n,"px"),left:"".concat(c,"px")})},w=function(e){var t=e.children,n=e.label,r=e.long,o=void 0!==r&&r,i=e.style;return(0,v.useEffect)((function(){return function(){return y().classList.remove("excalidraw-tooltip--visible")}}),[]),(0,b.jsx)("div",{className:"excalidraw-tooltip-wrapper",onPointerEnter:function(e){return function(e,t,n,r){t.classList.add("excalidraw-tooltip--visible"),t.style.minWidth=r?"50ch":"10ch",t.style.maxWidth=r?"50ch":"15ch",t.textContent=n;var o=e.getBoundingClientRect();x(t,o)}(e.currentTarget,y(),n,o)},onPointerLeave:function(){return y().classList.remove("excalidraw-tooltip--visible")},style:i,children:t})}},2242:function(e,t,n){"use strict";var r=n(2726),o=n(1930),i=n(9787),a=n.n(i),l=n(5202),c=["i18nKey","children"],s=/({{[\w-]+}})|(<[\w-]+>)|(<\/[\w-]+>)/g,u=/{{([\w-]+)}}/,d=/<([\w-]+)>/,f=/<\/([\w-]+)>/;t.Z=function(e){var t=e.i18nKey,n=(e.children,(0,r.Z)(e,c)),i=(0,l.QT)().t;return a().createElement.apply(a(),[a().Fragment,{}].concat((0,o.Z)(function(e,t){var n=[{name:"",children:[]}];return e.split(s).filter(Boolean).forEach((function(r){var i=r.match(d),l=r.match(f),c=r.match(u);if(null!==i){var s=i[1];t.hasOwnProperty(s)?n.push({name:s,children:[]}):console.warn("Trans: missed to pass in prop ".concat(s," for interpolating ").concat(e))}else if(null!==l)if(l[1]===n[n.length-1].name){var p=n.pop(),h=a().createElement.apply(a(),[a().Fragment,{}].concat((0,o.Z)(p.children))),m=t[p.name];"function"==typeof m&&n[n.length-1].children.push(m(h))}else console.warn("Trans: unexpected end tag ".concat(r," for interpolating ").concat(e));else if(null!==c){var g=c[1];t.hasOwnProperty(g)?n[n.length-1].children.push(t[g]):console.warn("Trans: key ".concat(g," not in props for interpolating ").concat(e))}else n[n.length-1].children.push(r)})),1!==n.length&&console.warn("Trans: stack not empty for interpolating ".concat(e)),n[0].children}(i(t),n))))}},6773:function(e,t,n){"use strict";n.d(t,{Z:function(){return S}});var r=n(2577),o=n(487),i=n.n(o),a=n(631),l=n.n(a),c=n(2052),s=n.n(c),u=n(4010),d=n.n(u),f=n(1469),p=n.n(f),h=n(9329),m=n.n(h),g=n(6359),v={};v.styleTagTransform=m(),v.setAttributes=d(),v.insert=s().bind(null,"head"),v.domAPI=l(),v.insertStyleElement=p();i()(g.Z,v),g.Z&&g.Z.locals&&g.Z.locals;var b=n(9787),y=n.n(b),x=n(45),w=n(1894),k=n(8993),E=n(4512),S=function(e){var t=e.className,n=e.mobile,o=e.collaborators,i=(0,k.eh)(),a=new Map;o.forEach((function(e,t){a.set(e.id||t,e)}));var l=a.size>0&&Array.from(a).filter((function(e){var t=(0,r.Z)(e,2),n=(t[0],t[1]);return 0!==Object.keys(n).length})).map((function(e){var t=(0,r.Z)(e,2),o=t[0],a=t[1],l=i.renderAction("goToCollaborator",[o,a]);return n?(0,E.jsx)(w.u,{label:a.username||"Unknown user",children:l},o):(0,E.jsx)(y().Fragment,{children:l},o)}));return(0,E.jsx)("div",{className:(0,x.Z)("UserList",t,{UserList_mobile:n}),children:l})}},1510:function(e,t,n){"use strict";n.d(t,{Z:function(){return Y}});var r=n(7169),o=n(2726),i=n(45),a=n(8993),l=n(4512),c=["className","children","onToggle","title"];function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function u(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?s(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var d=function(e){var t=e.className,n=void 0===t?"":t,r=e.children,s=e.onToggle,d=e.title,f=(0,o.Z)(e,c),p=(0,a.Fy)(),h=(0,i.Z)("dropdown-menu-button ".concat(n),"zen-mode-transition",{"dropdown-menu-button--mobile":p.isMobile}).trim();return(0,l.jsx)("button",u(u({"data-prevent-outside-click":!0,className:h,onClick:s,type:"button","data-testid":"dropdown-menu-button",title:d},f),{},{children:r}))},f=d;d.displayName="DropdownMenuTrigger";var p=n(2739),h=function(){return(0,l.jsx)("div",{style:{height:"1px",backgroundColor:"var(--default-border-color)",margin:".5rem 0"}})},m=h;h.displayName="DropdownMenuSeparator";var g=function(e){var t=e.children,n=e.className,r=void 0===n?"":n,o=e.style,i=e.title;return(0,l.jsxs)("div",{className:"dropdown-menu-group ".concat(r),style:o,children:[i&&(0,l.jsx)("p",{className:"dropdown-menu-group-title",children:i}),t]})},v=g;g.displayName="DropdownMenuGroup";var b=n(1881),y=n(7239),x=n(9787),w=n.n(x),k=n(6772),E=n(60),S=function(e){var t=e.children,n=e.onClickOutside,r=e.className,o=void 0===r?"":r,c=e.onSelect,s=e.style,u=(0,a.Fy)(),d=(0,x.useRef)(null);(0,E.O)(d,(function(){null==n||n()}));var f=(0,i.Z)("dropdown-menu ".concat(o),{"dropdown-menu--mobile":u.isMobile}).trim();return(0,l.jsx)(k.N7.Provider,{value:{onSelect:c},children:(0,l.jsx)("div",{ref:d,className:f,style:s,"data-testid":"dropdown-menu",children:u.isMobile?(0,l.jsx)(y.Z.Col,{className:"dropdown-menu-container",children:t}):(0,l.jsx)(b.W,{className:"dropdown-menu-container",padding:2,style:{zIndex:2},children:t})})})};S.displayName="DropdownMenuContent";var O=S,j=n(4215),_=["children","className"];function C(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function I(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?C(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):C(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var T=function(e){var t=e.children,n=e.className,r=void 0===n?"":n,i=(0,o.Z)(e,_);return(0,l.jsx)("div",I(I({},i),{},{className:"dropdown-menu-item-base dropdown-menu-item-custom ".concat(r).trim(),children:t}))},P=n(487),M=n.n(P),D=n(631),A=n.n(D),L=n(2052),Z=n.n(L),R=n(4010),z=n.n(R),N=n(1469),B=n.n(N),H=n(9329),F=n.n(H),W=n(7399),U={};U.styleTagTransform=F(),U.setAttributes=z(),U.insert=Z().bind(null,"head"),U.domAPI=A(),U.insertStyleElement=B();M()(W.Z,U),W.Z&&W.Z.locals&&W.Z.locals;var K=function(e){var t=e.children,n=e.open,r=function(e){return w().Children.toArray(e).find((function(e){return w().isValidElement(e)&&"string"!=typeof e.type&&(null==e?void 0:e.type.displayName)&&"DropdownMenuTrigger"===e.type.displayName}))||null}(t),o=function(e){return w().Children.toArray(e).find((function(e){return w().isValidElement(e)&&"string"!=typeof e.type&&(null==e?void 0:e.type.displayName)&&"DropdownMenuContent"===e.type.displayName}))||null}(t);return(0,l.jsxs)(l.Fragment,{children:[r,n&&o]})};K.Trigger=f,K.Content=O,K.Item=p.Z,K.ItemLink=j.Z,K.ItemCustom=T,K.Group=v,K.Separator=m;var Y=K;K.displayName="DropdownMenu"},2739:function(e,t,n){"use strict";var r=n(7169),o=n(2726),i=n(6772),a=n(4122),l=n(4512),c=["icon","onSelect","children","shortcut","className"];function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function u(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?s(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var d=function(e){var t,n=e.icon,r=e.onSelect,s=e.children,d=e.shortcut,f=e.className,p=(0,o.Z)(e,c),h=(0,i.qZ)(p.onClick,r);return(0,l.jsx)("button",u(u({},p),{},{onClick:h,type:"button",className:(0,i.n)(f),title:null!==(t=p.title)&&void 0!==t?t:p["aria-label"],children:(0,l.jsx)(a.Z,{icon:n,shortcut:d,children:s})}))};t.Z=d,d.displayName="DropdownMenuItem"},4122:function(e,t,n){"use strict";var r=n(8993),o=n(4512);t.Z=function(e){var t=e.icon,n=e.shortcut,i=e.children,a=(0,r.Fy)();return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)("div",{className:"dropdown-menu-item__icon",children:t}),(0,o.jsx)("div",{className:"dropdown-menu-item__text",children:i}),n&&!a.isMobile&&(0,o.jsx)("div",{className:"dropdown-menu-item__shortcut",children:n})]})}},4215:function(e,t,n){"use strict";var r=n(7169),o=n(2726),i=n(4122),a=n(6772),l=n(4512),c=["icon","shortcut","href","children","onSelect","className"];function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function u(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?s(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var d=function(e){var t,n=e.icon,r=e.shortcut,s=e.href,d=e.children,f=e.onSelect,p=e.className,h=void 0===p?"":p,m=(0,o.Z)(e,c),g=(0,a.qZ)(m.onClick,f);return(0,l.jsx)("a",u(u({},m),{},{href:s,target:"_blank",rel:"noreferrer",className:(0,a.n)(h),title:null!==(t=m.title)&&void 0!==t?t:m["aria-label"],onClick:g,children:(0,l.jsx)(i.Z,{icon:n,shortcut:r,children:d})}))};t.Z=d,d.displayName="DropdownMenuItemLink"},6772:function(e,t,n){"use strict";n.d(t,{N7:function(){return l},n:function(){return c},qZ:function(){return s}});var r=n(9787),o=n.n(r),i=n(2335),a=n(6340),l=o().createContext({}),c=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return"dropdown-menu-item dropdown-menu-item-base ".concat(e).trim()},s=function(e,t){var n=(0,r.useContext)(l);return(0,a.Mj)(e,(function(e){var r,o=new CustomEvent(i.Ks.MENU_ITEM_SELECT,{bubbles:!0,cancelable:!0});(null==t||t(o),o.defaultPrevented)||(null===(r=n.onSelect)||void 0===r||r.call(n,o))}))}},7145:function(e,t,n){"use strict";n.d(t,{$:function(){return u}});var r=n(7169),o=n(2577),i=n(3607),a=n(9787),l=n(7681),c=n(4512);function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var u=function(e,t){var n=(0,i.cn)(0),u=function(e){var u=(0,l.R6)().jotaiScope,d=(0,i.KO)(n,u),f=(0,o.Z)(d,2)[1],p=(0,a.useRef)({preferHost:!1,counter:0});return(0,a.useLayoutEffect)((function(){var e=p.current;return f((function(t){var n=t+1;return e.counter=n,n})),function(){f((function(t){var n=t-1;return e.counter=n,n||(e.preferHost=!1),n}))}}),[f]),e.__fallback||(p.current.preferHost=!0),!p.current.counter&&e.__fallback&&p.current.preferHost||p.current.counter>1&&e.__fallback?null:(0,c.jsx)(t,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?s(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},e))};return u.displayName=e,u}},3646:function(e,t,n){"use strict";n.r(t),n.d(t,{AlignBottomIcon:function(){return Se},AlignLeftIcon:function(){return Oe},AlignRightIcon:function(){return je},AlignTopIcon:function(){return Ee},ArrowIcon:function(){return D},ArrowheadArrowIcon:function(){return rt},ArrowheadBarIcon:function(){return it},ArrowheadDotIcon:function(){return ot},ArrowheadNoneIcon:function(){return nt},ArrowheadTriangleIcon:function(){return at},BringForwardIcon:function(){return ye},BringToFrontIcon:function(){return we},CenterHorizontallyIcon:function(){return Te},CenterVerticallyIcon:function(){return Ie},CloseIcon:function(){return Ae},DiamondIcon:function(){return P},DiscordIcon:function(){return $},DistributeHorizontallyIcon:function(){return _e},DistributeVerticallyIcon:function(){return Ce},DotsIcon:function(){return w},DuplicateIcon:function(){return W},EdgeRoundIcon:function(){return tt},EdgeSharpIcon:function(){return et},EllipseIcon:function(){return M},EraserIcon:function(){return N},ExcalLogo:function(){return C},ExportIcon:function(){return G},ExportImageIcon:function(){return ae},ExternalLinkIcon:function(){return X},FillCrossHatchIcon:function(){return We},FillHachureIcon:function(){return Fe},FillSolidIcon:function(){return Ue},FillZigZagIcon:function(){return He},FontFamilyCodeIcon:function(){return ft},FontFamilyNormalIcon:function(){return dt},FontSizeExtraLargeIcon:function(){return ut},FontSizeLargeIcon:function(){return st},FontSizeMediumIcon:function(){return ct},FontSizeSmallIcon:function(){return lt},FreedrawIcon:function(){return Z},GithubIcon:function(){return q},GroupIcon:function(){return Ne},HamburgerMenuIcon:function(){return Y},HelpIcon:function(){return V},HomeIcon:function(){return b},ImageIcon:function(){return z},LibraryIcon:function(){return y},LineIcon:function(){return A},LinkIcon:function(){return ee},LoadIcon:function(){return re},LockedIcon:function(){return S},MoonIcon:function(){return U},PenModeIcon:function(){return L},PinIcon:function(){return k},PlusIcon:function(){return x},RectangleIcon:function(){return T},RedoIcon:function(){return pe},SelectionIcon:function(){return I},SendBackwardIcon:function(){return xe},SendToBackIcon:function(){return ke},SloppinessArchitectIcon:function(){return $e},SloppinessArtistIcon:function(){return Je},SloppinessCartoonistIcon:function(){return Qe},StrokeStyleDashedIcon:function(){return Xe},StrokeStyleDottedIcon:function(){return qe},StrokeStyleSolidIcon:function(){return Ve},StrokeWidthBaseIcon:function(){return Ke},StrokeWidthBoldIcon:function(){return Ye},StrokeWidthExtraBoldIcon:function(){return Ge},SunIcon:function(){return K},TextAlignBottomIcon:function(){return vt},TextAlignCenterIcon:function(){return ht},TextAlignLeftIcon:function(){return pt},TextAlignMiddleIcon:function(){return bt},TextAlignRightIcon:function(){return mt},TextAlignTopIcon:function(){return gt},TextIcon:function(){return R},TrashIcon:function(){return F},TwitterIcon:function(){return J},UndoIcon:function(){return fe},UngroupIcon:function(){return Be},UnlockedIcon:function(){return E},WelcomeScreenHelpArrow:function(){return j},WelcomeScreenMenuArrow:function(){return O},WelcomeScreenTopToolbarArrow:function(){return _},ZoomInIcon:function(){return B},ZoomOutIcon:function(){return H},back:function(){return Le},checkIcon:function(){return Q},clipboard:function(){return oe},clone:function(){return Ze},copyIcon:function(){return Et},createIcon:function(){return m},done:function(){return ue},downloadIcon:function(){return kt},eraser:function(){return xt},exportToFileIcon:function(){return le},extraToolsIcon:function(){return It},eyeDropperIcon:function(){return Ct},file:function(){return ze},frameToolIcon:function(){return Tt},handIcon:function(){return wt},helpIcon:function(){return St},menu:function(){return de},palette:function(){return ie},playerPlayIcon:function(){return Ot},playerStopFilledIcon:function(){return jt},publishIcon:function(){return yt},questionCircle:function(){return he},resetZoom:function(){return be},save:function(){return te},saveAs:function(){return ne},share:function(){return me},shareIOS:function(){return ge},shareWindows:function(){return ve},shield:function(){return Re},start:function(){return Me},stop:function(){return De},tablerCheckIcon:function(){return _t},usersIcon:function(){return Pe},zoomIn:function(){return ce},zoomOut:function(){return se}});var r=n(7169),o=n(2726),i=n(9787),a=n.n(i),l=n(5284),c=n(45),s=n(2335),u=n(4512),d=["width","height","mirror","style"];function f(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function p(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?f(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):f(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var h=function(e){return e===s.C6.LIGHT?l.white:"#1e1e1e"},m=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:512,n="number"==typeof t?{width:t}:t,r=n.width,i=void 0===r?512:r,a=n.height,l=void 0===a?i:a,s=n.mirror,f=n.style,h=(0,o.Z)(n,d);return(0,u.jsx)("svg",p(p({"aria-hidden":"true",focusable:"false",role:"img",viewBox:"0 0 ".concat(i," ").concat(l),className:(0,c.Z)({"rtl-mirror":s}),style:f},h),{},{children:"string"==typeof e?(0,u.jsx)("path",{fill:"currentColor",d:e}):e}))},g={width:24,height:24,fill:"none",strokeWidth:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},v={width:20,height:20,fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},b=m((0,u.jsxs)("g",{strokeWidth:1.5,children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("polyline",{points:"5 12 3 12 12 3 21 12 19 12"}),(0,u.jsx)("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"}),(0,u.jsx)("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"})]}),g),y=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"}),(0,u.jsx)("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"}),(0,u.jsx)("line",{x1:"3",y1:"6",x2:"3",y2:"19"}),(0,u.jsx)("line",{x1:"12",y1:"6",x2:"12",y2:"19"}),(0,u.jsx)("line",{x1:"21",y1:"6",x2:"21",y2:"19"})]}),g),x=m((0,u.jsxs)("svg",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),(0,u.jsx)("line",{x1:"5",y1:"12",x2:"19",y2:"12"})]}),g),w=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("circle",{cx:"12",cy:"12",r:"1"}),(0,u.jsx)("circle",{cx:"12",cy:"19",r:"1"}),(0,u.jsx)("circle",{cx:"12",cy:"5",r:"1"})]}),g),k=m((0,u.jsxs)("svg",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"}),(0,u.jsx)("line",{x1:"12",y1:"16",x2:"12",y2:"21"}),(0,u.jsx)("line",{x1:"8",y1:"4",x2:"16",y2:"4"})]}),g),E=m((0,u.jsxs)("g",{children:[(0,u.jsx)("path",{d:"M13.542 8.542H6.458a2.5 2.5 0 0 0-2.5 2.5v3.75a2.5 2.5 0 0 0 2.5 2.5h7.084a2.5 2.5 0 0 0 2.5-2.5v-3.75a2.5 2.5 0 0 0-2.5-2.5Z",stroke:"currentColor",strokeWidth:"1.25"}),(0,u.jsx)("path",{d:"M10 13.958a1.042 1.042 0 1 0 0-2.083 1.042 1.042 0 0 0 0 2.083Z",stroke:"currentColor",strokeWidth:"1.25"}),(0,u.jsx)("mask",{id:"UnlockedIcon",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:6,y:1,width:9,height:9,children:(0,u.jsx)("path",{stroke:"none",d:"M6.399 9.561V5.175c0-.93.401-1.823 1.116-2.48a3.981 3.981 0 0 1 2.693-1.028c1.01 0 1.98.37 2.694 1.027.715.658 1.116 1.55 1.116 2.481",fill:"#fff"})}),(0,u.jsx)("g",{mask:"url(#UnlockedIcon)",children:(0,u.jsx)("path",{stroke:"none",d:"M5.149 9.561v1.25h2.5v-1.25h-2.5Zm5.06-7.894V.417v1.25Zm2.559 3.508v1.25h2.5v-1.25h-2.5ZM7.648 8.51V5.175h-2.5V8.51h2.5Zm0-3.334c0-.564.243-1.128.713-1.561L6.668 1.775c-.959.883-1.52 2.104-1.52 3.4h2.5Zm.713-1.561a2.732 2.732 0 0 1 1.847-.697v-2.5c-1.31 0-2.585.478-3.54 1.358L8.36 3.614Zm1.847-.697c.71 0 1.374.26 1.847.697l1.694-1.839a5.231 5.231 0 0 0-3.54-1.358v2.5Zm1.847.697c.47.433.713.997.713 1.561h2.5c0-1.296-.56-2.517-1.52-3.4l-1.693 1.839Z",fill:"currentColor"})})]}),v),S=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M13.542 8.542H6.458a2.5 2.5 0 0 0-2.5 2.5v3.75a2.5 2.5 0 0 0 2.5 2.5h7.084a2.5 2.5 0 0 0 2.5-2.5v-3.75a2.5 2.5 0 0 0-2.5-2.5Z"}),(0,u.jsx)("path",{d:"M10 13.958a1.042 1.042 0 1 0 0-2.083 1.042 1.042 0 0 0 0 2.083Z"}),(0,u.jsx)("path",{d:"M6.667 8.333V5.417C6.667 3.806 8.159 2.5 10 2.5c1.841 0 3.333 1.306 3.333 2.917v2.916"})]}),v),O=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{d:"M38.5 83.5c-14-2-17.833-10.473-21-22.5C14.333 48.984 12 22 12 12.5",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"}),(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"m12.005 10.478 7.905 14.423L6 25.75l6.005-15.273Z",fill:"currentColor"}),(0,u.jsx)("path",{d:"M12.005 10.478c1.92 3.495 3.838 7 7.905 14.423m-7.905-14.423c3.11 5.683 6.23 11.368 7.905 14.423m0 0c-3.68.226-7.35.455-13.91.85m13.91-.85c-5.279.33-10.566.647-13.91.85m0 0c1.936-4.931 3.882-9.86 6.005-15.273M6 25.75c2.069-5.257 4.135-10.505 6.005-15.272",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"})]}),{width:41,height:94,fill:"none"}),j=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{d:"M18.026 1.232c-5.268 13.125-5.548 33.555 3.285 42.311 8.823 8.75 33.31 12.304 42.422 13.523",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"}),(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"m72.181 59.247-13.058-10-2.948 13.62 16.006-3.62Z",fill:"currentColor"}),(0,u.jsx)("path",{d:"M72.181 59.247c-3.163-2.429-6.337-4.856-13.058-10m13.058 10c-5.145-3.936-10.292-7.882-13.058-10m0 0c-.78 3.603-1.563 7.196-2.948 13.62m2.948-13.62c-1.126 5.168-2.24 10.346-2.948 13.62m0 0c5.168-1.166 10.334-2.343 16.006-3.62m-16.006 3.62c5.51-1.248 11.01-2.495 16.006-3.62",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"})]}),{width:85,height:71,fill:"none"}),_=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{d:"M1 77c14-2 31.833-11.973 35-24 3.167-12.016-6-35-9.5-43.5",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"}),(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"m24.165 1.093-2.132 16.309 13.27-4.258-11.138-12.05Z",fill:"currentColor"}),(0,u.jsx)("path",{d:"M24.165 1.093c-.522 3.953-1.037 7.916-2.132 16.309m2.131-16.309c-.835 6.424-1.68 12.854-2.13 16.308m0 0c3.51-1.125 7.013-2.243 13.27-4.257m-13.27 4.257c5.038-1.608 10.08-3.232 13.27-4.257m0 0c-3.595-3.892-7.197-7.777-11.14-12.05m11.14 12.05c-3.837-4.148-7.667-8.287-11.14-12.05",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"})]}),{width:38,height:78,fill:"none"}),C=m((0,u.jsxs)("g",{fill:"currentColor",children:[(0,u.jsx)("path",{d:"M24.296 12.214c0 .112-.134.224-.291.224-.135 0-.516.629-.808 1.392-.897 2.335-9.867 20.096-9.89 19.534 0-.292-.134-.494-.359-.494-.313 0-.358.18-.224 1.055.135 1.01.045 1.236-3.14 7.432-1.793 3.525-3.722 7.208-4.282 8.196-.584 1.032-1.032 2.155-1.077 2.626-.067.809.022.92 1.973 2.605 1.122.988 2.557 2.223 3.185 2.784 2.826 2.582 4.149 3.615 4.508 3.547.538-.09 8.858-8.823 8.88-9.317 0-.225-.403-3.638-.897-7.59-.852-6.735-1.66-14.616-1.57-15.38.068-.47-.269-2.85-.516-3.884-.201-.808-.112-1.145 1.503-4.827.942-2.178 2.176-4.85 2.714-5.928.515-1.077.964-2.02.964-2.088 0-.067-.157-.112-.336-.112-.18 0-.337.09-.337.225Zm-5.158 16.772c.247 1.572.74 5.344 1.099 8.375.695 5.568 1.503 11.742 1.727 13.314.135.786.045.943-1.413 2.56-2.534 2.851-5.225 5.658-6.145 6.376l-.852.674-4.373-4.086c-4.037-3.728-4.373-4.11-4.127-4.558a5154.2 5154.2 0 0 1 2.535-4.626 727.864 727.864 0 0 0 3.678-6.78c.784-1.46 1.502-2.717 1.637-2.785.156-.09.201 2.178.156 7.006-.09 7.207-.067 7.23.651 7.072.09 0 .157-3.637.157-8.06V35.43l2.355-4.715c1.3-2.605 2.377-4.693 2.422-4.67.045.022.27 1.347.493 2.94ZM9.562 1.818C7.903 3.143 5.346 5.388 3.328 7.32L1.735 8.823l.292 1.976c.157 1.078.449 3.188.628 4.67.202 1.482.404 2.874.47 3.077.09.269 0 .404-.246.404-.426 0-.449-.113.718 3.592.286.952.577 1.903.875 2.851.044.158.224.225.425.158.202-.09.314-.27.247-.427-.067-.18.045-.36.224-.427.247-.09.225-.269-.157-.92-.605-1.01-2.152-9.633-2.242-12.416-.067-1.976-.067-1.999.762-3.121.808-1.1 2.67-2.762 5.54-4.873.807-.605 1.614-1.28 1.839-1.504.336-.404.493-.292 3.319 2.717 1.637 1.729 3.453 3.502 4.037 3.952l1.076.808-.83 1.75c-.448.944-2.265 4.581-4.059 8.04-3.745 7.274-2.983 6.578-7.333 6.645l-2.826.023-.942 1.077c-.987 1.146-1.121 1.572-.65 2.29.18.248.313.652.313.898 0 .405.157.472 1.055.517.56.023 1.076.09 1.144.157.067.068.156 1.46.224 3.098l.09 2.965-1.503 3.232C1.735 45.422.749 47.891.749 48.7c0 .427.09.786.18.786.224 0 .224-.022 9.35-19.085a4398.495 4398.495 0 0 1 8.927-18.546c.672-1.369 1.278-2.626 1.323-2.806.045-.202-1.503-1.751-3.97-3.93-2.22-1.975-4.171-3.772-4.35-3.974-.516-.628-1.279-.426-2.647.674ZM8.441 31.231c-.18.472-.65 1.46-1.031 2.2-.629 1.258-.696 1.303-.853.786-.09-.314-.157-1.235-.18-2.066-.022-1.639-.067-1.616 1.817-1.728L8.8 30.4l-.358.831Zm1.884-3.592c-1.032 1.998-1.077 2.02-3.903 2.155-2.489.135-2.533.112-2.533-.36 0-.269-.09-.628-.203-.808-.134-.202-.044-.56.27-1.055l.493-.763H6.69c1.234-.023 2.647-.113 3.14-.202.494-.09.92-.135.965-.113.045.023-.18.54-.471 1.146Zm-.09-20.477c-.404.292-.516.584-.516 1.325 0 .875.067 1.01.673 1.257.605.247.763.224 1.458-.247.92-.629.941-.786.269-1.796-.583-.876-1.166-1.033-1.884-.54Z"}),(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M23.703 11.793c.166-.291.501-.514.93-.514.38 0 .698.161.82.283.161.162.225.35.225.54a.822.822 0 0 1-.056.289c-.08.218-.5 1.106-.983 2.116-.535 1.071-1.76 3.727-2.699 5.895-.79 1.802-1.209 2.784-1.404 3.416-.142.461-.132.665-.058.961.264 1.103.6 3.647.53 4.132-.088.756.727 8.547 1.57 15.21.5 3.997.903 7.45.903 7.676l-.001.033c-.004.087-.041.288-.211.54-.24.354-.914 1.143-1.8 2.119-2.004 2.21-5.107 5.423-6.463 6.653-.322.292-.566.485-.696.56a.884.884 0 0 1-.289.111c-.194.037-.579-.007-1.11-.349-.707-.453-1.981-1.522-4-3.366-.627-.561-2.061-1.794-3.176-2.776-.81-.699-1.308-1.138-1.612-1.466-.32-.343-.47-.61-.549-.87-.078-.257-.085-.515-.055-.874.05-.52.521-1.769 1.166-2.91.559-.985 2.48-4.654 4.269-8.17 1.579-3.071 2.392-4.663 2.792-5.612.32-.759.329-1 .277-1.387-.085-.553-.092-.891-.052-1.092a.942.942 0 0 1 .274-.52c.164-.157.384-.261.704-.261.094 0 .184.011.27.033 1.924-3.44 8.554-16.632 9.316-18.616.276-.724.64-1.336.848-1.556a.965.965 0 0 1 .32-.228Zm-5.399 16.402c-.49.942-.971 1.888-1.446 2.837l-2.28 4.565v7.871c0 4.023-.06 7.404-.136 8.04-.067.552-.474.691-.654.722l.075-.008c-.317.07-.574.063-.778-.023-.234-.098-.5-.297-.63-.857-.156-.681-.158-2.462-.103-6.893.019-2.022.022-3.592.008-4.725-.156.276-.315.562-.467.843a737.624 737.624 0 0 1-3.682 6.79 3618.972 3618.972 0 0 0-2.462 4.493c.062.088.169.231.289.364.55.61 1.631 1.623 3.624 3.462l3.931 3.674.377-.298c.907-.709 3.554-3.479 6.055-6.293.425-.47.73-.814.946-1.084.175-.22.28-.36.319-.501.031-.117.002-.227-.024-.379l-.004-.02c-.224-1.572-1.032-7.753-1.728-13.33-.358-3.022-.85-6.782-1.096-8.349l-.002-.01c-.042-.301-.087-.603-.132-.891ZM9.118 1.264C9.91.628 10.537.27 11.028.144c.727-.186 1.27.003 1.713.53.186.209 2.107 1.972 4.287 3.912 2.02 1.783 3.434 3.16 3.897 3.743.326.41.322.756.296.873a1.046 1.046 0 0 1-.005.018c-.047.188-.669 1.512-1.374 2.947a4348.55 4348.55 0 0 0-8.923 18.54c-7.335 15.32-8.808 18.396-9.217 19.015-.235.355-.419.404-.525.437a.815.815 0 0 1-.249.036.745.745 0 0 1-.647-.363C.176 49.67.04 49.222.04 48.7c0-.286.09-.754.316-1.434.452-1.356 1.466-3.722 3.225-7.53l1.432-3.083-.084-2.787a72.902 72.902 0 0 0-.156-2.53 7.307 7.307 0 0 0-.539-.046c-.463-.024-.764-.062-.96-.124-.304-.096-.48-.252-.598-.438-.105-.165-.17-.374-.17-.663 0-.134-.081-.348-.178-.481l-.019-.028c-.293-.448-.406-.831-.373-1.234.04-.484.34-1.052 1.08-1.91l.759-.869c-.103-.325-.471-1.513-.854-2.787-.737-2.339-1.004-3.238-1.018-3.578-.016-.393.134-.59.27-.715a.721.721 0 0 1 .192-.125 89.87 89.87 0 0 1-.414-2.782 231.651 231.651 0 0 0-.625-4.652l-.292-1.976a.71.71 0 0 1 .215-.62l1.589-1.501C4.87 4.86 7.446 2.599 9.118 1.264Zm-1.833 33.75a.819.819 0 0 1-.406.208.73.73 0 0 1-.491-.063l.048 1.618v.009l.849-1.773Zm5.874.697c-.035.087-.07.175-.107.261a20.92 20.92 0 0 1-.36.798.688.688 0 0 1 .457.007l.01.004v-1.07Zm.72-1.892-.015.018a.745.745 0 0 1-.407.236c.02.195.027.378 0 .592l.422-.846ZM7.7 31.175c-.268.027-.489.055-.6.07-.006.056-.013.13-.016.194-.005.19 0 .42.004.694.003.111.006.225.011.338.232-.471.459-.956.6-1.296Zm2.12-1.456a2.04 2.04 0 0 1-.415.31c.064.104.099.222.104.341l.132-.277.18-.374Zm-.14-2.374c-.654.079-1.882.153-2.974.173h-1.87l-.281.435c-.09.141-.17.331-.203.414.102.21.189.508.226.788h.007c.364.006.928-.023 1.805-.07 1.243-.06 1.88-.052 2.315-.291.154-.086.266-.215.387-.393.176-.261.354-.605.587-1.056Zm2.136-1.784c-.157.16-.331.3-.52.422a.631.631 0 0 1 .182.281l.337-.703Zm7.205-1.478c-.222.442-.445.883-.667 1.32a.787.787 0 0 1 .61.007c.036.018.145.07.243.2-.032-.165-.067-.33-.105-.493-.088-.351-.137-.633-.08-1.034h-.001ZM11.415 2.546c-.358.319-1.039.879-1.725 1.394C6.903 5.989 5.087 7.59 4.301 8.662c-.28.38-.458.605-.556.852-.15.38-.103.798-.068 1.824.063 1.923.833 6.669 1.493 9.686.262 1.199.483 2.11.654 2.394.25.426.364.71.398.894a.923.923 0 0 1-.184.764l1.27-.01c.863-.014 1.523.003 2.056-.019.424-.017.75-.052 1.034-.187.336-.159.596-.458.921-.955.62-.948 1.373-2.515 2.705-5.103 1.789-3.448 3.6-7.076 4.047-8.015l.582-1.227-.62-.466c-.595-.458-2.45-2.263-4.12-4.027a59.654 59.654 0 0 0-2.498-2.52ZM5.81 24.876v-.001l-.013-.03.013.031Zm-.71-.835.027-.011a.55.55 0 0 0-.028.011Zm19.904-11.777v.01-.01Zm.002-.016v-.034.034ZM9.82 6.587c-.587.424-.81.823-.81 1.9 0 .787.12 1.157.344 1.42.158.186.388.339.77.494.352.144.603.207.838.209.347.002.688-.12 1.285-.525.707-.483.98-.864 1.036-1.238.052-.352-.09-.812-.574-1.54-.412-.619-.853-.95-1.29-1.072-.489-.139-1.016-.05-1.586.342l-.013.01Zm2.015 2.028a6.288 6.288 0 0 0-.306-.52c-.19-.284-.326-.488-.531-.5-.113-.007-.224.058-.352.146-.218.159-.218.34-.218.745 0 .198.02.419.028.504.047.025.133.068.204.097.133.054.222.102.312.103.04 0 .071-.027.12-.054a4.29 4.29 0 0 0 .358-.225c.147-.1.299-.223.385-.296ZM9.12 1.263l-.002.002.002-.002Z"})]}),{width:26,height:62,fill:"none"}),I=m((0,u.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M6 6l4.153 11.793a0.365 .365 0 0 0 .331 .207a0.366 .366 0 0 0 .332 -.207l2.184 -4.793l4.787 -1.994a0.355 .355 0 0 0 .213 -.323a0.355 .355 0 0 0 -.213 -.323l-11.787 -4.36z"}),(0,u.jsx)("path",{d:"M13.5 13.5l4.5 4.5"})]}),{fill:"none",width:22,height:22,strokeWidth:1.25}),T=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("rect",{x:"4",y:"4",width:"16",height:"16",rx:"2"})]}),g),P=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M10.5 20.4l-6.9 -6.9c-.781 -.781 -.781 -2.219 0 -3l6.9 -6.9c.781 -.781 2.219 -.781 3 0l6.9 6.9c.781 .781 .781 2.219 0 3l-6.9 6.9c-.781 .781 -2.219 .781 -3 0z"})]}),g),M=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("circle",{cx:"12",cy:"12",r:"9"})]}),g),D=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"5",y1:"12",x2:"19",y2:"12"}),(0,u.jsx)("line",{x1:"15",y1:"16",x2:"19",y2:"12"}),(0,u.jsx)("line",{x1:"15",y1:"8",x2:"19",y2:"12"})]}),g),A=m((0,u.jsx)("path",{d:"M4.167 10h11.666",strokeWidth:"1.5"}),v),L=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"}),(0,u.jsx)("path",{d:"M16 7h4"}),(0,u.jsx)("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"})]}),g),Z=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{clipRule:"evenodd",d:"m7.643 15.69 7.774-7.773a2.357 2.357 0 1 0-3.334-3.334L4.31 12.357a3.333 3.333 0 0 0-.977 2.357v1.953h1.953c.884 0 1.732-.352 2.357-.977Z"}),(0,u.jsx)("path",{d:"m11.25 5.417 3.333 3.333"})]}),v),R=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"20",x2:"7",y2:"20"}),(0,u.jsx)("line",{x1:"14",y1:"20",x2:"21",y2:"20"}),(0,u.jsx)("line",{x1:"6.9",y1:"15",x2:"13.8",y2:"15"}),(0,u.jsx)("line",{x1:"10.2",y1:"6.3",x2:"16",y2:"20"}),(0,u.jsx)("polyline",{points:"5 20 11 4 13 4 20 20"})]}),g),z=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M12.5 6.667h.01"}),(0,u.jsx)("path",{d:"M4.91 2.625h10.18a2.284 2.284 0 0 1 2.285 2.284v10.182a2.284 2.284 0 0 1-2.284 2.284H4.909a2.284 2.284 0 0 1-2.284-2.284V4.909a2.284 2.284 0 0 1 2.284-2.284Z"}),(0,u.jsx)("path",{d:"m3.333 12.5 3.334-3.333c.773-.745 1.726-.745 2.5 0l4.166 4.166"}),(0,u.jsx)("path",{d:"m11.667 11.667.833-.834c.774-.744 1.726-.744 2.5 0l1.667 1.667"})]}),v),N=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"}),(0,u.jsx)("path",{d:"M18 13.3l-6.3 -6.3"})]}),g),B=m((0,u.jsx)("path",{strokeWidth:"1.25",d:"M10 4.167v11.666M4.167 10h11.666"}),v),H=m((0,u.jsx)("path",{d:"M5 10h10",strokeWidth:"1.25"}),v),F=m((0,u.jsx)("path",{strokeWidth:"1.25",d:"M3.333 5.833h13.334M8.333 9.167v5M11.667 9.167v5M4.167 5.833l.833 10c0 .92.746 1.667 1.667 1.667h6.666c.92 0 1.667-.746 1.667-1.667l.833-10M7.5 5.833v-2.5c0-.46.373-.833.833-.833h3.334c.46 0 .833.373.833.833v2.5"}),v),W=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M14.375 6.458H8.958a2.5 2.5 0 0 0-2.5 2.5v5.417a2.5 2.5 0 0 0 2.5 2.5h5.417a2.5 2.5 0 0 0 2.5-2.5V8.958a2.5 2.5 0 0 0-2.5-2.5Z"}),(0,u.jsx)("path",{clipRule:"evenodd",d:"M11.667 3.125c.517 0 .986.21 1.325.55.34.338.55.807.55 1.325v1.458H8.333c-.485 0-.927.185-1.26.487-.343.312-.57.75-.609 1.24l-.005 5.357H5a1.87 1.87 0 0 1-1.326-.55 1.87 1.87 0 0 1-.549-1.325V5c0-.518.21-.987.55-1.326.338-.34.807-.549 1.325-.549h6.667Z"})]}),v),U=m((0,u.jsx)("path",{clipRule:"evenodd",d:"M10 2.5h.328a6.25 6.25 0 0 0 6.6 10.372A7.5 7.5 0 1 1 10 2.493V2.5Z",stroke:"currentColor"}),v),K=m((0,u.jsx)("g",{stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:(0,u.jsx)("path",{d:"M10 12.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM10 4.167V2.5M14.167 5.833l1.166-1.166M15.833 10H17.5M14.167 14.167l1.166 1.166M10 15.833V17.5M5.833 14.167l-1.166 1.166M5 10H3.333M5.833 5.833 4.667 4.667"})}),v),Y=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"6",x2:"20",y2:"6"}),(0,u.jsx)("line",{x1:"4",y1:"12",x2:"20",y2:"12"}),(0,u.jsx)("line",{x1:"4",y1:"18",x2:"20",y2:"18"})]}),g),G=m((0,u.jsx)("path",{strokeWidth:"1.25",d:"M3.333 14.167v1.666c0 .92.747 1.667 1.667 1.667h10c.92 0 1.667-.746 1.667-1.667v-1.666M5.833 9.167 10 13.333l4.167-4.166M10 3.333v10"}),v),V=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("circle",{cx:"12",cy:"12",r:"9"}),(0,u.jsx)("line",{x1:"12",y1:"17",x2:"12",y2:"17.01"}),(0,u.jsx)("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"})]}),g),X=m((0,u.jsx)("path",{strokeWidth:"1.25",d:"M9.167 5.833H5.833c-1.254 0-2.5 1.282-2.5 2.5v5.834c0 1.283 1.252 2.5 2.5 2.5h5.834c1.251 0 2.5-1.25 2.5-2.5v-3.334M8.333 11.667l8.334-8.334M12.5 3.333h4.167V7.5"}),v),q=m((0,u.jsx)("path",{d:"M7.5 15.833c-3.583 1.167-3.583-2.083-5-2.5m10 4.167v-2.917c0-.833.083-1.166-.417-1.666 2.334-.25 4.584-1.167 4.584-5a3.833 3.833 0 0 0-1.084-2.667 3.5 3.5 0 0 0-.083-2.667s-.917-.25-2.917 1.084a10.25 10.25 0 0 0-5.166 0C5.417 2.333 4.5 2.583 4.5 2.583a3.5 3.5 0 0 0-.083 2.667 3.833 3.833 0 0 0-1.084 2.667c0 3.833 2.25 4.75 4.584 5-.5.5-.5 1-.417 1.666V17.5",strokeWidth:"1.25"}),v),$=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M7.5 10.833a.833.833 0 1 0 0-1.666.833.833 0 0 0 0 1.666ZM12.5 10.833a.833.833 0 1 0 0-1.666.833.833 0 0 0 0 1.666ZM6.25 6.25c2.917-.833 4.583-.833 7.5 0M5.833 13.75c2.917.833 5.417.833 8.334 0"}),(0,u.jsx)("path",{d:"M12.917 14.167c0 .833 1.25 2.5 1.666 2.5 1.25 0 2.361-1.39 2.917-2.5.556-1.39.417-4.861-1.25-9.584-1.214-.846-2.5-1.116-3.75-1.25l-.833 2.084M7.083 14.167c0 .833-1.13 2.5-1.526 2.5-1.191 0-2.249-1.39-2.778-2.5-.529-1.39-.397-4.861 1.19-9.584 1.157-.846 2.318-1.116 3.531-1.25l.833 2.084"})]}),v),J=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c-.002 -.249 1.51 -2.772 1.818 -4.013z"})]}),g),Q=m((0,u.jsx)("polyline",{fill:"none",stroke:"currentColor",points:"20 6 9 17 4 12"}),{width:24,height:24}),ee=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M8.333 11.667a2.917 2.917 0 0 0 4.167 0l3.333-3.334a2.946 2.946 0 1 0-4.166-4.166l-.417.416"}),(0,u.jsx)("path",{d:"M11.667 8.333a2.917 2.917 0 0 0-4.167 0l-3.333 3.334a2.946 2.946 0 0 0 4.166 4.166l.417-.416"})]}),v),te=m("M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z",{width:448,height:512}),ne=m("M252 54L203 8a28 27 0 00-20-8H28C12 0 0 12 0 27v195c0 15 12 26 28 26h204c15 0 28-11 28-26V73a28 27 0 00-8-19zM130 213c-21 0-37-16-37-36 0-19 16-35 37-35 20 0 37 16 37 35 0 20-17 36-37 36zm56-169v56c0 4-4 6-7 6H44c-4 0-7-2-7-6V42c0-4 3-7 7-7h133l4 2 3 2a7 7 0 012 5z M296 201l87 95-188 205-78 9c-10 1-19-8-18-20l9-84zm141-14l-41-44a31 31 0 00-46 0l-38 41 87 95 38-42c13-14 13-36 0-50z",{width:448,height:512}),re=m((0,u.jsx)("path",{d:"m9.257 6.351.183.183H15.819c.34 0 .727.182 1.051.506.323.323.505.708.505 1.05v5.819c0 .316-.183.7-.52 1.035-.337.338-.723.522-1.037.522H4.182c-.352 0-.74-.181-1.058-.5-.318-.318-.499-.705-.499-1.057V5.182c0-.351.181-.736.5-1.054.32-.321.71-.503 1.057-.503H6.53l2.726 2.726Z",strokeWidth:"1.25"}),v),oe=m("M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z",{width:384,height:512}),ie=m("M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"),ae=m((0,u.jsxs)("g",{strokeWidth:"1.25",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M15 8h.01"}),(0,u.jsx)("path",{d:"M12 20h-5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v5"}),(0,u.jsx)("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l4 4"}),(0,u.jsx)("path",{d:"M14 14l1 -1c.617 -.593 1.328 -.793 2.009 -.598"}),(0,u.jsx)("path",{d:"M19 16v6"}),(0,u.jsx)("path",{d:"M22 19l-3 3l-3 -3"})]}),g),le=m("M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z",{width:512,height:512}),ce=m("M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z",{width:448,height:512}),se=m("M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z",{width:448,height:512}),ue=m("M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"),de=m("M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"),fe=m((0,u.jsx)("path",{d:"M7.5 10.833 4.167 7.5 7.5 4.167M4.167 7.5h9.166a3.333 3.333 0 0 1 0 6.667H12.5",strokeWidth:"1.25"}),v),pe=m((0,u.jsx)("path",{d:"M12.5 10.833 15.833 7.5 12.5 4.167M15.833 7.5H6.667a3.333 3.333 0 1 0 0 6.667H7.5",strokeWidth:"1.25"}),v),he=m("M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z",{mirror:!0}),me=m((0,u.jsx)("path",{d:"M5 12.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM15 7.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM15 17.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM7.25 8.917l5.5-2.834M7.25 11.083l5.5 2.834",strokeWidth:"1.5"}),v),ge=m("M16 5l-1.42 1.42-1.59-1.59V16h-1.98V4.83L9.42 6.42 8 5l4-4 4 4zm4 5v11c0 1.1-.9 2-2 2H6c-1.11 0-2-.9-2-2V10c0-1.11.89-2 2-2h3v2H6v11h12V10h-3V8h3c1.1 0 2 .89 2 2z",{width:24,height:24}),ve=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{fill:"currentColor",d:"M40 5.6v6.1l-4.1.7c-8.9 1.4-16.5 6.9-20.6 15C13 32 10.9 43 12.4 43c.4 0 2.4-1.3 4.4-3 5-3.9 12.1-7 18.2-7.7l5-.6v12.8l11.2-11.3L62.5 22 51.2 10.8 40-.5v6.1zm10.2 22.6L44 34.5v-6.8l-6.9.6c-3.9.3-9.8 1.7-13.2 3.1-3.5 1.4-6.5 2.4-6.7 2.2-.9-1 3-7.5 6.4-10.8C28 18.6 34.4 16 40.1 16c3.7 0 3.9-.1 3.9-3.2V9.5l6.2 6.3 6.3 6.2-6.3 6.2z"}),(0,u.jsx)("path",{stroke:"currentColor",fill:"currentColor",d:"M0 36v20h48v-6.2c0-6 0-6.1-2-4.3-1.1 1-2 2.9-2 4.2V52H4V34c0-17.3-.1-18-2-18s-2 .7-2 20z"})]}),{width:64,height:64}),be=m((0,u.jsx)("path",{stroke:"currentColor",strokeWidth:"40",fill:"currentColor",d:"M148 560a318 318 0 0 0 522 110 316 316 0 0 0 0-450 316 316 0 0 0-450 0c-11 11-21 22-30 34v4h47c25 0 46 21 46 46s-21 45-46 45H90c-13 0-25-6-33-14-9-9-14-20-14-33V156c0-25 20-45 45-45s45 20 45 45v32l1 1a401 401 0 0 1 623 509l212 212a42 42 0 0 1-59 59L698 757A401 401 0 0 1 65 570a42 42 0 0 1 83-10z"}),{width:1024}),ye=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{d:"M13.889 4.167H8.333c-.767 0-1.389.622-1.389 1.389v5.555c0 .767.622 1.389 1.39 1.389h5.555c.767 0 1.389-.622 1.389-1.389V5.556c0-.767-.622-1.39-1.39-1.39Z",fill:"currentColor"}),(0,u.jsx)("path",{d:"M12.5 12.5v1.389a1.389 1.389 0 0 1-1.389 1.389H5.556a1.389 1.389 0 0 1-1.39-1.39V8.334a1.389 1.389 0 0 1 1.39-1.389h1.388"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),xe=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.944 12.5H12.5v1.389a1.389 1.389 0 0 1-1.389 1.389H5.556a1.389 1.389 0 0 1-1.39-1.39V8.334a1.389 1.389 0 0 1 1.39-1.389h1.388",fill:"currentColor"}),(0,u.jsx)("path",{d:"M13.889 4.167H8.333c-.767 0-1.389.621-1.389 1.389v5.555c0 .767.622 1.389 1.39 1.389h5.555c.767 0 1.389-.622 1.389-1.389V5.556c0-.768-.622-1.39-1.39-1.39Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),we=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M8.775 6.458h2.45a2.316 2.316 0 0 1 2.317 2.316v2.452a2.316 2.316 0 0 1-2.316 2.316H8.774a2.316 2.316 0 0 1-2.317-2.316V8.774a2.316 2.316 0 0 1 2.317-2.316Z",fill:"currentColor"}),(0,u.jsx)("path",{d:"M5.441 9.792h2.451a2.316 2.316 0 0 1 2.316 2.316v2.45a2.316 2.316 0 0 1-2.316 2.317h-2.45a2.316 2.316 0 0 1-2.317-2.316v-2.451a2.316 2.316 0 0 1 2.316-2.316ZM12.108 3.125h2.45a2.316 2.316 0 0 1 2.317 2.316v2.451a2.316 2.316 0 0 1-2.316 2.316h-2.451a2.316 2.316 0 0 1-2.316-2.316v-2.45a2.316 2.316 0 0 1 2.316-2.317Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),ke=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",children:[(0,u.jsx)("path",{d:"M5.441 9.792h2.451a2.316 2.316 0 0 1 2.316 2.316v2.45a2.316 2.316 0 0 1-2.316 2.317h-2.45a2.316 2.316 0 0 1-2.317-2.316v-2.451a2.316 2.316 0 0 1 2.316-2.316Z",stroke:"currentColor",strokeWidth:"1.25"}),(0,u.jsx)("path",{d:"M5.441 9.792h2.451a2.316 2.316 0 0 1 2.316 2.316v2.45a2.316 2.316 0 0 1-2.316 2.317h-2.45a2.316 2.316 0 0 1-2.317-2.316v-2.451a2.316 2.316 0 0 1 2.316-2.316Z",stroke:"currentColor",strokeWidth:"1.25"}),(0,u.jsx)("mask",{id:"SendToBackIcon",fill:"#fff",children:(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.167 5.833v2.06a2.941 2.941 0 0 0 2.94 2.94h2.06v.393a2.941 2.941 0 0 1-2.941 2.94h-.393v-2.058a2.941 2.941 0 0 0-2.94-2.941h-2.06v-.393a2.941 2.941 0 0 1 2.942-2.94h.392Z"})}),(0,u.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.167 5.833v2.06a2.941 2.941 0 0 0 2.94 2.94h2.06v.393a2.941 2.941 0 0 1-2.941 2.94h-.393v-2.058a2.941 2.941 0 0 0-2.94-2.941h-2.06v-.393a2.941 2.941 0 0 1 2.942-2.94h.392Z",fill:"currentColor"}),(0,u.jsx)("path",{d:"M9.167 5.833h1.25v-1.25h-1.25v1.25Zm5 5h1.25v-1.25h-1.25v1.25Zm-3.334 3.334h-1.25v1.25h1.25v-1.25Zm-5-5h-1.25v1.25h1.25v-1.25Zm2.084-3.334v2.06h2.5v-2.06h-2.5Zm0 2.06a4.191 4.191 0 0 0 4.19 4.19v-2.5a1.691 1.691 0 0 1-1.69-1.69h-2.5Zm4.19 4.19h2.06v-2.5h-2.06v2.5Zm.81-1.25v.393h2.5v-.393h-2.5Zm0 .393c0 .933-.758 1.69-1.691 1.69v2.5a4.191 4.191 0 0 0 4.19-4.19h-2.5Zm-1.691 1.69h-.393v2.5h.393v-2.5Zm.857 1.25v-2.058h-2.5v2.059h2.5Zm0-2.058a4.191 4.191 0 0 0-4.19-4.191v2.5c.933 0 1.69.757 1.69 1.69h2.5Zm-4.19-4.191h-2.06v2.5h2.06v-2.5Zm-.81 1.25v-.393h-2.5v.393h2.5Zm0-.393c0-.934.758-1.69 1.692-1.69v-2.5a4.191 4.191 0 0 0-4.192 4.19h2.5Zm1.692-1.69h.392v-2.5h-.392v2.5Z",fill:"currentColor",mask:"url(#SendToBackIcon)"}),(0,u.jsx)("path",{d:"M12.108 3.125h2.45a2.316 2.316 0 0 1 2.317 2.316v2.451a2.316 2.316 0 0 1-2.316 2.316h-2.451a2.316 2.316 0 0 1-2.316-2.316v-2.45a2.316 2.316 0 0 1 2.316-2.317Z",stroke:"currentColor",strokeWidth:"1.25"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),Ee=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M3.333 3.333h13.334",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M13.542 6.458h-.417c-.92 0-1.667.747-1.667 1.667v7.083c0 .92.746 1.667 1.667 1.667h.417c.92 0 1.666-.746 1.666-1.667V8.125c0-.92-.746-1.667-1.666-1.667ZM6.875 6.458h-.417c-.92 0-1.666.747-1.666 1.667v3.75c0 .92.746 1.667 1.666 1.667h.417c.92 0 1.667-.746 1.667-1.667v-3.75c0-.92-.747-1.667-1.667-1.667Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),Se=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M3.333 16.667h13.334",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M6.875 3.125h-.417c-.92 0-1.666.746-1.666 1.667v7.083c0 .92.746 1.667 1.666 1.667h.417c.92 0 1.667-.746 1.667-1.667V4.792c0-.92-.747-1.667-1.667-1.667ZM13.542 5.817h-.417c-.92 0-1.667.747-1.667 1.667v4.391c0 .92.746 1.667 1.667 1.667h.417c.92 0 1.666-.746 1.666-1.667V7.484c0-.92-.746-1.667-1.666-1.667Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),Oe=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M3.333 3.333v13.334",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M15.208 4.792H8.125c-.92 0-1.667.746-1.667 1.666v.417c0 .92.747 1.667 1.667 1.667h7.083c.92 0 1.667-.747 1.667-1.667v-.417c0-.92-.746-1.666-1.667-1.666ZM12.516 11.458H8.125c-.92 0-1.667.746-1.667 1.667v.417c0 .92.747 1.666 1.667 1.666h4.391c.92 0 1.667-.746 1.667-1.666v-.417c0-.92-.746-1.667-1.667-1.667Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),je=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M16.667 3.333v13.334",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M11.875 4.792H4.792c-.92 0-1.667.746-1.667 1.666v.417c0 .92.746 1.667 1.667 1.667h7.083c.92 0 1.667-.747 1.667-1.667v-.417c0-.92-.746-1.666-1.667-1.666ZM11.683 11.458H7.292c-.92 0-1.667.746-1.667 1.667v.417c0 .92.746 1.666 1.667 1.666h4.39c.921 0 1.667-.746 1.667-1.666v-.417c0-.92-.746-1.667-1.666-1.667Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),_e=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M16.667 3.333v13.334M3.333 3.333v13.334",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M14.375 10.208v-.416c0-.92-.746-1.667-1.667-1.667H7.292c-.92 0-1.667.746-1.667 1.667v.416c0 .92.746 1.667 1.667 1.667h5.416c.92 0 1.667-.746 1.667-1.667Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),Ce=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M3.333 3.333h13.334M3.333 16.667h13.334",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M10.208 5.625h-.416c-.92 0-1.667.746-1.667 1.667v5.416c0 .92.746 1.667 1.667 1.667h.416c.92 0 1.667-.746 1.667-1.667V7.292c0-.92-.746-1.667-1.667-1.667Z"})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),Ie=m((0,u.jsxs)("g",{stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M1.667 10h2.916",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M8.333 10h3.334",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M15.417 10h2.916",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M6.875 4.792h-.417c-.92 0-1.666.746-1.666 1.666v7.084c0 .92.746 1.666 1.666 1.666h.417c.92 0 1.667-.746 1.667-1.666V6.458c0-.92-.747-1.666-1.667-1.666ZM13.542 6.458h-.417c-.92 0-1.667.747-1.667 1.667v3.75c0 .92.746 1.667 1.667 1.667h.417c.92 0 1.666-.746 1.666-1.667v-3.75c0-.92-.746-1.667-1.666-1.667Z"})]}),v),Te=m((0,u.jsxs)("g",{stroke:"currentColor",strokeWidth:"1.25",children:[(0,u.jsx)("path",{d:"M10 18.333v-2.916",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M10 11.667V8.333",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M10 4.583V1.667",strokeLinecap:"round",strokeLinejoin:"round"}),(0,u.jsx)("path",{d:"M4.792 13.125v.417c0 .92.746 1.666 1.666 1.666h7.084c.92 0 1.666-.746 1.666-1.666v-.417c0-.92-.746-1.667-1.666-1.667H6.458c-.92 0-1.666.746-1.666 1.667ZM6.458 6.458v.417c0 .92.747 1.667 1.667 1.667h3.75c.92 0 1.667-.747 1.667-1.667v-.417c0-.92-.746-1.666-1.667-1.666h-3.75c-.92 0-1.667.746-1.667 1.666Z"})]}),v),Pe=m((0,u.jsxs)("g",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("circle",{cx:"9",cy:"7",r:"4"}),(0,u.jsx)("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"}),(0,u.jsx)("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"}),(0,u.jsx)("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"})]}),g),Me=m("M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"),De=m("M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"),Ae=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:(0,u.jsx)("path",{d:"M15 5 5 15M5 5l10 10"})}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),Le=m("M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z",{width:320,height:512,style:{marginLeft:"-0.2rem"},mirror:!0}),Ze=m("M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z",{mirror:!0}),Re=m("M11.553 22.894a.998.998 0 00.894 0s3.037-1.516 5.465-4.097C19.616 16.987 21 14.663 21 12V5a1 1 0 00-.649-.936l-8-3a.998.998 0 00-.702 0l-8 3A1 1 0 003 5v7c0 2.663 1.384 4.987 3.088 6.797 2.428 2.581 5.465 4.097 5.465 4.097zm-1.303-8.481l6.644-6.644a.856.856 0 111.212 1.212l-7.25 7.25a.856.856 0 01-1.212 0l-3.75-3.75a.856.856 0 111.212-1.212l3.144 3.144z",{width:24}),ze=m("M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z",{width:384,height:512}),Ne=a().memo((function(e){var t=e.theme;return m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{d:"M25 26H111V111H25",fill:"var(--icon-fill-color)"}),(0,u.jsx)("path",{d:"M25 111C25 80.2068 25 49.4135 25 26M25 26C48.6174 26 72.2348 26 111 26H25ZM25 26C53.3671 26 81.7343 26 111 26H25ZM111 26C111 52.303 111 78.606 111 111V26ZM111 26C111 51.2947 111 76.5893 111 111V26ZM111 111C87.0792 111 63.1585 111 25 111H111ZM111 111C87.4646 111 63.9293 111 25 111H111ZM25 111C25 81.1514 25 51.3028 25 26V111Z",stroke:"var(--icon-fill-color)",strokeWidth:"2"}),(0,u.jsx)("path",{d:"M100 100H160V160H100",fill:"var(--icon-fill-color)"}),(0,u.jsx)("path",{d:"M100 160C100 144.106 100 128.211 100 100M100 100C117.706 100 135.412 100 160 100H100ZM100 100C114.214 100 128.428 100 160 100H100ZM160 100C160 120.184 160 140.369 160 160V100ZM160 100C160 113.219 160 126.437 160 160V100ZM160 160C145.534 160 131.068 160 100 160H160ZM160 160C143.467 160 126.934 160 100 160H160ZM100 160C100 143.661 100 127.321 100 100V160Z",stroke:"var(--icon-fill-color)",strokeWidth:"2"}),(0,u.jsxs)("g",{fill:h(t),stroke:"var(--icon-fill-color)",strokeWidth:"6",children:[(0,u.jsx)("rect",{x:"2.5",y:"2.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"2.5",y:"149.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"147.5",y:"149.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"147.5",y:"2.5",width:"30",height:"30"})]})]}),{width:182,height:182,mirror:!0})})),Be=a().memo((function(e){var t=e.theme;return m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{d:"M25 26H111V111H25",fill:"var(--icon-fill-color)"}),(0,u.jsx)("path",{d:"M25 111C25 80.2068 25 49.4135 25 26M25 26C48.6174 26 72.2348 26 111 26H25ZM25 26C53.3671 26 81.7343 26 111 26H25ZM111 26C111 52.303 111 78.606 111 111V26ZM111 26C111 51.2947 111 76.5893 111 111V26ZM111 111C87.0792 111 63.1585 111 25 111H111ZM111 111C87.4646 111 63.9293 111 25 111H111ZM25 111C25 81.1514 25 51.3028 25 26V111Z",stroke:"var(--icon-fill-color)",strokeWidth:"2"}),(0,u.jsx)("path",{d:"M100 100H160V160H100",fill:"var(--icon-fill-color)"}),(0,u.jsx)("path",{d:"M100 160C100 144.106 100 128.211 100 100M100 100C117.706 100 135.412 100 160 100H100ZM100 100C114.214 100 128.428 100 160 100H100ZM160 100C160 120.184 160 140.369 160 160V100ZM160 100C160 113.219 160 126.437 160 160V100ZM160 160C145.534 160 131.068 160 100 160H160ZM160 160C143.467 160 126.934 160 100 160H160ZM100 160C100 143.661 100 127.321 100 100V160Z",stroke:"var(--icon-fill-color)",strokeWidth:"2"}),(0,u.jsxs)("g",{fill:h(t),stroke:"var(--icon-fill-color)",strokeWidth:"6",children:[(0,u.jsx)("rect",{x:"2.5",y:"2.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"78.5",y:"149.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"147.5",y:"149.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"147.5",y:"78.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"105.5",y:"2.5",width:"30",height:"30"}),(0,u.jsx)("rect",{x:"2.5",y:"102.5",width:"30",height:"30"})]})]}),{width:182,height:182,mirror:!0})})),He=m((0,u.jsx)("g",{strokeWidth:1.25,children:(0,u.jsx)("path",{d:"M5.879 2.625h8.242a3.27 3.27 0 0 1 3.254 3.254v8.242a3.27 3.27 0 0 1-3.254 3.254H5.88a3.27 3.27 0 0 1-3.254-3.254V5.88A3.27 3.27 0 0 1 5.88 2.626l-.001-.001ZM4.518 16.118l7.608-12.83m.198 13.934 5.051-9.897M2.778 9.675l9.348-6.387m-7.608 12.83 12.857-8.793"})}),v),Fe=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{d:"M5.879 2.625h8.242a3.254 3.254 0 0 1 3.254 3.254v8.242a3.254 3.254 0 0 1-3.254 3.254H5.88a3.254 3.254 0 0 1-3.254-3.254V5.88a3.254 3.254 0 0 1 3.254-3.254Z",stroke:"currentColor",strokeWidth:"1.25"}),(0,u.jsx)("mask",{id:"FillHachureIcon",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:2,y:2,width:16,height:16,children:(0,u.jsx)("path",{d:"M5.879 2.625h8.242a3.254 3.254 0 0 1 3.254 3.254v8.242a3.254 3.254 0 0 1-3.254 3.254H5.88a3.254 3.254 0 0 1-3.254-3.254V5.88a3.254 3.254 0 0 1 3.254-3.254Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"1.25"})}),(0,u.jsx)("g",{mask:"url(#FillHachureIcon)",children:(0,u.jsx)("path",{d:"M2.258 15.156 15.156 2.258M7.324 20.222 20.222 7.325m-20.444 5.35L12.675-.222m-8.157 18.34L17.416 5.22",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})})]}),v),We=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsxs)("g",{clipPath:"url(#a)",children:[(0,u.jsx)("path",{d:"M5.879 2.625h8.242a3.254 3.254 0 0 1 3.254 3.254v8.242a3.254 3.254 0 0 1-3.254 3.254H5.88a3.254 3.254 0 0 1-3.254-3.254V5.88a3.254 3.254 0 0 1 3.254-3.254Z",stroke:"currentColor",strokeWidth:"1.25"}),(0,u.jsx)("mask",{id:"FillCrossHatchIcon",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:-1,y:-1,width:22,height:22,children:(0,u.jsx)("path",{d:"M2.426 15.044 15.044 2.426M7.383 20 20 7.383M0 12.617 12.617 0m-7.98 17.941L17.256 5.324m-2.211 12.25L2.426 4.956M20 12.617 7.383 0m5.234 20L0 7.383m17.941 7.98L5.324 2.745",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),(0,u.jsx)("g",{mask:"url(#FillCrossHatchIcon)",children:(0,u.jsx)("path",{d:"M14.121 2H5.88A3.879 3.879 0 0 0 2 5.879v8.242A3.879 3.879 0 0 0 5.879 18h8.242A3.879 3.879 0 0 0 18 14.121V5.88A3.879 3.879 0 0 0 14.121 2Z",fill:"currentColor"})})]}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),Ue=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("g",{clipPath:"url(#a)",children:(0,u.jsx)("path",{d:"M4.91 2.625h10.18a2.284 2.284 0 0 1 2.285 2.284v10.182a2.284 2.284 0 0 1-2.284 2.284H4.909a2.284 2.284 0 0 1-2.284-2.284V4.909a2.284 2.284 0 0 1 2.284-2.284Z",stroke:"currentColor",strokeWidth:"1.25"})}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),p(p({},v),{},{fill:"currentColor"})),Ke=m((0,u.jsx)(u.Fragment,{children:(0,u.jsx)("path",{d:"M4.167 10h11.666",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),v),Ye=m((0,u.jsx)("path",{d:"M5 10h10",stroke:"currentColor",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round"}),v),Ge=m((0,u.jsx)("path",{d:"M5 10h10",stroke:"currentColor",strokeWidth:"3.75",strokeLinecap:"round",strokeLinejoin:"round"}),v),Ve=a().memo((function(e){e.theme;return m((0,u.jsx)("path",{d:"M6 10H34",stroke:"var(--icon-fill-color)",strokeWidth:2,fill:"none",strokeLinecap:"round"}),{width:40,height:20})})),Xe=m((0,u.jsxs)("g",{strokeWidth:"2",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M5 12h2"}),(0,u.jsx)("path",{d:"M17 12h2"}),(0,u.jsx)("path",{d:"M11 12h2"})]}),g),qe=m((0,u.jsxs)("g",{strokeWidth:"2",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M4 12v.01"}),(0,u.jsx)("path",{d:"M8 12v.01"}),(0,u.jsx)("path",{d:"M12 12v.01"}),(0,u.jsx)("path",{d:"M16 12v.01"}),(0,u.jsx)("path",{d:"M20 12v.01"})]}),g),$e=m((0,u.jsx)("path",{d:"M2.5 12.038c1.655-.885 5.9-3.292 8.568-4.354 2.668-1.063.101 2.821 1.32 3.104 1.218.283 5.112-1.814 5.112-1.814",strokeWidth:"1.25"}),v),Je=m((0,u.jsx)("path",{d:"M2.5 12.563c1.655-.886 5.9-3.293 8.568-4.355 2.668-1.062.101 2.822 1.32 3.105 1.218.283 5.112-1.814 5.112-1.814m-13.469 2.23c2.963-1.586 6.13-5.62 7.468-4.998 1.338.623-1.153 4.11-.132 5.595 1.02 1.487 6.133-1.43 6.133-1.43",strokeWidth:"1.25"}),v),Qe=m((0,u.jsx)("path",{d:"M2.5 11.936c1.737-.879 8.627-5.346 10.42-5.268 1.795.078-.418 5.138.345 5.736.763.598 3.53-1.789 4.235-2.147M2.929 9.788c1.164-.519 5.47-3.28 6.987-3.114 1.519.165 1 3.827 2.121 4.109 1.122.281 3.839-2.016 4.606-2.42",strokeWidth:"1.25"}),v),et=m((0,u.jsxs)("svg",{strokeWidth:"1.5",children:[(0,u.jsx)("path",{d:"M3.33334 9.99998V6.66665C3.33334 6.04326 3.33403 4.9332 3.33539 3.33646C4.95233 3.33436 6.06276 3.33331 6.66668 3.33331H10"}),(0,u.jsx)("path",{d:"M13.3333 3.33331V3.34331"}),(0,u.jsx)("path",{d:"M16.6667 3.33331V3.34331"}),(0,u.jsx)("path",{d:"M16.6667 6.66669V6.67669"}),(0,u.jsx)("path",{d:"M16.6667 10V10.01"}),(0,u.jsx)("path",{d:"M3.33334 13.3333V13.3433"}),(0,u.jsx)("path",{d:"M16.6667 13.3333V13.3433"}),(0,u.jsx)("path",{d:"M3.33334 16.6667V16.6767"}),(0,u.jsx)("path",{d:"M6.66666 16.6667V16.6767"}),(0,u.jsx)("path",{d:"M10 16.6667V16.6767"}),(0,u.jsx)("path",{d:"M13.3333 16.6667V16.6767"}),(0,u.jsx)("path",{d:"M16.6667 16.6667V16.6767"})]}),v),tt=m((0,u.jsxs)("g",{strokeWidth:"1.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"}),(0,u.jsx)("line",{x1:"16",y1:"4",x2:"16",y2:"4.01"}),(0,u.jsx)("line",{x1:"20",y1:"4",x2:"20",y2:"4.01"}),(0,u.jsx)("line",{x1:"20",y1:"8",x2:"20",y2:"8.01"}),(0,u.jsx)("line",{x1:"20",y1:"12",x2:"20",y2:"12.01"}),(0,u.jsx)("line",{x1:"4",y1:"16",x2:"4",y2:"16.01"}),(0,u.jsx)("line",{x1:"20",y1:"16",x2:"20",y2:"16.01"}),(0,u.jsx)("line",{x1:"4",y1:"20",x2:"4",y2:"20.01"}),(0,u.jsx)("line",{x1:"8",y1:"20",x2:"8",y2:"20.01"}),(0,u.jsx)("line",{x1:"12",y1:"20",x2:"12",y2:"20.01"}),(0,u.jsx)("line",{x1:"16",y1:"20",x2:"16",y2:"20.01"}),(0,u.jsx)("line",{x1:"20",y1:"20",x2:"20",y2:"20.01"})]}),g),nt=m((0,u.jsx)("path",{d:"M6 10H34",stroke:"currentColor",strokeWidth:2,fill:"none"}),{width:40,height:20}),rt=a().memo((function(e){var t=e.flip,n=void 0!==t&&t;return m((0,u.jsxs)("g",{transform:n?"translate(40, 0) scale(-1, 1)":"",stroke:"currentColor",strokeWidth:2,fill:"none",children:[(0,u.jsx)("path",{d:"M34 10H6M34 10L27 5M34 10L27 15"}),(0,u.jsx)("path",{d:"M27.5 5L34.5 10L27.5 15"})]}),{width:40,height:20})})),ot=a().memo((function(e){var t=e.flip,n=void 0!==t&&t;return m((0,u.jsxs)("g",{stroke:"currentColor",fill:"currentColor",transform:n?"translate(40, 0) scale(-1, 1)":"",children:[(0,u.jsx)("path",{d:"M32 10L6 10",strokeWidth:2}),(0,u.jsx)("circle",{r:"4",transform:"matrix(-1 0 0 1 30 10)"})]}),{width:40,height:20})})),it=a().memo((function(e){var t=e.flip,n=void 0!==t&&t;return m((0,u.jsx)("g",{transform:n?"translate(40, 0) scale(-1, 1)":"",children:(0,u.jsx)("path",{d:"M34 10H5.99996M34 10L34 5M34 10L34 15",stroke:"currentColor",strokeWidth:2,fill:"none"})}),{width:40,height:20})})),at=a().memo((function(e){var t=e.flip,n=void 0!==t&&t;return m((0,u.jsxs)("g",{stroke:"currentColor",fill:"currentColor",transform:n?"translate(40, 0) scale(-1, 1)":"",children:[(0,u.jsx)("path",{d:"M32 10L6 10",strokeWidth:2}),(0,u.jsx)("path",{d:"M27.5 5.5L34.5 10L27.5 14.5L27.5 5.5"})]}),{width:40,height:20})})),lt=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("g",{clipPath:"url(#a)",children:(0,u.jsx)("path",{d:"M14.167 6.667a3.333 3.333 0 0 0-3.334-3.334H9.167a3.333 3.333 0 0 0 0 6.667h1.666a3.333 3.333 0 0 1 0 6.667H9.167a3.333 3.333 0 0 1-3.334-3.334",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),ct=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("g",{clipPath:"url(#a)",children:(0,u.jsx)("path",{d:"M5 16.667V3.333L10 15l5-11.667v13.334",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),st=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("g",{clipPath:"url(#a)",children:(0,u.jsx)("path",{d:"M5.833 3.333v13.334h8.334",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),ut=m((0,u.jsx)(u.Fragment,{children:(0,u.jsx)("path",{d:"m1.667 3.333 6.666 13.334M8.333 3.333 1.667 16.667M11.667 3.333v13.334h6.666",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),v),dt=m((0,u.jsx)(u.Fragment,{children:(0,u.jsx)("g",{stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:(0,u.jsx)("path",{d:"M5.833 16.667v-10a3.333 3.333 0 0 1 3.334-3.334h1.666a3.333 3.333 0 0 1 3.334 3.334v10M5.833 10.833h8.334"})})}),v),ft=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:(0,u.jsx)("path",{d:"M5.833 6.667 2.5 10l3.333 3.333M14.167 6.667 17.5 10l-3.333 3.333M11.667 3.333 8.333 16.667"})}),(0,u.jsx)("defs",{children:(0,u.jsx)("clipPath",{id:"a",children:(0,u.jsx)("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),v),pt=m((0,u.jsxs)("g",{stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"8",x2:"20",y2:"8"}),(0,u.jsx)("line",{x1:"4",y1:"12",x2:"12",y2:"12"}),(0,u.jsx)("line",{x1:"4",y1:"16",x2:"16",y2:"16"})]}),g),ht=m((0,u.jsxs)("g",{stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"8",x2:"20",y2:"8"}),(0,u.jsx)("line",{x1:"8",y1:"12",x2:"16",y2:"12"}),(0,u.jsx)("line",{x1:"6",y1:"16",x2:"18",y2:"16"})]}),g),mt=m((0,u.jsxs)("g",{stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"8",x2:"20",y2:"8"}),(0,u.jsx)("line",{x1:"10",y1:"12",x2:"20",y2:"12"}),(0,u.jsx)("line",{x1:"8",y1:"16",x2:"20",y2:"16"})]}),g),gt=a().memo((function(e){e.theme;return m((0,u.jsxs)("g",{strokeWidth:"1.5",stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"4",x2:"20",y2:"4"}),(0,u.jsx)("rect",{x:"9",y:"8",width:"6",height:"12",rx:"2"})]}),g)})),vt=a().memo((function(e){e.theme;return m((0,u.jsxs)("g",{strokeWidth:"2",stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"20",x2:"20",y2:"20"}),(0,u.jsx)("rect",{x:"9",y:"4",width:"6",height:"12",rx:"2"})]}),g)})),bt=a().memo((function(e){e.theme;return m((0,u.jsxs)("g",{strokeWidth:"1.5",stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("line",{x1:"4",y1:"12",x2:"9",y2:"12"}),(0,u.jsx)("line",{x1:"15",y1:"12",x2:"20",y2:"12"}),(0,u.jsx)("rect",{x:"9",y:"6",width:"6",height:"12",rx:"2"})]}),g)})),yt=m((0,u.jsx)("path",{d:"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z",fill:"currentColor"}),{width:640,height:512}),xt=m((0,u.jsx)("path",{d:"M480 416C497.7 416 512 430.3 512 448C512 465.7 497.7 480 480 480H150.6C133.7 480 117.4 473.3 105.4 461.3L25.37 381.3C.3786 356.3 .3786 315.7 25.37 290.7L258.7 57.37C283.7 32.38 324.3 32.38 349.3 57.37L486.6 194.7C511.6 219.7 511.6 260.3 486.6 285.3L355.9 416H480zM265.4 416L332.7 348.7L195.3 211.3L70.63 336L150.6 416L265.4 416z"})),wt=m((0,u.jsxs)("g",{strokeWidth:1.25,children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"}),(0,u.jsx)("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"}),(0,u.jsx)("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"}),(0,u.jsx)("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"})]}),g),kt=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"}),(0,u.jsx)("path",{d:"M7 11l5 5l5 -5"}),(0,u.jsx)("path",{d:"M12 4l0 12"})]}),g),Et=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"}),(0,u.jsx)("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"})]}),g),St=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"}),(0,u.jsx)("path",{d:"M12 17l0 .01"}),(0,u.jsx)("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"})]}),g),Ot=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M7 4v16l13 -8z"})]}),g),jt=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z",strokeWidth:"0",fill:"currentColor"})]}),g),_t=m((0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M5 12l5 5l10 -10"})]}),g),Ct=m((0,u.jsxs)("g",{strokeWidth:1.25,children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M11 7l6 6"}),(0,u.jsx)("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"})]}),g),It=m((0,u.jsxs)("g",{strokeWidth:1.5,children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M12 3l-4 7h8z"}),(0,u.jsx)("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"}),(0,u.jsx)("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"})]}),g),Tt=m((0,u.jsxs)("g",{strokeWidth:1.5,children:[(0,u.jsx)("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),(0,u.jsx)("path",{d:"M4 7l16 0"}),(0,u.jsx)("path",{d:"M4 17l16 0"}),(0,u.jsx)("path",{d:"M7 4l0 16"}),(0,u.jsx)("path",{d:"M17 4l0 16"})]}),g)},6756:function(e,t,n){"use strict";n.d(t,{Z:function(){return Y}});var r={};n.r(r),n.d(r,{ChangeCanvasBackground:function(){return z},ClearCanvas:function(){return Z},Export:function(){return N},Help:function(){return L},LiveCollaborationTrigger:function(){return H},LoadScene:function(){return M},SaveAsImage:function(){return A},SaveToActiveFile:function(){return D},Socials:function(){return B},ToggleTheme:function(){return R}});var o=n(8993),i=n(1510),a=n(785),l=n(5202),c=n(3646),s=n(2739),u=n(4215),d=n(1781),f=n(487),p=n.n(f),h=n(631),m=n.n(h),g=n(2052),v=n.n(g),b=n(4010),y=n.n(b),x=n(1469),w=n.n(x),k=n(9329),E=n.n(k),S=n(4343),O={};O.styleTagTransform=E(),O.setAttributes=y(),O.insert=v().bind(null,"head"),O.domAPI=m(),O.insertStyleElement=w();p()(S.Z,O),S.Z&&S.Z.locals&&S.Z.locals;var j=n(45),_=n(3607),C=n(6798),I=n(9487),T=n(96),P=n(4512),M=function(){var e=(0,l.QT)().t,t=(0,o.eh)();return t.isActionEnabled(d.actionLoadScene)?(0,P.jsx)(s.Z,{icon:c.LoadIcon,onSelect:function(){return t.executeAction(d.actionLoadScene)},"data-testid":"load-button",shortcut:(0,a.C)("loadScene"),"aria-label":e("buttons.load"),children:e("buttons.load")}):null};M.displayName="LoadScene";var D=function(){var e=(0,l.QT)().t,t=(0,o.eh)();return t.isActionEnabled(d.actionSaveToActiveFile)?(0,P.jsx)(s.Z,{shortcut:(0,a.C)("saveScene"),"data-testid":"save-button",onSelect:function(){return t.executeAction(d.actionSaveToActiveFile)},icon:c.save,"aria-label":"".concat(e("buttons.save")),children:"".concat(e("buttons.save"))}):null};D.displayName="SaveToActiveFile";var A=function(){var e=(0,o.n9)(),t=(0,l.QT)().t;return(0,P.jsx)(s.Z,{icon:c.ExportImageIcon,"data-testid":"image-export-button",onSelect:function(){return e({openDialog:"imageExport"})},shortcut:(0,a.C)("imageExport"),"aria-label":t("buttons.exportImage"),children:t("buttons.exportImage")})};A.displayName="SaveAsImage";var L=function(){var e=(0,l.QT)().t,t=(0,o.eh)();return(0,P.jsx)(s.Z,{"data-testid":"help-menu-item",icon:c.HelpIcon,onSelect:function(){return t.executeAction(d.actionShortcuts)},shortcut:"?","aria-label":e("helpDialog.title"),children:e("helpDialog.title")})};L.displayName="Help";var Z=function(){var e=(0,l.QT)().t,t=(0,_.b9)(C.w,I.yE);return(0,o.eh)().isActionEnabled(d.actionClearCanvas)?(0,P.jsx)(s.Z,{icon:c.TrashIcon,onSelect:function(){return t("clearCanvas")},"data-testid":"clear-canvas-button","aria-label":e("buttons.clearReset"),children:e("buttons.clearReset")}):null};Z.displayName="ClearCanvas";var R=function(e){var t=(0,l.QT)().t,n=(0,T.I)(),r=(0,o.eh)();return r.isActionEnabled(d.actionToggleTheme)?(0,P.jsx)(s.Z,{onSelect:function(t){var o;if(t.preventDefault(),!1!==(null==e||null===(o=e.onSelect)||void 0===o?void 0:o.call(e,"dark"===n.theme?"light":"dark")))return r.executeAction(d.actionToggleTheme)},icon:"dark"===n.theme?c.SunIcon:c.MoonIcon,"data-testid":"toggle-dark-mode",shortcut:(0,a.C)("toggleTheme"),"aria-label":"dark"===n.theme?t("buttons.lightMode"):t("buttons.darkMode"),children:"dark"===n.theme?t("buttons.lightMode"):t("buttons.darkMode")}):null};R.displayName="ToggleTheme";var z=function(){var e=(0,l.QT)().t,t=(0,T.I)(),n=(0,o.eh)();return t.viewModeEnabled?null:(0,P.jsxs)("div",{style:{marginTop:"0.5rem"},children:[(0,P.jsx)("div",{style:{fontSize:".75rem",marginBottom:".5rem"},children:e("labels.canvasBackground")}),(0,P.jsx)("div",{style:{padding:"0 0.625rem"},children:n.renderAction("changeViewBackgroundColor")})]})};z.displayName="ChangeCanvasBackground";var N=function(){var e=(0,l.QT)().t,t=(0,o.n9)();return(0,P.jsx)(s.Z,{icon:c.ExportIcon,onSelect:function(){t({openDialog:"jsonExport"})},"data-testid":"json-export-button","aria-label":e("buttons.export"),children:e("buttons.export")})};N.displayName="Export";var B=function(){return(0,P.jsxs)(P.Fragment,{children:[(0,P.jsx)(u.Z,{icon:c.GithubIcon,href:"https://github.com/excalidraw/excalidraw","aria-label":"GitHub",children:"GitHub"}),(0,P.jsx)(u.Z,{icon:c.DiscordIcon,href:"https://discord.gg/UexuTaE","aria-label":"Discord",children:"Discord"}),(0,P.jsx)(u.Z,{icon:c.TwitterIcon,href:"https://twitter.com/excalidraw","aria-label":"Twitter",children:"Twitter"})]})};B.displayName="Socials";var H=function(e){var t=e.onSelect,n=e.isCollaborating,r=(0,l.QT)().t;return(0,P.jsx)(s.Z,{"data-testid":"collab-button",icon:c.usersIcon,className:(0,j.Z)({"active-collab":n}),onSelect:t,children:r("labels.liveCollaboration")})};H.displayName="LiveCollaborationTrigger";var F=n(6773),W=n(7145),U=n(6340),K=n(7681),Y=Object.assign((0,W.$)("MainMenu",(function(e){var t=e.children,n=e.onSelect,r=(0,K.R6)().MainMenuTunnel,a=(0,o.Fy)(),s=(0,T.I)(),u=(0,o.n9)(),d=a.isMobile?void 0:function(){return u({openMenu:null})};return(0,P.jsx)(r.In,{children:(0,P.jsxs)(i.Z,{open:"canvas"===s.openMenu,children:[(0,P.jsx)(i.Z.Trigger,{onToggle:function(){u({openMenu:"canvas"===s.openMenu?null:"canvas"})},"data-testid":"main-menu-trigger",children:c.HamburgerMenuIcon}),(0,P.jsxs)(i.Z.Content,{onClickOutside:d,onSelect:(0,U.Mj)(n,(function(){u({openMenu:null})})),children:[t,a.isMobile&&s.collaborators.size>0&&(0,P.jsxs)("fieldset",{className:"UserList-Wrapper",children:[(0,P.jsx)("legend",{children:(0,l.t)("labels.collaborators")}),(0,P.jsx)(F.Z,{mobile:!0,collaborators:s.collaborators})]})]})]})})})),{Trigger:i.Z.Trigger,Item:i.Z.Item,ItemLink:i.Z.ItemLink,ItemCustom:i.Z.ItemCustom,Group:i.Z.Group,Separator:i.Z.Separator,DefaultItems:r})},2335:function(e,t,n){"use strict";n.d(t,{iC:function(){return C},gK:function(){return Oe},$C:function(){return z},oc:function(){return L},_9:function(){return Te},_4:function(){return G},HN:function(){return De},qy:function(){return xe},rk:function(){return U},n5:function(){return W},h6:function(){return we},Rx:function(){return Ie},Cc:function(){return Le},Hg:function(){return K},cW:function(){return de},hs:function(){return Y},jU:function(){return V},f:function(){return I},xY:function(){return Ce},Iw:function(){return P},$e:function(){return M},Vi:function(){return R},Ks:function(){return w},r8:function(){return Q},I_:function(){return J},ZB:function(){return ye},pb:function(){return ee},ut:function(){return N},iG:function(){return H},k:function(){return X},sA:function(){return le},KL:function(){return q},LL:function(){return te},tf:function(){return Ae},EE:function(){return ve},qx:function(){return T},$n:function(){return ke},zK:function(){return be},LO:function(){return $},Zj:function(){return ae},Yx:function(){return me},sS:function(){return he},kV:function(){return pe},sk:function(){return ge},eF:function(){return fe},Oh:function(){return Z},WR:function(){return Me},a6:function(){return Pe},HM:function(){return oe},ay:function(){return A},hR:function(){return Ee},Gj:function(){return ne},I8:function(){return _e},wZ:function(){return D},C6:function(){return B},ZF:function(){return ce},nM:function(){return re},ah:function(){return ue},UO:function(){return se},Kr:function(){return Se},oX:function(){return je},_D:function(){return F},V4:function(){return ie},Dt:function(){return S},jP:function(){return _},Um:function(){return k},vU:function(){return O},G6:function(){return j},ED:function(){return E}});var r=n(7169),o=n(487),i=n.n(o),a=n(631),l=n.n(a),c=n(2052),s=n.n(c),u=n(4010),d=n.n(u),f=n(1469),p=n.n(f),h=n(9329),m=n.n(h),g=n(6464),v={};v.styleTagTransform=m(),v.setAttributes=d(),v.insert=s().bind(null,"head"),v.domAPI=l(),v.insertStyleElement=p();i()(g.Z,v);var b=g.Z&&g.Z.locals?g.Z.locals:void 0,y=n(56);function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var w,k=/Mac|iPod|iPhone|iPad/.test(navigator.platform),E=/^Win/.test(navigator.platform),S=/\b(android)\b/i.test(navigator.userAgent),O="netscape"in window&&navigator.userAgent.indexOf("rv:")>1&&navigator.userAgent.indexOf("Gecko")>1,j=!(-1!==navigator.userAgent.indexOf("Chrome"))&&-1!==navigator.userAgent.indexOf("Safari"),_=function(){var e,t;return"isBrave"===(null===(e=navigator.brave)||void 0===e||null===(t=e.isBrave)||void 0===t?void 0:t.name)},C="Excalidraw",I=10,T=8,P=5,M=1,D=30,A=Math.PI/12,L={TEXT:"text",CROSSHAIR:"crosshair",GRABBING:"grabbing",GRAB:"grab",POINTER:"pointer",MOVE:"move",AUTO:""},Z={MAIN:0,WHEEL:1,SECONDARY:2,TOUCH:-1};!function(e){e.COPY="copy",e.PASTE="paste",e.CUT="cut",e.KEYDOWN="keydown",e.KEYUP="keyup",e.MOUSE_MOVE="mousemove",e.RESIZE="resize",e.UNLOAD="unload",e.FOCUS="focus",e.BLUR="blur",e.DRAG_OVER="dragover",e.DROP="drop",e.GESTURE_END="gestureend",e.BEFORE_UNLOAD="beforeunload",e.GESTURE_START="gesturestart",e.GESTURE_CHANGE="gesturechange",e.POINTER_MOVE="pointermove",e.POINTER_DOWN="pointerdown",e.POINTER_UP="pointerup",e.STATE_CHANGE="statechange",e.WHEEL="wheel",e.TOUCH_START="touchstart",e.TOUCH_END="touchend",e.HASHCHANGE="hashchange",e.VISIBILITY_CHANGE="visibilitychange",e.SCROLL="scroll",e.EXCALIDRAW_LINK="excalidraw-link",e.MENU_ITEM_SELECT="menu.itemSelect"}(w||(w={}));var R={TEST:"test",DEVELOPMENT:"development",PRODUCTION:"production"},z={SHAPE_ACTIONS_MENU:"App-menu__left"},N={Virgil:1,Helvetica:2,Cascadia:3},B={LIGHT:"light",DARK:"dark"},H={strokeColor:"#bbb",strokeWidth:1,strokeStyle:"solid",fillStyle:"solid",roughness:0,roundness:null,backgroundColor:"transparent",radius:8},F="Segoe UI Emoji",W=20,U=N.Virgil,K="left",Y="top",G="#ffffff",V=1,X=20,q={svg:"image/svg+xml",png:"image/png",jpg:"image/jpeg",gif:"image/gif",webp:"image/webp",bmp:"image/bmp",ico:"image/x-icon",avif:"image/avif",jfif:"image/jfif"},$=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?x(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):x(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({json:"application/json",excalidraw:"application/vnd.excalidraw+json",excalidrawlib:"application/vnd.excalidrawlib+json","excalidraw.svg":"image/svg+xml","excalidraw.png":"image/png",binary:"application/octet-stream"},q),J={png:"png",svg:"svg",clipboard:"clipboard"},Q={excalidraw:"excalidraw",excalidrawClipboard:"excalidraw/clipboard",excalidrawLibrary:"excalidrawlib"},ee=window.EXCALIDRAW_EXPORT_SOURCE||window.location.origin,te=500,ne=300,re=500,oe=100,ie=.1,ae=.1,le=300,ce=b.themeFilter,se={addLibrary:"addLibrary"},ue={addLibrary:"addLibrary"},de={canvasActions:{changeViewBackgroundColor:!0,clearCanvas:!0,export:{saveFileToDisk:!0},loadScene:!0,saveToActiveFile:!0,toggleTheme:null,saveAsImage:!0}},fe=640,pe=800,he=1e3,me=500,ge=1229,ve=parseInt(b.rightSidebarWidth),be=2,ye=[1,2,3],xe=10,we=1440,ke=2097152,Ee="http://www.w3.org/2000/svg",Se={excalidraw:2,excalidrawLibrary:2},Oe=5,je={TOP:"top",MIDDLE:"middle",BOTTOM:"bottom"},_e={LEFT:"left",CENTER:"center",RIGHT:"right"},Ce=20,Ie=.25,Te=32,Pe={LEGACY:1,PROPORTIONAL_RADIUS:2,ADAPTIVE_RADIUS:3},Me="__precedingElement__",De={strokeColor:y.HO.black,backgroundColor:y.HO.transparent,fillStyle:"hachure",strokeWidth:1,strokeStyle:"solid",roughness:1,opacity:100,locked:!1},Ae="library",Le={name:"default",defaultTab:Ae}},7681:function(e,t,n){"use strict";n.d(t,{A3:function(){return m},ZC:function(){return v},R6:function(){return g}});var r=n(9787),o=n.n(r);const i=e=>{let t;const n=new Set,r=(e,r)=>{const o="function"==typeof e?e(t):e;if(!Object.is(o,t)){const e=t;t=(null!=r?r:"object"!=typeof o)?o:Object.assign({},t,o),n.forEach((n=>n(t,e)))}},o=()=>t,i={setState:r,getState:o,subscribe:e=>(n.add(e),()=>n.delete(e)),destroy:()=>{console.warn("[DEPRECATED] The `destroy` method will be unsupported in a future version. Instead use unsubscribe function returned by subscribe. Everything will be garbage-collected if store is garbage-collected."),n.clear()}};return t=e(r,o,i),i},a=e=>e?i(e):i;var l=n(5668);const{useSyncExternalStoreWithSelector:c}=l;const s=e=>{"function"!=typeof e&&console.warn("[DEPRECATED] Passing a vanilla store will be unsupported in a future version. Instead use `import { useStore } from 'zustand'`.");const t="function"==typeof e?a(e):e,n=(e,n)=>function(e,t=e.getState,n){const o=c(e.subscribe,e.getState,e.getServerState||e.getState,t,n);return(0,r.useDebugValue)(o),o}(t,e,n);return Object.assign(n,t),n},u=e=>e?s(e):s;var d,f;const p="undefined"!=typeof window&&(null!=(d=window.document)&&d.createElement||"ReactNative"===(null==(f=window.navigator)?void 0:f.product))?o().useLayoutEffect:o().useEffect;function h(){const e=u((e=>({current:new Array,version:0,set:e})));return{In:({children:t})=>{const n=e((e=>e.set)),r=e((e=>e.version));return p((()=>{n((e=>({version:e.version+1})))}),[]),p((()=>(n((({current:e})=>({current:[...e,t]}))),()=>n((({current:e})=>({current:e.filter((e=>e!==t))}))))),[t,r]),null},Out:()=>{const t=e((e=>e.current));return o().createElement(o().Fragment,null,t)}}}var m=o().createContext(null),g=function(){return o().useContext(m)},v=function(){return o().useMemo((function(){return{MainMenuTunnel:h(),WelcomeScreenMenuHintTunnel:h(),WelcomeScreenToolbarHintTunnel:h(),WelcomeScreenHelpHintTunnel:h(),WelcomeScreenCenterTunnel:h(),FooterCenterTunnel:h(),DefaultSidebarTriggerTunnel:h(),DefaultSidebarTabTriggersTunnel:h(),jotaiScope:Symbol()}}),[])}},96:function(e,t,n){"use strict";n.d(t,{I:function(){return a},k:function(){return i}});var r=n(9787),o=n.n(r),i=o().createContext(null),a=function(){return o().useContext(i)}},434:function(e,t,n){"use strict";n.d(t,{DQ:function(){return S},KG:function(){return A},Pn:function(){return Z},Qk:function(){return E},Sf:function(){return D},Tu:function(){return L},Wr:function(){return j},ZY:function(){return _},_c:function(){return P},bv:function(){return R},cT:function(){return C},g8:function(){return O},gY:function(){return H},lV:function(){return T},tW:function(){return M},vZ:function(){return F},wf:function(){return I}});var r=n(1930),o=n(2577),i=n(7169),a=n(8950),l=n(2975),c=n.n(l),s=n(5605),u=n(8897),d=n(2335),f=n(1047),p=n(6797),h=n(5202),m=n(75),g=n(6340),v=n(1393),b=n(5523),y=n(679);function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function w(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?x(Object(n),!0).forEach((function(t){(0,i.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):x(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var k=function(){var e=(0,a.Z)(c().mark((function e(t){var r;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t.type!==d.LO.png){e.next=18;break}return e.prev=1,e.next=4,Promise.resolve().then(n.bind(n,673));case 4:return e.next=6,e.sent.decodePngMetadata(t);case 6:return e.abrupt("return",e.sent);case 9:if(e.prev=9,e.t0=e.catch(1),"INVALID"!==e.t0.message){e.next=15;break}throw new DOMException((0,h.t)("alerts.imageDoesNotContainScene"),"EncodingError");case 15:throw new DOMException((0,h.t)("alerts.cannotRestoreFromImage"),"EncodingError");case 16:e.next=43;break;case 18:if(!("text"in Blob)){e.next=24;break}return e.next=21,t.text();case 21:r=e.sent,e.next=27;break;case 24:return e.next=26,new Promise((function(e){var n=new FileReader;n.readAsText(t,"utf8"),n.onloadend=function(){n.readyState===FileReader.DONE&&e(n.result)}}));case 26:r=e.sent;case 27:if(t.type!==d.LO.svg){e.next=43;break}return e.prev=28,e.next=31,Promise.resolve().then(n.bind(n,673));case 31:return e.next=33,e.sent.decodeSvgMetadata({svg:r});case 33:return e.abrupt("return",e.sent);case 36:if(e.prev=36,e.t1=e.catch(28),"INVALID"!==e.t1.message){e.next=42;break}throw new DOMException((0,h.t)("alerts.imageDoesNotContainScene"),"EncodingError");case 42:throw new DOMException((0,h.t)("alerts.cannotRestoreFromImage"),"EncodingError");case 43:return e.abrupt("return",r);case 44:case"end":return e.stop()}}),e,null,[[1,9],[28,36]])})));return function(t){return e.apply(this,arguments)}}(),E=function(e){var t;return e&&(null===(t=e.name.match(/\.(json|excalidraw|png|svg)$/))||void 0===t?void 0:t[1])||null},S=function(e){return"png"===e||"svg"===e},O=function(e){var t=E(e);return"png"===t||"svg"===t},j=function(e){var t=(e||{}).type;return!!t&&Object.values(d.KL).includes(t)},_=function(){var e=(0,a.Z)(c().mark((function e(t,n,r,o){var i,a;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,k(t);case 2:if(i=e.sent,e.prev=3,a=JSON.parse(i),!(0,b.dS)(a)){e.next=9;break}return e.abrupt("return",{type:d.LO.excalidraw,data:(0,y.nu)({elements:(0,f._M)(a.elements||[]),appState:w(w({theme:null==n?void 0:n.theme,fileHandle:o||t.handle||null},(0,u.s)(a.appState||{})),n?(0,m.W)(a.elements||[],n,null):{}),files:a.files},n,r,{repairBindings:!0,refreshDimensions:!1})});case 9:if(!(0,b.HT)(a)){e.next=11;break}return e.abrupt("return",{type:d.LO.excalidrawlib,data:a});case 11:throw new Error((0,h.t)("alerts.couldNotLoadInvalidFile"));case 14:throw e.prev=14,e.t0=e.catch(3),console.error(e.t0.message),new Error((0,h.t)("alerts.couldNotLoadInvalidFile"));case 18:case"end":return e.stop()}}),e,null,[[3,14]])})));return function(t,n,r,o){return e.apply(this,arguments)}}(),C=function(){var e=(0,a.Z)(c().mark((function e(t,n,r,o){var i;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,_(t,n,r,o);case 2:if((i=e.sent).type===d.LO.excalidraw){e.next=5;break}throw new Error((0,h.t)("alerts.couldNotLoadInvalidFile"));case 5:return e.abrupt("return",i.data);case 6:case"end":return e.stop()}}),e)})));return function(t,n,r,o){return e.apply(this,arguments)}}(),I=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"unpublished",n=JSON.parse(e);if(!(0,b.HT)(n))throw new Error("Invalid library");var r=n.libraryItems||n.library;return(0,y.wJ)(r,t)},T=function(){var e=(0,a.Z)(c().mark((function e(t){var n,r=arguments;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=r.length>1&&void 0!==r[1]?r[1]:"unpublished",e.t0=I,e.next=4,k(t);case 4:return e.t1=e.sent,e.t2=n,e.abrupt("return",(0,e.t0)(e.t1,e.t2));case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),P=function(){var e=(0,a.Z)(c().mark((function e(t){return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",new Promise((function(e,n){try{t.toBlob((function(t){if(!t)return n(new p.l((0,h.t)("canvasError.canvasTooBig"),"CANVAS_POSSIBLY_TOO_BIG"));e(t)}))}catch(e){n(e)}})));case 1:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),M=function(){var e=(0,a.Z)(c().mark((function e(t){var n;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.t0=window.crypto.subtle,e.next=4,F(t);case 4:return e.t1=e.sent,e.next=7,e.t0.digest.call(e.t0,"SHA-1",e.t1);case 7:return n=e.sent,e.abrupt("return",(0,g.G3)(new Uint8Array(n)));case 11:return e.prev=11,e.t2=e.catch(0),console.error(e.t2),e.abrupt("return",(0,s.x0)(40));case 15:case"end":return e.stop()}}),e,null,[[0,11]])})));return function(t){return e.apply(this,arguments)}}(),D=function(){var e=(0,a.Z)(c().mark((function e(t){return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",new Promise((function(e,n){var r=new FileReader;r.onload=function(){var t=r.result;e(t)},r.onerror=function(e){return n(e)},r.readAsDataURL(t)})));case 1:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),A=function(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=e.indexOf(","),r=atob(e.slice(n+1)),o=e.slice(0,n).split(":")[1].split(";")[0],i=new ArrayBuffer(r.length),a=new Uint8Array(i),l=0;l<r.length;l++)a[l]=r.charCodeAt(l);return new File([i],t,{type:o})},L=function(){var e=(0,a.Z)(c().mark((function e(t,r){var i,a,l,s,u,f;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t.type!==d.LO.svg){e.next=2;break}return e.abrupt("return",t);case 2:return e.next=4,Promise.all([n.e(736).then(n.t.bind(n,4881,23)).then((function(e){return e.default})),n.e(736).then(n.bind(n,100)).then((function(e){return e.default}))]);case 4:if(i=e.sent,a=(0,o.Z)(i,2),l=a[0],s=a[1],u=s({pica:l({features:["js","wasm"]})}),r.outputType&&(f=r.outputType,u._create_blob=function(e){return this.pica.toBlob(e.out_canvas,f,.8).then((function(t){return e.out_blob=t,e}))}),j(t)){e.next=12;break}throw new Error((0,h.t)("errors.unsupportedFileType"));case 12:return e.t0=File,e.next=15,u.toBlob(t,{max:r.maxWidthOrHeight});case 15:return e.t1=e.sent,e.t2=[e.t1],e.t3=t.name,e.t4={type:r.outputType||t.type},e.abrupt("return",new e.t0(e.t2,e.t3,e.t4));case 20:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}(),Z=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return new File([(new TextEncoder).encode(e)],t,{type:d.LO.svg})},R=function(){var e=(0,a.Z)(c().mark((function e(t){var n,r;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.dataTransfer.files.item(0),e.next=3,z(t);case 3:if(r=e.sent,!n){e.next=10;break}return e.next=7,H(n);case 7:e.t0=e.sent,e.next=11;break;case 10:e.t0=null;case 11:return e.t1=e.t0,e.t2=r,e.abrupt("return",{file:e.t1,fileHandle:e.t2});case 14:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),z=function(){var e=(0,a.Z)(c().mark((function e(t){var n,r;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!v.kr){e.next=16;break}return e.prev=1,n=t.dataTransfer.items[0],e.next=5,n.getAsFileSystemHandle();case 5:if(e.t0=e.sent,e.t0){e.next=8;break}e.t0=null;case 8:return r=e.t0,e.abrupt("return",r);case 12:return e.prev=12,e.t1=e.catch(1),console.warn(e.t1.name,e.t1.message),e.abrupt("return",null);case 16:return e.abrupt("return",null);case 17:case"end":return e.stop()}}),e,null,[[1,12]])})));return function(t){return e.apply(this,arguments)}}(),N=function(e){var t=null,n="".concat((0,r.Z)(new Uint8Array(e).slice(0,8)).join(" ")," "),o="255 216 255 ",i="71 73 70 56 57 97 ";return n==="137 80 78 71 13 10 26 10 "?t=d.LO.png:n.startsWith(o)?t=d.LO.jpg:n.startsWith(i)&&(t=d.LO.gif),t},B=function(e,t,n){return new File([e],n||"",{type:t})},H=function(){var e=(0,a.Z)(c().mark((function e(t){var n,r,o,i,a,l,s,u;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t.type){e.next=28;break}if(null===(n=t)||void 0===n||null===(r=n.name)||void 0===r||!r.endsWith(".excalidrawlib")){e.next=11;break}return e.t0=B,e.next=5,F(t);case 5:e.t1=e.sent,e.t2=d.LO.excalidrawlib,e.t3=t.name,t=(0,e.t0)(e.t1,e.t2,e.t3),e.next=26;break;case 11:if(null===(o=t)||void 0===o||null===(i=o.name)||void 0===i||!i.endsWith(".excalidraw")){e.next=21;break}return e.t4=B,e.next=15,F(t);case 15:e.t5=e.sent,e.t6=d.LO.excalidraw,e.t7=t.name,t=(0,e.t4)(e.t5,e.t6,e.t7),e.next=26;break;case 21:return e.next=23,F(t);case 23:a=e.sent,(l=N(a))&&(t=B(a,l,t.name));case 26:e.next=34;break;case 28:if(!j(t)){e.next=34;break}return e.next=31,F(t);case 31:s=e.sent,(u=N(s))&&u!==t.type&&(t=B(s,u,t.name));case 34:return e.abrupt("return",t);case 35:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),F=function(e){return"arrayBuffer"in e?e.arrayBuffer():new Promise((function(t,n){var r=new FileReader;r.onload=function(e){var r;if(null===(r=e.target)||void 0===r||!r.result)return n(new Error("Couldn't convert blob to ArrayBuffer"));t(e.target.result)},r.readAsArrayBuffer(e)}))}},1393:function(e,t,n){"use strict";n.d(t,{I$:function(){return h},NL:function(){return m},kr:function(){return a}});var r=n(1930),o=n(8950),i=n(2975),a=function(){if("undefined"==typeof self)return!1;if("top"in self&&self!==top)try{top}catch(e){return!1}else if("showOpenFilePicker"in self)return"showOpenFilePicker";return!1}(),l=a?n.e(736).then(n.bind(n,2254)):n.e(736).then(n.bind(n,3499));function c(){return c=(0,o.Z)(i.mark((function e(){var t,n=arguments;return i.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,l;case 2:return e.abrupt("return",(t=e.sent).default.apply(t,n));case 3:case"end":return e.stop()}}),e)}))),c.apply(this,arguments)}a?n.e(736).then(n.bind(n,6474)):n.e(736).then(n.bind(n,9521));var s=a?n.e(736).then(n.bind(n,9475)):n.e(736).then(n.bind(n,6281));function u(){return u=(0,o.Z)(i.mark((function e(){var t,n=arguments;return i.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,s;case 2:return e.abrupt("return",(t=e.sent).default.apply(t,n));case 3:case"end":return e.stop()}}),e)}))),u.apply(this,arguments)}var d=n(2335),f=n(6797),p=n(6340),h=function(e){var t,n,o,i=null===(t=e.extensions)||void 0===t?void 0:t.reduce((function(e,t){return e.push(d.LO[t]),e}),[]),a=null===(n=e.extensions)||void 0===n?void 0:n.reduce((function(e,t){return"jpg"===t?e.concat(".jpg",".jpeg"):e.concat(".".concat(t))}),[]);return function(){return c.apply(this,arguments)}({description:e.description,extensions:a,mimeTypes:i,multiple:null!==(o=e.multiple)&&void 0!==o&&o,legacySetup:function(t,n,o){var i=(0,p.Ds)(n,500),a=function(){l(),document.addEventListener(d.Ks.KEYUP,i),document.addEventListener(d.Ks.POINTER_UP,i),i()},l=function(){var n;if(null!==(n=o.files)&&void 0!==n&&n.length){var i=e.multiple?(0,r.Z)(o.files):o.files[0];t(i)}};requestAnimationFrame((function(){window.addEventListener(d.Ks.FOCUS,a)}));var c=window.setInterval((function(){l()}),500);return function(e){clearInterval(c),i.cancel(),window.removeEventListener(d.Ks.FOCUS,a),document.removeEventListener(d.Ks.KEYUP,i),document.removeEventListener(d.Ks.POINTER_UP,i),e&&(console.warn("Opening the file was canceled (legacy-fs)."),e(new f._))}}})},m=function(e,t){return function(){return u.apply(this,arguments)}(e,{fileName:"".concat(t.name,".").concat(t.extension),description:t.description,extensions:[".".concat(t.extension)]},t.fileHandle)}},673:function(e,t,n){"use strict";n.r(t),n.d(t,{decodePngMetadata:function(){return E},decodeSvgMetadata:function(){return O},encodePngMetadata:function(){return k},encodeSvgMetadata:function(){return S},getTEXtChunk:function(){return w}});var r=n(8950),o=n(2975),i=n.n(o),a=n(2983),l=n.n(a),c=n(1194),s=n(3434),u=n.n(s),d=n(2744),f=n(2335),p=n(434),h=function(e){return new Promise((function(t,n){var r="string"==typeof e?new Blob([(new TextEncoder).encode(e)]):new Blob([e instanceof Uint8Array?e:new Uint8Array(e)]),o=new FileReader;o.onload=function(e){if(!e.target||"string"!=typeof e.target.result)return n(new Error("couldn't convert to byte string"));t(e.target.result)},o.readAsBinaryString(r)}))},m=function(e){for(var t=new ArrayBuffer(e.length),n=new Uint8Array(t),r=0,o=e.length;r<o;r++)n[r]=e.charCodeAt(r);return t},g=function(e){return new TextDecoder("utf-8").decode(m(e))},v=function(){var e=(0,r.Z)(i().mark((function e(t){var n=arguments;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!(n.length>1&&void 0!==n[1]&&n[1])){e.next=5;break}e.t0=window.btoa(t),e.next=10;break;case 5:return e.t1=window,e.next=8,h(t);case 8:e.t2=e.sent,e.t0=e.t1.btoa.call(e.t1,e.t2);case 10:return e.abrupt("return",e.t0);case 11:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),b=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r=arguments;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=r.length>1&&void 0!==r[1]&&r[1],e.abrupt("return",n?window.atob(t):g(window.atob(t)));case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),y=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=t.text,!1===t.compress){e.next=11;break}return e.prev=2,e.next=5,h((0,d.deflate)(n));case 5:r=e.sent,e.next=11;break;case 8:e.prev=8,e.t0=e.catch(2),console.error("encode: cannot deflate",e.t0);case 11:if(e.t1=!!r,e.t2=r,e.t2){e.next=17;break}return e.next=16,h(n);case 16:e.t2=e.sent;case 17:return e.t3=e.t2,e.abrupt("return",{version:"1",encoding:"bstring",compressed:e.t1,encoded:e.t3});case 19:case"end":return e.stop()}}),e,null,[[2,8]])})));return function(t){return e.apply(this,arguments)}}(),x=function(){var e=(0,r.Z)(i().mark((function e(t){var n;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:e.t0=t.encoding,e.next="bstring"===e.t0?3:12;break;case 3:if(!t.compressed){e.next=7;break}e.t1=t.encoded,e.next=10;break;case 7:return e.next=9,g(t.encoded);case 9:e.t1=e.sent;case 10:return n=e.t1,e.abrupt("break",13);case 12:throw new Error('decode: unknown encoding "'.concat(t.encoding,'"'));case 13:if(!t.compressed){e.next=15;break}return e.abrupt("return",(0,d.inflate)(new Uint8Array(m(n)),{to:"string"}));case 15:return e.abrupt("return",n);case 16:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}();var w=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=l(),e.t1=Uint8Array,e.next=4,(0,p.vZ)(t);case 4:if(e.t2=e.sent,e.t3=new e.t1(e.t2),n=(0,e.t0)(e.t3),!(r=n.find((function(e){return"tEXt"===e.name})))){e.next=10;break}return e.abrupt("return",c.decode(r.data));case 10:return e.abrupt("return",null);case 11:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),k=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r,o,a;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.blob,r=t.metadata,e.t0=l(),e.t1=Uint8Array,e.next=5,(0,p.vZ)(n);case 5:return e.t2=e.sent,e.t3=new e.t1(e.t2),o=(0,e.t0)(e.t3),e.t4=c,e.t5=f.LO.excalidraw,e.t6=JSON,e.next=13,y({text:r,compress:!0});case 13:return e.t7=e.sent,e.t8=e.t6.stringify.call(e.t6,e.t7),a=e.t4.encode.call(e.t4,e.t5,e.t8),o.splice(-1,0,a),e.abrupt("return",new Blob([u()(o)],{type:f.LO.png}));case 18:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),E=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,w(t);case 2:if((null==(n=e.sent)?void 0:n.keyword)!==f.LO.excalidraw){e.next=19;break}if(e.prev=4,"encoded"in(r=JSON.parse(n.text))){e.next=10;break}if(!("type"in r)||r.type!==f.r8.excalidraw){e.next=9;break}return e.abrupt("return",n.text);case 9:throw new Error("FAILED");case 10:return e.next=12,x(r);case 12:return e.abrupt("return",e.sent);case 15:throw e.prev=15,e.t0=e.catch(4),console.error(e.t0),new Error("FAILED");case 19:throw new Error("INVALID");case 20:case"end":return e.stop()}}),e,null,[[4,15]])})));return function(t){return e.apply(this,arguments)}}(),S=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r,o;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.text,e.t0=v,e.t1=JSON,e.next=5,y({text:n});case 5:return e.t2=e.sent,e.t3=e.t1.stringify.call(e.t1,e.t2),e.next=9,(0,e.t0)(e.t3,!0);case 9:return r=e.sent,o="",o+="\x3c!-- payload-type:".concat(f.LO.excalidraw," --\x3e"),o+="\x3c!-- payload-version:2 --\x3e",o+="\x3c!-- payload-start --\x3e",o+=r,o+="\x3c!-- payload-end --\x3e",e.abrupt("return",o);case 17:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),O=function(){var e=(0,r.Z)(i().mark((function e(t){var n,r,o,a,l,c,s;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!(n=t.svg).includes("payload-type:".concat(f.LO.excalidraw))){e.next=26;break}if(r=n.match(/<!-- payload-start -->\s*(.+?)\s*<!-- payload-end -->/)){e.next=5;break}throw new Error("INVALID");case 5:return o=n.match(/<!-- payload-version:(\d+) -->/),a=(null==o?void 0:o[1])||"1",l="1"!==a,e.prev=8,e.next=11,b(r[1],l);case 11:if(c=e.sent,"encoded"in(s=JSON.parse(c))){e.next=17;break}if(!("type"in s)||s.type!==f.r8.excalidraw){e.next=16;break}return e.abrupt("return",c);case 16:throw new Error("FAILED");case 17:return e.next=19,x(s);case 19:return e.abrupt("return",e.sent);case 22:throw e.prev=22,e.t0=e.catch(8),console.error(e.t0),new Error("FAILED");case 26:throw new Error("INVALID");case 27:case"end":return e.stop()}}),e,null,[[8,22]])})));return function(t){return e.apply(this,arguments)}}()},9485:function(e,t,n){"use strict";n.d(t,{Um:function(){return f.Um},cT:function(){return u.cT},n8:function(){return f.n8},tq:function(){return p}});var r=n(8950),o=n(2975),i=n.n(o),a=n(6665),l=n(2335),c=n(5202),s=n(4162),u=n(434),d=n(1393),f=n(5523),p=function(){var e=(0,r.Z)(i().mark((function e(t,r,o,p,h){var m,g,v,b,y,x,w,k,E,S,O;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(m=h.exportBackground,g=h.exportPadding,v=void 0===g?l.qy:g,b=h.viewBackgroundColor,y=h.name,x=h.fileHandle,w=void 0===x?null:x,0!==r.length){e.next=3;break}throw new Error((0,c.t)("alerts.cannotExportEmptyCanvas"));case 3:if("svg"!==t&&"clipboard-svg"!==t){e.next=17;break}return e.next=6,(0,s.$D)(r,{exportBackground:m,exportWithDarkMode:o.exportWithDarkMode,viewBackgroundColor:b,exportPadding:v,exportScale:o.exportScale,exportEmbedScene:o.exportEmbedScene&&"svg"===t},p);case 6:if(k=e.sent,"svg"!==t){e.next=13;break}return e.next=10,(0,d.NL)(new Blob([k.outerHTML],{type:l.LO.svg}),{description:"Export to SVG",name:y,extension:o.exportEmbedScene?"excalidraw.svg":"svg",fileHandle:w});case 10:return e.abrupt("return",e.sent);case 13:if("clipboard-svg"!==t){e.next=17;break}return e.next=16,(0,a.dd)(k.outerHTML);case 16:return e.abrupt("return");case 17:return e.next=19,(0,s.NL)({data:{elements:r,appState:o,files:p},config:{canvasBackgroundColor:!!m&&b,padding:v,theme:o.exportWithDarkMode?"dark":"light",scale:o.exportScale}});case 19:if((E=e.sent).style.display="none",document.body.appendChild(E),"png"!==t){e.next=38;break}return e.next=25,(0,u._c)(E);case 25:if(S=e.sent,E.remove(),!o.exportEmbedScene){e.next=33;break}return e.next=30,Promise.resolve().then(n.bind(n,673));case 30:return e.next=32,e.sent.encodePngMetadata({blob:S,metadata:(0,f.I_)(r,o,p,"local")});case 32:S=e.sent;case 33:return e.next=35,(0,d.NL)(S,{description:"Export to PNG",name:y,extension:"png",fileHandle:w});case 35:return e.abrupt("return",e.sent);case 38:if("clipboard"!==t){e.next=60;break}return e.prev=39,O=(0,u._c)(E),e.next=43,(0,a.uR)(O);case 43:e.next=55;break;case 45:if(e.prev=45,e.t0=e.catch(39),console.warn(e.t0),"CANVAS_POSSIBLY_TOO_BIG"!==e.t0.name){e.next=50;break}throw e.t0;case 50:if(!l.vU||"TypeError"!==e.t0.name){e.next=54;break}throw new Error("".concat((0,c.t)("alerts.couldNotCopyToClipboard"),"\n\n").concat((0,c.t)("hints.firefox_clipboard_write")));case 54:throw new Error((0,c.t)("alerts.couldNotCopyToClipboard"));case 55:return e.prev=55,E.remove(),e.finish(55);case 58:e.next=62;break;case 60:throw E.remove(),new Error("Unsupported export type");case 62:case"end":return e.stop()}}),e,null,[[39,45,55,58]])})));return function(t,n,r,o,i){return e.apply(this,arguments)}}()},5523:function(e,t,n){"use strict";n.d(t,{HT:function(){return y},I_:function(){return m},NI:function(){return x},Um:function(){return g},dS:function(){return b},n8:function(){return v},t1:function(){return w}});var r=n(6655),o=n(8950),i=n(2975),a=n.n(i),l=n(1393),c=n(8897),s=n(2335),u=n(1047),d=n(434);function f(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return p(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return p(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var h=function(e,t){var n,r={},o=f(e);try{for(o.s();!(n=o.n()).done;){var i=n.value;!i.isDeleted&&"fileId"in i&&i.fileId&&t[i.fileId]&&(r[i.fileId]=t[i.fileId])}}catch(e){o.e(e)}finally{o.f()}return r},m=function(e,t,n,r){var o={type:s.r8.excalidraw,version:s.Kr.excalidraw,source:s.pb,elements:"local"===r?(0,u._M)(e):(0,u.BQ)(e),appState:"local"===r?(0,c.s)(t):(0,c.eS)(t),files:"local"===r?h(e,n):void 0};return JSON.stringify(o,null,2)},g=function(){var e=(0,o.Z)(a().mark((function e(t,n,r){var o,i,c;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return o=m(t,n,r,"local"),i=new Blob([o],{type:s.LO.excalidraw}),e.next=4,(0,l.NL)(i,{name:n.name,extension:"excalidraw",description:"Excalidraw file",fileHandle:(0,d.g8)(n.fileHandle)?null:n.fileHandle});case 4:return c=e.sent,e.abrupt("return",{fileHandle:c});case 6:case"end":return e.stop()}}),e)})));return function(t,n,r){return e.apply(this,arguments)}}(),v=function(){var e=(0,o.Z)(a().mark((function e(t,n){var r;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,(0,l.I$)({description:"Excalidraw files"});case 2:return r=e.sent,e.t0=d.cT,e.next=6,(0,d.gY)(r);case 6:return e.t1=e.sent,e.t2=t,e.t3=n,e.t4=r.handle,e.abrupt("return",(0,e.t0)(e.t1,e.t2,e.t3,e.t4));case 11:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}(),b=function(e){return(null==e?void 0:e.type)===s.r8.excalidraw&&(!e.elements||Array.isArray(e.elements)&&(!e.appState||"object"===(0,r.Z)(e.appState)))},y=function(e){return"object"===(0,r.Z)(e)&&e&&e.type===s.r8.excalidrawLibrary&&(1===e.version||2===e.version)},x=function(e){var t={type:s.r8.excalidrawLibrary,version:s.Kr.excalidrawLibrary,source:s.pb,libraryItems:e};return JSON.stringify(t,null,2)},w=function(){var e=(0,o.Z)(a().mark((function e(t){var n;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=x(t),e.next=3,(0,l.NL)(new Blob([n],{type:s.LO.excalidrawlib}),{name:"library",extension:"excalidrawlib",description:"Excalidraw library file"});case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()},7053:function(e,t,n){"use strict";n.d(t,{Di:function(){return T},WV:function(){return I},rF:function(){return S},xS:function(){return P},zh:function(){return _}});var r=n(7169),o=n(8950),i=n(5169),a=n(8821),l=n(1930),c=n(2975),s=n.n(c),u=n(434),d=n(679),f=n(3607),p=n(9487),h=n(8925),m=n(6797),g=n(5202),v=n(9787),b=n(2335),y=n(6127);function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function w(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?x(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):x(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function k(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return E(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return E(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function E(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var S=(0,f.cn)({status:"loaded",isInitialized:!0,libraryItems:[]}),O=function(e){return JSON.parse(JSON.stringify(e))},j=function(e,t){return!e.find((function(e){return e.elements.length===t.elements.length&&e.elements.every((function(e,n){return e.id===t.elements[n].id&&e.versionNonce===t.elements[n].versionNonce}))}))},_=function(e,t){var n,r=[],o=k(t);try{for(o.s();!(n=o.n()).done;){var i=n.value;j(e,i)&&r.push(i)}}catch(e){o.e(e)}finally{o.f()}return[].concat(r,(0,l.Z)(e))},C=(0,i.Z)((function e(t){var n=this;(0,a.Z)(this,e),this.lastLibraryItems=[],this.isInitialized=!1,this.updateQueue=[],this.getLastUpdateTask=function(){return n.updateQueue[n.updateQueue.length-1]},this.notifyListeners=function(){if(n.updateQueue.length>0)p.e_.set(S,{status:"loading",libraryItems:n.lastLibraryItems,isInitialized:n.isInitialized});else{n.isInitialized=!0,p.e_.set(S,{status:"loaded",libraryItems:n.lastLibraryItems,isInitialized:n.isInitialized});try{var e,t;null===(e=(t=n.app.props).onLibraryChange)||void 0===e||e.call(t,O(n.lastLibraryItems))}catch(e){console.error(e)}}},this.destroy=function(){n.isInitialized=!1,n.updateQueue=[],n.lastLibraryItems=[],p.e_.set(y.YX,new Map)},this.resetLibrary=function(){return n.setLibrary([])},this.getLatestLibrary=function(){return new Promise(function(){var e=(0,o.Z)(s().mark((function e(t){var r;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,n.getLastUpdateTask()||n.lastLibraryItems;case 3:r=e.sent,n.updateQueue.length>0?t(n.getLatestLibrary()):t(O(r)),e.next=10;break;case 7:return e.prev=7,e.t0=e.catch(0),e.abrupt("return",t(n.lastLibraryItems));case 10:case"end":return e.stop()}}),e,null,[[0,7]])})));return function(t){return e.apply(this,arguments)}}())},this.updateLibrary=function(){var e=(0,o.Z)(s().mark((function e(t){var r,i,a,l,c,f,p,h,v;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=t.libraryItems,i=t.prompt,a=void 0!==i&&i,l=t.merge,c=void 0!==l&&l,f=t.openLibraryMenu,p=void 0!==f&&f,h=t.defaultStatus,v=void 0===h?"unpublished":h,p&&n.app.setState({openSidebar:{name:b.Cc.name,tab:b.tf}}),e.abrupt("return",n.setLibrary((function(){return new Promise(function(){var e=(0,o.Z)(s().mark((function e(t,o){var i,l;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,"function"!=typeof r||r instanceof Blob?r:r(n.lastLibraryItems);case 3:if(!((i=e.sent)instanceof Blob)){e.next=10;break}return e.next=7,(0,u.lV)(i,v);case 7:l=e.sent,e.next=11;break;case 10:l=(0,d.wJ)(i,v);case 11:!a||window.confirm((0,g.t)("alerts.confirmAddLibrary",{numShapes:l.length}))?(a&&n.app.focusContainer(),t(c?_(n.lastLibraryItems,l):l)):o(new m._),e.next=17;break;case 14:e.prev=14,e.t0=e.catch(0),o(e.t0);case 17:case"end":return e.stop()}}),e,null,[[0,14]])})));return function(t,n){return e.apply(this,arguments)}}())})));case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),this.setLibrary=function(e){var t=new Promise(function(){var t=(0,o.Z)(s().mark((function t(r,o){return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,n.getLastUpdateTask();case 3:return"function"==typeof e&&(e=e(n.lastLibraryItems)),t.t0=O,t.next=7,e;case 7:t.t1=t.sent,n.lastLibraryItems=(0,t.t0)(t.t1),r(n.lastLibraryItems),t.next=15;break;case 12:t.prev=12,t.t2=t.catch(0),o(t.t2);case 15:case"end":return t.stop()}}),t,null,[[0,12]])})));return function(e,n){return t.apply(this,arguments)}}()).catch((function(e){if("AbortError"===e.name)return console.warn("Library update aborted by user"),n.lastLibraryItems;throw e})).finally((function(){n.updateQueue=n.updateQueue.filter((function(e){return e!==t})),n.notifyListeners()}));return n.updateQueue.push(t),n.notifyListeners(),t},this.app=t}));t.ZP=C;var I=function(e){var t,n=Math.ceil(Math.sqrt(e.length)),r=[],o=0,i=0,a=0,c=0,s=0,u=0,d=0,f=k(e);try{var p=function(){var f=t.value;s&&s%n==0&&(i+=a+50,o=0,u=0,d++),0===u&&(a=function(t){return e.slice(t*n,t*n+n).reduce((function(e,t){var n=(0,h.v2)(t.elements).height;return Math.max(e,n)}),0)}(d)),c=function(t){var r,o=0,i=0,a=0,l=k(e);try{for(l.s();!(r=l.n()).done;){var c=r.value;if(o%n==0&&(i=0),i===t){var s=(0,h.v2)(c.elements).width;a=Math.max(a,s)}o++,i++}}catch(e){l.e(e)}finally{l.f()}return a}(u);var p=(0,h.v2)(f.elements),m=p.minX,g=p.minY,v=p.width,b=p.height,y=(c-v)/2,x=(a-b)/2;r.push.apply(r,(0,l.Z)(f.elements.map((function(e){return w(w({},e),{},{x:e.x+o+y-m,y:e.y+i+x-g})})))),o+=c+50,s++,u++};for(f.s();!(t=f.n()).done;)p()}catch(e){f.e(e)}finally{f.f()}return r},T=function(){var e=new URLSearchParams(window.location.hash.slice(1)).get(b.ah.addLibrary)||new URLSearchParams(window.location.search).get(b.UO.addLibrary),t=e?new URLSearchParams(window.location.hash.slice(1)).get("token"):null;return e?{libraryUrl:e,idToken:t}:null},P=function(e){var t=e.excalidrawAPI,n=e.getInitialLibraryItems,r=(0,v.useRef)(n);(0,v.useEffect)((function(){if(t){var e=function(){var e=(0,o.Z)(s().mark((function e(n){var r,i,a,l,c,u;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=n.libraryUrl,i=n.idToken,a=new Promise(function(){var e=(0,o.Z)(s().mark((function e(t,n){var o,i;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,fetch(decodeURIComponent(r));case 3:return o=e.sent,e.next=6,o.blob();case 6:i=e.sent,t(i),e.next=13;break;case 10:e.prev=10,e.t0=e.catch(0),n(e.t0);case 13:case"end":return e.stop()}}),e,null,[[0,10]])})));return function(t,n){return e.apply(this,arguments)}}()),l=i!==t.id,e.next=5,l&&document.hidden?new Promise((function(e){window.addEventListener("focus",(function(){return e()}),{once:!0})})):null;case 5:return e.prev=5,e.next=8,t.updateLibrary({libraryItems:a,prompt:l,merge:!0,defaultStatus:"published",openLibraryMenu:!0});case 8:e.next=13;break;case 10:throw e.prev=10,e.t0=e.catch(5),e.t0;case 13:return e.prev=13,window.location.hash.includes(b.ah.addLibrary)?((c=new URLSearchParams(window.location.hash.slice(1))).delete(b.ah.addLibrary),window.history.replaceState({},b.iC,"#".concat(c.toString()))):window.location.search.includes(b.UO.addLibrary)&&((u=new URLSearchParams(window.location.search)).delete(b.UO.addLibrary),window.history.replaceState({},b.iC,"?".concat(u.toString()))),e.finish(13);case 16:case"end":return e.stop()}}),e,null,[[5,10,13,16]])})));return function(t){return e.apply(this,arguments)}}(),n=function(t){t.preventDefault();var n=T();n&&(t.stopImmediatePropagation(),window.history.replaceState({},"",t.oldURL),e(n))};r.current&&t.updateLibrary({libraryItems:r.current()});var i=T();return i&&e(i),window.addEventListener(b.Ks.HASHCHANGE,n),function(){window.removeEventListener(b.Ks.HASHCHANGE,n)}}}),[t])}},679:function(e,t,n){"use strict";n.d(t,{ET:function(){return S},lY:function(){return _},nu:function(){return C},wJ:function(){return T}});var r=n(2577),o=n(7169),i=n(1047),a=n(1974),l=n(6954),c=n(2335),s=n(8897),u=n(6938),d=n(1935),f=n(6340),p=n(5710),h=n(56);function m(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return g(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return g(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function g(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function v(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function b(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?v(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):v(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var y={selection:!0,text:!0,rectangle:!0,diamond:!0,ellipse:!0,line:!0,image:!0,arrow:!0,freedraw:!0,eraser:!1,custom:!0,frame:!0,hand:!0},x=function(e){return Object.keys(c.ut).includes(e)?c.ut[e]:c.rk},w=function(e,t){var n,r,o,s,u,d,p,m,g,v,y,x,w,k,E,S={type:t.type||e.type,version:e.version||1,versionNonce:null!==(n=e.versionNonce)&&void 0!==n?n:0,isDeleted:null!==(r=e.isDeleted)&&void 0!==r&&r,id:e.id||(0,l.kb)(),fillStyle:e.fillStyle||"hachure",strokeWidth:e.strokeWidth||1,strokeStyle:null!==(o=e.strokeStyle)&&void 0!==o?o:"solid",roughness:null!==(s=e.roughness)&&void 0!==s?s:1,opacity:null==e.opacity?100:e.opacity,angle:e.angle||0,x:null!==(u=null!==(d=t.x)&&void 0!==d?d:e.x)&&void 0!==u?u:0,y:null!==(p=null!==(m=t.y)&&void 0!==m?m:e.y)&&void 0!==p?p:0,strokeColor:e.strokeColor||h.HO.black,backgroundColor:e.backgroundColor||h.HO.transparent,width:e.width||0,height:e.height||0,seed:null!==(g=e.seed)&&void 0!==g?g:1,groupIds:null!==(v=e.groupIds)&&void 0!==v?v:[],frameId:null!==(y=e.frameId)&&void 0!==y?y:null,roundness:e.roundness?e.roundness:"round"===e.strokeSharpness?{type:(0,a.QI)(e.type)?c.a6.LEGACY:c.a6.PROPORTIONAL_RADIUS}:null,boundElements:e.boundElementIds?e.boundElementIds.map((function(e){return{type:"arrow",id:e}})):null!==(x=e.boundElements)&&void 0!==x?x:[],updated:null!==(w=e.updated)&&void 0!==w?w:(0,f.C3)(),link:null!==(k=e.link)&&void 0!==k?k:null,locked:null!==(E=e.locked)&&void 0!==E&&E};return"customData"in e&&(S.customData=e.customData),c.WR in e&&(S[c.WR]=e[c.WR]),b(b(b({},S),(0,i.Qp)(S)),t)},k=function(e,t){if(e.boundElements){var n=e.boundElements.slice(),r=new Set;e.boundElements=n.reduce((function(n,o){var i=t.get(o.id);if(i&&!r.has(o.id)){if(r.add(o.id),i.isDeleted)return n;n.push(o),(0,a.iB)(i)&&!i.containerId&&(i.containerId=e.id)}return n}),[])}},E=function(e,t){var n=e.containerId?t.get(e.containerId):null;if(n){if(!e.isDeleted&&n.boundElements&&!n.boundElements.find((function(t){return t.id===e.id}))){var r=(n.boundElements||(n.boundElements=[])).slice();r.push({type:"text",id:e.id}),n.boundElements=r}}else e.containerId=null},S=function(e,t,n){var o=new Set,s=t?(0,f.xn)(t):null,h=(e||[]).reduce((function(e,t){if("selection"!==t.type&&!(0,i.QD)(t)){var a=function(e){var t,n,o,a=arguments.length>1&&void 0!==arguments[1]&&arguments[1];switch(e.type){case"text":var l=e.fontSize,s=e.fontFamily;if("font"in e){var d=e.font.split(" "),h=(0,r.Z)(d,2),m=h[0],g=h[1];l=parseFloat(m),s=x(g)}var v=null!==(t=e.text)&&void 0!==t?t:"",y=e.lineHeight||(e.height?(0,p.$2)(e):(0,p.PT)(e.fontFamily)),k=(0,p.R8)(e.text,(0,f.mO)(e),y);return e=w(e,{fontSize:l,fontFamily:s,text:v,textAlign:e.textAlign||c.Hg,verticalAlign:e.verticalAlign||c.hs,containerId:null!==(n=e.containerId)&&void 0!==n?n:null,originalText:e.originalText||v,lineHeight:y,baseline:k}),a&&(e=b(b({},e),(0,i.JZ)(e))),e;case"freedraw":return w(e,{points:e.points,lastCommittedPoint:null,simulatePressure:e.simulatePressure,pressures:e.pressures});case"image":return w(e,{status:e.status||"pending",fileId:e.fileId,scale:e.scale||[1,1]});case"line":case"draw":case"arrow":var E=e,S=E.startArrowhead,O=void 0===S?null:S,j=E.endArrowhead,_=void 0===j?"arrow"===e.type?"arrow":null:j,C=e.x,I=e.y,T=!Array.isArray(e.points)||e.points.length<2?[[0,0],[e.width,e.height]]:e.points;if(0!==T[0][0]||0!==T[0][1]){var P=u._.getNormalizedPoints(e);T=P.points,C=P.x,I=P.y}return w(e,{type:"draw"===e.type?"line":e.type,startBinding:e.startBinding,endBinding:e.endBinding,lastCommittedPoint:null,startArrowhead:O,endArrowhead:_,points:T,x:C,y:I});case"ellipse":case"rectangle":case"diamond":return w(e,{});case"frame":return w(e,{name:null!==(o=e.name)&&void 0!==o?o:null})}}(t,null==n?void 0:n.refreshDimensions);if(a){var h=null==s?void 0:s.get(t.id);h&&h.version>a.version&&(a=(0,d.ZP)(a,h.version)),o.has(a.id)&&(a=b(b({},a),{},{id:(0,l.kb)()})),o.add(a.id),e.push(a)}}return e}),[]);if(null==n||!n.repairBindings)return h;var g,v=(0,f.xn)(h),y=m(h);try{for(y.s();!(g=y.n()).done;){var S=g.value;(0,a.iB)(S)&&S.containerId?E(S,v):S.boundElements&&k(S,v)}}catch(e){y.e(e)}finally{y.f()}return h},O=function(e,t,n){var r=t[e];return void 0!==r?r:n[e]},j={isSidebarDocked:function(e,t){var n;return["defaultSidebarDockedPreference",null!==(n=e.isSidebarDocked)&&void 0!==n?n:O("defaultSidebarDockedPreference",e,t)]}},_=function(e,t){var n,o,i,a;e=e||{};for(var l=(0,s.im)(),u={},d=0,p=Object.keys(j);d<p.length;d++){var h=p[d];if(h in e){var m=j[h](e,l),g=(0,r.Z)(m,2),v=g[0],x=g[1];u[v]=x}}for(var w=0,k=Object.entries(l);w<k.length;w++){var E=(0,r.Z)(k[w],2),S=E[0],O=E[1],_=e[S],C=t?t[S]:void 0;u[S]=void 0!==_?_:void 0!==C?C:O}return b(b({},u),{},{cursorButton:(null==t?void 0:t.cursorButton)||"up",penDetected:null!==(n=null==t?void 0:t.penDetected)&&void 0!==n?n:!!e.penMode&&(null!==(o=e.penDetected)&&void 0!==o&&o),activeTool:b(b({},(0,f.Om)(l,u.activeTool.type&&y[u.activeTool.type]?u.activeTool:{type:"selection"})),{},{lastActiveTool:null,locked:null!==(i=u.activeTool.locked)&&void 0!==i&&i}),zoom:"number"==typeof e.zoom?{value:e.zoom}:null!==(a=e.zoom)&&void 0!==a&&a.value?e.zoom:l.zoom,openSidebar:"string"==typeof e.openSidebar?{name:c.Cc.name}:u.openSidebar})},C=function(e,t,n,r){return{elements:S(null==e?void 0:e.elements,n,r),appState:_(null==e?void 0:e.appState,t||null),files:(null==e?void 0:e.files)||{}}},I=function(e){var t=S((0,i.Lm)(e.elements),null);return t.length?b(b({},e),{},{elements:t}):null},T=function(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1?arguments[1]:void 0,r=[],o=m(t);try{for(o.s();!(e=o.n()).done;){var i=e.value;if(Array.isArray(i)){var a=I({status:n,elements:i,id:(0,l.kb)(),created:Date.now()});a&&r.push(a)}else{var c=i,s=I(b(b({},c),{},{id:c.id||(0,l.kb)(),status:c.status||n,created:c.created||Date.now()}));s&&r.push(s)}}}catch(e){o.e(e)}finally{o.f()}return r}},4929:function(e,t,n){"use strict";n.d(t,{rj:function(){return B},nW:function(){return F},nz:function(){return Y},sw:function(){return V},lV:function(){return Q},q$:function(){return K},wq:function(){return X},$u:function(){return U},Pp:function(){return $}});var r=n(7169),o=n(2577),i=n(6340),a=n(1935),l=n(7901),c=n(1319),s=n(3646),u=n(5202),d=n(9787),f=n(45),p=n(6066),h=n(3063),m=n(6552),g=n(2335),v=n(1894),b=n(75),y=n(2325),x=n(1047),w=n(487),k=n.n(w),E=n(631),S=n.n(E),O=n(2052),j=n.n(O),_=n(4010),C=n.n(_),I=n(1469),T=n.n(I),P=n(9329),M=n.n(P),D=n(5260),A={};A.styleTagTransform=M(),A.setAttributes=C(),A.insert=j().bind(null,"head"),A.domAPI=S(),A.insertStyleElement=T();k()(D.Z,A),D.Z&&D.Z.locals&&D.Z.locals;var L=n(7047),Z=n(8993),R=n(4512);function z(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function N(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?z(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):z(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var B=document.createElement("img");B.src="data:".concat(g.LO.svg,", ").concat(encodeURIComponent('<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#1971c2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>'));var H=!1,F=function(e){var t=e.element,n=e.setAppState,r=e.onLinkOpen,l=(0,Z.gF)(),h=t.link||"",m=(0,d.useState)(h),v=(0,o.Z)(m,2),b=v[0],y=v[1],x=(0,d.useRef)(null),w="editor"===l.showHyperlinkPopup||!h,k=(0,d.useCallback)((function(){if(x.current){var e=U(x.current.value);!t.link&&e&&(0,L.L)("hyperlink","create"),(0,a.DR)(t,{link:e}),n({showHyperlinkPopup:"info"})}}),[t,n]);(0,d.useLayoutEffect)((function(){return function(){k()}}),[k]),(0,d.useEffect)((function(){var e=null,r=function(r){w||(e&&clearTimeout(e),ee(t,l,[r.clientX,r.clientY])&&(e=window.setTimeout((function(){n({showHyperlinkPopup:!1})}),500)))};return window.addEventListener(g.Ks.POINTER_MOVE,r,!1),function(){window.removeEventListener(g.Ks.POINTER_MOVE,r,!1),e&&clearTimeout(e)}}),[l,t,w,n]);var E=(0,d.useCallback)((function(){(0,L.L)("hyperlink","delete"),(0,a.DR)(t,{link:null}),w&&(x.current.value=""),n({showHyperlinkPopup:!1})}),[n,t,w]),S=W(t,l),O=S.x,j=S.y;return l.draggingElement||l.resizingElement||l.isRotating||l.openMenu?null:(0,R.jsxs)("div",{className:"excalidraw-hyperlinkContainer",style:{top:"".concat(j,"px"),left:"".concat(O,"px"),width:320,padding:5},children:[w?(0,R.jsx)("input",{className:(0,f.Z)("excalidraw-hyperlinkContainer-input"),placeholder:"Type or paste your link here",ref:x,value:b,onChange:function(e){return y(e.target.value)},autoFocus:!0,onKeyDown:function(e){e.stopPropagation(),e[p.tW.CTRL_OR_CMD]&&e.key===p.tW.K&&e.preventDefault(),e.key!==p.tW.ENTER&&e.key!==p.tW.ESCAPE||k()}}):(0,R.jsx)("a",{href:t.link||"",className:(0,f.Z)("excalidraw-hyperlinkContainer-link",{"d-none":w}),target:K(t.link)?"_self":"_blank",onClick:function(e){if(t.link&&r){var n=(0,i.ag)(g.Ks.EXCALIDRAW_LINK,e.nativeEvent);r(t,n),n.defaultPrevented&&e.preventDefault()}},rel:"noopener noreferrer",children:t.link}),(0,R.jsxs)("div",{className:"excalidraw-hyperlinkContainer__buttons",children:[!w&&(0,R.jsx)(c.V,{type:"button",title:(0,u.t)("buttons.edit"),"aria-label":(0,u.t)("buttons.edit"),label:(0,u.t)("buttons.edit"),onClick:function(){(0,L.L)("hyperlink","edit","popup-ui"),n({showHyperlinkPopup:"editor"})},className:"excalidraw-hyperlinkContainer--edit",icon:s.FreedrawIcon}),h&&(0,R.jsx)(c.V,{type:"button",title:(0,u.t)("buttons.remove"),"aria-label":(0,u.t)("buttons.remove"),label:(0,u.t)("buttons.remove"),onClick:E,className:"excalidraw-hyperlinkContainer--remove",icon:s.TrashIcon})]})]})},W=function(e,t){var n=(0,x.qf)(e),r=(0,o.Z)(n,2),a=r[0],l=r[1],c=(0,i._i)({sceneX:a+e.width/2,sceneY:l},t),s=c.x,u=c.y;return{x:s-t.offsetLeft-160,y:u-t.offsetTop-85}},U=function(e){return(e=e.trim())&&(e.includes("://")||/^[[\\/]/.test(e)||(e="https://".concat(e))),e},K=function(e){return!!(null!=e&&e.includes(location.origin)||null!=e&&e.startsWith("/"))},Y=(0,l.z)({name:"hyperlink",perform:function(e,t){return"editor"!==t.showHyperlinkPopup&&{elements:e,appState:N(N({},t),{},{showHyperlinkPopup:"editor",openMenu:null}),commitToHistory:!0}},trackEvent:{category:"hyperlink",action:"click"},keyTest:function(e){return e[p.tW.CTRL_OR_CMD]&&e.key===p.tW.K},contextItemLabel:function(e,t){return G(e,t)},predicate:function(e,t){return 1===(0,b.eD)(e,t).length},PanelComponent:function(e){var t=e.elements,n=e.appState,r=e.updateData,o=(0,b.eD)(t,n);return(0,R.jsx)(c.V,{type:"button",icon:s.LinkIcon,"aria-label":(0,u.t)(G(t,n)),title:"".concat((0,u.t)("labels.link.label")," - ").concat((0,i.uY)("CtrlOrCmd+K")),onClick:function(){return r(null)},selected:1===o.length&&!!o[0].link})}}),G=function(e,t){return(0,b.eD)(e,t)[0].link?"labels.link.edit":"labels.link.create"},V=function(e,t,n){var r=(0,o.Z)(e,4),i=r[0],a=r[1],l=r[2],c=r[3],s=h.Dn,u=s/n.zoom.value,d=s/n.zoom.value,f=s/n.zoom.value,p=(i+l)/2,g=(a+c)/2,v=(s-8)/(2*n.zoom.value),b=4/n.zoom.value,y=l+b-v,x=a-b-f+v,w=(0,m.U1)(y+u/2,x+d/2,p,g,t),k=(0,o.Z)(w,2);return[k[0]-u/2,k[1]-d/2,u,d]},X=function(e,t,n,r){var i=(0,o.Z)(n,2),a=i[0],l=i[1];if(!e.link||t.selectedElementIds[e.id])return!1;var c=4/t.zoom.value;if(!r&&t.viewModeEnabled&&(0,y.pX)(e,[a,l],c,null))return!0;var s=(0,x.qf)(e),u=(0,o.Z)(s,4),d=u[0],f=u[1],p=u[2],h=u[3],m=V([d,f,p,h],e.angle,t),g=(0,o.Z)(m,4),v=g[0],b=g[1],w=g[2],k=g[3];return a>v-c&&a<v+c+w&&l>b-c&&l<b+k+c},q=null,$=function(e,t){q&&clearTimeout(q),q=window.setTimeout((function(){return J(e,t)}),g.sA)},J=function(e,t){if(e.link){var n=(0,v.bK)();n.classList.add("excalidraw-tooltip--visible"),n.style.maxWidth="20rem",n.textContent=e.link;var r=(0,x.qf)(e),a=(0,o.Z)(r,4),l=a[0],c=a[1],s=a[2],u=a[3],d=V([l,c,s,u],e.angle,t),f=(0,o.Z)(d,4),p=f[0],h=f[1],m=f[2],g=f[3],b=(0,i._i)({sceneX:p,sceneY:h},t);(0,v.Js)(n,{left:b.x,top:b.y,width:m,height:g},"top"),(0,L.L)("hyperlink","tooltip","link-icon"),H=!0}},Q=function(){q&&clearTimeout(q),H&&(H=!1,(0,v.bK)().classList.remove("excalidraw-tooltip--visible"))},ee=function(e,t,n){var r=(0,o.Z)(n,2),a=r[0],l=r[1],c=(0,i.dE)({clientX:a,clientY:l},t),s=c.x,u=c.y,d=15/t.zoom.value;if((0,y.pX)(e,[s,u],d,null))return!1;var f=(0,x.qf)(e),p=(0,o.Z)(f,3),h=p[0],m=p[1],g=p[2];if(s>=h&&s<=g&&u>=m-85&&u<=m)return!1;var v=W(e,t),b=v.x,w=v.y;return!(a>=b-d&&a<=b+320+10+d&&l>=w-d&&l<=w+d+10+42)}},8290:function(e,t,n){"use strict";n.d(t,{$q:function(){return W},DK:function(){return O},H:function(){return j},HG:function(){return b},N1:function(){return g},R:function(){return k},Ww:function(){return T},Y9:function(){return C},ZB:function(){return L},cz:function(){return m},ek:function(){return H},el:function(){return x}});var r=n(7169),o=n(2577),i=n(75),a=n(1974),l=n(2325),c=n(1935),s=n(1564),u=n(6938),d=n(6340),f=n(6066),p=n(5710);function h(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var m=function(e){return!e[f.tW.CTRL_OR_CMD]},g=function(e){return e.isBindingEnabled},v=function(e,t){var n=[];return t.forEach((function(t){var r=e.getNonDeletedElement(t);null!=r&&n.push(r)})),n},b=function(e,t,n){var r=new Set,o=new Set;y(e,t,n,"start",r,o),y(e,n,t,"end",r,o);var i=Array.from(o).filter((function(e){return!r.has(e)}));v(s.Z.getScene(e),i).forEach((function(t){var n;(0,c.DR)(t,{boundElements:null===(n=t.boundElements)||void 0===n?void 0:n.filter((function(t){return"arrow"!==t.type||t.id!==e.id}))})}))},y=function(e,t,n,r,o,i){if("keep"!==t)if(null!=t)null!=n&&("keep"===n?S(e,t,r):"start"!==r&&n.id===t.id)||(E(e,t,r),o.add(t.id));else{var a=_(e,r);null!=a&&i.add(a)}},x=function(e){e.forEach((function(e){(0,a.Mn)(e)?b(e,R(e,"start"),R(e,"end")):(0,a.f0)(e)&&w(e)}))},w=function(e){N(e).forEach((function(t){var n=(0,o.Z)(t,2),r=n[0],i=n[1];return b(r,"end"===i?"keep":e,"start"===i?"keep":e)}))},k=function(e,t,n,r){null!=t.startBoundElement&&E(e,t.startBoundElement,"start");var o=C(r,n);null==o||S(e,o,"end")||E(e,o,"end")},E=function(e,t,n){(0,c.DR)(e,(0,r.Z)({},"start"===n?"startBinding":"endBinding",function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?h(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):h(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({elementId:t.id},I(e,t,n)))),(0,d.xn)(t.boundElements||[]).has(e.id)||(0,c.DR)(t,{boundElements:(t.boundElements||[]).concat({id:e.id,type:"arrow"})})},S=function(e,t,n){var r=e["start"===n?"endBinding":"startBinding"];return O(e,null==r?void 0:r.elementId,t)},O=function(e,t,n){return t===n.id&&e.points.length<3},j=function(e){e.forEach((function(e){(0,a.Mn)(e)&&b(e,null,null)}))},_=function(e,t){var n="start"===t?"startBinding":"endBinding",o=e[n];return null==o?null:((0,c.DR)(e,(0,r.Z)({},n,null)),o.elementId)},C=function(e,t){return(0,i.QG)(t.getNonDeletedElements(),(function(t){return(0,a.f0)(t,!1)&&(0,l.uu)(t,e)}))},I=function(e,t,n){var r="start"===n?-1:1,o=-1===r?0:e.points.length-1,i=o-r,a=u._.getPointAtIndexGlobalCoordinates(e,o),c=u._.getPointAtIndexGlobalCoordinates(e,i);return{focus:(0,l.T_)(t,c,a),gap:Math.max(1,(0,l.oT)(t,a))}},T=function(e,t){var n,r=(null!==(n=e.boundElements)&&void 0!==n?n:[]).filter((function(e){return"arrow"===e.type}));if(0!==r.length){var o=null!=t?t:{},i=o.newSize,l=o.simultaneouslyUpdated,u=M(l);v(s.Z.getScene(e),r.map((function(e){return e.id}))).forEach((function(t){if((0,a.bt)(t)){var n=e;if(P(t,n)){var r=A(n,t.startBinding,i),o=A(n,t.endBinding,i);if(u.has(t.id))(0,c.DR)(t,{startBinding:r,endBinding:o});else D(t,"start",r,e),D(t,"end",o,e),(0,p.WJ)(t)&&(0,p.RB)(t,!1)}}}))}},P=function(e,t){var n,r;return(null===(n=e.startBinding)||void 0===n?void 0:n.elementId)===t.id||(null===(r=e.endBinding)||void 0===r?void 0:r.elementId)===t.id},M=function(e){return new Set((e||[]).map((function(e){return e.id})))},D=function(e,t,n,o){if(!(null==n||n.elementId!==o.id&&e.points.length>2)){var i=s.Z.getScene(e).getElement(n.elementId);if(null!=i){var a,c="start"===t?-1:1,d=-1===c?0:e.points.length-1,f=d-c,p=u._.getPointAtIndexGlobalCoordinates(e,f),h=(0,l.j_)(i,n.focus,p);if(0===n.gap)a=h;else{var m=(0,l.MZ)(i,p,h,n.gap);a=0===m.length?h:m[0]}u._.movePoints(e,[{index:d,point:u._.pointFromAbsoluteCoords(e,a)}],(0,r.Z)({},"start"===t?"startBinding":"endBinding",n))}}},A=function(e,t,n){if(null==t||null==n)return t;var r=t.gap,o=t.focus,i=t.elementId,a=n.width,c=n.height,s=e.width,u=e.height;return{elementId:i,gap:Math.max(1,Math.min((0,l.fb)(e,a,c),r*(a<c?a/s:c/u))),focus:o}},L=function(e){var t=new Set(e.map((function(e){return e.id})));return e.flatMap((function(e){return(0,a.Mn)(e,!1)?Z(e).filter((function(e){return!t.has(e.id)})):(0,a.f0)(e,!1)?N(e).filter((function(e){return!t.has(e[0].id)})):[]}))},Z=function(e){return[R(e,"start"),R(e,"end")].filter((function(e){return null!=e}))},R=function(e,t){return C(z(e,t),s.Z.getScene(e))},z=function(e,t){var n="start"===t?0:-1;return(0,d.AK)(u._.getPointAtIndexGlobalCoordinates(e,n))},N=function(e){return s.Z.getScene(e).getNonDeletedElements().map((function(t){if(!(0,a.Mn)(t,!1))return null;var n=B(t,"start",e),r=B(t,"end",e);return n||r?[t,n&&r?"both":n?"start":"end",e]:null})).filter((function(e){return null!=e}))},B=function(e,t,n){return null==e["start"===t?"startBinding":"endBinding"]&&!S(e,n,t)&&(0,l.uu)(n,z(e,t))},H=function(e,t,n,r){var o=new Set,i=new Set,l="duplicatesServeAsOld"===r;t.forEach((function(e){var t=e.boundElements;if(null!=t&&t.length>0&&(t.forEach((function(e){l&&!n.has(e.id)&&o.add(e.id)})),i.add(n.get(e.id))),(0,a.Mn)(e)){if(null!=e.startBinding){var r=e.startBinding.elementId;l&&!n.has(r)&&i.add(r)}if(null!=e.endBinding){var c=e.endBinding.elementId;l&&!n.has(c)&&i.add(c)}null==e.startBinding&&null==e.endBinding||o.add(n.get(e.id))}})),e.filter((function(e){var t=e.id;return o.has(t)})).forEach((function(e){var t=e.startBinding,r=e.endBinding;(0,c.DR)(e,{startBinding:F(t,n),endBinding:F(r,n)})})),e.filter((function(e){var t=e.id;return i.has(t)})).forEach((function(e){var t=e.boundElements;null!=t&&t.length>0&&(0,c.DR)(e,{boundElements:t.map((function(e){return n.has(e.id)?{id:n.get(e.id),type:e.type}:e}))})}))},F=function(e,t){var n;if(null==e)return null;var r=e.elementId;return{focus:e.focus,gap:e.gap,elementId:null!==(n=t.get(r))&&void 0!==n?n:r}},W=function(e,t){var n=new Set(t.map((function(e){return e.id}))),r=new Set;t.forEach((function(e){var t;(0,a.f0)(e)?null===(t=e.boundElements)||void 0===t||t.forEach((function(e){n.has(e.id)||r.add(e.id)})):(0,a.Mn)(e)&&(e.startBinding&&r.add(e.startBinding.elementId),e.endBinding&&r.add(e.endBinding.elementId))})),e.filter((function(e){var t=e.id;return r.has(t)})).forEach((function(e){(0,a.f0)(e)?(0,c.DR)(e,{boundElements:K(e.boundElements,n)}):(0,a.Mn)(e)&&(0,c.DR)(e,{startBinding:U(e.startBinding,n),endBinding:U(e.endBinding,n)})}))},U=function(e,t){return null==e||t.has(e.elementId)?null:e},K=function(e,t){return e?e.filter((function(e){return!t.has(e.id)})):null}},8925:function(e,t,n){"use strict";n.d(t,{CM:function(){return w},GJ:function(){return b},IX:function(){return S},KP:function(){return T},M$:function(){return y},Pi:function(){return I},UC:function(){return x},Ut:function(){return M},Y5:function(){return _},os:function(){return D},qf:function(){return v},v2:function(){return A},wC:function(){return P}});var r=n(1930),o=n(2577),i=n(8821),a=n(5169),l=n(6552),c=n(8234),s=n(3063),u=n(1974),d=n(5001),f=n(5710),p=n(6938);function h(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return m(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return m(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var g=function(){function e(){(0,i.Z)(this,e)}return(0,a.Z)(e,null,[{key:"getBounds",value:function(t){var n=e.boundsCache.get(t);if(null!=n&&n.version&&n.version===t.version)return n.bounds;var r=e.calculateBounds(t);return e.boundsCache.set(t,{version:t.version,bounds:r}),r}},{key:"calculateBounds",value:function(e){var t,n=v(e),r=(0,o.Z)(n,6),i=r[0],a=r[1],c=r[2],s=r[3],d=r[4],f=r[5];if((0,u.F9)(e)){var p=O(e.points.map((function(t){var n=(0,o.Z)(t,2),r=n[0],i=n[1];return(0,l.U1)(r,i,d-e.x,f-e.y,e.angle)}))),h=(0,o.Z)(p,4),m=h[0],g=h[1],b=h[2],y=h[3];return[m+e.x,g+e.y,b+e.x,y+e.y]}if((0,u.bt)(e))t=C(e,d,f);else if("diamond"===e.type){var x=(0,l.U1)(d,a,d,f,e.angle),w=(0,o.Z)(x,2),k=w[0],E=w[1],S=(0,l.U1)(d,s,d,f,e.angle),j=(0,o.Z)(S,2),_=j[0],I=j[1],T=(0,l.U1)(i,f,d,f,e.angle),P=(0,o.Z)(T,2),M=P[0],D=P[1],A=(0,l.U1)(c,f,d,f,e.angle),L=(0,o.Z)(A,2),Z=L[0],R=L[1];t=[Math.min(k,_,M,Z),Math.min(E,I,D,R),Math.max(k,_,M,Z),Math.max(E,I,D,R)]}else if("ellipse"===e.type){var z=(c-i)/2,N=(s-a)/2,B=Math.cos(e.angle),H=Math.sin(e.angle),F=Math.hypot(z*B,N*H),W=Math.hypot(N*B,z*H);t=[d-F,f-W,d+F,f+W]}else{var U=(0,l.U1)(i,a,d,f,e.angle),K=(0,o.Z)(U,2),Y=K[0],G=K[1],V=(0,l.U1)(i,s,d,f,e.angle),X=(0,o.Z)(V,2),q=X[0],$=X[1],J=(0,l.U1)(c,s,d,f,e.angle),Q=(0,o.Z)(J,2),ee=Q[0],te=Q[1],ne=(0,l.U1)(c,a,d,f,e.angle),re=(0,o.Z)(ne,2),oe=re[0],ie=re[1];t=[Math.min(Y,q,ee,oe),Math.min(G,$,te,ie),Math.max(Y,q,ee,oe),Math.max(G,$,te,ie)]}return t}}]),e}();g.boundsCache=new WeakMap;var v=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if((0,u.F9)(e))return j(e);if((0,u.bt)(e))return p._.getElementAbsoluteCoords(e,t);if((0,u.iB)(e)){var n=(0,f.tl)(e);if((0,u.Yv)(n)){var r=p._.getBoundTextElementPosition(n,e);return[r.x,r.y,r.x+e.width,r.y+e.height,r.x+e.width/2,r.y+e.height/2]}}return[e.x,e.y,e.x+e.width,e.y+e.height,e.x+e.width/2,e.y+e.height/2]},b=function(e){var t=v(e),n=(0,o.Z)(t,6),r=n[0],i=n[1],a=n[2],c=n[3],s=n[4],d=n[5],f=[s,d];if((0,u.bt)(e)||(0,u.F9)(e)){for(var p=[],h=0;h<e.points.length-1;)p.push([(0,l.xj)([e.points[h][0]+e.x,e.points[h][1]+e.y],f,e.angle),(0,l.xj)([e.points[h+1][0]+e.x,e.points[h+1][1]+e.y],f,e.angle)]),h++;return p}var m=[[r,i],[a,i],[r,c],[a,c],[s,i],[s,c],[r,d],[a,d]].map((function(t){return(0,l.xj)(t,f,e.angle)})),g=(0,o.Z)(m,8),b=g[0],y=g[1],x=g[2],w=g[3],k=g[4],E=g[5],S=g[6],O=g[7];return"diamond"===e.type?[[k,S],[k,O],[E,S],[E,O]]:"ellipse"===e.type?[[k,S],[k,O],[E,S],[E,O],[k,S],[k,O],[E,S],[E,O]]:[[b,y],[x,w],[b,x],[y,w],[b,O],[x,O],[y,S],[w,S]]},y=function(e){return[e.x,e.y,e.x+e.width,e.y+e.height,e.x+e.width/2,e.y+e.height/2]},x=function(e){var t=Math.floor(e.width/2)+1,n=e.width,r=Math.floor(e.height/2)+1;return[t,0,n,r,t,e.height,0,r]},w=function(e){var t,n=h(e.sets);try{for(n.s();!(t=n.n()).done;){var r=t.value;if("path"===r.type)return r.ops}}catch(e){n.e(e)}finally{n.f()}return e.sets[0].ops},k=function(e,t,n,r,o){var i=1-e;return Math.pow(i,3)*t+3*Math.pow(i,2)*e*n+3*i*Math.pow(e,2)*r+Math.pow(e,3)*o},E=function(e,t,n,r){var o=t-e,i=n-t,a=3*o-6*i+3*(r-n),l=6*i-6*o,c=3*o,s=l*l-4*a*c;if(!(s>=0))return!1;var u=null,d=null,f=1/0,p=1/0;return 0===a?f=p=-c/l:(f=(-l+Math.sqrt(s))/(2*a),p=(-l-Math.sqrt(s))/(2*a)),f>=0&&f<=1&&(u=k(f,e,t,n,r)),p>=0&&p<=1&&(d=k(p,e,t,n,r)),[u,d]},S=function(e,t){var n=[0,0],i=e.reduce((function(e,i){var a=i.op,l=i.data;if("move"===a)n=l;else if("bcurveTo"===a){var c=[l[0],l[1]],s=[l[2],l[3]],u=[l[4],l[5]],d=t?t.apply(void 0,c):c,f=t?t.apply(void 0,s):s,p=t?t.apply(void 0,u):u,h=t?t.apply(void 0,(0,r.Z)(n)):n;n=u;var m=function(e,t,n,o){var i=E(e[0],t[0],n[0],o[0]),a=E(e[1],t[1],n[1],o[1]),l=Math.min(e[0],o[0]),c=Math.max(e[0],o[0]);if(i){var s=i.filter((function(e){return null!==e}));l=Math.min.apply(Math,[l].concat((0,r.Z)(s))),c=Math.max.apply(Math,[c].concat((0,r.Z)(s)))}var u=Math.min(e[1],o[1]),d=Math.max(e[1],o[1]);if(a){var f=a.filter((function(e){return null!==e}));u=Math.min.apply(Math,[u].concat((0,r.Z)(f))),d=Math.max.apply(Math,[d].concat((0,r.Z)(f)))}return[l,u,c,d]}(h,d,f,p),g=(0,o.Z)(m,4),v=g[0],b=g[1],y=g[2],x=g[3];e.minX=Math.min(e.minX,v),e.minY=Math.min(e.minY,b),e.maxX=Math.max(e.maxX,y),e.maxY=Math.max(e.maxY,x)}return e}),{minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0});return[i.minX,i.minY,i.maxX,i.maxY]},O=function(e){var t,n=1/0,r=1/0,i=-1/0,a=-1/0,l=h(e);try{for(l.s();!(t=l.n()).done;){var c=(0,o.Z)(t.value,2),s=c[0],u=c[1];n=Math.min(n,s),r=Math.min(r,u),i=Math.max(i,s),a=Math.max(a,u)}}catch(e){l.e(e)}finally{l.f()}return[n,r,i,a]},j=function(e){var t=O(e.points),n=(0,o.Z)(t,4),r=n[0],i=n[1],a=n[2],l=n[3],c=r+e.x,s=i+e.y,u=a+e.x,d=l+e.y;return[c,s,u,d,(c+u)/2,(s+d)/2]},_=function(e,t,n,r){var i=w(t[0]);if(i.length<1)return null;var a="start"===n?1:i.length-1,c=i[a].data,s=[c[4],c[5]],u=[c[2],c[3]],d=[c[0],c[1]],f=i[a-1],p=[0,0];"move"===f.op?p=f.data:"bcurveTo"===f.op&&(p=[f.data[4],f.data[5]]);var h=function(e,t){return Math.pow(1-e,3)*s[t]+3*e*Math.pow(1-e,2)*u[t]+3*Math.pow(e,2)*(1-e)*d[t]+p[t]*Math.pow(e,3)},m="start"===n?p:s,g=(0,o.Z)(m,2),v=g[0],b=g[1],y=[h(.3,0),h(.3,1)],x=y[0],k=y[1],E=Math.hypot(v-x,b-k),S=(v-x)/E,O=(b-k)/E,j={arrow:30,bar:15,dot:15,triangle:15}[r],_=0;if("arrow"===r){var C=(0,o.Z)(e.points[e.points.length-1],2),I=C[0],T=C[1],P=e.points.length>1?e.points[e.points.length-2]:[0,0],M=(0,o.Z)(P,2),D=M[0],A=M[1];_=Math.hypot(I-D,T-A)}else for(var L=0;L<e.points.length;L++){var Z=e.points[L-1]||[0,0],R=(0,o.Z)(Z,2),z=R[0],N=R[1],B=(0,o.Z)(e.points[L],2),H=B[0],F=B[1];_+=Math.hypot(H-z,F-N)}var W=Math.min(j,_/2),U=v-S*W,K=b-O*W;if("dot"===r)return[v,b,Math.hypot(K-b,U-v)+e.strokeWidth];var Y={arrow:20,bar:90,triangle:25}[r],G=(0,l.U1)(U,K,v,b,-Y*Math.PI/180),V=(0,o.Z)(G,2),X=V[0],q=V[1],$=(0,l.U1)(U,K,v,b,Y*Math.PI/180),J=(0,o.Z)($,2);return[v,b,X,q,J[0],J[1]]},C=function(e,t,n){var r;if(e.points.length<2){var i=(0,o.Z)(e.points[0],2),a=i[0],u=i[1],d=(0,l.U1)(e.x+a,e.y+u,t,n,e.angle),h=(0,o.Z)(d,2),m=h[0],g=h[1],v=[m,g,m,g],b=(0,f.WJ)(e);if(b){var y=p._.getMinMaxXYWithBoundText(e,[m,g,m,g],b);v=[y[0],y[1],y[2],y[3]]}return v}var x=null===(r=(0,s.R2)(e))||void 0===r?void 0:r[0],k=null!=x?x:function(e){var t=c.Z.generator(),n=(0,s.i)(e);return t[e.roundness?"curve":n.fill?"polygon":"linearPath"](e.points,n)}(e),E=w(k),O=S(E,(function(r,o){return(0,l.U1)(e.x+r,e.y+o,t,n,e.angle)})),j=[O[0],O[1],O[2],O[3]],_=(0,f.WJ)(e);if(_){var C=p._.getMinMaxXYWithBoundText(e,j,_);j=[C[0],C[1],C[2],C[3]]}return j},I=function(e){return g.getBounds(e)},T=function(e){if(!e.length)return[0,0,0,0];var t=1/0,n=-1/0,r=1/0,i=-1/0;return e.forEach((function(e){var a=I(e),l=(0,o.Z)(a,4),c=l[0],s=l[1],u=l[2],d=l[3];t=Math.min(t,c),r=Math.min(r,s),n=Math.max(n,u),i=Math.max(i,d)})),[t,r,n,i]},P=function(e,t,n,r){if(!(0,u.bt)(e)&&!(0,u.F9)(e))return[e.x,e.y,e.x+t,e.y+n];var i,a=(0,d.z)(0,t,(0,d.z)(1,n,e.points,r),r);if((0,u.F9)(e))i=O(a);else{var l=c.Z.generator(),f=e.roundness?l.curve(a,(0,s.i)(e)):l.linearPath(a,(0,s.i)(e)),p=w(f);i=S(p)}var h=i,m=(0,o.Z)(h,4),g=m[0],v=m[1],b=m[2],y=m[3];return[g+e.x,v+e.y,b+e.x,y+e.y]},M=function(e,t){var n=c.Z.generator(),r=null==e.roundness?n.linearPath(t,(0,s.i)(e)):n.curve(t,(0,s.i)(e)),i=w(r),a=S(i),l=(0,o.Z)(a,4),u=l[0],d=l[1],f=l[2],p=l[3];return[u+e.x,d+e.y,f+e.x,p+e.y]},D=function(e,t){if(!e.length)return[0,0,0,0];var n=1/0,r=e[0];return e.forEach((function(e){var i=I(e),a=(0,o.Z)(i,4),c=a[0],s=a[1],u=a[2],d=a[3],f=(0,l.LW)((c+u)/2,(s+d)/2,t.x,t.y);f<n&&(n=f,r=e)})),I(r)},A=function(e){var t=T(e),n=(0,o.Z)(t,4),r=n[0],i=n[1],a=n[2],l=n[3];return{minX:r,minY:i,maxX:a,maxY:l,width:a-r,height:l-i,midX:(r+a)/2,midY:(i+l)/2}}},2325:function(e,t,n){"use strict";n.d(t,{uu:function(){return K},T_:function(){return ue},j_:function(){return de},oT:function(){return V},wX:function(){return B},MZ:function(){return fe},wB:function(){return H},Qu:function(){return F},pX:function(){return U},fb:function(){return Y}});var r=n(2577),o=function(e,t){return[0,0,0,0,t,e,1,0]},i=function(e,t){return[0,0,0,0,t,e,0,0]},a=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=[0,0,0,0,0,0,0,0];if(t<0||t>7)throw new Error("Expected `index` between 0 and 7, got `".concat(t,"`"));return 0!==e&&(n[t]=e),n},l=function(e){return[e[0],e[1],e[2],e[3],-e[4],-e[5],-e[6],-e[7]]},c=function(e,t){return g(t)?[e[0]-t,e[1],e[2],e[3],e[4],e[5],e[6],e[7]]:[e[0]-t[0],e[1]-t[1],e[2]-t[2],e[3]-t[3],e[4]-t[4],e[5]-t[5],e[6]-t[6],e[7]-t[7]]},s=function(e,t){return g(t)?[e[0]*t,e[1]*t,e[2]*t,e[3]*t,e[4]*t,e[5]*t,e[6]*t,e[7]*t]:[u(e,t),t[1]*e[0]+t[0]*e[1]-t[4]*e[2]+t[5]*e[3]+t[2]*e[4]-t[3]*e[5]-t[7]*e[6]-t[6]*e[7],t[2]*e[0]+t[0]*e[2]-t[6]*e[3]+t[3]*e[6],t[3]*e[0]+t[6]*e[2]+t[0]*e[3]-t[2]*e[6],t[4]*e[0]+t[2]*e[1]-t[1]*e[2]+t[7]*e[3]+t[0]*e[4]+t[6]*e[5]-t[5]*e[6]+t[3]*e[7],t[5]*e[0]-t[3]*e[1]+t[7]*e[2]+t[1]*e[3]-t[6]*e[4]+t[0]*e[5]+t[4]*e[6]+t[2]*e[7],t[6]*e[0]+t[3]*e[2]-t[2]*e[3]+t[0]*e[6],t[7]*e[0]+t[6]*e[1]+t[5]*e[2]+t[4]*e[3]+t[3]*e[4]+t[2]*e[5]+t[1]*e[6]+t[0]*e[7]]},u=function(e,t){return t[0]*e[0]+t[2]*e[2]+t[3]*e[3]-t[6]*e[6]},d=function(e,t){return[f(e,t),e[1]*t[7]+e[4]*t[5]-e[5]*t[4]+e[7]*t[1],e[2]*t[7]-e[4]*t[6]+e[6]*t[4]+e[7]*t[2],e[3]*t[7]+e[5]*t[6]-e[6]*t[5]+e[7]*t[3],e[4]*t[7]+e[7]*t[4],e[5]*t[7]+e[7]*t[5],e[6]*t[7]+e[7]*t[6],e[7]*t[7]]},f=function(e,t){return e[0]*t[7]+e[1]*t[6]+e[2]*t[5]+e[3]*t[4]+e[4]*t[3]+e[5]*t[2]+e[6]*t[1]+e[7]*t[0]},p=function(e){return Math.sqrt(Math.abs(e[0]*e[0]-e[2]*e[2]-e[3]*e[3]+e[6]*e[6]))},h=function(e){var t=p(e);if(0===t||1===t)return e;var n=e[6]<0?-1:1;return s(e,n/t)},m=function(e){var t=function(e){return Math.sqrt(Math.abs(e[7]*e[7]-e[5]*e[5]-e[4]*e[4]+e[1]*e[1]))}(e);return 0===t||1===t?e:s(e,1/t)},g=function(e){return"number"==typeof e},v=(a(1,1),a(1,2),a(1,3),a(1,4),a(1,5),a(1,6),a(1,7),function(e,t,n){return h([0,n,e,t,0,0,0,0])}),b=function(e,t){return h(d(t,e))},y=function(e,t){return n=e,[(r=t)[0]*n[0]+r[2]*n[2]+r[3]*n[3]-r[6]*n[6],r[1]*n[0]+r[0]*n[1]-r[4]*n[2]+r[5]*n[3]+r[2]*n[4]-r[3]*n[5]-r[7]*n[6]-r[6]*n[7],r[2]*n[0]+r[0]*n[2]-r[6]*n[3]+r[3]*n[6],r[3]*n[0]+r[6]*n[2]+r[0]*n[3]-r[2]*n[6],r[4]*n[0]+r[7]*n[3]+r[0]*n[4]+r[3]*n[7],r[5]*n[0]+r[7]*n[2]+r[0]*n[5]+r[2]*n[7],r[6]*n[0]+r[0]*n[6],r[7]*n[0]+r[0]*n[7]];var n,r},x=function(e){var t=(0,r.Z)(e,2),n=t[0];return[0,0,0,0,t[1],n,1,0]},w=function(e){return[e[5],e[4]]},k=function(e){return[0,0,0,0,Math.abs(e[4]),Math.abs(e[5]),1,0]},E=function(e,t){return h((n=e,[(r=t)[0]*n[0],r[1]*n[0]+r[0]*n[1],r[2]*n[0]+r[0]*n[2],r[3]*n[0]+r[0]*n[3],r[4]*n[0]+r[2]*n[1]-r[1]*n[2]+r[0]*n[4],r[5]*n[0]-r[3]*n[1]+r[1]*n[3]+r[0]*n[5],r[6]*n[0]+r[3]*n[2]-r[2]*n[3]+r[0]*n[6],r[7]*n[0]+r[6]*n[1]+r[5]*n[2]+r[4]*n[3]+r[3]*n[4]+r[2]*n[5]+r[1]*n[6]]));var n,r},S=function(e,t){return p(d(e,t))},O=function(e,t){return f(e,t)},j=function(e){return[0,0,0,0,e[4],e[5],0,0]},_=function(e,t){return n=s(e,Math.sin(t/2)),r=Math.cos(t/2),g(r)?[n[0]+r,n[1],n[2],n[3],n[4],n[5],n[6],n[7]]:[n[0]+r[0],n[1]+r[1],n[2]+r[2],n[3]+r[3],n[4]+r[4],n[5]+r[5],n[6]+r[6],n[7]+r[7]];var n,r},C=function(e,t){return h(s(s(e,t),l(e)))},I=n(6552),T=n(1493),P=n(8925),M=n(3063),D=n(1974),A=n(1047),L=n(6340),Z=n(267),R=n(5710);function z(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return N(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return N(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function N(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var B=function e(t,n,r,o,i){var a=10/n.zoom.value,l=[o,i];if(W(n,t)&&(0,Z.oY)([t],n))return U(t,l,a,r);var c=(0,R.WJ)(t);if(c&&e(c,n,r,o,i))return!0;return F(t,n,r,l)},H=function(e,t,n,r,o){var i=10/t.zoom.value,a=(0,R.WJ)(e);return(!a||!B(a,t,n,r,o))&&(!F(e,t,n,[r,o])&&U(e,[r,o],i,n))},F=function(e,t,n,r){var o=10/t.zoom.value,i=(0,A.iB)(e)?X:function(e){if("arrow"===e.type)return!1;if("freedraw"===e.type)return!0;var t=!(0,L.Qm)(e.backgroundColor)||(0,D.Xo)(e);return"line"===e.type?t&&(0,I.g6)(e.points):t||(0,D.pC)(e)}(e)?q:$;return G({element:e,point:r,threshold:o,check:i,frameNameBoundsCache:n})},W=function(e,t){return e.selectedElementIds[t.id]},U=function(e,t,n,o){var i=(0,r.Z)(t,2),a=i[0],l=i[1];if("frame"===e.type)return G({element:e,point:[a,l],threshold:n,check:q,frameNameBoundsCache:o});var c=(0,P.qf)(e),s=(0,r.Z)(c,4),u=s[0],d=s[1],f=s[2],p=s[3],h=(u+f)/2,m=(d+p)/2,g=(0,I.U1)(a,l,h,m,-e.angle),v=(0,r.Z)(g,2),b=v[0],y=v[1];return b>u-n&&b<f+n&&y>d-n&&y<p+n},K=function(e,t){var n=t.x,r=t.y,o=Y(e,e.width,e.height);return G({element:e,point:[n,r],threshold:o,check:J,frameNameBoundsCache:null})},Y=function(e,t,n){var r=("diamond"===e.type?1/Math.sqrt(2):1)*Math.min(t,n);return Math.max(16,Math.min(.25*r,32))},G=function(e){switch(e.element.type){case"rectangle":case"image":case"text":case"diamond":case"ellipse":var t=V(e.element,e.point);return e.check(t,e.threshold);case"freedraw":return!!e.check(Q(e.element,e.point),e.threshold)&&oe(e.element,e.point,e.threshold);case"arrow":case"line":return ie(e);case"selection":return console.warn("This should not happen, we need to investigate why it does."),!1;case"frame":var n;if(e.check(V(e.element,e.point),e.threshold))return!0;var r=null===(n=e.frameNameBoundsCache)||void 0===n?void 0:n.get(e.element);return!!r&&e.check(ee(r,e.point),e.threshold)}},V=function(e,t){switch(e.type){case"rectangle":case"image":case"text":case"frame":return Q(e,t);case"diamond":return te(e,t);case"ellipse":return ne(e,t)}},X=function(e,t){return e<0},q=function(e,t){return e<t},$=function(e,t){return Math.abs(e)<t},J=function(e,t){return 0<=e&&e<t},Q=function(e,t){var n=ae(e,t),o=(0,r.Z)(n,4),i=o[1],a=o[2],l=o[3];return Math.max(O(i,v(0,1,-l)),O(i,v(1,0,-a)))},ee=function(e,t){var n=le(t,e),o=(0,r.Z)(n,4),i=o[1],a=o[2],l=o[3];return Math.max(O(i,v(0,1,-l)),O(i,v(1,0,-a)))},te=function(e,t){var n=ae(e,t),o=(0,r.Z)(n,4),i=o[1],a=o[2],l=o[3],c=v(l,a,-l*a);return O(i,c)},ne=function(e,t){var n,o=re(e,t),i=(0,r.Z)(o,2),a=i[0],l=i[1];return n=l,-Math.sign(n[1])*O(a,l)},re=function(e,t){var n=ae(e,t),i=(0,r.Z)(n,4),a=i[1],l=i[2],c=i[3],s=w(a),u=(0,r.Z)(s,2),d=u[0],f=u[1],p=.707,h=.707,m=l,g=c;[0,1,2,3].forEach((function(e){var t=m*p,n=g*h,r=(m*m-g*g)*Math.pow(p,3)/m,o=(g*g-m*m)*Math.pow(h,3)/g,i=t-r,a=n-o,l=d-r,c=f-o,s=Math.hypot(a,i),u=Math.hypot(c,l);p=Math.min(1,Math.max(0,(l*s/u+r)/m)),h=Math.min(1,Math.max(0,(c*s/u+o)/g));var v=Math.hypot(h,p);p/=v,h/=v}));var v,x=o(m*p,g*h);return[a,y(b(a,v=x),v)]},oe=function(e,t,n){var o,i;if(0===e.angle)o=t[0]-e.x,i=t[1]-e.y;else{var a=(0,P.qf)(e),l=(0,r.Z)(a,4),c=l[0],s=l[1],u=l[2],d=l[3],f=(0,I.xj)(t,[c+(u-c)/2,s+(d-s)/2],-e.angle);o=f[0]-e.x,i=f[1]-e.y}var p,h=(0,r.Z)(e.points,2),m=h[0],g=h[1];if((0,I.LW)(m[0],m[1],o,i)<n||(0,I.LW)(g[0],g[1],o,i)<n)return!0;for(var v=0;v<e.points.length;v++){var b=[g[0]-m[0],g[1]-m[1]],y=Math.hypot(b[1],b[0]),x=[b[0]/y,b[1]/y],w=[o-m[0],i-m[1]],k=(w[0]*x[0]+w[1]*x[1])/Math.hypot(x[1],x[0]);p=[m[0]+x[0]*k,m[1]+x[1]*k];var E=(0,I.LW)(p[0],p[1],m[0],m[1]),S=(0,I.LW)(p[0],p[1],g[0],g[1]);if(p=S<E&&E>y?g:E<S&&S>y?m:p,Math.hypot(i-p[1],o-p[0])<n)return!0;m=g,g=e.points[v+1]}var O=(0,M.R2)(e);return!(!O||!O.sets.length)&&ke(O,o,i,n)},ie=function(e){var t=e.element,n=e.threshold;if(!(0,M.R2)(t))return!1;var o=ae(e.element,e.point),i=(0,r.Z)(o,4),a=i[0],l=i[1],c=i[2],s=i[3],u=v(0,1,-s),d=v(1,0,-c);if(!q(O(l,u),n)||!q(O(l,d),n))return!1;var f=w(a),p=(0,r.Z)(f,2),h=p[0],m=p[1],g=(0,M.R2)(t);if(!g)return!1;if(e.check===q&&g.some((function(e){return we(e,h,m,t.roundness?"round":"sharp")})))return!0;return g.some((function(e){return ke(e,h,m,n)}))},ae=function(e,t){var n=x(t),o=(0,P.qf)(e),a=(0,r.Z)(o,4),l=a[0],s=a[1],u=a[2],d=a[3],f=se(l,s,u,d),p=_(f,e.angle),h=C(p,n),m=c(h,j(f)),g=k(m),v=i(e.x,e.y);return[c(h,v),g,(u-l)/2,(d-s)/2]},le=function(e,t){var n=x(e),o=(0,P.M$)(t),a=(0,r.Z)(o,4),l=a[0],s=a[1],u=a[2],d=a[3],f=se(l,s,u,d),p=_(f,t.angle),h=C(p,n),m=c(h,j(f)),g=k(m),v=i(t.x,t.y);return[c(h,v),g,(u-l)/2,(d-s)/2]},ce=function(e){var t=(0,P.qf)(e),n=(0,r.Z)(t,4),o=n[0],i=n[1],a=n[2],c=n[3],u=se(o,i,a,c),d=_(u,e.angle),f=l(function(e){return[1,0,0,0,-.5*e[5],.5*e[4],0,0]}(j(u)));return s(f,d)},se=function(e,t,n,r){return o((e+n)/2,(t+r)/2)},ue=function(e,t,n){var r=ce(e),o=C(r,x(t)),i=C(r,x(n)),a=b(o,i),l=e.height/e.width,c=e.width/2,s=e.height/2,u=a[2],d=a[3],f=a[1],p=Math.abs(d),h=Math.abs(u);switch(e.type){case"rectangle":case"image":case"text":case"frame":return f/(c*(h+l*p));case"diamond":return p<h?f/(h*c):f/(p*s);case"ellipse":return f/(c*Math.sqrt(Math.pow(u,2)+Math.pow(l,2)*Math.pow(d,2)))}},de=function(e,t,n){if(0===t){var o=(0,P.qf)(e),i=(0,r.Z)(o,4),a=i[0],c=i[1],s=i[2],u=i[3],d=se(a,c,s,u);return w(d)}var f,p=ce(e),h=C(p,x(n)),m=l(p);switch(e.type){case"rectangle":case"image":case"text":case"diamond":case"frame":f=xe(e,t,h);break;case"ellipse":f=ye(e,t,h)}return w(C(m,f))},fe=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,o=ce(e),i=C(o,x(t)),a=C(o,x(n)),c=b(i,a),s=l(o),u=pe(e,c,i,r);return u.map((function(e){return w(C(s,e))}))},pe=function(e,t,n){var r,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;switch(e.type){case"rectangle":case"image":case"text":case"diamond":case"frame":var i=he(e);r=i.flatMap((function(e,n){var r=[e,i[(n+1)%4]];return me(t,ge(r,o))})).concat(i.flatMap((function(e){return be(e,o,t)})));break;case"ellipse":r=ve(e,o,t)}if(r.length<2)return[];var a=r.sort((function(e,t){return S(e,n)-S(t,n)}));return[a[0],a[a.length-1]]},he=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,n=t*e.width/2,r=t*e.height/2;switch(e.type){case"rectangle":case"image":case"text":case"frame":return[o(n,r),o(n,-r),o(-n,-r),o(-n,r)];case"diamond":return[o(0,r),o(n,0),o(0,-r),o(-n,0)]}},me=function(e,t){var n=(0,r.Z)(t,2),o=n[0],i=n[1];return O(o,e)*O(i,e)>=0?[]:[E(e,b(o,i))]},ge=function(e,t){var n=(0,r.Z)(e,2),o=n[0],i=n[1],a=function(e,t){var n=.5*t;return[1,0,0,0,n*e[4],n*e[5],0,0]}(function(e,t){return m([0,0,0,0,t[4]-e[4],t[5]-e[5],0,0])}(o,i),t);return[C(a,o),C(a,i)]},ve=function(e,t,n){var r=e.width/2+t,i=e.height/2+t,a=n[2],l=n[3],c=n[1],s=r*r*a*a+i*i*l*l,u=s-c*c;if(0===s||u<=0)return[];var d=Math.sqrt(u),f=-r*r*a*c,p=-i*i*l*c;return[o((f+r*i*l*d)/s,(p-r*i*a*d)/s),o((f-r*i*l*d)/s,(p+r*i*a*d)/s)]},be=function(e,t,n){if(0===t)return 0===O(n,e)?[e]:[];var i=n[2],a=n[3],l=n[1],c=w(e),s=(0,r.Z)(c,2),u=s[0],d=s[1],f=i*i+a*a,p=t*t*f-Math.pow(i*u+a*d+l,2);if(0===f||p<=0)return[];var h=Math.sqrt(p),m=u*a*a-d*i*a-i*l,g=d*i*i-u*i*a-a*l;return[o((m+a*h)/f,(g-i*h)/f),o((m-a*h)/f,(g+i*h)/f)]},ye=function(e,t,n){var i=Math.abs(t),a=e.width*i/2,l=e.height*i/2,c=Math.sign(t),s=w(n),u=(0,r.Z)(s,2),d=u[0],f=u[1],p=0===f?1e-4:f,h=Math.pow(d,2)*Math.pow(l,2)+Math.pow(p,2)*Math.pow(a,2),m=(-d*Math.pow(l,2)+c*p*Math.sqrt(Math.max(0,h-Math.pow(a,2)*Math.pow(l,2))))/h,g=(-m*d-1)/p;0===g&&(g=.01*(Object.is(g,-0)?-1:1));var v=-Math.pow(a,2)*m/(Math.pow(g,2)*Math.pow(l,2)+Math.pow(m,2)*Math.pow(a,2));return o(v,(-m*v-1)/g)},xe=function(e,t,n){var r=Math.abs(t),o=Math.sign(t),i=he(e,r),a=0,l=null;return i.forEach((function(e){var t=o*b(n,e)[1];t>a&&(a=t,l=e)})),l},we=function(e,t,n,r){var o,i=[],a=!1,l=z((0,P.CM)(e));try{for(l.s();!(o=l.n()).done;){var c=o.value;"move"===c.op?(a=!a)&&i.push([c.data[0],c.data[1]]):"bcurveTo"===c.op?a&&(i.push([c.data[0],c.data[1]]),i.push([c.data[2],c.data[3]]),i.push([c.data[4],c.data[5]])):"lineTo"===c.op&&a&&i.push([c.data[0],c.data[1]])}}catch(e){l.e(e)}finally{l.f()}if(i.length>=4){if("sharp"===r)return(0,I.c9)(i,t,n);var s=(0,T.s)(i,10,5);return(0,I.c9)(s,t,n)}return!1},ke=function(e,t,n,o){var i=(0,P.CM)(e),a=[0,0];return i.some((function(i,l){var c=i.op,s=i.data;if("move"===c)a=s;else{if("bcurveTo"===c){var u=[s[0],s[1]],d=[s[2],s[3]],f=[s[4],s[5]],p=a;a=f;var h=function(e,t,n,o,i,a){for(var l=(0,r.Z)(i,2),c=l[0],s=l[1],u=function(r,i){return Math.pow(1-r,3)*o[i]+3*r*Math.pow(1-r,2)*n[i]+3*Math.pow(r,2)*(1-r)*t[i]+e[i]*Math.pow(r,3)},d=0;d<=1;){var f=u(d,0),p=u(d,1);if(Math.sqrt(Math.pow(f-c,2)+Math.pow(p-s,2))<a)return!0;d+=.01}return!1}(p,u,d,f,[t,n],o);return h}if("lineTo"===c)return we(e,t,n,"sharp");"qcurveTo"===c&&console.warn("qcurveTo is not implemented yet")}return!1}))}},5637:function(e,t,n){"use strict";n.d(t,{PK:function(){return p},Xx:function(){return h},bp:function(){return g},oA:function(){return m}});var r=n(2577),o=n(7169),i=n(8950),a=n(2975),l=n.n(a),c=n(2335),s=n(5202),u=n(1974);function d(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function f(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?d(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):d(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var p=function(e){return new Promise((function(t,n){var r=new Image;r.onload=function(){t(r)},r.onerror=function(e){n(e)},r.src=e}))},h=function(){var e=(0,i.Z)(l().mark((function e(t){var n,r,o,a,s;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.fileIds,r=t.files,o=t.imageCache,a=new Map,s=new Map,e.next=5,Promise.all(n.reduce((function(e,t){var n=r[t];return n&&!a.has(t)?(a.set(t,!0),e.concat((0,i.Z)(l().mark((function e(){var r,i,a;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(e.prev=0,n.mimeType!==c.LO.binary){e.next=3;break}throw new Error("Only images can be added to ImageCache");case 3:return r=p(n.dataURL),i={image:r,mimeType:n.mimeType},o.set(t,i),e.next=8,r;case 8:a=e.sent,o.set(t,f(f({},i),{},{image:a})),e.next=15;break;case 12:e.prev=12,e.t0=e.catch(0),s.set(t,!0);case 15:case"end":return e.stop()}}),e,null,[[0,12]])})))())):e}),[]));case 5:return e.abrupt("return",{imageCache:o,updatedFiles:a,erroredFiles:s});case 6:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),m=function(e){return e.filter((function(e){return(0,u.wi)(e)}))},g=function(){var e=(0,i.Z)(l().mark((function e(t){var n,o,i,a,u,d,f;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=(new DOMParser).parseFromString(t,c.LO.svg),o=n.querySelector("svg"),!n.querySelector("parsererror")&&"svg"===(null==(l=o)?void 0:l.nodeName.toLowerCase())){e.next=7;break}throw new Error((0,s.t)("errors.invalidSVGString"));case 7:return o.hasAttribute("xmlns")||o.setAttribute("xmlns",c.hR),o.hasAttribute("width")&&o.hasAttribute("height")||(i=o.getAttribute("viewBox"),a=o.getAttribute("width")||"50",u=o.getAttribute("height")||"50",i&&(d=i.match(/\d+ +\d+ +(\d+) +(\d+)/))&&(f=(0,r.Z)(d,3),a=f[1],u=f[2]),o.setAttribute("width",a),o.setAttribute("height",u)),e.abrupt("return",o.outerHTML);case 10:case"end":return e.stop()}var l}),e)})));return function(t){return e.apply(this,arguments)}}()},1047:function(e,t,n){"use strict";n.d(t,{ox:function(){return p.ox},BQ:function(){return F},_M:function(){return W},EJ:function(){return T},o8:function(){return _},Sy:function(){return d.Sy},os:function(){return f.os},KP:function(){return f.KP},Un:function(){return k},$V:function(){return I},qf:function(){return f.qf},Pi:function(){return f.Pi},jt:function(){return y},o4:function(){return s},Lm:function(){return z},Xf:function(){return N},Qp:function(){return u},T:function(){return E.T},xx:function(){return E.xx},Uo:function(){return Z},n2:function(){return x},PC:function(){return p.PC},kK:function(){return p.kK},n_:function(){return R},wX:function(){return h.wX},r2:function(){return i.r2},He:function(){return i.He},wB:function(){return h.wB},QD:function(){return l},qP:function(){return B},iB:function(){return i.iB},Up:function(){return d.Up},vw:function(){return d.vw},y8:function(){return d.y8},VL:function(){return d.VL},oN:function(){return O.oN},JZ:function(){return d.JZ},RT:function(){return D},b_:function(){return P.b_},vY:function(){return E.vY},N_:function(){return d.N_}});var r=n(7169),o=n(1935),i=n(1974),a=n(2335),l=function(e){return(0,i.bt)(e)||(0,i.F9)(e)?e.points.length<2:0===e.width&&0===e.height},c=function(e,t,n){var r=Math.abs(t),o=Math.abs(n);if("line"===e||"arrow"===e||"freedraw"===e){var i=Math.round(Math.atan(o/r)/a.ay)*a.ay;0===i?n=0:i===Math.PI/2?t=0:n=r*Math.tan(i)*Math.sign(n)||n}else"selection"!==e&&(n=r*Math.sign(n));return{width:t,height:n}},s=function(e,t,n,r){var o=n-e,i=r-t,l=Math.round(Math.atan(i/o)/a.ay)*a.ay;if(0===l)i=0;else if(l===Math.PI/2)o=0;else{var c=Math.tan(l),s=t-c*e,u=-1/c,d=r-u*n;o=(-1*d- -1*s)/(-1*c- -1*u)-e,i=(s*u-d*c)/(-1*c- -1*u)-t}return{width:o,height:i}},u=function(e){var t={width:e.width,height:e.height,x:e.x,y:e.y};if(e.width<0){var n=Math.abs(e.width);t.width=n,t.x=e.x-n}if(e.height<0){var r=Math.abs(e.height);t.height=r,t.y=e.y-r}return t},d=n(2791),f=n(8925),p=n(267),h=n(2325),m=n(2577),g=n(2726),v=["rotation"],b=function(e,t,n){return t>=e[0]&&t<=e[0]+e[2]&&n>=e[1]&&n<=e[1]+e[3]},y=function(e,t,n,r,o,i){return e.reduce((function(e,a){if(e)return e;var l=function(e,t,n,r,o,i){if(!t.selectedElementIds[e.id])return!1;var a=(0,p.PC)(e,o,i),l=a.rotation,c=(0,g.Z)(a,v);if(l&&b(l,n,r))return"rotation";var s=Object.keys(c).filter((function(e){var t=c[e];return!!t&&b(t,n,r)}));return s.length>0&&s[0]}(a,t,n,r,o,i);return l?{element:a,transformHandleType:l}:null}),null)},x=function(e,t,n,r,o){var i=(0,m.Z)(e,4),a=i[0],l=i[1],c=i[2],s=i[3],u=(0,p.kK)([a,l,c,s,(a+c)/2,(l+s)/2],0,r,o,p.ox);return Object.keys(u).find((function(e){var r=u[e];return r&&b(r,t,n)}))||!1},w=["ns","nesw","ew","nwse"],k=function(e){var t=e.element,n=e.transformHandleType,r=t&&Math.sign(t.height)*Math.sign(t.width)==-1,o=null;switch(n){case"n":case"s":o="ns";break;case"w":case"e":o="ew";break;case"nw":case"se":o=r?"nesw":"nwse";break;case"ne":case"sw":o=r?"nwse":"nesw";break;case"rotation":return"grab"}return o&&t&&(o=function(e,t){var n=w.indexOf(e);if(n>=0){var r=Math.round(t/(Math.PI/4));e=w[(n+r)%w.length]}return e}(o,t.angle)),o?"".concat(o,"-resize"):""},E=n(8634),S=n(8290),O=n(5710),j=n(242),_=function(e,t,n,r){var o=arguments.length>4&&void 0!==arguments[4]&&arguments[4],a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,l=arguments.length>6&&void 0!==arguments[6]?arguments[6]:0,c=arguments.length>7?arguments[7]:void 0,s=arguments.length>8?arguments[8]:void 0,u=(0,f.KP)(t),d=(0,m.Z)(u,2),p=d[0],h=d[1],g={x:n-p,y:r-h},v=new Set(t),b=t.filter((function(e){return(0,i.He)(e)})).map((function(e){return e.id}));if(b.length>0){var y=s.getNonDeletedElements().filter((function(e){return null!==e.frameId})).filter((function(e){return b.includes(e.frameId)}));y.forEach((function(e){return v.add(e)}))}v.forEach((function(t){if(C(o,a,l,e,t,g),!t.groupIds.length||c.editingGroupId&&!(0,j.zq)(c,t)){var n=(0,O.WJ)(t);!n||n.frameId&&b.includes(n.frameId)||C(o,a,l,e,n,g)}(0,S.Ww)(t,{simultaneouslyUpdated:Array.from(v)})}))},C=function(e,t,n,r,i,a){var l,c;if(e){var s=e&&t<n,u=e&&t>n,d=r.originalElements.get(i.id);l=s&&d?d.x:i.x+a.x,c=u&&d?d.y:i.y+a.y}else l=i.x+a.x,c=i.y+a.y;(0,o.DR)(i,{x:l,y:c})},I=function(e,t,n){var r=(0,f.KP)(e),o=(0,m.Z)(r,2);return[t-o[0],n-o[1]]},T=function(e,t,n,r,i,a,l,s,u,d,f){if(u&&"selection"!==e.type)if(f)s=l/f;else{if(Math.abs(a-r)>Math.abs(i-n)){var p=c(t,s,i<n?-l:l);l=p.width,s=p.height}else{var h=c(t,l,a<r?-s:s);l=h.width,s=h.height}s<0&&(s=-s)}var m=i<n?n-l:n,g=a<r?r-s:r;d&&(m=n-(l+=l)/2,g=r-(s+=s)/2),0!==l&&0!==s&&(0,o.DR)(e,{x:m,y:g,width:l,height:s})},P=n(6906),M=n(75),D=function(e,t){return Boolean(!e.viewModeEnabled&&"custom"!==e.activeTool.type&&(e.editingElement||"selection"!==e.activeTool.type&&"eraser"!==e.activeTool.type&&"hand"!==e.activeTool.type)||(0,M.eD)(t,e).length)};function A(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function L(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?A(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):A(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Z=function(e){return e.reduce((function(e,t){return e+t.version}),0)},R=function(e){return e.filter((function(e){return!e.isDeleted&&!l(e)}))},z=function(e){return e.filter((function(e){return!e.isDeleted}))},N=function(e){return e.filter((function(e){return!e.isDeleted}))},B=function(e){return!e.isDeleted},H=function(e){return z(e).map((function(e){return(0,i.dt)(e.type)?L(L({},e),{},{lastCommittedPoint:null}):e}))},F=function(e){return H(e)},W=function(e){return H(e)}},6938:function(e,t,n){"use strict";n.d(t,{_:function(){return O}});var r=n(1930),o=n(7169),i=n(2577),a=n(8821),l=n(5169),c=n(6552),s=n(1047),u=n(8925),d=n(1935),f=n(1564),p=n(8290),h=n(6340),m=n(1974),g=n(6066),v=n(5710),b=n(3063),y=n(2335);function x(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return w(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return w(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function w(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function k(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function E(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?k(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):k(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var S={version:null,points:[],zoom:null},O=function(){function e(t,n){(0,a.Z)(this,e),this.elementId=t.id,f.Z.mapElementToScene(this.elementId,n),e.normalizePoints(t),this.selectedPointsIndices=null,this.lastUncommittedPoint=null,this.isDragging=!1,this.pointerOffset={x:0,y:0},this.startBindingElement="keep",this.endBindingElement="keep",this.pointerDownState={prevSelectedPointsIndices:null,lastClickedPoint:-1,origin:null,segmentMidpoint:{value:null,index:null,added:!1}},this.hoverPointIndex=-1,this.segmentMidPointHoveredCoords=null}return(0,l.Z)(e,null,[{key:"getElement",value:function(e){var t,n=null===(t=f.Z.getScene(e))||void 0===t?void 0:t.getNonDeletedElement(e);return n||null}},{key:"handleBoxSelection",value:function(t,n,r){var o;if(!n.editingLinearElement||"selection"!==(null===(o=n.draggingElement)||void 0===o?void 0:o.type))return!1;var a=n.editingLinearElement,l=a.selectedPointsIndices,c=a.elementId,u=e.getElement(c);if(!u)return!1;var d=(0,s.qf)(n.draggingElement),f=(0,i.Z)(d,4),p=f[0],h=f[1],m=f[2],g=f[3],v=e.getPointsGlobalCoordinates(u).reduce((function(e,n,r){return(n[0]>=p&&n[0]<=m&&n[1]>=h&&n[1]<=g||t.shiftKey&&null!=l&&l.includes(r))&&e.push(r),e}),[]);r({editingLinearElement:E(E({},a),{},{selectedPointsIndices:v.length?v:null})})}},{key:"handlePointDragging",value:function(t,n,r,o,a,l){if(!l)return!1;var c=l.selectedPointsIndices,s=l.elementId,u=e.getElement(s);if(!u)return!1;var d=u.points[l.pointerDownState.lastClickedPoint];if(c&&d){if((0,g.Ge)(t)&&1===c.length&&u.points.length>1){var f=c[0],p=u.points[0===f?1:f-1],b=e._getShiftLockedDelta(u,p,[r,o],n.gridSize),y=(0,i.Z)(b,2),x=y[0],w=y[1];e.movePoints(u,[{index:f,point:[x+p[0],w+p[1]],isDragging:f===l.pointerDownState.lastClickedPoint}])}else{var k=e.createPointAt(u,r-l.pointerOffset.x,o-l.pointerOffset.y,n.gridSize),E=k[0]-d[0],S=k[1]-d[1];e.movePoints(u,c.map((function(t){return{index:t,point:t===l.pointerDownState.lastClickedPoint?e.createPointAt(u,r-l.pointerOffset.x,o-l.pointerOffset.y,n.gridSize):[u.points[t][0]+E,u.points[t][1]+S],isDragging:t===l.pointerDownState.lastClickedPoint}}))),(0,v.WJ)(u)&&(0,v.RB)(u,!1)}if((0,m.Mn)(u,!1)){var O=[];0===c[0]&&O.push((0,h.AK)(e.getPointGlobalCoordinates(u,u.points[0])));var j=c[c.length-1];j===u.points.length-1&&O.push((0,h.AK)(e.getPointGlobalCoordinates(u,u.points[j]))),O.length&&a(u,O)}return!0}return!1}},{key:"handlePointerUp",value:function(t,n,r){var o,i=n.elementId,a=n.selectedPointsIndices,l=n.isDragging,s=n.pointerDownState,u=e.getElement(i);if(!u)return n;var d={};if(l&&a){var m,g=x(a);try{for(g.s();!(m=g.n()).done;){var v=m.value;if(0===v||v===u.points.length-1){(0,c.g6)(u.points,r.zoom.value)&&e.movePoints(u,[{index:v,point:0===v?u.points[u.points.length-1]:u.points[0]}]);var b=(0,p.N1)(r)?(0,p.Y9)((0,h.AK)(e.getPointAtIndexGlobalCoordinates(u,v)),f.Z.getScene(u)):null;d[0===v?"startBindingElement":"endBindingElement"]=b}}}catch(e){g.e(e)}finally{g.f()}}return E(E(E({},n),d),{},{selectedPointsIndices:l||t.shiftKey?!l&&t.shiftKey&&null!==(o=s.prevSelectedPointsIndices)&&void 0!==o&&o.includes(s.lastClickedPoint)?a&&a.filter((function(e){return e!==s.lastClickedPoint})):a:null!=a&&a.includes(s.lastClickedPoint)?[s.lastClickedPoint]:a,isDragging:!1,pointerOffset:{x:0,y:0}})}},{key:"isSegmentTooShort",value:function(t,n,r,o){var i=(0,c.LW)(n[0],n[1],r[0],r[1]);return t.points.length>2&&t.roundness&&(i=(0,c.eH)(t,r)),i*o.value<4*e.POINT_HANDLE_SIZE}},{key:"getSegmentMidPoint",value:function(t,n,r,o){var a=(0,c.H5)(n,r);if(t.points.length>2&&t.roundness){var l=(0,c.yB)(t,t.points[o]);if(l){var s=(0,c.lk)(t,t.points[o],.5),u=(0,c.N_)(l[0],l[1],l[2],l[3],s),d=(0,i.Z)(u,2),f=d[0],p=d[1];a=e.getPointGlobalCoordinates(t,[f,p])}}return a}},{key:"getSegmentMidPointIndex",value:function(t,n,r){var o=e.getElement(t.elementId);if(!o)return-1;for(var i=e.getEditorMidPoints(o,n),a=0;a<i.length;){if(e.arePointsEqual(r,i[a]))return a+1;a++}return-1}},{key:"handlePointerDown",value:function(t,n,o,a,l){var u,h={didAddPoint:!1,hitElement:null,linearElementEditor:null};if(!l)return h;var g=l.elementId,v=e.getElement(g);if(!v)return h;var b=e.getSegmentMidpointHitCoords(l,a,n),y=null;if(b&&(y=e.getSegmentMidPointIndex(l,n,b)),t.altKey&&n.editingLinearElement)return null==l.lastUncommittedPoint&&((0,d.DR)(v,{points:[].concat((0,r.Z)(v.points),[e.createPointAt(v,a.x,a.y,n.gridSize)])}),h.didAddPoint=!0),o.resumeRecording(),h.linearElementEditor=E(E({},l),{},{pointerDownState:{prevSelectedPointsIndices:l.selectedPointsIndices,lastClickedPoint:-1,origin:{x:a.x,y:a.y},segmentMidpoint:{value:b,index:y,added:!1}},selectedPointsIndices:[v.points.length-1],lastUncommittedPoint:null,endBindingElement:(0,p.Y9)(a,f.Z.getScene(v))}),h.didAddPoint=!0,h;var x=e.getPointIndexUnderCursor(v,n.zoom,a.x,a.y);if(x>=0||b)h.hitElement=v;else{var w=l.startBindingElement,k=l.endBindingElement;(0,p.N1)(n)&&(0,m.Mn)(v)&&(0,p.HG)(v,w,k)}var S=(0,s.qf)(v),O=(0,i.Z)(S,4),_=O[0],C=O[1],I=(_+O[2])/2,T=(C+O[3])/2,P=x>-1&&(0,c.U1)(v.x+v.points[x][0],v.y+v.points[x][1],I,T,v.angle),M=x>-1||t.shiftKey?t.shiftKey||null!==(u=l.selectedPointsIndices)&&void 0!==u&&u.includes(x)?j([].concat((0,r.Z)(l.selectedPointsIndices||[]),[x])):[x]:null;return h.linearElementEditor=E(E({},l),{},{pointerDownState:{prevSelectedPointsIndices:l.selectedPointsIndices,lastClickedPoint:x,origin:{x:a.x,y:a.y},segmentMidpoint:{value:b,index:y,added:!1}},selectedPointsIndices:M,pointerOffset:P?{x:a.x-P[0],y:a.y-P[1]}:{x:0,y:0}}),h}},{key:"arePointsEqual",value:function(e,t){return!e&&!t||!(!e||!t)&&(0,c.Jj)(e,t)}},{key:"handlePointerMove",value:function(t,n,r,o){if(!o.editingLinearElement)return null;var a=o.editingLinearElement,l=a.elementId,c=a.lastUncommittedPoint,s=e.getElement(l);if(!s)return o.editingLinearElement;var u,d=s.points,f=d[d.length-1];if(!t.altKey)return f===c&&e.deletePoints(s,[d.length-1]),E(E({},o.editingLinearElement),{},{lastUncommittedPoint:null});if((0,g.Ge)(t)&&d.length>=2){var p=d[d.length-2],h=e._getShiftLockedDelta(s,p,[n,r],o.gridSize),m=(0,i.Z)(h,2),v=m[0],b=m[1];u=[v+p[0],b+p[1]]}else u=e.createPointAt(s,n-o.editingLinearElement.pointerOffset.x,r-o.editingLinearElement.pointerOffset.y,o.gridSize);return f===c?e.movePoints(s,[{index:s.points.length-1,point:u}]):e.addPoints(s,o,[{point:u}]),E(E({},o.editingLinearElement),{},{lastUncommittedPoint:s.points[s.points.length-1]})}},{key:"getPointGlobalCoordinates",value:function(e,t){var n=(0,s.qf)(e),r=(0,i.Z)(n,4),o=r[0],a=r[1],l=(o+r[2])/2,u=(a+r[3])/2,d=e.x,f=e.y,p=(0,c.U1)(d+t[0],f+t[1],l,u,e.angle),h=(0,i.Z)(p,2);return[d=h[0],f=h[1]]}},{key:"getPointsGlobalCoordinates",value:function(e){var t=(0,s.qf)(e),n=(0,i.Z)(t,4),r=n[0],o=n[1],a=n[2],l=n[3],u=(r+a)/2,d=(o+l)/2;return e.points.map((function(t){var n=e.x,r=e.y,o=(0,c.U1)(n+t[0],r+t[1],u,d,e.angle),a=(0,i.Z)(o,2);return[n=a[0],r=a[1]]}))}},{key:"getPointAtIndexGlobalCoordinates",value:function(e,t){var n=t<0?e.points.length+t:t,r=(0,s.qf)(e),o=(0,i.Z)(r,4),a=o[0],l=o[1],u=(a+o[2])/2,d=(l+o[3])/2,f=e.points[n],p=e.x,h=e.y;return f?(0,c.U1)(p+f[0],h+f[1],u,d,e.angle):(0,c.U1)(p,h,u,d,e.angle)}},{key:"pointFromAbsoluteCoords",value:function(e,t){var n=(0,s.qf)(e),r=(0,i.Z)(n,4),o=r[0],a=r[1],l=(o+r[2])/2,u=(a+r[3])/2,d=(0,c.U1)(t[0],t[1],l,u,-e.angle),f=(0,i.Z)(d,2),p=f[0],h=f[1];return[p-e.x,h-e.y]}},{key:"getPointIndexUnderCursor",value:function(t,n,r,o){for(var i=e.getPointsGlobalCoordinates(t),a=i.length;--a>-1;){var l=i[a];if((0,c.LW)(r,o,l[0],l[1])*n.value<e.POINT_HANDLE_SIZE+1)return a}return-1}},{key:"createPointAt",value:function(e,t,n,r){var o=(0,c.wC)(t,n,r),a=(0,s.qf)(e),l=(0,i.Z)(a,4),u=l[0],d=l[1],f=(u+l[2])/2,p=(d+l[3])/2,h=(0,c.U1)(o[0],o[1],f,p,-e.angle),m=(0,i.Z)(h,2),g=m[0],v=m[1];return[g-e.x,v-e.y]}},{key:"getNormalizedPoints",value:function(e){var t=e.points,n=t[0][0],r=t[0][1];return{points:t.map((function(e,t){return[e[0]-n,e[1]-r]})),x:e.x+n,y:e.y+r}}},{key:"normalizePoints",value:function(t){(0,d.DR)(t,e.getNormalizedPoints(t))}},{key:"duplicateSelectedPoints",value:function(t){if(!t.editingLinearElement)return!1;var n=t.editingLinearElement,r=n.selectedPointsIndices,o=n.elementId,i=e.getElement(o);if(!i||null===r)return!1;var a=i.points,l=[],c=!1,s=-1,u=a.reduce((function(e,t,n){if(++s,e.push(t),r.includes(n)){var o=a[n+1];o||(c=!0),e.push(o?[(t[0]+o[0])/2,(t[1]+o[1])/2]:[t[0],t[1]]),l.push(s+1),++s}return e}),[]);if((0,d.DR)(i,{points:u}),c){var f=i.points[i.points.length-1];e.movePoints(i,[{index:i.points.length-1,point:[f[0]+30,f[1]+30]}])}return{appState:E(E({},t),{},{editingLinearElement:E(E({},t.editingLinearElement),{},{selectedPointsIndices:l})})}}},{key:"deletePoints",value:function(t,n){var r=0,o=0;if(n.includes(0)){var i=t.points.find((function(e,t){return!n.includes(t)}));i&&(r=i[0],o=i[1])}var a=t.points.reduce((function(e,t,i){return n.includes(i)||e.push(e.length?[t[0]-r,t[1]-o]:[0,0]),e}),[]);e._updatePoints(t,a,r,o)}},{key:"addPoints",value:function(t,n,o){var i=[].concat((0,r.Z)(t.points),(0,r.Z)(o.map((function(e){return e.point}))));e._updatePoints(t,i,0,0)}},{key:"movePoints",value:function(t,n,r){var o=t.points,i=0,a=0,l=n.find((function(e){return 0===e.index}));l&&(i=l.point[0]+o[l.index][0],a=l.point[1]+o[l.index][1]);var c=o.map((function(e,t){var r=n.find((function(e){return e.index===t}));if(r){if(l)return e;var c=r.point[0]-o[r.index][0],s=r.point[1]-o[r.index][1];return[e[0]+c,e[1]+s]}return i||a?[e[0]-i,e[1]-a]:e}));e._updatePoints(t,c,i,a,r)}},{key:"shouldAddMidpoint",value:function(t,n,r){if(!e.getElement(t.elementId))return!1;var o=t.pointerDownState.segmentMidpoint;if(o.added||null===o.value||null===o.index||null===t.pointerDownState.origin)return!1;var i=t.pointerDownState.origin,a=(0,c.LW)(i.x,i.y,n.x,n.y);return!(!r.editingLinearElement&&a<y.f/r.zoom.value)}},{key:"addMidpoint",value:function(t,n,o){var i=e.getElement(t.elementId);if(i){var a=t.pointerDownState.segmentMidpoint,l={pointerDownState:t.pointerDownState,selectedPointsIndices:t.selectedPointsIndices},c=e.createPointAt(i,n.x,n.y,o.gridSize),s=[].concat((0,r.Z)(i.points.slice(0,a.index)),[c],(0,r.Z)(i.points.slice(a.index)));return(0,d.DR)(i,{points:s}),l.pointerDownState=E(E({},t.pointerDownState),{},{segmentMidpoint:E(E({},t.pointerDownState.segmentMidpoint),{},{added:!0}),lastClickedPoint:a.index}),l.selectedPointsIndices=[a.index],l}}},{key:"_updatePoints",value:function(e,t,n,r,o){var i=(0,u.Ut)(e,t),a=(0,u.Ut)(e,e.points),l=(i[0]+i[2])/2,s=(i[1]+i[3])/2,f=(a[0]+a[2])/2-l,p=(a[1]+a[3])/2-s,h=(0,c.U1)(n,r,f,p,e.angle);(0,d.DR)(e,E(E({},o),{},{points:t,x:e.x+h[0],y:e.y+h[1]}))}},{key:"_getShiftLockedDelta",value:function(t,n,r,o){var a=e.getPointGlobalCoordinates(t,n),l=(0,c.wC)(r[0],r[1],o),u=(0,i.Z)(l,2),d=u[0],f=u[1],p=(0,s.o4)(a[0],a[1],d,f),h=p.width,m=p.height;return(0,c.xj)([h,m],[0,0],-t.angle)}}]),e}();O.POINT_HANDLE_SIZE=10,O.getEditorMidPoints=function(e,t){var n=(0,v.WJ)(e);return!t.editingLinearElement&&e.points.length>2&&!n?[]:(S.version===e.version&&S.zoom===t.zoom.value||O.updateEditorMidPointsCache(e,t),S.points)},O.updateEditorMidPointsCache=function(e,t){for(var n=O.getPointsGlobalCoordinates(e),r=0,o=[];r<n.length-1;)if(O.isSegmentTooShort(e,e.points[r],e.points[r+1],t.zoom))o.push(null),r++;else{var i=O.getSegmentMidPoint(e,n[r],n[r+1],r+1);o.push(i),r++}S.points=o,S.version=e.version,S.zoom=t.zoom.value},O.getSegmentMidpointHitCoords=function(e,t,n){var r=e.elementId,o=O.getElement(r);if(!o)return null;if(O.getPointIndexUnderCursor(o,n.zoom,t.x,t.y)>=0)return null;if(O.getPointsGlobalCoordinates(o).length>=3&&!n.editingLinearElement)return null;var i=O.POINT_HANDLE_SIZE/n.zoom.value,a=e.segmentMidPointHoveredCoords;if(a&&(0,c.LW)(a[0],a[1],t.x,t.y)<=i)return a;for(var l=0,s=O.getEditorMidPoints(o,n);l<s.length;){if(null!==s[l])if((0,c.LW)(s[l][0],s[l][1],t.x,t.y)<=i)return s[l];l++}return null},O.getBoundTextElementPosition=function(e,t){var n=O.getPointsGlobalCoordinates(e);n.length<2&&(0,d.DR)(t,{isDeleted:!0});var r=0,o=0;if(e.points.length%2==1){var i=Math.floor(e.points.length/2),a=O.getPointGlobalCoordinates(e,e.points[i]);r=a[0]-t.width/2,o=a[1]-t.height/2}else{var l=e.points.length/2-1,s=S.points[l];2===e.points.length&&(s=(0,c.H5)(n[0],n[1])),s&&S.version===e.version||(s=O.getSegmentMidPoint(e,n[l],n[l+1],l+1)),r=s[0]-t.width/2,o=s[1]-t.height/2}return{x:r,y:o}},O.getMinMaxXYWithBoundText=function(e,t,n){var r=(0,i.Z)(t,4),o=r[0],a=r[1],l=r[2],s=r[3],u=(o+l)/2,d=(a+s)/2,f=O.getBoundTextElementPosition(e,n),p=f.x,h=f.y,m=p+n.width,g=h+n.height,v=(0,c.xj)([o,a],[u,d],e.angle),b=(0,c.xj)([l,a],[u,d],e.angle),y=(0,c.xj)([p,h],[u,d],-e.angle),x=(0,c.xj)([m,h],[u,d],-e.angle),w=(0,c.xj)([p,g],[u,d],-e.angle),k=(0,c.xj)([m,g],[u,d],-e.angle);return v[0]<b[0]&&v[1]>=b[1]?(o=Math.min(o,w[0]),l=Math.max(l,Math.max(x[0],k[0])),a=Math.min(a,y[1]),s=Math.max(s,k[1])):v[0]>=b[0]&&v[1]>b[1]?(o=Math.min(o,k[0]),l=Math.max(l,Math.max(y[0],x[0])),a=Math.min(a,w[1]),s=Math.max(s,x[1])):v[0]>=b[0]?(o=Math.min(o,x[0]),l=Math.max(l,w[0]),a=Math.min(a,k[1]),s=Math.max(s,y[1])):v[1]<=b[1]&&(o=Math.min(o,Math.min(x[0],y[0])),l=Math.max(l,k[0]),a=Math.min(a,x[1]),s=Math.max(s,w[1])),[o,a,l,s,u,d]},O.getElementAbsoluteCoords=function(e){var t,n,r,o,a,l=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.points.length<2||!(0,b.R2)(e)){var c=e.points.reduce((function(e,t){var n=(0,i.Z)(t,2),r=n[0],o=n[1];return e.minY=Math.min(e.minY,o),e.minX=Math.min(e.minX,r),e.maxX=Math.max(e.maxX,r),e.maxY=Math.max(e.maxY,o),e}),{minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0}),s=c.minX,d=c.minY,f=c.maxX,p=c.maxY;n=s+e.x,r=d+e.y,o=f+e.x,a=p+e.y}else{var h=(0,b.R2)(e),m=(0,u.CM)(h[0]),g=(0,u.IX)(m),y=(0,i.Z)(g,4),x=y[0],w=y[1],k=y[2],E=y[3];n=x+e.x,r=w+e.y,o=k+e.x,a=E+e.y}var S=(n+o)/2,j=(r+a)/2;if(t=[n,r,o,a,S,j],!l)return t;var _=(0,v.WJ)(e);return _&&(t=O.getMinMaxXYWithBoundText(e,[n,r,o,a],_)),t};var j=function(e){var t=(0,r.Z)(new Set(e.filter((function(e){return null!==e&&-1!==e}))));return(t=t.sort((function(e,t){return e-t}))).length?t:null}},1935:function(e,t,n){"use strict";n.d(t,{BE:function(){return p},DR:function(){return f},ZP:function(){return h}});var r=n(6655),o=n(7169),i=n(3063),a=n(1564),l=n(5001),c=n(6954),s=n(6340);function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function d(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?u(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):u(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var f=function(e,t){var n,o=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],u=!1,f=t,p=f.points,h=f.fileId;for(var m in void 0!==p&&(t=d(d({},(0,l.k)(p)),t)),t){var g=t[m];if(void 0!==g){if(e[m]===g&&("object"!==(0,r.Z)(g)||null===g||"groupIds"===m||"scale"===m))continue;if("scale"===m){var v=e[m],b=g;if(v[0]===b[0]&&v[1]===b[1])continue}else if("points"===m){var y=e[m],x=g;if(y.length===x.length){for(var w=!1,k=y.length;--k;){var E=y[k],S=x[k];if(E[0]!==S[0]||E[1]!==S[1]){w=!0;break}}if(!w)continue}}e[m]=g,u=!0}}if(!u)return e;(void 0===t.height&&void 0===t.width&&void 0===h&&void 0===p||(0,i.bI)(e),e.version++,e.versionNonce=(0,c.LU)(),e.updated=(0,s.C3)(),o)&&(null===(n=a.Z.getScene(e))||void 0===n||n.informMutation());return e},p=function(e,t){var n=!1;for(var o in t){var i=t[o];if(void 0!==i){if(e[o]===i&&("object"!==(0,r.Z)(i)||null===i))continue;n=!0}}return n?d(d(d({},e),t),{},{updated:(0,s.C3)(),version:e.version+1,versionNonce:(0,c.LU)()}):e},h=function(e,t){return e.version=(null!=t?t:e.version)+1,e.versionNonce=(0,c.LU)(),e.updated=(0,s.C3)(),e}},2791:function(e,t,n){"use strict";n.d(t,{JZ:function(){return _},KE:function(){return I},M3:function(){return E},N_:function(){return C},OL:function(){return D},Sy:function(){return L},Up:function(){return k},VL:function(){return O},_N:function(){return Z},vw:function(){return P},y8:function(){return T}});var r=n(6655),o=n(2577),i=n(7169),a=n(2726),l=n(6340),c=n(6954),s=n(1935),u=n(242),d=n(1047),f=n(6552),p=n(8925),h=n(5710),m=n(2335),g=["x","y","strokeColor","backgroundColor","fillStyle","strokeWidth","strokeStyle","roughness","opacity","width","height","angle","groupIds","frameId","roundness","boundElements","link","locked"];function v(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return b(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return b(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function b(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function x(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?y(Object(n),!0).forEach((function(t){(0,i.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):y(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var w=function(e,t){var n,r,o=t.x,i=t.y,s=t.strokeColor,u=void 0===s?m.HN.strokeColor:s,d=t.backgroundColor,f=void 0===d?m.HN.backgroundColor:d,p=t.fillStyle,h=void 0===p?m.HN.fillStyle:p,v=t.strokeWidth,b=void 0===v?m.HN.strokeWidth:v,y=t.strokeStyle,x=void 0===y?m.HN.strokeStyle:y,w=t.roughness,k=void 0===w?m.HN.roughness:w,E=t.opacity,S=void 0===E?m.HN.opacity:E,O=t.width,j=void 0===O?0:O,_=t.height,C=void 0===_?0:_,I=t.angle,T=void 0===I?0:I,P=t.groupIds,M=void 0===P?[]:P,D=t.frameId,A=void 0===D?null:D,L=t.roundness,Z=void 0===L?null:L,R=t.boundElements,z=void 0===R?null:R,N=t.link,B=void 0===N?null:N,H=t.locked,F=void 0===H?m.HN.locked:H,W=(0,a.Z)(t,g);return{id:W.id||(0,c.kb)(),type:e,x:o,y:i,width:j,height:C,angle:T,strokeColor:u,backgroundColor:f,fillStyle:h,strokeWidth:b,strokeStyle:x,roughness:k,opacity:S,groupIds:M,frameId:A,roundness:Z,seed:null!==(n=W.seed)&&void 0!==n?n:(0,c.LU)(),version:W.version||1,versionNonce:null!==(r=W.versionNonce)&&void 0!==r?r:0,isDeleted:!1,boundElements:z,updated:(0,l.C3)(),link:B,locked:F}},k=function(e){return w(e.type,e)},E=function(e){return(0,s.BE)(x(x({},w("frame",e)),{},{type:"frame",name:null}),{})},S=function(e,t){return{x:"center"===e.textAlign?t.width/2:"right"===e.textAlign?t.width:0,y:"middle"===e.verticalAlign?t.height/2:0}},O=function(e){var t=e.fontFamily||m.rk,n=e.fontSize||m.n5,r=e.lineHeight||(0,h.PT)(t),o=(0,h.bG)(e.text),i=(0,h.X1)(o,(0,l.mO)({fontFamily:t,fontSize:n}),r),a=e.textAlign||m.Hg,c=e.verticalAlign||m.hs,u=S({textAlign:a,verticalAlign:c},i);return(0,s.BE)(x(x({},w("text",e)),{},{text:o,fontSize:n,fontFamily:t,textAlign:a,verticalAlign:c,x:e.x-u.x,y:e.y-u.y,width:i.width,height:i.height,baseline:i.baseline,containerId:e.containerId||null,originalText:o,lineHeight:r,isFrameName:e.isFrameName||!1}),{})},j=function(e,t){var n,r,i=(0,h.X1)(t,(0,l.mO)(e),e.lineHeight),a=i.width,c=i.height,s=i.baseline,u=e.textAlign,g=e.verticalAlign;if("center"!==u||g!==m.oX.MIDDLE||e.containerId){var v=(0,d.qf)(e),b=(0,o.Z)(v,4),y=b[0],x=b[1],w=b[2],k=b[3],E=(0,p.wC)(e,a,c,!1),O=(0,o.Z)(E,4),j=(y-O[0])/2,_=(x-O[1])/2,C=(w-O[2])/2,I=(k-O[3])/2,T=(0,f.yq)({s:!0,e:"center"===u||"left"===u,w:"center"===u||"right"===u},e.x,e.y,e.angle,j,_,C,I),P=(0,o.Z)(T,2);n=P[0],r=P[1]}else{var M=(0,h.X1)(e.text,(0,l.mO)(e),e.lineHeight),D=S(e,{width:a-M.width,height:c-M.height});n=e.x-D.x,r=e.y-D.y}return{width:a,height:c,baseline:s,x:Number.isFinite(n)?n:e.x,y:Number.isFinite(r)?r:e.y}},_=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e.text;if(!e.isDeleted){var n=(0,h.tl)(e);n&&(t=(0,h.lD)(t,(0,l.mO)(e),(0,h.iZ)(n)));var r=j(e,t);return x({text:t},r)}},C=function(e,t){t.text;var n=t.isDeleted,r=t.originalText;return(0,s.BE)(e,x({originalText:r,isDeleted:null!=n?n:e.isDeleted},_(e,r)))},I=function(e){return x(x({},w(e.type,e)),{},{points:e.points||[],pressures:[],simulatePressure:e.simulatePressure,lastCommittedPoint:null})},T=function(e){return x(x({},w(e.type,e)),{},{points:e.points||[],lastCommittedPoint:null,startBinding:null,endBinding:null,startArrowhead:e.startArrowhead,endArrowhead:e.endArrowhead})},P=function(e){var t,n,r;return x(x({},w("image",e)),{},{strokeColor:"transparent",status:null!==(t=e.status)&&void 0!==t?t:"pending",fileId:null!==(n=e.fileId)&&void 0!==n?n:null,scale:null!==(r=e.scale)&&void 0!==r?r:[1,1]})},M=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(null==t||"object"!==(0,r.Z)(t))return t;var o=Object.prototype.toString.call(t);if("[object Object]"===o){var i="function"==typeof t.constructor?Object.create(Object.getPrototypeOf(t)):{};for(var a in t)if(t.hasOwnProperty(a)){if(0===n&&("shape"===a||"canvas"===a))continue;i[a]=e(t[a],n+1)}return i}if(Array.isArray(t)){for(var l=t.length,c=new Array(l);l--;)c[l]=e(t[l],n+1);return c}return t},D=function(e){return M(e)},A=function(e){if((0,l.h2)()&&e){var t,n,r="".concat(e,"_copy");return null!==(t=window.h)&&void 0!==t&&null!==(n=t.app)&&void 0!==n&&n.getSceneElementsIncludingDeleted().find((function(e){return e.id===r}))&&(r+="_copy"),r}return(0,c.kb)()},L=function(e,t,n,r){var o=D(n);return o.id=A(o.id),o.boundElements=null,o.updated=(0,l.C3)(),o.seed=(0,c.LU)(),o.groupIds=(0,u.Qy)(o.groupIds,e,(function(e){return t.has(e)||t.set(e,A(e)),t.get(e)})),r&&(o=Object.assign(o,r)),o},Z=function(e,t){var n,r=[],o=(0,l.xn)(e),i=new Map,a=function(e){if(i.has(e))return i.get(e);if(o.has(e)){var t=A(e);return i.set(e,t),t}return null},u=new Map,d=v(e);try{for(d.s();!(n=d.n()).done;){var f=n.value,p=M(f);if(p.id=a(f.id),null!=t&&t.randomizeSeed&&(p.seed=(0,c.LU)(),(0,s.ZP)(p)),p.groupIds&&(p.groupIds=p.groupIds.map((function(e){return u.has(e)||u.set(e,A(e)),u.get(e)}))),"containerId"in p&&p.containerId){var h=a(p.containerId);p.containerId=h}if("boundElements"in p&&p.boundElements&&(p.boundElements=p.boundElements.reduce((function(e,t){var n=a(t.id);return n&&e.push(x(x({},t),{},{id:n})),e}),[])),"endBinding"in p&&p.endBinding){var m=a(p.endBinding.elementId);p.endBinding=m?x(x({},p.endBinding),{},{elementId:m}):null}if("startBinding"in p&&p.startBinding){var g=a(p.startBinding.elementId);p.startBinding=g?x(x({},p.startBinding),{},{elementId:g}):null}p.frameId&&(p.frameId=a(p.frameId)),r.push(p)}}catch(e){d.e(e)}finally{d.f()}return r}},8634:function(e,t,n){"use strict";n.d(t,{LM:function(){return T},T:function(){return D},vY:function(){return S},xx:function(){return M}});var r=n(2726),o=n(1930),i=n(7169),a=n(2577),l=n(2335),c=n(5001),s=n(6552),u=n(8925),d=n(1974),f=n(1935),p=n(6340),h=n(8290),m=n(1564),g=n(5710),v=n(6938),b=["element"];function y(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return x(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return x(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function w(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function k(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?w(Object(n),!0).forEach((function(t){(0,i.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):w(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var E=function(e){return e<0?e+2*Math.PI:e>=2*Math.PI?e-2*Math.PI:e},S=function(e,t,n,r,o,i,l,c,s,u,f){if(1===n.length){var p=(0,a.Z)(n,1)[0];return"rotation"===t?(O(p,c,s,o,e.originalElements),(0,h.Ww)(p)):!(0,d.iB)(p)||"nw"!==t&&"ne"!==t&&"sw"!==t&&"se"!==t?t&&I(e.originalElements,l,p,t,i,c,s):(C(p,t,i,c,s),(0,h.Ww)(p)),!0}if(n.length>1){if("rotation"===t)return P(e,n,c,s,o,u,f),!0;if("nw"===t||"ne"===t||"sw"===t||"se"===t)return T(e,n,t,i,c,s),!0}return!1},O=function(e,t,n,r,o){var i,c=(0,u.qf)(e),s=(0,a.Z)(c,4),p=s[0],h=s[1],v=(p+s[2])/2,b=(h+s[3])/2;(0,d.He)(e)?i=0:(i=5*Math.PI/2+Math.atan2(n-b,t-v),r&&(i+=l.ay/2,i-=i%l.ay),i=E(i));var y=(0,g.xB)(e);if((0,f.DR)(e,{angle:i}),y){var x,w=null===(x=m.Z.getScene(e))||void 0===x?void 0:x.getElement(y);w&&!(0,d.Yv)(e)&&(0,f.DR)(w,{angle:i})}},j=function(e,t,n,r){return(0,d.bt)(e)||(0,d.F9)(e)?{points:(0,c.z)(0,t,(0,c.z)(1,n,e.points,r),r)}:{}},_=function(e,t,n){var r=e.width;if((0,d.Xh)(e)){var o=(0,g.tl)(e);o&&(r=(0,g.iZ)(o))}var i=e.fontSize*(t/r);if(i<1)return null;var a=(0,g.X1)(e.text,(0,p.mO)({fontSize:i,fontFamily:e.fontFamily}),e.lineHeight);return{size:i,baseline:a.baseline+(n-a.height)}},C=function(e,t,n,r,o){var i,l=(0,u.qf)(e),c=(0,a.Z)(l,4),d=c[0],p=c[1],h=c[2],m=c[3],g=(d+h)/2,v=(p+m)/2,b=(0,s.U1)(r,o,g,v,-e.angle),y=(0,a.Z)(b,2),x=y[0],w=y[1];switch(t){case"se":i=Math.max((x-d)/(h-d),(w-p)/(m-p));break;case"nw":i=Math.max((h-x)/(h-d),(m-w)/(m-p));break;case"ne":i=Math.max((x-d)/(h-d),(m-w)/(m-p));break;case"sw":i=Math.max((h-x)/(h-d),(w-p)/(m-p))}if(i>0){var k=e.width*i,E=e.height*i,S=_(e,k,E);if(null===S)return;var O=(0,u.wC)(e,k,E,!1),j=(0,a.Z)(O,4),C=(d-j[0])/2,I=(p-j[1])/2,T=(h-j[2])/2,P=(m-j[3])/2,M=(0,s.yq)(function(e,t){return{n:/^(n|ne|nw)$/.test(e)||t&&/^(s|se|sw)$/.test(e),s:/^(s|se|sw)$/.test(e)||t&&/^(n|ne|nw)$/.test(e),w:/^(w|nw|sw)$/.test(e)||t&&/^(e|ne|se)$/.test(e),e:/^(e|ne|se)$/.test(e)||t&&/^(w|nw|sw)$/.test(e)}}(t,n),e.x,e.y,e.angle,C,I,T,P),D=(0,a.Z)(M,2),A=D[0],L=D[1];(0,f.DR)(e,{fontSize:S.size,width:k,height:E,baseline:S.baseline,x:A,y:L})}},I=function(e,t,n,r,i,l,m){var v=e.get(n.id),b=(0,u.wC)(v,v.width,v.height,!0),y=(0,a.Z)(b,4),x=[y[0],y[1]],w=[y[2],y[3]],E=(0,s.H5)(x,w),S=(0,s.xj)([l,m],E,-v.angle),O=(0,u.wC)(n,n.width,n.height,!0),j=(0,a.Z)(O,4),C=j[0],I=j[1],T=j[2]-C,P=j[3]-I,M=(w[0]-x[0])/T,D=(w[1]-x[1])/P,A={},L=(0,g.WJ)(n);r.includes("e")&&(M=(S[0]-x[0])/T),r.includes("s")&&(D=(S[1]-x[1])/P),r.includes("w")&&(M=(w[0]-S[0])/T),r.includes("n")&&(D=(w[1]-S[1])/P);var Z=v.width,R=v.height,z=n.width*M,N=n.height*D;if(i&&(z=2*z-Z,N=2*N-R),t){var B=Math.abs(z)/Z,H=Math.abs(N)/R;if(1===r.length&&(N*=B,z*=H),2===r.length){var F=Math.max(B,H);z=Z*F*Math.sign(z),N=R*F*Math.sign(N)}}if(L){var W=e.get(L.id);if(W&&(A={fontSize:W.fontSize,baseline:W.baseline}),t){var U=k(k({},n),{},{width:z,height:N}),K=_(L,(0,g.iZ)(U),(0,g.D9)(U,L));if(null===K)return;A={fontSize:K.size,baseline:K.baseline}}else{var Y=(0,g.AT)((0,p.mO)(L),L.lineHeight),G=(0,g.w_)(L.fontSize,L.lineHeight);z=Math.ceil(Math.max(z,Y)),N=Math.ceil(Math.max(N,G))}}var V=(0,u.wC)(v,z,N,!0),X=(0,a.Z)(V,4),q=X[0],$=X[1],J=X[2],Q=X[3],ee=J-q,te=Q-$,ne=[].concat(x);if(["n","w","nw"].includes(r)&&(ne=[w[0]-Math.abs(ee),w[1]-Math.abs(te)]),"ne"===r){var re=[x[0],w[1]];ne=[re[0],re[1]-Math.abs(te)]}if("sw"===r){var oe=[w[0],x[1]];ne=[oe[0]-Math.abs(ee),oe[1]]}t&&(["s","n"].includes(r)&&(ne[0]=E[0]-ee/2),["e","w"].includes(r)&&(ne[1]=E[1]-te/2)),z<0&&(r.includes("e")&&(ne[0]-=Math.abs(ee)),r.includes("w")&&(ne[0]+=Math.abs(ee))),N<0&&(r.includes("s")&&(ne[1]-=Math.abs(te)),r.includes("n")&&(ne[1]+=Math.abs(te))),i&&(ne[0]=E[0]-Math.abs(ee)/2,ne[1]=E[1]-Math.abs(te)/2);var ie,ae,le=v.angle,ce=(0,s.xj)(ne,E,le),se=[ne[0]+Math.abs(ee)/2,ne[1]+Math.abs(te)/2],ue=(0,s.xj)(se,E,le);ne=(0,s.xj)(ce,ue,-le),((0,d.bt)(n)||(0,d.F9)(n))&&(ie=(0,c.z)(1,N,v.points,!0),ae=(0,c.z)(0,z,ie,!0));var de=(0,o.Z)(ne);de[0]+=v.x-q,de[1]+=v.y-$;var fe={width:Math.abs(z),height:Math.abs(N),x:de[0],y:de[1],points:ae};"scale"in n&&"scale"in v&&(0,f.DR)(n,{scale:[(Math.sign(J-v.x)||v.scale[0])*v.scale[0],(Math.sign(Q-v.y)||v.scale[1])*v.scale[1]]}),0!==fe.width&&0!==fe.height&&Number.isFinite(fe.x)&&Number.isFinite(fe.y)&&((0,h.Ww)(n,{newSize:{width:fe.width,height:fe.height}}),(0,f.DR)(n,fe),L&&null!=A&&(0,f.DR)(L,{fontSize:A.fontSize,baseline:A.baseline}),(0,g.RB)(n,r))},T=function(e,t,n,i,l,c){var s,p=t.reduce((function(t,n){var r=e.originalElements.get(n.id);return r&&t.push({orig:r,latest:n}),t}),[]),x=p.reduce((function(t,n){var r,i=n.orig;if(!(0,d.bt)(i))return t;var a=(0,g.xB)(i);if(!a)return t;var l=null!==(r=e.originalElements.get(a))&&void 0!==r?r:null;if(!(0,d.Xh)(l))return t;var c=v._.getBoundTextElementPosition(i,l);return[].concat((0,o.Z)(t),[k(k({},l),c)])}),[]),w=(0,u.v2)(p.map((function(e){return e.orig})).concat(x)),S=w.minX,O=w.minY,C=w.maxX,I=w.maxY,T=w.midX,P=w.midY,M=n,D=i?[T,P]:{ne:[S,I],se:[S,O],sw:[C,O],nw:[C,I]}[M],A=(0,a.Z)(D,2),L=A[0],Z=A[1],R=Math.max(Math.abs(l-L)/(C-S)||0,Math.abs(c-Z)/(I-O)||0)*(i?2:1);if(0!==R){var z,N={ne:[l>=L,c<=Z],se:[l>=L,c>=Z],sw:[l<=L,c>=Z],nw:[l<=L,c<=Z]}[M].map((function(e){return e?1:-1})),B=(0,a.Z)(N,2),H=B[0],F=B[1],W=H<0,U=F<0,K=[],Y=y(p);try{for(Y.s();!(z=Y.n()).done;){var G=z.value,V=G.orig,X=G.latest;if(!(0,d.iB)(V)||!(0,d.Xh)(V)){var q=V.width*R,$=V.height*R,J=E(V.angle*H*F),Q=(0,d.bt)(V)||(0,d.F9)(V),ee=V.x-L,te=V.y-Z,ne=L+H*(ee*R+(W&&!Q?q:0)),re=Z+F*(te*R+(U&&!Q?$:0)),oe=j(V,q*H,$*F,!1),ie=k({x:ne,y:re,width:q,height:$,angle:J},oe);(0,d.pC)(V)&&1===p.length&&(ie.scale=[V.scale[0]*H,V.scale[1]*F]),(0,d.bt)(V)&&(W||U)&&function(){var e=(0,u.Ut)(V,V.points),t=(0,u.Ut)(k(k({},V),{},{x:ne,y:re}),oe.points),n=[V.x,V.y],r=[ne,re],o=function(o){var i="x"===o?0:1;return(t[i+2]-r[i]-(n[i]-e[i])*R+(e[i+2]-n[i])*R-(r[i]-t[i]))/2};W&&(ie.x-=o("x")),U&&(ie.y-=o("y"))}();var ae=null,le=(0,g.WJ)(X);if(le||(0,d.iB)(V)){var ce=k(k({},X),{},{width:q,height:$}),se=_(null!=le?le:V,le?(0,g.iZ)(ce):ce.width,le?(0,g.D9)(ce,le):ce.height);if(!se)return;(0,d.iB)(V)&&(ie.fontSize=se.size,ie.baseline=se.baseline),le&&(ae={element:le,fontSize:se.size,baseline:se.baseline})}K.push({element:X,update:ie,boundText:ae})}}}catch(e){Y.e(e)}finally{Y.f()}for(var ue=K.map((function(e){return e.element})),de=0,fe=K;de<fe.length;de++){var pe=fe[de],he=pe.element,me=pe.update,ge=pe.boundText,ve=me.width,be=me.height,ye=me.angle;if((0,f.DR)(he,me,!1),(0,h.Ww)(he,{simultaneouslyUpdated:ue,newSize:{width:ve,height:be}}),ge){var xe=ge.element,we=(0,r.Z)(ge,b);(0,f.DR)(xe,k(k({},we),{},{angle:(0,d.bt)(he)?void 0:ye}),!1),(0,g.RB)(he,n)}}null===(s=m.Z.getScene(K[0].element))||void 0===s||s.informMutation()}},P=function(e,t,n,r,o,i,c){var p,v=5*Math.PI/2+Math.atan2(r-c,n-i);o&&(v+=l.ay/2,v-=v%l.ay),t.filter((function(e){return"frame"!==e.type})).forEach((function(n){var r,o,l=(0,u.qf)(n),p=(0,a.Z)(l,4),m=p[0],b=p[1],y=(m+p[2])/2,x=(b+p[3])/2,w=null!==(r=null===(o=e.originalElements.get(n.id))||void 0===o?void 0:o.angle)&&void 0!==r?r:n.angle,k=(0,s.U1)(y,x,i,c,v+w-n.angle),S=(0,a.Z)(k,2),O=S[0],j=S[1];(0,f.DR)(n,{x:n.x+(O-y),y:n.y+(j-x),angle:E(v+w)},!1),(0,h.Ww)(n,{simultaneouslyUpdated:t});var _=(0,g.WJ)(n);_&&!(0,d.Yv)(n)&&(0,f.DR)(_,{x:_.x+(O-y),y:_.y+(j-x),angle:E(v+w)},!1)})),null===(p=m.Z.getScene(t[0]))||void 0===p||p.informMutation()},M=function(e,t,n,r){var o=1===t.length?(0,u.qf)(t[0]):(0,u.KP)(t),i=(0,a.Z)(o,4),l=i[0],c=i[1],d=i[2],f=i[3],p=(l+d)/2,h=(c+f)/2,m=1===t.length?t[0].angle:0,g=(0,s.U1)(n,r,p,h,-m),v=(0,a.Z)(g,2);switch(n=v[0],r=v[1],e){case"n":return(0,s.U1)(n-(l+d)/2,r-c,0,0,m);case"s":return(0,s.U1)(n-(l+d)/2,r-f,0,0,m);case"w":return(0,s.U1)(n-l,r-(c+f)/2,0,0,m);case"e":return(0,s.U1)(n-d,r-(c+f)/2,0,0,m);case"nw":return(0,s.U1)(n-l,r-c,0,0,m);case"ne":return(0,s.U1)(n-d,r-c,0,0,m);case"sw":return(0,s.U1)(n-l,r-f,0,0,m);case"se":return(0,s.U1)(n-d,r-f,0,0,m);default:return[0,0]}},D=function(e,t){var n=(0,a.Z)(t.points,2),r=(0,a.Z)(n[1],2),o=r[0],i=r[1];return"nw"===e&&(o<0||i<0)||"ne"===e&&o>=0||"sw"===e&&o<=0||"se"===e&&(o>0||i>0)?"end":"origin"}},5710:function(e,t,n){"use strict";n.d(t,{$2:function(){return I},AT:function(){return z},D9:function(){return ee},FE:function(){return j},HE:function(){return W},H_:function(){return Y},NS:function(){return J},OW:function(){return X},P7:function(){return S},PT:function(){return re},R8:function(){return C},RB:function(){return O},Rg:function(){return T},TP:function(){return U},WJ:function(){return H},X1:function(){return _},Zr:function(){return $},aV:function(){return V},bG:function(){return w},cn:function(){return G},cw:function(){return K},eB:function(){return te},iZ:function(){return Q},lD:function(){return L},mY:function(){return D},oN:function(){return E},tl:function(){return F},w_:function(){return P},xB:function(){return B}});var r,o=n(2577),i=n(1930),a=n(7169),l=n(6340),c=n(1935),s=n(2335),u=n(1564),d=n(1047),f=n(1974),p=n(6938),h=n(75),m=n(2325),g=n(6906);function v(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function b(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?v(Object(n),!0).forEach((function(t){(0,a.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):v(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var y,x,w=function(e){return e.replace(/\t/g," ").replace(/\r?\n|\r/g,"\n")},k=function(e){return w(e).split("\n")},E=function(e,t){var n=void 0,r={x:e.x,y:e.y,text:e.text,width:e.width,height:e.height,baseline:e.baseline};r.text=e.text,t&&(n=Q(t),r.text=L(e.originalText,(0,l.mO)(e),n));var o=_(r.text,(0,l.mO)(e),e.lineHeight);if(r.width=o.width,r.height=o.height,r.baseline=o.baseline,t){var i=W(t),a=ee(t,e),s=i.height;o.height>a&&(s=J(o.height,t.type),(0,c.DR)(t,{height:s}),(0,g.h_)(t.id,s));var u=b(b({},e),r),d=j(t,u),f=d.x,p=d.y;r.x=f,r.y=p}(0,c.DR)(e,r)},S=function(e,t,n){var r=(0,l.xn)(e);t.forEach((function(e){var t=n.get(e.id),o=B(e);if(o){var i=n.get(o);if(i){var a=r.get(t);a&&(0,c.DR)(a,{boundElements:(e.boundElements||[]).filter((function(e){return e.id!==i&&e.id!==o})).concat({type:"text",id:i})});var l=r.get(i);l&&(0,d.iB)(l)&&(0,c.DR)(l,{containerId:a?t:null})}}}))},O=function(e,t){var n=B(e);if(n){(0,g.kT)(e.id);var r=u.Z.getScene(e).getElement(n);if(r&&r.text){if(!e)return;var o=(r=u.Z.getScene(e).getElement(n)).text,i=r.height,a=r.width,s=W(e),d=Q(e),p=ee(e,r),h=s.height,m=r.baseline;if("n"!==t&&"s"!==t){o&&(o=L(r.originalText,(0,l.mO)(r),d));var v=_(o,(0,l.mO)(r),r.lineHeight);i=v.height,a=v.width,m=v.baseline}if(i>p){var b=(h=J(i,e.type))-s.height,y=(0,f.Yv)(e)||"ne"!==t&&"nw"!==t&&"n"!==t?e.y:e.y-b;(0,c.DR)(e,{height:h,y:y})}(0,c.DR)(r,{text:o,width:a,height:i,baseline:m}),(0,f.Yv)(e)||(0,c.DR)(r,j(e,r))}}},j=function(e,t){if((0,f.Yv)(e))return p._.getBoundTextElementPosition(e,t);var n,r=K(e),o=ee(e,t),i=Q(e);return n=t.verticalAlign===s.oX.TOP?r.y:t.verticalAlign===s.oX.BOTTOM?r.y+(o-t.height):r.y+(o/2-t.height/2),{x:t.textAlign===s.I8.LEFT?r.x:t.textAlign===s.I8.RIGHT?r.x+(i-t.width):r.x+(i/2-t.width/2),y:n}},_=function(e,t,n){e=e.split("\n").map((function(e){return e||" "})).join("\n");var r=parseFloat(t),o=A(e,r,n);return{width:D(e,t),height:o,baseline:C(e,t,n)}},C=function(e,t,n,r){var o=document.createElement("div");o.style.position="absolute",o.style.whiteSpace="pre",o.style.font=t,o.style.minHeight="1em",r&&(o.style.overflow="hidden",o.style.wordBreak="break-word",o.style.whiteSpace="pre-wrap"),o.style.lineHeight=String(n),o.innerText=e,document.body.appendChild(o);var i=document.createElement("span");i.style.display="inline-block",i.style.overflow="hidden",i.style.width="1px",i.style.height="1px",o.appendChild(i);var a=i.offsetTop+i.offsetHeight,l=o.offsetHeight;if(s.G6){var c=A(e,parseFloat(t),n),u=parseFloat(t),d=A(e,Math.round(u),n);c>l&&(a+=c-d),l>c&&(a-=d-c)}return document.body.removeChild(o),a},I=function(e){var t=k(e.text).length;return e.height/t/e.fontSize},T=function(e,t){return e*t},P=function(e,t){return T(e,t)+2*s.gK},M=function(e,t){y||(y=document.createElement("canvas"));var n=y.getContext("2d");n.font=t;var r=n.measureText(e).width;return(0,l.h2)()?10*r:r},D=function(e,t){var n=k(e),r=0;return n.forEach((function(e){r=Math.max(r,M(e,t))})),r},A=function(e,t,n){var r=k(e).length;return T(t,n)*r},L=function(e,t,n){if(!Number.isFinite(n)||n<0)return e;var r=[],o=e.split("\n"),i=M(" ",t),a="",l=0,c=function(e){e.trim()&&r.push(e)},s=function(){a="",l=0};return o.forEach((function(e){if(D(e,t)<=n)r.push(e);else{var o=function(e){var t=e.split("-");return t.length>1&&t.forEach((function(e,n){n!==t.length-1&&(t[n]=e+="-")})),t.join(" ").split(" ")}(e);s();for(var u=0;u<o.length;){var d=M(o[u],t);if(d===n)c(o[u]),u++;else if(d>n){for(c(a),s();o[u].length>0;){var f=String.fromCodePoint(o[u].codePointAt(0)),p=Z.calculate(f,t);l+=p,o[u]=o[u].slice(f.length),l>=n?(c(a),a=f,l=p):a+=f}l+i>=n?(c(a),s()):a.endsWith("-")||(a+=" ",l+=i),u++}else for(;l<n&&u<o.length;){var h=o[u];if((l=M(a+h,t))>n){c(a),s();break}u++;var m=!h.endsWith("-");if(a+=h,m&&(a+=" "),l+i>=n){m?r.push(a.slice(0,-1)):r.push(a),s();break}}}" "===a.slice(-1)&&(a=a.slice(0,-1),c(a))}})),r.join("\n")},Z=(x={},{calculate:function(e,t){var n=e.charCodeAt(0);if(x[t]||(x[t]=[]),!x[t][n]){var r=M(e,t);x[t][n]=r}return x[t][n]},getCache:function(e){return x[e]}}),R="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".toLocaleUpperCase(),z=function(e,t){var n=N(e);return 0===n?_(R.split("").join("\n"),e,t).width+2*s.gK:n+2*s.gK},N=function(e){var t=Z.getCache(e);if(!t)return 0;var n=t.filter((function(e){return void 0!==e}));return Math.max.apply(Math,(0,i.Z)(n))},B=function(e){var t,n,r;return null!=e&&null!==(t=e.boundElements)&&void 0!==t&&t.length&&(null==e||null===(n=e.boundElements)||void 0===n||null===(r=n.filter((function(e){return"text"===e.type}))[0])||void 0===r?void 0:r.id)||null},H=function(e){if(!e)return null;var t,n=B(e);return n&&(null===(t=u.Z.getScene(e))||void 0===t?void 0:t.getElement(n))||null},F=function(e){return e&&e.containerId&&(null===(t=u.Z.getScene(e))||void 0===t?void 0:t.getElement(e.containerId))||null;var t},W=function(e){return(0,f.Yv)(e)?{width:Math.max(e.width,300),height:e.height}:{width:e.width,height:e.height}},U=function(e,t){if(!(0,f.Yv)(e))return{x:e.x+e.width/2,y:e.y+e.height/2};var n=p._.getPointsGlobalCoordinates(e);if(n.length%2==1){var r=Math.floor(e.points.length/2),o=p._.getPointGlobalCoordinates(e,e.points[r]);return{x:o[0],y:o[1]}}var i=e.points.length/2-1,a=p._.getEditorMidPoints(e,t)[i];return a||(a=p._.getSegmentMidPoint(e,n[i],n[i+1],i+1)),{x:a[0],y:a[1]}},K=function(e){var t=s.gK,n=s.gK;return"ellipse"===e.type&&(t+=e.width/2*(1-Math.sqrt(2)/2),n+=e.height/2*(1-Math.sqrt(2)/2)),"diamond"===e.type&&(t+=e.width/4,n+=e.height/4),{x:e.x+t,y:e.y+n}},Y=function(e){var t=F(e);return!t||(0,f.Yv)(t)?e.angle:t.angle},G=function(e){return e.some((function(e){if((0,f.Xh)(e)){var t=F(e);return!(0,d.iB)(e)||!(0,f.Yv)(t)}return!1}))},V=function(e){return e.some((function(e){if((0,f.Xh)(e)){var t=F(e);return!(0,d.iB)(e)||!(0,f.Yv)(t)}return(0,d.iB)(e)}))},X=function(e,t,n,r){var i=(0,h.eD)(e,t);if(1===i.length)return(0,f.mG)(i[0],!1)?i[0]:null;for(var a=null,l=e.length-1;l>=0;--l)if(!e[l].isDeleted){var c=(0,d.qf)(e[l]),s=(0,o.Z)(c,4),u=s[0],p=s[1],g=s[2],v=s[3];if((0,f.Yv)(e[l])&&(0,m.Qu)(e[l],t,null,[n,r])){a=e[l];break}if(u<n&&n<g&&p<r&&r<v){a=e[l];break}}return(0,f.mG)(a,!1)?a:null},q=new Set(["rectangle","ellipse","diamond","image","arrow"]),$=function(e){return q.has(e.type)},J=function(e,t){e=Math.ceil(e);var n=2*s.gK;return"ellipse"===t?Math.round((e+n)/Math.sqrt(2)*2):"arrow"===t?e+8*n:"diamond"===t?2*(e+n):e+n},Q=function(e){var t=W(e).width;return(0,f.Yv)(e)?t-8*s.gK*2:"ellipse"===e.type?Math.round(t/2*Math.sqrt(2))-2*s.gK:"diamond"===e.type?Math.round(t/2)-2*s.gK:t-2*s.gK},ee=function(e,t){var n=W(e).height;return(0,f.Yv)(e)?n-8*s.gK*2<=0?t.height:n:"ellipse"===e.type?Math.round(n/2*Math.sqrt(2))-2*s.gK:"diamond"===e.type?Math.round(n/2)-2*s.gK:n-2*s.gK},te=function(){return D(R,(0,l.mO)({fontSize:s.n5,fontFamily:s.rk}))>0},ne=(r={},(0,a.Z)(r,s.ut.Virgil,1.25),(0,a.Z)(r,s.ut.Helvetica,1.15),(0,a.Z)(r,s.ut.Cascadia,1.2),r),re=function(e){return e in ne?ne[e]:ne[s.rk]}},6906:function(e,t,n){"use strict";n.d(t,{b_:function(){return j},eR:function(){return O},h_:function(){return E},kT:function(){return S}});var r=n(8950),o=n(7169),i=n(2577),a=n(2975),l=n.n(a),c=n(6066),s=n(6340),u=n(1564),d=n(1974),f=n(2335),p=n(1935),h=n(5710),m=n(6208),g=n(2416),v=n(6938),b=n(6665);function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function x(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?y(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):y(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var w=function(e,t,n,r,o,i){var a=r.zoom,l=180*n/Math.PI,c=e*(a.value-1)/2,s=t*(a.value-1)/2;return e>o&&1!==a.value&&(c=o*(a.value-1)/2),t>i&&1!==a.value&&(s=i*(a.value-1)/2),"translate(".concat(c,"px, ").concat(s,"px) scale(").concat(a.value,") rotate(").concat(l,"deg)")},k={},E=function(e,t){var n=k[e]||(k[e]={height:t});return n.height=t,n},S=function(e){k[e]&&delete k[e]},O=function(e){var t,n;return null!==(t=null===(n=k[e])||void 0===n?void 0:n.height)&&void 0!==t?t:null},j=function(e){var t=e.id,n=e.onChange,o=e.onSubmit,a=e.getViewportCoords,y=e.element,S=e.canvas,O=e.excalidrawContainer,j=e.app,_=function(){var e,n=j.state,r=null===(e=u.Z.getScene(y))||void 0===e?void 0:e.getElement(t);if(r){var o=r.textAlign,l=r.verticalAlign;if(r&&(0,d.iB)(r)){var c=r.x,m=r.y,g=(0,h.tl)(r),b=r.width,S=r.height,O=r.width,_=r.height;if(g&&r.containerId){if((0,d.Yv)(g)){var I=v._.getBoundTextElementPosition(g,r);c=I.x,m=I.y}var T,P=function(e,t){if(!t.style.fontFamily||!t.style.fontSize)return!1;var n=t.style.fontFamily.replace(/"/g,"");return(0,s.$g)({fontFamily:e.fontFamily})!==n||"".concat(e.fontSize,"px")!==t.style.fontSize}(r,C),M=(0,h.HE)(g);if(P?T=E(g.id,M.height):(T=k[g.id])||(T=E(g.id,M.height)),b=(0,h.iZ)(g),S=(0,h.D9)(g,r),!(0,d.Yv)(g)&&_>S){var D=(0,h.NS)(_,g.type);return void(0,p.DR)(g,{height:D})}if(!(0,d.Yv)(g)&&M.height>T.height&&_<S){var A=(0,h.NS)(_,g.type);(0,p.DR)(g,{height:A})}else{m=(0,h.FE)(g,r).y}}var L=a(c,m),Z=(0,i.Z)(L,2),R=Z[0],z=Z[1],N=C.selectionStart,B=C.selectionEnd,H=C.value.length;if(N===B&&B!==H){var F=H-B;C.selectionStart=C.value.length-F,C.selectionEnd=C.value.length-F}g?O+=.5:(b=(n.width-8-R)/n.zoom.value,O=Math.min(O,b));var W=r.lineHeight;f.G6&&(W=(0,h.$2)(x(x({},r),{},{fontSize:Math.round(r.fontSize)})));var U=(n.height-z)/n.zoom.value;Object.assign(C.style,{font:(0,s.mO)(r),lineHeight:W,width:"".concat(O,"px"),height:"".concat(_,"px"),left:"".concat(R,"px"),top:"".concat(z,"px"),transform:w(O,_,(0,h.H_)(r),n,b,U),textAlign:o,verticalAlign:l,color:r.strokeColor,opacity:r.opacity/100,filter:"var(--theme-filter)",maxHeight:"".concat(U,"px")}),C.scrollTop=0,(0,s.h2)()&&(C.style.fontFamily=(0,s.$g)(r)),(0,p.DR)(r,{x:c,y:m})}}},C=document.createElement("textarea");C.dir="auto",C.tabIndex=0,C.dataset.type="wysiwyg",C.wrap="off",C.classList.add("excalidraw-wysiwyg");var I="pre",T="normal";(0,d.Xh)(y)&&(I="pre-wrap",T="break-word"),Object.assign(C.style,{position:"absolute",display:"inline-block",minHeight:"1em",backfaceVisibility:"hidden",margin:0,padding:0,border:0,outline:0,resize:"none",background:"transparent",overflow:"hidden",zIndex:"var(--zIndex-wysiwyg)",wordBreak:T,whiteSpace:I,overflowWrap:"break-word",boxSizing:"content-box"}),C.value=y.originalText,_(),n&&(C.onpaste=function(){var e=(0,r.Z)(l().mark((function e(t){var n,r,o,i,a,c;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,(0,b.mQ)(t,!0);case 2:if((n=e.sent).text){e.next=5;break}return e.abrupt("return");case 5:if(r=(0,h.bG)(n.text)){e.next=8;break}return e.abrupt("return");case 8:o=(0,h.tl)(y),i=(0,s.mO)({fontSize:j.state.currentItemFontSize,fontFamily:j.state.currentItemFontFamily}),o&&(a=(0,h.lD)("".concat(C.value).concat(r),i,(0,h.iZ)(o)),c=(0,h.mY)(a,i),C.style.width="".concat(c,"px"));case 11:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),C.oninput=function(){n((0,h.bG)(C.value))}),C.onkeydown=function(e){if(!e.shiftKey&&g.Lo.keyTest(e))e.preventDefault(),j.actionManager.executeAction(g.Lo),_();else if(!e.shiftKey&&g.CZ.keyTest(e))e.preventDefault(),j.actionManager.executeAction(g.CZ),_();else if(m.Tu.keyTest(e))j.actionManager.executeAction(m.Tu);else if(m.Zq.keyTest(e))j.actionManager.executeAction(m.Zq);else if(e.key===c.tW.ESCAPE)e.preventDefault(),R=!0,z();else if(e.key===c.tW.ENTER&&e[c.tW.CTRL_OR_CMD]){if(e.preventDefault(),e.isComposing||229===e.keyCode)return;R=!0,z()}else if(e.key===c.tW.TAB||e[c.tW.CTRL_OR_CMD]&&(e.code===c.aU.BRACKET_LEFT||e.code===c.aU.BRACKET_RIGHT)){if(e.preventDefault(),e.isComposing)return;e.shiftKey||e.code===c.aU.BRACKET_LEFT?A():D(),C.dispatchEvent(new Event("input"))}};var P=" ".repeat(4),M=new RegExp("^ {1,".concat(4,"}")),D=function(){var e=C.selectionStart,t=C.selectionEnd,n=L(),r=C.value;n.forEach((function(e){var t=r.slice(0,e),n=r.slice(e);r="".concat(t).concat(P).concat(n)})),C.value=r,C.selectionStart=e+4,C.selectionEnd=t+4*n.length},A=function(){var e=C.selectionStart,t=C.selectionEnd,n=L(),r=[],o=C.value;n.forEach((function(e){var t=o.slice(e,e+4).match(M);if(t){var n=o.slice(0,e),i=o.slice(e+t[0].length);o="".concat(n).concat(i),r.push(e)}})),C.value=o,r.length&&(e>r[r.length-1]?C.selectionStart=Math.max(e-4,r[r.length-1]):C.selectionStart=e,C.selectionEnd=Math.max(C.selectionStart,t-4*r.length))},L=function(){var e=C.selectionStart,t=C.selectionEnd,n=C.value,r=n.slice(0,e).match(/[^\n]*$/)[0].length;return e-=r,n.slice(e,t).split("\n").reduce((function(t,n,r,o){return t.concat(r?t[r-1]+o[r-1].length+1:e)}),[]).reverse()},Z=function(e){e.preventDefault(),e.stopPropagation()},R=!1,z=function(){var e;N();var t=null===(e=u.Z.getScene(y))||void 0===e?void 0:e.getElement(y.id);if(t){var n=C.value,r=(0,h.tl)(t);if(r){if(n=t.text,C.value.trim()){var i=(0,h.xB)(r);i&&i===y.id||(0,p.DR)(r,{boundElements:(r.boundElements||[]).concat({type:"text",id:y.id})})}else{var a;(0,p.DR)(r,{boundElements:null===(a=r.boundElements)||void 0===a?void 0:a.filter((function(e){return!(0,d.iB)(e)}))})}(0,h.oN)(t,r)}o({text:n,viaKeyboard:R,originalText:C.value})}},N=function(){W||(W=!0,C.onblur=null,C.oninput=null,C.onkeydown=null,U&&U.disconnect(),window.removeEventListener("resize",_),window.removeEventListener("wheel",Z,!0),window.removeEventListener("pointerdown",H),window.removeEventListener("pointerup",B),window.removeEventListener("blur",z),F(),C.remove())},B=function e(t){window.removeEventListener("pointerup",e);var n=null==t?void 0:t.target,r=n instanceof HTMLElement&&n.classList.contains("active-color");setTimeout((function(){if(C.onblur=z,r){var e=new MutationObserver((function(e,t){e.find((function(e){var t;return e.removedNodes.length>0&&void 0!==(null===(t=e.removedNodes[0].dataset)||void 0===t?void 0:t.radixPopperContentWrapper)}))&&(setTimeout((function(){C.focus()})),t.disconnect())}));e.observe(document.querySelector(".excalidraw-container"),{childList:!0})}r||C.focus()}))},H=function(e){var t=e.target instanceof HTMLElement&&e.target.classList.contains("active-color");((e.target instanceof HTMLElement||e.target instanceof SVGElement)&&e.target.closest(".".concat(f.$C.SHAPE_ACTIONS_MENU))&&!(0,s.s)(e.target)||t)&&(C.onblur=null,window.addEventListener("pointerup",B),window.addEventListener("blur",z))},F=u.Z.getScene(y).addCallback((function(){var e;_(),!(null===(e=document.activeElement)||void 0===e||!e.closest(".color-picker-content"))||C.focus()})),W=!1;C.select(),B();var U=null;S&&"ResizeObserver"in window?(U=new window.ResizeObserver((function(){_()}))).observe(S):window.addEventListener("resize",_),window.addEventListener("pointerdown",H),window.addEventListener("wheel",Z,{passive:!1,capture:!0}),null==O||O.querySelector(".excalidraw-textEditorContainer").appendChild(C)}},267:function(e,t,n){"use strict";n.d(t,{Fn:function(){return d},PC:function(){return v},kK:function(){return g},oY:function(){return b},ox:function(){return u}});var r=n(2577),o=n(8925),i=n(6552),a=n(1047),l=n(1974),c=n(2438),s={mouse:8,pen:16,touch:28},u={e:!0,s:!0,n:!0,w:!0},d={e:!0,s:!0,n:!0,w:!0,rotation:!0},f={e:!0,s:!0,n:!0,w:!0},p={e:!0,s:!0,n:!0,w:!0,nw:!0,se:!0},h={e:!0,s:!0,n:!0,w:!0},m=function(e,t,n,o,a,l,c){var s=(0,i.U1)(e+n/2,t+o/2,a,l,c),u=(0,r.Z)(s,2);return[u[0]-n/2,u[1]-o/2,n,o]},g=function(e,t,n,o){var i=(0,r.Z)(e,6),a=i[0],l=i[1],u=i[2],d=i[3],f=i[4],p=i[5],h=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},g=arguments.length>5&&void 0!==arguments[5]?arguments[5]:4,v=s[o],b=v/n.value,y=v/n.value,x=v/n.value,w=v/n.value,k=u-a,E=d-l,S=g/n.value,O=(v-2*c.Lu)/(2*n.value),j={nw:h.nw?void 0:m(a-S-x+O,l-S-w+O,b,y,f,p,t),ne:h.ne?void 0:m(u+S-O,l-S-w+O,b,y,f,p,t),sw:h.sw?void 0:m(a-S-x+O,d+S-O,b,y,f,p,t),se:h.se?void 0:m(u+S-O,d+S-O,b,y,f,p,t),rotation:h.rotation?void 0:m(a+k/2-b/2,l-S-w+O-16/n.value,b,y,f,p,t)},_=5*s.mouse/n.value;return Math.abs(k)>_&&(h.n||(j.n=m(a+k/2-b/2,l-S-w+O,b,y,f,p,t)),h.s||(j.s=m(a+k/2-b/2,d+S-O,b,y,f,p,t))),Math.abs(E)>_&&(h.w||(j.w=m(a-S-x+O,l+E/2-y/2,b,y,f,p,t)),h.e||(j.e=m(u+S-O,l+E/2-y/2,b,y,f,p,t))),j},v=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"mouse";if(e.locked)return{};var i={};if("freedraw"===e.type||(0,l.bt)(e)){if(2===e.points.length){var s=(0,r.Z)(e.points,2),u=s[1];0===u[0]||0===u[1]?i=h:u[0]>0&&u[1]<0?i=p:u[0]>0&&u[1]>0?i=h:u[0]<0&&u[1]>0?i=p:u[0]<0&&u[1]<0&&(i=h)}}else(0,a.iB)(e)?i=f:(0,l.He)(e)&&(i={rotation:!0});var d=(0,l.bt)(e)?c.Lu+8:c.Lu;return g((0,o.qf)(e,!0),e.angle,t,n,i,d)},b=function(e,t){if(t.editingLinearElement)return!1;if(e.length>1)return!0;var n=e[0];return!(0,l.bt)(n)||n.points.length>2}},1974:function(e,t,n){"use strict";n.d(t,{F9:function(){return c},He:function(){return l},Lx:function(){return h},Mn:function(){return p},QI:function(){return x},UQ:function(){return k},Xh:function(){return y},Xo:function(){return b},Yv:function(){return d},bt:function(){return u},dt:function(){return f},eK:function(){return w},f0:function(){return m},iB:function(){return a},mG:function(){return g},pC:function(){return i},r2:function(){return v},wi:function(){return o}});var r=n(2335),o=function(e){return!!e&&"image"===e.type&&!!e.fileId},i=function(e){return!!e&&"image"===e.type},a=function(e){return null!=e&&"text"===e.type},l=function(e){return null!=e&&"frame"===e.type},c=function(e){return null!=e&&s(e.type)},s=function(e){return"freedraw"===e},u=function(e){return null!=e&&f(e.type)},d=function(e){return null!=e&&"arrow"===e.type},f=function(e){return"arrow"===e||"line"===e},p=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return null!=e&&(!e.locked||!0===t)&&h(e.type)},h=function(e){return"arrow"===e},m=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return!(null==e||e.locked&&!0!==t||"rectangle"!==e.type&&"diamond"!==e.type&&"ellipse"!==e.type&&"image"!==e.type&&("text"!==e.type||e.containerId))},g=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return null!=e&&(!e.locked||!0===t)&&("rectangle"===e.type||"diamond"===e.type||"ellipse"===e.type||"image"===e.type||d(e))},v=function(e){return"text"===(null==e?void 0:e.type)||"diamond"===(null==e?void 0:e.type)||"rectangle"===(null==e?void 0:e.type)||"ellipse"===(null==e?void 0:e.type)||"arrow"===(null==e?void 0:e.type)||"freedraw"===(null==e?void 0:e.type)||"line"===(null==e?void 0:e.type)},b=function(e){var t;return g(e)&&!(null===(t=e.boundElements)||void 0===t||!t.some((function(e){return"text"===e.type})))},y=function(e){return null!==e&&"containerId"in e&&null!==e.containerId&&a(e)},x=function(e){return"rectangle"===e},w=function(e,t){return!(e!==r.a6.ADAPTIVE_RADIUS&&e!==r.a6.LEGACY||!x(t.type))||e===r.a6.PROPORTIONAL_RADIUS&&("line"===(n=t.type)||"arrow"===n||"diamond"===n);var n},k=function(e){return"arrow"===e.type||"line"===e.type||"diamond"===e.type?{type:r.a6.PROPORTIONAL_RADIUS}:"rectangle"===e.type?{type:r.a6.ADAPTIVE_RADIUS}:null}},6797:function(e,t,n){"use strict";n.d(t,{_:function(){return h},l:function(){return p}});var r=n(5169),o=n(8821),i=n(2248),a=n(7245),l=n(2312),c=n(5901);function s(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}function u(e,t,n){return u=s()?Reflect.construct.bind():function(e,t,n){var r=[null];r.push.apply(r,t);var o=new(Function.bind.apply(e,r));return n&&(0,c.Z)(o,n.prototype),o},u.apply(null,arguments)}function d(e){var t="function"==typeof Map?new Map:void 0;return d=function(e){if(null===e||(n=e,-1===Function.toString.call(n).indexOf("[native code]")))return e;var n;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,r)}function r(){return u(e,arguments,(0,l.Z)(this).constructor)}return r.prototype=Object.create(e.prototype,{constructor:{value:r,enumerable:!1,writable:!0,configurable:!0}}),(0,c.Z)(r,e)},d(e)}function f(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=(0,l.Z)(e);if(t){var o=(0,l.Z)(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return(0,a.Z)(this,n)}}var p=function(e){(0,i.Z)(n,e);var t=f(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Couldn't export canvas.",i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"CANVAS_ERROR";return(0,o.Z)(this,n),(e=t.call(this)).name=i,e.message=r,e}return(0,r.Z)(n)}(d(Error)),h=function(e){(0,i.Z)(n,e);var t=f(n);function n(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Request Aborted";return(0,o.Z)(this,n),t.call(this,e,"AbortError")}return(0,r.Z)(n)}(d(DOMException))},9040:function(e,t,n){"use strict";n.d(t,{$Z:function(){return M},A_:function(){return D},Dn:function(){return _},Qs:function(){return B},SH:function(){return C},Tq:function(){return R},cH:function(){return N},cO:function(){return j},fj:function(){return P},lz:function(){return A},ni:function(){return T},pr:function(){return Z},wO:function(){return I},xr:function(){return y},yZ:function(){return L}});var r=n(1930),o=n(2577),i=n(5169),a=n(8821),l=n(1047),c=n(6552),s=n(5710),u=n(6340),d=n(1935),f=n(75),p=n(7642),h=n(242),m=n(1564),g=n(8925);function v(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return b(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return b(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function b(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var y=function(e,t,n){var r,o=(0,u.xn)(e),i=v(t);try{for(i.s();!(r=i.n()).done;){var a=r.value;if(a.frameId){var l=n.get(a.id),c=n.get(a.frameId);if(l){var s=o.get(l);s&&(0,d.DR)(s,{frameId:null!=c?c:a.frameId},!1)}}}}catch(e){i.e(e)}finally{i.f()}},x=(0,i.Z)((function e(t,n){(0,a.Z)(this,e),this.x=t,this.y=n})),w=function(){function e(t,n){(0,a.Z)(this,e),this.first=t,this.second=n}return(0,i.Z)(e,[{key:"getBoundingBox",value:function(){return[new x(Math.min(this.first.x,this.second.x),Math.min(this.first.y,this.second.y)),new x(Math.max(this.first.x,this.second.x),Math.max(this.first.y,this.second.y))]}}]),e}(),k=function(){function e(){(0,a.Z)(this,e)}return(0,i.Z)(e,null,[{key:"crossProduct",value:function(e,t){return e.x*t.y-t.x*e.y}},{key:"doBoundingBoxesIntersect",value:function(e,t){return e[0].x<=t[1].x&&e[1].x>=t[0].x&&e[0].y<=t[1].y&&e[1].y>=t[0].y}},{key:"isPointOnLine",value:function(e,t){var n=new w(new x(0,0),new x(e.second.x-e.first.x,e.second.y-e.first.y)),r=new x(t.x-e.first.x,t.y-e.first.y),o=this.crossProduct(n.second,r);return Math.abs(o)<this.EPSILON}},{key:"isPointRightOfLine",value:function(e,t){var n=new w(new x(0,0),new x(e.second.x-e.first.x,e.second.y-e.first.y)),r=new x(t.x-e.first.x,t.y-e.first.y);return this.crossProduct(n.second,r)<0}},{key:"lineSegmentTouchesOrCrossesLine",value:function(e,t){return this.isPointOnLine(e,t.first)||this.isPointOnLine(e,t.second)||(this.isPointRightOfLine(e,t.first)?!this.isPointRightOfLine(e,t.second):this.isPointRightOfLine(e,t.second))}},{key:"doLineSegmentsIntersect",value:function(e,t){var n=new w(new x(e[0][0],e[0][1]),new x(e[1][0],e[1][1])),r=new w(new x(t[0][0],t[0][1]),new x(t[1][0],t[1][1])),o=n.getBoundingBox(),i=r.getBoundingBox();return this.doBoundingBoxesIntersect(o,i)&&this.lineSegmentTouchesOrCrossesLine(n,r)&&this.lineSegmentTouchesOrCrossesLine(r,n)}},{key:"isElementIntersectingFrame",value:function(e,t){var n=this,r=(0,g.GJ)(t),o=(0,g.GJ)(e);return r.some((function(e){return o.some((function(t){return n.doLineSegmentsIntersect(e,t)}))}))}}]),e}();k.EPSILON=1e-6;var E=function(e,t){return z((0,f.Yp)(e,t,!1)).filter((function(e){return"frame"!==e.type&&!e.frameId||e.frameId===t.id}))},S=function(e,t,n){return(0,f.Yp)(e,t).some((function(e){return e.id===n.id}))},O=function(e,t){var n=(0,l.qf)(t),r=(0,o.Z)(n,4),i=r[0],a=r[1],c=r[2],s=r[3],u=(0,l.KP)(e),d=(0,o.Z)(u,4),f=d[0],p=d[1],h=d[2],m=d[3];return i<=f&&a<=p&&c>=h&&s>=m},j=function(e,t){return O([e],t)||k.isElementIntersectingFrame(e,t)||S([t],e,t)},_=function(e,t){var n=(0,l.qf)(t),r=(0,o.Z)(n,4),i=r[0],a=r[1],s=r[2],u=r[3];return(0,c.Ni)([i,a],[e.x,e.y],[s,u])},C=function(e){var t,n=new Map,r=v(e);try{for(r.s();!(t=r.n()).done;){var o=t.value,i=(0,l.He)(o)?o.id:o.frameId;i&&!n.has(i)&&n.set(i,I(e,i))}}catch(e){r.e(e)}finally{r.f()}return n},I=function(e,t){return e.filter((function(e){return e.frameId===t}))},T=function(e,t,n){var i,a=I(e,t.id),c=new Set(a),s=new Set([].concat((0,r.Z)(E(e,t)),(0,r.Z)(a.filter((function(n){return S(e,n,t)}))))),u=a.filter((function(e){return!s.has(e)})),d=new Set(Array.from(s).flatMap((function(e){return e.groupIds}))),f=v(u);try{for(f.s();!(i=f.n()).done;){var p=i.value;if(k.isElementIntersectingFrame(p,t)){if(p.groupIds.length>0){var m,g=v(p.groupIds);try{for(g.s();!(m=g.n()).done;){var b=m.value;d.add(b)}}catch(e){g.e(e)}finally{g.f()}}}else 0===p.groupIds.length&&c.delete(p)}}catch(e){f.e(e)}finally{f.f()}var y,x=v(u);try{for(x.s();!(y=x.n()).done;){var w=y.value;if(w.groupIds.length>0){var j,_=!0,C=v(w.groupIds);try{for(C.s();!(j=C.n()).done;){var T=j.value;d.has(T)&&(_=!1)}}catch(e){C.e(e)}finally{C.f()}_&&c.delete(w)}}}catch(e){x.e(e)}finally{x.f()}var P,M=Array.from(s).filter((function(e){return 0===e.groupIds.length})),D=v(M);try{for(D.s();!(P=D.n()).done;){var A=P.value;c.add(A)}}catch(e){D.e(e)}finally{D.f()}for(var L=Array.from(s).filter((function(e){return e.groupIds.length>0})),Z=(0,h.yR)(L,n),R=0,z=Object.entries(Z);R<z.length;R++){var N=(0,o.Z)(z[R],2),B=N[0];if(N[1]){var H=(0,h.Fb)(e,B);if(O(H,t)){var F,W=v(H);try{for(W.s();!(F=W.n()).done;){var U=F.value;c.add(U)}}catch(e){W.e(e)}finally{W.f()}}}}return(0,r.Z)(c).filter((function(e){return!((0,l.iB)(e)&&e.containerId)}))},P=function(e,t){return z(e,E(e,t))},M=function(e,t){var n;return e.frameId?t?t.get(e.frameId)||null:(null===(n=m.Z.getScene(e))||void 0===n?void 0:n.getElement(e.frameId))||null:null},D=function(e,t,n){var o,i=[],a=v(t);try{for(a.s();!(o=a.n()).done;){var c=o.value;i.push(c);var f=(0,s.WJ)(c);f&&i.push(f)}}catch(e){a.e(e)}finally{a.f()}var p,h=e.slice(),m=(0,u.cx)(h,(function(e){return e.frameId===n.id})),g=v(z(e,i));try{var b=function(){var e=p.value;if(e.frameId!==n.id&&!(0,l.He)(e)){(0,d.DR)(e,{frameId:n.id},!1);var t=(0,u.cx)(h,(function(e){return e.id===n.id})),o=(0,u.cx)(h,(function(t){return t.id===e.id}));o<m?h=[].concat((0,r.Z)(h.slice(0,o)),(0,r.Z)(h.slice(o+1,m)),[e],(0,r.Z)(h.slice(m))):o>t&&(h=[].concat((0,r.Z)(h.slice(0,t)),[e],(0,r.Z)(h.slice(t,o)),(0,r.Z)(h.slice(o+1))))}};for(g.s();!(p=g.n()).done;)b()}catch(e){g.e(e)}finally{g.f()}return h},A=function(e,t,n){var r,o=[],i=v(t);try{for(i.s();!(r=i.n()).done;){var a=r.value;if(a.frameId){o.push(a);var l=(0,s.WJ)(a);l&&o.push(l)}}}catch(e){i.e(e)}finally{i.f()}for(var c=0,u=o;c<u.length;c++){var f=u[c];(0,d.DR)(f,{frameId:null},!1)}return(0,p.jY)(e,n,Array.from(o))},L=function(e,t,n){var r=I(e,t.id);return A(e,r,n)},Z=function(e,t,n,r){return D(L(e,n,r),t,n)},R=function(e,t){var n=(0,f.eD)(e,t),o=new Set(n);if(t.editingGroupId){var i,a=v(n);try{for(a.s();!(i=a.n()).done;){var c=i.value;0===c.groupIds.length?o.add(c):c.groupIds.flatMap((function(t){return(0,h.Fb)(e,t)})).forEach((function(e){return o.add(e)}))}}catch(e){a.e(e)}finally{a.f()}}var s=new Set;return o.forEach((function(n){(0,l.He)(n)||B(n,e,t)||s.add(n)})),A(e,(0,r.Z)(s),t)},z=function(e,t){var n,r=new Set,o=v(t||e);try{for(o.s();!(n=o.n()).done;){var i=n.value,a=i.groupIds[i.groupIds.length-1];a&&r.add(a)}}catch(e){o.e(e)}finally{o.f()}var c,s=new Set,u=v(r);try{for(u.s();!(c=u.n()).done;){var d=c.value;(0,h.Fb)(e,d).some((function(e){return(0,l.He)(e)}))&&s.add(d)}}catch(e){u.e(e)}finally{u.f()}return(t||e).filter((function(e){return!s.has(e.groupIds[e.groupIds.length-1])}))},N=function(e,t){var n=(0,l.iB)(e)&&(0,s.tl)(e)||e;return t.selectedElementIds[n.id]&&t.selectedElementsAreBeingDragged?t.frameToHighlight:M(n)},B=function(e,t,n){var r=N(e,n),o=(0,l.iB)(e)&&(0,s.tl)(e)||e;if(r){if(0===o.groupIds.length)return j(o,r);var i=new Set(o.groupIds.flatMap((function(e){return(0,h.Fb)(t,e)})));if(n.editingGroupId&&n.selectedElementsAreBeingDragged){var a=new Set((0,f.eD)(t,n));if(null!==n.frameToHighlight)return!0;a.forEach((function(e){i.delete(e)}))}var c,u=v(i);try{for(u.s();!(c=u.n()).done;){var d=c.value;if((0,l.He)(d))return!1}}catch(e){u.e(e)}finally{u.f()}var p,m=v(i);try{for(m.s();!(p=m.n()).done;){var g=p.value;if(j(g,r))return!0}}catch(e){m.e(e)}finally{m.f()}}return!1}},242:function(e,t,n){"use strict";n.d(t,{AI:function(){return O},F$:function(){return f},Fb:function(){return x},Nd:function(){return y},Qy:function(){return k},S_:function(){return E},YS:function(){return w},bO:function(){return g},h6:function(){return S},iE:function(){return b},iJ:function(){return m},yO:function(){return h},yR:function(){return v},zq:function(){return p}});var r=n(1930),o=n(2577),i=n(7169),a=n(75),l=n(5710);function c(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function d(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?u(Object(n),!0).forEach((function(t){(0,i.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):u(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var f=function(e,t,n){var r=n.filter((function(t){return t.groupIds.includes(e)}));return r.length<2?t.selectedGroupIds[e]||t.editingGroupId===e?d(d({},t),{},{selectedGroupIds:d(d({},t.selectedGroupIds),{},(0,i.Z)({},e,!1)),editingGroupId:null}):t:d(d({},t),{},{selectedGroupIds:d(d({},t.selectedGroupIds),{},(0,i.Z)({},e,!0)),selectedElementIds:d(d({},t.selectedElementIds),Object.fromEntries(r.map((function(e){return[e.id,!0]}))))})},p=function(e,t){return null!=h(e,t)},h=function(e,t){return t.groupIds.filter((function(t){return t!==e.editingGroupId})).find((function(t){return e.selectedGroupIds[t]}))},m=function(e){return Object.entries(e.selectedGroupIds).filter((function(e){var t=(0,o.Z)(e,2);t[0];return t[1]})).map((function(e){var t=(0,o.Z)(e,2),n=t[0];t[1];return n}))},g=function(e,t){var n=d(d({},e),{},{selectedGroupIds:{}}),r=(0,a.eD)(t,e);if(!r.length)return d(d({},n),{},{editingGroupId:null});var o,i=c(r);try{for(i.s();!(o=i.n()).done;){var l=o.value.groupIds;if(e.editingGroupId){var s=l.indexOf(e.editingGroupId);s>-1&&(l=l.slice(0,s))}if(l.length>0){var u=l[l.length-1];n=f(u,n,t)}}}catch(e){i.e(e)}finally{i.f()}return n},v=function(e,t){var n,r=d(d({},t),{},{selectedGroupIds:{}}),o=c(e);try{for(o.s();!(n=o.n()).done;){var i=n.value.groupIds;if(t.editingGroupId){var a=i.indexOf(t.editingGroupId);a>-1&&(i=i.slice(0,a))}if(i.length>0){var l=i[i.length-1];r=f(l,r,e)}}}catch(e){o.e(e)}finally{o.f()}return r.selectedGroupIds},b=function(e,t){return d(d({},e),{},{editingGroupId:t.groupIds.length?t.groupIds[0]:null,selectedGroupIds:{},selectedElementIds:(0,i.Z)({},t.id,!0)})},y=function(e,t){return e.groupIds.includes(t)},x=function(e,t){return e.filter((function(e){return y(e,t)}))},w=function(e,t){return e.groupIds.find((function(e){return t[e]}))},k=function(e,t,n){for(var o=(0,r.Z)(e),i=t?e.indexOf(t):-1,a=i>-1?i:e.length,l=0;l<a;l++)o[l]=n(o[l]);return o},E=function(e,t,n){var o=(0,r.Z)(e),i=n?o.indexOf(n):-1,a=i>-1?i:o.length;return o.splice(a,0,t),o},S=function(e,t){return e.filter((function(e){return!t[e]}))},O=function(e){var t=new Map;return e.forEach((function(e){var n=0===e.groupIds.length?e.id:e.groupIds[e.groupIds.length-1],o=t.get(n)||[],i=(0,l.WJ)(e);i&&o.push(i),t.set(n,[].concat((0,r.Z)(o),[e]))})),Array.from(t.values())}},8101:function(e,t,n){"use strict";n.d(t,{F:function(){return c}});var r=n(1930),o=n(2577),i=n(9787),a=n(8993),l=n(96),c=function(e){var t=(0,i.useState)(null),n=(0,o.Z)(t,2),c=n[0],s=n[1],u=(0,a.Fy)(),d=(0,l.I)().theme,f=(0,i.useRef)(u.isMobile);f.current=u.isMobile;var p=(0,a.J0)().container;return(0,i.useLayoutEffect)((function(){c&&c.classList.toggle("excalidraw--mobile",u.isMobile)}),[c,u.isMobile]),(0,i.useLayoutEffect)((function(){var t,n,o=null!=e&&e.parentSelector?null==p?void 0:p.querySelector(e.parentSelector):document.body;if(o){var i=document.createElement("div");return(t=i.classList).add.apply(t,["excalidraw"].concat((0,r.Z)((null==e||null===(n=e.className)||void 0===n?void 0:n.split(/\s+/))||[]))),i.classList.toggle("excalidraw--mobile",f.current),i.classList.toggle("theme--dark","dark"===d),o.appendChild(i),s(i),function(){o.removeChild(i)}}}),[p,d,null==e?void 0:e.className,null==e?void 0:e.parentSelector]),c}},6127:function(e,t,n){"use strict";n.d(t,{YX:function(){return f},mF:function(){return h},yT:function(){return m}});var r=n(2577),o=n(8950),i=n(2975),a=n.n(i),l=n(3607),c=n(9787),s=n(56),u=n(9487),d=n(3024),f=(0,l.cn)(new Map),p=function(){var e=(0,o.Z)(a().mark((function e(t){return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,(0,d.$D)({data:{elements:t,appState:{exportBackground:!1,viewBackgroundColor:s.HO.white},files:null}});case 2:return e.abrupt("return",e.sent);case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),h=function(e,t,n){var i=(0,c.useState)(),l=(0,r.Z)(i,2),s=l[0],u=l[1];return(0,c.useEffect)((function(){if(t)if(e){var r=n.get(e);r?u(r):(0,o.Z)(a().mark((function r(){var o,i;return a().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,p(t);case 2:i=r.sent,null===(o=i.querySelector(".style-fonts"))||void 0===o||o.remove(),i&&(n.set(e,i),u(i));case 5:case"end":return r.stop()}}),r)})))()}else(0,o.Z)(a().mark((function e(){var n;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,p(t);case 2:n=e.sent,u(n);case 4:case"end":return e.stop()}}),e)})))()}),[e,t,n,u]),s},m=function(){var e=(0,l.KO)(f,u.yE),t=(0,r.Z)(e,1)[0];return{clearLibraryCache:function(){return t.clear()},deleteItemsFromLibraryCache:function(e){e.forEach((function(e){return t.delete(e)}))},svgCache:t}}},60:function(e,t,n){"use strict";n.d(t,{O:function(){return i}});var r=n(9787),o=n(2335);function i(e,t,n){(0,r.useEffect)((function(){function r(r){var o=r;if(e.current){var i=null==n?void 0:n(o,e.current);if(!0!==i){if(!1===i)return t(o);if(!e.current.contains(o.target)&&document.documentElement.contains(o.target))o.target.closest("[data-radix-portal]")||o.target===document.documentElement&&"none"===document.body.style.pointerEvents||o.target.closest("[data-prevent-outside-click]")||t(o)}}}return document.addEventListener(o.Ks.POINTER_DOWN,r),document.addEventListener(o.Ks.TOUCH_START,r),function(){document.removeEventListener(o.Ks.POINTER_DOWN,r),document.removeEventListener(o.Ks.TOUCH_START,r)}}),[e,t,n])}},5202:function(e,t,n){"use strict";n.d(t,{Fp:function(){return f},G3:function(){return b},Mj:function(){return p},m0:function(){return v},t:function(){return x},QT:function(){return k}});var r=n(8950),o=n(1930),i=n(2975),a=n.n(i),l=n(1463),c=JSON.parse('{"ar-SA":80,"az-AZ":20,"bg-BG":54,"bn-BD":60,"ca-ES":88,"cs-CZ":100,"da-DK":33,"de-DE":100,"el-GR":93,"en":100,"es-ES":89,"eu-ES":90,"fa-IR":89,"fi-FI":88,"fr-FR":89,"gl-ES":89,"he-IL":87,"hi-IN":78,"hu-HU":76,"id-ID":95,"it-IT":98,"ja-JP":89,"kaa":18,"kab-KAB":88,"kk-KZ":21,"km-KH":95,"ko-KR":100,"ku-TR":90,"lt-LT":56,"lv-LV":89,"mr-IN":96,"my-MM":41,"nb-NO":100,"nl-NL":83,"nn-NO":77,"oc-FR":87,"pa-IN":90,"pl-PL":100,"pt-BR":99,"pt-PT":95,"ro-RO":100,"ru-RU":100,"si-LK":9,"sk-SK":100,"sl-SI":100,"sv-SE":100,"ta-IN":85,"th-TH":39,"tr-TR":87,"uk-UA":97,"vi-VN":56,"zh-CN":100,"zh-HK":26,"zh-TW":100}'),s=n(2335),u=n(9487),d=n(3607),f={code:"en",label:"English"},p=[f].concat((0,o.Z)([{code:"ar-SA",label:"العربية",rtl:!0},{code:"bg-BG",label:"Български"},{code:"ca-ES",label:"Català"},{code:"cs-CZ",label:"Česky"},{code:"de-DE",label:"Deutsch"},{code:"el-GR",label:"Ελληνικά"},{code:"es-ES",label:"Español"},{code:"eu-ES",label:"Euskara"},{code:"fa-IR",label:"فارسی",rtl:!0},{code:"fi-FI",label:"Suomi"},{code:"fr-FR",label:"Français"},{code:"gl-ES",label:"Galego"},{code:"he-IL",label:"עברית",rtl:!0},{code:"hi-IN",label:"हिन्दी"},{code:"hu-HU",label:"Magyar"},{code:"id-ID",label:"Bahasa Indonesia"},{code:"it-IT",label:"Italiano"},{code:"ja-JP",label:"日本語"},{code:"kab-KAB",label:"Taqbaylit"},{code:"kk-KZ",label:"Қазақ тілі"},{code:"ko-KR",label:"한국어"},{code:"ku-TR",label:"Kurdî"},{code:"lt-LT",label:"Lietuvių"},{code:"lv-LV",label:"Latviešu"},{code:"my-MM",label:"Burmese"},{code:"nb-NO",label:"Norsk bokmål"},{code:"nl-NL",label:"Nederlands"},{code:"nn-NO",label:"Norsk nynorsk"},{code:"oc-FR",label:"Occitan"},{code:"pa-IN",label:"ਪੰਜਾਬੀ"},{code:"pl-PL",label:"Polski"},{code:"pt-BR",label:"Português Brasileiro"},{code:"pt-PT",label:"Português"},{code:"ro-RO",label:"Română"},{code:"ru-RU",label:"Русский"},{code:"sk-SK",label:"Slovenčina"},{code:"sv-SE",label:"Svenska"},{code:"sl-SI",label:"Slovenščina"},{code:"tr-TR",label:"Türkçe"},{code:"uk-UA",label:"Українська"},{code:"zh-CN",label:"简体中文"},{code:"zh-TW",label:"繁體中文"},{code:"vi-VN",label:"Tiếng Việt"},{code:"mr-IN",label:"मराठी"}].filter((function(e){return c[e.code]>=85})).sort((function(e,t){return e.label>t.label?1:-1})))),h="__test__";"production"===s.Vi.DEVELOPMENT&&p.unshift({code:h,label:"test language"},{code:"".concat(h,".rtl"),label:"‪test language (rtl)‬",rtl:!0});var m=f,g={},v=function(){var e=(0,r.Z)(a().mark((function e(t){return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(m=t,document.documentElement.dir=m.rtl?"rtl":"ltr",document.documentElement.lang=m.code,!t.code.startsWith(h)){e.next=7;break}g={},e.next=10;break;case 7:return e.next=9,Promise.resolve().then(n.t.bind(n,1463,19));case 9:g=e.sent;case 10:u.e_.set(w,t.code);case 11:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),b=function(){return m},y=function(e,t){for(var n=0;n<t.length;++n){var r=t[n];if(void 0===e[r])return;e=e[r]}if("string"==typeof e)return e},x=function(e,t,n){if(m.code.startsWith(h)){var r=t?"".concat(e,"(").concat(JSON.stringify(t).slice(1,-1),")"):e;return"‪[[".concat(r,"]]‬")}var o=e.split("."),i=y(g,o)||y(l,o)||n;if(void 0===i){var a="Can't find translation for ".concat(e);return console.warn(a),""}if(t)for(var c in t)i=i.replace("{{".concat(c,"}}"),String(t[c]));return i},w=(0,d.cn)(f.code),k=function(){var e=(0,d.Dv)(w,u.yE);return{t:x,langCode:e}}},9487:function(e,t,n){"use strict";n.d(t,{e_:function(){return i},yE:function(){return o}});var r=n(3607),o=(n(9787),Symbol()),i=(0,r.Vv)()},6066:function(e,t,n){"use strict";n.d(t,{E0:function(){return c},Ge:function(){return s},OA:function(){return l},Wl:function(){return a},aU:function(){return o},tW:function(){return i}});var r=n(2335),o={EQUAL:"Equal",MINUS:"Minus",NUM_ADD:"NumpadAdd",NUM_SUBTRACT:"NumpadSubtract",NUM_ZERO:"Numpad0",BRACKET_RIGHT:"BracketRight",BRACKET_LEFT:"BracketLeft",ONE:"Digit1",TWO:"Digit2",NINE:"Digit9",QUOTE:"Quote",ZERO:"Digit0",SLASH:"Slash",C:"KeyC",D:"KeyD",H:"KeyH",V:"KeyV",Z:"KeyZ",R:"KeyR"},i={ARROW_DOWN:"ArrowDown",ARROW_LEFT:"ArrowLeft",ARROW_RIGHT:"ArrowRight",ARROW_UP:"ArrowUp",PAGE_UP:"PageUp",PAGE_DOWN:"PageDown",BACKSPACE:"Backspace",ALT:"Alt",CTRL_OR_CMD:r.Um?"metaKey":"ctrlKey",DELETE:"Delete",ENTER:"Enter",ESCAPE:"Escape",QUESTION_MARK:"?",SPACE:" ",TAB:"Tab",CHEVRON_LEFT:"<",CHEVRON_RIGHT:">",PERIOD:".",COMMA:",",SUBTRACT:"-",A:"a",C:"c",D:"d",E:"e",F:"f",G:"g",H:"h",I:"i",L:"l",O:"o",P:"p",Q:"q",R:"r",S:"s",T:"t",V:"v",X:"x",Y:"y",Z:"z",K:"k",0:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9"},a=function(e){return e===i.ARROW_LEFT||e===i.ARROW_RIGHT||e===i.ARROW_DOWN||e===i.ARROW_UP},l=function(e){return e.altKey},c=function(e){return e.shiftKey},s=function(e){return e.shiftKey}},6552:function(e,t,n){"use strict";n.d(t,{EK:function(){return S},H5:function(){return u},Jj:function(){return E},LW:function(){return s},N_:function(){return y},Ni:function(){return p},U1:function(){return a},c9:function(){return f},eH:function(){return w},g6:function(){return d},lk:function(){return k},wC:function(){return g},xj:function(){return l},yB:function(){return b},yW:function(){return v},yq:function(){return c}});var r=n(2335),o=n(3063),i=n(8925),a=function(e,t,n,r,o){return[(e-n)*Math.cos(o)-(t-r)*Math.sin(o)+n,(e-n)*Math.sin(o)+(t-r)*Math.cos(o)+r]},l=function(e,t,n){return a(e[0],e[1],t[0],t[1],n)},c=function(e,t,n,r,o,i,a,l){var c=Math.cos(r),s=Math.sin(r);return e.e&&e.w?t+=o+a:e.e?(t+=o*(1+c),n+=o*s,t+=a*(1-c),n+=a*-s):e.w&&(t+=o*(1-c),n+=o*-s,t+=a*(1+c),n+=a*s),e.n&&e.s?n+=i+l:e.n?(t+=i*s,n+=i*(1-c),t+=l*-s,n+=l*(1+c)):e.s&&(t+=i*-s,n+=i*(1+c),t+=l*s,n+=l*(1-c)),[t,n]},s=function(e,t,n,r){var o=n-e,i=r-t;return Math.hypot(o,i)},u=function(e,t){return[(e[0]+t[0])/2,(e[1]+t[1])/2]},d=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;if(e.length>=3){var n=[e[0],e[e.length-1]],o=n[0],i=n[1],a=s(o[0],o[1],i[0],i[1]);return a<=r.qx/t}return!1},f=function(e,t,n){var r=e.length;if(r<3)return!1;for(var o=[Number.MAX_SAFE_INTEGER,n],i=[t,n],a=0,l=0;l<r;l++){var c=e[l],s=e[(l+1)%r];if(m(c,s,i,o)){if(0===h(c,i,s))return p(c,i,s);a++}}return a%2==1},p=function(e,t,n){return t[0]<=Math.max(e[0],n[0])&&t[0]>=Math.min(e[0],n[0])&&t[1]<=Math.max(e[1],n[1])&&t[1]>=Math.min(e[1],n[1])},h=function(e,t,n){var r=(t[1]-e[1])*(n[0]-t[0])-(t[0]-e[0])*(n[1]-t[1]);return 0===r?0:r>0?1:2},m=function(e,t,n,r){var o=h(e,t,n),i=h(e,t,r),a=h(n,r,e),l=h(n,r,t);return o!==i&&a!==l||(!(0!==o||!p(e,n,t))||(!(0!==i||!p(e,r,t))||(!(0!==a||!p(n,e,r))||!(0!==l||!p(n,t,r)))))},g=function(e,t,n){return n?[Math.round(e/n)*n,Math.round(t/n)*n]:[e,t]},v=function(e,t){var n,o,i;if((null===(n=t.roundness)||void 0===n?void 0:n.type)===r.a6.PROPORTIONAL_RADIUS||(null===(o=t.roundness)||void 0===o?void 0:o.type)===r.a6.LEGACY)return e*r.Rx;if((null===(i=t.roundness)||void 0===i?void 0:i.type)===r.a6.ADAPTIVE_RADIUS){var a,l,c=null!==(a=null===(l=t.roundness)||void 0===l?void 0:l.value)&&void 0!==a?a:r._9;return e<=c/r.Rx?e*r.Rx:c}return 0},b=function(e,t){var n=(0,o.R2)(e);if(!n)return null;for(var r=(0,i.CM)(n[0]),a=[0,0],l=0,c=1/0,u=null;l<r.length;){var d=r[l],f=d.op,p=d.data;if("move"===f&&(a=p),"bcurveTo"===f){var h=a,m=[p[0],p[1]],g=[p[2],p[3]],v=[p[4],p[5]],b=s(v[0],v[1],t[0],t[1]);b<c&&(c=b,u=[h,m,g,v]),a=v}l++}return u},y=function(e,t,n,r,o){var i=function(o,i){return Math.pow(1-o,3)*r[i]+3*o*Math.pow(1-o,2)*n[i]+3*Math.pow(o,2)*(1-o)*t[i]+e[i]*Math.pow(o,3)};return[i(o,0),i(o,1)]},x=function(e,t){var n=[];n[0]=0;for(var r=function(e,t){var n=b(e,t);if(!n)return[];for(var r=[],o=1;o>0;){var i=y(n[0],n[1],n[2],n[3],o);r.push([i[0],i[1]]),o-=.05}return r.length&&E(r.at(-1),t)&&r.push([t[0],t[1]]),r}(e,t),o=0,i=0;o<r.length-1;){i+=s(r[o][0],r[o][1],r[o+1][0],r[o+1][1]),n.push(i),o++}return n},w=function(e,t){return x(e,t).at(-1)},k=function(e,t,n){for(var r=x(e,t),o=r.length-1,i=n*r.at(-1),a=0,l=o,c=0;a<l;)r[c=Math.floor(a+(l-a)/2)]<i?a=c+1:l=c;return r[c]>i&&c--,r[c]===i?c/o:1-(c+(i-r[c])/(r[c+1]-r[c]))/o},E=function(e,t){return e[0]===t[0]&&e[1]===t[1]},S=function(e){return Math.round(e/Math.PI*1e4)%5e3==0}},3024:function(e,t,n){"use strict";n.d(t,{$D:function(){return E},Fl:function(){return k},I_:function(){return f.I_},N7:function(){return v.N7},NI:function(){return f.NI},NL:function(){return S},ZY:function(){return g.ZY},cT:function(){return g.cT},i1:function(){return O},lV:function(){return g.lV},zh:function(){return b.zh}});var r=n(7169),o=n(8950),i=n(2975),a=n.n(i),l=n(4162),c=n(1047),s=n(679),u=n(2335),d=n(673),f=n(5523),p=n(6665),h=n(1564),m=n(2791),g=n(434),v=n(3063),b=n(7053);function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function x(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?y(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):y(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var w=function(e){var t=new h.Z;return t.replaceAllElements((0,m._N)(e)),t.getNonDeletedElements()},k=function(){var e=(0,o.Z)(a().mark((function e(t){var n,r,i,c,s,p,h,m,g;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=t.data,i=t.config,s=(c=i||{}).mimeType,p=void 0===s?u.LO.png:s,h=c.quality,p===u.LO.png&&"number"==typeof h&&console.warn('"quality" will be ignored for "'.concat(u.LO.png,'" mimeType')),"image/jpg"===p&&(p=u.LO.jpg),p===u.LO.jpg&&!1==!(null!==(n=i)&&void 0!==n&&n.canvasBackgroundColor)&&(console.warn('Defaulting "exportBackground" to "true" for "'.concat(u.LO.jpg,'" mimeType')),i=x(x({},i),{},{canvasBackgroundColor:(null===(m=r.appState)||void 0===m?void 0:m.viewBackgroundColor)||u._4})),e.next=7,(0,l.NL)({data:x(x({},r),{},{elements:w(r.elements)}),config:i});case 7:return g=e.sent,h=h||(/image\/jpe?g/.test(p)?.92:.8),e.abrupt("return",new Promise((function(e,t){g.toBlob(function(){var n=(0,o.Z)(a().mark((function n(o){var i;return a().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(o){n.next=2;break}return n.abrupt("return",t(new Error("couldn't export to blob")));case 2:if(!o||p!==u.LO.png||null===(i=r.appState)||void 0===i||!i.exportEmbedScene){n.next=6;break}return n.next=5,(0,d.encodePngMetadata)({blob:o,metadata:(0,f.I_)(r.elements,r.appState,r.files||{},"local")});case 5:o=n.sent;case 6:e(o);case 7:case"end":return n.stop()}}),n)})));return function(e){return n.apply(this,arguments)}}(),p,h)})));case 10:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),E=function(){var e=(0,o.Z)(a().mark((function e(t){var n,r,o,i,u,d,p,h;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.data,r=t.config,o=(0,s.nu)(x(x({},n),{},{files:n.files||{}}),null,null),i=o.elements,u=o.appState,d=x(x({},u),{},{exportPadding:null==r?void 0:r.padding}),p=(0,c.Lm)(i),h=n.files||{},e.abrupt("return",(0,l.$D)(w(p),d,h,{serializeAsJSON:function(){return(0,f.I_)(p,d,h,"local")}}));case 6:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),S=function(){var e=(0,o.Z)(a().mark((function e(t){var n,r;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.data,r=t.config,e.abrupt("return",(0,l.NL)({data:x(x({},n),{},{elements:w(n.elements)}),config:r}));case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),O=function(){var e=(0,o.Z)(a().mark((function e(t){var n,r,o,i;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=t.type,r=t.data,o=t.config,"svg"!==n){e.next=9;break}return e.next=4,E({data:r,config:o});case 4:return i=e.sent,e.next=7,(0,p.dd)(i.outerHTML);case 7:case 12:case 17:e.next=20;break;case 9:if("png"!==n){e.next=14;break}return e.next=12,(0,p.uR)(k({data:r,config:o}));case 14:if("json"!==n){e.next=19;break}return e.next=17,(0,p.vQ)(r.elements,r.files);case 19:throw new Error("Invalid export type");case 20:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()},5001:function(e,t,n){"use strict";n.d(t,{k:function(){return o},z:function(){return i}});var r=n(1930),o=function(e){var t=e.map((function(e){return e[0]})),n=e.map((function(e){return e[1]}));return{width:Math.max.apply(Math,(0,r.Z)(t))-Math.min.apply(Math,(0,r.Z)(t)),height:Math.max.apply(Math,(0,r.Z)(n))-Math.min.apply(Math,(0,r.Z)(n))}},i=function(e,t,n,o){var i=n.map((function(t){return t[e]})),a=Math.max.apply(Math,(0,r.Z)(i)),l=Math.min.apply(Math,(0,r.Z)(i)),c=a-l,s=0===c?1:t/c,u=1/0,d=n.map((function(t){var n=t[e]*s,o=(0,r.Z)(t);return o[e]=n,n<u&&(u=n),o}));if(!o)return d;if(2===d.length)return d;var f=l-u;return d.map((function(t){return t.map((function(t,n){return n===e?t+f:t}))}))}},6954:function(e,t,n){"use strict";n.d(t,{LU:function(){return c},kb:function(){return s}});var r=n(8152),o=n(5605),i=n(6340),a=new r.k(Date.now()),l=0,c=function(){return Math.floor(a.next()*Math.pow(2,31))},s=function(){return(0,i.h2)()?"id".concat(l++):(0,o.x0)()}},3063:function(e,t,n){"use strict";n.d(t,{Dn:function(){return W},aL:function(){return J},i:function(){return Q},N7:function(){return se},R2:function(){return X},bI:function(){return $},lw:function(){return re},Rg:function(){return ae}});var r=n(1930),o=n(7169),i=n(2577),a=n(1974),l=n(8925),c=n(6340),s=n(6552),u=n(8234),d=n(8897),f=n(2335);function p(e,t,n,r=(e=>e)){return e*r(.5-t*(.5-n))}function h(e,t){return[e[0]+t[0],e[1]+t[1]]}function m(e,t){return[e[0]-t[0],e[1]-t[1]]}function g(e,t){return[e[0]*t,e[1]*t]}function v(e){return[e[1],-e[0]]}function b(e,t){return e[0]*t[0]+e[1]*t[1]}function y(e,t){return e[0]===t[0]&&e[1]===t[1]}function x(e,t){return function(e){return e[0]*e[0]+e[1]*e[1]}(m(e,t))}function w(e){return function(e,t){return[e[0]/t,e[1]/t]}(e,function(e){return Math.hypot(e[0],e[1])}(e))}function k(e,t){return Math.hypot(e[1]-t[1],e[0]-t[0])}function E(e,t,n){let r=Math.sin(n),o=Math.cos(n),i=e[0]-t[0],a=e[1]-t[1],l=i*r+a*o;return[i*o-a*r+t[0],l+t[1]]}function S(e,t,n){return h(e,g(m(t,e),n))}function O(e,t,n){return h(e,g(t,n))}var{min:j,PI:_}=Math,C=_+1e-4;function I(e,t={}){return function(e,t={}){let{size:n=16,smoothing:r=.5,thinning:o=.5,simulatePressure:i=!0,easing:a=(e=>e),start:l={},end:c={},last:s=!1}=t,{cap:u=!0,easing:d=(e=>e*(2-e))}=l,{cap:f=!0,easing:y=(e=>--e*e*e+1)}=c;if(0===e.length||n<=0)return[];let k,_=e[e.length-1].runningLength,I=!1===l.taper?0:!0===l.taper?Math.max(n,_):l.taper,T=!1===c.taper?0:!0===c.taper?Math.max(n,_):c.taper,P=Math.pow(n*r,2),M=[],D=[],A=e.slice(0,10).reduce(((e,t)=>{let r=t.pressure;if(i){let o=j(1,t.distance/n),i=j(1,1-o);r=j(1,e+.275*o*(i-e))}return(e+r)/2}),e[0].pressure),L=p(n,o,e[e.length-1].pressure,a),Z=e[0].vector,R=e[0].point,z=R,N=R,B=z,H=!1;for(let t=0;t<e.length;t++){let{pressure:r}=e[t],{point:l,vector:c,distance:s,runningLength:u}=e[t];if(t<e.length-1&&_-u<3)continue;if(o){if(i){let e=j(1,s/n),t=j(1,1-e);r=j(1,A+.275*e*(t-A))}L=p(n,o,r,a)}else L=n/2;void 0===k&&(k=L);let f=u<I?d(u/I):1,w=_-u<T?y((_-u)/T):1;L=Math.max(.01,L*Math.min(f,w));let O=(t<e.length-1?e[t+1]:e[t]).vector,F=t<e.length-1?b(c,O):1,W=null!==F&&F<0;if(b(c,Z)<0&&!H||W){let e=g(v(Z),L);for(let t=1/13,n=0;n<=1;n+=t)N=E(m(l,e),l,C*n),M.push(N),B=E(h(l,e),l,C*-n),D.push(B);R=N,z=B,W&&(H=!0);continue}if(H=!1,t===e.length-1){let e=g(v(c),L);M.push(m(l,e)),D.push(h(l,e));continue}let U=g(v(S(O,c,F)),L);N=m(l,U),(t<=1||x(R,N)>P)&&(M.push(N),R=N),B=h(l,U),(t<=1||x(z,B)>P)&&(D.push(B),z=B),A=r,Z=c}let F=e[0].point.slice(0,2),W=e.length>1?e[e.length-1].point.slice(0,2):h(e[0].point,[1,1]),U=[],K=[];if(1===e.length){if(!I&&!T||s){let e=O(F,w(v(m(F,W))),-(k||L)),t=[];for(let n=1/13,r=n;r<=1;r+=n)t.push(E(e,F,2*C*r));return t}}else{if(!(I||T&&1===e.length))if(u)for(let e=1/13,t=e;t<=1;t+=e){let e=E(D[0],F,C*t);U.push(e)}else{let e=m(M[0],D[0]),t=g(e,.5),n=g(e,.51);U.push(m(F,t),m(F,n),h(F,n),h(F,t))}let t=v(function(e){return[-e[0],-e[1]]}(e[e.length-1].vector));if(T||I&&1===e.length)K.push(W);else if(f){let e=O(W,t,L);for(let t=1/29,n=t;n<1;n+=t)K.push(E(e,W,3*C*n))}else K.push(h(W,g(t,L)),h(W,g(t,.99*L)),m(W,g(t,.99*L)),m(W,g(t,L)))}return M.concat(K,D.reverse(),U)}(function(e,t={}){var n;let{streamline:r=.5,size:o=16,last:i=!1}=t;if(0===e.length)return[];let a=.15+.85*(1-r),l=Array.isArray(e[0])?e:e.map((({x:e,y:t,pressure:n=.5})=>[e,t,n]));if(2===l.length){let e=l[1];l=l.slice(0,-1);for(let t=1;t<5;t++)l.push(S(l[0],e,t/4))}1===l.length&&(l=[...l,[...h(l[0],[1,1]),...l[0].slice(2)]]);let c=[{point:[l[0][0],l[0][1]],pressure:l[0][2]>=0?l[0][2]:.25,vector:[1,1],distance:0,runningLength:0}],s=!1,u=0,d=c[0],f=l.length-1;for(let e=1;e<l.length;e++){let t=i&&e===f?l[e].slice(0,2):S(d.point,l[e],a);if(y(d.point,t))continue;let n=k(t,d.point);if(u+=n,e<f&&!s){if(u<o)continue;s=!0}d={point:t,pressure:l[e][2]>=0?l[e][2]:.5,vector:w(m(d.point,t)),distance:n,runningLength:u},c.push(d)}return c[0].vector=(null==(n=c[1])?void 0:n.vector)||[0,0],c}(e,t),t)}var T=n(5710),P=n(6938),M=n(9040);function D(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function A(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?D(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):D(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var L="invert(100%) hue-rotate(180deg) saturate(1.25)",Z=(0,d.im)(),R=function(e,t){return(0,a.wi)(e)&&!t.imageCache.has(e.fileId)},z=function(e,t){var n;return"dark"===t.theme&&(0,a.wi)(e)&&!R(e,t)&&(null===(n=t.imageCache.get(e.fileId))||void 0===n?void 0:n.mimeType)!==f.LO.svg},N=function(e){return[8,8+e]},B=function(e){return[1.5,6+e]},H=function(e){return"freedraw"===e.type?12*e.strokeWidth:20},F=function(e,t,n){var r,o,s=document.createElement("canvas"),d=s.getContext("2d"),f=H(e),p=function(e,t){var n=16777216,r=32767,o=H(e),s=(0,l.qf)(e),u=(0,i.Z)(s,4),d=u[0],f=u[1],p=u[2],h=u[3],m=(0,a.bt)(e)||(0,a.F9)(e)?(0,c.TE)(d,p):e.width,g=(0,a.bt)(e)||(0,a.F9)(e)?(0,c.TE)(f,h):e.height,v=m*window.devicePixelRatio+2*o,b=g*window.devicePixelRatio+2*o,y=t.value;return(v*y>r||b*y>r)&&(y=Math.min(r/v,r/b)),v*b*y*y>n&&(y=Math.sqrt(n/(v*b))),{width:v=Math.floor(v*y),height:b=Math.floor(b*y),scale:y}}(e,t),h=p.width,m=p.height,g=p.scale;s.width=h,s.height=m;var v=0,b=0;if((0,a.bt)(e)||(0,a.F9)(e)){var y=(0,l.qf)(e),x=(0,i.Z)(y,2),w=x[0],k=x[1];v=e.x>w?(0,c.TE)(e.x,w)*window.devicePixelRatio*g:0,b=e.y>k?(0,c.TE)(e.y,k)*window.devicePixelRatio*g:0,d.translate(v,b)}d.save(),d.translate(f*g,f*g),d.scale(window.devicePixelRatio*g,window.devicePixelRatio*g);var E=u.Z.canvas(s);return z(e,n)&&(d.filter=L),Y(e,E,d,n),d.restore(),{element:e,canvas:s,theme:n.theme,scale:g,zoomValue:t.value,canvasOffsetX:v,canvasOffsetY:b,boundTextElementVersion:(null===(r=(0,T.WJ)(e))||void 0===r?void 0:r.version)||null,containingFrameOpacity:(null===(o=(0,M.$Z)(e))||void 0===o?void 0:o.opacity)||100}},W=14,U=document.createElement("img");U.src="data:".concat(f.LO.svg,",").concat(encodeURIComponent('<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="image" class="svg-inline--fa fa-image fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#888" d="M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"></path></svg>'));var K=document.createElement("img");K.src="data:".concat(f.LO.svg,",").concat(encodeURIComponent('<svg viewBox="0 0 668 668" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"><path d="M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48ZM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56ZM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48Z" style="fill:#888;fill-rule:nonzero" transform="matrix(.81709 0 0 .81709 124.825 145.825)"/><path d="M256 8C119.034 8 8 119.033 8 256c0 136.967 111.034 248 248 248s248-111.034 248-248S392.967 8 256 8Zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676ZM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676Z" style="fill:#888;fill-rule:nonzero" transform="matrix(.30366 0 0 .30366 506.822 60.065)"/></svg>'));var Y=function(e,t,n,r){var o,i;switch(n.globalAlpha=(null!==(o=null===(i=(0,M.$Z)(e))||void 0===i?void 0:i.opacity)&&void 0!==o?o:100)*e.opacity/1e4,e.type){case"rectangle":case"diamond":case"ellipse":n.lineJoin="round",n.lineCap="round",t.draw(X(e));break;case"arrow":case"line":n.lineJoin="round",n.lineCap="round",X(e).forEach((function(e){t.draw(e)}));break;case"freedraw":n.save(),n.fillStyle=e.strokeColor;var l=function(e){return le.get(e)}(e),s=X(e);s&&t.draw(s),n.fillStyle=e.strokeColor,n.fill(l),n.restore();break;case"image":var u,d=(0,a.wi)(e)?null===(u=r.imageCache.get(e.fileId))||void 0===u?void 0:u.image:void 0;null==d||d instanceof Promise?function(e,t,n){t.fillStyle="#E7E7E7",t.fillRect(0,0,e.width,e.height);var r=Math.min(e.width,e.height),o=Math.min(r,Math.min(.4*r,100));t.drawImage("error"===e.status?K:U,e.width/2-o/2,e.height/2-o/2,o,o)}(e,n,r.zoom.value):n.drawImage(d,0,0,e.width,e.height);break;default:if(!(0,a.iB)(e))throw new Error("Unimplemented type ".concat(e.type));var f=(0,c.dZ)(e.text),p=f&&!n.canvas.isConnected;p&&document.body.appendChild(n.canvas),n.canvas.setAttribute("dir",f?"rtl":"ltr"),n.save(),n.font=(0,c.mO)(e),n.fillStyle=e.strokeColor,n.textAlign=e.textAlign;for(var h=e.text.replace(/\r\n?/g,"\n").split("\n"),m="center"===e.textAlign?e.width/2:"right"===e.textAlign?e.width:0,g=(0,T.Rg)(e.fontSize,e.lineHeight),v=e.height-e.baseline,b=0;b<h.length;b++)n.fillText(h[b],m,(b+1)*g-v);n.restore(),p&&n.canvas.remove()}n.globalAlpha=1},G=new WeakMap,V=new WeakMap,X=function(e){return V.get(e)},q=function(e,t){return V.set(e,t)},$=function(e){return V.delete(e)},J=function(){G=new WeakMap,V=new WeakMap,le=new WeakMap},Q=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n={seed:e.seed,strokeLineDash:"dashed"===e.strokeStyle?N(e.strokeWidth):"dotted"===e.strokeStyle?B(e.strokeWidth):void 0,disableMultiStroke:"solid"!==e.strokeStyle,strokeWidth:"solid"!==e.strokeStyle?e.strokeWidth+.5:e.strokeWidth,fillWeight:e.strokeWidth/2,hachureGap:4*e.strokeWidth,roughness:e.roughness,stroke:e.strokeColor,preserveVertices:t};switch(e.type){case"rectangle":case"diamond":case"ellipse":return n.fillStyle=e.fillStyle,n.fill="transparent"===e.backgroundColor?void 0:e.backgroundColor,"ellipse"===e.type&&(n.curveFitting=1),n;case"line":case"freedraw":return(0,s.g6)(e.points)&&(n.fillStyle=e.fillStyle,n.fill="transparent"===e.backgroundColor?void 0:e.backgroundColor),n;case"arrow":return n;default:throw new Error("Unimplemented type ".concat(e.type))}},ee=function(e,t){var n=V.get(e);if(void 0===n)switch(G.delete(e),e.type){case"rectangle":if(e.roundness){var o=e.width,a=e.height,c=(0,s.yW)(Math.min(o,a),e);n=t.path("M ".concat(c," 0 L ").concat(o-c," 0 Q ").concat(o," 0, ").concat(o," ").concat(c," L ").concat(o," ").concat(a-c," Q ").concat(o," ").concat(a,", ").concat(o-c," ").concat(a," L ").concat(c," ").concat(a," Q 0 ").concat(a,", 0 ").concat(a-c," L 0 ").concat(c," Q 0 0, ").concat(c," 0"),Q(e,!0))}else n=t.rectangle(0,0,e.width,e.height,Q(e));q(e,n);break;case"diamond":var u=(0,l.UC)(e),d=(0,i.Z)(u,8),f=d[0],p=d[1],h=d[2],m=d[3],g=d[4],v=d[5],b=d[6],y=d[7];if(e.roundness){var x=(0,s.yW)(Math.abs(f-b),e),w=(0,s.yW)(Math.abs(m-p),e);n=t.path("M ".concat(f+x," ").concat(p+w," L ").concat(h-x," ").concat(m-w,"\n C ").concat(h," ").concat(m,", ").concat(h," ").concat(m,", ").concat(h-x," ").concat(m+w,"\n L ").concat(g+x," ").concat(v-w,"\n C ").concat(g," ").concat(v,", ").concat(g," ").concat(v,", ").concat(g-x," ").concat(v-w,"\n L ").concat(b+x," ").concat(y+w,"\n C ").concat(b," ").concat(y,", ").concat(b," ").concat(y,", ").concat(b+x," ").concat(y-w,"\n L ").concat(f-x," ").concat(p+w,"\n C ").concat(f," ").concat(p,", ").concat(f," ").concat(p,", ").concat(f+x," ").concat(p+w),Q(e,!0))}else n=t.polygon([[f,p],[h,m],[g,v],[b,y]],Q(e));q(e,n);break;case"ellipse":n=t.ellipse(e.width/2,e.height/2,e.width,e.height,Q(e)),q(e,n);break;case"line":case"arrow":var k=Q(e),E=e.points.length?e.points:[[0,0]];if(n=e.roundness?[t.curve(E,k)]:k.fill?[t.polygon(E,k)]:[t.linearPath(E,k)],"arrow"===e.type){var S=e.startArrowhead,O=void 0===S?null:S,j=e.endArrowhead,_=void 0===j?"arrow":j,C=function(e,n,r,o){var a=(0,l.Y5)(e,n,r,o);if(null===a)return[];if("dot"===o){var c=(0,i.Z)(a,3),s=c[0],u=c[1],d=c[2];return[t.circle(s,u,d,A(A({},k),{},{fill:e.strokeColor,fillStyle:"solid",stroke:"none"}))]}if("triangle"===o){var f=(0,i.Z)(a,6),p=f[0],h=f[1],m=f[2],g=f[3],v=f[4],b=f[5];return delete k.strokeLineDash,[t.polygon([[p,h],[m,g],[v,b],[p,h]],A(A({},k),{},{fill:e.strokeColor,fillStyle:"solid"}))]}var y=(0,i.Z)(a,6),x=y[0],w=y[1],E=y[2],S=y[3],O=y[4],j=y[5];if("dotted"===e.strokeStyle){var _=B(e.strokeWidth-1);k.strokeLineDash=[_[0],_[1]-1]}else delete k.strokeLineDash;return[t.line(E,S,x,w,k),t.line(O,j,x,w,k)]};if(null!==O){var I,T=C(e,n,"start",O);(I=n).push.apply(I,(0,r.Z)(T))}if(null!==_){var P,M=C(e,n,"end",_);(P=n).push.apply(P,(0,r.Z)(M))}}q(e,n);break;case"freedraw":ce(e),n=(0,s.g6)(e.points)?t.polygon(e.points,A(A({},Q(e)),{},{stroke:"none"})):null,q(e,n);break;case"text":case"image":q(e,null)}},te=function(e,t){var n,r,o=t?t.zoom:Z.zoom,i=G.get(e),a=i&&i.zoomValue!==o.value&&!(null!=t&&t.shouldCacheIgnoreZoom),l=(null===(n=(0,T.WJ)(e))||void 0===n?void 0:n.version)||null,c=(null===(r=(0,M.$Z)(e))||void 0===r?void 0:r.opacity)||100;if(!i||a||i.theme!==t.theme||i.boundTextElementVersion!==l||i.containingFrameOpacity!==c){var s=F(e,o,t);return G.set(e,s),s}return i},ne=function(e,t,n,r){var o=e.element,s=H(o),u=e.scale,d=(0,l.qf)(o),p=(0,i.Z)(d,4),h=p[0],m=p[1],g=p[2],v=p[3];(0,a.F9)(o)&&(h=Math.floor(h),g=Math.ceil(g),m=Math.floor(m),v=Math.ceil(v));var b=((h+g)/2+r.scrollX)*window.devicePixelRatio,y=((m+v)/2+r.scrollY)*window.devicePixelRatio;n.save(),n.scale(1/window.devicePixelRatio,1/window.devicePixelRatio);var x=(0,T.WJ)(o);if((0,a.Yv)(o)&&x){var w=document.createElement("canvas"),k=w.getContext("2d"),E=Math.max((0,c.TE)(h,g),(0,c.TE)(m,v));w.width=E*window.devicePixelRatio*u+s*e.scale*10,w.height=E*window.devicePixelRatio*u+s*e.scale*10;var S=(w.width-e.canvas.width)/2,O=(w.height-e.canvas.height)/2;k.translate(w.width/2,w.height/2),k.rotate(o.angle),k.drawImage(e.canvas,-e.canvas.width/2,-e.canvas.height/2,e.canvas.width,e.canvas.height);var j=(0,l.qf)(x),_=(0,i.Z)(j,6),C=_[4],I=_[5];k.rotate(-o.angle);var P=w.width/2-(C-h)*window.devicePixelRatio*u-S-s*u,M=w.height/2-(I-m)*window.devicePixelRatio*u-O-s*u;k.translate(-P,-M),k.clearRect(-(x.width/2+f.gK)*window.devicePixelRatio*u,-(x.height/2+f.gK)*window.devicePixelRatio*u,(x.width+2*f.gK)*window.devicePixelRatio*u,(x.height+2*f.gK)*window.devicePixelRatio*u),n.translate(b,y),n.drawImage(w,-(g-h)/2*window.devicePixelRatio-S/u-s,-(v-m)/2*window.devicePixelRatio-O/u-s,w.width/u,w.height/u)}else if(n.translate(b,y),n.rotate(o.angle),"scale"in e.element&&!R(o,r)&&n.scale(e.element.scale[0],e.element.scale[1]),n.translate(-b,-y),n.drawImage(e.canvas,(h+r.scrollX)*window.devicePixelRatio-s*e.scale/e.scale,(m+r.scrollY)*window.devicePixelRatio-s*e.scale/e.scale,e.canvas.width/e.scale,e.canvas.height/e.scale),"true"==={REACT_APP_BACKEND_V2_GET_URL:"https://json.excalidraw.com/api/v2/",REACT_APP_BACKEND_V2_POST_URL:"https://json.excalidraw.com/api/v2/post/",REACT_APP_LIBRARY_URL:"https://libraries.excalidraw.com",REACT_APP_LIBRARY_BACKEND:"https://us-central1-excalidraw-room-persistence.cloudfunctions.net/libraries",REACT_APP_PORTAL_URL:"https://portal.excalidraw.com",REACT_APP_WS_SERVER_URL:"",REACT_APP_FIREBASE_CONFIG:'{"apiKey":"AIzaSyAd15pYlMci_xIp9ko6wkEsDzAAA0Dn0RU","authDomain":"excalidraw-room-persistence.firebaseapp.com","databaseURL":"https://excalidraw-room-persistence.firebaseio.com","projectId":"excalidraw-room-persistence","storageBucket":"excalidraw-room-persistence.appspot.com","messagingSenderId":"654800341332","appId":"1:654800341332:web:4a692de832b55bd57ce0c1"}',REACT_APP_GOOGLE_ANALYTICS_ID:"UA-387204-13",REACT_APP_MATOMO_URL:"https://excalidraw.matomo.cloud/",REACT_APP_CDN_MATOMO_TRACKER_URL:"//cdn.matomo.cloud/excalidraw.matomo.cloud/matomo.js",REACT_APP_MATOMO_SITE_ID:"1",REACT_APP_PLUS_APP:"https://app.excalidraw.com",PKG_NAME:"@dwelle/excalidraw",PKG_VERSION:"0.4.0-eadd4b9",IS_EXCALIDRAW_NPM_PACKAGE:!0}.REACT_APP_DEBUG_ENABLE_TEXT_CONTAINER_BOUNDING_BOX&&(0,a.Xo)(o)){var D=(0,T.WJ)(o),A=(0,T.cw)(o);n.strokeStyle="#c92a2a",n.lineWidth=3,n.strokeRect((A.x+r.scrollX)*window.devicePixelRatio,(A.y+r.scrollY)*window.devicePixelRatio,(0,T.iZ)(o)*window.devicePixelRatio,(0,T.D9)(o,D)*window.devicePixelRatio)}n.restore()},re=function(e,t,n,r,o){var d=t.generator;switch(e.type){case"selection":if(!r.isExporting){n.save(),n.translate(e.x+r.scrollX,e.y+r.scrollY),n.fillStyle="rgba(0, 0, 200, 0.04)";var p=.5/r.zoom.value;n.fillRect(p,p,e.width,e.height),n.lineWidth=1/r.zoom.value,n.strokeStyle=" rgb(105, 101, 219)",n.strokeRect(p,p,e.width,e.height),n.restore()}break;case"frame":!r.isExporting&&o.shouldRenderFrames&&(n.save(),n.translate(e.x+r.scrollX,e.y+r.scrollY),n.fillStyle="rgba(0, 0, 200, 0.04)",n.lineWidth=2/r.zoom.value,n.strokeStyle=f.iG.strokeColor,f.iG.radius&&n.roundRect?(n.beginPath(),n.roundRect(0,0,e.width,e.height,f.iG.radius/r.zoom.value),n.stroke(),n.closePath()):n.strokeRect(0,0,e.width,e.height),n.restore());break;case"freedraw":if(ee(e,d),r.isExporting){var h=(0,l.qf)(e),m=(0,i.Z)(h,4),g=m[0],v=m[1],b=m[2],y=m[3],x=(g+b)/2+r.scrollX,w=(v+y)/2+r.scrollY,k=(b-g)/2-(e.x-g),E=(y-v)/2-(e.y-v);n.save(),n.translate(x,w),n.rotate(e.angle),n.translate(-k,-E),Y(e,t,n,r),n.restore()}else{var S=te(e,r);ne(S,0,n,r)}break;case"rectangle":case"diamond":case"ellipse":case"line":case"arrow":case"image":case"text":if(ee(e,d),r.isExporting){var O=(0,l.qf)(e),j=(0,i.Z)(O,4),_=j[0],C=j[1],I=j[2],M=j[3],D=(_+I)/2+r.scrollX,A=(C+M)/2+r.scrollY,L=(I-_)/2-(e.x-_),Z=(M-C)/2-(e.y-C);if((0,a.iB)(e)){var R=(0,T.tl)(e);if((0,a.Yv)(R)){var N=P._.getBoundTextElementPosition(R,e);L=(I-_)/2-(N.x-_),Z=(M-C)/2-(N.y-C)}}n.save(),n.translate(D,A),z(e,r)&&(n.filter="none");var B=(0,T.WJ)(e);if((0,a.Yv)(e)&&B){var F=document.createElement("canvas"),W=F.getContext("2d"),U=Math.max((0,c.TE)(_,I),(0,c.TE)(C,M)),K=H(e);F.width=U*o.exportScale+10*K*o.exportScale,F.height=U*o.exportScale+10*K*o.exportScale,W.translate(F.width/2,F.height/2),W.scale(o.exportScale,o.exportScale),L=e.width/2-(e.x-_),Z=e.height/2-(e.y-C),W.rotate(e.angle);var G=u.Z.canvas(F);W.translate(-L,-Z),Y(e,G,W,r),W.translate(L,Z),W.rotate(-e.angle);var V=(0,l.qf)(B),X=(0,i.Z)(V,6),q=(_+I)/2-X[4],$=(C+M)/2-X[5];W.translate(-q,-$),W.clearRect(-B.width/2,-B.height/2,B.width,B.height),n.scale(1/o.exportScale,1/o.exportScale),n.drawImage(F,-F.width/2,-F.height/2,F.width,F.height)}else n.rotate(e.angle),"image"===e.type&&n.scale(e.scale[0],e.scale[1]),n.translate(-L,-Z),Y(e,t,n,r);n.restore()}else{var J=te(e,r),Q=n.imageSmoothingEnabled;null!=r&&r.shouldCacheIgnoreZoom||e.angle&&!(0,s.EK)(e.angle)||(n.imageSmoothingEnabled=!1),ne(J,0,n,r),n.imageSmoothingEnabled=Q}break;default:throw new Error("Unimplemented type ".concat(e.type))}},oe=function(e,t,n){if(void 0===n)return e.draw(t);var r={sets:t.sets,shape:t.shape,options:A(A({},t.options),{},{fixedDecimalPlaceDigits:n})};return e.draw(r)},ie=function(e,t,n,r){var o=(0,M.$Z)(e);if(o&&o.id===r){var i=t.ownerDocument.createElementNS(f.hR,"g");return i.setAttributeNS(f.hR,"clip-path","url(#".concat(o.id,")")),n.forEach((function(e){return i.appendChild(e)})),i}return null},ae=function(e,t,n,r,o,u,d,p){var h,m,g=(0,l.qf)(e),v=(0,i.Z)(g,4),b=v[0],y=v[1],x=v[2],w=v[3],k=(x-b)/2-(e.x-b),E=(w-y)/2-(e.y-y);if((0,a.iB)(e)){var S=(0,T.tl)(e);if((0,a.Yv)(S)){var O=(0,l.qf)(S),j=(0,i.Z)(O,4),_=j[0],C=j[1],I=j[2],D=j[3],A=P._.getBoundTextElementPosition(S,e);k=(I-_)/2-(A.x-_),E=(D-C)/2-(A.y-C),o=o+A.x-e.x,u=u+A.y-e.y}}var Z=180*e.angle/Math.PI,R=t.generator,z=n;if(e.link){var N=n.ownerDocument.createElementNS(f.hR,"a");N.setAttribute("href",e.link),z.appendChild(N),z=N}var B=(null!==(h=null===(m=(0,M.$Z)(e))||void 0===m?void 0:m.opacity)&&void 0!==h?h:100)*e.opacity/1e4;switch(e.type){case"selection":throw new Error("Selection rendering is not supported for SVG");case"rectangle":case"diamond":case"ellipse":ee(e,R);var H=oe(t,X(e),f.zK);1!==B&&(H.setAttribute("stroke-opacity","".concat(B)),H.setAttribute("fill-opacity","".concat(B))),H.setAttribute("stroke-linecap","round"),H.setAttribute("transform","translate(".concat(o||0," ").concat(u||0,") rotate(").concat(Z," ").concat(k," ").concat(E,")"));var F=ie(e,z,[H],p);F?z.appendChild(F):z.appendChild(H);break;case"line":case"arrow":var W=(0,T.WJ)(e),U=n.ownerDocument.createElementNS(f.hR,"mask");if(W){U.setAttribute("id","mask-".concat(e.id));var K=n.ownerDocument.createElementNS(f.hR,"rect");o=o||0,u=u||0,K.setAttribute("x","0"),K.setAttribute("y","0"),K.setAttribute("fill","#fff"),K.setAttribute("width","".concat(e.width+100+o)),K.setAttribute("height","".concat(e.height+100+u)),U.appendChild(K);var Y=n.ownerDocument.createElementNS(f.hR,"rect"),G=P._.getBoundTextElementPosition(e,W),V=o+G.x-e.x,q=u+G.y-e.y;Y.setAttribute("x",V.toString()),Y.setAttribute("y",q.toString()),Y.setAttribute("fill","#000"),Y.setAttribute("width","".concat(W.width)),Y.setAttribute("height","".concat(W.height)),Y.setAttribute("opacity","1"),U.appendChild(Y)}ee(e,R);var $=n.ownerDocument.createElementNS(f.hR,"g");W&&$.setAttribute("mask","url(#mask-".concat(e.id,")")),$.setAttribute("stroke-linecap","round"),X(e).forEach((function(n){var r=oe(t,n,f.zK);1!==B&&(r.setAttribute("stroke-opacity","".concat(B)),r.setAttribute("fill-opacity","".concat(B))),r.setAttribute("transform","translate(".concat(o||0," ").concat(u||0,") rotate(").concat(Z," ").concat(k," ").concat(E,")")),"line"===e.type&&(0,s.g6)(e.points)&&"transparent"!==e.backgroundColor&&r.setAttribute("fill-rule","evenodd"),$.appendChild(r)}));var J=ie(e,z,[$,U],p);J?z.appendChild(J):(z.appendChild($),z.append(U));break;case"freedraw":ee(e,R),ce(e);var Q=X(e),te=Q?oe(t,Q,f.zK):n.ownerDocument.createElementNS(f.hR,"g");1!==B&&(te.setAttribute("stroke-opacity","".concat(B)),te.setAttribute("fill-opacity","".concat(B))),te.setAttribute("transform","translate(".concat(o||0," ").concat(u||0,") rotate(").concat(Z," ").concat(k," ").concat(E,")")),te.setAttribute("stroke","none");var ne=n.ownerDocument.createElementNS(f.hR,"path");ne.setAttribute("fill",e.strokeColor),ne.setAttribute("d",se(e)),te.appendChild(ne);var re=ie(e,z,[te],p);re?z.appendChild(re):z.appendChild(te);break;case"image":var ae=Math.round(e.width),le=Math.round(e.height),ue=(0,a.wi)(e)&&r[e.fileId];if(ue){var de="image-".concat(ue.id),fe=n.querySelector("#".concat(de));if(!fe){(fe=n.ownerDocument.createElementNS(f.hR,"symbol")).id=de;var pe=n.ownerDocument.createElementNS(f.hR,"image");pe.setAttribute("width","100%"),pe.setAttribute("height","100%"),pe.setAttribute("href",ue.dataURL),fe.appendChild(pe),z.prepend(fe)}var he=n.ownerDocument.createElementNS(f.hR,"use");if(he.setAttribute("href","#".concat(de)),d&&ue.mimeType!==f.LO.svg&&he.setAttribute("filter",L),he.setAttribute("width","".concat(ae)),he.setAttribute("height","".concat(le)),he.setAttribute("opacity","".concat(B)),1!==e.scale[0]||1!==e.scale[1]){var me=1!==e.scale[0]?-ae:0,ge=1!==e.scale[1]?-le:0;he.setAttribute("transform","scale(".concat(e.scale[0],", ").concat(e.scale[1],") translate(").concat(me," ").concat(ge,")"))}var ve=n.ownerDocument.createElementNS(f.hR,"g");ve.appendChild(he),ve.setAttribute("transform","translate(".concat(o||0," ").concat(u||0,") rotate(").concat(Z," ").concat(k," ").concat(E,")"));var be=ie(e,z,[ve],p);be?z.appendChild(be):z.appendChild(ve)}break;case"frame":break;default:if(!(0,a.iB)(e))throw new Error("Unimplemented type ".concat(e.type));var ye=n.ownerDocument.createElementNS(f.hR,"g");1!==B&&(ye.setAttribute("stroke-opacity","".concat(B)),ye.setAttribute("fill-opacity","".concat(B))),ye.setAttribute("transform","translate(".concat(o||0," ").concat(u||0,") rotate(").concat(Z," ").concat(k," ").concat(E,")"));for(var xe=e.text.replace(/\r\n?/g,"\n").split("\n"),we=(0,T.Rg)(e.fontSize,e.lineHeight),ke="center"===e.textAlign?e.width/2:"right"===e.textAlign?e.width:0,Ee=(0,c.dZ)(e.text)?"rtl":"ltr",Se="center"===e.textAlign?"middle":"right"===e.textAlign||"rtl"===Ee?"end":"start",Oe=0;Oe<xe.length;Oe++){var je=n.ownerDocument.createElementNS(f.hR,"text");je.textContent=xe[Oe],je.setAttribute("x","".concat(ke)),je.setAttribute("y","".concat(Oe*we)),je.setAttribute("font-family",(0,c.$g)(e)),je.setAttribute("font-size","".concat(e.fontSize,"px")),je.setAttribute("fill",e.strokeColor),je.setAttribute("text-anchor",Se),je.setAttribute("style","white-space: pre;"),je.setAttribute("direction",Ee),je.setAttribute("dominant-baseline","text-before-edge"),ye.appendChild(je)}var _e=ie(e,z,[ye],p);_e?z.appendChild(_e):z.appendChild(ye)}},le=new WeakMap([]);function ce(e){var t=se(e),n=new Path2D(t);return le.set(e,n),n}function se(e){return function(e){if(!e.length)return"";var t=e.length-1;return e.reduce((function(e,n,r,o){return r===t?e.push(n,ue(n,o[0]),"L",o[0],"Z"):e.push(n,ue(n,o[r+1])),e}),["M",e[0],"Q"]).join(" ").replace(de,"$1")}(I(e.simulatePressure?e.points:e.points.length?e.points.map((function(t,n){var r=(0,i.Z)(t,2);return[r[0],r[1],e.pressures[n]]})):[[0,0,.5]],{simulatePressure:e.simulatePressure,size:4.25*e.strokeWidth,thinning:.6,smoothing:.5,streamline:.5,easing:function(e){return Math.sin(e*Math.PI/2)},last:!!e.lastCommittedPoint}))}function ue(e,t){return[(e[0]+t[0])/2,(e[1]+t[1])/2]}var de=/(\s?[A-Z]?,?-?[0-9]*\.[0-9]{0,2})(([0-9]|e|-)*)/g},2438:function(e,t,n){"use strict";n.d(t,{Lu:function(){return I},Ic:function(){return Y},Eu:function(){return R},M_:function(){return G}});var r,o=n(2577),i=n(1930),a=n(5284),l=n(1047),c=function(e,t,n,r,o,i,a){e.beginPath(),e.moveTo(t+i,n),e.lineTo(t+r-i,n),e.quadraticCurveTo(t+r,n,t+r,n+i),e.lineTo(t+r,n+o-i),e.quadraticCurveTo(t+r,n+o,t+r-i,n+o),e.lineTo(t+i,n+o),e.quadraticCurveTo(t,n+o,t,n+o-i),e.lineTo(t,n+i),e.quadraticCurveTo(t,n,t+i,n),e.closePath(),e.fill(),a&&(e.strokeStyle=a),e.stroke()},s=n(756),u=n(1868),d=n(3063),f=n(8982),p=n(6938),h=n(242),m=n(2325),g=n(8290),v=n(267),b=n(6340);!function(e){e.ACTIVE="active",e.AWAY="away",e.IDLE="idle"}(r||(r={}));var y=n(2335),x=n(4929),w=n(1974),k=n(9040),E=n(6655);function S(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return O(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return O(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function O(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function j(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return _(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return _(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}function _(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}!function(){var e,t,n,r,a,l;(null!==(t=(e=Path2D.prototype).roundRect)&&void 0!==t||(e.roundRect=c),globalThis.CanvasRenderingContext2D)&&(null!==(r=(n=globalThis.CanvasRenderingContext2D.prototype).roundRect)&&void 0!==r||(n.roundRect=c));globalThis.OffscreenCanvasRenderingContext2D&&(null!==(l=(a=globalThis.OffscreenCanvasRenderingContext2D.prototype).roundRect)&&void 0!==l||(a.roundRect=c));function c(e,t,n,r,a){if([e,t,n,r].every((function(e){return Number.isFinite(e)}))){var l,c,u,d;if(4===(a=function(e){var t=(0,E.Z)(e);if("undefined"===t||null===e)return[0];if("function"===t)return[NaN];if("object"===t)return"function"==typeof e[Symbol.iterator]?(0,i.Z)(e).map((function(e){var t=(0,E.Z)(e);return"undefined"===t||null===e?0:"function"===t?NaN:"object"===t?h(e):m(e)})):[h(e)];return[m(e)]}(a)).length)l=g(a[0]),c=g(a[1]),u=g(a[2]),d=g(a[3]);else if(3===a.length)l=g(a[0]),c=g(a[1]),d=g(a[1]),u=g(a[2]);else if(2===a.length)l=g(a[0]),u=g(a[0]),c=g(a[1]),d=g(a[1]);else{if(1!==a.length)throw new RangeError("".concat(s(this)," ").concat(a.length," is not a valid size for radii sequence."));l=g(a[0]),c=g(a[0]),u=g(a[0]),d=g(a[0])}var f=[l,c,u,d],p=f.find((function(e){var t=e.x,n=e.y;return t<0||n<0}));(null==p?void 0:p.x)<0?p.x:null==p||p.y;if(!f.some((function(e){var t=e.x,n=e.y;return!Number.isFinite(t)||!Number.isFinite(n)}))){if(p)throw new RangeError("".concat(s(this)," Radius value ").concat(p," is negative."));!function(e){var t=(0,o.Z)(e,4),i=t[0],a=t[1],l=t[2],c=t[3],s=[Math.abs(n)/(i.x+a.x),Math.abs(r)/(a.y+l.y),Math.abs(n)/(l.x+c.x),Math.abs(r)/(i.y+c.y)],u=Math.min.apply(Math,s);if(u<=1){var d,f=S(e);try{for(f.s();!(d=f.n()).done;){var p=d.value;p.x*=u,p.y*=u}}catch(e){f.e(e)}finally{f.f()}}}(f),n<0&&r<0?(this.moveTo(e-l.x,t),this.ellipse(e+n+c.x,t-c.y,c.x,c.y,0,1.5*-Math.PI,-Math.PI),this.ellipse(e+n+u.x,t+r+u.y,u.x,u.y,0,-Math.PI,-Math.PI/2),this.ellipse(e-d.x,t+r+d.y,d.x,d.y,0,-Math.PI/2,0),this.ellipse(e-l.x,t-l.y,l.x,l.y,0,0,-Math.PI/2)):n<0?(this.moveTo(e-l.x,t),this.ellipse(e+n+c.x,t+c.y,c.x,c.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(e+n+u.x,t+r-u.y,u.x,u.y,0,-Math.PI,1.5*-Math.PI,1),this.ellipse(e-d.x,t+r-d.y,d.x,d.y,0,Math.PI/2,0,1),this.ellipse(e-l.x,t+l.y,l.x,l.y,0,0,-Math.PI/2,1)):r<0?(this.moveTo(e+l.x,t),this.ellipse(e+n-c.x,t-c.y,c.x,c.y,0,Math.PI/2,0,1),this.ellipse(e+n-u.x,t+r+u.y,u.x,u.y,0,0,-Math.PI/2,1),this.ellipse(e+d.x,t+r+d.y,d.x,d.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(e+l.x,t-l.y,l.x,l.y,0,-Math.PI,1.5*-Math.PI,1)):(this.moveTo(e+l.x,t),this.ellipse(e+n-c.x,t+c.y,c.x,c.y,0,-Math.PI/2,0),this.ellipse(e+n-u.x,t+r-u.y,u.x,u.y,0,0,Math.PI/2),this.ellipse(e+d.x,t+r-d.y,d.x,d.y,0,Math.PI/2,Math.PI),this.ellipse(e+l.x,t+l.y,l.x,l.y,0,Math.PI,1.5*Math.PI)),this.closePath(),this.moveTo(e,t)}}function h(e){return{x:e.x,y:e.y,z:e.z,w:e.w}}function m(e){return+e}function g(e){var t,n,r=m(e);return Number.isFinite(r)?{x:r,y:r}:Object(e)===e?{x:m(null!==(t=e.x)&&void 0!==t?t:0),y:m(null!==(n=e.y)&&void 0!==n?n:0)}:{x:NaN,y:NaN}}}function s(e){return"Failed to execute 'roundRect' on '".concat(function(e){return Object(e)===e&&e instanceof Path2D?"Path2D":e instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.CanvasRenderingContext2D)?"CanvasRenderingContext2D":e instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.OffscreenCanvasRenderingContext2D)?"OffscreenCanvasRenderingContext2D":(null==e?void 0:e.constructor.name)||e}(e),"':")}}();var C,I=2,T=function(e,t,n,r,o,i,a,l){var c=arguments.length>8&&void 0!==arguments[8]&&arguments[8],s=arguments.length>9&&void 0!==arguments[9]?arguments[9]:0;e.save(),e.translate(i,a),e.rotate(l),c&&e.fillRect(t-i,n-a,r,o),s&&e.roundRect?(e.beginPath(),e.roundRect(t-i,n-a,r,o,s),e.stroke(),e.closePath()):e.strokeRect(t-i,n-a,r,o),e.restore()},P=function(e,t,n,r){var o=!(arguments.length>4&&void 0!==arguments[4])||arguments[4];e.beginPath(),e.arc(t,n,r,0,2*Math.PI),e.fill(),o&&e.stroke()},M=function(e,t,n,r,o){var i=arguments.length>5&&void 0!==arguments[5]&&arguments[5];e.strokeStyle="#5e5ad8",e.setLineDash([]),e.fillStyle="rgba(255, 255, 255, 0.9)",o?e.fillStyle="rgba(134, 131, 226, 0.9)":i&&(e.fillStyle="rgba(177, 151, 252, 0.7)"),P(e,n[0],n[1],r/t.zoom.value,!i)},D=function(e,t,n,r){if(t.selectedLinearElement){e.save(),e.translate(n.scrollX,n.scrollY),e.lineWidth=1/n.zoom.value;var o=p._.getPointsGlobalCoordinates(r),i=p._.POINT_HANDLE_SIZE,a=t.editingLinearElement?i:i/2;o.forEach((function(r,o){var i,l,c=!(null===(i=t.editingLinearElement)||void 0===i||null===(l=i.selectedPointsIndices)||void 0===l||!l.includes(o));M(e,n,r,a,c)})),p._.getEditorMidPoints(r,t).filter((function(e){return null!==e})).forEach((function(r){var l;null!=t&&null!==(l=t.selectedLinearElement)&&void 0!==l&&l.segmentMidPointHoveredCoords&&p._.arePointsEqual(r,t.selectedLinearElement.segmentMidPointHoveredCoords)?t.editingLinearElement?(M(e,n,r,a,!1),A(r,e,n)):(A(r,e,n),M(e,n,r,a,!1)):(t.editingLinearElement||2===o.length)&&M(e,n,r,i/2,!1,!0)})),e.restore()}},A=function(e,t,n){t.fillStyle="rgba(105, 101, 219, 0.4)",P(t,e[0],e[1],p._.POINT_HANDLE_SIZE/n.zoom.value,!1)},L=function(e){var t,n=e.elements,m=e.appState,x=e.rc,E=e.canvas,S=e.renderConfig;if(null===E)return{atLeastOneVisibleElement:!1};var O=S.renderScrollbars,_=void 0===O||O,C=S.renderSelection,P=void 0===C||C,M=S.renderGrid,L=void 0===M||M,Z=S.isExporting,R=S.selectionColor||a.black,H=E.getContext("2d");H.setTransform(1,0,0,1,0,0),H.save(),H.scale(S.canvasScale,S.canvasScale);var U=E.width/S.canvasScale,G=E.height/S.canvasScale;(Z&&"dark"===S.theme&&(H.filter=y.ZF),"string"==typeof S.canvasBackgroundColor)?(("transparent"===S.canvasBackgroundColor||5===S.canvasBackgroundColor.length||9===S.canvasBackgroundColor.length||/(hsla|rgba)\(/.test(S.canvasBackgroundColor))&&H.clearRect(0,0,U,G),H.save(),H.fillStyle=S.canvasBackgroundColor,H.fillRect(0,0,U,G),H.restore()):H.clearRect(0,0,U,G);H.save(),H.scale(S.zoom.value,S.zoom.value),L&&m.gridSize&&function(e,t,n,r,o,i){e.save(),e.strokeStyle="rgba(0,0,0,0.1)",e.beginPath();for(var a=n;a<n+o+2*t;a+=t)e.moveTo(a,r-t),e.lineTo(a,r+i+2*t);for(var l=r;l<r+i+2*t;l+=t)e.moveTo(n-t,l),e.lineTo(n+o+2*t,l);e.stroke(),e.restore()}(H,m.gridSize,-Math.ceil(S.zoom.value/m.gridSize)*m.gridSize+S.scrollX%m.gridSize,-Math.ceil(S.zoom.value/m.gridSize)*m.gridSize+S.scrollY%m.gridSize,U/S.zoom.value,G/S.zoom.value);var V=n.filter((function(e){return Y(e,U,G,{zoom:S.zoom,offsetLeft:m.offsetLeft,offsetTop:m.offsetTop,scrollX:S.scrollX,scrollY:S.scrollY})})),X=new Set;V.forEach((function(e){e.groupIds.length>0&&m.frameToHighlight&&m.selectedElementIds[e.id]&&((0,k.cO)(e,m.frameToHighlight)||e.groupIds.find((function(e){return X.has(e)})))&&e.groupIds.forEach((function(e){return X.add(e)}))}));var q=void 0;if(V.forEach((function(e){try{var t,r;if((e.frameId||(null===(t=m.frameToHighlight)||void 0===t?void 0:t.id))&&(S.isExporting&&(0,b.FQ)(n)||!S.isExporting&&m.shouldRenderFrames)){H.save();var o=(0,k.cH)(e,m);o&&(0,k.Qs)(e,n,m)&&function(e,t,n){t.translate(e.x+n.scrollX,e.y+n.scrollY),t.beginPath(),t.roundRect&&!n.isExporting?t.roundRect(0,0,e.width,e.height,y.iG.radius/n.zoom.value):t.rect(0,0,e.width,e.height),t.clip(),t.translate(-(e.x+n.scrollX),-(e.y+n.scrollY))}(o,H,S),(0,d.lw)(e,x,H,S,m),H.restore()}else(0,d.lw)(e,x,H,S,m);(null===(r=m.editingLinearElement)||void 0===r?void 0:r.elementId)===e.id&&e&&(q=e),Z||K(e,H,m)}catch(e){console.error(e)}})),q&&D(H,m,S,q),m.selectionElement)try{(0,d.lw)(m.selectionElement,x,H,S,m)}catch(e){console.error(e)}(0,g.N1)(m)&&m.suggestedBindings.filter((function(e){return null!=e})).forEach((function(e){B(H,S,e)})),m.frameToHighlight&&F(H,S,m.frameToHighlight),m.elementsToHighlight&&W(H,S,m.elementsToHighlight,m);var $,J=(0,u.eD)(n,m),Q=J.some((function(e){return(0,w.He)(e)}));if(1===J.length&&(null===(t=m.editingLinearElement)||void 0===t?void 0:t.elementId)===J[0].id&&D(H,m,S,J[0]),m.selectedLinearElement&&m.selectedLinearElement.hoverPointIndex>=0&&function(e,t,n){var r,o,i=t.selectedLinearElement,a=i.elementId,l=i.hoverPointIndex;if(null===(r=t.editingLinearElement)||void 0===r||null===(o=r.selectedPointsIndices)||void 0===o||!o.includes(l)){var c=p._.getElement(a);if(c){var s=p._.getPointAtIndexGlobalCoordinates(c,l);e.save(),e.translate(n.scrollX,n.scrollY),A(s,e,n),e.restore()}}}(H,m,S),P&&!m.multiElement&&!m.editingLinearElement){var ee,te=(0,v.oY)(J,m),ne=J.map((function(e){return e.id}));if(1===J.length&&(0,w.bt)(J[0])&&(null===(ee=m.selectedLinearElement)||void 0===ee?void 0:ee.elementId)===J[0].id&&!J[0].locked&&D(H,m,S,J[0]),te){var re,oe=n.reduce((function(e,t){var n=[];if(ne.includes(t.id)&&!(0,h.zq)(m,t)&&n.push(R),S.remoteSelectedElementIds[t.id]&&n.push.apply(n,(0,i.Z)(S.remoteSelectedElementIds[t.id].map((function(e){var t,n=null===(t=m.collaborators.get(e))||void 0===t?void 0:t.avatarUrl;return(0,f.G)(n||e)})))),n.length){var r=(0,l.qf)(t,!0),a=(0,o.Z)(r,6),c=a[0],s=a[1],u=a[2],d=a[3],p=a[4],g=a[5];e.push({angle:t.angle,elementX1:c,elementY1:s,elementX2:u,elementY2:d,selectionColors:n,dashed:!!S.remoteSelectedElementIds[t.id],cx:p,cy:g})}return e}),[]),ie=function(e){var t=(0,h.Fb)(n,e),r=(0,l.KP)(t),i=(0,o.Z)(r,4),c=i[0],s=i[1],u=i[2],d=i[3];oe.push({angle:0,elementX1:c,elementX2:u,elementY1:s,elementY2:d,selectionColors:[a.black],dashed:!0,cx:c+(u-c)/2,cy:s+(d-s)/2})},ae=j((0,h.iJ)(m));try{for(ae.s();!(re=ae.n()).done;){ie(re.value)}}catch(e){ae.e(e)}finally{ae.f()}m.editingGroupId&&ie(m.editingGroupId),oe.forEach((function(e){return N(H,S,e)}))}if(H.save(),H.translate(S.scrollX,S.scrollY),1===J.length){H.fillStyle=a.white;var le=(0,l.PC)(J[0],S.zoom,"mouse");!m.viewModeEnabled&&te&&z(H,S,le,J[0].angle)}else if(J.length>1&&!m.isRotating){var ce=2*I/S.zoom.value;H.fillStyle=a.white;var se=(0,l.KP)(J),ue=(0,o.Z)(se,4),de=ue[0],fe=ue[1],pe=ue[2],he=ue[3],me=H.getLineDash();H.setLineDash([2/S.zoom.value]);var ge=H.lineWidth;H.lineWidth=1/S.zoom.value,H.strokeStyle=R,T(H,de-ce,fe-ce,pe-de+2*ce,he-fe+2*ce,(de+pe)/2,(fe+he)/2,0),H.lineWidth=ge,H.setLineDash(me);var ve=(0,l.kK)([de,fe,pe,he,(de+pe)/2,(fe+he)/2],0,S.zoom,"mouse",Q?v.Fn:l.ox);J.some((function(e){return!e.locked}))&&z(H,S,ve,0)}H.restore()}for(var be in H.restore(),S.remotePointerViewportCoords){var ye,xe=S.remotePointerViewportCoords[be],we=xe.x,ke=xe.y;we-=m.offsetLeft,ke-=m.offsetTop;var Ee=we<0||we>U-11||ke<0||ke>G-14;we=Math.max(we,0),we=Math.min(we,U-11),ke=Math.max(ke,0),ke=Math.min(ke,G-14);var Se=null===(ye=m.collaborators.get(be))||void 0===ye?void 0:ye.avatarUrl,Oe=(0,f.G)(Se||be);H.save(),H.strokeStyle=Oe,H.fillStyle=Oe;var je=S.remotePointerUserStates[be],_e=Ee||je===r.IDLE||je===r.AWAY;_e&&(H.globalAlpha=.3),S.remotePointerButton&&"down"===S.remotePointerButton[be]&&(H.beginPath(),H.arc(we,ke,15,0,2*Math.PI,!1),H.lineWidth=3,H.strokeStyle="#ffffff88",H.stroke(),H.closePath(),H.beginPath(),H.arc(we,ke,15,0,2*Math.PI,!1),H.lineWidth=1,H.strokeStyle=Oe,H.stroke(),H.closePath()),H.fillStyle=a.white,H.strokeStyle=a.white,H.lineWidth=6,H.lineJoin="round",H.beginPath(),H.moveTo(we,ke),H.lineTo(we+0,ke+14),H.lineTo(we+4,ke+9),H.lineTo(we+11,ke+8),H.closePath(),H.stroke(),H.fill(),H.fillStyle=Oe,H.strokeStyle=Oe,H.lineWidth=2,H.lineJoin="round",H.beginPath(),_e?(H.moveTo(we-1,ke-1),H.lineTo(we-1,ke+15),H.lineTo(we+5,ke+10),H.lineTo(we+12,ke+9),H.closePath(),H.fill()):(H.moveTo(we,ke),H.lineTo(we+0,ke+14),H.lineTo(we+4,ke+9),H.lineTo(we+11,ke+8),H.closePath(),H.fill(),H.stroke());var Ce=S.remotePointerUsernames[be]||"";if(!Ee&&Ce){H.font="600 12px sans-serif";var Ie=we+5.5,Te=ke+14+2,Pe=H.measureText(Ce),Me=Pe.actualBoundingBoxDescent+Pe.actualBoundingBoxAscent,De=Math.max(Me,12),Ae=Ie-1,Le=Te-1,Ze=Pe.width+2+10+2,Re=De+2+6+2;H.roundRect?(H.beginPath(),H.roundRect(Ae,Le,Ze,Re,8),H.fillStyle=Oe,H.fill(),H.strokeStyle=a.white,H.stroke()):c(H,Ae,Le,Ze,Re,8,a.white),H.fillStyle=a.black,H.fillText(Ce,Ie+5+1,Te+3+Pe.actualBoundingBoxAscent+Math.floor((De-Me)/2)+2)}H.restore(),H.closePath()}return _&&($=(0,s.tJ)(n,U,G,S),H.save(),H.fillStyle=s.w1,H.strokeStyle="rgba(255,255,255,0.8)",[$.horizontal,$.vertical].forEach((function(e){e&&c(H,e.x,e.y,e.width,e.height,s.nn/2)})),H.restore()),H.restore(),{atLeastOneVisibleElement:V.length>0,scrollBars:$}},Z=(0,b.hR)((function(e){var t,n=L(e);null===(t=e.callback)||void 0===t||t.call(e,n)}),{trailing:!0}),R=function(e,t){var n;if(!t){var r=L(e);return null===(n=e.callback)||void 0===n||n.call(e,r),r}Z(e)},z=function(e,t,n,r){Object.keys(n).forEach((function(i){var a=n[i];if(void 0!==a){var l=(0,o.Z)(a,4),c=l[0],s=l[1],u=l[2],d=l[3];e.save(),e.lineWidth=1/t.zoom.value,t.selectionColor&&(e.strokeStyle=t.selectionColor),"rotation"===i?P(e,c+u/2,s+d/2,u/2):e.roundRect?(e.beginPath(),e.roundRect(c,s,u,d,2/t.zoom.value),e.fill(),e.stroke()):T(e,c,s,u,d,c+u/2,s+d/2,r,!0),e.restore()}}))},N=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:2*I,o=n.angle,i=n.elementX1,a=n.elementY1,l=n.elementX2,c=n.elementY2,s=n.selectionColors,u=n.cx,d=n.cy,f=n.dashed,p=l-i,h=c-a,m=r/t.zoom.value,g=8/t.zoom.value,v=4/t.zoom.value;e.save(),e.translate(t.scrollX,t.scrollY),e.lineWidth=1/t.zoom.value;for(var b=s.length,y=0;y<b;++y)e.strokeStyle=s[y],f&&e.setLineDash([g,v+(g+v)*(b-1)]),e.lineDashOffset=(g+v)*y,T(e,i-m,a-m,p+2*m,h+2*m,u,d,o);e.restore()},B=function(e,t,n){var r=Array.isArray(n)?U:H;e.save(),e.translate(t.scrollX,t.scrollY),r(e,n),e.restore()},H=function(e,t){var n=(0,l.qf)(t),r=(0,o.Z)(n,4),i=r[0],a=r[1],c=r[2]-i,s=r[3]-a,u=(0,m.fb)(t,c,s);e.strokeStyle="rgba(0,0,0,.05)",e.lineWidth=u-4;var d=2+u/2;switch(t.type){case"rectangle":case"text":case"image":case"frame":T(e,i-d,a-d,c+2*d,s+2*d,i+c/2,a+s/2,t.angle);break;case"diamond":var f=Math.hypot(c,s);!function(e,t,n,r,o,i){e.save(),e.translate(r,o),e.rotate(i),e.beginPath(),e.moveTo(0,n/2),e.lineTo(t/2,0),e.lineTo(0,-n/2),e.lineTo(-t/2,0),e.closePath(),e.stroke(),e.restore()}(e,c+2*(d*f/s),s+2*(d*f/c),i+c/2,a+s/2,t.angle);break;case"ellipse":!function(e,t,n,r,o,i){e.beginPath(),e.ellipse(r,o,t/2,n/2,i,0,2*Math.PI),e.stroke()}(e,c+2*d,s+2*d,i+c/2,a+s/2,t.angle)}},F=function(e,t,n){var r=(0,l.qf)(n),i=(0,o.Z)(r,4),a=i[0],c=i[1],s=i[2]-a,u=i[3]-c;e.strokeStyle="rgb(0,118,255)",e.lineWidth=2*y.iG.strokeWidth/t.zoom.value,e.save(),e.translate(t.scrollX,t.scrollY),T(e,a,c,s,u,a+s/2,c+u/2,n.angle,!1,y.iG.radius/t.zoom.value),e.restore()},W=function(e,t,n,r){var i=n.filter((function(e){return 0===e.groupIds.length})),a=n.filter((function(e){return e.groupIds.length>0})),c=function(e){var t=(0,l.KP)(e),n=(0,o.Z)(t,4),r=n[0],i=n[1],a=n[2],c=n[3];return{angle:0,elementX1:r,elementX2:a,elementY1:i,elementY2:c,selectionColors:["rgb(0,118,255)"],dashed:!1,cx:r+(a-r)/2,cy:i+(c-i)/2}};Object.entries((0,h.yR)(a,r)).filter((function(e){var t=(0,o.Z)(e,2);t[0];return t[1]})).map((function(e){var t=(0,o.Z)(e,2),n=t[0];t[1];return n})).map((function(e){return function(e){var t=(0,h.Fb)(n,e);return c(t)}(e)})).concat(i.map((function(e){return c([e])}))).forEach((function(n){return N(e,t,n)}))},U=function(e,t){var n=(0,o.Z)(t,3),r=n[0],i=n[1],a=n[2],l=(0,m.fb)(a,a.width,a.height);e.strokeStyle="rgba(0,0,0,0)",e.fillStyle="rgba(0,0,0,.05)",("both"===i?[0,-1]:"start"===i?[0]:[-1]).forEach((function(t){var n=p._.getPointAtIndexGlobalCoordinates(r,t),i=(0,o.Z)(n,2),a=i[0],c=i[1];P(e,a,c,l)}))},K=function(e,t,n){if(e.link&&!n.selectedElementIds[e.id]){var r=(0,l.qf)(e),i=(0,o.Z)(r,4),a=i[0],c=i[1],s=i[2],u=i[3],d=(0,x.sw)([a,c,s,u],e.angle,n),f=(0,o.Z)(d,4),p=f[0],h=f[1],m=f[2],g=f[3],v=p+m/2,b=h+g/2;if(t.save(),t.translate(n.scrollX+v,n.scrollY+b),t.rotate(e.angle),C&&C.zoom===n.zoom.value)t.drawImage(C,p-v,h-b,m,g);else{(C=document.createElement("canvas")).zoom=n.zoom.value,C.width=m*window.devicePixelRatio*n.zoom.value,C.height=g*window.devicePixelRatio*n.zoom.value;var y=C.getContext("2d");y.scale(window.devicePixelRatio*n.zoom.value,window.devicePixelRatio*n.zoom.value),y.fillStyle="#fff",y.fillRect(0,0,m,g),y.drawImage(x.rj,0,0,m,g),y.restore(),t.drawImage(C,p-v,h-b,m,g)}t.restore()}},Y=function(e,t,n,r){var i=(0,l.Pi)(e),a=(0,o.Z)(i,4),c=a[0],s=a[1],u=a[2],d=a[3],f=(0,b.dE)({clientX:r.offsetLeft,clientY:r.offsetTop},r),p=(0,b.dE)({clientX:r.offsetLeft+t,clientY:r.offsetTop+n},r);return f.x<=u&&f.y<=d&&p.x>=c&&p.y>=s},G=function(e,t,n,r){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},i=o.offsetX,a=void 0===i?0:i,l=o.offsetY,c=void 0===l?0:l,s=o.exportWithDarkMode,u=void 0!==s&&s,f=o.exportingFrameId,p=void 0===f?null:f;n&&e.forEach((function(e){if(!e.isDeleted)try{(0,d.Rg)(e,t,n,r,e.x+a,e.y+c,u,p)}catch(e){console.error(e)}}))}},1564:function(e,t,n){"use strict";var r=n(1930),o=n(8821),i=n(5169),a=n(1047),l=n(1974),c=function(e){return"string"==typeof e},s=function(){function e(){var t=this;(0,o.Z)(this,e),this.callbacks=new Set,this.nonDeletedElements=[],this.elements=[],this.nonDeletedFrames=[],this.frames=[],this.elementsMap=new Map,this.addNewElement=function(e){e.frameId?t.insertElementAtIndex(e,t.getElementIndex(e.frameId)):t.replaceAllElements([].concat((0,r.Z)(t.elements),[e]))}}return(0,i.Z)(e,[{key:"getElementsIncludingDeleted",value:function(){return this.elements}},{key:"getNonDeletedElements",value:function(){return this.nonDeletedElements}},{key:"getFramesIncludingDeleted",value:function(){return this.frames}},{key:"getNonDeletedFrames",value:function(){return this.nonDeletedFrames}},{key:"getElement",value:function(e){return this.elementsMap.get(e)||null}},{key:"getNonDeletedElement",value:function(e){var t=this.getElement(e);return t&&(0,a.qP)(t)?t:null}},{key:"mapElements",value:function(e){var t=!1,n=this.elements.map((function(n){var r=e(n);return r!==n&&(t=!0),r}));return t&&this.replaceAllElements(n),t}},{key:"replaceAllElements",value:function(t){var n=this;this.elements=t;var r=[];this.elementsMap.clear(),t.forEach((function(t){(0,l.He)(t)&&r.push(t),n.elementsMap.set(t.id,t),e.mapElementToScene(t,n)})),this.nonDeletedElements=(0,a.Lm)(this.elements),this.frames=r,this.nonDeletedFrames=(0,a.Xf)(this.frames),this.informMutation()}},{key:"informMutation",value:function(){for(var e=0,t=Array.from(this.callbacks);e<t.length;e++){(0,t[e])()}}},{key:"addCallback",value:function(e){var t=this;if(this.callbacks.has(e))throw new Error;return this.callbacks.add(e),function(){if(!t.callbacks.has(e))throw new Error;t.callbacks.delete(e)}}},{key:"destroy",value:function(){var t=this;e.sceneMapById.forEach((function(n,r){n===t&&e.sceneMapById.delete(r)})),this.callbacks.clear()}},{key:"insertElementAtIndex",value:function(e,t){if(!Number.isFinite(t)||t<0)throw new Error("insertElementAtIndex can only be called with index >= 0");var n=[].concat((0,r.Z)(this.elements.slice(0,t)),[e],(0,r.Z)(this.elements.slice(t)));this.replaceAllElements(n)}},{key:"insertElementsAtIndex",value:function(e,t){if(!Number.isFinite(t)||t<0)throw new Error("insertElementAtIndex can only be called with index >= 0");var n=[].concat((0,r.Z)(this.elements.slice(0,t)),(0,r.Z)(e),(0,r.Z)(this.elements.slice(t)));this.replaceAllElements(n)}},{key:"getElementIndex",value:function(e){return this.elements.findIndex((function(t){return t.id===e}))}}],[{key:"mapElementToScene",value:function(e,t){c(e)?this.sceneMapById.set(e,t):(this.sceneMapByElement.set(e,t),this.sceneMapById.set(e.id,t))}},{key:"getScene",value:function(e){return c(e)?this.sceneMapById.get(e)||null:this.sceneMapByElement.get(e)||null}}]),e}();s.sceneMapByElement=new WeakMap,s.sceneMapById=new Map,t.Z=s},8120:function(e,t,n){"use strict";n.d(t,{$b:function(){return r},CJ:function(){return d},M9:function(){return a},PD:function(){return o},QG:function(){return u},Un:function(){return s},Zd:function(){return i},bZ:function(){return c},sh:function(){return l}});var r=function(e){return"rectangle"===e||"ellipse"===e||"diamond"===e||"line"===e||"freedraw"===e},o=function(e){return"image"!==e&&"frame"!==e},i=function(e){return"rectangle"===e||"ellipse"===e||"diamond"===e||"freedraw"===e||"arrow"===e||"line"===e},a=function(e){return"rectangle"===e||"ellipse"===e||"diamond"===e||"arrow"===e||"line"===e},l=function(e){return"rectangle"===e||"arrow"===e||"line"===e||"diamond"===e},c=function(e){return"text"===e},s=function(e){return"arrow"===e},u=function(e,t){for(var n=null,r=e.length-1;r>=0;--r){var o=e[r];if(!o.isDeleted&&t(o)){n=o;break}}return n},d=function(e,t){return e.filter((function(e){return!e.isDeleted&&t(e)}))}},4162:function(e,t,n){"use strict";n.d(t,{$D:function(){return w},Cg:function(){return E},NL:function(){return x},oj:function(){return y}});var r=n(7169),o=n(2577),i=n(8950),a=n(2975),l=n.n(a),c=n(8234),s=n(8925),u=n(2438),d=n(6340),f=n(2335),p=n(5523),h=n(5637),m=n(679),g=n(1564);function v(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function b(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?v(Object(n),!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):v(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var y="\x3c!-- svg-source:excalidraw --\x3e",x=function(){var e=(0,i.Z)(l().mark((function e(t){var n,r,i,a,s,p,g,v,y,x,w,E,S,O,j,_,C,I,T,P,M,D,A,L,Z,R,z,N,B,H,F,W,U,K,Y,G;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return v=t.data,y=t.config,x=v.elements,w=v.files,E=(0,m.lY)(v.appState,null),null==(S=Object.assign({},y)).x&&null==S.x||(null!=S.fit&&"none"!==S.fit&&"production"!==f.Vi.PRODUCTION&&console.warn("`fit` will be ignored (automatically set to `none`) when you specify `x` or `y` offsets"),S.fit="none"),S.fit=null!==(n=S.fit)&&void 0!==n?n:"contain","cover"===S.fit&&S.padding&&("production"!==f.Vi.PRODUCTION&&console.warn("`padding` is ignored when `fit` is set to `cover`"),S.padding=0),S.scale=null!==(r=S.scale)&&void 0!==r?r:1,S.origin=null!==(i=S.origin)&&void 0!==i?i:"canvas",S.position=null!==(a=S.position)&&void 0!==a?a:"center",S.padding=null!==(s=S.padding)&&void 0!==s?s:f.qy,null!=S.maxWidthOrHeight&&null!=S.widthOrHeight&&("production"!==f.Vi.PRODUCTION&&console.warn("`maxWidthOrHeight` is ignored when `widthOrHeight` is set"),S.maxWidthOrHeight=void 0),null==S.maxWidthOrHeight&&null==S.width&&null==S.height||!S.getDimensions||("production"!==f.Vi.PRODUCTION&&console.warn("`getDimensions` is ignored when `width`, `height`, or `maxWidthOrHeight` is set"),S.getDimensions=void 0),O=1,j=k(x,S.padding),_=(0,o.Z)(j,4),C=_[0],I=_[1],T=_[2],P=_[3],M=(0,o.Z)(j,4),D=M[0],A=M[1],L=M[2],Z=M[3],null!=S.maxWidthOrHeight||null!=S.widthOrHeight?(R=Math.max(T,P),null!=S.widthOrHeight?O=S.widthOrHeight/R:null!=S.maxWidthOrHeight&&(O=S.maxWidthOrHeight<R?S.maxWidthOrHeight/R:1),L*=O,Z*=O):null!=S.width?(L=S.width,S.height?Z=S.height:Z*=L/T):null!=S.height?(Z=S.height,L*=Z/P):S.getDimensions&&(N=S.getDimensions(L,Z),L=N.width,Z=N.height,S.scale=null!==(z=N.scale)&&void 0!==z?z:S.scale),"contain"!==S.fit||S.maxWidthOrHeight?"cover"===S.fit&&(F=L/T,W=Z/P,O=Math.max(F,W)):(B=L/T,H=Z/P,O=Math.min(B,H)),D=null!==(p=S.x)&&void 0!==p?p:C,A=null!==(g=S.y)&&void 0!==g?g:I,"content"===S.origin&&(null!=S.x&&(D+=C),null!=S.y&&(A+=I)),"center"===S.position&&(null==S.x&&(D-=L/O/2-T/2),null==S.y&&(A-=Z/O/2-P/2)),U=S.createCanvas?S.createCanvas():document.createElement("canvas"),O*=S.scale,L*=S.scale,Z*=S.scale,U.width=L,U.height=Z,e.next=31,(0,h.Xx)({imageCache:new Map,fileIds:(0,h.oA)(x).map((function(e){return e.fileId})),files:w||{}});case 31:return K=e.sent,Y=K.imageCache,G=(0,d.FQ)(x),(0,u.Eu)({elements:x,appState:b(b({},E),{},{width:L,height:Z,offsetLeft:0,offsetTop:0}),rc:c.Z.canvas(U),canvas:U,renderConfig:{canvasBackgroundColor:!1===S.canvasBackgroundColor?null:S.canvasBackgroundColor||E.viewBackgroundColor||f._4,scrollX:-D+(G?0:S.padding),scrollY:-A+(G?0:S.padding),canvasScale:O,zoom:{value:f.jU},remotePointerViewportCoords:{},remoteSelectedElementIds:{},shouldCacheIgnoreZoom:!1,remotePointerUsernames:{},remotePointerUserStates:{},theme:S.theme||f.C6.LIGHT,imageCache:Y,renderScrollbars:!1,renderSelection:!1,renderGrid:!1,isExporting:!0}}),e.abrupt("return",U);case 36:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),w=function(){var e=(0,i.Z)(l().mark((function e(t,r,i,a){var h,m,v,b,x,w,E,S,O,j,_,C,I,T,P,M,D,A,L,Z,R,z,N,B,H,F,W,U,K,Y,G,V,X,q,$;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(v=r.exportPadding,b=void 0===v?f.qy:v,x=r.viewBackgroundColor,w=r.exportScale,E=void 0===w?1:w,S=r.exportEmbedScene,O="",!S){e.next=14;break}return e.prev=3,e.next=6,Promise.resolve().then(n.bind(n,673));case 6:return e.next=8,e.sent.encodeSvgMetadata({text:null!=a&&a.serializeAsJSON?null==a||null===(j=a.serializeAsJSON)||void 0===j?void 0:j.call(a):(0,p.I_)(t,r,i||{},"local")});case 8:O=e.sent,e.next=14;break;case 11:e.prev=11,e.t0=e.catch(3),console.error(e.t0);case 14:return _=k(t,b),C=(0,o.Z)(_,4),I=C[0],T=C[1],P=C[2],M=C[3],(D=document.createElementNS(f.hR,"svg")).setAttribute("version","1.1"),D.setAttribute("xmlns",f.hR),D.setAttribute("viewBox","0 0 ".concat(P," ").concat(M)),D.setAttribute("width","".concat(P*E)),D.setAttribute("height","".concat(M*E)),r.exportWithDarkMode&&D.setAttribute("filter",f.ZF),A="https://excalidraw.com/",A=window.EXCALIDRAW_ASSET_PATH||"https://unpkg.com/".concat("@dwelle/excalidraw","@").concat("0.4.0-eadd4b9"),null!==(L=A)&&void 0!==L&&L.startsWith("/")&&(A=A.replace("/","".concat(window.location.origin,"/"))),A="".concat(A,"/dist/excalidraw-assets/"),Z=(null===(h=g.Z.getScene(t[0]))||void 0===h||null===(m=h.getNonDeletedElements())||void 0===m?void 0:m.length)===t.length,R=(0,d.FQ)(t),z=-I+(R?0:b),N=-T+(R?0:b),B=Z||!R?void 0:t.find((function(e){return"frame"===e.type})),H="",B&&(F=(0,s.qf)(B),W=(0,o.Z)(F,4),U=W[0],K=W[1],Y=W[2],G=W[3],V=(Y-U)/2-(B.x-U),X=(G-K)/2-(B.y-K),H="<clipPath id=".concat(B.id,'>\n <rect transform="translate(').concat(B.x+z," ").concat(B.y+N,") rotate(").concat(B.angle," ").concat(V," ").concat(X,')"\n width="').concat(B.width,'"\n height="').concat(B.height,'"\n >\n </rect>\n </clipPath>')),D.innerHTML="\n ".concat(y,"\n ").concat(O,'\n <defs>\n <style class="style-fonts">\n @font-face {\n font-family: "Virgil";\n src: url("https://excalidraw.com/Virgil.woff2");\n }\n @font-face {\n font-family: "Cascadia";\n src: url("https://excalidraw.com/Cascadia.woff2");\n }\n </style>\n ').concat(H,"\n </defs>\n "),r.exportBackground&&x&&((q=D.ownerDocument.createElementNS(f.hR,"rect")).setAttribute("x","0"),q.setAttribute("y","0"),q.setAttribute("width","".concat(P)),q.setAttribute("height","".concat(M)),q.setAttribute("fill",x),D.appendChild(q)),$=c.Z.svg(D),(0,u.M_)(t,$,D,i||{},{offsetX:z,offsetY:N,exportWithDarkMode:r.exportWithDarkMode,exportingFrameId:(null==B?void 0:B.id)||null}),e.abrupt("return",D);case 36:case"end":return e.stop()}}),e,null,[[3,11]])})));return function(t,n,r,o){return e.apply(this,arguments)}}(),k=function(e,t){var n,r,i=(null===(n=g.Z.getScene(e[0]))||void 0===n||null===(r=n.getNonDeletedElements())||void 0===r?void 0:r.length)===e.length,a=(0,d.FQ)(e);if(!i||a){var l=e.filter((function(e){return"frame"===e.type})).reduce((function(e,t){return e[t.id]=!0,e}),{});e=e.filter((function(e){var t;return!l[null!==(t=e.frameId)&&void 0!==t?t:""]}))}var c=(0,s.KP)(e),u=(0,o.Z)(c,4),f=u[0],p=u[1],h=u[2],m=u[3];return[f,p,(0,d.TE)(f,h)+(a?0:2*t),(0,d.TE)(p,m)+(a?0:2*t)]},E=function(e,t,n){var r=k(e,t).map((function(e){return Math.trunc(e*n)})),i=(0,o.Z)(r,4);return[i[2],i[3]]}},75:function(e,t,n){"use strict";n.d(t,{$b:function(){return a.$b},CJ:function(){return a.CJ},M9:function(){return a.M9},N:function(){return o.N},PR:function(){return o.PR},QG:function(){return a.QG},Un:function(){return a.Un},W:function(){return i.W},Yp:function(){return o.Yp},Zd:function(){return a.Zd},Zs:function(){return o.Zs},_4:function(){return r._4},bZ:function(){return a.bZ},eD:function(){return o.eD},j:function(){return l.j},sh:function(){return a.sh}});var r=n(756),o=n(1868),i=n(2264),a=n(8120),l=n(746)},2264:function(e,t,n){"use strict";n.d(t,{W:function(){return l},s:function(){return a}});var r=n(2577),o=n(1047),i=n(6340),a=function(e){var t=e.scenePoint,n=e.viewportDimensions,r=e.zoom;return{scrollX:n.width/2/r.value-t.x,scrollY:n.height/2/r.value-t.y}},l=function(e,t,n){if(!(e=(0,o.n_)(e)).length)return{scrollX:0,scrollY:0};var l=(0,o.KP)(e),c=(0,r.Z)(l,4),s=c[0],u=c[1],d=c[2],f=c[3];if(function(e,t,n){var o=(0,r.Z)(n,4),a=o[0],l=o[1],c=o[2],s=o[3],u=(0,i._i)({sceneX:a,sceneY:l},e),d=u.x,f=u.y,p=(0,i._i)({sceneX:c,sceneY:s},e),h=p.x,m=p.y;return h-d>e.width||m-f>e.height}(t,0,[s,u,d,f])){var p=(0,o.os)(e,(0,i.dE)({clientX:t.scrollX,clientY:t.scrollY},t)),h=(0,r.Z)(p,4);s=h[0],u=h[1],d=h[2],f=h[3]}return a({scenePoint:{x:(s+d)/2,y:(u+f)/2},viewportDimensions:{width:t.width,height:t.height},zoom:t.zoom})}},756:function(e,t,n){"use strict";n.d(t,{WM:function(){return l},_4:function(){return d},nn:function(){return c},tJ:function(){return u},w1:function(){return s}});var r=n(2577),o=n(1047),i=n(6340),a=n(5202),l=4,c=6,s="rgba(0,0,0,0.3)",u=function(e,t,n,s){var u=s.scrollX,d=s.scrollY,f=s.zoom;if(0===e.length)return{horizontal:null,vertical:null};var p=(0,o.KP)(e),h=(0,r.Z)(p,4),m=h[0],g=h[1],v=h[2],b=h[3],y=t/f.value,x=n/f.value,w=t-y,k=n-x,E={top:parseInt((0,i.IH)("sat")),bottom:parseInt((0,i.IH)("sab")),left:parseInt((0,i.IH)("sal")),right:parseInt((0,i.IH)("sar"))},S=(0,a.G3)().rtl,O=w/2-u+E.left,j=k/2-d+E.top,_=O+y-E.right,C=j+x-E.bottom,I=Math.min(m,O),T=Math.min(g,j),P=Math.max(v,_),M=Math.max(b,C);return{horizontal:O===I&&_===P?null:{x:Math.max(E.left,l)+(O-I)/(P-I)*t,y:n-c-Math.max(l,E.bottom),width:(_-O)/(P-I)*t-Math.max(2*l,E.left+E.right),height:c},vertical:j===T&&C===M?null:{x:S?Math.max(E.left,l):t-c-Math.max(E.right,l),y:(j-T)/(M-T)*n+Math.max(E.top,l),width:c,height:(C-j)/(M-T)*n-Math.max(2*l,E.top+E.bottom)}}},d=function(e,t,n){var o=[e.horizontal,e.vertical].map((function(e){return null!=e&&e.x<=t&&t<=e.x+e.width&&e.y<=n&&n<=e.y+e.height})),i=(0,r.Z)(o,2),a=i[0],l=i[1];return{isOverEither:a||l,isOverHorizontal:a,isOverVertical:l}}},1868:function(e,t,n){"use strict";n.d(t,{N:function(){return s},PR:function(){return u},Yp:function(){return c},Zs:function(){return f},aI:function(){return l},eD:function(){return d}});var r=n(2577),o=n(1047),i=n(1974),a=n(9040),l=function(e){var t=new Set;return e.forEach((function(e){"frame"===e.type&&t.add(e.id)})),e.filter((function(e){return!e.frameId||!t.has(e.frameId)}))},c=function(e,t){var n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],c=(0,o.qf)(t),s=(0,r.Z)(c,4),u=s[0],d=s[1],f=s[2],p=s[3],h=e.filter((function(e){var t=(0,o.Pi)(e),n=(0,r.Z)(t,4),l=n[0],c=n[1],s=n[2],h=n[3],m=(0,a.$Z)(e);if(m){var g=(0,o.Pi)(m),v=(0,r.Z)(g,4),b=v[0],y=v[1],x=v[2],w=v[3];l=Math.max(b,l),c=Math.max(y,c),s=Math.min(x,s),h=Math.min(w,h)}return!1===e.locked&&"selection"!==e.type&&!(0,i.Xh)(e)&&u<=l&&d<=c&&f>=s&&p>=h}));return h=(h=n?l(h):h).filter((function(e){var t=(0,a.$Z)(e);return!t||(0,a.cO)(e,t)}))},s=function(e,t){return e.some((function(e){return t.selectedElementIds[e.id]}))},u=function(e,t,n){var r=Array.from(new Set(d(e,t).map((function(e){return n(e)}))));return 1===r.length?r[0]:null},d=function(e,t,n){var r=e.filter((function(e){return t.selectedElementIds[e.id]||null!=n&&n.includeBoundTextElement&&(0,i.Xh)(e)&&t.selectedElementIds[null==e?void 0:e.containerId]?e:null}));if(null!=n&&n.includeElementsInFrames){var o=[];return r.forEach((function(t){"frame"===t.type&&(0,a.wO)(e,t.id).forEach((function(e){return o.push(e)})),o.push(t)})),o}return r},f=function(e,t){return t.editingElement?[t.editingElement]:d(e,t,{includeBoundTextElement:!0})}},746:function(e,t,n){"use strict";n.d(t,{E:function(){return i},j:function(){return o}});var r=n(2335),o=function(e){return Math.max(r.Zj,Math.min(e,30))},i=function(e,t){var n=e.viewportX,r=e.viewportY,o=e.nextZoom,i=n-t.offsetLeft,a=r-t.offsetTop,l=t.zoom.value;return{scrollX:t.scrollX+(i-i/l)+-(i-i/o),scrollY:t.scrollY+(a-a/l)+-(a-a/o),zoom:{value:o}}}},6340:function(e,t,n){"use strict";n.d(t,{$9:function(){return J},$g:function(){return w},$h:function(){return ce},AK:function(){return K},B4:function(){return C},C3:function(){return ne},Ds:function(){return E},FG:function(){return Y},FQ:function(){return pe},Fc:function(){return m},G3:function(){return te},I4:function(){return oe},IH:function(){return F},Ip:function(){return Q},KJ:function(){return D},Mj:function(){return fe},OF:function(){return A},Om:function(){return P},Oo:function(){return g},PI:function(){return q},Pr:function(){return z},Qm:function(){return X},TE:function(){return T},Uk:function(){return L},_Z:function(){return b},_i:function(){return H},ag:function(){return ae},cx:function(){return G},dE:function(){return B},dZ:function(){return U},h2:function(){return ie},hR:function(){return S},mO:function(){return k},qr:function(){return V},qz:function(){return ee},rB:function(){return Z},s:function(){return x},tH:function(){return $},uY:function(){return N},v4:function(){return le},w8:function(){return de},wO:function(){return v},wo:function(){return R},xn:function(){return re},xp:function(){return ue},y1:function(){return y},y8:function(){return se},yo:function(){return I},z8:function(){return M}});var r=n(6655),o=n(7169),i=n(1930),a=n(2577),l=n(5284),c=n(56),s=n(2335),u=n(5156),d=n(8897);function f(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function p(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?f(Object(n),!0).forEach((function(t){(0,o.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):f(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var h=null,m=function(){if(h)return h;var e=new Date,t=e.getFullYear(),n="".concat(e.getMonth()+1).padStart(2,"0"),r="".concat(e.getDate()).padStart(2,"0"),o="".concat(e.getHours()).padStart(2,"0"),i="".concat(e.getMinutes()).padStart(2,"0");return"".concat(t,"-").concat(n,"-").concat(r,"-").concat(o).concat(i)},g=function(e){return e.charAt(0).toUpperCase()+e.slice(1)},v=function(e){return e instanceof HTMLElement&&e.className.includes("ToolIcon")},b=function(e){return e instanceof HTMLElement&&"wysiwyg"===e.dataset.type||e instanceof HTMLBRElement||e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement||e instanceof HTMLSelectElement},y=function(e){return b(e)||e instanceof Element&&!!e.closest("label, button")},x=function(e){return e instanceof HTMLElement&&"wysiwyg"===e.dataset.type||e instanceof HTMLBRElement||e instanceof HTMLTextAreaElement||e instanceof HTMLInputElement&&("text"===e.type||"number"===e.type)},w=function(e){for(var t=e.fontFamily,n=0,r=Object.entries(s.ut);n<r.length;n++){var o=(0,a.Z)(r[n],2),i=o[0];if(o[1]===t)return"".concat(i,", ").concat(s._D)}return s._D},k=function(e){var t=e.fontSize,n=e.fontFamily;return"".concat(t,"px ").concat(w({fontFamily:n}))},E=function(e,t){var n=0,r=null,o=function(){for(var o=arguments.length,i=new Array(o),a=0;a<o;a++)i[a]=arguments[a];r=i,clearTimeout(n),n=window.setTimeout((function(){r=null,e.apply(void 0,i)}),t)};return o.flush=function(){if(clearTimeout(n),r){var t=r;r=null,e.apply(void 0,(0,i.Z)(t))}},o.cancel=function(){r=null,clearTimeout(n)},o},S=function(e,t){var n=null,r=null,o=null,a=function t(a){n=window.requestAnimationFrame((function(){n=null,e.apply(void 0,(0,i.Z)(a)),r=null,o&&(r=o,o=null,t(r))}))},l=function(){for(var e=arguments.length,i=new Array(e),l=0;l<e;l++)i[l]=arguments[l];r=i,null===n?a(r):null!=t&&t.trailing&&(o=i)};return l.flush=function(){null!==n&&(cancelAnimationFrame(n),n=null),r&&(e.apply(void 0,(0,i.Z)(o||r)),r=o=null)},l.cancel=function(){r=o=null,null!==n&&(cancelAnimationFrame(n),n=null)},l};function O(e){return 1-Math.pow(1-e,4)}var j,_,C=function(e,t,n,r){var o,a=!1,l=0,c=(null==r?void 0:r.duration)||250,s=(null==r?void 0:r.easeFn)||O;return l=window.requestAnimationFrame((function r(u){if(!a){void 0===o&&(o=u);var d=u-o;if(d<c){var f=s(d/c),p=e.map((function(e,n){return(t[n]-e)*f+e}));n.apply(void 0,(0,i.Z)(p)),l=window.requestAnimationFrame(r)}else n.apply(void 0,(0,i.Z)(t))}})),function(){a=!0,window.cancelAnimationFrame(l)}},I=function(e,t){if(!e.length||t<1)return[];for(var n=0,r=0,o=Array(Math.ceil(e.length/t));n<e.length;)o[r++]=e.slice(n,n+=t);return o},T=function(e,t){return Math.abs(e-t)},P=function(e,t){var n,r;return"custom"===t.type?p(p({},e.activeTool),{},{type:"custom",customType:t.customType,locked:null!==(r=t.locked)&&void 0!==r?r:e.activeTool.locked}):p(p({},e.activeTool),{},{lastActiveTool:void 0===t.lastActiveToolBeforeEraser?e.activeTool.lastActiveTool:t.lastActiveToolBeforeEraser,type:t.type,customType:null,locked:null!==(n=t.locked)&&void 0!==n?n:e.activeTool.locked})},M=function(e){e&&(e.style.cursor="")},D=function(e,t){e&&(e.style.cursor=t)},A=function(e,t){j&&j.theme===t||function(){var e=t===s.C6.DARK;(j=document.createElement("canvas")).theme=t,j.height=20,j.width=20;var n=j.getContext("2d");n.lineWidth=1,n.beginPath(),n.arc(j.width/2,j.height/2,5,0,2*Math.PI),n.fillStyle=e?l.black:l.white,n.fill(),n.strokeStyle=e?l.white:l.black,n.stroke(),_=j.toDataURL(s.LO.svg)}(),D(e,"url(".concat(_,") ").concat(10," ").concat(10,", auto"))},L=function(e,t){if(e)if("selection"===t.activeTool.type)M(e);else if((0,d.l$)(t))e.style.cursor=s.oc.GRAB;else if((0,d.EN)(t))A(e,t.theme);else if(["image","custom"].includes(t.activeTool.type)){if("custom"===t.activeTool.type&&"comment"===t.activeTool.customType){var n="data:".concat(s.LO.svg,",").concat(encodeURIComponent('\n <svg\n width="24"\n height="24"\n viewBox="0 0 24 24"\n xmlns="http://www.w3.org/2000/svg"\n >\n <path\n d="M5.25 18A3.25 3.25 0 0 1 2 14.75v-8.5A3.25 3.25 0 0 1 5.25 3h13.5A3.25 3.25 0 0 1 22 6.25v8.5A3.25 3.25 0 0 1 18.75 18h-5.738L8 21.75a1.25 1.25 0 0 1-1.999-1V18h-.75Zm7.264-1.5h6.236a1.75 1.75 0 0 0 1.75-1.75v-8.5a1.75 1.75 0 0 0-1.75-1.75H5.25A1.75 1.75 0 0 0 3.5 6.25v8.5c0 .966.784 1.75 1.75 1.75h2.249v3.75l5.015-3.75Z"\n fill="'.concat(t.theme===s.C6.LIGHT?"#000":"#fff",'"\n />\n </svg>\n ')));e.style.cursor="url(".concat(n,") 5 20, auto")}}else e.style.cursor=s.oc.CROSSHAIR},Z=function(){var e;return"HTML"===(null===(e=document.fullscreenElement)||void 0===e?void 0:e.nodeName)},R=function(){return document.documentElement.requestFullscreen()},z=function(){return document.exitFullscreen()},N=function(e){return e=e.replace(/\bAlt\b/i,"Alt").replace(/\bShift\b/i,"Shift").replace(/\b(Enter|Return)\b/i,"Enter"),s.Um?e.replace(/\bCtrlOrCmd\b/gi,"Cmd").replace(/\bAlt\b/i,"Option"):e.replace(/\bCtrlOrCmd\b/gi,"Ctrl")},B=function(e,t){var n=e.clientX,r=e.clientY,o=t.zoom,i=t.offsetLeft,a=t.offsetTop,l=t.scrollX,c=t.scrollY;return{x:(n-i)/o.value-l,y:(r-a)/o.value-c}},H=function(e,t){var n=e.sceneX,r=e.sceneY,o=t.zoom,i=t.offsetLeft,a=t.offsetTop,l=t.scrollX,c=t.scrollY;return{x:(n+l)*o.value+i,y:(r+c)*o.value+a}},F=function(e){return getComputedStyle(document.documentElement).getPropertyValue("--".concat(e))},W=new RegExp("^[^".concat("A-Za-zÀ-ÖØ-öø-ʸ̀-֐ࠀ-῿Ⰰ-﬜﷾-﹯﻽-￿","]*[").concat("֑-߿יִ-﷽ﹰ-ﻼ","]")),U=function(e){return W.test(e)},K=function(e){var t=(0,a.Z)(e,2);return{x:t[0],y:t[1]}},Y=function(e){if("AbortError"!==(null==e?void 0:e.name))throw e;console.warn(e)},G=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;n<0&&(n=e.length+n);for(var r=(n=Math.min(e.length,Math.max(n,0)))-1;++r<e.length;)if(t(e[r],r,e))return r;return-1},V=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e.length-1;n<0&&(n=e.length+n);for(var r=(n=Math.min(e.length-1,Math.max(n,0)))+1;--r>-1;)if(t(e[r],r,e))return r;return-1},X=function(e){var t=5===e.length&&"0"===e.substr(4,1),n=9===e.length&&"00"===e.substr(7,2);return t||n||e===c.HO.transparent},q=function(){var e,t,n=new Promise((function(n,r){e=n,t=r}));return n.resolve=e,n.reject=t,n},$=function(e){return function(t){(0,u.unstable_batchedUpdates)(e,t)}},J=function(e){return S((function(t){(0,u.unstable_batchedUpdates)(e,t)}))},Q=function(e){for(var t=e.parentElement;t;){if(t===document.body)return document;var n=window.getComputedStyle(t).overflowY;if(t.scrollHeight>t.clientHeight&&("auto"===n||"scroll"===n||"overlay"===n))return t;t=t.parentElement}return document},ee=function(e){for(var t=e.parentElement;t;){if(t.tabIndex>-1)return void t.focus();t=t.parentElement}},te=function(e){return Array.from(e).map((function(e){return"0".concat(e.toString(16)).slice(-2)})).join("")},ne=function(){return ie()?1:Date.now()},re=function(e){return e.reduce((function(e,t){return e.set("string"==typeof t?t:t.id,t),e}),new Map)},oe=function(e){return e.reduce((function(e,t,n){return e.set(t.id,[t,n]),e}),new Map)},ie=function(){return!1},ae=function(e,t){return new CustomEvent(e,{detail:{nativeEvent:t},cancelable:!0})},le=function(e,t){var n=!1;for(var o in t){var i=t[o];if(void 0!==i){if(e[o]===i&&("object"!==(0,r.Z)(i)||null===i))continue;n=!0}}return n?p(p({},e),t):e},ce=function(){try{return window.self===window.top?"top":"iframe"}catch(e){return"iframe"}},se=function(e){return!!e&&"object"===(0,r.Z)(e)&&"then"in e&&"catch"in e&&"finally"in e},ue=function(e){var t=null==e?void 0:e.querySelectorAll("button, a, input, select, textarea, div[tabindex], label[tabindex]");return t?Array.from(t).filter((function(e){return e.tabIndex>-1&&!e.disabled})):[]},de=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]&&arguments[3],o=Object.keys(e),i=Object.keys(t);return o.length===i.length&&o.every((function(o){var i=null==n?void 0:n[o],a=i?i(e[o],t[o]):e[o]===t[o];return!a&&r&&console.info("%cisShallowEqual: ".concat(o," not equal ->"),"color: #8B4000",e[o],t[o]),a}))},fe=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=n.checkForDefaultPrevented,o=void 0===r||r;return function(n){if(null==e||e(n),!o||!n.defaultPrevented)return null==t?void 0:t(n)}},pe=function(e){var t=e.filter((function(e){return"frame"===e.type}));return 1===t.length&&e.every((function(e){return"frame"===e.type||e.frameId===t[0].id}))}},7642:function(e,t,n){"use strict";n.d(t,{jY:function(){return x},rr:function(){return k},ux:function(){return y},yZ:function(){return w}});var r=n(1930),o=n(1935),i=n(1974),a=n(9040),l=n(242),c=n(75),s=n(1564),u=n(6340),d=function(e,t,n){for(var r=[],o=[],i=null,a=-1,l=(0,u.xn)(n||(0,c.eD)(e,t,{includeBoundTextElement:!0}));++a<e.length;){var s=e[a];l.get(s.id)?(o.length&&(r=r.concat(o),o=[]),r.push(a),i=a+1):s.isDeleted&&i===a?(i=a+1,o.push(a)):o=[]}return r},f=function(e,t,n){if("containerId"in e&&e.containerId){if("left"!==n)return t.indexOf(e);var r=s.Z.getScene(e).getElement(e.containerId);if(r)return t.indexOf(r)}else{var o,i,a=null===(o=e.boundElements)||void 0===o||null===(i=o.find((function(e){return"arrow"!==e.type})))||void 0===i?void 0:i.id;if(a){if("left"===n)return t.indexOf(e);var l=s.Z.getScene(e).getElement(a);if(l)return t.indexOf(l)}}},p=function(e,t){return t.reduce((function(t,n){var r=e[n];return t[r.id]=r,t}),{})},h=function(e,t,n,i){var a,c,s=d(e,t,i),h=p(e,s),m=(c=0,(a=s).reduce((function(e,t,n){return n>0&&a[n-1]!==t-1&&(c=++c),(e[c]||(e[c]=[])).push(t),e}),[]));return"right"===n&&(m=m.reverse()),m.forEach((function(o,i){var a=o[0],c=o[o.length-1],s="left"===n?a:c,d=function(e,t,n,r){var o,i=t[n],a=function(t){return!t.isDeleted&&(!e.editingGroupId||t.groupIds.includes(e.editingGroupId))},c="left"===r?(0,u.qr)(t,a,Math.max(0,n-1)):(0,u.cx)(t,a,n+1),s=t[c];if(!s)return-1;if(e.editingGroupId){var d;if((null==i?void 0:i.groupIds.join(""))===(null==s?void 0:s.groupIds.join("")))return null!==(d=f(s,t,r))&&void 0!==d?d:c;if(null==s||!s.groupIds.includes(e.editingGroupId))return-1}if(!s.groupIds.length)return null!==(o=f(s,t,r))&&void 0!==o?o:c;var p=e.editingGroupId?s.groupIds[s.groupIds.indexOf(e.editingGroupId)-1]:s.groupIds[s.groupIds.length-1],h=(0,l.Fb)(t,p);return h.length?"left"===r?t.indexOf(h[0]):t.indexOf(h[h.length-1]):c}(t,e,s,n);if(-1!==d&&s!==d){var p="left"===n?e.slice(0,d):e.slice(0,a),h=e.slice(a,c+1),m="left"===n?e.slice(d,a):e.slice(c+1,d+1),g="left"===n?e.slice(c+1):e.slice(d+1);e="left"===n?[].concat((0,r.Z)(p),(0,r.Z)(h),(0,r.Z)(m),(0,r.Z)(g)):[].concat((0,r.Z)(p),(0,r.Z)(m),(0,r.Z)(h),(0,r.Z)(g))}})),e.map((function(e){return h[e.id]?(0,o.ZP)(e):e}))},m=function(e,t,n,r){return b(t,e,n,h,r)},g=function(e,t,n){var i,a,c=d(e,t),s=p(e,c),u=[];if("left"===n){if(t.editingGroupId){var f=(0,l.Fb)(e,t.editingGroupId);if(!f.length)return e;i=e.indexOf(f[0])}else i=0;a=c[c.length-1]}else{if(t.editingGroupId){var h=(0,l.Fb)(e,t.editingGroupId);if(!h.length)return e;a=e.indexOf(h[h.length-1])}else a=e.length-1;i=c[0]}for(var m=i;m<a+1;m++)c.includes(m)||u.push(e[m]);var g=Object.values(s).map((function(e){return(0,o.ZP)(e)})),v=e.slice(0,i),b=e.slice(a+1);return"left"===n?[].concat((0,r.Z)(v),(0,r.Z)(g),u,(0,r.Z)(b)):[].concat((0,r.Z)(v),u,(0,r.Z)(g),(0,r.Z)(b))},v=function(e,t,n,r){return b(e,t,n,g,r)};function b(e,t,n,o,l){var c=e.filter((function(e){return function(e){return!e.frameId}(e)})),s=(0,a.SH)(e);c=o(c,t,n,l),s.forEach((function(e,r){t.selectedElementIds[r]||s.set(r,o(e,t,n,l))}));var u=[];return c.forEach((function(e){var t;(0,i.He)(e)?u=[].concat((0,r.Z)(u),(0,r.Z)(null!==(t=s.get(e.id))&&void 0!==t?t:[]),[e]):u=[].concat((0,r.Z)(u),[e])})),u}var y=function(e,t,n){return m(t,e,"left",n)},x=function(e,t,n){return m(t,e,"right",n)},w=function(e,t,n){return v(e,t,"left",n)},k=function(e,t,n){return v(e,t,"right",n)}},9669:function(e){"use strict";e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkYGAQYcAP3uCTZhw1gGGYhAGBZIA/nYDCgBDAm9BGDWAAJyRCgLaBCAAgXwixzAS0pgAAAABJRU5ErkJggg=="},7984:function(e){"use strict";e.exports='data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="292.4" height="292.4" viewBox="0 0 292 292"><path d="M287 197L159 69c-4-3-8-5-13-5s-9 2-13 5L5 197c-3 4-5 8-5 13s2 9 5 13c4 4 8 5 13 5h256c5 0 9-1 13-5s5-8 5-13-1-9-5-13z"/></svg>'},1639:function(e){"use strict";e.exports='data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="292.4" height="292.4" viewBox="0 0 292 292"><path fill="%23ced4da" d="M287 197L159 69c-4-3-8-5-13-5s-9 2-13 5L5 197c-3 4-5 8-5 13s2 9 5 13c4 4 8 5 13 5h256c5 0 9-1 13-5s5-8 5-13-1-9-5-13z"/></svg>'},9729:function(e,t,n){"use strict";e.exports=n.p+"excalidraw-assets/Assistant-Bold.woff2"},1273:function(e,t,n){"use strict";e.exports=n.p+"excalidraw-assets/Assistant-Medium.woff2"},8303:function(e,t,n){"use strict";e.exports=n.p+"excalidraw-assets/Assistant-Regular.woff2"},9577:function(e,t,n){"use strict";e.exports=n.p+"excalidraw-assets/Assistant-SemiBold.woff2"},3147:function(e,t,n){"use strict";e.exports=n.p+"excalidraw-assets/Cascadia.woff2"},3940:function(e,t,n){"use strict";e.exports=n.p+"excalidraw-assets/Virgil.woff2"},9787:function(t){"use strict";t.exports=e},5156:function(e){"use strict";e.exports=t},9649:function(e,t,n){var r=n(8114).default;function o(){"use strict";e.exports=o=function(){return t},e.exports.__esModule=!0,e.exports.default=e.exports;var t={},n=Object.prototype,i=n.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},l="function"==typeof Symbol?Symbol:{},c=l.iterator||"@@iterator",s=l.asyncIterator||"@@asyncIterator",u=l.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var o=t&&t.prototype instanceof m?t:m,i=Object.create(o.prototype),l=new C(r||[]);return a(i,"_invoke",{value:S(e,n,l)}),i}function p(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var h={};function m(){}function g(){}function v(){}var b={};d(b,c,(function(){return this}));var y=Object.getPrototypeOf,x=y&&y(y(I([])));x&&x!==n&&i.call(x,c)&&(b=x);var w=v.prototype=m.prototype=Object.create(b);function k(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function E(e,t){function n(o,a,l,c){var s=p(e[o],e,a);if("throw"!==s.type){var u=s.arg,d=u.value;return d&&"object"==r(d)&&i.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,l,c)}),(function(e){n("throw",e,l,c)})):t.resolve(d).then((function(e){u.value=e,l(u)}),(function(e){return n("throw",e,l,c)}))}c(s.arg)}var o;a(this,"_invoke",{value:function(e,r){function i(){return new t((function(t,o){n(e,r,t,o)}))}return o=o?o.then(i,i):i()}})}function S(e,t,n){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return T()}for(n.method=o,n.arg=i;;){var a=n.delegate;if(a){var l=O(a,n);if(l){if(l===h)continue;return l}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var c=p(e,t,n);if("normal"===c.type){if(r=n.done?"completed":"suspendedYield",c.arg===h)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(r="completed",n.method="throw",n.arg=c.arg)}}}function O(e,t){var n=t.method,r=e.iterator[n];if(void 0===r)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,O(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),h;var o=p(r,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,h;var i=o.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,h):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,h)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function _(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function I(e){if(e){var t=e[c];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var n=-1,r=function t(){for(;++n<e.length;)if(i.call(e,n))return t.value=e[n],t.done=!1,t;return t.value=void 0,t.done=!0,t};return r.next=r}}return{next:T}}function T(){return{value:void 0,done:!0}}return g.prototype=v,a(w,"constructor",{value:v,configurable:!0}),a(v,"constructor",{value:g,configurable:!0}),g.displayName=d(v,u,"GeneratorFunction"),t.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===g||"GeneratorFunction"===(t.displayName||t.name))},t.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,v):(e.__proto__=v,d(e,u,"GeneratorFunction")),e.prototype=Object.create(w),e},t.awrap=function(e){return{__await:e}},k(E.prototype),d(E.prototype,s,(function(){return this})),t.AsyncIterator=E,t.async=function(e,n,r,o,i){void 0===i&&(i=Promise);var a=new E(f(e,n,r,o),i);return t.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},k(w),d(w,u,"Generator"),d(w,c,(function(){return this})),d(w,"toString",(function(){return"[object Generator]"})),t.keys=function(e){var t=Object(e),n=[];for(var r in t)n.push(r);return n.reverse(),function e(){for(;n.length;){var r=n.pop();if(r in t)return e.value=r,e.done=!1,e}return e.done=!0,e}},t.values=I,C.prototype={constructor:C,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(_),!e)for(var t in this)"t"===t.charAt(0)&&i.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function n(n,r){return a.type="throw",a.arg=e,t.next=n,r&&(t.method="next",t.arg=void 0),!!r}for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r],a=o.completion;if("root"===o.tryLoc)return n("end");if(o.tryLoc<=this.prev){var l=i.call(o,"catchLoc"),c=i.call(o,"finallyLoc");if(l&&c){if(this.prev<o.catchLoc)return n(o.catchLoc,!0);if(this.prev<o.finallyLoc)return n(o.finallyLoc)}else if(l){if(this.prev<o.catchLoc)return n(o.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return n(o.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r.tryLoc<=this.prev&&i.call(r,"finallyLoc")&&this.prev<r.finallyLoc){var o=r;break}}o&&("break"===e||"continue"===e)&&o.tryLoc<=t&&t<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=e,a.arg=t,o?(this.method="next",this.next=o.finallyLoc,h):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),h},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),_(n),h}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;_(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:I(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),h}},t}e.exports=o,e.exports.__esModule=!0,e.exports.default=e.exports},8114:function(e){function t(n){return e.exports=t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e.exports.__esModule=!0,e.exports.default=e.exports,t(n)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},2975:function(e,t,n){var r=n(9649)();e.exports=r;try{regeneratorRuntime=r}catch(e){"object"==typeof globalThis?globalThis.regeneratorRuntime=r:Function("r","regeneratorRuntime = r")(r)}},7017:function(e,t,n){"use strict";function r(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}n.d(t,{Z:function(){return r}})},3173:function(e,t,n){"use strict";function r(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}n.d(t,{Z:function(){return r}})},8950:function(e,t,n){"use strict";function r(e,t,n,r,o,i,a){try{var l=e[i](a),c=l.value}catch(e){return void n(e)}l.done?t(c):Promise.resolve(c).then(r,o)}function o(e){return function(){var t=this,n=arguments;return new Promise((function(o,i){var a=e.apply(t,n);function l(e){r(a,o,i,l,c,"next",e)}function c(e){r(a,o,i,l,c,"throw",e)}l(void 0)}))}}n.d(t,{Z:function(){return o}})},8821:function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}n.d(t,{Z:function(){return r}})},5169:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var r=n(3525);function o(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,(0,r.Z)(o.key),o)}}function i(e,t,n){return t&&o(e.prototype,t),n&&o(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}},7169:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(3525);function o(e,t,n){return(t=(0,r.Z)(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},11:function(e,t,n){"use strict";function r(){return r=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},r.apply(this,arguments)}n.d(t,{Z:function(){return r}})},2312:function(e,t,n){"use strict";function r(e){return r=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},r(e)}n.d(t,{Z:function(){return r}})},2248:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(5901);function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&(0,r.Z)(e,t)}},2726:function(e,t,n){"use strict";function r(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}n.d(t,{Z:function(){return r}})},7245:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var r=n(6655),o=n(3173);function i(e,t){if(t&&("object"===(0,r.Z)(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return(0,o.Z)(e)}},5901:function(e,t,n){"use strict";function r(e,t){return r=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},r(e,t)}n.d(t,{Z:function(){return r}})},2577:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(9139);function o(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,l=[],c=!0,s=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;c=!1}else for(;!(c=(r=i.call(n)).done)&&(l.push(r.value),l.length!==t);c=!0);}catch(e){s=!0,o=e}finally{try{if(!c&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(s)throw o}}return l}}(e,t)||(0,r.Z)(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}},1930:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var r=n(7017);var o=n(9139);function i(e){return function(e){if(Array.isArray(e))return(0,r.Z)(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||(0,o.Z)(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}},3525:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(6655);function o(e){var t=function(e,t){if("object"!==(0,r.Z)(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var o=n.call(e,t||"default");if("object"!==(0,r.Z)(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===(0,r.Z)(t)?t:String(t)}},6655:function(e,t,n){"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}n.d(t,{Z:function(){return r}})},9139:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(7017);function o(e,t){if(e){if("string"==typeof e)return(0,r.Z)(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?(0,r.Z)(e,t):void 0}}},3607:function(e,t,n){"use strict";n.d(t,{zt:function(){return k},cn:function(){return E},Vv:function(){return b},KO:function(){return j},Dv:function(){return S},b9:function(){return O}});var r=n(9787);let o=0;const i=Symbol(),a=e=>!!e[i],l=e=>!e[i].c,c=e=>{var t;const{b:n,c:r}=e[i];r&&(r(),null==(t=d.get(n))||t())},s=(e,t)=>{const n=e[i].o,r=t[i].o;return n===r||e===r||a(n)&&s(n,t)},u=(e,t)=>{const n={b:e,o:t,c:null},r=new Promise((e=>{n.c=()=>{n.c=null,e()},t.finally(n.c)}));return r[i]=n,r},d=new WeakMap,f=e=>"init"in e,p="r",h="w",m="c",g="s",v=e=>{const t=new WeakMap,n=new WeakMap,r=new Map;let o,d;if(o=new Set,d=new Set,e)for(const[n,r]of e){const e={v:r,r:0,y:!0,d:new Map};Object.freeze(e),f(n)||console.warn("Found initial value for derived atom which can cause unexpected behavior",n),t.set(n,e)}const v=new WeakMap,b=new WeakMap,y=e=>{let t=b.get(e);return t||(t=new Map,b.set(e,t)),t},x=(e,n)=>{if(e){const t=y(e);let r=t.get(n);return r||(r=x(e.p,n),r&&"p"in r&&l(r.p)&&(r=void 0),r&&t.set(n,r)),r}return t.get(n)},w=(e,n,o)=>{if(Object.freeze(o),e){y(e).set(n,o)}else{const e=t.get(n);t.set(n,o),r.has(n)||r.set(n,e)}},k=(e,t=new Map,n)=>{if(!n)return t;const r=new Map;let o=!1;return n.forEach((n=>{var i;const a=(null==(i=x(e,n))?void 0:i.r)||0;r.set(n,a),t.get(n)!==a&&(o=!0)})),t.size!==r.size||o?r:t},E=(e,t,n,r,o)=>{const i=x(e,t);if(i){if(o&&(!("p"in i)||!s(i.p,o)))return i;"p"in i&&c(i.p)}const a={v:n,r:(null==i?void 0:i.r)||0,y:!0,d:k(e,null==i?void 0:i.d,r)};let l=!(null==i?void 0:i.y);return i&&"v"in i&&Object.is(i.v,n)?a.d===i.d||a.d.size===i.d.size&&Array.from(a.d.keys()).every((e=>i.d.has(e)))||(l=!0,Promise.resolve().then((()=>{Z(e)}))):(l=!0,++a.r,a.d.has(t)&&(a.d=new Map(a.d).set(t,a.r))),i&&!l?i:(w(e,t,a),a)},S=(e,t,n,r,o)=>{const i=x(e,t);if(i){if(o&&(!("p"in i)||!s(i.p,o)))return i;"p"in i&&c(i.p)}const a={e:n,r:((null==i?void 0:i.r)||0)+1,y:!0,d:k(e,null==i?void 0:i.d,r)};return w(e,t,a),a},O=(e,t,n,r)=>{const o=x(e,t);if(o&&"p"in o){if(s(o.p,n)&&!l(o.p))return o.y?o:{...o,y:!0};c(o.p)}((e,t,n)=>{let r=v.get(t);r||(r=new Map,v.set(t,r)),n.then((()=>{r.get(e)===n&&(r.delete(e),r.size||v.delete(t))})),r.set(e,n)})(e,t,n);const i={p:n,r:((null==o?void 0:o.r)||0)+1,y:!0,d:k(e,null==o?void 0:o.d,r)};return w(e,t,i),i},j=(e,t,n,r)=>{if(n instanceof Promise){const o=u(n,n.then((n=>{E(e,t,n,r,o)})).catch((n=>{if(n instanceof Promise)return a(n)?n.then((()=>{_(e,t,!0)})):n;S(e,t,n,r,o)})));return O(e,t,o,r)}return E(e,t,n,r)},_=(e,t,r)=>{if(!r){const r=x(e,t);if(r){if(r.y&&"p"in r&&!l(r.p))return r;if(r.d.forEach(((r,o)=>{if(o!==t)if(n.has(o)){const t=x(e,o);t&&!t.y&&_(e,o)}else _(e,o)})),Array.from(r.d).every((([t,n])=>{const r=x(e,t);return r&&!("p"in r)&&r.r===n})))return r.y?r:{...r,y:!0}}}const o=new Set;try{const n=t.read((n=>{o.add(n);const r=n===t?x(e,n):_(e,n);if(r){if("e"in r)throw r.e;if("p"in r)throw r.p;return r.v}if(f(n))return n.init;throw new Error("no atom init")}));return j(e,t,n,o)}catch(n){if(n instanceof Promise){const r=a(n)&&l(n)?(e=>u(e[i].b,e[i].o))(n):u(n,n);return O(e,t,r,o)}return S(e,t,n,o)}},C=(e,t)=>_(t,e),I=(e,t)=>!t.l.size&&(!t.t.size||1===t.t.size&&t.t.has(e)),T=(e,t)=>{const r=n.get(t);null==r||r.t.forEach((n=>{n!==t&&(((e,t)=>{const n=x(e,t);if(n){const r={...n,y:!1};w(e,t,r)}else console.warn("[Bug] could not invalidate non existing atom",t)})(e,n),T(e,n))}))},P=(e,t,n)=>{let r=!0;const o=(t,n)=>{const r=_(e,t);if("e"in r)throw r.e;if("p"in r){if(null==n?void 0:n.unstable_promise)return r.p.then((()=>{const i=x(e,t);return i&&"p"in i&&i.p===r.p?new Promise((e=>setTimeout(e))).then((()=>o(t,n))):o(t,n)}));throw console.info("Reading pending atom state in write operation. We throw a promise for now.",t),r.p}if("v"in r)return r.v;throw console.warn("[Bug] no value found while reading atom in write operation. This is probably a bug.",t),new Error("no value found")},i=t.write(o,((n,o)=>{let i;if(n===t){if(!f(n))throw new Error("atom not writable");const t=(e=>{const t=new Set,n=v.get(e);return n&&(v.delete(e),n.forEach(((e,n)=>{c(e),t.add(n)}))),t})(n);t.forEach((t=>{t!==e&&j(t,n,o)}));x(e,n)!==j(e,n,o)&&T(e,n)}else i=P(e,n,o);return r||Z(e),i}),n);return r=!1,i},M=(e,t,n)=>{const r=P(n,e,t);return Z(n),r},D=(e,t,r)=>{const o={t:new Set(r&&[r]),l:new Set};n.set(t,o),d.add(t);if(_(void 0,t).d.forEach(((r,o)=>{const i=n.get(o);i?i.t.add(t):o!==t&&D(e,o,t)})),(e=>!!e.write)(t)&&t.onMount){const n=n=>M(t,n,e),r=t.onMount(n);e=void 0,r&&(o.u=r)}return o},A=(e,t)=>{var r;const o=null==(r=n.get(t))?void 0:r.u;o&&o(),n.delete(t),d.delete(t);const i=x(e,t);i?("p"in i&&c(i.p),i.d.forEach(((r,o)=>{if(o!==t){const r=n.get(o);r&&(r.t.delete(t),I(o,r)&&A(e,o))}}))):console.warn("[Bug] could not find atom state to unmount",t)},L=(e,t,r,o)=>{const i=new Set(r.d.keys());null==o||o.forEach(((r,o)=>{if(i.has(o))return void i.delete(o);const a=n.get(o);a&&(a.t.delete(t),I(o,a)&&A(e,o))})),i.forEach((r=>{const o=n.get(r);o?o.t.add(t):n.has(t)&&D(e,r,t)}))},Z=e=>{if(e){y(e).forEach(((r,o)=>{if(r!==t.get(o)){const t=n.get(o);null==t||t.l.forEach((t=>t(e)))}}))}else{for(;r.size;){const e=Array.from(r);r.clear(),e.forEach((([e,t])=>{const r=x(void 0,e);if(r&&r.d!==(null==t?void 0:t.d)&&L(void 0,e,r,null==t?void 0:t.d),t&&!t.y&&(null==r?void 0:r.y))return;const o=n.get(e);null==o||o.l.forEach((e=>e()))}))}o.forEach((e=>e()))}},R=(e,n)=>{n&&(e=>{y(e).forEach(((n,r)=>{const o=t.get(r);(!o||n.r>o.r||n.y!==o.y||n.r===o.r&&n.d!==o.d)&&(t.set(r,n),n.d!==(null==o?void 0:o.d)&&L(e,r,n,null==o?void 0:o.d))}))})(n),Z(void 0)},z=(e,t,r)=>{const o=((e,t)=>{let r=n.get(t);return r||(r=D(e,t)),r})(r,e),i=o.l;return i.add(t),()=>{i.delete(t),((e,t)=>{const r=n.get(t);r&&I(t,r)&&A(e,t)})(r,e)}},N=(e,t)=>{for(const[n,r]of e)f(n)&&(j(t,n,r),T(t,n));Z(t)};return{[p]:C,[h]:M,[m]:R,[g]:z,h:N,n:e=>(o.add(e),()=>{o.delete(e)}),l:()=>d.values(),a:e=>t.get(e),m:e=>n.get(e)}},b=e=>{const t=v(e),n=e=>new Promise(((r,o)=>{const i=t.r(e);"e"in i?o(i.e):r("p"in i?i.p.then((()=>n(e))):i.v)}));return{get:e=>{const n=t.r(e);if("e"in n)throw n.e;if(!("p"in n))return n.v},asyncGet:n,set:(e,n)=>t.w(e,n),sub:(e,n)=>t.s(e,n),SECRET_INTERNAL_store:t}},y=(e,t)=>({s:t?t(e).SECRET_INTERNAL_store:v(e)}),x=new Map,w=e=>(x.has(e)||x.set(e,(0,r.createContext)(y())),x.get(e)),k=({children:e,initialValues:t,scope:n,unstable_createStore:o,unstable_enableVersionedWrite:i})=>{const[a,l]=(0,r.useState)({});(0,r.useEffect)((()=>{const e=c.current;e.w&&(e.s.c(null,a),delete a.p,e.v=a)}),[a]);const c=(0,r.useRef)();if(!c.current){const e=y(t,o);if(i){let t=0;e.w=e=>{l((n=>{const r=t?n:{p:n};return e(r),r}))},e.v=a,e.r=e=>{++t,e(),--t}}c.current=e}const s=w(n);return(0,r.createElement)(s.Provider,{value:c.current},e)};function E(e,t){return function(e,t){const n="atom"+ ++o,r={toString:()=>n};return"function"==typeof e?r.read=e:(r.init=e,r.read=e=>e(r),r.write=(e,t,n)=>t(r,"function"==typeof n?n(e(r)):n)),t&&(r.write=t),r}(e,t)}function S(e,t){const n=w(t),o=(0,r.useContext)(n),{s:i,v:a}=o,l=t=>{const n=i.r(e,t);if(!n.y)throw new Error("should not be invalidated");if("e"in n)throw n.e;if("p"in n)throw n.p;if("v"in n)return n.v;throw new Error("no atom value")},[[c,s,u],d]=(0,r.useReducer)(((t,n)=>{const r=l(n);return Object.is(t[1],r)&&t[2]===e?t:[n,r,e]}),a,(t=>[t,l(t),e]));let f=s;return u!==e&&(d(c),f=l(c)),(0,r.useEffect)((()=>{const{v:t}=o;t&&i.c(e,t);const n=i.s(e,d,t);return d(t),n}),[i,e,o]),(0,r.useEffect)((()=>{i.c(e,c)})),(0,r.useDebugValue)(f),f}function O(e,t){const n=w(t),{s:o,w:i}=(0,r.useContext)(n);return(0,r.useCallback)((t=>{if(!("write"in e))throw new Error("not writable atom");const n=n=>o.w(e,t,n);return i?i(n):n()}),[o,i,e])}function j(e,t){return"scope"in e&&(console.warn("atom.scope is deprecated. Please do useAtom(atom, scope) instead."),t=e.scope),[S(e,t),O(e,t)]}},5605:function(e,t,n){"use strict";n.d(t,{x0:function(){return r}});let r=(e=21)=>crypto.getRandomValues(new Uint8Array(e)).reduce(((e,t)=>e+=(t&=63)<36?t.toString(36):t<62?(t-26).toString(36).toUpperCase():t>62?"-":"_"),"")},5284:function(e){"use strict";e.exports=JSON.parse('{"white":"#ffffff","black":"#000000","gray":["#f8f9fa","#f1f3f5","#e9ecef","#dee2e6","#ced4da","#adb5bd","#868e96","#495057","#343a40","#212529"],"red":["#fff5f5","#ffe3e3","#ffc9c9","#ffa8a8","#ff8787","#ff6b6b","#fa5252","#f03e3e","#e03131","#c92a2a"],"pink":["#fff0f6","#ffdeeb","#fcc2d7","#faa2c1","#f783ac","#f06595","#e64980","#d6336c","#c2255c","#a61e4d"],"grape":["#f8f0fc","#f3d9fa","#eebefa","#e599f7","#da77f2","#cc5de8","#be4bdb","#ae3ec9","#9c36b5","#862e9c"],"violet":["#f3f0ff","#e5dbff","#d0bfff","#b197fc","#9775fa","#845ef7","#7950f2","#7048e8","#6741d9","#5f3dc4"],"indigo":["#edf2ff","#dbe4ff","#bac8ff","#91a7ff","#748ffc","#5c7cfa","#4c6ef5","#4263eb","#3b5bdb","#364fc7"],"blue":["#e7f5ff","#d0ebff","#a5d8ff","#74c0fc","#4dabf7","#339af0","#228be6","#1c7ed6","#1971c2","#1864ab"],"cyan":["#e3fafc","#c5f6fa","#99e9f2","#66d9e8","#3bc9db","#22b8cf","#15aabf","#1098ad","#0c8599","#0b7285"],"teal":["#e6fcf5","#c3fae8","#96f2d7","#63e6be","#38d9a9","#20c997","#12b886","#0ca678","#099268","#087f5b"],"green":["#ebfbee","#d3f9d8","#b2f2bb","#8ce99a","#69db7c","#51cf66","#40c057","#37b24d","#2f9e44","#2b8a3e"],"lime":["#f4fce3","#e9fac8","#d8f5a2","#c0eb75","#a9e34b","#94d82d","#82c91e","#74b816","#66a80f","#5c940d"],"yellow":["#fff9db","#fff3bf","#ffec99","#ffe066","#ffd43b","#fcc419","#fab005","#f59f00","#f08c00","#e67700"],"orange":["#fff4e6","#ffe8cc","#ffd8a8","#ffc078","#ffa94d","#ff922b","#fd7e14","#f76707","#e8590c","#d9480f"]}')},1463:function(e){"use strict";e.exports=JSON.parse('{"labels":{"paste":"Paste","pasteAsPlaintext":"Paste as plaintext","pasteCharts":"Paste charts","selectAll":"Select all","multiSelect":"Add element to selection","moveCanvas":"Move canvas","cut":"Cut","copy":"Copy","copyAsPng":"Copy to clipboard as PNG","copyAsSvg":"Copy to clipboard as SVG","copyText":"Copy to clipboard as text","bringForward":"Bring forward","sendToBack":"Send to back","bringToFront":"Bring to front","sendBackward":"Send backward","delete":"Delete","copyStyles":"Copy styles","pasteStyles":"Paste styles","stroke":"Stroke","background":"Background","fill":"Fill","strokeWidth":"Stroke width","strokeStyle":"Stroke style","strokeStyle_solid":"Solid","strokeStyle_dashed":"Dashed","strokeStyle_dotted":"Dotted","sloppiness":"Sloppiness","opacity":"Opacity","textAlign":"Text align","edges":"Edges","sharp":"Sharp","round":"Round","arrowheads":"Arrowheads","arrowhead_none":"None","arrowhead_arrow":"Arrow","arrowhead_bar":"Bar","arrowhead_dot":"Dot","arrowhead_triangle":"Triangle","fontSize":"Font size","fontFamily":"Font family","addWatermark":"Add \\"Made with Excalidraw\\"","handDrawn":"Hand-drawn","normal":"Normal","code":"Code","small":"Small","medium":"Medium","large":"Large","veryLarge":"Very large","solid":"Solid","hachure":"Hachure","zigzag":"Zigzag","crossHatch":"Cross-hatch","thin":"Thin","bold":"Bold","left":"Left","center":"Center","right":"Right","extraBold":"Extra bold","architect":"Architect","artist":"Artist","cartoonist":"Cartoonist","fileTitle":"File name","colorPicker":"Color picker","canvasColors":"Used on canvas","canvasBackground":"Canvas background","drawingCanvas":"Drawing canvas","layers":"Layers","actions":"Actions","language":"Language","liveCollaboration":"Live collaboration...","duplicateSelection":"Duplicate","untitled":"Untitled","name":"Name","yourName":"Your name","madeWithExcalidraw":"Made with Excalidraw","group":"Group selection","ungroup":"Ungroup selection","collaborators":"Collaborators","showGrid":"Show grid","addToLibrary":"Add to library","removeFromLibrary":"Remove from library","libraryLoadingMessage":"Loading library…","libraries":"Browse libraries","loadingScene":"Loading scene…","align":"Align","alignTop":"Align top","alignBottom":"Align bottom","alignLeft":"Align left","alignRight":"Align right","centerVertically":"Center vertically","centerHorizontally":"Center horizontally","distributeHorizontally":"Distribute horizontally","distributeVertically":"Distribute vertically","flipHorizontal":"Flip horizontal","flipVertical":"Flip vertical","viewMode":"View mode","share":"Share","showStroke":"Show stroke color picker","showBackground":"Show background color picker","toggleTheme":"Toggle theme","personalLib":"Personal Library","excalidrawLib":"Excalidraw Library","decreaseFontSize":"Decrease font size","increaseFontSize":"Increase font size","unbindText":"Unbind text","bindText":"Bind text to the container","createContainerFromText":"Wrap text in a container","link":{"edit":"Edit link","create":"Create link","label":"Link"},"lineEditor":{"edit":"Edit line","exit":"Exit line editor"},"elementLock":{"lock":"Lock","unlock":"Unlock","lockAll":"Lock all","unlockAll":"Unlock all"},"statusPublished":"Published","sidebarLock":"Keep sidebar open","selectAllElementsInFrame":"Select all elements in frame","removeAllElementsFromFrame":"Remove all elements from frame","eyeDropper":"Pick color from canvas"},"library":{"noItems":"No items added yet...","hint_emptyLibrary":"Select an item on canvas to add it here, or install a library from the public repository, below.","hint_emptyPrivateLibrary":"Select an item on canvas to add it here."},"buttons":{"clearReset":"Reset the canvas","exportJSON":"Export to file","exportImage":"Export image...","export":"Save to file...","exportToPng":"Export to PNG","exportToSvg":"Export to SVG","copyToClipboard":"Copy to clipboard","save":"Save to current file","saveAs":"Save as","load":"Open","getShareableLink":"Get shareable link","close":"Close","selectLanguage":"Select language","scrollBackToContent":"Scroll back to content","zoomIn":"Zoom in","zoomOut":"Zoom out","resetZoom":"Reset zoom","menu":"Menu","done":"Done","edit":"Edit","undo":"Undo","redo":"Redo","resetLibrary":"Reset library","createNewRoom":"Create new room","fullScreen":"Full screen","darkMode":"Dark mode","lightMode":"Light mode","zenMode":"Zen mode","exitZenMode":"Exit zen mode","cancel":"Cancel","clear":"Clear","remove":"Remove","publishLibrary":"Publish","submit":"Submit","confirm":"Confirm"},"alerts":{"clearReset":"This will clear the whole canvas. Are you sure?","couldNotCreateShareableLink":"Couldn\'t create shareable link.","couldNotCreateShareableLinkTooBig":"Couldn\'t create shareable link: the scene is too big","couldNotLoadInvalidFile":"Couldn\'t load invalid file","importBackendFailed":"Importing from backend failed.","cannotExportEmptyCanvas":"Cannot export empty canvas.","couldNotCopyToClipboard":"Couldn\'t copy to clipboard.","decryptFailed":"Couldn\'t decrypt data.","uploadedSecurly":"The upload has been secured with end-to-end encryption, which means that Excalidraw server and third parties can\'t read the content.","loadSceneOverridePrompt":"Loading external drawing will replace your existing content. Do you wish to continue?","collabStopOverridePrompt":"Stopping the session will overwrite your previous, locally stored drawing. Are you sure?\\n\\n(If you want to keep your local drawing, simply close the browser tab instead.)","errorAddingToLibrary":"Couldn\'t add item to the library","errorRemovingFromLibrary":"Couldn\'t remove item from the library","confirmAddLibrary":"This will add {{numShapes}} shape(s) to your library. Are you sure?","imageDoesNotContainScene":"This image does not seem to contain any scene data. Have you enabled scene embedding during export?","cannotRestoreFromImage":"Scene couldn\'t be restored from this image file","invalidSceneUrl":"Couldn\'t import scene from the supplied URL. It\'s either malformed, or doesn\'t contain valid Excalidraw JSON data.","resetLibrary":"This will clear your library. Are you sure?","removeItemsFromsLibrary":"Delete {{count}} item(s) from library?","invalidEncryptionKey":"Encryption key must be of 22 characters. Live collaboration is disabled.","collabOfflineWarning":"No internet connection available.\\nYour changes will not be saved!"},"errors":{"unsupportedFileType":"Unsupported file type.","imageInsertError":"Couldn\'t insert image. Try again later...","fileTooBig":"File is too big. Maximum allowed size is {{maxSize}}.","svgImageInsertError":"Couldn\'t insert SVG image. The SVG markup looks invalid.","invalidSVGString":"Invalid SVG.","cannotResolveCollabServer":"Couldn\'t connect to the collab server. Please reload the page and try again.","importLibraryError":"Couldn\'t load library","collabSaveFailed":"Couldn\'t save to the backend database. If problems persist, you should save your file locally to ensure you don\'t lose your work.","collabSaveFailed_sizeExceeded":"Couldn\'t save to the backend database, the canvas seems to be too big. You should save the file locally to ensure you don\'t lose your work.","brave_measure_text_error":{"line1":"Looks like you are using Brave browser with the <bold>Aggressively Block Fingerprinting</bold> setting enabled.","line2":"This could result in breaking the <bold>Text Elements</bold> in your drawings.","line3":"We strongly recommend disabling this setting. You can follow <link>these steps</link> on how to do so.","line4":"If disabling this setting doesn\'t fix the display of text elements, please open an <issueLink>issue</issueLink> on our GitHub, or write us on <discordLink>Discord</discordLink>"}},"toolBar":{"selection":"Selection","image":"Insert image","rectangle":"Rectangle","diamond":"Diamond","ellipse":"Ellipse","arrow":"Arrow","line":"Line","freedraw":"Draw","text":"Text","library":"Library","lock":"Keep selected tool active after drawing","penMode":"Pen mode - prevent touch","link":"Add/ Update link for a selected shape","eraser":"Eraser","frame":"Frame tool","hand":"Hand (panning tool)","extraTools":"More tools"},"headings":{"canvasActions":"Canvas actions","selectedShapeActions":"Selected shape actions","shapes":"Shapes"},"hints":{"canvasPanning":"To move canvas, hold mouse wheel or spacebar while dragging, or use the hand tool","linearElement":"Click to start multiple points, drag for single line","freeDraw":"Click and drag, release when you\'re finished","text":"Tip: you can also add text by double-clicking anywhere with the selection tool","text_selected":"Double-click or press ENTER to edit text","text_editing":"Press Escape or CtrlOrCmd+ENTER to finish editing","linearElementMulti":"Click on last point or press Escape or Enter to finish","lockAngle":"You can constrain angle by holding SHIFT","resize":"You can constrain proportions by holding SHIFT while resizing,\\nhold ALT to resize from the center","resizeImage":"You can resize freely by holding SHIFT,\\nhold ALT to resize from the center","rotate":"You can constrain angles by holding SHIFT while rotating","lineEditor_info":"Hold CtrlOrCmd and Double-click or press CtrlOrCmd + Enter to edit points","lineEditor_pointSelected":"Press Delete to remove point(s),\\nCtrlOrCmd+D to duplicate, or drag to move","lineEditor_nothingSelected":"Select a point to edit (hold SHIFT to select multiple),\\nor hold Alt and click to add new points","placeImage":"Click to place the image, or click and drag to set its size manually","publishLibrary":"Publish your own library","bindTextToElement":"Press enter to add text","deepBoxSelect":"Hold CtrlOrCmd to deep select, and to prevent dragging","eraserRevert":"Hold Alt to revert the elements marked for deletion","firefox_clipboard_write":"This feature can likely be enabled by setting the \\"dom.events.asyncClipboard.clipboardItem\\" flag to \\"true\\". To change the browser flags in Firefox, visit the \\"about:config\\" page."},"canvasError":{"cannotShowPreview":"Cannot show preview","canvasTooBig":"The canvas may be too big.","canvasTooBigTip":"Tip: try moving the farthest elements a bit closer together."},"errorSplash":{"headingMain":"Encountered an error. Try <button>reloading the page</button>.","clearCanvasMessage":"If reloading doesn\'t work, try <button>clearing the canvas</button>.","clearCanvasCaveat":" This will result in loss of work ","trackedToSentry":"The error with identifier {{eventId}} was tracked on our system.","openIssueMessage":"We were very cautious not to include your scene information on the error. If your scene is not private, please consider following up on our <button>bug tracker</button>. Please include information below by copying and pasting into the GitHub issue.","sceneContent":"Scene content:"},"roomDialog":{"desc_intro":"You can invite people to your current scene to collaborate with you.","desc_privacy":"Don\'t worry, the session uses end-to-end encryption, so whatever you draw will stay private. Not even our server will be able to see what you come up with.","button_startSession":"Start session","button_stopSession":"Stop session","desc_inProgressIntro":"Live-collaboration session is now in progress.","desc_shareLink":"Share this link with anyone you want to collaborate with:","desc_exitSession":"Stopping the session will disconnect you from the room, but you\'ll be able to continue working with the scene, locally. Note that this won\'t affect other people, and they\'ll still be able to collaborate on their version.","shareTitle":"Join a live collaboration session on Excalidraw"},"errorDialog":{"title":"Error"},"exportDialog":{"disk_title":"Save to disk","disk_details":"Export the scene data to a file from which you can import later.","disk_button":"Save to file","link_title":"Shareable link","link_details":"Export as a read-only link.","link_button":"Export to Link","excalidrawplus_description":"Save the scene to your Excalidraw+ workspace.","excalidrawplus_button":"Export","excalidrawplus_exportError":"Couldn\'t export to Excalidraw+ at this moment..."},"helpDialog":{"blog":"Read our blog","click":"click","deepSelect":"Deep select","deepBoxSelect":"Deep select within box, and prevent dragging","curvedArrow":"Curved arrow","curvedLine":"Curved line","documentation":"Documentation","doubleClick":"double-click","drag":"drag","editor":"Editor","editLineArrowPoints":"Edit line/arrow points","editText":"Edit text / add label","github":"Found an issue? Submit","howto":"Follow our guides","or":"or","preventBinding":"Prevent arrow binding","tools":"Tools","shortcuts":"Keyboard shortcuts","textFinish":"Finish editing (text editor)","textNewLine":"Add new line (text editor)","title":"Help","view":"View","zoomToFit":"Zoom to fit all elements","zoomToSelection":"Zoom to selection","toggleElementLock":"Lock/unlock selection","movePageUpDown":"Move page up/down","movePageLeftRight":"Move page left/right"},"clearCanvasDialog":{"title":"Clear canvas"},"publishDialog":{"title":"Publish library","itemName":"Item name","authorName":"Author name","githubUsername":"GitHub username","twitterUsername":"Twitter username","libraryName":"Library name","libraryDesc":"Library description","website":"Website","placeholder":{"authorName":"Your name or username","libraryName":"Name of your library","libraryDesc":"Description of your library to help people understand its usage","githubHandle":"GitHub handle (optional), so you can edit the library once submitted for review","twitterHandle":"Twitter username (optional), so we know who to credit when promoting over Twitter","website":"Link to your personal website or elsewhere (optional)"},"errors":{"required":"Required","website":"Enter a valid URL"},"noteDescription":"Submit your library to be included in the <link>public library repository</link> for other people to use in their drawings.","noteGuidelines":"The library needs to be manually approved first. Please read the <link>guidelines</link> before submitting. You will need a GitHub account to communicate and make changes if requested, but it is not strictly required.","noteLicense":"By submitting, you agree the library will be published under the <link>MIT License</link>, which in short means anyone can use them without restrictions.","noteItems":"Each library item must have its own name so it\'s filterable. The following library items will be included:","atleastOneLibItem":"Please select at least one library item to get started","republishWarning":"Note: some of the selected items are marked as already published/submitted. You should only resubmit items when updating an existing library or submission."},"publishSuccessDialog":{"title":"Library submitted","content":"Thank you {{authorName}}. Your library has been submitted for review. You can track the status <link>here</link>"},"confirmDialog":{"resetLibrary":"Reset library","removeItemsFromLib":"Remove selected items from library"},"imageExportDialog":{"header":"Export image","label":{"withBackground":"Background","onlySelected":"Only selected","darkMode":"Dark mode","embedScene":"Embed scene","scale":"Scale","padding":"Padding"},"tooltip":{"embedScene":"Scene data will be saved into the exported PNG/SVG file so that the scene can be restored from it.\\nWill increase exported file size."},"title":{"exportToPng":"Export to PNG","exportToSvg":"Export to SVG","copyPngToClipboard":"Copy PNG to clipboard"},"button":{"exportToPng":"PNG","exportToSvg":"SVG","copyPngToClipboard":"Copy to clipboard"}},"encrypted":{"tooltip":"Your drawings are end-to-end encrypted so Excalidraw\'s servers will never see them.","link":"Blog post on end-to-end encryption in Excalidraw"},"stats":{"angle":"Angle","element":"Element","elements":"Elements","height":"Height","scene":"Scene","selected":"Selected","storage":"Storage","title":"Stats for nerds","total":"Total","version":"Version","versionCopy":"Click to copy","versionNotAvailable":"Version not available","width":"Width"},"toast":{"addedToLibrary":"Added to library","copyStyles":"Copied styles.","copyToClipboard":"Copied to clipboard.","copyToClipboardAsPng":"Copied {{exportSelection}} to clipboard as PNG\\n({{exportColorScheme}})","fileSaved":"File saved.","fileSavedToFilename":"Saved to {filename}","canvas":"canvas","selection":"selection","pasteAsSingleElement":"Use {{shortcut}} to paste as a single element,\\nor paste into an existing text editor"},"colors":{"transparent":"Transparent","black":"Black","white":"White","red":"Red","pink":"Pink","grape":"Grape","violet":"Violet","gray":"Gray","blue":"Blue","cyan":"Cyan","teal":"Teal","green":"Green","yellow":"Yellow","orange":"Orange","bronze":"Bronze"},"welcomeScreen":{"app":{"center_heading":"All your data is saved locally in your browser.","center_heading_plus":"Did you want to go to the Excalidraw+ instead?","menuHint":"Export, preferences, languages, ..."},"defaults":{"menuHint":"Export, preferences, and more...","center_heading":"Diagrams. Made. Simple.","toolbarHint":"Pick a tool & Start drawing!","helpHint":"Shortcuts & help"}},"colorPicker":{"mostUsedCustomColors":"Most used custom colors","colors":"Colors","shades":"Shades","hexCode":"Hex code","noShades":"No shades available for this color"}}')}},l={};function c(e){var t=l[e];if(void 0!==t)return t.exports;var n=l[e]={id:e,exports:{}};return a[e](n,n.exports,c),n.exports}c.m=a,c.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return c.d(t,{a:t}),t},r=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__},c.t=function(e,t){if(1&t&&(e=this(e)),8&t)return e;if("object"==typeof e&&e){if(4&t&&e.__esModule)return e;if(16&t&&"function"==typeof e.then)return e}var o=Object.create(null);c.r(o);var i={};n=n||[null,r({}),r([]),r(r)];for(var a=2&t&&e;"object"==typeof a&&!~n.indexOf(a);a=r(a))Object.getOwnPropertyNames(a).forEach((function(t){i[t]=function(){return e[t]}}));return i.default=function(){return e},c.d(o,i),o},c.d=function(e,t){for(var n in t)c.o(t,n)&&!c.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},c.f={},c.e=function(e){return Promise.all(Object.keys(c.f).reduce((function(t,n){return c.f[n](e,t),t}),[]))},c.u=function(e){return"excalidraw-assets/vendor-2002fe1b8862917b36c1.js"},c.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),c.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o={},i="ExcalidrawLib:",c.l=function(e,t,n,r){if(o[e])o[e].push(t);else{var a,l;if(void 0!==n)for(var s=document.getElementsByTagName("script"),u=0;u<s.length;u++){var d=s[u];if(d.getAttribute("src")==e||d.getAttribute("data-webpack")==i+n){a=d;break}}a||(l=!0,(a=document.createElement("script")).charset="utf-8",a.timeout=120,c.nc&&a.setAttribute("nonce",c.nc),a.setAttribute("data-webpack",i+n),a.src=e),o[e]=[t];var f=function(t,n){a.onerror=a.onload=null,clearTimeout(p);var r=o[e];if(delete o[e],a.parentNode&&a.parentNode.removeChild(a),r&&r.forEach((function(e){return e(n)})),t)return t(n)},p=setTimeout(f.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=f.bind(null,a.onerror),a.onload=f.bind(null,a.onload),l&&document.head.appendChild(a)}},c.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.p="",function(){c.b=document.baseURI||self.location.href;var e={388:0};c.f.j=function(t,n){var r=c.o(e,t)?e[t]:void 0;if(0!==r)if(r)n.push(r[2]);else{var o=new Promise((function(n,o){r=e[t]=[n,o]}));n.push(r[2]=o);var i=c.p+c.u(t),a=new Error;c.l(i,(function(n){if(c.o(e,t)&&(0!==(r=e[t])&&(e[t]=void 0),r)){var o=n&&("load"===n.type?"missing":n.type),i=n&&n.target&&n.target.src;a.message="Loading chunk "+t+" failed.\n("+o+": "+i+")",a.name="ChunkLoadError",a.type=o,a.request=i,r[1](a)}}),"chunk-"+t,t)}};var t=function(t,n){var r,o,i=n[0],a=n[1],l=n[2],s=0;if(i.some((function(t){return 0!==e[t]}))){for(r in a)c.o(a,r)&&(c.m[r]=a[r]);if(l)l(c)}for(t&&t(n);s<i.length;s++)o=i[s],c.o(e,o)&&e[o]&&e[o][0](),e[o]=0},n=self.webpackChunkExcalidrawLib=self.webpackChunkExcalidrawLib||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))}(),c.nc=void 0;var s={};return function(){"use strict";c.r(s),c.d(s,{Button:function(){return xe.z},DefaultSidebar:function(){return Le.O},Excalidraw:function(){return Ke},FONT_FAMILY:function(){return e.ut},Footer:function(){return Y},LiveCollaborationTrigger:function(){return _e},MIME_TYPES:function(){return e.LO},MainMenu:function(){return G.Z},Sidebar:function(){return Ae.YE},THEME:function(){return e.C6},WelcomeScreen:function(){return ye},actions:function(){return q},bumpVersion:function(){return Me.ZP},cleanAppStateForExport:function(){return Ze.s},clearAppStateForLocalStorage:function(){return Ze.fx},defaultLang:function(){return I.Fp},exportToBlob:function(){return Te.Fl},exportToCanvas:function(){return Re.NL},exportToClipboard:function(){return Te.i1},exportToSvg:function(){return Te.$D},getDefaultAppState:function(){return Ze.im},getFreeDrawSvgPath:function(){return Te.N7},getNonDeletedElements:function(){return Ce.Lm},getSceneVersion:function(){return Ce.Uo},icons:function(){return J},isInvisiblySmallElement:function(){return Ce.QD},isLinearElement:function(){return Pe.bt},jotaiScope:function(){return N.yE},jotaiStore:function(){return N.e_},languages:function(){return I.Mj},libraryItemsAtom:function(){return De.rF},loadFromBlob:function(){return Te.cT},loadLibraryFromBlob:function(){return Te.lV},loadSceneOrLibraryFromBlob:function(){return Te.ZY},mergeLibraryItems:function(){return Te.zh},mutateElement:function(){return Me.DR},newElementWith:function(){return Me.BE},parseLibraryTokensFromUrl:function(){return De.Di},restore:function(){return Ie.nu},restoreAppState:function(){return Ie.lY},restoreElements:function(){return Ie.ET},restoreLibraryItems:function(){return Ie.wJ},sceneCoordsToViewportCoords:function(){return D._i},serializeAsJSON:function(){return Te.I_},serializeLibraryAsJSON:function(){return Te.NI},useDevice:function(){return M.Fy},useHandleLibrary:function(){return De.xS},useI18n:function(){return I.QT},viewportCoordsToSceneCoords:function(){return D.dE}});var e=c(2335);"production"!==e.Vi.TEST&&(c.p=window.EXCALIDRAW_ASSET_PATH||"https://unpkg.com/".concat("@dwelle/excalidraw","@").concat("0.4.0-eadd4b9","/dist/"));var t=function(){Array.prototype.at||Object.defineProperty(Array.prototype,"at",{value:function(e){if((e=Math.trunc(e)||0)<0&&(e+=this.length),!(e<0||e>=this.length))return this[e]},writable:!0,enumerable:!1,configurable:!0})},n=c(487),r=c.n(n),o=c(631),i=c.n(o),a=c(2052),l=c.n(a),u=c(4010),d=c.n(u),f=c(1469),p=c.n(f),h=c(9329),m=c.n(h),g=c(4295),v={};v.styleTagTransform=m(),v.setAttributes=d(),v.insert=l().bind(null,"head"),v.domAPI=i(),v.insertStyleElement=p();r()(g.Z,v),g.Z&&g.Z.locals&&g.Z.locals;var b=c(6479),y=c.n(b),x=c(9713),w=c.n(x),k=c(9787),E=c.n(k),S=c(8950),O=c(2577),j=c(2975),_=c.n(j),C=c(5440),I=c(5202),T=c(4512),P=function(e){var t=(0,k.useState)(!0),n=(0,O.Z)(t,2),r=n[0],o=n[1];return(0,k.useEffect)((function(){var t=function(){var e=(0,S.Z)(_().mark((function e(){return _().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,(0,I.m0)(n);case 2:o(!1);case 3:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),n=I.Mj.find((function(t){return t.code===e.langCode}))||I.Fp;t()}),[e.langCode]),r?(0,T.jsx)(C.z,{theme:e.theme}):e.children},M=c(8993),D=c(6340),A=c(9915),L={};L.styleTagTransform=m(),L.setAttributes=d(),L.insert=l().bind(null,"head"),L.domAPI=i(),L.insertStyleElement=p();r()(A.Z,L),A.Z&&A.Z.locals&&A.Z.locals;var Z=c(9310),R={};R.styleTagTransform=m(),R.setAttributes=d(),R.insert=l().bind(null,"head"),R.domAPI=i(),R.insertStyleElement=p();r()(Z.Z,R),Z.Z&&Z.Z.locals&&Z.Z.locals;var z=c(3607),N=c(9487),B=c(45),H=c(7681),F=c(8793),W={};W.styleTagTransform=m(),W.setAttributes=d(),W.insert=l().bind(null,"head"),W.domAPI=i(),W.insertStyleElement=p();r()(F.Z,W),F.Z&&F.Z.locals&&F.Z.locals;var U=c(96),K=function(e){var t=e.children,n=(0,H.R6)().FooterCenterTunnel,r=(0,U.I)();return(0,T.jsx)(n.In,{children:(0,T.jsx)("div",{className:(0,B.Z)("footer-center zen-mode-transition",{"layer-ui__wrapper__footer-left--transition-bottom":r.zenModeEnabled}),children:t})})},Y=K;K.displayName="FooterCenter";var G=c(6756),V=c(7169),X=c(2726),q=c(1781),$=c(785),J=c(3646),Q=["onSelect","children","icon","shortcut","className"],ee=["children","href","icon","shortcut","className"];function te(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ne(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?te(Object(n),!0).forEach((function(t){(0,V.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):te(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var re=function(e){var t=e.icon,n=e.shortcut,r=e.children,o=(0,M.Fy)();return(0,T.jsxs)(T.Fragment,{children:[(0,T.jsx)("div",{className:"welcome-screen-menu-item__icon",children:t}),(0,T.jsx)("div",{className:"welcome-screen-menu-item__text",children:r}),n&&!o.isMobile&&(0,T.jsx)("div",{className:"welcome-screen-menu-item__shortcut",children:n})]})};re.displayName="WelcomeScreenMenuItemContent";var oe=function(e){var t=e.onSelect,n=e.children,r=e.icon,o=e.shortcut,i=e.className,a=void 0===i?"":i,l=(0,X.Z)(e,Q);return(0,T.jsx)("button",ne(ne({},l),{},{type:"button",className:"welcome-screen-menu-item ".concat(a),onClick:t,children:(0,T.jsx)(re,{icon:r,shortcut:o,children:n})}))};oe.displayName="WelcomeScreenMenuItem";var ie=function(e){var t=e.children,n=e.href,r=e.icon,o=e.shortcut,i=e.className,a=void 0===i?"":i,l=(0,X.Z)(e,ee);return(0,T.jsx)("a",ne(ne({},l),{},{className:"welcome-screen-menu-item ".concat(a),href:n,target:"_blank",rel:"noreferrer",children:(0,T.jsx)(re,{icon:r,shortcut:o,children:t})}))};ie.displayName="WelcomeScreenMenuItemLink";var ae=function(e){var t=e.children,n=(0,H.R6)().WelcomeScreenCenterTunnel;return(0,T.jsx)(n.In,{children:(0,T.jsx)("div",{className:"welcome-screen-center",children:t||(0,T.jsxs)(T.Fragment,{children:[(0,T.jsx)(le,{}),(0,T.jsx)(ce,{children:(0,I.t)("welcomeScreen.defaults.center_heading")}),(0,T.jsxs)(se,{children:[(0,T.jsx)(de,{}),(0,T.jsx)(ue,{})]})]})})})};ae.displayName="Center";var le=function(e){var t=e.children;return(0,T.jsx)("div",{className:"welcome-screen-center__logo virgil welcome-screen-decor",children:t||(0,T.jsxs)(T.Fragment,{children:[J.ExcalLogo," Excalidraw"]})})};le.displayName="Logo";var ce=function(e){var t=e.children;return(0,T.jsx)("div",{className:"welcome-screen-center__heading welcome-screen-decor virgil",children:t})};ce.displayName="Heading";var se=function(e){var t=e.children;return(0,T.jsx)("div",{className:"welcome-screen-menu",children:t})};se.displayName="Menu";var ue=function(){var e=(0,M.eh)();return(0,T.jsx)(oe,{onSelect:function(){return e.executeAction(q.actionShortcuts)},shortcut:"?",icon:J.HelpIcon,children:(0,I.t)("helpDialog.title")})};ue.displayName="MenuItemHelp";var de=function(){var e=(0,U.I)(),t=(0,M.eh)();return e.viewModeEnabled?null:(0,T.jsx)(oe,{onSelect:function(){return t.executeAction(q.actionLoadScene)},shortcut:(0,$.C)("loadScene"),icon:J.LoadIcon,children:(0,I.t)("buttons.load")})};de.displayName="MenuItemLoadScene";var fe=function(e){var t=e.onSelect,n=(0,I.QT)().t;return(0,T.jsx)(oe,{shortcut:null,onSelect:t,icon:J.usersIcon,children:n("labels.liveCollaboration")})};fe.displayName="MenuItemLiveCollaborationTrigger",ae.Logo=le,ae.Heading=ce,ae.Menu=se,ae.MenuItem=oe,ae.MenuItemLink=ie,ae.MenuItemHelp=ue,ae.MenuItemLoadScene=de,ae.MenuItemLiveCollaborationTrigger=fe;var pe=function(e){var t=e.children,n=(0,H.R6)().WelcomeScreenMenuHintTunnel;return(0,T.jsx)(n.In,{children:(0,T.jsxs)("div",{className:"virgil welcome-screen-decor welcome-screen-decor-hint welcome-screen-decor-hint--menu",children:[J.WelcomeScreenMenuArrow,(0,T.jsx)("div",{className:"welcome-screen-decor-hint__label",children:t||(0,I.t)("welcomeScreen.defaults.menuHint")})]})})};pe.displayName="MenuHint";var he=function(e){var t=e.children,n=(0,H.R6)().WelcomeScreenToolbarHintTunnel;return(0,T.jsx)(n.In,{children:(0,T.jsxs)("div",{className:"virgil welcome-screen-decor welcome-screen-decor-hint welcome-screen-decor-hint--toolbar",children:[(0,T.jsx)("div",{className:"welcome-screen-decor-hint__label",children:t||(0,I.t)("welcomeScreen.defaults.toolbarHint")}),J.WelcomeScreenTopToolbarArrow]})})};he.displayName="ToolbarHint";var me=function(e){var t=e.children,n=(0,H.R6)().WelcomeScreenHelpHintTunnel;return(0,T.jsx)(n.In,{children:(0,T.jsxs)("div",{className:"virgil welcome-screen-decor welcome-screen-decor-hint welcome-screen-decor-hint--help",children:[(0,T.jsx)("div",{children:t||(0,I.t)("welcomeScreen.defaults.helpHint")}),J.WelcomeScreenHelpArrow]})})};me.displayName="HelpHint";var ge=c(1569),ve={};ve.styleTagTransform=m(),ve.setAttributes=d(),ve.insert=l().bind(null,"head"),ve.domAPI=i(),ve.insertStyleElement=p();r()(ge.Z,ve),ge.Z&&ge.Z.locals&&ge.Z.locals;var be=function(e){return(0,T.jsx)(T.Fragment,{children:e.children||(0,T.jsxs)(T.Fragment,{children:[(0,T.jsx)(ae,{}),(0,T.jsx)(pe,{}),(0,T.jsx)(he,{}),(0,T.jsx)(me,{})]})})};be.displayName="WelcomeScreen",be.Center=ae,be.Hints={MenuHint:pe,ToolbarHint:he,HelpHint:me};var ye=be,xe=c(7172),we=c(3397),ke={};ke.styleTagTransform=m(),ke.setAttributes=d(),ke.insert=l().bind(null,"head"),ke.domAPI=i(),ke.insertStyleElement=p();r()(we.Z,ke),we.Z&&we.Z.locals&&we.Z.locals;var Ee=["isCollaborating","onSelect"];function Se(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Oe(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Se(Object(n),!0).forEach((function(t){(0,V.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Se(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var je=function(e){var t=e.isCollaborating,n=e.onSelect,r=(0,X.Z)(e,Ee),o=(0,U.I)();return(0,T.jsxs)(xe.z,Oe(Oe({},r),{},{className:(0,B.Z)("collab-button",{active:t}),type:"button",onSelect:n,style:{position:"relative"},title:(0,I.t)("labels.liveCollaboration"),children:[J.usersIcon,o.collaborators.size>0&&(0,T.jsx)("div",{className:"CollabButton-collaborators",children:o.collaborators.size})]}))},_e=je;je.displayName="LiveCollaborationTrigger";var Ce=c(1047),Ie=c(679),Te=c(3024),Pe=c(1974),Me=c(1935),De=c(7053),Ae=c(1034),Le=c(704),Ze=c(8897),Re=c(4162),ze=["initialData","UIOptions"],Ne=["initialData","UIOptions"];function Be(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function He(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Be(Object(n),!0).forEach((function(t){w()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Be(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Fe=function(t){var n,r,o,i=t.onChange,a=t.initialData,l=t.excalidrawRef,c=t.isCollaborating,s=void 0!==c&&c,u=t.onPointerUpdate,d=t.renderTopRightUI,f=t.langCode,p=void 0===f?I.Fp.code:f,h=t.viewModeEnabled,m=t.zenModeEnabled,g=t.gridModeEnabled,v=t.libraryReturnUrl,b=t.theme,y=t.name,x=t.renderCustomStats,w=t.onPaste,E=t.detectScroll,S=void 0===E||E,O=t.handleKeyboardGlobally,j=void 0!==O&&O,_=t.onLibraryChange,C=t.autoFocus,D=void 0!==C&&C,A=t.generateIdForFile,L=t.onLinkOpen,Z=t.onPointerDown,R=t.onScrollChange,B=t.id,H=t.onHomeButtonClick,F=t.children,W=null===(n=t.UIOptions)||void 0===n?void 0:n.canvasActions,U=He(He({},t.UIOptions),{},{canvasActions:He(He({},e.cW.canvasActions),W)});null!=W&&W.export&&(U.canvasActions.export.saveFileToDisk=null!==(r=null===(o=W.export)||void 0===o?void 0:o.saveFileToDisk)&&void 0!==r?r:e.cW.canvasActions.export.saveFileToDisk);return null===U.canvasActions.toggleTheme&&void 0===b&&(U.canvasActions.toggleTheme=!0),(0,k.useEffect)((function(){var e=function(e){"number"==typeof e.scale&&1!==e.scale&&e.preventDefault()};return document.addEventListener("touchmove",e,{passive:!1}),function(){document.removeEventListener("touchmove",e)}}),[]),(0,T.jsx)(z.zt,{unstable_createStore:function(){return N.e_},scope:N.yE,children:(0,T.jsx)(P,{langCode:p,theme:b,children:(0,T.jsx)(M.ZP,{id:B,onChange:i,initialData:a,excalidrawRef:l,isCollaborating:s,onPointerUpdate:u,renderTopRightUI:d,langCode:p,viewModeEnabled:h,zenModeEnabled:m,gridModeEnabled:g,libraryReturnUrl:v,theme:b,name:y,renderCustomStats:x,UIOptions:U,onPaste:w,detectScroll:S,handleKeyboardGlobally:j,onLibraryChange:_,autoFocus:D,generateIdForFile:A,onLinkOpen:L,onPointerDown:Z,onScrollChange:R,onHomeButtonClick:H,children:F})})})},We=function(e,t){if(e.children!==t.children)return!1;e.initialData;var n=e.UIOptions,r=void 0===n?{}:n,o=y()(e,ze),i=(t.initialData,t.UIOptions),a=void 0===i?{}:i,l=y()(t,Ne),c=Object.keys(r),s=Object.keys(a);return c.length===s.length&&(c.every((function(e){return"canvasActions"===e?Object.keys(r.canvasActions).every((function(e){var t,n,o,i;return"export"===e&&null!=r&&null!==(t=r.canvasActions)&&void 0!==t&&t.export&&null!=a&&null!==(n=a.canvasActions)&&void 0!==n&&n.export?r.canvasActions.export.saveFileToDisk===a.canvasActions.export.saveFileToDisk:(null==r||null===(o=r.canvasActions)||void 0===o?void 0:o[e])===(null==a||null===(i=a.canvasActions)||void 0===i?void 0:i[e])})):r[e]===a[e]}))&&(0,D.w8)(o,l))},Ue=(0,k.forwardRef)((function(e,t){return(0,T.jsx)(Fe,He(He({},e),{},{excalidrawRef:t}))})),Ke=E().memo(Ue,We);Ke.displayName="Excalidraw",t()}(),s}()}));