@serendie/ui 0.1.6

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 (172) hide show
  1. package/README.md +86 -0
  2. package/dist/components/Accordion.d.ts +23 -0
  3. package/dist/components/AccordionGroup.d.ts +2 -0
  4. package/dist/components/Avatar.d.ts +40 -0
  5. package/dist/components/Badge.d.ts +90 -0
  6. package/dist/components/Banner.d.ts +43 -0
  7. package/dist/components/BottomNavigation.d.ts +2 -0
  8. package/dist/components/BottomNavigationItem.d.ts +30 -0
  9. package/dist/components/Button.d.ts +133 -0
  10. package/dist/components/CheckBox.d.ts +47 -0
  11. package/dist/components/ChoiceBox.d.ts +8 -0
  12. package/dist/components/DashboardWidget.d.ts +13 -0
  13. package/dist/components/Divider.d.ts +33 -0
  14. package/dist/components/Drawer.d.ts +40 -0
  15. package/dist/components/DropdownMenu.d.ts +14 -0
  16. package/dist/components/IconButton.d.ts +81 -0
  17. package/dist/components/List.d.ts +2 -0
  18. package/dist/components/ListItem.d.ts +46 -0
  19. package/dist/components/ModalDialog.d.ts +15 -0
  20. package/dist/components/NotificationBadge.d.ts +54 -0
  21. package/dist/components/ProgressIndicator.d.ts +29 -0
  22. package/dist/components/RadioButton.d.ts +30 -0
  23. package/dist/components/RadioGroup.d.ts +2 -0
  24. package/dist/components/Search.d.ts +51 -0
  25. package/dist/components/Select.d.ts +63 -0
  26. package/dist/components/SvgIcon.d.ts +75 -0
  27. package/dist/components/SvgIcon.stories.d.ts +7 -0
  28. package/dist/components/Switch.d.ts +10 -0
  29. package/dist/components/TabItem.d.ts +22 -0
  30. package/dist/components/Tabs.d.ts +3 -0
  31. package/dist/components/TextArea.d.ts +8 -0
  32. package/dist/components/TextField.d.ts +7 -0
  33. package/dist/components/Toast.d.ts +35 -0
  34. package/dist/components/TopAppBar.d.ts +37 -0
  35. package/dist/index.cjs +65 -0
  36. package/dist/index.d.ts +33 -0
  37. package/dist/index.js +19523 -0
  38. package/dist/preset.d.ts +534 -0
  39. package/dist/recipes/index.d.ts +2 -0
  40. package/dist/styles.css +1 -0
  41. package/dist/tokens/getToken.d.ts +789 -0
  42. package/dist/tokens/index.d.ts +1808 -0
  43. package/dist/tokens/keyframes/index.d.ts +10 -0
  44. package/package.json +100 -0
  45. package/styled-system/css/conditions.js +34 -0
  46. package/styled-system/css/css.d.ts +22 -0
  47. package/styled-system/css/css.js +45 -0
  48. package/styled-system/css/cva.d.ts +6 -0
  49. package/styled-system/css/cva.js +87 -0
  50. package/styled-system/css/cx.d.ts +5 -0
  51. package/styled-system/css/cx.js +15 -0
  52. package/styled-system/css/index.d.ts +5 -0
  53. package/styled-system/css/index.js +4 -0
  54. package/styled-system/css/sva.d.ts +4 -0
  55. package/styled-system/css/sva.js +41 -0
  56. package/styled-system/helpers.js +326 -0
  57. package/styled-system/jsx/aspect-ratio.d.ts +10 -0
  58. package/styled-system/jsx/aspect-ratio.js +14 -0
  59. package/styled-system/jsx/bleed.d.ts +10 -0
  60. package/styled-system/jsx/bleed.js +14 -0
  61. package/styled-system/jsx/box.d.ts +10 -0
  62. package/styled-system/jsx/box.js +14 -0
  63. package/styled-system/jsx/center.d.ts +10 -0
  64. package/styled-system/jsx/center.js +14 -0
  65. package/styled-system/jsx/circle.d.ts +10 -0
  66. package/styled-system/jsx/circle.js +14 -0
  67. package/styled-system/jsx/container.d.ts +10 -0
  68. package/styled-system/jsx/container.js +14 -0
  69. package/styled-system/jsx/cq.d.ts +10 -0
  70. package/styled-system/jsx/cq.js +14 -0
  71. package/styled-system/jsx/divider.d.ts +10 -0
  72. package/styled-system/jsx/divider.js +14 -0
  73. package/styled-system/jsx/factory-helper.js +22 -0
  74. package/styled-system/jsx/factory.d.ts +3 -0
  75. package/styled-system/jsx/factory.js +80 -0
  76. package/styled-system/jsx/flex.d.ts +10 -0
  77. package/styled-system/jsx/flex.js +14 -0
  78. package/styled-system/jsx/float.d.ts +10 -0
  79. package/styled-system/jsx/float.js +14 -0
  80. package/styled-system/jsx/grid-item.d.ts +10 -0
  81. package/styled-system/jsx/grid-item.js +14 -0
  82. package/styled-system/jsx/grid.d.ts +10 -0
  83. package/styled-system/jsx/grid.js +14 -0
  84. package/styled-system/jsx/hstack.d.ts +10 -0
  85. package/styled-system/jsx/hstack.js +14 -0
  86. package/styled-system/jsx/index.d.ts +24 -0
  87. package/styled-system/jsx/index.js +22 -0
  88. package/styled-system/jsx/is-valid-prop.d.ts +11 -0
  89. package/styled-system/jsx/is-valid-prop.js +17 -0
  90. package/styled-system/jsx/link-overlay.d.ts +10 -0
  91. package/styled-system/jsx/link-overlay.js +14 -0
  92. package/styled-system/jsx/spacer.d.ts +10 -0
  93. package/styled-system/jsx/spacer.js +14 -0
  94. package/styled-system/jsx/square.d.ts +10 -0
  95. package/styled-system/jsx/square.js +14 -0
  96. package/styled-system/jsx/stack.d.ts +10 -0
  97. package/styled-system/jsx/stack.js +14 -0
  98. package/styled-system/jsx/visually-hidden.d.ts +10 -0
  99. package/styled-system/jsx/visually-hidden.js +14 -0
  100. package/styled-system/jsx/vstack.d.ts +10 -0
  101. package/styled-system/jsx/vstack.js +14 -0
  102. package/styled-system/jsx/wrap.d.ts +10 -0
  103. package/styled-system/jsx/wrap.js +14 -0
  104. package/styled-system/patterns/aspect-ratio.d.ts +21 -0
  105. package/styled-system/patterns/aspect-ratio.js +38 -0
  106. package/styled-system/patterns/bleed.d.ts +22 -0
  107. package/styled-system/patterns/bleed.js +24 -0
  108. package/styled-system/patterns/box.d.ts +21 -0
  109. package/styled-system/patterns/box.js +15 -0
  110. package/styled-system/patterns/center.d.ts +21 -0
  111. package/styled-system/patterns/center.js +21 -0
  112. package/styled-system/patterns/circle.d.ts +21 -0
  113. package/styled-system/patterns/circle.js +25 -0
  114. package/styled-system/patterns/container.d.ts +21 -0
  115. package/styled-system/patterns/container.js +21 -0
  116. package/styled-system/patterns/cq.d.ts +22 -0
  117. package/styled-system/patterns/cq.js +21 -0
  118. package/styled-system/patterns/divider.d.ts +23 -0
  119. package/styled-system/patterns/divider.js +25 -0
  120. package/styled-system/patterns/flex.d.ts +27 -0
  121. package/styled-system/patterns/flex.js +26 -0
  122. package/styled-system/patterns/float.d.ts +24 -0
  123. package/styled-system/patterns/float.js +52 -0
  124. package/styled-system/patterns/grid-item.d.ts +26 -0
  125. package/styled-system/patterns/grid-item.js +25 -0
  126. package/styled-system/patterns/grid.d.ts +25 -0
  127. package/styled-system/patterns/grid.js +27 -0
  128. package/styled-system/patterns/hstack.d.ts +22 -0
  129. package/styled-system/patterns/hstack.js +24 -0
  130. package/styled-system/patterns/index.d.ts +21 -0
  131. package/styled-system/patterns/index.js +20 -0
  132. package/styled-system/patterns/link-overlay.d.ts +21 -0
  133. package/styled-system/patterns/link-overlay.js +24 -0
  134. package/styled-system/patterns/spacer.d.ts +21 -0
  135. package/styled-system/patterns/spacer.js +21 -0
  136. package/styled-system/patterns/square.d.ts +21 -0
  137. package/styled-system/patterns/square.js +24 -0
  138. package/styled-system/patterns/stack.d.ts +24 -0
  139. package/styled-system/patterns/stack.js +24 -0
  140. package/styled-system/patterns/visually-hidden.d.ts +21 -0
  141. package/styled-system/patterns/visually-hidden.js +18 -0
  142. package/styled-system/patterns/vstack.d.ts +22 -0
  143. package/styled-system/patterns/vstack.js +24 -0
  144. package/styled-system/patterns/wrap.d.ts +25 -0
  145. package/styled-system/patterns/wrap.js +25 -0
  146. package/styled-system/themes/asagi.json +5 -0
  147. package/styled-system/themes/index.d.ts +36 -0
  148. package/styled-system/themes/index.js +24 -0
  149. package/styled-system/themes/kurikawa.json +5 -0
  150. package/styled-system/themes/sumire.json +5 -0
  151. package/styled-system/themes/theme-asagi.json +5 -0
  152. package/styled-system/themes/theme-kurikawa.json +5 -0
  153. package/styled-system/themes/theme-sumire.json +5 -0
  154. package/styled-system/themes/theme-tsutsuji.json +5 -0
  155. package/styled-system/themes/tsutsuji.json +5 -0
  156. package/styled-system/tokens/index.d.ts +9 -0
  157. package/styled-system/tokens/index.js +3548 -0
  158. package/styled-system/tokens/tokens.d.ts +48 -0
  159. package/styled-system/types/composition.d.ts +138 -0
  160. package/styled-system/types/conditions.d.ts +214 -0
  161. package/styled-system/types/csstype.d.ts +21298 -0
  162. package/styled-system/types/global.d.ts +19 -0
  163. package/styled-system/types/index.d.ts +8 -0
  164. package/styled-system/types/jsx.d.ts +52 -0
  165. package/styled-system/types/parts.d.ts +8 -0
  166. package/styled-system/types/pattern.d.ts +78 -0
  167. package/styled-system/types/prop-type.d.ts +237 -0
  168. package/styled-system/types/recipe.d.ts +181 -0
  169. package/styled-system/types/selectors.d.ts +59 -0
  170. package/styled-system/types/static-css.d.ts +51 -0
  171. package/styled-system/types/style-props.d.ts +7468 -0
  172. package/styled-system/types/system-types.d.ts +88 -0
package/dist/index.cjs ADDED
@@ -0,0 +1,65 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const S=require("react"),Z0=require("react-dom");function J0(e){const n=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const t in e)if(t!=="default"){const o=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(n,t,o.get?o:{enumerable:!0,get:()=>e[t]})}}return n.default=e,Object.freeze(n)}const l=J0(S),Q0={},e1={colors:{sd:{reference:{color:{scale:{white:{1e3:{value:"#FFFFFF"}},black:{1e3:{value:"#000000"}},transparency:{5:{value:"#0000000D"},20:{value:"#00000033"},60:{value:"#FFFFFF99"}},gray:{100:{value:"#EFEEEB"},200:{value:"#D9D8D3"},300:{value:"#C8C7C2"},400:{value:"#AFAEAA"},500:{value:"#8C8B87"},600:{value:"#696966"},700:{value:"#525250"},800:{value:"#3F3F3D"},900:{value:"#31312F"},1e3:{value:"#232322"}},red:{100:{value:"#FCEBEA"},200:{value:"#FCD6D3"},300:{value:"#FDB9B4"},400:{value:"#FF8F8F"},500:{value:"#F84258"},600:{value:"#CE0037"},700:{value:"#A4002A"},800:{value:"#81001F"},900:{value:"#650417"},1e3:{value:"#49060E"}},chestnut:{100:{value:"#FAECE6"},200:{value:"#F7D8C9"},300:{value:"#F7C6B0"},400:{value:"#F49567"},500:{value:"#E26324"},600:{value:"#AB4919"},700:{value:"#803510"},800:{value:"#692C0D"},900:{value:"#50230D"},1e3:{value:"#371B0B"}},beige:{100:{value:"#F7EDE2"},200:{value:"#F2DBC0"},300:{value:"#EDC18A"},400:{value:"#DAA358"},500:{value:"#AF8245"},600:{value:"#846132"},700:{value:"#684C26"},800:{value:"#503A1C"},900:{value:"#3E2D17"},1e3:{value:"#2B2013"}},yellow:{100:{value:"#FEEDBE"},200:{value:"#FFE885"},300:{value:"#FFE600"},400:{value:"#EDD202"},500:{value:"#AC9301"},600:{value:"#857100"},700:{value:"#5F5100"},800:{value:"#4A3E00"},900:{value:"#3A3000"},1e3:{value:"#292200"}},green:{100:{value:"#CAF9E6"},200:{value:"#AEEAD5"},300:{value:"#98E1C8"},400:{value:"#6ED0AE"},500:{value:"#40A683"},600:{value:"#2C755C"},700:{value:"#266751"},800:{value:"#184737"},900:{value:"#12372B"},1e3:{value:"#0D271E"}},skyBlue:{100:{value:"#D9F6FC"},200:{value:"#C3EFF4"},300:{value:"#9CE6EC"},400:{value:"#64CCD3"},500:{value:"#00A3AF"},600:{value:"#00757E"},700:{value:"#015C63"},800:{value:"#01474C"},900:{value:"#02373C"},1e3:{value:"#04272A"}},blue:{100:{value:"#EFF2FC"},200:{value:"#D7DEFB"},300:{value:"#BFCEFC"},400:{value:"#8FAEFE"},500:{value:"#428CFE"},600:{value:"#0A69CF"},700:{value:"#0650A0"},800:{value:"#043F81"},900:{value:"#073165"},1e3:{value:"#081E3F"}},purple:{100:{value:"#F4ECF6"},200:{value:"#EADAEE"},300:{value:"#DCBDE4"},400:{value:"#CC9FD9"},500:{value:"#AA61C2"},600:{value:"#914DA9"},700:{value:"#733B85"},800:{value:"#592D68"},900:{value:"#462352"},1e3:{value:"#32183A"}},pink:{100:{value:"#F9EBF0"},200:{value:"#F6D7E0"},300:{value:"#F5C1D1"},400:{value:"#F190B4"},500:{value:"#EB4F8E"},600:{value:"#B9336B"},700:{value:"#932653"},800:{value:"#711D41"},900:{value:"#591734"},1e3:{value:"#401026"}}}}},system:{color:{impression:{primary:{value:"#0650A0"},onPrimary:{value:"#FFFFFF"},primaryContainer:{value:"#0650A0"},onPrimaryContainer:{value:"#FFFFFF"},secondary:{value:"#BFCEFC"},onSecondary:{value:"#000000"},secondaryContainer:{value:"#BFCEFC"},onSecondaryContainer:{value:"#000000"},tertiary:{value:"#EFF2FC"},onTertiary:{value:"#000000"},tertiaryContainer:{value:"#EFF2FC"},onTertiaryContainer:{value:"#000000"},notice:{value:"#FFE600"},onNotice:{value:"#000000"},noticeContainer:{value:"#FFE600"},onNoticeContainer:{value:"#000000"},negative:{value:"#CE0037"},onNegative:{value:"#FFFFFF"},negativeContainer:{value:"#FCD6D3"},onNegativeContainer:{value:"#000000"},positive:{value:"#40A683"},onPositive:{value:"#FFFFFF"},positiveContainer:{value:"#40A683"},onPositiveContainer:{value:"#FFFFFF"}},component:{surface:{value:"#FFFFFF"},onSurface:{value:"#000000"},onSurfaceVariant:{value:"#696966"},inverseSurface:{value:"#232322"},inverseOnSurface:{value:"#FFFFFF"},outline:{value:"#C8C7C2"},outlineVariant:{value:"#8C8B87"},scrim:{value:"#00000033"}},interaction:{disabled:{value:"#EFEEEB"},disabledOnSurface:{value:"#AFAEAA"},selectedSurface:{value:"#BFCEFC"},hovered:{value:"#00000033"},hoveredVariant:{value:"#0000000D"},hoveredOnPrimary:{value:"#FFFFFF99"}}}}}},spacing:{sd:{reference:{dimension:{scale:{0:{value:"0px"},1:{value:"1px"},2:{value:"2px"},3:{value:"4px"},4:{value:"8px"},5:{value:"12px"},6:{value:"16px"},7:{value:"20px"},8:{value:"24px"},9:{value:"28px"},10:{value:"32px"},11:{value:"36px"},12:{value:"40px"},13:{value:"48px"},14:{value:"56px"},15:{value:"64px"},16:{value:"72px"},17:{value:"80px"},18:{value:"96px"}}}},system:{dimension:{spacing:{none:{value:"0px"},twoExtraSmall:{value:"4px"},extraSmall:{value:"8px"},small:{value:"12px"},medium:{value:"16px"},large:{value:"20px"},extraLarge:{value:"24px"},twoExtraLarge:{value:"32px"},threeExtraLarge:{value:"40px"},fourExtraLarge:{value:"48px"},fiveExtraLarge:{value:"64px"},sixExtraLarge:{value:"80px"}}}}}},opacity:{sd:{reference:{elevation:{opacity:{scale:{0:{value:0},1:{value:.1},2:{value:.2},3:{value:.3},4:{value:.4},5:{value:.5},6:{value:.6},7:{value:.7},8:{value:.8},9:{value:.9},10:{value:1}}}}}}},fonts:{sd:{reference:{typography:{fontFamily:{primary:{value:"inherit"},monospace:{value:"Noto Sans Mono"}}}}}},fontWeights:{sd:{reference:{typography:{fontWeight:{regular:{value:400},bold:{value:700}}}}}},lineHeights:{sd:{reference:{typography:{lineHeight:{none:{value:1},tight:{value:1.4},normal:{value:1.6},relaxed:{value:1.8}}}}}},fontSizes:{sd:{reference:{typography:{scale:{expanded:{fourExtraSmall:{value:"10px"},threeExtraSmall:{value:"11px"},twoExtraSmall:{value:"12px"},extraSmall:{value:"13px"},small:{value:"14px"},medium:{value:"16px"},large:{value:"18px"},extraLarge:{value:"21px"},twoExtraLarge:{value:"26px"},threeExtraLarge:{value:"32px"},fourExtraLarge:{value:"43px"},fiveExtraLarge:{value:"64px"}},compact:{twoExtraSmall:{value:"10px"},extraSmall:{value:"11px"},small:{value:"12px"},medium:{value:"14px"},large:{value:"16px"},extraLarge:{value:"19px"},twoExtraLarge:{value:"22px"},threeExtraLarge:{value:"28px"},fourExtraLarge:{value:"37px"},fiveExtraLarge:{value:"56px"}}}}}}},borderWidths:{sd:{system:{dimension:{border:{medium:{value:"1px"},thick:{value:"2px"},extraThick:{value:"4px"}}}}}},radii:{sd:{system:{dimension:{radius:{extraSmall:{value:"2px"},small:{value:"4px"},medium:{value:"8px"},large:{value:"12px"},extraLarge:{value:"16px"},full:{value:"9999px"}}}}}},shadows:{sd:{system:{elevation:{shadow:{level1:{value:{color:"#0000004D",offsetX:0,offsetY:1,blur:2,spread:0}},level2:{value:{color:"#00000033",offsetX:0,offsetY:1,blur:4,spread:0}},level3:{value:{color:"#00000033",offsetX:0,offsetY:2,blur:8,spread:0}},level4:{value:{color:"#00000033",offsetX:0,offsetY:4,blur:12,spread:0}},level5:{value:{color:"#00000033",offsetX:0,offsetY:8,blur:24,spread:0}}}}}}},zIndex:{sd:{system:{elevation:{zIndex:{deepDive:{value:-1e3},base:{value:0},docked:{value:10},dropdown:{value:500},modal:{value:1e3},toast:{value:2e3}}}}}},textStyles:{sd:{system:{typography:{display:{small_compact:{value:{fontSize:"37px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},medium_compact:{value:{fontSize:"56px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},small_expanded:{value:{fontSize:"43px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},medium_expanded:{value:{fontSize:"64px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}}},headline:{small_compact:{value:{fontSize:"28px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},medium_compact:{value:{fontSize:"37px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},large_compact:{value:{fontSize:"56px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},small_expanded:{value:{fontSize:"21px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},medium_expanded:{value:{fontSize:"26px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},large_expanded:{value:{fontSize:"32px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}}},title:{small_compact:{value:{fontSize:"16px",fontWeight:700,fontFamily:"inherit",lineHeight:1.6}},medium_compact:{value:{fontSize:"19px",fontWeight:700,fontFamily:"inherit",lineHeight:1.6}},large_compact:{value:{fontSize:"22px",fontWeight:700,fontFamily:"inherit",lineHeight:1.6}},small_expanded:{value:{fontSize:"14px",fontWeight:700,fontFamily:"inherit",lineHeight:1.6}},medium_expanded:{value:{fontSize:"16px",fontWeight:700,fontFamily:"inherit",lineHeight:1.6}},large_expanded:{value:{fontSize:"18px",fontWeight:700,fontFamily:"inherit",lineHeight:1.6}}},body:{extraSmall_compact:{value:{fontSize:"12px",fontWeight:400,fontFamily:"inherit",lineHeight:1.4}},small_compact:{value:{fontSize:"14px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},medium_compact:{value:{fontSize:"16px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},large_compact:{value:{fontSize:"19px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},extraSmall_expanded:{value:{fontSize:"12px",fontWeight:400,fontFamily:"inherit",lineHeight:1.4}},small_expanded:{value:{fontSize:"13px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},medium_expanded:{value:{fontSize:"14px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},large_expanded:{value:{fontSize:"16px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}}},label:{small_compact:{value:{fontSize:"11px",fontWeight:400,fontFamily:"inherit",lineHeight:1}},medium_compact:{value:{fontSize:"12px",fontWeight:400,fontFamily:"inherit",lineHeight:1}},large_compact:{value:{fontSize:"14px",fontWeight:400,fontFamily:"inherit",lineHeight:1}},extraLarge_compact:{value:{fontSize:"16px",fontWeight:400,fontFamily:"inherit",lineHeight:1}},small_expanded:{value:{fontSize:"11px",fontWeight:400,fontFamily:"inherit",lineHeight:1}},medium_expanded:{value:{fontSize:"12px",fontWeight:400,fontFamily:"inherit",lineHeight:1}},large_expanded:{value:{fontSize:"13px",fontWeight:400,fontFamily:"inherit",lineHeight:1}},extraLarge_expanded:{value:{fontSize:"14px",fontWeight:400,fontFamily:"inherit",lineHeight:1}}}}}}},themes:{asagi:{tokens:{colors:{sd:{system:{color:{impression:{primary:{value:"#00757E"},onPrimary:{value:"#FFFFFF"},primaryContainer:{value:"#00757E"},onPrimaryContainer:{value:"#FFFFFF"},secondary:{value:"#AEEAD5"},onSecondary:{value:"#000000"},secondaryContainer:{value:"#AEEAD5"},onSecondaryContainer:{value:"#000000"},tertiary:{value:"#EFEEEB"},onTertiary:{value:"#000000"},tertiaryContainer:{value:"#EFEEEB"},onTertiaryContainer:{value:"#000000"},notice:{value:"#FFE600"},onNotice:{value:"#000000"},noticeContainer:{value:"#FFE600"},onNoticeContainer:{value:"#000000"},negative:{value:"#CE0037"},onNegative:{value:"#FFFFFF"},negativeContainer:{value:"#FCD6D3"},onNegativeContainer:{value:"#000000"},positive:{value:"#40A683"},onPositive:{value:"#FFFFFF"},positiveContainer:{value:"#40A683"},onPositiveContainer:{value:"#FFFFFF"}},component:{surface:{value:"#FFFFFF"},onSurface:{value:"#000000"},onSurfaceVariant:{value:"#696966"},inverseSurface:{value:"#232322"},inverseOnSurface:{value:"#FFFFFF"},outline:{value:"#C8C7C2"},outlineVariant:{value:"#8C8B87"},scrim:{value:"#00000033"}},interaction:{disabled:{value:"#EFEEEB"},disabledOnSurface:{value:"#AFAEAA"},selectedSurface:{value:"#AEEAD5"},hovered:{value:"#00000033"},hoveredVariant:{value:"#0000000D"},hoveredOnPrimary:{value:"#FFFFFF99"}}}}}}}},kurikawa:{tokens:{colors:{sd:{system:{color:{impression:{primary:{value:"#803510"},onPrimary:{value:"#FFFFFF"},primaryContainer:{value:"#803510"},onPrimaryContainer:{value:"#FFFFFF"},secondary:{value:"#F7C6B0"},onSecondary:{value:"#000000"},secondaryContainer:{value:"#F7C6B0"},onSecondaryContainer:{value:"#000000"},tertiary:{value:"#F7EDE2"},onTertiary:{value:"#000000"},tertiaryContainer:{value:"#F7EDE2"},onTertiaryContainer:{value:"#000000"},notice:{value:"#FFE600"},onNotice:{value:"#000000"},noticeContainer:{value:"#FFE600"},onNoticeContainer:{value:"#000000"},negative:{value:"#CE0037"},onNegative:{value:"#FFFFFF"},negativeContainer:{value:"#FCD6D3"},onNegativeContainer:{value:"#000000"},positive:{value:"#40A683"},onPositive:{value:"#FFFFFF"},positiveContainer:{value:"#40A683"},onPositiveContainer:{value:"#FFFFFF"}},component:{surface:{value:"#FFFFFF"},onSurface:{value:"#000000"},onSurfaceVariant:{value:"#696966"},inverseSurface:{value:"#232322"},inverseOnSurface:{value:"#FFFFFF"},outline:{value:"#C8C7C2"},outlineVariant:{value:"#8C8B87"},scrim:{value:"#00000033"}},interaction:{disabled:{value:"#EFEEEB"},disabledOnSurface:{value:"#AFAEAA"},selectedSurface:{value:"#F7C6B0"},hovered:{value:"#00000033"},hoveredVariant:{value:"#0000000D"},hoveredOnPrimary:{value:"#FFFFFF99"}}}}}}}},sumire:{tokens:{colors:{sd:{system:{color:{impression:{primary:{value:"#733B85"},onPrimary:{value:"#FFFFFF"},primaryContainer:{value:"#733B85"},onPrimaryContainer:{value:"#FFFFFF"},secondary:{value:"#DCBDE4"},onSecondary:{value:"#000000"},secondaryContainer:{value:"#DCBDE4"},onSecondaryContainer:{value:"#000000"},tertiary:{value:"#073165"},onTertiary:{value:"#FFFFFF"},tertiaryContainer:{value:"#073165"},onTertiaryContainer:{value:"#FFFFFF"},notice:{value:"#FFE600"},onNotice:{value:"#000000"},noticeContainer:{value:"#FFE600"},onNoticeContainer:{value:"#000000"},negative:{value:"#CE0037"},onNegative:{value:"#FFFFFF"},negativeContainer:{value:"#FCD6D3"},onNegativeContainer:{value:"#000000"},positive:{value:"#40A683"},onPositive:{value:"#FFFFFF"},positiveContainer:{value:"#40A683"},onPositiveContainer:{value:"#FFFFFF"}},component:{surface:{value:"#FFFFFF"},onSurface:{value:"#000000"},onSurfaceVariant:{value:"#696966"},inverseSurface:{value:"#232322"},inverseOnSurface:{value:"#FFFFFF"},outline:{value:"#C8C7C2"},outlineVariant:{value:"#8C8B87"},scrim:{value:"#00000033"}},interaction:{disabled:{value:"#EFEEEB"},disabledOnSurface:{value:"#AFAEAA"},selectedSurface:{value:"#DCBDE4"},hovered:{value:"#00000033"},hoveredVariant:{value:"#0000000D"},hoveredOnPrimary:{value:"#FFFFFF99"}}}}}}}},tsutsuji:{tokens:{colors:{sd:{system:{color:{impression:{primary:{value:"#B9336B"},onPrimary:{value:"#FFFFFF"},primaryContainer:{value:"#F5C1D1"},onPrimaryContainer:{value:"#000000"},secondary:{value:"#F6D7E0"},onSecondary:{value:"#000000"},secondaryContainer:{value:"#F6D7E0"},onSecondaryContainer:{value:"#000000"},tertiary:{value:"#401026"},onTertiary:{value:"#FFFFFF"},tertiaryContainer:{value:"#401026"},onTertiaryContainer:{value:"#FFFFFF"},notice:{value:"#FFE600"},onNotice:{value:"#000000"},noticeContainer:{value:"#FFE600"},onNoticeContainer:{value:"#000000"},negative:{value:"#CE0037"},onNegative:{value:"#FFFFFF"},negativeContainer:{value:"#FCD6D3"},onNegativeContainer:{value:"#000000"},positive:{value:"#40A683"},onPositive:{value:"#FFFFFF"},positiveContainer:{value:"#40A683"},onPositiveContainer:{value:"#FFFFFF"}},component:{surface:{value:"#FFFFFF"},onSurface:{value:"#000000"},onSurfaceVariant:{value:"#696966"},inverseSurface:{value:"#232322"},inverseOnSurface:{value:"#FFFFFF"},outline:{value:"#C8C7C2"},outlineVariant:{value:"#8C8B87"},scrim:{value:"#00000033"}},interaction:{disabled:{value:"#EFEEEB"},disabledOnSurface:{value:"#AFAEAA"},selectedSurface:{value:"#F6D7E0"},hovered:{value:"#00000033"},hoveredVariant:{value:"#0000000D"},hoveredOnPrimary:{value:"#FFFFFF99"}}}}}}}}}},{textStyles:t1,...Rr}=e1,n1={...Rr,sizes:Rr.spacing},o1=t1,l1={sd:{reference:{color:{scale:{white:{1e3:"#FFFFFF"},black:{1e3:"#000000"},transparency:{5:"#0000000D",20:"#00000033",60:"#FFFFFF99"},gray:{100:"#EFEEEB",200:"#D9D8D3",300:"#C8C7C2",400:"#AFAEAA",500:"#8C8B87",600:"#696966",700:"#525250",800:"#3F3F3D",900:"#31312F",1e3:"#232322"},red:{100:"#FCEBEA",200:"#FCD6D3",300:"#FDB9B4",400:"#FF8F8F",500:"#F84258",600:"#CE0037",700:"#A4002A",800:"#81001F",900:"#650417",1e3:"#49060E"},chestnut:{100:"#FAECE6",200:"#F7D8C9",300:"#F7C6B0",400:"#F49567",500:"#E26324",600:"#AB4919",700:"#803510",800:"#692C0D",900:"#50230D",1e3:"#371B0B"},beige:{100:"#F7EDE2",200:"#F2DBC0",300:"#EDC18A",400:"#DAA358",500:"#AF8245",600:"#846132",700:"#684C26",800:"#503A1C",900:"#3E2D17",1e3:"#2B2013"},yellow:{100:"#FEEDBE",200:"#FFE885",300:"#FFE600",400:"#EDD202",500:"#AC9301",600:"#857100",700:"#5F5100",800:"#4A3E00",900:"#3A3000",1e3:"#292200"},green:{100:"#CAF9E6",200:"#AEEAD5",300:"#98E1C8",400:"#6ED0AE",500:"#40A683",600:"#2C755C",700:"#266751",800:"#184737",900:"#12372B",1e3:"#0D271E"},skyBlue:{100:"#D9F6FC",200:"#C3EFF4",300:"#9CE6EC",400:"#64CCD3",500:"#00A3AF",600:"#00757E",700:"#015C63",800:"#01474C",900:"#02373C",1e3:"#04272A"},blue:{100:"#EFF2FC",200:"#D7DEFB",300:"#BFCEFC",400:"#8FAEFE",500:"#428CFE",600:"#0A69CF",700:"#0650A0",800:"#043F81",900:"#073165",1e3:"#081E3F"},purple:{100:"#F4ECF6",200:"#EADAEE",300:"#DCBDE4",400:"#CC9FD9",500:"#AA61C2",600:"#914DA9",700:"#733B85",800:"#592D68",900:"#462352",1e3:"#32183A"},pink:{100:"#F9EBF0",200:"#F6D7E0",300:"#F5C1D1",400:"#F190B4",500:"#EB4F8E",600:"#B9336B",700:"#932653",800:"#711D41",900:"#591734",1e3:"#401026"}}},dimension:{scale:{0:"0px",1:"1px",2:"2px",3:"4px",4:"8px",5:"12px",6:"16px",7:"20px",8:"24px",9:"28px",10:"32px",11:"36px",12:"40px",13:"48px",14:"56px",15:"64px",16:"72px",17:"80px",18:"96px"},breakpoint:{small:"640px",medium:"768px",large:"1024px",extraLarge:"1280px"}},elevation:{opacity:{scale:{0:0,1:.1,2:.2,3:.3,4:.4,5:.5,6:.6,7:.7,8:.8,9:.9,10:1}}},typography:{fontFamily:{primary:"inherit",monospace:"Noto Sans Mono"},fontWeight:{regular:400,bold:700},lineHeight:{none:1,tight:1.4,normal:1.6,relaxed:1.8},scale:{expanded:{fourExtraSmall:"10px",threeExtraSmall:"11px",twoExtraSmall:"12px",extraSmall:"13px",small:"14px",medium:"16px",large:"18px",extraLarge:"21px",twoExtraLarge:"26px",threeExtraLarge:"32px",fourExtraLarge:"43px",fiveExtraLarge:"64px"},compact:{twoExtraSmall:"10px",extraSmall:"11px",small:"12px",medium:"14px",large:"16px",extraLarge:"19px",twoExtraLarge:"22px",threeExtraLarge:"28px",fourExtraLarge:"37px",fiveExtraLarge:"56px"}}}},system:{color:{impression:{primary:"#0650A0",onPrimary:"#FFFFFF",primaryContainer:"#0650A0",onPrimaryContainer:"#FFFFFF",secondary:"#BFCEFC",onSecondary:"#000000",secondaryContainer:"#BFCEFC",onSecondaryContainer:"#000000",tertiary:"#EFF2FC",onTertiary:"#000000",tertiaryContainer:"#EFF2FC",onTertiaryContainer:"#000000",notice:"#FFE600",onNotice:"#000000",noticeContainer:"#FFE600",onNoticeContainer:"#000000",negative:"#CE0037",onNegative:"#FFFFFF",negativeContainer:"#FCD6D3",onNegativeContainer:"#000000",positive:"#40A683",onPositive:"#FFFFFF",positiveContainer:"#40A683",onPositiveContainer:"#FFFFFF"},component:{surface:"#FFFFFF",onSurface:"#000000",onSurfaceVariant:"#696966",inverseSurface:"#232322",inverseOnSurface:"#FFFFFF",outline:"#C8C7C2",outlineVariant:"#8C8B87",scrim:"#00000033"},interaction:{disabled:"#EFEEEB",disabledOnSurface:"#AFAEAA",selectedSurface:"#BFCEFC",hovered:"#00000033",hoveredVariant:"#0000000D",hoveredOnPrimary:"#FFFFFF99"}},dimension:{spacing:{none:"0px",twoExtraSmall:"4px",extraSmall:"8px",small:"12px",medium:"16px",large:"20px",extraLarge:"24px",twoExtraLarge:"32px",threeExtraLarge:"40px",fourExtraLarge:"48px",fiveExtraLarge:"64px",sixExtraLarge:"80px"},border:{medium:"1px",thick:"2px",extraThick:"4px"},radius:{extraSmall:"2px",small:"4px",medium:"8px",large:"12px",extraLarge:"16px",full:"9999px"},breakpoint:{compact:"0px",expanded:"768px"}},elevation:{shadow:{level1:{color:"#0000004D",offsetX:"0px",offsetY:"1px",blur:"2px",spread:"0px"},level2:{color:"#00000033",offsetX:"0px",offsetY:"1px",blur:"4px",spread:"0px"},level3:{color:"#00000033",offsetX:"0px",offsetY:"2px",blur:"8px",spread:"0px"},level4:{color:"#00000033",offsetX:"0px",offsetY:"4px",blur:"12px",spread:"0px"},level5:{color:"#00000033",offsetX:"0px",offsetY:"8px",blur:"24px",spread:"0px"}},zIndex:{deepDive:-1e3,base:0,docked:10,dropdown:500,modal:1e3,toast:2e3}},typography:{display:{small_compact:{fontSize:"37px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6},medium_compact:{fontSize:"56px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6},small_expanded:{fontSize:"43px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6},medium_expanded:{fontSize:"64px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},headline:{small_compact:{fontSize:"28px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6},medium_compact:{fontSize:"37px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6},large_compact:{fontSize:"56px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6},small_expanded:{fontSize:"21px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6},medium_expanded:{fontSize:"26px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6},large_expanded:{fontSize:"32px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},title:{small_compact:{fontSize:"16px",fontWeight:700,fontFamily:"inherit",lineHeight:1.6},medium_compact:{fontSize:"19px",fontWeight:700,fontFamily:"inherit",lineHeight:1.6},large_compact:{fontSize:"22px",fontWeight:700,fontFamily:"inherit",lineHeight:1.6},small_expanded:{fontSize:"14px",fontWeight:700,fontFamily:"inherit",lineHeight:1.6},medium_expanded:{fontSize:"16px",fontWeight:700,fontFamily:"inherit",lineHeight:1.6},large_expanded:{fontSize:"18px",fontWeight:700,fontFamily:"inherit",lineHeight:1.6}},body:{extraSmall_compact:{fontSize:"12px",fontWeight:400,fontFamily:"inherit",lineHeight:1.4},small_compact:{fontSize:"14px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6},medium_compact:{fontSize:"16px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6},large_compact:{fontSize:"19px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6},extraSmall_expanded:{fontSize:"12px",fontWeight:400,fontFamily:"inherit",lineHeight:1.4},small_expanded:{fontSize:"13px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6},medium_expanded:{fontSize:"14px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6},large_expanded:{fontSize:"16px",fontWeight:400,fontFamily:"inherit",lineHeight:1.6}},label:{small_compact:{fontSize:"11px",fontWeight:400,fontFamily:"inherit",lineHeight:1},medium_compact:{fontSize:"12px",fontWeight:400,fontFamily:"inherit",lineHeight:1},large_compact:{fontSize:"14px",fontWeight:400,fontFamily:"inherit",lineHeight:1},extraLarge_compact:{fontSize:"16px",fontWeight:400,fontFamily:"inherit",lineHeight:1},small_expanded:{fontSize:"11px",fontWeight:400,fontFamily:"inherit",lineHeight:1},medium_expanded:{fontSize:"12px",fontWeight:400,fontFamily:"inherit",lineHeight:1},large_expanded:{fontSize:"13px",fontWeight:400,fontFamily:"inherit",lineHeight:1},extraLarge_expanded:{fontSize:"14px",fontWeight:400,fontFamily:"inherit",lineHeight:1}}}}},themes:{asagi:{tokens:{colors:{sd:{system:{color:{impression:{primary:"#00757E",onPrimary:"#FFFFFF",primaryContainer:"#00757E",onPrimaryContainer:"#FFFFFF",secondary:"#AEEAD5",onSecondary:"#000000",secondaryContainer:"#AEEAD5",onSecondaryContainer:"#000000",tertiary:"#EFEEEB",onTertiary:"#000000",tertiaryContainer:"#EFEEEB",onTertiaryContainer:"#000000",notice:"#FFE600",onNotice:"#000000",noticeContainer:"#FFE600",onNoticeContainer:"#000000",negative:"#CE0037",onNegative:"#FFFFFF",negativeContainer:"#FCD6D3",onNegativeContainer:"#000000",positive:"#40A683",onPositive:"#FFFFFF",positiveContainer:"#40A683",onPositiveContainer:"#FFFFFF"},component:{surface:"#FFFFFF",onSurface:"#000000",onSurfaceVariant:"#696966",inverseSurface:"#232322",inverseOnSurface:"#FFFFFF",outline:"#C8C7C2",outlineVariant:"#8C8B87",scrim:"#00000033"},interaction:{disabled:"#EFEEEB",disabledOnSurface:"#AFAEAA",selectedSurface:"#AEEAD5",hovered:"#00000033",hoveredVariant:"#0000000D",hoveredOnPrimary:"#FFFFFF99"}}}}}}},kurikawa:{tokens:{colors:{sd:{system:{color:{impression:{primary:"#803510",onPrimary:"#FFFFFF",primaryContainer:"#803510",onPrimaryContainer:"#FFFFFF",secondary:"#F7C6B0",onSecondary:"#000000",secondaryContainer:"#F7C6B0",onSecondaryContainer:"#000000",tertiary:"#F7EDE2",onTertiary:"#000000",tertiaryContainer:"#F7EDE2",onTertiaryContainer:"#000000",notice:"#FFE600",onNotice:"#000000",noticeContainer:"#FFE600",onNoticeContainer:"#000000",negative:"#CE0037",onNegative:"#FFFFFF",negativeContainer:"#FCD6D3",onNegativeContainer:"#000000",positive:"#40A683",onPositive:"#FFFFFF",positiveContainer:"#40A683",onPositiveContainer:"#FFFFFF"},component:{surface:"#FFFFFF",onSurface:"#000000",onSurfaceVariant:"#696966",inverseSurface:"#232322",inverseOnSurface:"#FFFFFF",outline:"#C8C7C2",outlineVariant:"#8C8B87",scrim:"#00000033"},interaction:{disabled:"#EFEEEB",disabledOnSurface:"#AFAEAA",selectedSurface:"#F7C6B0",hovered:"#00000033",hoveredVariant:"#0000000D",hoveredOnPrimary:"#FFFFFF99"}}}}}}},sumire:{tokens:{colors:{sd:{system:{color:{impression:{primary:"#733B85",onPrimary:"#FFFFFF",primaryContainer:"#733B85",onPrimaryContainer:"#FFFFFF",secondary:"#DCBDE4",onSecondary:"#000000",secondaryContainer:"#DCBDE4",onSecondaryContainer:"#000000",tertiary:"#073165",onTertiary:"#FFFFFF",tertiaryContainer:"#073165",onTertiaryContainer:"#FFFFFF",notice:"#FFE600",onNotice:"#000000",noticeContainer:"#FFE600",onNoticeContainer:"#000000",negative:"#CE0037",onNegative:"#FFFFFF",negativeContainer:"#FCD6D3",onNegativeContainer:"#000000",positive:"#40A683",onPositive:"#FFFFFF",positiveContainer:"#40A683",onPositiveContainer:"#FFFFFF"},component:{surface:"#FFFFFF",onSurface:"#000000",onSurfaceVariant:"#696966",inverseSurface:"#232322",inverseOnSurface:"#FFFFFF",outline:"#C8C7C2",outlineVariant:"#8C8B87",scrim:"#00000033"},interaction:{disabled:"#EFEEEB",disabledOnSurface:"#AFAEAA",selectedSurface:"#DCBDE4",hovered:"#00000033",hoveredVariant:"#0000000D",hoveredOnPrimary:"#FFFFFF99"}}}}}}},tsutsuji:{tokens:{colors:{sd:{system:{color:{impression:{primary:"#B9336B",onPrimary:"#FFFFFF",primaryContainer:"#F5C1D1",onPrimaryContainer:"#000000",secondary:"#F6D7E0",onSecondary:"#000000",secondaryContainer:"#F6D7E0",onSecondaryContainer:"#000000",tertiary:"#401026",onTertiary:"#FFFFFF",tertiaryContainer:"#401026",onTertiaryContainer:"#FFFFFF",notice:"#FFE600",onNotice:"#000000",noticeContainer:"#FFE600",onNoticeContainer:"#000000",negative:"#CE0037",onNegative:"#FFFFFF",negativeContainer:"#FCD6D3",onNegativeContainer:"#000000",positive:"#40A683",onPositive:"#FFFFFF",positiveContainer:"#40A683",onPositiveContainer:"#FFFFFF"},component:{surface:"#FFFFFF",onSurface:"#000000",onSurfaceVariant:"#696966",inverseSurface:"#232322",inverseOnSurface:"#FFFFFF",outline:"#C8C7C2",outlineVariant:"#8C8B87",scrim:"#00000033"},interaction:{disabled:"#EFEEEB",disabledOnSurface:"#AFAEAA",selectedSurface:"#F6D7E0",hovered:"#00000033",hoveredVariant:"#0000000D",hoveredOnPrimary:"#FFFFFF99"}}}}}}}}};function i1(){return l1}const r1={spin:{"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}}},{sd:a1}=i1(),{themes:NE,...s1}=n1,c1={theme:{extend:{breakpoints:{expanded:a1.system.dimension.breakpoint.expanded},recipes:Q0,tokens:{...s1},textStyles:{...o1},keyframes:{...r1}}}};var Hl={exports:{}},On={};/**
2
+ * @license React
3
+ * react-jsx-runtime.production.min.js
4
+ *
5
+ * Copyright (c) Facebook, Inc. and its affiliates.
6
+ *
7
+ * This source code is licensed under the MIT license found in the
8
+ * LICENSE file in the root directory of this source tree.
9
+ */var Sr;function d1(){if(Sr)return On;Sr=1;var e=S,n=Symbol.for("react.element"),t=Symbol.for("react.fragment"),o=Object.prototype.hasOwnProperty,i=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,r={key:!0,ref:!0,__self:!0,__source:!0};function a(s,c,d){var h,v={},g=null,p=null;d!==void 0&&(g=""+d),c.key!==void 0&&(g=""+c.key),c.ref!==void 0&&(p=c.ref);for(h in c)o.call(c,h)&&!r.hasOwnProperty(h)&&(v[h]=c[h]);if(s&&s.defaultProps)for(h in c=s.defaultProps,c)v[h]===void 0&&(v[h]=c[h]);return{$$typeof:n,type:s,key:g,ref:p,props:v,_owner:i.current}}return On.Fragment=t,On.jsx=a,On.jsxs=a,On}var Vn={};/**
10
+ * @license React
11
+ * react-jsx-runtime.development.js
12
+ *
13
+ * Copyright (c) Facebook, Inc. and its affiliates.
14
+ *
15
+ * This source code is licensed under the MIT license found in the
16
+ * LICENSE file in the root directory of this source tree.
17
+ */var Ir;function u1(){return Ir||(Ir=1,process.env.NODE_ENV!=="production"&&function(){var e=S,n=Symbol.for("react.element"),t=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),i=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),a=Symbol.for("react.provider"),s=Symbol.for("react.context"),c=Symbol.for("react.forward_ref"),d=Symbol.for("react.suspense"),h=Symbol.for("react.suspense_list"),v=Symbol.for("react.memo"),g=Symbol.for("react.lazy"),p=Symbol.for("react.offscreen"),w=Symbol.iterator,f="@@iterator";function x(u){if(u===null||typeof u!="object")return null;var y=w&&u[w]||u[f];return typeof y=="function"?y:null}var C=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function E(u){{for(var y=arguments.length,b=new Array(y>1?y-1:0),z=1;z<y;z++)b[z-1]=arguments[z];T("error",u,b)}}function T(u,y,b){{var z=C.ReactDebugCurrentFrame,N=z.getStackAddendum();N!==""&&(y+="%s",b=b.concat([N]));var j=b.map(function(B){return String(B)});j.unshift("Warning: "+y),Function.prototype.apply.call(console[u],console,j)}}var F=!1,k=!1,q=!1,Q=!1,ce=!1,H;H=Symbol.for("react.module.reference");function L(u){return!!(typeof u=="string"||typeof u=="function"||u===o||u===r||ce||u===i||u===d||u===h||Q||u===p||F||k||q||typeof u=="object"&&u!==null&&(u.$$typeof===g||u.$$typeof===v||u.$$typeof===a||u.$$typeof===s||u.$$typeof===c||u.$$typeof===H||u.getModuleId!==void 0))}function V(u,y,b){var z=u.displayName;if(z)return z;var N=y.displayName||y.name||"";return N!==""?b+"("+N+")":b}function I(u){return u.displayName||"Context"}function R(u){if(u==null)return null;if(typeof u.tag=="number"&&E("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),typeof u=="function")return u.displayName||u.name||null;if(typeof u=="string")return u;switch(u){case o:return"Fragment";case t:return"Portal";case r:return"Profiler";case i:return"StrictMode";case d:return"Suspense";case h:return"SuspenseList"}if(typeof u=="object")switch(u.$$typeof){case s:var y=u;return I(y)+".Consumer";case a:var b=u;return I(b._context)+".Provider";case c:return V(u,u.render,"ForwardRef");case v:var z=u.displayName||null;return z!==null?z:R(u.type)||"Memo";case g:{var N=u,j=N._payload,B=N._init;try{return R(B(j))}catch{return null}}}return null}var M=Object.assign,U=0,Y,K,le,ae,ue,Ae,Xe;function Oe(){}Oe.__reactDisabledLog=!0;function ct(){{if(U===0){Y=console.log,K=console.info,le=console.warn,ae=console.error,ue=console.group,Ae=console.groupCollapsed,Xe=console.groupEnd;var u={configurable:!0,enumerable:!0,value:Oe,writable:!0};Object.defineProperties(console,{info:u,log:u,warn:u,error:u,group:u,groupCollapsed:u,groupEnd:u})}U++}}function Zt(){{if(U--,U===0){var u={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:M({},u,{value:Y}),info:M({},u,{value:K}),warn:M({},u,{value:le}),error:M({},u,{value:ae}),group:M({},u,{value:ue}),groupCollapsed:M({},u,{value:Ae}),groupEnd:M({},u,{value:Xe})})}U<0&&E("disabledDepth fell below zero. This is a bug in React. Please file an issue.")}}var Ze=C.ReactCurrentDispatcher,Je;function dt(u,y,b){{if(Je===void 0)try{throw Error()}catch(N){var z=N.stack.trim().match(/\n( *(at )?)/);Je=z&&z[1]||""}return`
18
+ `+Je+u}}var Pt=!1,ut;{var Qo=typeof WeakMap=="function"?WeakMap:Map;ut=new Qo}function pn(u,y){if(!u||Pt)return"";{var b=ut.get(u);if(b!==void 0)return b}var z;Pt=!0;var N=Error.prepareStackTrace;Error.prepareStackTrace=void 0;var j;j=Ze.current,Ze.current=null,ct();try{if(y){var B=function(){throw Error()};if(Object.defineProperty(B.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(B,[])}catch(se){z=se}Reflect.construct(u,[],B)}else{try{B.call()}catch(se){z=se}u.call(B.prototype)}}else{try{throw Error()}catch(se){z=se}u()}}catch(se){if(se&&z&&typeof se.stack=="string"){for(var P=se.stack.split(`
19
+ `),ie=z.stack.split(`
20
+ `),Z=P.length-1,J=ie.length-1;Z>=1&&J>=0&&P[Z]!==ie[J];)J--;for(;Z>=1&&J>=0;Z--,J--)if(P[Z]!==ie[J]){if(Z!==1||J!==1)do if(Z--,J--,J<0||P[Z]!==ie[J]){var de=`
21
+ `+P[Z].replace(" at new "," at ");return u.displayName&&de.includes("<anonymous>")&&(de=de.replace("<anonymous>",u.displayName)),typeof u=="function"&&ut.set(u,de),de}while(Z>=1&&J>=0);break}}}finally{Pt=!1,Ze.current=j,Zt(),Error.prepareStackTrace=N}var _e=u?u.displayName||u.name:"",Se=_e?dt(_e):"";return typeof u=="function"&&ut.set(u,Se),Se}function el(u,y,b){return pn(u,!1)}function tl(u){var y=u.prototype;return!!(y&&y.isReactComponent)}function ht(u,y,b){if(u==null)return"";if(typeof u=="function")return pn(u,tl(u));if(typeof u=="string")return dt(u);switch(u){case d:return dt("Suspense");case h:return dt("SuspenseList")}if(typeof u=="object")switch(u.$$typeof){case c:return el(u.render);case v:return ht(u.type,y,b);case g:{var z=u,N=z._payload,j=z._init;try{return ht(j(N),y,b)}catch{}}}return""}var Qe=Object.prototype.hasOwnProperty,fn={},wn=C.ReactDebugCurrentFrame;function gt(u){if(u){var y=u._owner,b=ht(u.type,u._source,y?y.type:null);wn.setExtraStackFrame(b)}else wn.setExtraStackFrame(null)}function nl(u,y,b,z,N){{var j=Function.call.bind(Qe);for(var B in u)if(j(u,B)){var P=void 0;try{if(typeof u[B]!="function"){var ie=Error((z||"React class")+": "+b+" type `"+B+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof u[B]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw ie.name="Invariant Violation",ie}P=u[B](y,B,z,b,null,"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED")}catch(Z){P=Z}P&&!(P instanceof Error)&&(gt(N),E("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).",z||"React class",b,B,typeof P),gt(null)),P instanceof Error&&!(P.message in fn)&&(fn[P.message]=!0,gt(N),E("Failed %s type: %s",b,P.message),gt(null))}}}var ol=Array.isArray;function kt(u){return ol(u)}function ll(u){{var y=typeof Symbol=="function"&&Symbol.toStringTag,b=y&&u[Symbol.toStringTag]||u.constructor.name||"Object";return b}}function il(u){try{return En(u),!1}catch{return!0}}function En(u){return""+u}function yn(u){if(il(u))return E("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.",ll(u)),En(u)}var et=C.ReactCurrentOwner,rl={key:!0,ref:!0,__self:!0,__source:!0},xn,Cn,Bt;Bt={};function al(u){if(Qe.call(u,"ref")){var y=Object.getOwnPropertyDescriptor(u,"ref").get;if(y&&y.isReactWarning)return!1}return u.ref!==void 0}function sl(u){if(Qe.call(u,"key")){var y=Object.getOwnPropertyDescriptor(u,"key").get;if(y&&y.isReactWarning)return!1}return u.key!==void 0}function cl(u,y){if(typeof u.ref=="string"&&et.current&&y&&et.current.stateNode!==y){var b=R(et.current.type);Bt[b]||(E('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref',R(et.current.type),u.ref),Bt[b]=!0)}}function dl(u,y){{var b=function(){xn||(xn=!0,E("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)",y))};b.isReactWarning=!0,Object.defineProperty(u,"key",{get:b,configurable:!0})}}function ul(u,y){{var b=function(){Cn||(Cn=!0,E("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)",y))};b.isReactWarning=!0,Object.defineProperty(u,"ref",{get:b,configurable:!0})}}var hl=function(u,y,b,z,N,j,B){var P={$$typeof:n,type:u,key:y,ref:b,props:B,_owner:j};return P._store={},Object.defineProperty(P._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:!1}),Object.defineProperty(P,"_self",{configurable:!1,enumerable:!1,writable:!1,value:z}),Object.defineProperty(P,"_source",{configurable:!1,enumerable:!1,writable:!1,value:N}),Object.freeze&&(Object.freeze(P.props),Object.freeze(P)),P};function gl(u,y,b,z,N){{var j,B={},P=null,ie=null;b!==void 0&&(yn(b),P=""+b),sl(y)&&(yn(y.key),P=""+y.key),al(y)&&(ie=y.ref,cl(y,N));for(j in y)Qe.call(y,j)&&!rl.hasOwnProperty(j)&&(B[j]=y[j]);if(u&&u.defaultProps){var Z=u.defaultProps;for(j in Z)B[j]===void 0&&(B[j]=Z[j])}if(P||ie){var J=typeof u=="function"?u.displayName||u.name||"Unknown":u;P&&dl(B,J),ie&&ul(B,J)}return hl(u,P,ie,N,z,et.current,B)}}var At=C.ReactCurrentOwner,bn=C.ReactDebugCurrentFrame;function Le(u){if(u){var y=u._owner,b=ht(u.type,u._source,y?y.type:null);bn.setExtraStackFrame(b)}else bn.setExtraStackFrame(null)}var Lt;Lt=!1;function _t(u){return typeof u=="object"&&u!==null&&u.$$typeof===n}function Rn(){{if(At.current){var u=R(At.current.type);if(u)return`
22
+
23
+ Check the render method of \``+u+"`."}return""}}function vl(u){return""}var Sn={};function ml(u){{var y=Rn();if(!y){var b=typeof u=="string"?u:u.displayName||u.name;b&&(y=`
24
+
25
+ Check the top-level render call using <`+b+">.")}return y}}function In(u,y){{if(!u._store||u._store.validated||u.key!=null)return;u._store.validated=!0;var b=ml(y);if(Sn[b])return;Sn[b]=!0;var z="";u&&u._owner&&u._owner!==At.current&&(z=" It was passed a child from "+R(u._owner.type)+"."),Le(u),E('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.',b,z),Le(null)}}function Tn(u,y){{if(typeof u!="object")return;if(kt(u))for(var b=0;b<u.length;b++){var z=u[b];_t(z)&&In(z,y)}else if(_t(u))u._store&&(u._store.validated=!0);else if(u){var N=x(u);if(typeof N=="function"&&N!==u.entries)for(var j=N.call(u),B;!(B=j.next()).done;)_t(B.value)&&In(B.value,y)}}}function pl(u){{var y=u.type;if(y==null||typeof y=="string")return;var b;if(typeof y=="function")b=y.propTypes;else if(typeof y=="object"&&(y.$$typeof===c||y.$$typeof===v))b=y.propTypes;else return;if(b){var z=R(y);nl(b,u.props,"prop",z,u)}else if(y.PropTypes!==void 0&&!Lt){Lt=!0;var N=R(y);E("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?",N||"Unknown")}typeof y.getDefaultProps=="function"&&!y.getDefaultProps.isReactClassApproved&&E("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.")}}function fl(u){{for(var y=Object.keys(u.props),b=0;b<y.length;b++){var z=y[b];if(z!=="children"&&z!=="key"){Le(u),E("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",z),Le(null);break}}u.ref!==null&&(Le(u),E("Invalid attribute `ref` supplied to `React.Fragment`."),Le(null))}}var Mn={};function zn(u,y,b,z,N,j){{var B=L(u);if(!B){var P="";(u===void 0||typeof u=="object"&&u!==null&&Object.keys(u).length===0)&&(P+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");var ie=vl();ie?P+=ie:P+=Rn();var Z;u===null?Z="null":kt(u)?Z="array":u!==void 0&&u.$$typeof===n?(Z="<"+(R(u.type)||"Unknown")+" />",P=" Did you accidentally export a JSX literal instead of a component?"):Z=typeof u,E("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",Z,P)}var J=gl(u,y,b,N,j);if(J==null)return J;if(B){var de=y.children;if(de!==void 0)if(z)if(kt(de)){for(var _e=0;_e<de.length;_e++)Tn(de[_e],u);Object.freeze&&Object.freeze(de)}else E("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else Tn(de,u)}if(Qe.call(y,"key")){var Se=R(u),se=Object.keys(y).filter(function(bl){return bl!=="key"}),Nt=se.length>0?"{key: someKey, "+se.join(": ..., ")+": ...}":"{key: someKey}";if(!Mn[Se+Nt]){var Cl=se.length>0?"{"+se.join(": ..., ")+": ...}":"{}";E(`A props object containing a "key" prop is being spread into JSX:
26
+ let props = %s;
27
+ <%s {...props} />
28
+ React keys must be passed directly to JSX without using spread:
29
+ let props = %s;
30
+ <%s key={someKey} {...props} />`,Nt,Se,Cl,Se),Mn[Se+Nt]=!0}}return u===o?fl(J):pl(J),J}}function wl(u,y,b){return zn(u,y,b,!0)}function El(u,y,b){return zn(u,y,b,!1)}var yl=El,xl=wl;Vn.Fragment=o,Vn.jsx=yl,Vn.jsxs=xl}()),Vn}process.env.NODE_ENV==="production"?Hl.exports=d1():Hl.exports=u1();var m=Hl.exports;function Kn(e){return typeof e=="object"&&e!=null&&!Array.isArray(e)}function Bo(e){return Object.fromEntries(Object.entries(e??{}).filter(([n,t])=>t!==void 0))}var h1=e=>e==="base";function g1(e){return e.slice().filter(n=>!h1(n))}function Tr(e){return String.fromCharCode(e+(e>25?39:97))}function v1(e){let n="",t;for(t=Math.abs(e);t>52;t=t/52|0)n=Tr(t%52)+n;return Tr(t%52)+n}function m1(e,n){let t=n.length;for(;t;)e=e*33^n.charCodeAt(--t);return e}function p1(e){return v1(m1(5381,e)>>>0)}var Va=/\s*!(important)?/i;function f1(e){return typeof e=="string"?Va.test(e):!1}function w1(e){return typeof e=="string"?e.replace(Va,"").trim():e}function Fa(e){return typeof e=="string"?e.replaceAll(" ","_"):e}var dn=e=>{const n=new Map;return(...o)=>{const i=JSON.stringify(o);if(n.has(i))return n.get(i);const r=e(...o);return n.set(i,r),r}};function wi(...e){return e.filter(Boolean).reduce((t,o)=>(Object.keys(o).forEach(i=>{const r=t[i],a=o[i];Kn(r)&&Kn(a)?t[i]=wi(r,a):t[i]=a}),t),{})}var E1=e=>e!=null;function Ei(e,n,t={}){const{stop:o,getKey:i}=t;function r(a,s=[]){if(Kn(a)||Array.isArray(a)){const c={};for(const[d,h]of Object.entries(a)){const v=(i==null?void 0:i(d,h))??d,g=[...s,v];if(o!=null&&o(a,g))return n(a,s);const p=r(h,g);E1(p)&&(c[v]=p)}return c}return n(a,s)}return r(e)}function y1(e,n){return Array.isArray(e)?e.map(t=>n(t)):Kn(e)?Ei(e,t=>n(t)):n(e)}function x1(e,n){return e.reduce((t,o,i)=>{const r=n[i];return o!=null&&(t[r]=o),t},{})}function Pa(e,n,t=!0){const{utility:o,conditions:i}=n,{hasShorthand:r,resolveShorthand:a}=o;return Ei(e,s=>Array.isArray(s)?x1(s,i.breakpoints.keys):s,{stop:s=>Array.isArray(s),getKey:t?s=>r?a(s):s:void 0})}var C1={shift:e=>e,finalize:e=>e,breakpoints:{keys:[]}},b1=e=>typeof e=="string"?e.replaceAll(/[\n\s]+/g," "):e;function R1(e){const{utility:n,hash:t,conditions:o=C1}=e,i=a=>[n.prefix,a].filter(Boolean).join("-"),r=(a,s)=>{let c;if(t){const d=[...o.finalize(a),s];c=i(n.toHash(d,p1))}else c=[...o.finalize(a),i(s)].join(":");return c};return dn(({base:a,...s}={})=>{const c=Object.assign(s,a),d=Pa(c,e),h=new Set;return Ei(d,(v,g)=>{const p=f1(v);if(v==null)return;const[w,...f]=o.shift(g),x=g1(f),C=n.transform(w,w1(b1(v)));let E=r(x,C.className);p&&(E=`${E}!`),h.add(E)}),Array.from(h).join(" ")})}function S1(...e){return e.flat().filter(n=>Kn(n)&&Object.keys(Bo(n)).length>0)}function I1(e){function n(i){const r=S1(...i);return r.length===1?r:r.map(a=>Pa(a,e))}function t(...i){return wi(...n(i))}function o(...i){return Object.assign({},...n(i))}return{mergeCss:dn(t),assignCss:o}}var T1=/([A-Z])/g,M1=/^ms-/,z1=dn(e=>e.startsWith("--")?e:e.replace(T1,"-$1").replace(M1,"-ms-").toLowerCase()),O1=["min","max","clamp","calc"],V1=new RegExp(`^(${O1.join("|")})\\(.*\\)`),F1=e=>typeof e=="string"&&V1.test(e),P1="cm,mm,Q,in,pc,pt,px,em,ex,ch,rem,lh,rlh,vw,vh,vmin,vmax,vb,vi,svw,svh,lvw,lvh,dvw,dvh,cqw,cqh,cqi,cqb,cqmin,cqmax,%",k1=`(?:${P1.split(",").join("|")})`,B1=new RegExp(`^[+-]?[0-9]*.?[0-9]+(?:[eE][+-]?[0-9]+)?${k1}$`),A1=e=>typeof e=="string"&&B1.test(e),L1=e=>typeof e=="string"&&/^var\(--.+\)$/.test(e),_1={map:y1,isCssFunction:F1,isCssVar:L1,isCssUnit:A1},N1=(e,n)=>{if(!(e!=null&&e.defaultValues))return n;const t=typeof e.defaultValues=="function"?e.defaultValues(n):e.defaultValues;return Object.assign({},t,Bo(n))},$1=(e={})=>{const n=i=>{var r;return{className:[e.className,i].filter(Boolean).join("__"),base:((r=e.base)==null?void 0:r[i])??{},variants:{},defaultVariants:e.defaultVariants??{},compoundVariants:e.compoundVariants?H1(e.compoundVariants,i):[]}},o=(e.slots??[]).map(i=>[i,n(i)]);for(const[i,r]of Object.entries(e.variants??{}))for(const[a,s]of Object.entries(r))o.forEach(([c,d])=>{var h;(h=d.variants)[i]??(h[i]={}),d.variants[i][a]=s[c]??{}});return Object.fromEntries(o)},H1=(e,n)=>e.filter(t=>t.css[n]).map(t=>({...t,css:t.css[n]}));function Ao(e,...n){const t=Object.getOwnPropertyDescriptors(e),o=Object.keys(t),i=a=>{const s={};for(let c=0;c<a.length;c++){const d=a[c];t[d]&&(Object.defineProperty(s,d,t[d]),delete t[d])}return s},r=a=>i(Array.isArray(a)?a:o.filter(a));return n.map(r).concat(i(o))}var D1=(...e)=>e.filter(Boolean).reduce((n,t)=>Array.from(new Set([...n,...t])),[]),ka=["htmlSize","htmlTranslate","htmlWidth","htmlHeight"];function j1(e){return ka.includes(e)?e.replace("html","").toLowerCase():e}function Dl(e){return Object.fromEntries(Object.entries(e).map(([n,t])=>[j1(n),t]))}Dl.keys=ka;const W1="_hover,_focus,_focusWithin,_focusVisible,_disabled,_active,_visited,_target,_readOnly,_readWrite,_empty,_checked,_enabled,_expanded,_highlighted,_before,_after,_firstLetter,_firstLine,_marker,_selection,_file,_backdrop,_first,_last,_only,_even,_odd,_firstOfType,_lastOfType,_onlyOfType,_peerFocus,_peerHover,_peerActive,_peerFocusWithin,_peerFocusVisible,_peerDisabled,_peerChecked,_peerInvalid,_peerExpanded,_peerPlaceholderShown,_groupFocus,_groupHover,_groupActive,_groupFocusWithin,_groupFocusVisible,_groupDisabled,_groupChecked,_groupExpanded,_groupInvalid,_indeterminate,_required,_valid,_invalid,_autofill,_inRange,_outOfRange,_placeholder,_placeholderShown,_pressed,_selected,_default,_optional,_open,_closed,_fullscreen,_loading,_currentPage,_currentStep,_motionReduce,_motionSafe,_print,_landscape,_portrait,_dark,_light,_osDark,_osLight,_highContrast,_lessContrast,_moreContrast,_ltr,_rtl,_scrollbar,_scrollbarThumb,_scrollbarTrack,_horizontal,_vertical,_starting,expanded,expandedOnly,expandedDown,_themeAsagi,_themeKurikawa,_themeSumire,_themeTsutsuji,base",Ba=new Set(W1.split(","));function Mr(e){return Ba.has(e)||/^@|&|&$/.test(e)}const G1=/^_/,U1=/&|@/;function K1(e){return e.map(n=>Ba.has(n)?n.replace(G1,""):U1.test(n)?`[${Fa(n.trim())}]`:n)}function q1(e){return e.sort((n,t)=>{const o=Mr(n),i=Mr(t);return o&&!i?1:!o&&i?-1:0})}const Y1="aspectRatio:asp,boxDecorationBreak:bx-db,zIndex:z,boxSizing:bx-s,objectPosition:obj-p,objectFit:obj-f,overscrollBehavior:ovs-b,overscrollBehaviorX:ovs-bx,overscrollBehaviorY:ovs-by,position:pos/1,top:top,left:left,inset:inset,insetInline:inset-x/insetX,insetBlock:inset-y/insetY,insetBlockEnd:inset-be,insetBlockStart:inset-bs,insetInlineEnd:inset-e/insetEnd/end,insetInlineStart:inset-s/insetStart/start,right:right,bottom:bottom,float:float,visibility:vis,display:d,hideFrom:hide,hideBelow:show,flexBasis:flex-b,flex:flex,flexDirection:flex-d/flexDir,flexGrow:flex-g,flexShrink:flex-sh,gridTemplateColumns:grid-tc,gridTemplateRows:grid-tr,gridColumn:grid-c,gridRow:grid-r,gridColumnStart:grid-cs,gridColumnEnd:grid-ce,gridAutoFlow:grid-af,gridAutoColumns:grid-ac,gridAutoRows:grid-ar,gap:gap,gridGap:grid-g,gridRowGap:grid-rg,gridColumnGap:grid-cg,rowGap:rg,columnGap:cg,justifyContent:jc,alignContent:ac,alignItems:ai,alignSelf:as,padding:p/1,paddingLeft:pl/1,paddingRight:pr/1,paddingTop:pt/1,paddingBottom:pb/1,paddingBlock:py/1/paddingY,paddingBlockEnd:pbe,paddingBlockStart:pbs,paddingInline:px/paddingX/1,paddingInlineEnd:pe/1/paddingEnd,paddingInlineStart:ps/1/paddingStart,marginLeft:ml/1,marginRight:mr/1,marginTop:mt/1,marginBottom:mb/1,margin:m/1,marginBlock:my/1/marginY,marginBlockEnd:mbe,marginBlockStart:mbs,marginInline:mx/1/marginX,marginInlineEnd:me/1/marginEnd,marginInlineStart:ms/1/marginStart,spaceX:sx,spaceY:sy,outlineWidth:ring-w/ringWidth,outlineColor:ring-c/ringColor,outline:ring/1,outlineOffset:ring-o/ringOffset,divideX:dvd-x,divideY:dvd-y,divideColor:dvd-c,divideStyle:dvd-s,width:w/1,inlineSize:w-is,minWidth:min-w/minW,minInlineSize:min-w-is,maxWidth:max-w/maxW,maxInlineSize:max-w-is,height:h/1,blockSize:h-bs,minHeight:min-h/minH,minBlockSize:min-h-bs,maxHeight:max-h/maxH,maxBlockSize:max-b,color:c,fontFamily:ff,fontSize:fs,fontSizeAdjust:fs-a,fontPalette:fp,fontKerning:fk,fontFeatureSettings:ff-s,fontWeight:fw,fontSmoothing:fsmt,fontVariant:fv,fontVariantAlternates:fv-alt,fontVariantCaps:fv-caps,fontVariationSettings:fv-s,fontVariantNumeric:fv-num,letterSpacing:ls,lineHeight:lh,textAlign:ta,textDecoration:td,textDecorationColor:td-c,textEmphasisColor:te-c,textDecorationStyle:td-s,textDecorationThickness:td-t,textUnderlineOffset:tu-o,textTransform:tt,textIndent:ti,textShadow:tsh,textShadowColor:tsh-c/textShadowColor,textOverflow:tov,verticalAlign:va,wordBreak:wb,textWrap:tw,truncate:trunc,lineClamp:lc,listStyleType:li-t,listStylePosition:li-pos,listStyleImage:li-img,listStyle:li-s,backgroundPosition:bg-p/bgPosition,backgroundPositionX:bg-p-x/bgPositionX,backgroundPositionY:bg-p-y/bgPositionY,backgroundAttachment:bg-a/bgAttachment,backgroundClip:bg-cp/bgClip,background:bg/1,backgroundColor:bg-c/bgColor,backgroundOrigin:bg-o/bgOrigin,backgroundImage:bg-i/bgImage,backgroundRepeat:bg-r/bgRepeat,backgroundBlendMode:bg-bm/bgBlendMode,backgroundSize:bg-s/bgSize,backgroundGradient:bg-grad/bgGradient,textGradient:txt-grad,gradientFromPosition:grad-from-pos,gradientToPosition:grad-to-pos,gradientFrom:grad-from,gradientTo:grad-to,gradientVia:grad-via,gradientViaPosition:grad-via-pos,borderRadius:bdr/rounded,borderTopLeftRadius:bdr-tl/roundedTopLeft,borderTopRightRadius:bdr-tr/roundedTopRight,borderBottomRightRadius:bdr-br/roundedBottomRight,borderBottomLeftRadius:bdr-bl/roundedBottomLeft,borderTopRadius:bdr-t/roundedTop,borderRightRadius:bdr-r/roundedRight,borderBottomRadius:bdr-b/roundedBottom,borderLeftRadius:bdr-l/roundedLeft,borderStartStartRadius:bdr-ss/roundedStartStart,borderStartEndRadius:bdr-se/roundedStartEnd,borderStartRadius:bdr-s/roundedStart,borderEndStartRadius:bdr-es/roundedEndStart,borderEndEndRadius:bdr-ee/roundedEndEnd,borderEndRadius:bdr-e/roundedEnd,border:bd,borderWidth:bd-w,borderTopWidth:bd-t-w,borderLeftWidth:bd-l-w,borderRightWidth:bd-r-w,borderBottomWidth:bd-b-w,borderColor:bd-c,borderInline:bd-x/borderX,borderInlineWidth:bd-x-w/borderXWidth,borderInlineColor:bd-x-c/borderXColor,borderBlock:bd-y/borderY,borderBlockWidth:bd-y-w/borderYWidth,borderBlockColor:bd-y-c/borderYColor,borderLeft:bd-l,borderLeftColor:bd-l-c,borderInlineStart:bd-s/borderStart,borderInlineStartWidth:bd-s-w/borderStartWidth,borderInlineStartColor:bd-s-c/borderStartColor,borderRight:bd-r,borderRightColor:bd-r-c,borderInlineEnd:bd-e/borderEnd,borderInlineEndWidth:bd-e-w/borderEndWidth,borderInlineEndColor:bd-e-c/borderEndColor,borderTop:bd-t,borderTopColor:bd-t-c,borderBottom:bd-b,borderBottomColor:bd-b-c,borderBlockEnd:bd-be,borderBlockEndColor:bd-be-c,borderBlockStart:bd-bs,borderBlockStartColor:bd-bs-c,opacity:op,boxShadow:bx-sh/shadow,boxShadowColor:bx-sh-c/shadowColor,mixBlendMode:mix-bm,filter:filter,brightness:brightness,contrast:contrast,grayscale:grayscale,hueRotate:hue-rotate,invert:invert,saturate:saturate,sepia:sepia,dropShadow:drop-shadow,blur:blur,backdropFilter:bkdp,backdropBlur:bkdp-blur,backdropBrightness:bkdp-brightness,backdropContrast:bkdp-contrast,backdropGrayscale:bkdp-grayscale,backdropHueRotate:bkdp-hue-rotate,backdropInvert:bkdp-invert,backdropOpacity:bkdp-opacity,backdropSaturate:bkdp-saturate,backdropSepia:bkdp-sepia,borderCollapse:bd-cl,borderSpacing:bd-sp,borderSpacingX:bd-sx,borderSpacingY:bd-sy,tableLayout:tbl,transitionTimingFunction:trs-tmf,transitionDelay:trs-dly,transitionDuration:trs-dur,transitionProperty:trs-prop,transition:trs,animation:anim,animationName:anim-n,animationTimingFunction:anim-tmf,animationDuration:anim-dur,animationDelay:anim-dly,animationPlayState:anim-ps,animationComposition:anim-comp,animationFillMode:anim-fm,animationDirection:anim-dir,animationIterationCount:anim-ic,animationRange:anim-r,animationState:anim-s,animationRangeStart:anim-rs,animationRangeEnd:anim-re,animationTimeline:anim-tl,transformOrigin:trf-o,transformBox:trf-b,transformStyle:trf-s,transform:trf,rotate:rotate,rotateX:rotate-x,rotateY:rotate-y,rotateZ:rotate-z,scale:scale,scaleX:scale-x,scaleY:scale-y,translate:translate,translateX:translate-x/x,translateY:translate-y/y,translateZ:translate-z/z,accentColor:ac-c,caretColor:ca-c,scrollBehavior:scr-bhv,scrollbar:scr-bar,scrollbarColor:scr-bar-c,scrollbarGutter:scr-bar-g,scrollbarWidth:scr-bar-w,scrollMargin:scr-m,scrollMarginLeft:scr-ml,scrollMarginRight:scr-mr,scrollMarginTop:scr-mt,scrollMarginBottom:scr-mb,scrollMarginBlock:scr-my/scrollMarginY,scrollMarginBlockEnd:scr-mbe,scrollMarginBlockStart:scr-mbt,scrollMarginInline:scr-mx/scrollMarginX,scrollMarginInlineEnd:scr-me,scrollMarginInlineStart:scr-ms,scrollPadding:scr-p,scrollPaddingBlock:scr-py/scrollPaddingY,scrollPaddingBlockStart:scr-pbs,scrollPaddingBlockEnd:scr-pbe,scrollPaddingInline:scr-px/scrollPaddingX,scrollPaddingInlineEnd:scr-pe,scrollPaddingInlineStart:scr-ps,scrollPaddingLeft:scr-pl,scrollPaddingRight:scr-pr,scrollPaddingTop:scr-pt,scrollPaddingBottom:scr-pb,scrollSnapAlign:scr-sa,scrollSnapStop:scrs-s,scrollSnapType:scrs-t,scrollSnapStrictness:scrs-strt,scrollSnapMargin:scrs-m,scrollSnapMarginTop:scrs-mt,scrollSnapMarginBottom:scrs-mb,scrollSnapMarginLeft:scrs-ml,scrollSnapMarginRight:scrs-mr,scrollSnapCoordinate:scrs-c,scrollSnapDestination:scrs-d,scrollSnapPointsX:scrs-px,scrollSnapPointsY:scrs-py,scrollSnapTypeX:scrs-tx,scrollSnapTypeY:scrs-ty,scrollTimeline:scrtl,scrollTimelineAxis:scrtl-a,scrollTimelineName:scrtl-n,touchAction:tch-a,userSelect:us,overflow:ov,overflowWrap:ov-wrap,overflowX:ov-x,overflowY:ov-y,overflowAnchor:ov-a,overflowBlock:ov-b,overflowInline:ov-i,overflowClipBox:ovcp-bx,overflowClipMargin:ovcp-m,overscrollBehaviorBlock:ovs-bb,overscrollBehaviorInline:ovs-bi,fill:fill,stroke:stk,strokeWidth:stk-w,strokeDasharray:stk-dsh,strokeDashoffset:stk-do,strokeLinecap:stk-lc,strokeLinejoin:stk-lj,strokeMiterlimit:stk-ml,strokeOpacity:stk-op,srOnly:sr,debug:debug,appearance:ap,backfaceVisibility:bfv,clipPath:cp-path,hyphens:hy,mask:msk,maskImage:msk-i,maskSize:msk-s,textSizeAdjust:txt-adj,container:cq,containerName:cq-n,containerType:cq-t,textStyle:textStyle",Aa=new Map,La=new Map;Y1.split(",").forEach(e=>{const[n,t]=e.split(":"),[o,...i]=t.split("/");Aa.set(n,o),i.length&&i.forEach(r=>{La.set(r==="1"?o:r,n)})});const zr=e=>La.get(e)||e,_a={conditions:{shift:q1,finalize:K1,breakpoints:{keys:["base","expanded"]}},utility:{transform:(e,n)=>{const t=zr(e);return{className:`${Aa.get(t)||z1(t)}_${Fa(n)}`}},hasShorthand:!0,toHash:(e,n)=>n(e.join(":")),resolveShorthand:zr}},X1=R1(_a),xe=(...e)=>X1(Ut(...e));xe.raw=(...e)=>Ut(...e);const{mergeCss:Ut,assignCss:$E}=I1(_a);function ne(){let e="",n=0,t;for(;n<arguments.length;)(t=arguments[n++])&&typeof t=="string"&&(e&&(e+=" "),e+=t);return e}const Or=e=>({base:{},variants:{},defaultVariants:{},compoundVariants:[],...e});function ft(e){const{base:n,variants:t,defaultVariants:o,compoundVariants:i}=Or(e),r=g=>({...o,...Bo(g)});function a(g={}){var x;const p=r(g);let w={...n};for(const[C,E]of Object.entries(p))(x=t[C])!=null&&x[E]&&(w=Ut(w,t[C][E]));const f=Z1(i,p);return Ut(w,f)}function s(g){const p=Or(g.config),w=D1(g.variantKeys,Object.keys(t));return ft({base:Ut(n,p.base),variants:Object.fromEntries(w.map(f=>[f,Ut(t[f],p.variants[f])])),defaultVariants:wi(o,p.defaultVariants),compoundVariants:[...i,...p.compoundVariants]})}function c(g){return xe(a(g))}const d=Object.keys(t);function h(g){return Ao(g,d)}const v=Object.fromEntries(Object.entries(t).map(([g,p])=>[g,Object.keys(p)]));return Object.assign(dn(c),{__cva__:!0,variantMap:v,variantKeys:d,raw:a,config:e,merge:s,splitVariantProps:h,getVariantProps:r})}function Z1(e,n){let t={};return e.forEach(o=>{Object.entries(o).every(([r,a])=>r==="css"?!0:(Array.isArray(a)?a:[a]).some(c=>n[r]===c))&&(t=Ut(t,o.css))}),t}const J1=(e,n)=>e+"__"+n;function ve(e){const n=Object.entries($1(e)).map(([h,v])=>[h,ft(v)]),t=e.defaultVariants??{};function o(h){const v=n.map(([g,p])=>[g,ne(p(h),e.className&&J1(e.className,g))]);return Object.fromEntries(v)}function i(h){const v=n.map(([g,p])=>[g,p.raw(h)]);return Object.fromEntries(v)}const r=e.variants??{},a=Object.keys(r);function s(h){return Ao(h,a)}const c=h=>({...t||{},...Bo(h)}),d=Object.fromEntries(Object.entries(r).map(([h,v])=>[h,Object.keys(v)]));return Object.assign(dn(o),{__cva__:!1,raw:i,variantMap:d,variantKeys:a,splitVariantProps:s,getVariantProps:c})}function Q1(e,n){return`${e} returned \`undefined\`. Seems you forgot to wrap component within ${n}`}function re(e={}){const{name:n,strict:t=!0,hookName:o="useContext",providerName:i="Provider",errorMessage:r,defaultValue:a}=e,s=S.createContext(a);s.displayName=n;function c(){var h;const d=S.useContext(s);if(!d&&t){const v=new Error(r??Q1(o,i));throw v.name="ContextError",(h=Error.captureStackTrace)==null||h.call(Error,v,c),v}return d}return[s.Provider,c,s]}const[ec,Lo]=re({name:"AccordionContext",hookName:"useAccordionContext",providerName:"<AccordionProvider />"});var Me=(e,n=[])=>({parts:(...t)=>{if(tc(n))return Me(e,t);throw new Error("createAnatomy().parts(...) should only be called once. Did you mean to use .extendWith(...) ?")},extendWith:(...t)=>Me(e,[...n,...t]),rename:t=>Me(t,n),keys:()=>n,build:()=>[...new Set(n)].reduce((t,o)=>Object.assign(t,{[o]:{selector:[`&[data-scope="${Jt(e)}"][data-part="${Jt(o)}"]`,`& [data-scope="${Jt(e)}"][data-part="${Jt(o)}"]`].join(", "),attrs:{"data-scope":Jt(e),"data-part":Jt(o)}}}),{})}),Jt=e=>e.replace(/([A-Z])([A-Z])/g,"$1-$2").replace(/([a-z])([A-Z])/g,"$1-$2").replace(/[\s_]+/g,"-").toLowerCase(),tc=e=>e.length===0,O=e=>e?"":void 0,uo=e=>e?"true":void 0,nc=2147483647,oc=1,lc=9,ic=11,_o=e=>typeof e=="object"&&e!==null,nt=e=>_o(e)&&e.nodeType===oc&&typeof e.nodeName=="string",Na=e=>_o(e)&&e.nodeType===lc,rc=e=>_o(e)&&e===e.window,ac=e=>_o(e)&&e.nodeType!==void 0,$a=e=>ac(e)&&e.nodeType===ic&&"host"in e;function Rt(e,n){return!e||!n||!nt(e)||!nt(n)?!1:e===n||e.contains(n)}function un(e){return Na(e)?e:rc(e)?e.document:(e==null?void 0:e.ownerDocument)??document}function Vt(e){var n;return $a(e)?Vt(e.host):Na(e)?e.defaultView??window:nt(e)?((n=e.ownerDocument)==null?void 0:n.defaultView)??window:window}var yi=()=>typeof document<"u";function sc(){const e=navigator.userAgentData;return(e==null?void 0:e.platform)??navigator.platform}var xi=e=>yi()&&e.test(sc()),cc=e=>yi()&&e.test(navigator.userAgent),dc=e=>yi()&&e.test(navigator.vendor),Ha=()=>xi(/^Mac/),Da=()=>ja()&&dc(/apple/i),uc=()=>cc(/firefox\//i),ja=()=>xi(/mac|iphone|ipad|ipod/i),hc=()=>xi(/iP(hone|ad|od)|iOS/);function gc(e){var n,t,o;return((n=e.composedPath)==null?void 0:n.call(e))??((o=(t=e.nativeEvent)==null?void 0:t.composedPath)==null?void 0:o.call(t))}function St(e){const n=gc(e);return(n==null?void 0:n[0])??e.target}var Ci=e=>Rt(e.currentTarget,St(e));function jl(e){const n=e.currentTarget;if(!n)return!1;const t=ja();if(t&&!e.metaKey||!t&&!e.ctrlKey)return!1;const o=n.localName;return o==="a"||o==="button"&&n.type==="submit"||o==="input"&&n.type==="submit"}function Wl(e){const n=e.currentTarget;if(!n)return!1;const t=n.localName;return e.altKey?t==="a"||t==="button"&&n.type==="submit"||t==="input"&&n.type==="submit":!1}function Wa(e){var n;return((n=e.nativeEvent)==null?void 0:n.isComposing)??e.isComposing}var bi=e=>e.id;function Ga(e,n,t=bi){return e.find(o=>t(o)===n)}function Ri(e,n,t=bi){const o=Ga(e,n,t);return o?e.indexOf(o):-1}function Si(e,n,t=!0){let o=Ri(e,n);return o=t?(o+1)%e.length:Math.min(o+1,e.length-1),e[o]}function Ii(e,n,t=!0){let o=Ri(e,n);return o===-1?t?e[e.length-1]:null:(o=t?(o-1+e.length)%e.length:Math.max(0,o-1),e[o])}var vc=e=>e.split("").map(n=>{const t=n.charCodeAt(0);return t>0&&t<128?n:t>=128&&t<=255?`/x${t.toString(16)}`.replace("/","\\"):""}).join("").trim(),mc=e=>vc(e.dataset.valuetext??e.textContent??""),pc=(e,n)=>e.trim().toLowerCase().startsWith(n.toLowerCase()),fc=(e,n)=>e.map((t,o)=>e[(Math.max(n,0)+o)%e.length]);function wc(e,n,t,o=bi){const i=t?Ri(e,t,o):-1;let r=t?fc(e,i):e;return n.length===1&&(r=r.filter(s=>o(s)!==t)),r.find(s=>pc(mc(s),n))}function Ec(e,n){const{state:t,activeId:o,key:i,timeout:r=350,itemToId:a}=n,s=t.keysSoFar+i,d=s.length>1&&Array.from(s).every(w=>w===s[0])?s[0]:s;let h=e.slice();const v=wc(h,d,o,a);function g(){clearTimeout(t.timer),t.timer=-1}function p(w){t.keysSoFar=w,g(),w!==""&&(t.timer=+setTimeout(()=>{p(""),g()},r))}return p(s),v}var qn=Object.assign(Ec,{defaultOptions:{keysSoFar:"",timer:-1},isValidEvent:yc});function yc(e){return e.key.length===1&&!e.ctrlKey&&!e.metaKey}var Rl=new WeakMap;function xc(e){return Rl.has(e)||Rl.set(e,Vt(e).getComputedStyle(e)),Rl.get(e)}var Ti=e=>typeof e=="object"&&e!==null&&e.nodeType===1,Ua=e=>Ti(e)&&e.tagName==="IFRAME";function Cc(e){return Ti(e)?e.offsetWidth>0||e.offsetHeight>0||e.getClientRects().length>0:!1}function bc(e){return parseInt(e.getAttribute("tabindex")||"0",10)<0}var Mi="input:not([type='hidden']):not([disabled]), select:not([disabled]), textarea:not([disabled]), a[href], button:not([disabled]), [tabindex], iframe, object, embed, area[href], audio[controls], video[controls], [contenteditable]:not([contenteditable='false']), details > summary:first-of-type",Ka=(e,n=!1)=>{if(!e)return[];const t=Array.from(e.querySelectorAll(Mi));(n==!0||n=="if-empty"&&t.length===0)&&Ti(e)&&Yn(e)&&t.unshift(e);const i=t.filter(Yn);return i.forEach((r,a)=>{if(Ua(r)&&r.contentDocument){const s=r.contentDocument.body;i.splice(a,1,...Ka(s))}}),i};function Yn(e){return!e||e.closest("[inert]")?!1:e.matches(Mi)&&Cc(e)}function zi(e,n){if(!e)return[];const t=Array.from(e.querySelectorAll(Mi)),o=t.filter(Rc);return o.forEach((i,r)=>{if(Ua(i)&&i.contentDocument){const a=i.contentDocument.body,s=zi(a);o.splice(r,1,...s)}}),!o.length&&n?t:o}function Rc(e){return e!=null&&e.tabIndex>0?!0:Yn(e)&&!bc(e)}function Sc(e,n){const t=zi(e,n),o=t[0]||null,i=t[t.length-1]||null;return[o,i]}function Oi(e){const{root:n,getInitialEl:t,filter:o,enabled:i=!0}=e;if(!i)return;let r=null;if(r||(r=typeof t=="function"?t():t),r||(r=n==null?void 0:n.querySelector("[data-autofocus],[autofocus]")),!r){const a=zi(n);r=o?a.filter(o)[0]:a[0]}return r||n||void 0}function qa(e){const n=e.currentTarget;if(!n)return!1;const[t,o]=Sc(n),i=n.ownerDocument||document;return!(i.activeElement===t&&e.shiftKey||i.activeElement===o&&!e.shiftKey||!t&&!o)}function Vi(e){if(e==null||!nt(e))return!1;try{const n=Vt(e);return e instanceof n.HTMLInputElement&&e.selectionStart!=null||/(textarea|select)/.test(e.localName)||e.isContentEditable}catch{return!1}}var Ic=/auto|scroll|overlay|hidden|clip/;function Tc(e){const n=Vt(e),{overflow:t,overflowX:o,overflowY:i,display:r}=n.getComputedStyle(e);return Ic.test(t+i+o)&&!["inline","contents"].includes(r)}function wo(e){const n=new Set;function t(o){const i=globalThis.requestAnimationFrame(o);n.add(()=>globalThis.cancelAnimationFrame(i))}return t(()=>t(e)),function(){n.forEach(i=>i())}}function te(e){const n=globalThis.requestAnimationFrame(e);return()=>{globalThis.cancelAnimationFrame(n)}}function Mc(e,n){if(!e)return;const{attributes:t,callback:o}=n,i=e.ownerDocument.defaultView||window,r=new i.MutationObserver(a=>{for(const s of a)s.type==="attributes"&&s.attributeName&&t.includes(s.attributeName)&&o(s)});return r.observe(e,{attributes:!0,attributeFilter:t}),()=>r.disconnect()}function No(e,n){const{defer:t}=n,o=t?te:r=>r(),i=[];return i.push(o(()=>{const r=typeof e=="function"?e():e;i.push(Mc(r,n))})),()=>{i.forEach(r=>r==null?void 0:r())}}function zc(e,n){const{callback:t}=n;if(!e)return;const o=e.ownerDocument.defaultView||window,i=new o.MutationObserver(t);return i.observe(e,{childList:!0,subtree:!0}),()=>i.disconnect()}function Ya(e,n){const{defer:t}=n,o=t?te:r=>r(),i=[];return i.push(o(()=>{const r=typeof e=="function"?e():e;i.push(zc(r,n))})),()=>{i.forEach(r=>r==null?void 0:r())}}function Zn(e,n){return Array.from((e==null?void 0:e.querySelectorAll(n))??[])}function Oc(e,n){return(e==null?void 0:e.querySelector(n))??null}function qe(e){const n={getRootNode:t=>{var o;return((o=t.getRootNode)==null?void 0:o.call(t))??document},getDoc:t=>un(n.getRootNode(t)),getWin:t=>n.getDoc(t).defaultView??window,getActiveElement:t=>n.getRootNode(t).activeElement,isActiveElement:(t,o)=>o===n.getActiveElement(t),getById:(t,o)=>n.getRootNode(t).getElementById(o),setValue:(t,o)=>{if(t==null||o==null)return;const i=o.toString();t.value!==i&&(t.value=o.toString())}};return{...n,...e}}function Vc(e){return e.scrollHeight>e.clientHeight||e.scrollWidth>e.clientWidth}function Fi(e,n){const{rootEl:t,...o}=n||{};!e||!t||!Tc(t)||!Vc(t)||e.scrollIntoView(o)}var Sl=new WeakMap;function Fc(e,n,t){Sl.has(e)||Sl.set(e,new Map);const o=Sl.get(e),i=o.get(n);if(!i)return o.set(n,t()),()=>{var s;(s=o.get(n))==null||s(),o.delete(n)};const r=t(),a=()=>{r(),i(),o.delete(n)};return o.set(n,a),()=>{o.get(n)===a&&(r(),o.set(n,i))}}function Pc(e,n){return e?Fc(e,"style",()=>{const o=e.style.cssText;return Object.assign(e.style,n),()=>{e.style.cssText=o}}):()=>{}}var $o={border:"0",clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:"0",position:"absolute",width:"1px",whiteSpace:"nowrap",wordWrap:"normal"},kc=1e3/60;function Bc(e,n){const t=e();if(nt(t)&&t.isConnected)return n(t),()=>{};{const o=setInterval(()=>{const i=e();nt(i)&&i.isConnected&&(n(i),clearInterval(o))},kc);return()=>clearInterval(o)}}function Ac(e,n){const t=[];return e==null||e.forEach(o=>{const i=Bc(o,n);t.push(i)}),()=>{t.forEach(o=>o())}}var be=(e,n,t,o)=>{const i=typeof e=="function"?e():e;return i==null||i.addEventListener(n,t,o),()=>{i==null||i.removeEventListener(n,t,o)}};function Lc(e){return e.key.length===1&&!e.ctrlKey&&!e.metaKey}var Xa=e=>e.button===0,Pi=e=>e.button===2||Ha()&&e.ctrlKey&&e.button===0,_c=e=>e.ctrlKey||e.altKey||e.metaKey;function ki(e,n,t){const i=(a=>{const s=requestAnimationFrame(a);return()=>cancelAnimationFrame(s)})(()=>{e.removeEventListener(n,r,!0),t()}),r=()=>{i(),t()};return e.addEventListener(n,r,{once:!0,capture:!0}),i}function Nc(e){return(e==null?void 0:e.matches("a[href]"))??!1}function Bi(e){if(!Nc(e))return;const n=()=>e.click();uc()?ki(e,"keyup",n):queueMicrotask(n)}function Vr(e,n,t){if(!e)return;const o=e.ownerDocument.defaultView||window,i=new o.CustomEvent(n,t);return e.dispatchEvent(i)}var $c={Up:"ArrowUp",Down:"ArrowDown",Esc:"Escape"," ":"Space",",":"Comma",Left:"ArrowLeft",Right:"ArrowRight"},Fr={ArrowLeft:"ArrowRight",ArrowRight:"ArrowLeft"};function It(e,n={}){const{dir:t="ltr",orientation:o="horizontal"}=n;let{key:i}=e;return i=$c[i]??i,t==="rtl"&&o==="horizontal"&&i in Fr&&(i=Fr[i]),i}function Hc(e,n="client"){const t=e.touches[0]||e.changedTouches[0];return{x:t[`${n}X`],y:t[`${n}Y`]}}function Dc(e,n="client"){return{x:e[`${n}X`],y:e[`${n}Y`]}}var jc=e=>"touches"in e&&e.touches.length>0;function ho(e,n="client"){return jc(e)?Hc(e,n):Dc(e,n)}var go=(...e)=>n=>e.reduce((t,o)=>o(t),n),to=()=>{},Wc=e=>!(e.metaKey||!Ha()&&e.altKey||e.ctrlKey||e.key==="Control"||e.key==="Shift"||e.key==="Meta");function Za(e,n){if(!e)return;const{onFocus:t,onBlur:o}=n,i=Vt(e);let r=!1;const a=d=>{let h=!1;try{h=e.matches(":focus-visible")}catch{h=!0}h&&(r=!0,t==null||t(d))},s=d=>{r&&(r=!1,o==null||o(d))},c=d=>{if(!e.matches(":focus")||!Wc(d))return;r=!0;const h=new i.FocusEvent("focus");t==null||t(h)};return go(be(e,"focusin",a),be(e,"focusout",s),be(e,"keydown",c,!0))}function Ja(e){const{pointerNode:n,keyboardNode:t=n,onPress:o,onPressStart:i,onPressEnd:r,isValidKey:a=T=>T.key==="Enter"}=e;if(!n)return to;const s=Vt(n),c=un(n);let d=to,h=to,v=to;const g=T=>({point:ho(T),event:T});function p(T){i==null||i(g(T))}function w(T){r==null||r(g(T))}const x=be(n,"pointerdown",T=>{h();const k=be(s,"pointerup",Q=>{const ce=St(Q);Rt(n,ce)?o==null||o(g(Q)):r==null||r(g(Q))},{passive:!o}),q=be(s,"pointercancel",w,{passive:!r});h=go(k,q),c.activeElement===t&&T.pointerType==="mouse"&&T.preventDefault(),p(T)},{passive:!i}),C=be(t,"focus",E);d=go(x,C);function E(){const T=Q=>{if(!a(Q))return;const ce=L=>{if(!a(L))return;const V=new s.PointerEvent("pointerup"),I=g(V);o==null||o(I),r==null||r(I)};h(),h=be(t,"keyup",ce);const H=new s.PointerEvent("pointerdown");p(H)},F=()=>{const Q=new s.PointerEvent("pointercancel");w(Q)},k=be(t,"keydown",T),q=be(t,"blur",F);v=go(k,q)}return function(){d(),h(),v()}}var Ai=e=>e[0],Li=e=>e[e.length-1],Gc=(e,n)=>e.indexOf(n)!==-1,Qa=(e,...n)=>e.concat(n),es=(e,n)=>e.filter(t=>t!==n),ts=(e,n)=>Gc(e,n)?es(e,n):Qa(e,n),Pr=e=>(e==null?void 0:e.constructor.name)==="Array",Uc=(e,n)=>{if(e.length!==n.length)return!1;for(let t=0;t<e.length;t++)if(!Ce(e[t],n[t]))return!1;return!0},Ce=(e,n)=>{if(Object.is(e,n))return!0;if(e==null&&n!=null||e!=null&&n==null)return!1;if(typeof(e==null?void 0:e.isEqual)=="function"&&typeof(n==null?void 0:n.isEqual)=="function")return e.isEqual(n);if(typeof e=="function"&&typeof n=="function")return e.toString()===n.toString();if(Pr(e)&&Pr(n))return Uc(Array.from(e),Array.from(n));if(typeof e!="object"||typeof n!="object")return!1;const t=Object.keys(n??Object.create(null)),o=t.length;for(let i=0;i<o;i++)if(!Reflect.has(e,t[i]))return!1;for(let i=0;i<o;i++){const r=t[i];if(!Ce(e[r],n[r]))return!1}return!0},vo=(e,...n)=>(typeof e=="function"?e(...n):e)??void 0,Kc=e=>e,qc=()=>{},kr=(...e)=>(...n)=>{e.forEach(function(t){t==null||t(...n)})},Yc=(()=>{let e=0;return()=>(e++,e.toString(36))})();function Eo(e,n,...t){var i;if(e in n){const r=n[e];return typeof r=="function"?r(...t):r}const o=new Error(`No matching key: ${JSON.stringify(e)} in ${JSON.stringify(Object.keys(n))}`);throw(i=Error.captureStackTrace)==null||i.call(Error,o,Eo),o}var _i=e=>Array.isArray(e),Xc=e=>e===!0||e===!1,Il=e=>!(e==null||typeof e!="object"||_i(e)),Zc=e=>typeof e=="string",ns=e=>typeof e=="function",Jc=e=>e==null,Tl=(e,n)=>Object.prototype.hasOwnProperty.call(e,n);function Qc(e,n){const t={},o={},i=new Set(n);for(const r in e)i.has(r)?o[r]=e[r]:t[r]=e[r];return[o,t]}var e2=e=>function(t){return Qc(t,e)};function ze(e){if(!t2(e)||e===void 0)return e;const n=Reflect.ownKeys(e).filter(o=>typeof o=="string"),t={};for(const o of n){const i=e[o];i!==void 0&&(t[o]=ze(i))}return t}var t2=e=>e&&typeof e=="object"&&e.constructor===Object;function Ho(...e){const n=e.length===1?e[0]:e[1];(e.length===2?e[0]:!0)&&process.env.NODE_ENV!=="production"&&console.warn(n)}const n2=Symbol(),Ni=Symbol(),Dn="a",os="f",Br="p",ls="c",is="t",Ml="n",zl="g",rs="h",mo="w",as="o",ss="k";let o2=(e,n)=>new Proxy(e,n);const Gl=Object.getPrototypeOf,Ul=new WeakMap,cs=e=>e&&(Ul.has(e)?Ul.get(e):Gl(e)===Object.prototype||Gl(e)===Array.prototype),Ar=e=>typeof e=="object"&&e!==null,l2=e=>Object.values(Object.getOwnPropertyDescriptors(e)).some(n=>!n.configurable&&!n.writable),i2=e=>{if(Array.isArray(e))return Array.from(e);const n=Object.getOwnPropertyDescriptors(e);return Object.values(n).forEach(t=>{t.configurable=!0}),Object.create(Gl(e),n)},r2=(e,n)=>{const t={[os]:n};let o=!1;const i=(s,c)=>{if(!o){let d=t[Dn].get(e);if(d||(d={},t[Dn].set(e,d)),s===mo)d[mo]=!0;else{let h=d[s];h||(h=new Set,d[s]=h),h.add(c)}}},r=()=>{o=!0,t[Dn].delete(e)},a={get(s,c){return c===Ni?e:(i(ss,c),us(Reflect.get(s,c),t[Dn],t[ls],t[is]))},has(s,c){return c===n2?(r(),!0):(i(rs,c),Reflect.has(s,c))},getOwnPropertyDescriptor(s,c){return i(as,c),Reflect.getOwnPropertyDescriptor(s,c)},ownKeys(s){return i(mo),Reflect.ownKeys(s)}};return n&&(a.set=a.deleteProperty=()=>!1),[a,t]},ds=e=>e[Ni]||e,us=(e,n,t,o)=>{if(!cs(e))return e;let i=o&&o.get(e);if(!i){const c=ds(e);l2(c)?i=[c,i2(c)]:i=[c],o==null||o.set(e,i)}const[r,a]=i;let s=t&&t.get(r);return(!s||s[1][os]!==!!a)&&(s=r2(r,!!a),s[1][Br]=o2(a||r,s[0]),t&&t.set(r,s)),s[1][Dn]=n,s[1][ls]=t,s[1][is]=o,s[1][Br]},a2=(e,n)=>{const t=Reflect.ownKeys(e),o=Reflect.ownKeys(n);return t.length!==o.length||t.some((i,r)=>i!==o[r])},hs=(e,n,t,o,i=Object.is)=>{if(i(e,n))return!1;if(!Ar(e)||!Ar(n))return!0;const r=t.get(ds(e));if(!r)return!0;if(o){const s=o.get(e);if(s&&s[Ml]===n)return s[zl];o.set(e,{[Ml]:n,[zl]:!1})}let a=null;try{for(const s of r[rs]||[])if(a=Reflect.has(e,s)!==Reflect.has(n,s),a)return a;if(r[mo]===!0){if(a=a2(e,n),a)return a}else for(const s of r[as]||[]){const c=!!Reflect.getOwnPropertyDescriptor(e,s),d=!!Reflect.getOwnPropertyDescriptor(n,s);if(a=c!==d,a)return a}for(const s of r[ss]||[])if(a=hs(e[s],n[s],t,o,i),a)return a;return a===null&&(a=!0),a}finally{o&&o.set(e,{[Ml]:n,[zl]:a})}},s2=e=>cs(e)&&e[Ni]||null,Lr=(e,n=!0)=>{Ul.set(e,n)};function c2(){if(typeof globalThis<"u")return globalThis;if(typeof self<"u")return self;if(typeof window<"u")return window;if(typeof global<"u")return global}function $i(e,n){const t=c2();return t?(t[e]||(t[e]=n()),t[e]):n()}var yo=()=>process.env.NODE_ENV!=="production",Ol=e=>typeof e=="object"&&e!==null,Wt=$i("__zag__proxyStateMap",()=>new WeakMap),jn=$i("__zag__refSet",()=>new WeakSet),d2=(e=Object.is,n=(d,h)=>new Proxy(d,h),t=d=>Ol(d)&&!jn.has(d)&&(Array.isArray(d)||!(Symbol.iterator in d))&&!(d instanceof WeakMap)&&!(d instanceof WeakSet)&&!(d instanceof Error)&&!(d instanceof Number)&&!(d instanceof Date)&&!(d instanceof String)&&!(d instanceof RegExp)&&!(d instanceof ArrayBuffer),o=d=>{switch(d.status){case"fulfilled":return d.value;case"rejected":throw d.reason;default:throw d}},i=new WeakMap,r=(d,h,v=o)=>{const g=i.get(d);if((g==null?void 0:g[0])===h)return g[1];const p=Array.isArray(d)?[]:Object.create(Object.getPrototypeOf(d));return Lr(p,!0),i.set(d,[h,p]),Reflect.ownKeys(d).forEach(w=>{const f=Reflect.get(d,w);jn.has(f)?(Lr(f,!1),p[w]=f):f instanceof Promise?Object.defineProperty(p,w,{get(){return v(f)}}):Wt.has(f)?p[w]=bt(f,v):p[w]=f}),Object.freeze(p)},a=new WeakMap,s=[1,1],c=d=>{if(!Ol(d))throw new Error("object required");const h=a.get(d);if(h)return h;let v=s[0];const g=new Set,p=(H,L=++s[0])=>{v!==L&&(v=L,g.forEach(V=>V(H,L)))};let w=s[1];const f=(H=++s[1])=>(w!==H&&!g.size&&(w=H,C.forEach(([L])=>{const V=L[1](H);V>v&&(v=V)})),v),x=H=>(L,V)=>{const I=[...L];I[1]=[H,...I[1]],p(I,V)},C=new Map,E=(H,L)=>{if(yo()&&C.has(H))throw new Error("prop listener already exists");if(g.size){const V=L[3](x(H));C.set(H,[L,V])}else C.set(H,[L])},T=H=>{var V;const L=C.get(H);L&&(C.delete(H),(V=L[1])==null||V.call(L))},F=H=>(g.add(H),g.size===1&&C.forEach(([V,I],R)=>{if(yo()&&I)throw new Error("remove already exists");const M=V[3](x(R));C.set(R,[V,M])}),()=>{g.delete(H),g.size===0&&C.forEach(([V,I],R)=>{I&&(I(),C.set(R,[V]))})}),k=Array.isArray(d)?[]:Object.create(Object.getPrototypeOf(d)),Q=n(k,{deleteProperty(H,L){const V=Reflect.get(H,L);T(L);const I=Reflect.deleteProperty(H,L);return I&&p(["delete",[L],V]),I},set(H,L,V,I){var Y;const R=Reflect.has(H,L),M=Reflect.get(H,L,I);if(R&&(e(M,V)||a.has(V)&&e(M,a.get(V))))return!0;T(L),Ol(V)&&(V=s2(V)||V);let U=V;if(!((Y=Object.getOwnPropertyDescriptor(H,L))!=null&&Y.set))if(V instanceof Promise)V.then(K=>{Object.assign(V,{status:"fulfilled",value:K}),p(["resolve",[L],K])}).catch(K=>{Object.assign(V,{status:"rejected",reason:K}),p(["reject",[L],K])});else{!Wt.has(V)&&t(V)&&(U=Hi(V));const K=!jn.has(U)&&Wt.get(U);K&&E(L,K)}return Reflect.set(H,L,U,I),p(["set",[L],V,M]),!0}});a.set(d,Q);const ce=[k,f,r,F];return Wt.set(Q,ce),Reflect.ownKeys(d).forEach(H=>{const L=Object.getOwnPropertyDescriptor(d,H);L.get||L.set?Object.defineProperty(k,H,L):Q[H]=d[H]}),Q})=>[c,Wt,jn,e,n,t,o,i,r,a,s],[u2]=d2();function Hi(e={}){return u2(e)}function xo(e,n,t){const o=Wt.get(e);yo()&&!o&&console.warn("Please use proxy object");let i;const r=[],a=o[3];let s=!1;const d=a(h=>{if(r.push(h),t){n(r.splice(0));return}i||(i=Promise.resolve().then(()=>{i=void 0,s&&n(r.splice(0))}))});return s=!0,()=>{s=!1,d()}}function bt(e,n){const t=Wt.get(e);yo()&&!t&&console.warn("Please use proxy object");const[o,i,r]=t;return r(o,i(),n)}function De(e){return jn.add(e),e}function h2(e,n){Object.keys(n).forEach(i=>{if(Object.getOwnPropertyDescriptor(e,i))throw new Error("object property already defined");const r=n[i],{get:a,set:s}=typeof r=="function"?{get:r}:r,c={};c.get=()=>a(bt(o)),s&&(c.set=d=>s(o,d)),Object.defineProperty(e,i,c)});const o=Hi(e);return o}function _r(e,n,t){typeof t.value=="object"&&(t.value=ln(t.value)),!t.enumerable||t.get||t.set||!t.configurable||!t.writable||n==="__proto__"?Object.defineProperty(e,n,t):e[n]=t.value}function ln(e){if(typeof e!="object")return e;var n=0,t,o,i,r=Object.prototype.toString.call(e);if(r==="[object Object]"?i=Object.create(e.__proto__||null):r==="[object Array]"?i=Array(e.length):r==="[object Set]"?(i=new Set,e.forEach(function(a){i.add(ln(a))})):r==="[object Map]"?(i=new Map,e.forEach(function(a,s){i.set(ln(s),ln(a))})):r==="[object Date]"?i=new Date(+e):r==="[object RegExp]"?i=new RegExp(e.source,e.flags):r==="[object DataView]"?i=new e.constructor(ln(e.buffer)):r==="[object ArrayBuffer]"?i=e.slice(0):r.slice(-6)==="Array]"&&(i=new e.constructor(e)),i){for(o=Object.getOwnPropertySymbols(e);n<o.length;n++)_r(i,o[n],Object.getOwnPropertyDescriptor(e,o[n]));for(n=0,o=Object.getOwnPropertyNames(e);n<o.length;n++)Object.hasOwnProperty.call(i,t=o[n])&&i[t]===e[t]||_r(i,t,Object.getOwnPropertyDescriptor(e,t))}return i||e}var g2=Object.defineProperty,v2=(e,n,t)=>n in e?g2(e,n,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[n]=t,$=(e,n,t)=>v2(e,typeof n!="symbol"?n+"":n,t);function m2(e){for(;e.length>0;)e.pop();return e}var Nr=(e,...n)=>(typeof e=="function"?e(...n):e)??void 0,mt=e=>e,p2=()=>{},f2=(...e)=>(...n)=>{e.forEach(function(t){t==null||t(...n)})},$r=(()=>{let e=0;return()=>(e++,e.toString(36))})(),w2=()=>process.env.NODE_ENV!=="production",Co=e=>Array.isArray(e),Gn=e=>!(e==null||typeof e!="object"||Co(e)),E2=e=>typeof e=="number"&&!Number.isNaN(e),He=e=>typeof e=="string",bo=e=>typeof e=="function",y2=(e,n)=>Object.prototype.hasOwnProperty.call(e,n);function Ro(e){if(!x2(e)||e===void 0)return e;const n=Reflect.ownKeys(e).filter(o=>typeof o=="string"),t={};for(const o of n){const i=e[o];i!==void 0&&(t[o]=Ro(i))}return t}var x2=e=>e&&typeof e=="object"&&e.constructor===Object;function Vl(...e){const n=e.length===1?e[0]:e[1];(e.length===2?e[0]:!0)&&process.env.NODE_ENV!=="production"&&console.warn(n)}function po(...e){const n=e.length===1?e[0]:e[1];if((e.length===2?e[0]:!0)&&process.env.NODE_ENV!=="production")throw new Error(n)}function gs(e,...n){for(const t of n){const o=Ro(t);for(const i in o)Gn(t[i])?(e[i]||(e[i]={}),gs(e[i],t[i])):e[i]=t[i]}return e}function Hr(e){return ln(e)}function tt(e){return He(e)?{type:e}:e}function Ct(e){return e?Co(e)?e.slice():[e]:[]}function vs(e){return Gn(e)&&e.predicate!=null}var C2=()=>!0;function Di(e,n,t,o){return i=>{var r;return He(i)?!!((r=e[i])!=null&&r.call(e,n,t,o)):bo(i)?i(n,t,o):i.predicate(e)(n,t,o)}}function b2(...e){return{predicate:n=>(t,o,i)=>e.map(Di(n,t,o,i)).some(Boolean)}}function R2(...e){return{predicate:n=>(t,o,i)=>e.map(Di(n,t,o,i)).every(Boolean)}}function S2(e){return{predicate:n=>(t,o,i)=>!Di(n,t,o,i)(e)}}function I2(...e){return(n,t,o)=>o.state.matches(...e)}var wt={or:b2,and:R2,not:S2,stateIn:I2};function ms(e,n){return e=e??C2,(t,o,i)=>{if(He(e)){const r=n[e];return bo(r)?r(t,o,i):r}return vs(e)?e.predicate(n)(t,o,i):e==null?void 0:e(t,o,i)}}function Fl(e,n){return(t,o,i)=>vs(e)?e.predicate(n)(t,o,i):e}function T2(e){var r,a;const n=e.computed??mt({}),t=e.context??mt({}),o=e.initial?(a=(r=e.states)==null?void 0:r[e.initial])==null?void 0:a.tags:[],i=Hi({value:e.initial??"",previousValue:"",event:mt({}),previousEvent:mt({}),context:h2(t,n),done:!1,tags:o??[],hasTag(s){return this.tags.includes(s)},matches(...s){return s.includes(this.value)},can(s){return mt(this).nextEvents.includes(s)},get nextEvents(){var d,h;const s=((h=(d=e.states)==null?void 0:d[this.value])==null?void 0:h.on)??{},c=(e==null?void 0:e.on)??{};return Object.keys({...s,...c})},get changed(){return this.event.value==="machine.init"||!this.previousValue?!1:this.value!==this.previousValue}});return mt(i)}function Fn(e,n){return(t,o)=>{if(E2(e))return e;if(bo(e))return e(t,o);if(He(e)){const i=Number.parseFloat(e);if(!Number.isNaN(i))return i;if(n){const r=n==null?void 0:n[e];return po(r==null,`[@zag-js/core > determine-delay] Cannot determine delay for \`${e}\`. It doesn't exist in \`options.delays\``),bo(r)?r(t,o):r}}}}function M2(e){return He(e)?{target:e}:e}function z2(e,n){return(t,o,i)=>Ct(e).map(M2).find(r=>ms(r.guard,n)(t,o,i)??r.target??r.actions)}var ps=class{constructor(e,n){var t,o,i,r,a;$(this,"status","Not Started"),$(this,"state"),$(this,"initialState"),$(this,"initialContext"),$(this,"id"),$(this,"type","machine"),$(this,"activityEvents",new Map),$(this,"delayedEvents",new Map),$(this,"stateListeners",new Set),$(this,"doneListeners",new Set),$(this,"contextWatchers",new Set),$(this,"removeStateListener",p2),$(this,"parent"),$(this,"children",new Map),$(this,"guardMap"),$(this,"actionMap"),$(this,"delayMap"),$(this,"activityMap"),$(this,"sync"),$(this,"options"),$(this,"config"),$(this,"_created",()=>{var c;const s=tt("machine.created");this.executeActions((c=this.config)==null?void 0:c.created,s)}),$(this,"start",s=>{if(this.state.value="",this.state.tags=[],this.status==="Running")return this;this.status="Running",this.removeStateListener=xo(this.state,()=>{this.stateListeners.forEach(p=>{p(this.stateSnapshot)})},this.sync),this.setupContextWatchers(),this.executeActivities(tt("machine.start"),Ct(this.config.activities),"machine.start"),this.executeActions(this.config.entry,tt("machine.start"));const c=tt("machine.init"),d=Gn(s)?s.value:s,h=Gn(s)?s.context:void 0;h&&this.setContext(h);const v={target:d??this.config.initial},g=this.getNextStateInfo(v,c);return this.initialState=g,this.performStateChangeEffects(this.state.value,g,c),this}),$(this,"setupContextWatchers",()=>{const{watch:s}=this.config;if(!s)return;let c=bt(this.state.context);const d=xo(this.state.context,()=>{var v;const h=bt(this.state.context);for(const[g,p]of Object.entries(s))(((v=this.options.compareFns)==null?void 0:v[g])??Object.is)(c[g],h[g])||this.executeActions(p,this.state.event);c=h});this.contextWatchers.add(d)}),$(this,"stop",()=>{if(this.status!=="Stopped")return this.performExitEffects(this.state.value,tt("machine.stop")),this.executeActions(this.config.exit,tt("machine.stop")),this.setState(""),this.setEvent("machine.stop"),this.stopStateListeners(),this.stopChildren(),this.stopActivities(),this.stopDelayedEvents(),this.stopContextWatchers(),this.status="Stopped",this}),$(this,"stopStateListeners",()=>{this.removeStateListener(),this.stateListeners.clear()}),$(this,"stopContextWatchers",()=>{this.contextWatchers.forEach(s=>s()),this.contextWatchers.clear()}),$(this,"stopDelayedEvents",()=>{this.delayedEvents.forEach(s=>{s.forEach(c=>c())}),this.delayedEvents.clear()}),$(this,"stopActivities",s=>{var c,d;s?((c=this.activityEvents.get(s))==null||c.forEach(h=>h()),(d=this.activityEvents.get(s))==null||d.clear(),this.activityEvents.delete(s)):(this.activityEvents.forEach(h=>{h.forEach(v=>v()),h.clear()}),this.activityEvents.clear())}),$(this,"sendChild",(s,c)=>{const d=tt(s),h=Nr(c,this.contextSnapshot),v=this.children.get(h);v||po(`[@zag-js/core] Cannot send '${d.type}' event to unknown child`),v.send(d)}),$(this,"stopChild",s=>{this.children.has(s)||po(`[@zag-js/core > stop-child] Cannot stop unknown child ${s}`),this.children.get(s).stop(),this.children.delete(s)}),$(this,"removeChild",s=>{this.children.delete(s)}),$(this,"stopChildren",()=>{this.children.forEach(s=>s.stop()),this.children.clear()}),$(this,"setParent",s=>{this.parent=s}),$(this,"spawn",(s,c)=>{const d=Nr(s);return c&&(d.id=c),d.type="machine.actor",d.setParent(this),this.children.set(d.id,mt(d)),d.onDone(()=>{this.removeChild(d.id)}).start(),mt(De(d))}),$(this,"stopActivity",s=>{var d;if(!this.state.value)return;const c=this.activityEvents.get(this.state.value);(d=c==null?void 0:c.get(s))==null||d(),c==null||c.delete(s)}),$(this,"addActivityCleanup",(s,c,d)=>{var h;s&&(this.activityEvents.has(s)?(h=this.activityEvents.get(s))==null||h.set(c,d):this.activityEvents.set(s,new Map([[c,d]])))}),$(this,"setState",s=>{this.state.previousValue=this.state.value,this.state.value=s;const c=this.getStateNode(s);s==null?m2(this.state.tags):this.state.tags=Ct(c==null?void 0:c.tags)}),$(this,"setContext",s=>{s&&gs(this.state.context,Ro(s))}),$(this,"setOptions",s=>{const c=Ro(s);this.actionMap={...this.actionMap,...c.actions},this.delayMap={...this.delayMap,...c.delays},this.activityMap={...this.activityMap,...c.activities},this.guardMap={...this.guardMap,...c.guards}}),$(this,"getStateNode",s=>{var c;if(s)return(c=this.config.states)==null?void 0:c[s]}),$(this,"getNextStateInfo",(s,c)=>{const d=this.determineTransition(s,c),h=!(d!=null&&d.target),v=(d==null?void 0:d.target)??this.state.value,g=this.state.value!==v,p=this.getStateNode(v),f={reenter:!h&&!g&&!(d!=null&&d.internal),transition:d,stateNode:p,target:v,changed:g};return this.log("NextState:",`[${c.type}]`,this.state.value,"---->",f.target),f}),$(this,"getAfterActions",(s,c)=>{let d;return{entry:()=>{d=globalThis.setTimeout(()=>{const h=this.getNextStateInfo(s,this.state.event);this.performStateChangeEffects(this.state.value,h,this.state.event)},c)},exit:()=>{globalThis.clearTimeout(d)}}}),$(this,"getDelayedEventActions",s=>{const c=this.getStateNode(s),d=this.state.event;if(!c||!c.after)return;const h=[],v=[];if(Co(c.after)){const g=this.determineTransition(c.after,d);if(!g)return;if(!y2(g,"delay"))throw new Error(`[@zag-js/core > after] Delay is required for after transition: ${JSON.stringify(g)}`);const w=Fn(g.delay,this.delayMap)(this.contextSnapshot,d),f=this.getAfterActions(g,w);return h.push(f.entry),v.push(f.exit),{entries:h,exits:v}}if(Gn(c.after))for(const g in c.after){const p=c.after[g],f=Fn(g,this.delayMap)(this.contextSnapshot,d),x=this.getAfterActions(p,f);h.push(x.entry),v.push(x.exit)}return{entries:h,exits:v}}),$(this,"executeActions",(s,c)=>{var h;const d=Fl(s,this.guardMap)(this.contextSnapshot,c,this.guardMeta);for(const v of Ct(d)){const g=He(v)?(h=this.actionMap)==null?void 0:h[v]:v;Vl(He(v)&&!g,`[@zag-js/core > execute-actions] No implementation found for action: \`${v}\``),g==null||g(this.state.context,c,this.meta)}}),$(this,"executeActivities",(s,c,d)=>{var h;for(const v of c){const g=He(v)?(h=this.activityMap)==null?void 0:h[v]:v;if(!g){Vl(`[@zag-js/core > execute-activity] No implementation found for activity: \`${v}\``);continue}const p=g(this.state.context,s,this.meta);if(p){const w=He(v)?v:v.name||$r();this.addActivityCleanup(d??this.state.value,w,p)}}}),$(this,"createEveryActivities",(s,c)=>{if(s)if(Co(s)){const d=Ct(s).find(p=>{const w=p.delay,x=Fn(w,this.delayMap)(this.contextSnapshot,this.state.event);return ms(p.guard,this.guardMap)(this.contextSnapshot,this.state.event,this.guardMeta)??x!=null});if(!d)return;const v=Fn(d.delay,this.delayMap)(this.contextSnapshot,this.state.event);c(()=>{const p=globalThis.setInterval(()=>{this.executeActions(d.actions,this.state.event)},v);return()=>{globalThis.clearInterval(p)}})}else for(const d in s){const h=s==null?void 0:s[d],g=Fn(d,this.delayMap)(this.contextSnapshot,this.state.event);c(()=>{const w=globalThis.setInterval(()=>{this.executeActions(h,this.state.event)},g);return()=>{globalThis.clearInterval(w)}})}}),$(this,"setEvent",s=>{this.state.previousEvent=this.state.event,this.state.event=De(tt(s))}),$(this,"performExitEffects",(s,c)=>{const d=this.state.value;if(d==="")return;const h=s?this.getStateNode(s):void 0;this.stopActivities(d);const v=Fl(h==null?void 0:h.exit,this.guardMap)(this.contextSnapshot,c,this.guardMeta),g=Ct(v),p=this.delayedEvents.get(d);p&&g.push(...p),this.executeActions(g,c)}),$(this,"performEntryEffects",(s,c)=>{const d=this.getStateNode(s),h=Ct(d==null?void 0:d.activities);this.createEveryActivities(d==null?void 0:d.every,w=>{h.unshift(w)}),h.length>0&&this.executeActivities(c,h);const v=Fl(d==null?void 0:d.entry,this.guardMap)(this.contextSnapshot,c,this.guardMeta),g=Ct(v),p=this.getDelayedEventActions(s);d!=null&&d.after&&p&&(this.delayedEvents.set(s,p==null?void 0:p.exits),g.push(...p.entries)),this.executeActions(g,c),(d==null?void 0:d.type)==="final"&&(this.state.done=!0,this.doneListeners.forEach(w=>{w(this.stateSnapshot)}),this.stop())}),$(this,"performTransitionEffects",(s,c)=>{const d=this.determineTransition(s,c);this.executeActions(d==null?void 0:d.actions,c)}),$(this,"performStateChangeEffects",(s,c,d)=>{this.setEvent(d);const h=c.changed||c.reenter;h&&this.performExitEffects(s,d),this.performTransitionEffects(c.transition,d),this.setState(c.target),h&&this.performEntryEffects(c.target,d)}),$(this,"determineTransition",(s,c)=>{const d=z2(s,this.guardMap);return d==null?void 0:d(this.contextSnapshot,c,this.guardMeta)}),$(this,"sendParent",s=>{var d;this.parent||po("[@zag-js/core > send-parent] Cannot send event to an unknown parent");const c=tt(s);(d=this.parent)==null||d.send(c)}),$(this,"log",(...s)=>{w2()&&this.options.debug&&console.log(...s)}),$(this,"send",s=>{const c=tt(s);this.transition(this.state.value,c)}),$(this,"transition",(s,c)=>{var p,w;const d=He(s)?this.getStateNode(s):s==null?void 0:s.stateNode,h=tt(c);if(!d&&!this.config.on){const f=this.status==="Stopped"?"[@zag-js/core > transition] Cannot transition a stopped machine":`[@zag-js/core > transition] State does not have a definition for \`state\`: ${s}, \`event\`: ${h.type}`;Vl(f);return}const v=((p=d==null?void 0:d.on)==null?void 0:p[h.type])??((w=this.config.on)==null?void 0:w[h.type]),g=this.getNextStateInfo(v,h);return this.performStateChangeEffects(this.state.value,g,h),g.stateNode}),$(this,"subscribe",s=>(this.stateListeners.add(s),this.status==="Running"&&s(this.stateSnapshot),()=>{this.stateListeners.delete(s)})),$(this,"onDone",s=>(this.doneListeners.add(s),this)),$(this,"onTransition",s=>(this.stateListeners.add(s),this.status==="Running"&&s(this.stateSnapshot),this)),this.config=Hr(e),this.options=Hr(n??{}),this.id=this.config.id??`machine-${$r()}`,this.guardMap=((t=this.options)==null?void 0:t.guards)??{},this.actionMap=((o=this.options)==null?void 0:o.actions)??{},this.delayMap=((i=this.options)==null?void 0:i.delays)??{},this.activityMap=((r=this.options)==null?void 0:r.activities)??{},this.sync=((a=this.options)==null?void 0:a.sync)??!1,this.state=T2(this.config),this.initialContext=bt(this.state.context)}get stateSnapshot(){return mt(bt(this.state))}getState(){return this.stateSnapshot}get contextSnapshot(){return this.stateSnapshot.context}get self(){const e=this;return{id:this.id,send:this.send.bind(this),sendParent:this.sendParent.bind(this),sendChild:this.sendChild.bind(this),stop:this.stop.bind(this),stopChild:this.stopChild.bind(this),spawn:this.spawn.bind(this),stopActivity:this.stopActivity.bind(this),get state(){return e.stateSnapshot},get initialContext(){return e.initialContext},get initialState(){var n;return((n=e.initialState)==null?void 0:n.target)??""}}}get meta(){var e;return{state:this.stateSnapshot,guards:this.guardMap,send:this.send.bind(this),self:this.self,initialContext:this.initialContext,initialState:((e=this.initialState)==null?void 0:e.target)??"",getState:()=>this.stateSnapshot,getAction:n=>this.actionMap[n],getGuard:n=>this.guardMap[n]}}get guardMeta(){return{state:this.stateSnapshot}}get[Symbol.toStringTag](){return"Machine"}getHydrationState(){const e=this.getState();return{value:e.value,tags:e.tags}}},ke=(e,n)=>new ps(e,n),O2=e=>e instanceof ps||(e==null?void 0:e.type)==="machine",V2=(...e)=>e.map(n=>{var t;return(t=n==null?void 0:n.trim)==null?void 0:t.call(n)}).filter(Boolean).join(" "),F2=/((?:--)?(?:\w+-?)+)\s*:\s*([^;]*)/g,Dr=e=>{const n={};let t;for(;t=F2.exec(e);)n[t[1]]=t[2];return n},P2=(e,n)=>{if(He(e)){if(He(n))return`${e};${n}`;e=Dr(e)}else He(n)&&(n=Dr(n));return Object.assign({},e??{},n??{})};function A(...e){let n={};for(let t of e){for(let o in n){if(o.startsWith("on")&&typeof n[o]=="function"&&typeof t[o]=="function"){n[o]=f2(t[o],n[o]);continue}if(o==="className"||o==="class"){n[o]=V2(n[o],t[o]);continue}if(o==="style"){n[o]=P2(n[o],t[o]);continue}n[o]=t[o]!==void 0?t[o]:n[o]}for(let o in t)n[o]===void 0&&(n[o]=t[o])}return n}function k2(e){return new Proxy({},{get(){return e}})}var me=()=>e=>Array.from(new Set(e)),B2=Me("accordion").parts("root","item","itemTrigger","itemContent","itemIndicator"),Pn=B2.build(),fe=qe({getRootId:e=>{var n;return((n=e.ids)==null?void 0:n.root)??`accordion:${e.id}`},getItemId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.item)==null?void 0:o.call(t,n))??`accordion:${e.id}:item:${n}`},getItemContentId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.itemContent)==null?void 0:o.call(t,n))??`accordion:${e.id}:content:${n}`},getItemTriggerId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.itemTrigger)==null?void 0:o.call(t,n))??`accordion:${e.id}:trigger:${n}`},getRootEl:e=>fe.getById(e,fe.getRootId(e)),getTriggerEls:e=>{const t=`[aria-controls][data-ownedby='${CSS.escape(fe.getRootId(e))}']:not([disabled])`;return Zn(fe.getRootEl(e),t)},getFirstTriggerEl:e=>Ai(fe.getTriggerEls(e)),getLastTriggerEl:e=>Li(fe.getTriggerEls(e)),getNextTriggerEl:(e,n)=>Si(fe.getTriggerEls(e),fe.getItemTriggerId(e,n)),getPrevTriggerEl:(e,n)=>Ii(fe.getTriggerEls(e),fe.getItemTriggerId(e,n))});function A2(e,n,t){const o=e.context.focusedValue,i=e.context.value,r=e.context.multiple;function a(c){let d=c;r&&d.length>1&&(d=[d[0]]),n({type:"VALUE.SET",value:d})}function s(c){return{expanded:i.includes(c.value),focused:o===c.value,disabled:!!(c.disabled??e.context.disabled)}}return{focusedValue:o,value:i,setValue:a,getItemState:s,getRootProps(){return t.element({...Pn.root.attrs,dir:e.context.dir,id:fe.getRootId(e.context),"data-orientation":e.context.orientation})},getItemProps(c){const d=s(c);return t.element({...Pn.item.attrs,dir:e.context.dir,id:fe.getItemId(e.context,c.value),"data-state":d.expanded?"open":"closed","data-focus":O(d.focused),"data-disabled":O(d.disabled),"data-orientation":e.context.orientation})},getItemContentProps(c){const d=s(c);return t.element({...Pn.itemContent.attrs,dir:e.context.dir,role:"region",id:fe.getItemContentId(e.context,c.value),"aria-labelledby":fe.getItemTriggerId(e.context,c.value),hidden:!d.expanded,"data-state":d.expanded?"open":"closed","data-disabled":O(d.disabled),"data-focus":O(d.focused),"data-orientation":e.context.orientation})},getItemIndicatorProps(c){const d=s(c);return t.element({...Pn.itemIndicator.attrs,dir:e.context.dir,"aria-hidden":!0,"data-state":d.expanded?"open":"closed","data-disabled":O(d.disabled),"data-focus":O(d.focused),"data-orientation":e.context.orientation})},getItemTriggerProps(c){const{value:d}=c,h=s(c);return t.button({...Pn.itemTrigger.attrs,type:"button",dir:e.context.dir,id:fe.getItemTriggerId(e.context,d),"aria-controls":fe.getItemContentId(e.context,d),"aria-expanded":h.expanded,disabled:h.disabled,"data-orientation":e.context.orientation,"aria-disabled":h.disabled,"data-state":h.expanded?"open":"closed","data-ownedby":fe.getRootId(e.context),onFocus(){h.disabled||n({type:"TRIGGER.FOCUS",value:d})},onBlur(){h.disabled||n("TRIGGER.BLUR")},onClick(v){h.disabled||(Da()&&v.currentTarget.focus(),n({type:"TRIGGER.CLICK",value:d}))},onKeyDown(v){if(v.defaultPrevented||h.disabled)return;const g={ArrowDown(){e.context.isHorizontal||n({type:"GOTO.NEXT",value:d})},ArrowUp(){e.context.isHorizontal||n({type:"GOTO.PREV",value:d})},ArrowRight(){e.context.isHorizontal&&n({type:"GOTO.NEXT",value:d})},ArrowLeft(){e.context.isHorizontal&&n({type:"GOTO.PREV",value:d})},Home(){n({type:"GOTO.FIRST",value:d})},End(){n({type:"GOTO.LAST",value:d})}},p=It(v,{dir:e.context.dir,orientation:e.context.orientation}),w=g[p];w&&(w(v),v.preventDefault())}})}}}var{and:L2,not:_2}=wt;function N2(e){const n=ze(e);return ke({id:"accordion",initial:"idle",context:{focusedValue:null,value:[],collapsible:!1,multiple:!1,orientation:"vertical",...n},watch:{value:"coarseValue",multiple:"coarseValue"},created:"coarseValue",computed:{isHorizontal:t=>t.orientation==="horizontal"},on:{"VALUE.SET":{actions:["setValue"]}},states:{idle:{on:{"TRIGGER.FOCUS":{target:"focused",actions:"setFocusedValue"}}},focused:{on:{"GOTO.NEXT":{actions:"focusNextTrigger"},"GOTO.PREV":{actions:"focusPrevTrigger"},"TRIGGER.CLICK":[{guard:L2("isExpanded","canToggle"),actions:["collapse"]},{guard:_2("isExpanded"),actions:["expand"]}],"GOTO.FIRST":{actions:"focusFirstTrigger"},"GOTO.LAST":{actions:"focusLastTrigger"},"TRIGGER.BLUR":{target:"idle",actions:"clearFocusedValue"}}}}},{guards:{canToggle:t=>!!t.collapsible||!!t.multiple,isExpanded:(t,o)=>t.value.includes(o.value)},actions:{collapse(t,o){const i=t.multiple?es(t.value,o.value):[];kn.value(t,t.multiple?i:[])},expand(t,o){const i=t.multiple?Qa(t.value,o.value):[o.value];kn.value(t,i)},focusFirstTrigger(t){var o;(o=fe.getFirstTriggerEl(t))==null||o.focus()},focusLastTrigger(t){var o;(o=fe.getLastTriggerEl(t))==null||o.focus()},focusNextTrigger(t){if(!t.focusedValue)return;const o=fe.getNextTriggerEl(t,t.focusedValue);o==null||o.focus()},focusPrevTrigger(t){if(!t.focusedValue)return;const o=fe.getPrevTriggerEl(t,t.focusedValue);o==null||o.focus()},setFocusedValue(t,o){kn.focusedValue(t,o.value)},clearFocusedValue(t){kn.focusedValue(t,null)},setValue(t,o){kn.value(t,o.value)},coarseValue(t){!t.multiple&&t.value.length>1&&(Ho("The value of accordion should be a single value when multiple is false."),t.value=[t.value[0]])}}})}var jr={change(e){var n;(n=e.onValueChange)==null||n.call(e,{value:Array.from(e.value)})},focusChange(e){var n;(n=e.onFocusChange)==null||n.call(e,{value:e.focusedValue})}},kn={value(e,n){Ce(e.value,n)||(e.value=n,jr.change(e))},focusedValue(e,n){Ce(e.focusedValue,n)||(e.focusedValue=n,jr.focusChange(e))}};me()(["collapsible","dir","disabled","getRootNode","id","ids","multiple","onFocusChange","onValueChange","orientation","value"]);var $2=me()(["value","disabled"]),H2=e2($2),Be=k2(e=>e),Wr=e=>(e==null?void 0:e.constructor.name)==="Array",D2=(e,n)=>{if(e.length!==n.length)return!1;for(let t=0;t<e.length;t++)if(!ji(e[t],n[t]))return!1;return!0},ji=(e,n)=>{if(Object.is(e,n))return!0;if(e==null&&n!=null||e!=null&&n==null)return!1;if(typeof(e==null?void 0:e.isEqual)=="function"&&typeof(n==null?void 0:n.isEqual)=="function")return e.isEqual(n);if(typeof e=="function"&&typeof n=="function")return e.toString()===n.toString();if(Wr(e)&&Wr(n))return D2(Array.from(e),Array.from(n));if(typeof e!="object"||typeof n!="object")return!1;const t=Object.keys(n??Object.create(null)),o=t.length;for(let i=0;i<o;i++)if(!Reflect.has(e,t[i]))return!1;for(let i=0;i<o;i++){const r=t[i];if(!ji(e[r],n[r]))return!1}return!0},j2=()=>process.env.NODE_ENV!=="production";function fs(e){if(!W2(e)||e===void 0)return e;const n=Reflect.ownKeys(e).filter(o=>typeof o=="string"),t={};for(const o of n){const i=e[o];i!==void 0&&(t[o]=fs(i))}return t}var W2=e=>e&&typeof e=="object"&&e.constructor===Object;function G2(e,n){const t=S.useRef(!1),o=S.useRef(!1);S.useEffect(()=>{if(t.current&&o.current)return e();o.current=!0},n),S.useEffect(()=>(t.current=!0,()=>{t.current=!1}),[])}var{use:Gr}=S,U2=$i("__zag__targetCache",()=>new WeakMap);function ws(e,n){const{actions:t,context:o,sync:i}=n??{},r=S.useRef(),a=S.useRef(),s=S.useSyncExternalStore(S.useCallback(v=>xo(e.state,v,i),[i]),()=>{const v=bt(e.state,Gr);try{if(r.current&&a.current&&!hs(r.current,v,a.current,new WeakMap))return r.current}catch{}return v},()=>bt(e.state,Gr));e.setOptions({actions:t});const c=S.useMemo(()=>fs(o??{}),[o]);G2(()=>{const v=Object.entries(c),g=e.contextSnapshot??{};v.map(([f,x])=>({key:f,curr:x,prev:g[f],equal:ji(g[f],x)})).every(({equal:f})=>f)||e.setContext(c)},[c]);const d=new WeakMap;S.useEffect(()=>{r.current=s,a.current=d});const h=S.useMemo(()=>new WeakMap,[]);return us(s,d,h,U2)}function K2(e){return[ws(e),e.send]}function q2(e){const n=S.useRef();return n.current||(n.current={v:e()}),n.current.v}var Y2=typeof document<"u"?S.useLayoutEffect:S.useEffect;function X2(e,n){const{state:t,context:o}=n??{},i=q2(()=>{const a=typeof e=="function"?e():e;return o&&a.setContext(o),a._created(),a}),r=S.useRef();return Y2(()=>{const a=t??r.current;return i.start(a),()=>{j2()&&(r.current=i.getHydrationState()),i.stop()}},[]),i}function We(e,n){const t=X2(e,n);return[ws(t,n),t.send,t]}const[Z2,HE]=re({name:"AccordionItemContext",hookName:"useAccordionItemContext",providerName:"<AccordionItemProvider />"});function J2(e,n){typeof e=="function"?e(n):e!=null&&(e.current=n)}function Es(...e){return n=>{for(const t of e)J2(t,n)}}function Q2(e){return"ref"in e.props?e.props.ref:"ref"in e?e.ref:null}const Pl=e=>{const n=S.memo(S.forwardRef((t,o)=>{const{asChild:i,children:r,...a}=t;if(!i)return S.createElement(e,{...a,ref:o},r);const s=S.Children.only(r);if(!S.isValidElement(s))return null;const c=Q2(s);return S.cloneElement(s,{...A(a,s.props),ref:o?Es(o,c):c})}));return n.displayName=e.displayName||e.name,n},ed=()=>{const e=new Map;return new Proxy(Pl,{apply(n,t,o){return Pl(o[0])},get(n,t){const o=t;return e.has(o)||e.set(o,Pl(o)),e.get(o)}})},W=ed(),pe=()=>(e,n)=>n.reduce((t,o)=>{const[i,r]=t,a=o;return r[a]!==void 0&&(i[a]=r[a]),delete r[a],[i,r]},[{},{...e}]),td=e=>pe()(e,["defaultOpen","disabled","id","ids","lazyMount","onExitComplete","onOpenChange","open","unmountOnExit"]);var nd=Me("collapsible").parts("root","trigger","content"),kl=nd.build(),Ke=qe({getRootId:e=>{var n;return((n=e.ids)==null?void 0:n.root)??`collapsible:${e.id}`},getContentId:e=>{var n;return((n=e.ids)==null?void 0:n.content)??`collapsible:${e.id}:content`},getTriggerId:e=>{var n;return((n=e.ids)==null?void 0:n.trigger)??`collapsible:${e.id}:trigger`},getRootEl:e=>Ke.getById(e,Ke.getRootId(e)),getContentEl:e=>Ke.getById(e,Ke.getContentId(e)),getTriggerEl:e=>Ke.getById(e,Ke.getTriggerId(e))});function od(e,n,t){const o=e.matches("open","closing"),i=e.matches("open"),r=e.context.height,a=e.context.width,s=!!e.context.disabled,c=!e.context.initial&&i;return{disabled:s,visible:o,open:i,setOpen(d){d!==i&&n(d?"OPEN":"CLOSE")},getRootProps(){return t.element({...kl.root.attrs,"data-state":i?"open":"closed",dir:e.context.dir,id:Ke.getRootId(e.context)})},getContentProps(){return t.element({...kl.content.attrs,"data-state":c?void 0:i?"open":"closed",id:Ke.getContentId(e.context),"data-disabled":O(s),hidden:!o,style:{"--height":r!=null?`${r}px`:void 0,"--width":a!=null?`${a}px`:void 0}})},getTriggerProps(){return t.element({...kl.trigger.attrs,id:Ke.getTriggerId(e.context),dir:e.context.dir,type:"button","data-state":i?"open":"closed","data-disabled":O(s),"aria-controls":Ke.getContentId(e.context),"aria-expanded":o||!1,onClick(d){d.defaultPrevented||s||n({type:i?"CLOSE":"OPEN",src:"trigger.click"})}})}}}function ld(e){const n=ze(e);return ke({id:"collapsible",initial:n.open?"open":"closed",context:{...n,height:0,width:0,initial:!1,stylesRef:null,unmountAnimationName:null},watch:{open:["setInitial","computeSize","toggleVisibility"]},exit:["clearInitial"],states:{closed:{tags:["closed"],on:{"CONTROLLED.OPEN":"open",OPEN:[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{target:"open",actions:["setInitial","computeSize","invokeOnOpen"]}]}},closing:{tags:["open"],activities:["trackAnimationEvents"],on:{"CONTROLLED.CLOSE":"closed","CONTROLLED.OPEN":"open",OPEN:[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{target:"open",actions:["setInitial","invokeOnOpen"]}],CLOSE:[{guard:"isOpenControlled",actions:["invokeOnExitComplete"]},{target:"closed",actions:["setInitial","computeSize","invokeOnExitComplete"]}],"ANIMATION.END":{target:"closed",actions:["invokeOnExitComplete"]}}},open:{tags:["open"],on:{"CONTROLLED.CLOSE":"closing",CLOSE:[{guard:"isOpenControlled",actions:["invokeOnClose"]},{target:"closing",actions:["setInitial","computeSize","invokeOnClose"]}]}}}},{guards:{isOpenControlled:t=>!!t["open.controlled"]},activities:{trackAnimationEvents(t,o,{send:i}){let r;const a=te(()=>{const s=Ke.getContentEl(t);if(!s)return;const c=xc(s).animationName;if(!c||c==="none"){i({type:"ANIMATION.END"});return}const h=v=>{const p=(s.ownerDocument.defaultView||window).getComputedStyle(s).animationName;v.target===s&&p===t.unmountAnimationName&&i({type:"ANIMATION.END"})};s.addEventListener("animationend",h),r=()=>{s.removeEventListener("animationend",h)}});return()=>{a(),r==null||r()}}},actions:{setInitial(t){t.initial=!0},clearInitial(t){t.initial=!1},computeSize(t,o){var i;(i=t._rafCleanup)==null||i.call(t),t._rafCleanup=te(()=>{const r=Ke.getContentEl(t);if(!r)return;if(t.stylesRef||(t.stylesRef=De({animationName:r.style.animationName,animationDuration:r.style.animationDuration})),o.type==="CLOSE"||!t.open){const c=r.ownerDocument.defaultView||window;t.unmountAnimationName=c.getComputedStyle(r).animationName}const a=r.hidden;r.style.animationName="none",r.style.animationDuration="0s",r.hidden=!1;const s=r.getBoundingClientRect();t.height=s.height,t.width=s.width,t.initial&&(r.style.animationName=t.stylesRef.animationName,r.style.animationDuration=t.stylesRef.animationDuration),r.hidden=a})},invokeOnOpen:t=>{var o;(o=t.onOpenChange)==null||o.call(t,{open:!0})},invokeOnClose:t=>{var o;(o=t.onOpenChange)==null||o.call(t,{open:!1})},invokeOnExitComplete(t){var o;(o=t.onExitComplete)==null||o.call(t)},toggleVisibility:(t,o,{send:i})=>{i({type:t.open?"CONTROLLED.OPEN":"CONTROLLED.CLOSE"})}}})}me()(["dir","disabled","getRootNode","id","ids","onExitComplete","onOpenChange","open.controlled","open"]);const[DE,Ye]=re({name:"EnvironmentContext",hookName:"useEnvironmentContext",providerName:"<EnvironmentProvider />",strict:!1,defaultValue:{getRootNode:()=>document,getDocument:()=>document,getWindow:()=>window}}),[jE,it]=re({name:"LocaleContext",hookName:"useLocaleContext",providerName:"<LocaleProvider />",strict:!1,defaultValue:{dir:"ltr",locale:"en-US"}});function ge(e,n={}){const{sync:t=!1}=n,o=id(e);return S.useCallback((...i)=>{var r;return t?queueMicrotask(()=>{var a;return(a=o.current)==null?void 0:a.call(o,...i)}):(r=o.current)==null?void 0:r.call(o,...i)},[t,o])}function id(e){const n=S.useRef(e);return n.current=e,n}const rd=(e={})=>{const{lazyMount:n,unmountOnExit:t,...o}=e,i=S.useRef(!1),{dir:r}=it(),{getRootNode:a}=Ye(),s={id:S.useId(),dir:r,getRootNode:a,open:e.defaultOpen,"open.controlled":e.open!==void 0,...o},c={...s,open:e.open,onOpenChange:ge(e.onOpenChange,{sync:!0})},[d,h]=We(ld(s),{context:c}),v=od(d,h,Be);v.visible&&(i.current=!0);const g=!v.visible&&!i.current&&n||t&&!v.visible&&i.current;return{...v,isUnmounted:g}},[ad,ys]=re({name:"CollapsibleContext",hookName:"useCollapsibleContext",providerName:"<CollapsibleProvider />"}),xs=S.forwardRef((e,n)=>{const[t,o]=td(e),i=rd(t),r=A(i.getRootProps(),o);return m.jsx(ad,{value:i,children:m.jsx(W.div,{...r,ref:n})})});xs.displayName="CollapsibleRoot";const[Wi,Cs]=re({name:"RenderStrategyContext",hookName:"useRenderStrategyContext",providerName:"<RenderStrategyPropsProvider />"}),Gi=e=>pe()(e,["lazyMount","unmountOnExit"]),[sd,Ui]=re({name:"AccordionItemPropsContext",hookName:"useAccordionItemPropsContext",providerName:"<AccordionItemPropsProvider />"}),bs=S.forwardRef((e,n)=>{const[t,o]=H2(e),i=Lo(),r=Cs(),a=A(i.getItemProps(t),o),s=i.getItemState(t),c=i.getItemContentProps(t);return m.jsx(sd,{value:t,children:m.jsx(Z2,{value:s,children:m.jsx(xs,{ref:n,open:s.expanded,ids:{content:c.id},...r,...a})})})});bs.displayName="AccordionItem";const Rs=S.forwardRef((e,n)=>{const t=ys();if(t.isUnmounted)return null;const o=A(t.getContentProps(),e);return m.jsx(W.div,{...o,ref:n})});Rs.displayName="CollapsibleContent";const cd=pe(),Ss=S.forwardRef((e,n)=>{const t=Lo(),o=Ui(),i=t.getItemContentProps(o),[,r]=cd(i,["hidden","data-state"]),a=A(r,e);return m.jsx(Rs,{ref:n,...a})});Ss.displayName="AccordionItemContent";const Is=S.forwardRef((e,n)=>{const t=Lo(),o=Ui(),i=A(t.getItemIndicatorProps(o),e);return m.jsx(W.div,{...i,ref:n})});Is.displayName="AccordionItemIndicator";const Ts=S.forwardRef((e,n)=>{const t=Lo(),o=Ui(),i=ys(),r=t.getItemTriggerProps(o),a=A({...r,"aria-controls":i.isUnmounted?void 0:r["aria-controls"]},e);return m.jsx(W.button,{...a,ref:n})});Ts.displayName="AccordionItemTrigger";const dd=(e={})=>{const{getRootNode:n}=Ye(),{dir:t}=it(),o={id:S.useId(),dir:t,getRootNode:n,value:e.defaultValue,...e},i={...o,value:e.value,onFocusChange:ge(e.onFocusChange),onValueChange:ge(e.onValueChange)},[r,a]=We(N2(o),{context:i});return A2(r,a,Be)},Ms=S.forwardRef((e,n)=>{const[t,o]=Gi(e),[i,r]=pe()(o,["collapsible","defaultValue","disabled","id","ids","multiple","onFocusChange","onValueChange","orientation","value"]),a=dd(i),s=A(a.getRootProps(),r);return m.jsx(ec,{value:a,children:m.jsx(Wi,{value:t,children:m.jsx(W.div,{...s,ref:n})})})});Ms.displayName="AccordionRoot";const[ud,zs]=re({name:"AvatarContext",hookName:"useAvatarContext",providerName:"<AvatarProvider />"}),Os=S.forwardRef((e,n)=>{const t=zs(),o=A(t.getFallbackProps(),e);return m.jsx(W.span,{...o,ref:n})});Os.displayName="AvatarFallback";const Vs=S.forwardRef((e,n)=>{const t=zs(),o=A(t.getImageProps(),e);return m.jsx(W.img,{...o,ref:n})});Vs.displayName="AvatarImage";var hd=Me("avatar").parts("root","image","fallback"),Bl=hd.build(),rt=qe({getRootId:e=>{var n;return((n=e.ids)==null?void 0:n.root)??`avatar:${e.id}`},getImageId:e=>{var n;return((n=e.ids)==null?void 0:n.image)??`avatar:${e.id}:image`},getFallbackId:e=>{var n;return((n=e.ids)==null?void 0:n.fallback)??`avatar:${e.id}:fallback`},getRootEl:e=>rt.getById(e,rt.getRootId(e)),getImageEl:e=>rt.getById(e,rt.getImageId(e))});function gd(e,n,t){const o=e.matches("loaded");return{loaded:o,setSrc(i){n({type:"SRC.SET",src:i})},setLoaded(){n({type:"IMG.LOADED",src:"api"})},setError(){n({type:"IMG.ERROR",src:"api"})},getRootProps(){return t.element({...Bl.root.attrs,dir:e.context.dir,id:rt.getRootId(e.context)})},getImageProps(){return t.img({...Bl.image.attrs,hidden:!o,dir:e.context.dir,id:rt.getImageId(e.context),"data-state":o?"visible":"hidden",onLoad(){n({type:"IMG.LOADED",src:"element"})},onError(){n({type:"IMG.ERROR",src:"element"})}})},getFallbackProps(){return t.element({...Bl.fallback.attrs,dir:e.context.dir,id:rt.getFallbackId(e.context),hidden:o,"data-state":o?"hidden":"visible"})}}}function vd(e){const n=ze(e);return ke({id:"avatar",initial:"loading",activities:["trackImageRemoval"],context:n,on:{"SRC.CHANGE":{target:"loading"},"IMG.UNMOUNT":{target:"error"}},states:{loading:{activities:["trackSrcChange"],entry:["checkImageStatus"],on:{"IMG.LOADED":{target:"loaded",actions:["invokeOnLoad"]},"IMG.ERROR":{target:"error",actions:["invokeOnError"]}}},error:{activities:["trackSrcChange"],on:{"IMG.LOADED":{target:"loaded",actions:["invokeOnLoad"]}}},loaded:{activities:["trackSrcChange"],on:{"IMG.ERROR":{target:"error",actions:["invokeOnError"]}}}}},{activities:{trackSrcChange(t,o,{send:i}){const r=rt.getImageEl(t);return No(r,{attributes:["src","srcset"],callback(){i({type:"SRC.CHANGE"})}})},trackImageRemoval(t,o,{send:i}){const r=rt.getRootEl(t);return Ya(r,{callback(a){Array.from(a[0].removedNodes).find(d=>d.matches("[data-scope=avatar][data-part=image]"))&&i({type:"IMG.UNMOUNT"})}})}},actions:{invokeOnLoad(t){var o;(o=t.onStatusChange)==null||o.call(t,{status:"loaded"})},invokeOnError(t){var o;(o=t.onStatusChange)==null||o.call(t,{status:"error"})},checkImageStatus(t,o,{send:i}){const r=rt.getImageEl(t);if(r!=null&&r.complete){const a=md(r)?"IMG.LOADED":"IMG.ERROR";i({type:a,src:"ssr"})}}}})}function md(e){return e.complete&&e.naturalWidth!==0&&e.naturalHeight!==0}me()(["dir","id","ids","onStatusChange","getRootNode"]);const pd=(e={})=>{const{getRootNode:n}=Ye(),{dir:t}=it(),o={id:S.useId(),dir:t,getRootNode:n,...e},i={...o,onStatusChange:ge(e.onStatusChange)},[r,a]=We(vd(o),{context:i});return gd(r,a,Be)},Fs=S.forwardRef((e,n)=>{const[t,o]=pe()(e,["id","ids","onStatusChange"]),i=pd(t),r=A(i.getRootProps(),o);return m.jsx(ud,{value:i,children:m.jsx(W.div,{...r,ref:n})})});Fs.displayName="AvatarRoot";const[fd,Do]=re({name:"CheckboxContext",hookName:"useCheckboxContext",providerName:"<CheckboxProvider />"}),Ps=e=>e.children(Do()),Ki=S.forwardRef((e,n)=>{const t=Do(),o=A(t.getControlProps(),e);return m.jsx(W.div,{...o,ref:n})});Ki.displayName="CheckboxControl";var ks=e=>e.ownerDocument.defaultView||window;function wd(e,n){const{type:t="HTMLInputElement",property:o="value"}=n,i=ks(e)[t].prototype;return Object.getOwnPropertyDescriptor(i,o)??{}}function Bs(e,n){var o;(o=wd(e,{type:"HTMLInputElement",property:"checked"}).set)==null||o.call(e,n),n?e.setAttribute("checked",""):e.removeAttribute("checked")}function qi(e,n){const{checked:t,bubbles:o=!0}=n;if(!e)return;const i=ks(e);e instanceof i.HTMLInputElement&&(Bs(e,t),e.dispatchEvent(new i.Event("click",{bubbles:o})))}function Ed(e){return yd(e)?e.form:e.closest("form")}function yd(e){return e.matches("textarea, input, select, button")}function xd(e,n){if(!e)return;const t=Ed(e);return t==null||t.addEventListener("reset",n,{passive:!0}),()=>{t==null||t.removeEventListener("reset",n)}}function Cd(e,n){const t=e==null?void 0:e.closest("fieldset");if(!t)return;n(t.disabled);const o=t.ownerDocument.defaultView||window,i=new o.MutationObserver(()=>n(t.disabled));return i.observe(t,{attributes:!0,attributeFilter:["disabled"]}),()=>i.disconnect()}function jo(e,n){if(!e)return;const{onFieldsetDisabledChange:t,onFormReset:o}=n,i=[xd(e,o),Cd(e,t)];return()=>{i.forEach(r=>r==null?void 0:r())}}var bd=Me("checkbox").parts("root","label","control","indicator"),no=bd.build(),ye=qe({getRootId:e=>{var n;return((n=e.ids)==null?void 0:n.root)??`checkbox:${e.id}`},getLabelId:e=>{var n;return((n=e.ids)==null?void 0:n.label)??`checkbox:${e.id}:label`},getControlId:e=>{var n;return((n=e.ids)==null?void 0:n.control)??`checkbox:${e.id}:control`},getHiddenInputId:e=>{var n;return((n=e.ids)==null?void 0:n.hiddenInput)??`checkbox:${e.id}:input`},getRootEl:e=>ye.getById(e,ye.getRootId(e)),getHiddenInputEl:e=>ye.getById(e,ye.getHiddenInputId(e))});function Rd(e,n,t){const o=e.context.isDisabled,i=!o&&e.context.focused,r=e.context.isChecked,a=e.context.isIndeterminate,s=e.context.readOnly,c={"data-active":O(e.context.active),"data-focus":O(i),"data-readonly":O(s),"data-hover":O(e.context.hovered),"data-disabled":O(o),"data-state":a?"indeterminate":e.context.checked?"checked":"unchecked","data-invalid":O(e.context.invalid)};return{checked:r,disabled:o,indeterminate:a,focused:i,checkedState:e.context.checked,setChecked(d){n({type:"CHECKED.SET",checked:d,isTrusted:!1})},toggleChecked(){n({type:"CHECKED.TOGGLE",checked:r,isTrusted:!1})},getRootProps(){return t.label({...no.root.attrs,...c,dir:e.context.dir,id:ye.getRootId(e.context),htmlFor:ye.getHiddenInputId(e.context),onPointerMove(){o||n({type:"CONTEXT.SET",context:{hovered:!0}})},onPointerLeave(){o||n({type:"CONTEXT.SET",context:{hovered:!1}})},onClick(d){d.target===ye.getHiddenInputEl(e.context)&&d.stopPropagation()}})},getLabelProps(){return t.element({...no.label.attrs,...c,dir:e.context.dir,id:ye.getLabelId(e.context)})},getControlProps(){return t.element({...no.control.attrs,...c,dir:e.context.dir,id:ye.getControlId(e.context),"aria-hidden":!0})},getIndicatorProps(){return t.element({...no.indicator.attrs,...c,dir:e.context.dir,hidden:!a&&!e.context.checked})},getHiddenInputProps(){return t.input({id:ye.getHiddenInputId(e.context),type:"checkbox",required:e.context.required,defaultChecked:r,disabled:o,"aria-labelledby":ye.getLabelId(e.context),"aria-invalid":e.context.invalid,name:e.context.name,form:e.context.form,value:e.context.value,style:$o,onClick(d){if(s){d.preventDefault();return}const h=d.currentTarget.checked;n({type:"CHECKED.SET",checked:h,isTrusted:!0})}})}}}var{not:Ur}=wt;function Sd(e){const n=ze(e);return ke({id:"checkbox",initial:"ready",context:{checked:!1,value:"on",disabled:!1,...n,fieldsetDisabled:!1},watch:{disabled:"removeFocusIfNeeded",checked:"syncInputElement"},activities:["trackFormControlState","trackPressEvent","trackFocusVisible"],on:{"CHECKED.TOGGLE":[{guard:Ur("isTrusted"),actions:["toggleChecked","dispatchChangeEvent"]},{actions:["toggleChecked"]}],"CHECKED.SET":[{guard:Ur("isTrusted"),actions:["setChecked","dispatchChangeEvent"]},{actions:["setChecked"]}],"CONTEXT.SET":{actions:["setContext"]}},computed:{isIndeterminate:t=>Kl(t.checked),isChecked:t=>Kr(t.checked),isDisabled:t=>!!t.disabled||t.fieldsetDisabled},states:{ready:{}}},{guards:{isTrusted:(t,o)=>!!o.isTrusted},activities:{trackPressEvent(t){if(!t.isDisabled)return Ja({pointerNode:ye.getRootEl(t),keyboardNode:ye.getHiddenInputEl(t),isValidKey:o=>o.key===" ",onPress:()=>t.active=!1,onPressStart:()=>t.active=!0,onPressEnd:()=>t.active=!1})},trackFocusVisible(t){if(!t.isDisabled)return Za(ye.getHiddenInputEl(t),{onFocus:()=>t.focused=!0,onBlur:()=>t.focused=!1})},trackFormControlState(t,o,{send:i,initialContext:r}){return jo(ye.getHiddenInputEl(t),{onFieldsetDisabledChange(a){t.fieldsetDisabled=a},onFormReset(){i({type:"CHECKED.SET",checked:!!r.checked})}})}},actions:{setContext(t,o){Object.assign(t,o.context)},syncInputElement(t){const o=ye.getHiddenInputEl(t);o&&(Bs(o,t.isChecked),o.indeterminate=t.isIndeterminate)},removeFocusIfNeeded(t){t.disabled&&t.focused&&(t.focused=!1)},setChecked(t,o){qr.checked(t,o.checked)},toggleChecked(t){const o=Kl(t.checked)?!0:!t.checked;qr.checked(t,o)},dispatchChangeEvent(t){const o=ye.getHiddenInputEl(t);qi(o,{checked:Kr(t.checked)})}}})}function Kl(e){return e==="indeterminate"}function Kr(e){return Kl(e)?!1:!!e}var Id={change:e=>{var n;(n=e.onCheckedChange)==null||n.call(e,{checked:e.checked})}},qr={checked:(e,n)=>{Ce(e.checked,n)||(e.checked=n,Id.change(e))}};me()(["checked","dir","disabled","form","getRootNode","id","ids","invalid","name","onCheckedChange","readOnly","required","value"]);const[WE,Td]=re({name:"CheckboxGroupContext",hookName:"useCheckboxGroupContext",providerName:"<CheckboxGroupProvider />",strict:!1}),[GE,Yt]=re({name:"FieldContext",hookName:"useFieldContext",providerName:"<FieldProvider />",strict:!1}),Yi=S.forwardRef((e,n)=>{const t=Do(),o=A(t.getHiddenInputProps(),e),i=Yt();return m.jsx(W.input,{"aria-describedby":i==null?void 0:i.ariaDescribedby,...o,ref:n})});Yi.displayName="CheckboxHiddenInput";const ql=S.forwardRef((e,n)=>{const t=Do(),o=A(t.getLabelProps(),e);return m.jsx(W.span,{...o,ref:n})});ql.displayName="CheckboxLabel";const Md=(e={})=>{const n=Td(),t=Yt(),o=S.useMemo(()=>A(e,(n==null?void 0:n.getItemProps({value:e.value}))??{}),[e,n]),{getRootNode:i}=Ye(),{dir:r}=it(),a={id:S.useId(),ids:{label:t==null?void 0:t.ids.label,hiddenInput:t==null?void 0:t.ids.control},dir:r,disabled:t==null?void 0:t.disabled,readOnly:t==null?void 0:t.readOnly,invalid:t==null?void 0:t.invalid,required:t==null?void 0:t.required,getRootNode:i,checked:o.defaultChecked,...o},s={...a,checked:o.checked,onCheckedChange:ge(o.onCheckedChange,{sync:!0})},[c,d]=We(Sd(a),{context:s});return Rd(c,d,Be)},Xi=S.forwardRef((e,n)=>{const[t,o]=pe()(e,["checked","defaultChecked","disabled","form","id","ids","invalid","name","onCheckedChange","readOnly","required","value"]),i=Md(t),r=A(i.getRootProps(),o);return m.jsx(fd,{value:i,children:m.jsx(W.label,{...r,ref:n})})});Xi.displayName="CheckboxRoot";const[Wo,Et]=re({name:"PresenceContext",hookName:"usePresenceContext",providerName:"<PresenceProvider />"}),Go=e=>pe()(e,["immediate","lazyMount","onExitComplete","present","unmountOnExit"]);function zd(e,n,t){const o=e.matches("mounted","unmountSuspended");return{skip:!e.context.initial&&o,present:o,setNode(i){i&&n({type:"NODE.SET",node:i})},unmount(){n({type:"UNMOUNT"})}}}function oo(e){return(e==null?void 0:e.animationName)||"none"}function Od(e){return ke({initial:e.present?"mounted":"unmounted",context:{node:null,styles:null,unmountAnimationName:null,prevAnimationName:null,present:!1,initial:!1,...e},exit:["clearInitial"],watch:{present:["setInitial","syncPresence"]},on:{"NODE.SET":{actions:["setNode","setStyles"]}},states:{mounted:{on:{UNMOUNT:{target:"unmounted",actions:["invokeOnExitComplete"]},"UNMOUNT.SUSPEND":"unmountSuspended"}},unmountSuspended:{activities:["trackAnimationEvents"],on:{MOUNT:{target:"mounted",actions:["setPrevAnimationName"]},"ANIMATION.END":{target:"unmounted",actions:["invokeOnExitComplete"]},UNMOUNT:{target:"unmounted",actions:["invokeOnExitComplete"]}}},unmounted:{entry:["clearPrevAnimationName"],on:{MOUNT:{target:"mounted",actions:["setPrevAnimationName"]}}}}},{actions:{setInitial(n){n.initial=!0},clearInitial(n){n.initial=!1},invokeOnExitComplete(n){var t;(t=n.onExitComplete)==null||t.call(n)},setNode(n,t){n.node=De(t.node)},setStyles(n,t){const o=t.node.ownerDocument.defaultView||window;n.styles=De(o.getComputedStyle(t.node))},syncPresence(n,t,{send:o}){if(n.present){o({type:"MOUNT",src:"presence.changed"});return}const i=oo(n.styles);(n.immediate?queueMicrotask:requestAnimationFrame)(()=>{var a,s;n.unmountAnimationName=i,i==="none"||i===n.prevAnimationName||((a=n.styles)==null?void 0:a.display)==="none"||((s=n.styles)==null?void 0:s.animationDuration)==="0s"?o({type:"UNMOUNT",src:"presence.changed"}):o({type:"UNMOUNT.SUSPEND"})})},setPrevAnimationName(n){(n.immediate?queueMicrotask:requestAnimationFrame)(()=>{n.prevAnimationName=oo(n.styles)})},clearPrevAnimationName(n){n.prevAnimationName=null}},activities:{trackAnimationEvents(n,t,{send:o}){const i=n.node;if(!i)return;const r=s=>{s.target===i&&(n.prevAnimationName=oo(n.styles))},a=s=>{const c=oo(n.styles);s.target===i&&c===n.unmountAnimationName&&o({type:"UNMOUNT",src:"animationend"})};return i.addEventListener("animationstart",r),i.addEventListener("animationcancel",a),i.addEventListener("animationend",a),()=>{i.removeEventListener("animationstart",r),i.removeEventListener("animationcancel",a),i.removeEventListener("animationend",a)}}}})}me()(["onExitComplete","present","immediate"]);const Jn=e=>{const{lazyMount:n,unmountOnExit:t,...o}=e,i=S.useRef(!1),r={...o,onExitComplete:ge(e.onExitComplete)},[a,s]=We(Od(r),{context:r}),c=zd(a,s);c.present&&(i.current=!0);const d=!c.present&&!i.current&&n||t&&!c.present&&i.current;return{getPresenceProps:v=>({ref:Es(c.setNode,v),"data-state":e.present?"open":"closed",hidden:!c.present}),present:c.present,unmounted:d}},at=Math.min,$e=Math.max,So=Math.round,lo=Math.floor,Tt=e=>({x:e,y:e}),Vd={left:"right",right:"left",bottom:"top",top:"bottom"},Fd={start:"end",end:"start"};function Yl(e,n,t){return $e(e,at(n,t))}function Mt(e,n){return typeof e=="function"?e(n):e}function pt(e){return e.split("-")[0]}function hn(e){return e.split("-")[1]}function Zi(e){return e==="x"?"y":"x"}function Ji(e){return e==="y"?"height":"width"}function zt(e){return["top","bottom"].includes(pt(e))?"y":"x"}function Qi(e){return Zi(zt(e))}function Pd(e,n,t){t===void 0&&(t=!1);const o=hn(e),i=Qi(e),r=Ji(i);let a=i==="x"?o===(t?"end":"start")?"right":"left":o==="start"?"bottom":"top";return n.reference[r]>n.floating[r]&&(a=Io(a)),[a,Io(a)]}function kd(e){const n=Io(e);return[Xl(e),n,Xl(n)]}function Xl(e){return e.replace(/start|end/g,n=>Fd[n])}function Bd(e,n,t){const o=["left","right"],i=["right","left"],r=["top","bottom"],a=["bottom","top"];switch(e){case"top":case"bottom":return t?n?i:o:n?o:i;case"left":case"right":return n?r:a;default:return[]}}function Ad(e,n,t,o){const i=hn(e);let r=Bd(pt(e),t==="start",o);return i&&(r=r.map(a=>a+"-"+i),n&&(r=r.concat(r.map(Xl)))),r}function Io(e){return e.replace(/left|right|bottom|top/g,n=>Vd[n])}function Ld(e){return{top:0,right:0,bottom:0,left:0,...e}}function As(e){return typeof e!="number"?Ld(e):{top:e,right:e,bottom:e,left:e}}function To(e){const{x:n,y:t,width:o,height:i}=e;return{width:o,height:i,top:t,left:n,right:n+o,bottom:t+i,x:n,y:t}}function Yr(e,n,t){let{reference:o,floating:i}=e;const r=zt(n),a=Qi(n),s=Ji(a),c=pt(n),d=r==="y",h=o.x+o.width/2-i.width/2,v=o.y+o.height/2-i.height/2,g=o[s]/2-i[s]/2;let p;switch(c){case"top":p={x:h,y:o.y-i.height};break;case"bottom":p={x:h,y:o.y+o.height};break;case"right":p={x:o.x+o.width,y:v};break;case"left":p={x:o.x-i.width,y:v};break;default:p={x:o.x,y:o.y}}switch(hn(n)){case"start":p[a]-=g*(t&&d?-1:1);break;case"end":p[a]+=g*(t&&d?-1:1);break}return p}const _d=async(e,n,t)=>{const{placement:o="bottom",strategy:i="absolute",middleware:r=[],platform:a}=t,s=r.filter(Boolean),c=await(a.isRTL==null?void 0:a.isRTL(n));let d=await a.getElementRects({reference:e,floating:n,strategy:i}),{x:h,y:v}=Yr(d,o,c),g=o,p={},w=0;for(let f=0;f<s.length;f++){const{name:x,fn:C}=s[f],{x:E,y:T,data:F,reset:k}=await C({x:h,y:v,initialPlacement:o,placement:g,strategy:i,middlewareData:p,rects:d,platform:a,elements:{reference:e,floating:n}});h=E??h,v=T??v,p={...p,[x]:{...p[x],...F}},k&&w<=50&&(w++,typeof k=="object"&&(k.placement&&(g=k.placement),k.rects&&(d=k.rects===!0?await a.getElementRects({reference:e,floating:n,strategy:i}):k.rects),{x:h,y:v}=Yr(d,g,c)),f=-1)}return{x:h,y:v,placement:g,strategy:i,middlewareData:p}};async function er(e,n){var t;n===void 0&&(n={});const{x:o,y:i,platform:r,rects:a,elements:s,strategy:c}=e,{boundary:d="clippingAncestors",rootBoundary:h="viewport",elementContext:v="floating",altBoundary:g=!1,padding:p=0}=Mt(n,e),w=As(p),x=s[g?v==="floating"?"reference":"floating":v],C=To(await r.getClippingRect({element:(t=await(r.isElement==null?void 0:r.isElement(x)))==null||t?x:x.contextElement||await(r.getDocumentElement==null?void 0:r.getDocumentElement(s.floating)),boundary:d,rootBoundary:h,strategy:c})),E=v==="floating"?{x:o,y:i,width:a.floating.width,height:a.floating.height}:a.reference,T=await(r.getOffsetParent==null?void 0:r.getOffsetParent(s.floating)),F=await(r.isElement==null?void 0:r.isElement(T))?await(r.getScale==null?void 0:r.getScale(T))||{x:1,y:1}:{x:1,y:1},k=To(r.convertOffsetParentRelativeRectToViewportRelativeRect?await r.convertOffsetParentRelativeRectToViewportRelativeRect({elements:s,rect:E,offsetParent:T,strategy:c}):E);return{top:(C.top-k.top+w.top)/F.y,bottom:(k.bottom-C.bottom+w.bottom)/F.y,left:(C.left-k.left+w.left)/F.x,right:(k.right-C.right+w.right)/F.x}}const Nd=e=>({name:"arrow",options:e,async fn(n){const{x:t,y:o,placement:i,rects:r,platform:a,elements:s,middlewareData:c}=n,{element:d,padding:h=0}=Mt(e,n)||{};if(d==null)return{};const v=As(h),g={x:t,y:o},p=Qi(i),w=Ji(p),f=await a.getDimensions(d),x=p==="y",C=x?"top":"left",E=x?"bottom":"right",T=x?"clientHeight":"clientWidth",F=r.reference[w]+r.reference[p]-g[p]-r.floating[w],k=g[p]-r.reference[p],q=await(a.getOffsetParent==null?void 0:a.getOffsetParent(d));let Q=q?q[T]:0;(!Q||!await(a.isElement==null?void 0:a.isElement(q)))&&(Q=s.floating[T]||r.floating[w]);const ce=F/2-k/2,H=Q/2-f[w]/2-1,L=at(v[C],H),V=at(v[E],H),I=L,R=Q-f[w]-V,M=Q/2-f[w]/2+ce,U=Yl(I,M,R),Y=!c.arrow&&hn(i)!=null&&M!==U&&r.reference[w]/2-(M<I?L:V)-f[w]/2<0,K=Y?M<I?M-I:M-R:0;return{[p]:g[p]+K,data:{[p]:U,centerOffset:M-U-K,...Y&&{alignmentOffset:K}},reset:Y}}}),$d=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(n){var t,o;const{placement:i,middlewareData:r,rects:a,initialPlacement:s,platform:c,elements:d}=n,{mainAxis:h=!0,crossAxis:v=!0,fallbackPlacements:g,fallbackStrategy:p="bestFit",fallbackAxisSideDirection:w="none",flipAlignment:f=!0,...x}=Mt(e,n);if((t=r.arrow)!=null&&t.alignmentOffset)return{};const C=pt(i),E=zt(s),T=pt(s)===s,F=await(c.isRTL==null?void 0:c.isRTL(d.floating)),k=g||(T||!f?[Io(s)]:kd(s)),q=w!=="none";!g&&q&&k.push(...Ad(s,f,w,F));const Q=[s,...k],ce=await er(n,x),H=[];let L=((o=r.flip)==null?void 0:o.overflows)||[];if(h&&H.push(ce[C]),v){const M=Pd(i,a,F);H.push(ce[M[0]],ce[M[1]])}if(L=[...L,{placement:i,overflows:H}],!H.every(M=>M<=0)){var V,I;const M=(((V=r.flip)==null?void 0:V.index)||0)+1,U=Q[M];if(U)return{data:{index:M,overflows:L},reset:{placement:U}};let Y=(I=L.filter(K=>K.overflows[0]<=0).sort((K,le)=>K.overflows[1]-le.overflows[1])[0])==null?void 0:I.placement;if(!Y)switch(p){case"bestFit":{var R;const K=(R=L.filter(le=>{if(q){const ae=zt(le.placement);return ae===E||ae==="y"}return!0}).map(le=>[le.placement,le.overflows.filter(ae=>ae>0).reduce((ae,ue)=>ae+ue,0)]).sort((le,ae)=>le[1]-ae[1])[0])==null?void 0:R[0];K&&(Y=K);break}case"initialPlacement":Y=s;break}if(i!==Y)return{reset:{placement:Y}}}return{}}}};async function Hd(e,n){const{placement:t,platform:o,elements:i}=e,r=await(o.isRTL==null?void 0:o.isRTL(i.floating)),a=pt(t),s=hn(t),c=zt(t)==="y",d=["left","top"].includes(a)?-1:1,h=r&&c?-1:1,v=Mt(n,e);let{mainAxis:g,crossAxis:p,alignmentAxis:w}=typeof v=="number"?{mainAxis:v,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...v};return s&&typeof w=="number"&&(p=s==="end"?w*-1:w),c?{x:p*h,y:g*d}:{x:g*d,y:p*h}}const Dd=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(n){var t,o;const{x:i,y:r,placement:a,middlewareData:s}=n,c=await Hd(n,e);return a===((t=s.offset)==null?void 0:t.placement)&&(o=s.arrow)!=null&&o.alignmentOffset?{}:{x:i+c.x,y:r+c.y,data:{...c,placement:a}}}}},jd=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(n){const{x:t,y:o,placement:i}=n,{mainAxis:r=!0,crossAxis:a=!1,limiter:s={fn:x=>{let{x:C,y:E}=x;return{x:C,y:E}}},...c}=Mt(e,n),d={x:t,y:o},h=await er(n,c),v=zt(pt(i)),g=Zi(v);let p=d[g],w=d[v];if(r){const x=g==="y"?"top":"left",C=g==="y"?"bottom":"right",E=p+h[x],T=p-h[C];p=Yl(E,p,T)}if(a){const x=v==="y"?"top":"left",C=v==="y"?"bottom":"right",E=w+h[x],T=w-h[C];w=Yl(E,w,T)}const f=s.fn({...n,[g]:p,[v]:w});return{...f,data:{x:f.x-t,y:f.y-o}}}}},Wd=function(e){return e===void 0&&(e={}),{options:e,fn(n){const{x:t,y:o,placement:i,rects:r,middlewareData:a}=n,{offset:s=0,mainAxis:c=!0,crossAxis:d=!0}=Mt(e,n),h={x:t,y:o},v=zt(i),g=Zi(v);let p=h[g],w=h[v];const f=Mt(s,n),x=typeof f=="number"?{mainAxis:f,crossAxis:0}:{mainAxis:0,crossAxis:0,...f};if(c){const T=g==="y"?"height":"width",F=r.reference[g]-r.floating[T]+x.mainAxis,k=r.reference[g]+r.reference[T]-x.mainAxis;p<F?p=F:p>k&&(p=k)}if(d){var C,E;const T=g==="y"?"width":"height",F=["top","left"].includes(pt(i)),k=r.reference[v]-r.floating[T]+(F&&((C=a.offset)==null?void 0:C[v])||0)+(F?0:x.crossAxis),q=r.reference[v]+r.reference[T]+(F?0:((E=a.offset)==null?void 0:E[v])||0)-(F?x.crossAxis:0);w<k?w=k:w>q&&(w=q)}return{[g]:p,[v]:w}}}},Gd=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(n){const{placement:t,rects:o,platform:i,elements:r}=n,{apply:a=()=>{},...s}=Mt(e,n),c=await er(n,s),d=pt(t),h=hn(t),v=zt(t)==="y",{width:g,height:p}=o.floating;let w,f;d==="top"||d==="bottom"?(w=d,f=h===(await(i.isRTL==null?void 0:i.isRTL(r.floating))?"start":"end")?"left":"right"):(f=d,w=h==="end"?"top":"bottom");const x=p-c.top-c.bottom,C=g-c.left-c.right,E=at(p-c[w],x),T=at(g-c[f],C),F=!n.middlewareData.shift;let k=E,q=T;if(v?q=h||F?at(T,C):C:k=h||F?at(E,x):x,F&&!h){const ce=$e(c.left,0),H=$e(c.right,0),L=$e(c.top,0),V=$e(c.bottom,0);v?q=g-2*(ce!==0||H!==0?ce+H:$e(c.left,c.right)):k=p-2*(L!==0||V!==0?L+V:$e(c.top,c.bottom))}await a({...n,availableWidth:q,availableHeight:k});const Q=await i.getDimensions(r.floating);return g!==Q.width||p!==Q.height?{reset:{rects:!0}}:{}}}};function Uo(){return typeof window<"u"}function gn(e){return Ls(e)?(e.nodeName||"").toLowerCase():"#document"}function je(e){var n;return(e==null||(n=e.ownerDocument)==null?void 0:n.defaultView)||window}function yt(e){var n;return(n=(Ls(e)?e.ownerDocument:e.document)||window.document)==null?void 0:n.documentElement}function Ls(e){return Uo()?e instanceof Node||e instanceof je(e).Node:!1}function ot(e){return Uo()?e instanceof Element||e instanceof je(e).Element:!1}function st(e){return Uo()?e instanceof HTMLElement||e instanceof je(e).HTMLElement:!1}function Xr(e){return!Uo()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof je(e).ShadowRoot}function Qn(e){const{overflow:n,overflowX:t,overflowY:o,display:i}=lt(e);return/auto|scroll|overlay|hidden|clip/.test(n+o+t)&&!["inline","contents"].includes(i)}function Ud(e){return["table","td","th"].includes(gn(e))}function Ko(e){return[":popover-open",":modal"].some(n=>{try{return e.matches(n)}catch{return!1}})}function tr(e){const n=nr(),t=ot(e)?lt(e):e;return t.transform!=="none"||t.perspective!=="none"||(t.containerType?t.containerType!=="normal":!1)||!n&&(t.backdropFilter?t.backdropFilter!=="none":!1)||!n&&(t.filter?t.filter!=="none":!1)||["transform","perspective","filter"].some(o=>(t.willChange||"").includes(o))||["paint","layout","strict","content"].some(o=>(t.contain||"").includes(o))}function Kd(e){let n=Ot(e);for(;st(n)&&!an(n);){if(tr(n))return n;if(Ko(n))return null;n=Ot(n)}return null}function nr(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function an(e){return["html","body","#document"].includes(gn(e))}function lt(e){return je(e).getComputedStyle(e)}function qo(e){return ot(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function Ot(e){if(gn(e)==="html")return e;const n=e.assignedSlot||e.parentNode||Xr(e)&&e.host||yt(e);return Xr(n)?n.host:n}function _s(e){const n=Ot(e);return an(n)?e.ownerDocument?e.ownerDocument.body:e.body:st(n)&&Qn(n)?n:_s(n)}function Xn(e,n,t){var o;n===void 0&&(n=[]),t===void 0&&(t=!0);const i=_s(e),r=i===((o=e.ownerDocument)==null?void 0:o.body),a=je(i);if(r){const s=qd(a);return n.concat(a,a.visualViewport||[],Qn(i)?i:[],s&&t?Xn(s):[])}return n.concat(i,Xn(i,[],t))}function qd(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function Ns(e){const n=lt(e);let t=parseFloat(n.width)||0,o=parseFloat(n.height)||0;const i=st(e),r=i?e.offsetWidth:t,a=i?e.offsetHeight:o,s=So(t)!==r||So(o)!==a;return s&&(t=r,o=a),{width:t,height:o,$:s}}function or(e){return ot(e)?e:e.contextElement}function rn(e){const n=or(e);if(!st(n))return Tt(1);const t=n.getBoundingClientRect(),{width:o,height:i,$:r}=Ns(n);let a=(r?So(t.width):t.width)/o,s=(r?So(t.height):t.height)/i;return(!a||!Number.isFinite(a))&&(a=1),(!s||!Number.isFinite(s))&&(s=1),{x:a,y:s}}const Yd=Tt(0);function $s(e){const n=je(e);return!nr()||!n.visualViewport?Yd:{x:n.visualViewport.offsetLeft,y:n.visualViewport.offsetTop}}function Xd(e,n,t){return n===void 0&&(n=!1),!t||n&&t!==je(e)?!1:n}function Kt(e,n,t,o){n===void 0&&(n=!1),t===void 0&&(t=!1);const i=e.getBoundingClientRect(),r=or(e);let a=Tt(1);n&&(o?ot(o)&&(a=rn(o)):a=rn(e));const s=Xd(r,t,o)?$s(r):Tt(0);let c=(i.left+s.x)/a.x,d=(i.top+s.y)/a.y,h=i.width/a.x,v=i.height/a.y;if(r){const g=je(r),p=o&&ot(o)?je(o):o;let w=g,f=w.frameElement;for(;f&&o&&p!==w;){const x=rn(f),C=f.getBoundingClientRect(),E=lt(f),T=C.left+(f.clientLeft+parseFloat(E.paddingLeft))*x.x,F=C.top+(f.clientTop+parseFloat(E.paddingTop))*x.y;c*=x.x,d*=x.y,h*=x.x,v*=x.y,c+=T,d+=F,w=je(f),f=w.frameElement}}return To({width:h,height:v,x:c,y:d})}function Zd(e){let{elements:n,rect:t,offsetParent:o,strategy:i}=e;const r=i==="fixed",a=yt(o),s=n?Ko(n.floating):!1;if(o===a||s&&r)return t;let c={scrollLeft:0,scrollTop:0},d=Tt(1);const h=Tt(0),v=st(o);if((v||!v&&!r)&&((gn(o)!=="body"||Qn(a))&&(c=qo(o)),st(o))){const g=Kt(o);d=rn(o),h.x=g.x+o.clientLeft,h.y=g.y+o.clientTop}return{width:t.width*d.x,height:t.height*d.y,x:t.x*d.x-c.scrollLeft*d.x+h.x,y:t.y*d.y-c.scrollTop*d.y+h.y}}function Jd(e){return Array.from(e.getClientRects())}function Hs(e){return Kt(yt(e)).left+qo(e).scrollLeft}function Qd(e){const n=yt(e),t=qo(e),o=e.ownerDocument.body,i=$e(n.scrollWidth,n.clientWidth,o.scrollWidth,o.clientWidth),r=$e(n.scrollHeight,n.clientHeight,o.scrollHeight,o.clientHeight);let a=-t.scrollLeft+Hs(e);const s=-t.scrollTop;return lt(o).direction==="rtl"&&(a+=$e(n.clientWidth,o.clientWidth)-i),{width:i,height:r,x:a,y:s}}function e5(e,n){const t=je(e),o=yt(e),i=t.visualViewport;let r=o.clientWidth,a=o.clientHeight,s=0,c=0;if(i){r=i.width,a=i.height;const d=nr();(!d||d&&n==="fixed")&&(s=i.offsetLeft,c=i.offsetTop)}return{width:r,height:a,x:s,y:c}}function t5(e,n){const t=Kt(e,!0,n==="fixed"),o=t.top+e.clientTop,i=t.left+e.clientLeft,r=st(e)?rn(e):Tt(1),a=e.clientWidth*r.x,s=e.clientHeight*r.y,c=i*r.x,d=o*r.y;return{width:a,height:s,x:c,y:d}}function Zr(e,n,t){let o;if(n==="viewport")o=e5(e,t);else if(n==="document")o=Qd(yt(e));else if(ot(n))o=t5(n,t);else{const i=$s(e);o={...n,x:n.x-i.x,y:n.y-i.y}}return To(o)}function Ds(e,n){const t=Ot(e);return t===n||!ot(t)||an(t)?!1:lt(t).position==="fixed"||Ds(t,n)}function n5(e,n){const t=n.get(e);if(t)return t;let o=Xn(e,[],!1).filter(s=>ot(s)&&gn(s)!=="body"),i=null;const r=lt(e).position==="fixed";let a=r?Ot(e):e;for(;ot(a)&&!an(a);){const s=lt(a),c=tr(a);!c&&s.position==="fixed"&&(i=null),(r?!c&&!i:!c&&s.position==="static"&&!!i&&["absolute","fixed"].includes(i.position)||Qn(a)&&!c&&Ds(e,a))?o=o.filter(h=>h!==a):i=s,a=Ot(a)}return n.set(e,o),o}function o5(e){let{element:n,boundary:t,rootBoundary:o,strategy:i}=e;const a=[...t==="clippingAncestors"?Ko(n)?[]:n5(n,this._c):[].concat(t),o],s=a[0],c=a.reduce((d,h)=>{const v=Zr(n,h,i);return d.top=$e(v.top,d.top),d.right=at(v.right,d.right),d.bottom=at(v.bottom,d.bottom),d.left=$e(v.left,d.left),d},Zr(n,s,i));return{width:c.right-c.left,height:c.bottom-c.top,x:c.left,y:c.top}}function l5(e){const{width:n,height:t}=Ns(e);return{width:n,height:t}}function i5(e,n,t){const o=st(n),i=yt(n),r=t==="fixed",a=Kt(e,!0,r,n);let s={scrollLeft:0,scrollTop:0};const c=Tt(0);if(o||!o&&!r)if((gn(n)!=="body"||Qn(i))&&(s=qo(n)),o){const v=Kt(n,!0,r,n);c.x=v.x+n.clientLeft,c.y=v.y+n.clientTop}else i&&(c.x=Hs(i));const d=a.left+s.scrollLeft-c.x,h=a.top+s.scrollTop-c.y;return{x:d,y:h,width:a.width,height:a.height}}function Al(e){return lt(e).position==="static"}function Jr(e,n){return!st(e)||lt(e).position==="fixed"?null:n?n(e):e.offsetParent}function js(e,n){const t=je(e);if(Ko(e))return t;if(!st(e)){let i=Ot(e);for(;i&&!an(i);){if(ot(i)&&!Al(i))return i;i=Ot(i)}return t}let o=Jr(e,n);for(;o&&Ud(o)&&Al(o);)o=Jr(o,n);return o&&an(o)&&Al(o)&&!tr(o)?t:o||Kd(e)||t}const r5=async function(e){const n=this.getOffsetParent||js,t=this.getDimensions,o=await t(e.floating);return{reference:i5(e.reference,await n(e.floating),e.strategy),floating:{x:0,y:0,width:o.width,height:o.height}}};function a5(e){return lt(e).direction==="rtl"}const s5={convertOffsetParentRelativeRectToViewportRelativeRect:Zd,getDocumentElement:yt,getClippingRect:o5,getOffsetParent:js,getElementRects:r5,getClientRects:Jd,getDimensions:l5,getScale:rn,isElement:ot,isRTL:a5};function c5(e,n){let t=null,o;const i=yt(e);function r(){var s;clearTimeout(o),(s=t)==null||s.disconnect(),t=null}function a(s,c){s===void 0&&(s=!1),c===void 0&&(c=1),r();const{left:d,top:h,width:v,height:g}=e.getBoundingClientRect();if(s||n(),!v||!g)return;const p=lo(h),w=lo(i.clientWidth-(d+v)),f=lo(i.clientHeight-(h+g)),x=lo(d),E={rootMargin:-p+"px "+-w+"px "+-f+"px "+-x+"px",threshold:$e(0,at(1,c))||1};let T=!0;function F(k){const q=k[0].intersectionRatio;if(q!==c){if(!T)return a();q?a(!1,q):o=setTimeout(()=>{a(!1,1e-7)},1e3)}T=!1}try{t=new IntersectionObserver(F,{...E,root:i.ownerDocument})}catch{t=new IntersectionObserver(F,E)}t.observe(e)}return a(!0),r}function d5(e,n,t,o){o===void 0&&(o={});const{ancestorScroll:i=!0,ancestorResize:r=!0,elementResize:a=typeof ResizeObserver=="function",layoutShift:s=typeof IntersectionObserver=="function",animationFrame:c=!1}=o,d=or(e),h=i||r?[...d?Xn(d):[],...Xn(n)]:[];h.forEach(C=>{i&&C.addEventListener("scroll",t,{passive:!0}),r&&C.addEventListener("resize",t)});const v=d&&s?c5(d,t):null;let g=-1,p=null;a&&(p=new ResizeObserver(C=>{let[E]=C;E&&E.target===d&&p&&(p.unobserve(n),cancelAnimationFrame(g),g=requestAnimationFrame(()=>{var T;(T=p)==null||T.observe(n)})),t()}),d&&!c&&p.observe(d),p.observe(n));let w,f=c?Kt(e):null;c&&x();function x(){const C=Kt(e);f&&(C.x!==f.x||C.y!==f.y||C.width!==f.width||C.height!==f.height)&&t(),f=C,w=requestAnimationFrame(x)}return t(),()=>{var C;h.forEach(E=>{i&&E.removeEventListener("scroll",t),r&&E.removeEventListener("resize",t)}),v==null||v(),(C=p)==null||C.disconnect(),p=null,c&&cancelAnimationFrame(w)}}const u5=Dd,h5=jd,g5=$d,v5=Gd,m5=Nd,p5=Wd,f5=(e,n,t)=>{const o=new Map,i={platform:s5,...t},r={...i.platform,_c:o};return _d(e,n,{...i,platform:r})};function Qr(e=0,n=0,t=0,o=0){if(typeof DOMRect=="function")return new DOMRect(e,n,t,o);const i={x:e,y:n,width:t,height:o,top:n,right:e+t,bottom:n+o,left:e};return{...i,toJSON:()=>i}}function w5(e){if(!e)return Qr();const{x:n,y:t,width:o,height:i}=e;return Qr(n,t,o,i)}function E5(e,n){return{contextElement:nt(e)?e:void 0,getBoundingClientRect:()=>{const t=e,o=n==null?void 0:n(t);return o||!t?w5(o):t.getBoundingClientRect()}}}var Bn=e=>({variable:e,reference:`var(${e})`}),vt={arrowSize:Bn("--arrow-size"),arrowSizeHalf:Bn("--arrow-size-half"),arrowBg:Bn("--arrow-background"),transformOrigin:Bn("--transform-origin"),arrowOffset:Bn("--arrow-offset")},y5=e=>({top:"bottom center","top-start":e?`${e.x}px bottom`:"left bottom","top-end":e?`${e.x}px bottom`:"right bottom",bottom:"top center","bottom-start":e?`${e.x}px top`:"top left","bottom-end":e?`${e.x}px top`:"top right",left:"right center","left-start":e?`right ${e.y}px`:"right top","left-end":e?`right ${e.y}px`:"right bottom",right:"left center","right-start":e?`left ${e.y}px`:"left top","right-end":e?`left ${e.y}px`:"left bottom"}),x5={name:"transformOrigin",fn({placement:e,elements:n,middlewareData:t}){const{arrow:o}=t,i=y5(o)[e],{floating:r}=n;return r.style.setProperty(vt.transformOrigin.variable,i),{data:{transformOrigin:i}}}},C5={name:"rects",fn({rects:e}){return{data:e}}},b5=e=>{if(e)return{name:"shiftArrow",fn({placement:n,middlewareData:t}){if(!t.arrow)return{};const{x:o,y:i}=t.arrow,r=n.split("-")[0];return Object.assign(e.style,{left:o!=null?`${o}px`:"",top:i!=null?`${i}px`:"",[r]:`calc(100% + ${vt.arrowOffset.reference})`}),{}}}};function R5(e){const[n,t]=e.split("-");return{side:n,align:t,hasAlign:t!=null}}function S5(e){return e.split("-")[0]}var I5={strategy:"absolute",placement:"bottom",listeners:!0,gutter:8,flip:!0,slide:!0,overlap:!1,sameWidth:!1,fitViewport:!1,overflowPadding:8,arrowPadding:4};function ea(e,n){const t=e.devicePixelRatio||1;return Math.round(n*t)/t}function Ws(e){return vo(e.boundary)}function T5(e,n){if(e)return m5({element:e,padding:n.arrowPadding})}function M5(e,n){if(!Jc(n.offset??n.gutter))return u5(({placement:t})=>{var d,h;const o=((e==null?void 0:e.clientHeight)||0)/2,i=((d=n.offset)==null?void 0:d.mainAxis)??n.gutter,r=typeof i=="number"?i+o:i??o,{hasAlign:a}=R5(t),s=a?void 0:n.shift,c=((h=n.offset)==null?void 0:h.crossAxis)??s;return ze({crossAxis:c,mainAxis:r,alignmentAxis:n.shift})})}function z5(e){if(e.flip)return g5({boundary:Ws(e),padding:e.overflowPadding,fallbackPlacements:e.flip===!0?void 0:e.flip})}function O5(e){if(!(!e.slide&&!e.overlap))return h5({boundary:Ws(e),mainAxis:e.slide,crossAxis:e.overlap,padding:e.overflowPadding,limiter:p5()})}function V5(e){return v5({padding:e.overflowPadding,apply({elements:n,rects:t,availableHeight:o,availableWidth:i}){const r=n.floating,a=Math.round(t.reference.width);i=Math.floor(i),o=Math.floor(o),r.style.setProperty("--reference-width",`${a}px`),r.style.setProperty("--available-width",`${i}px`),r.style.setProperty("--available-height",`${o}px`)}})}function F5(e){return e?e===!0?{ancestorResize:!0,ancestorScroll:!0,elementResize:!0,layoutShift:!0}:e:{}}function P5(e,n,t={}){const o=E5(e,t.getAnchorRect);if(!n||!o)return;const i=Object.assign({},I5,t),r=n.querySelector("[data-part=arrow]"),a=[M5(r,i),z5(i),O5(i),T5(r,i),b5(r),x5,V5(i),C5],{placement:s,strategy:c,onComplete:d,onPositioned:h}=i,v=async()=>{if(!o||!n)return;const f=await f5(o,n,{placement:s,middleware:a,strategy:c});d==null||d(f),h==null||h({placed:!0});const x=Vt(n),C=ea(x,f.x),E=ea(x,f.y);n.style.setProperty("--x",`${C}px`),n.style.setProperty("--y",`${E}px`);const T=n.firstElementChild;if(T){const F=x.getComputedStyle(T).zIndex;n.style.setProperty("--z-index",F)}},g=async()=>{t.updatePosition?(await t.updatePosition({updatePosition:v}),h==null||h({placed:!0})):await v()},p=F5(i.listeners),w=i.listeners?d5(o,n,g,p):qc;return g(),()=>{w==null||w(),h==null||h({placed:!1})}}function sn(e,n,t={}){const{defer:o,...i}=t,r=o?te:s=>s(),a=[];return a.push(r(()=>{const s=typeof e=="function"?e():e,c=typeof n=="function"?n():n;a.push(P5(s,c,i))})),()=>{a.forEach(s=>s==null?void 0:s())}}var k5={bottom:"rotate(45deg)",left:"rotate(135deg)",top:"rotate(225deg)",right:"rotate(315deg)"};function lr(e={}){const{placement:n,sameWidth:t,fitViewport:o,strategy:i="absolute"}=e;return{arrow:{position:"absolute",width:vt.arrowSize.reference,height:vt.arrowSize.reference,[vt.arrowSizeHalf.variable]:`calc(${vt.arrowSize.reference} / 2)`,[vt.arrowOffset.variable]:`calc(${vt.arrowSizeHalf.reference} * -1)`},arrowTip:{transform:n?k5[n.split("-")[0]]:void 0,background:vt.arrowBg.reference,top:"0",left:"0",width:"100%",height:"100%",position:"absolute",zIndex:"inherit"},floating:{position:i,isolation:"isolate",minWidth:t?void 0:"max-content",width:t?"var(--reference-width)":void 0,maxWidth:o?"var(--available-width)":void 0,maxHeight:o?"var(--available-height)":void 0,top:"0px",left:"0px",transform:n?"translate3d(var(--x), var(--y), 0)":"translate3d(0, -100vh, 0)",zIndex:"var(--z-index)"}}}function B5(e){const n={each(t){var o;for(let i=0;i<((o=e.frames)==null?void 0:o.length);i+=1){const r=e.frames[i];r&&t(r)}},queueBeforeEvent(t,o){const i=new Set;return n.each(r=>{try{i.add(ki(r.document,t,o))}catch{}}),()=>{try{i.forEach(r=>r())}catch{}}},addEventListener(t,o,i){return n.each(r=>{try{r.document.addEventListener(t,o,i)}catch{}}),()=>{try{n.removeEventListener(t,o,i)}catch{}}},removeEventListener(t,o,i){n.each(r=>{try{r.document.removeEventListener(t,o,i)}catch{}})}};return n}var ta="pointerdown.outside",na="focus.outside";function A5(e){for(const n of e)if(nt(n)&&Yn(n))return!0;return!1}var Gs=e=>"clientY"in e;function L5(e,n){if(!Gs(n)||!e)return!1;const t=e.getBoundingClientRect();return t.width===0||t.height===0?!1:t.top<=n.clientY&&n.clientY<=t.top+t.height&&t.left<=n.clientX&&n.clientX<=t.left+t.width}function _5(e){const n=St(e);if(!n||!Gs(e))return!1;const o=n.scrollHeight>n.clientHeight&&e.clientX>n.clientWidth,r=n.scrollWidth>n.clientWidth&&e.clientY>n.clientHeight;return o||r}function N5(e,n){const{exclude:t,onFocusOutside:o,onPointerDownOutside:i,onInteractOutside:r,defer:a}=n;if(!e)return;const s=un(e),c=Vt(e),d=B5(c);function h(x){const C=St(x);return!nt(C)||Rt(e,C)||L5(e,x)||_5(x)?!1:!(t!=null&&t(C))}const v=new Set;function g(x){function C(){var F;const E=a?te:k=>k(),T=((F=x.composedPath)==null?void 0:F.call(x))??[x.target];E(()=>{if(!(!e||!h(x))){if(i||r){const k=kr(i,r);e.addEventListener(ta,k,{once:!0})}Vr(e,ta,{bubbles:!1,cancelable:!0,detail:{originalEvent:x,contextmenu:Pi(x),focusable:A5(T)}})}})}x.pointerType==="touch"?(v.forEach(E=>E()),v.add(ki(s,"pointerup",C)),v.add(d.queueBeforeEvent("pointerup",C))):C()}const p=new Set,w=setTimeout(()=>{p.add(d.addEventListener("pointerdown",g,!0)),p.add(be(s,"pointerdown",g,!0))},0);function f(x){(a?te:E=>E())(()=>{if(!(!e||!h(x))){if(o||r){const E=kr(o,r);e.addEventListener(na,E,{once:!0})}Vr(e,na,{bubbles:!1,cancelable:!0,detail:{originalEvent:x,contextmenu:!1,focusable:Yn(St(x))}})}})}return p.add(be(s,"focusin",f,!0)),p.add(d.addEventListener("focusin",f,!0)),()=>{clearTimeout(w),v.forEach(x=>x()),p.forEach(x=>x())}}function $5(e,n){const{defer:t}=n,o=t?te:r=>r(),i=[];return i.push(o(()=>{const r=typeof e=="function"?e():e;i.push(N5(r,n))})),()=>{i.forEach(r=>r==null?void 0:r())}}function H5(e,n){const t=o=>{o.key==="Escape"&&(o.isComposing||n==null||n(o))};return be(un(e),"keydown",t,{capture:!0})}var Ne={layers:[],branches:[],count(){return this.layers.length},pointerBlockingLayers(){return this.layers.filter(e=>e.pointerBlocking)},topMostPointerBlockingLayer(){return[...this.pointerBlockingLayers()].slice(-1)[0]},hasPointerBlockingLayer(){return this.pointerBlockingLayers().length>0},isBelowPointerBlockingLayer(e){var o;const n=this.indexOf(e),t=this.topMostPointerBlockingLayer()?this.indexOf((o=this.topMostPointerBlockingLayer())==null?void 0:o.node):-1;return n<t},isTopMost(e){const n=this.layers[this.count()-1];return(n==null?void 0:n.node)===e},getNestedLayers(e){return Array.from(this.layers).slice(this.indexOf(e)+1)},isInNestedLayer(e,n){return this.getNestedLayers(e).some(t=>Rt(t.node,n))},isInBranch(e){return Array.from(this.branches).some(n=>Rt(n,e))},add(e){const n=this.layers.push(e);e.node.style.setProperty("--layer-index",`${n}`)},addBranch(e){this.branches.push(e)},remove(e){const n=this.indexOf(e);n<0||(n<this.count()-1&&this.getNestedLayers(e).forEach(o=>o.dismiss()),this.layers.splice(n,1),e.style.removeProperty("--layer-index"))},removeBranch(e){const n=this.branches.indexOf(e);n>=0&&this.branches.splice(n,1)},indexOf(e){return this.layers.findIndex(n=>n.node===e)},dismiss(e){var n;(n=this.layers[this.indexOf(e)])==null||n.dismiss()},clear(){this.remove(this.layers[0].node)}},oa;function la(){Ne.layers.forEach(({node:e})=>{e.style.pointerEvents=Ne.isBelowPointerBlockingLayer(e)?"none":"auto"})}function D5(e){e.style.pointerEvents=""}function j5(e,n){const t=un(e),o=[];if(Ne.hasPointerBlockingLayer()&&!t.body.hasAttribute("data-inert")&&(oa=document.body.style.pointerEvents,queueMicrotask(()=>{t.body.style.pointerEvents="none",t.body.setAttribute("data-inert","")})),n){const i=Ac(n,r=>{o.push(Pc(r,{pointerEvents:"auto"}))});o.push(i)}return()=>{Ne.hasPointerBlockingLayer()||(queueMicrotask(()=>{t.body.style.pointerEvents=oa,t.body.removeAttribute("data-inert"),t.body.style.length===0&&t.body.removeAttribute("style")}),o.forEach(i=>i()))}}function W5(e,n){if(!e){Ho("[@zag-js/dismissable] node is `null` or `undefined`");return}const{onDismiss:t,pointerBlocking:o,exclude:i,debug:r}=n,a={dismiss:t,node:e,pointerBlocking:o};Ne.add(a),la();function s(g){var w,f;const p=St(g.detail.originalEvent);Ne.isBelowPointerBlockingLayer(e)||Ne.isInBranch(p)||((w=n.onPointerDownOutside)==null||w.call(n,g),(f=n.onInteractOutside)==null||f.call(n,g),!g.defaultPrevented&&(r&&console.log("onPointerDownOutside:",g.detail.originalEvent),t==null||t()))}function c(g){var w,f;const p=St(g.detail.originalEvent);Ne.isInBranch(p)||((w=n.onFocusOutside)==null||w.call(n,g),(f=n.onInteractOutside)==null||f.call(n,g),!g.defaultPrevented&&(r&&console.log("onFocusOutside:",g.detail.originalEvent),t==null||t()))}function d(g){var p;Ne.isTopMost(e)&&((p=n.onEscapeKeyDown)==null||p.call(n,g),!g.defaultPrevented&&t&&(g.preventDefault(),t()))}function h(g){var x;if(!e)return!1;const p=typeof i=="function"?i():i,w=Array.isArray(p)?p:[p],f=(x=n.persistentElements)==null?void 0:x.map(C=>C()).filter(nt);return f&&w.push(...f),w.some(C=>Rt(C,g))||Ne.isInNestedLayer(e,g)}const v=[o?j5(e,n.persistentElements):void 0,H5(e,d),$5(e,{exclude:h,onFocusOutside:c,onPointerDownOutside:s,defer:n.defer})];return()=>{Ne.remove(e),la(),D5(e),v.forEach(g=>g==null?void 0:g())}}function Yo(e,n){const{defer:t}=n,o=t?te:r=>r(),i=[];return i.push(o(()=>{const r=ns(e)?e():e;i.push(W5(r,n))})),()=>{i.forEach(r=>r==null?void 0:r())}}function G5(e,n={}){const{defer:t}=n,o=t?te:r=>r(),i=[];return i.push(o(()=>{const r=ns(e)?e():e;if(!r){Ho("[@zag-js/dismissable] branch node is `null` or `undefined`");return}Ne.addBranch(r),i.push(()=>{Ne.removeBranch(r)})})),()=>{i.forEach(r=>r==null?void 0:r())}}const[U5,Ft]=re({name:"ComboboxContext",hookName:"useComboboxContext",providerName:"<ComboboxProvider />"}),Us=S.forwardRef((e,n)=>{const t=Ft(),o=Et(),i=A(t.getContentProps(),o.getPresenceProps(n),e);return o.unmounted?null:m.jsx(W.div,{...i})});Us.displayName="ComboboxContent";const Ks=S.forwardRef((e,n)=>{const t=Ft(),o=A(t.getControlProps(),e);return m.jsx(W.div,{...o,ref:n})});Ks.displayName="ComboboxControl";const qs=S.forwardRef((e,n)=>{const t=Ft(),o=A(t.getInputProps(),e),i=Yt();return m.jsx(W.input,{"aria-describedby":i==null?void 0:i.ariaDescribedby,...o,ref:n})});qs.displayName="ComboboxInput";const[K5,UE]=re({name:"ComboboxItemContext",hookName:"useComboboxItemContext",providerName:"<ComboboxItemProvider />"}),[q5,Y5]=re({name:"ComboboxItemPropsContext",hookName:"useComboboxItemPropsContext",providerName:"<ComboboxItemPropsProvider />"}),Ys=S.forwardRef((e,n)=>{const[t,o]=pe()(e,["item","persistFocus"]),i=Ft(),r=A(i.getItemProps(t),o),a=i.getItemState(t);return m.jsx(q5,{value:t,children:m.jsx(K5,{value:a,children:m.jsx(W.div,{...r,ref:n})})})});Ys.displayName="ComboboxItem";const[X5,KE]=re({name:"ComboboxItemGroupPropsContext",hookName:"useComboboxItemGroupPropsContext",providerName:"<ComboboxItemGroupPropsProvider />"}),Xs=S.forwardRef((e,n)=>{const t=S.useId(),[o,i]=pe()(e,["id"]),r={id:t,...o},a=Ft(),s=A(a.getItemGroupProps(r),i);return m.jsx(X5,{value:r,children:m.jsx(W.div,{...s,ref:n})})});Xs.displayName="ComboboxItemGroup";const Zs=S.forwardRef((e,n)=>{const t=Ft(),o=Y5(),i=A(t.getItemTextProps(o),e);return m.jsx(W.span,{...i,ref:n})});Zs.displayName="ComboboxItemText";const Js=S.forwardRef((e,n)=>{const t=Ft(),o=Et(),i=A(t.getPositionerProps(),e);return o.unmounted?null:m.jsx(W.div,{...i,ref:n})});Js.displayName="ComboboxPositioner";var Z5=Object.defineProperty,J5=(e,n,t)=>n in e?Z5(e,n,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[n]=t,Q5=(e,n,t)=>J5(e,n+"",t),fo={itemToValue(e){return typeof e=="string"?e:Il(e)&&Tl(e,"value")?e.value:""},itemToString(e){return typeof e=="string"?e:Il(e)&&Tl(e,"label")?e.label:fo.itemToValue(e)},isItemDisabled(e){return Il(e)&&Tl(e,"disabled")?!!e.disabled:!1}},Xo=class{constructor(e){this.options=e,Q5(this,"items"),this.items=[...e.items]}isEqual(e){return Ce(this.items,e.items)}setItems(e){this.items=Array.from(e)}getValues(e=this.items){return Array.from(e).map(n=>this.getItemValue(n)).filter(Boolean)}find(e){if(e==null)return null;const n=this.items.findIndex(t=>this.getItemValue(t)===e);return n!=null?this.items[n]:null}findMany(e){return Array.from(e).map(n=>this.find(n)).filter(Boolean)}at(e){return this.items[e]??null}sortFn(e,n){const t=this.indexOf(e),o=this.indexOf(n);return(t??0)-(o??0)}sort(e){return[...e].sort(this.sortFn.bind(this))}getItemValue(e){var n,t;return e==null?null:((t=(n=this.options).itemToValue)==null?void 0:t.call(n,e))??fo.itemToValue(e)}getItemDisabled(e){var n,t;return e==null?!1:((t=(n=this.options).isItemDisabled)==null?void 0:t.call(n,e))??fo.isItemDisabled(e)}stringifyItem(e){var n,t;return e==null?null:((t=(n=this.options).itemToString)==null?void 0:t.call(n,e))??fo.itemToString(e)}stringify(e){return e==null?null:this.stringifyItem(this.find(e))}stringifyItems(e,n=", "){return Array.from(e).map(t=>this.stringifyItem(t)).filter(Boolean).join(n)}stringifyMany(e,n){return this.stringifyItems(this.findMany(e),n)}has(e){return this.indexOf(e)!==-1}hasItem(e){return e==null?!1:this.has(this.getItemValue(e))}get size(){return this.items.length}get firstValue(){let e=0;for(;this.getItemDisabled(this.at(e));)e++;return this.getItemValue(this.at(e))}get lastValue(){let e=this.size-1;for(;this.getItemDisabled(this.at(e));)e--;return this.getItemValue(this.at(e))}getNextValue(e){let n=this.indexOf(e);if(n===-1)return null;for(n++;n<=this.size&&this.getItemDisabled(this.at(n));)n++;return this.getItemValue(this.at(n))}getPreviousValue(e){let n=this.indexOf(e);if(n===-1)return null;for(n--;n>=0&&this.getItemDisabled(this.at(n));)n--;return this.getItemValue(this.at(n))}indexOf(e){return e==null?-1:this.items.findIndex(n=>this.getItemValue(n)===e)}getByText(e,n){let t=n!=null?t4(this.items,this.indexOf(n)):this.items;return e.length===1&&(t=t.filter(i=>this.getItemValue(i)!==n)),t.find(i=>e4(this.stringifyItem(i),e))}search(e,n){const{state:t,currentValue:o,timeout:i=350}=n,r=t.keysSoFar+e,s=r.length>1&&Array.from(r).every(g=>g===r[0])?r[0]:r,c=this.getByText(s,o),d=this.getItemValue(c);function h(){clearTimeout(t.timer),t.timer=-1}function v(g){t.keysSoFar=g,h(),g!==""&&(t.timer=+setTimeout(()=>{v(""),h()},i))}return v(r),d}*[Symbol.iterator](){yield*this.items}insertBefore(e,n){const t=this.indexOf(e);t!==-1&&this.items.splice(t,0,n)}insertAfter(e,n){const t=this.indexOf(e);t!==-1&&this.items.splice(t+1,0,n)}reorder(e,n){if(e===-1||n===-1||e===n)return;const[t]=this.items.splice(e,1);this.items.splice(n,0,t)}toJSON(){return{size:this.size,first:this.firstValue,last:this.lastValue}}},e4=(e,n)=>!!(e!=null&&e.toLowerCase().startsWith(n.toLowerCase())),t4=(e,n)=>e.map((t,o)=>e[(Math.max(n,0)+o)%e.length]),An=new WeakMap,Ge=[];function n4(e,n={}){const{rootEl:t}=n,o=e.filter(Boolean);if(o.length===0)return;const i=o[0].ownerDocument||document,r=i.defaultView??window,a=new Set(o),s=new Set,c=t??i.body;let d=p=>{for(let C of p.querySelectorAll("[data-live-announcer], [data-zag-top-layer]"))a.add(C);let w=C=>{if(a.has(C)||s.has(C.parentElement)&&C.parentElement.getAttribute("role")!=="row")return NodeFilter.FILTER_REJECT;for(let E of a)if(C.contains(E))return NodeFilter.FILTER_SKIP;return NodeFilter.FILTER_ACCEPT},f=i.createTreeWalker(p,NodeFilter.SHOW_ELEMENT,{acceptNode:w}),x=w(p);if(x===NodeFilter.FILTER_ACCEPT&&h(p),x!==NodeFilter.FILTER_REJECT){let C=f.nextNode();for(;C!=null;)h(C),C=f.nextNode()}},h=p=>{let w=An.get(p)??0;p.getAttribute("aria-hidden")==="true"&&w===0||(w===0&&p.setAttribute("aria-hidden","true"),s.add(p),An.set(p,w+1))};Ge.length&&Ge[Ge.length-1].disconnect(),d(c);const v=new r.MutationObserver(p=>{for(let w of p)if(!(w.type!=="childList"||w.addedNodes.length===0)&&![...a,...s].some(f=>f.contains(w.target))){for(let f of w.removedNodes)f instanceof r.Element&&(a.delete(f),s.delete(f));for(let f of w.addedNodes)(f instanceof r.HTMLElement||f instanceof r.SVGElement)&&(f.dataset.liveAnnouncer==="true"||f.dataset.zagTopLayer==="true")?a.add(f):f instanceof r.Element&&d(f)}});v.observe(c,{childList:!0,subtree:!0});let g={observe(){v.observe(c,{childList:!0,subtree:!0})},disconnect(){v.disconnect()}};return Ge.push(g),()=>{v.disconnect();for(let p of s){let w=An.get(p);w===1?(p.removeAttribute("aria-hidden"),An.delete(p)):An.set(p,w-1)}g===Ge[Ge.length-1]?(Ge.pop(),Ge.length&&Ge[Ge.length-1].observe()):Ge.splice(Ge.indexOf(g),1)}}function Qs(e,n={}){const{defer:t}=n,o=t?te:r=>r(),i=[];return i.push(o(()=>{const r=typeof e=="function"?e():e;i.push(n4(r,n))})),()=>{i.forEach(r=>r==null?void 0:r())}}var o4=Me("combobox").parts("root","clearTrigger","content","control","input","item","itemGroup","itemGroupLabel","itemIndicator","itemText","label","list","positioner","trigger"),Ve=o4.build(),ir=e=>De(new Xo(e));ir.empty=()=>De(new Xo({items:[]}));var _=qe({getRootId:e=>{var n;return((n=e.ids)==null?void 0:n.root)??`combobox:${e.id}`},getLabelId:e=>{var n;return((n=e.ids)==null?void 0:n.label)??`combobox:${e.id}:label`},getControlId:e=>{var n;return((n=e.ids)==null?void 0:n.control)??`combobox:${e.id}:control`},getInputId:e=>{var n;return((n=e.ids)==null?void 0:n.input)??`combobox:${e.id}:input`},getContentId:e=>{var n;return((n=e.ids)==null?void 0:n.content)??`combobox:${e.id}:content`},getPositionerId:e=>{var n;return((n=e.ids)==null?void 0:n.positioner)??`combobox:${e.id}:popper`},getTriggerId:e=>{var n;return((n=e.ids)==null?void 0:n.trigger)??`combobox:${e.id}:toggle-btn`},getClearTriggerId:e=>{var n;return((n=e.ids)==null?void 0:n.clearTrigger)??`combobox:${e.id}:clear-btn`},getItemGroupId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.itemGroup)==null?void 0:o.call(t,n))??`combobox:${e.id}:optgroup:${n}`},getItemGroupLabelId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.itemGroupLabel)==null?void 0:o.call(t,n))??`combobox:${e.id}:optgroup-label:${n}`},getItemId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.item)==null?void 0:o.call(t,n))??`combobox:${e.id}:option:${n}`},getContentEl:e=>_.getById(e,_.getContentId(e)),getInputEl:e=>_.getById(e,_.getInputId(e)),getPositionerEl:e=>_.getById(e,_.getPositionerId(e)),getControlEl:e=>_.getById(e,_.getControlId(e)),getTriggerEl:e=>_.getById(e,_.getTriggerId(e)),getClearTriggerEl:e=>_.getById(e,_.getClearTriggerId(e)),getHighlightedItemEl:e=>{const n=e.highlightedValue;if(n==null)return;const t=`[role=option][data-value="${CSS.escape(n)}"`;return Oc(_.getContentEl(e),t)},focusInputEl:e=>{const n=_.getInputEl(e);_.isActiveElement(e,n)||n==null||n.focus({preventScroll:!0})},focusTriggerEl:e=>{const n=_.getTriggerEl(e);_.isActiveElement(e,n)||n==null||n.focus({preventScroll:!0})}});function l4(e,n,t){const o=e.context.translations,i=e.context.collection,r=e.context.disabled,a=e.context.isInteractive,s=e.context.invalid,c=e.context.readOnly,d=e.hasTag("open"),h=e.hasTag("focused"),v=e.context.composite,g=e.context.highlightedValue,p=lr({...e.context.positioning,placement:e.context.currentPlacement});function w(f){const{item:x}=f,C=i.getItemDisabled(x),E=i.getItemValue(x);return{value:E,disabled:!!(C||C),highlighted:g===E,selected:e.context.value.includes(E)}}return{focused:h,open:d,inputValue:e.context.inputValue,highlightedValue:g,highlightedItem:e.context.highlightedItem,value:e.context.value,valueAsString:e.context.valueAsString,hasSelectedItems:e.context.hasSelectedItems,selectedItems:e.context.selectedItems,collection:e.context.collection,reposition(f={}){n({type:"POSITIONING.SET",options:f})},setCollection(f){n({type:"COLLECTION.SET",value:f})},setHighlightValue(f){n({type:"HIGHLIGHTED_VALUE.SET",value:f})},selectValue(f){n({type:"ITEM.SELECT",value:f})},setValue(f){n({type:"VALUE.SET",value:f})},setInputValue(f){n({type:"INPUT_VALUE.SET",value:f})},clearValue(f){f!=null?n({type:"ITEM.CLEAR",value:f}):n("VALUE.CLEAR")},focus(){var f;(f=_.getInputEl(e.context))==null||f.focus()},setOpen(f){f!==d&&n(f?"OPEN":"CLOSE")},getRootProps(){return t.element({...Ve.root.attrs,dir:e.context.dir,id:_.getRootId(e.context),"data-invalid":O(s),"data-readonly":O(c)})},getLabelProps(){return t.label({...Ve.label.attrs,dir:e.context.dir,htmlFor:_.getInputId(e.context),id:_.getLabelId(e.context),"data-readonly":O(c),"data-disabled":O(r),"data-invalid":O(s),"data-focus":O(h),onClick(f){var x;v||(f.preventDefault(),(x=_.getTriggerEl(e.context))==null||x.focus({preventScroll:!0}))}})},getControlProps(){return t.element({...Ve.control.attrs,dir:e.context.dir,id:_.getControlId(e.context),"data-state":d?"open":"closed","data-focus":O(h),"data-disabled":O(r),"data-invalid":O(s)})},getPositionerProps(){return t.element({...Ve.positioner.attrs,dir:e.context.dir,id:_.getPositionerId(e.context),style:p.floating})},getInputProps(){return t.input({...Ve.input.attrs,dir:e.context.dir,"aria-invalid":uo(s),"data-invalid":O(s),name:e.context.name,form:e.context.form,disabled:r,autoFocus:e.context.autoFocus,required:e.context.required,autoComplete:"off",autoCorrect:"off",autoCapitalize:"none",spellCheck:"false",readOnly:c,placeholder:e.context.placeholder,id:_.getInputId(e.context),type:"text",role:"combobox",defaultValue:e.context.inputValue,"aria-autocomplete":e.context.autoComplete?"both":"list","aria-controls":_.getContentId(e.context),"aria-expanded":d,"data-state":d?"open":"closed","aria-activedescendant":g?_.getItemId(e.context,g):void 0,onClick(f){f.defaultPrevented||e.context.openOnClick&&a&&n("INPUT.CLICK")},onFocus(){r||n("INPUT.FOCUS")},onBlur(){r||n("INPUT.BLUR")},onChange(f){n({type:"INPUT.CHANGE",value:f.currentTarget.value})},onKeyDown(f){if(f.defaultPrevented||!a||f.ctrlKey||f.shiftKey||Wa(f))return;const x=e.context.openOnKeyPress,C=f.ctrlKey||f.metaKey||f.shiftKey,E=!0,T={ArrowDown(q){!x&&!d||(n({type:q.altKey?"OPEN":"INPUT.ARROW_DOWN",keypress:E}),q.preventDefault())},ArrowUp(){!x&&!d||(n({type:f.altKey?"CLOSE":"INPUT.ARROW_UP",keypress:E}),f.preventDefault())},Home(q){C||(n({type:"INPUT.HOME",keypress:E}),d&&q.preventDefault())},End(q){C||(n({type:"INPUT.END",keypress:E}),d&&q.preventDefault())},Enter(q){n({type:"INPUT.ENTER",keypress:E}),d&&q.preventDefault();const Q=_.getHighlightedItemEl(e.context);Bi(Q)},Escape(){n({type:"INPUT.ESCAPE",keypress:E}),f.preventDefault()}},F=It(f,e.context),k=T[F];k==null||k(f)}})},getTriggerProps(f={}){return t.button({...Ve.trigger.attrs,dir:e.context.dir,id:_.getTriggerId(e.context),"aria-haspopup":v?"listbox":"dialog",type:"button",tabIndex:f.focusable?void 0:-1,"aria-label":o.triggerLabel,"aria-expanded":d,"data-state":d?"open":"closed","aria-controls":d?_.getContentId(e.context):void 0,disabled:r,"data-invalid":O(s),"data-focusable":O(f.focusable),"data-readonly":O(c),"data-disabled":O(r),onFocus(){f.focusable&&n({type:"INPUT.FOCUS",src:"trigger"})},onClick(x){x.defaultPrevented||a&&Xa(x)&&n("TRIGGER.CLICK")},onPointerDown(x){a&&x.pointerType!=="touch"&&(x.preventDefault(),queueMicrotask(()=>{var C;(C=_.getInputEl(e.context))==null||C.focus({preventScroll:!0})}))},onKeyDown(x){if(x.defaultPrevented||v)return;const C={ArrowDown(){n({type:"INPUT.ARROW_DOWN",src:"trigger"})},ArrowUp(){n({type:"INPUT.ARROW_UP",src:"trigger"})}},E=It(x,e.context),T=C[E];T&&(T(x),x.preventDefault())}})},getContentProps(){return t.element({...Ve.content.attrs,dir:e.context.dir,id:_.getContentId(e.context),role:v?"listbox":"dialog",tabIndex:-1,hidden:!d,"data-state":d?"open":"closed","data-placement":e.context.currentPlacement,"aria-labelledby":_.getLabelId(e.context),"aria-multiselectable":e.context.multiple&&v?!0:void 0,onPointerDown(f){f.preventDefault()}})},getListProps(){return t.element({...Ve.list.attrs,role:v?void 0:"listbox","aria-labelledby":_.getLabelId(e.context),"aria-multiselectable":e.context.multiple&&!v?!0:void 0})},getClearTriggerProps(){return t.button({...Ve.clearTrigger.attrs,dir:e.context.dir,id:_.getClearTriggerId(e.context),type:"button",tabIndex:-1,disabled:r,"data-invalid":O(s),"aria-label":o.clearTriggerLabel,"aria-controls":_.getInputId(e.context),hidden:!e.context.value.length,onPointerDown(f){f.preventDefault()},onClick(f){f.defaultPrevented||a&&n({type:"VALUE.CLEAR",src:"clear-trigger"})}})},getItemState:w,getItemProps(f){const x=w(f),C=x.value;return t.element({...Ve.item.attrs,dir:e.context.dir,id:_.getItemId(e.context,C),role:"option",tabIndex:-1,"data-highlighted":O(x.highlighted),"data-state":x.selected?"checked":"unchecked","aria-selected":uo(x.highlighted),"aria-disabled":uo(x.disabled),"data-disabled":O(x.disabled),"data-value":x.value,onPointerMove(){x.disabled||x.highlighted||n({type:"ITEM.POINTER_MOVE",value:C})},onPointerLeave(){f.persistFocus||x.disabled||!e.previousEvent.type.includes("POINTER")||n({type:"ITEM.POINTER_LEAVE",value:C})},onClick(E){Wl(E)||jl(E)||Pi(E)||x.disabled||n({type:"ITEM.CLICK",src:"click",value:C})}})},getItemTextProps(f){const x=w(f);return t.element({...Ve.itemText.attrs,dir:e.context.dir,"data-state":x.selected?"checked":"unchecked","data-disabled":O(x.disabled),"data-highlighted":O(x.highlighted)})},getItemIndicatorProps(f){const x=w(f);return t.element({"aria-hidden":!0,...Ve.itemIndicator.attrs,dir:e.context.dir,"data-state":x.selected?"checked":"unchecked",hidden:!x.selected})},getItemGroupProps(f){const{id:x}=f;return t.element({...Ve.itemGroup.attrs,dir:e.context.dir,id:_.getItemGroupId(e.context,x),"aria-labelledby":_.getItemGroupLabelId(e.context,x)})},getItemGroupLabelProps(f){const{htmlFor:x}=f;return t.element({...Ve.itemGroupLabel.attrs,dir:e.context.dir,id:_.getItemGroupLabelId(e.context,x),role:"group"})}}}var{and:Fe,not:Ln}=wt;function i4(e){const n=ze(e);return ke({id:"combobox",initial:n.open?"suggesting":"idle",context:{loopFocus:!0,openOnClick:!1,value:[],highlightedValue:null,inputValue:"",allowCustomValue:!1,closeOnSelect:!n.multiple,inputBehavior:"none",selectionBehavior:"replace",openOnKeyPress:!0,openOnChange:!0,composite:!0,readOnly:!1,disabled:!1,...n,highlightedItem:null,selectedItems:[],valueAsString:"",collection:n.collection??ir.empty(),positioning:{placement:"bottom",flip:!1,sameWidth:!0,...n.positioning},translations:{triggerLabel:"Toggle suggestions",clearTriggerLabel:"Clear value",...n.translations}},created:["syncInitialValues","syncSelectionBehavior"],computed:{isInputValueEmpty:t=>t.inputValue.length===0,isInteractive:t=>!(t.readOnly||t.disabled),autoComplete:t=>t.inputBehavior==="autocomplete",autoHighlight:t=>t.inputBehavior==="autohighlight",hasSelectedItems:t=>t.value.length>0},watch:{value:["syncSelectedItems"],inputValue:["syncInputValue"],highlightedValue:["syncHighlightedItem","autofillInputValue"],multiple:["syncSelectionBehavior"],open:["toggleVisibility"]},on:{"HIGHLIGHTED_VALUE.SET":{actions:["setHighlightedItem"]},"ITEM.SELECT":{actions:["selectItem"]},"ITEM.CLEAR":{actions:["clearItem"]},"VALUE.SET":{actions:["setSelectedItems"]},"INPUT_VALUE.SET":{actions:"setInputValue"},"COLLECTION.SET":{actions:["setCollection"]},"POSITIONING.SET":{actions:["reposition"]}},states:{idle:{tags:["idle","closed"],entry:["scrollContentToTop","clearHighlightedItem"],on:{"CONTROLLED.OPEN":{target:"interacting"},"TRIGGER.CLICK":[{guard:"isOpenControlled",actions:["setInitialFocus","highlightFirstSelectedItem","invokeOnOpen"]},{target:"interacting",actions:["setInitialFocus","highlightFirstSelectedItem","invokeOnOpen"]}],"INPUT.CLICK":[{guard:"isOpenControlled",actions:["highlightFirstSelectedItem","invokeOnOpen"]},{target:"interacting",actions:["highlightFirstSelectedItem","invokeOnOpen"]}],"INPUT.FOCUS":{target:"focused"},OPEN:[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{target:"interacting",actions:["invokeOnOpen"]}],"VALUE.CLEAR":{target:"focused",actions:["clearInputValue","clearSelectedItems","setInitialFocus"]}}},focused:{tags:["focused","closed"],entry:["scrollContentToTop","clearHighlightedItem"],on:{"CONTROLLED.OPEN":[{guard:"isChangeEvent",target:"suggesting"},{target:"interacting"}],"INPUT.CHANGE":[{guard:Fe("isOpenControlled","openOnChange"),actions:["setInputValue","invokeOnOpen","highlightFirstItemIfNeeded"]},{guard:"openOnChange",target:"suggesting",actions:["setInputValue","invokeOnOpen","highlightFirstItemIfNeeded"]},{actions:"setInputValue"}],"LAYER.INTERACT_OUTSIDE":{target:"idle"},"INPUT.ESCAPE":{guard:Fe("isCustomValue",Ln("allowCustomValue")),actions:"revertInputValue"},"INPUT.BLUR":{target:"idle"},"INPUT.CLICK":[{guard:"isOpenControlled",actions:["highlightFirstSelectedItem","invokeOnOpen"]},{target:"interacting",actions:["highlightFirstSelectedItem","invokeOnOpen"]}],"TRIGGER.CLICK":[{guard:"isOpenControlled",actions:["setInitialFocus","highlightFirstSelectedItem","invokeOnOpen"]},{target:"interacting",actions:["setInitialFocus","highlightFirstSelectedItem","invokeOnOpen"]}],"INPUT.ARROW_DOWN":[{guard:Fe("isOpenControlled","autoComplete"),actions:["invokeOnOpen"]},{guard:"autoComplete",target:"interacting",actions:["invokeOnOpen"]},{guard:"isOpenControlled",actions:["highlightFirstOrSelectedItem","invokeOnOpen"]},{target:"interacting",actions:["highlightFirstOrSelectedItem","invokeOnOpen"]}],"INPUT.ARROW_UP":[{guard:"autoComplete",target:"interacting",actions:"invokeOnOpen"},{guard:"autoComplete",target:"interacting",actions:"invokeOnOpen"},{target:"interacting",actions:["highlightLastOrSelectedItem","invokeOnOpen"]},{target:"interacting",actions:["highlightLastOrSelectedItem","invokeOnOpen"]}],OPEN:[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{target:"interacting",actions:["invokeOnOpen"]}],"VALUE.CLEAR":{actions:["clearInputValue","clearSelectedItems"]}}},interacting:{tags:["open","focused"],entry:["setInitialFocus"],activities:["scrollToHighlightedItem","trackDismissableLayer","computePlacement","hideOtherElements"],on:{"CONTROLLED.CLOSE":[{guard:"restoreFocus",target:"focused",actions:["setFinalFocus"]},{target:"idle"}],"INPUT.HOME":{actions:["highlightFirstItem"]},"INPUT.END":{actions:["highlightLastItem"]},"INPUT.ARROW_DOWN":[{guard:Fe("autoComplete","isLastItemHighlighted"),actions:["clearHighlightedItem","scrollContentToTop"]},{actions:["highlightNextItem"]}],"INPUT.ARROW_UP":[{guard:Fe("autoComplete","isFirstItemHighlighted"),actions:"clearHighlightedItem"},{actions:"highlightPrevItem"}],"INPUT.ENTER":[{guard:Fe("isOpenControlled","closeOnSelect"),actions:["selectHighlightedItem","invokeOnClose"]},{guard:"closeOnSelect",target:"focused",actions:["selectHighlightedItem","invokeOnClose","setFinalFocus"]},{actions:["selectHighlightedItem"]}],"INPUT.CHANGE":[{guard:"autoComplete",target:"suggesting",actions:["setInputValue","invokeOnOpen"]},{target:"suggesting",actions:["clearHighlightedItem","setInputValue","invokeOnOpen"]}],"ITEM.POINTER_MOVE":{actions:["setHighlightedItem"]},"ITEM.POINTER_LEAVE":{actions:["clearHighlightedItem"]},"ITEM.CLICK":[{guard:Fe("isOpenControlled","closeOnSelect"),actions:["selectItem","invokeOnClose"]},{guard:"closeOnSelect",target:"focused",actions:["selectItem","invokeOnClose","setFinalFocus"]},{actions:["selectItem"]}],"LAYER.ESCAPE":[{guard:Fe("isOpenControlled","autoComplete"),actions:["syncInputValue","invokeOnClose"]},{guard:"autoComplete",target:"focused",actions:["syncInputValue","invokeOnClose"]},{guard:"isOpenControlled",actions:"invokeOnClose"},{target:"focused",actions:["invokeOnClose","setFinalFocus"]}],"TRIGGER.CLICK":[{guard:"isOpenControlled",actions:"invokeOnClose"},{target:"focused",actions:"invokeOnClose"}],"LAYER.INTERACT_OUTSIDE":[{guard:Fe("isOpenControlled","isCustomValue",Ln("allowCustomValue")),actions:["revertInputValue","invokeOnClose"]},{guard:Fe("isCustomValue",Ln("allowCustomValue")),target:"idle",actions:["revertInputValue","invokeOnClose"]},{guard:"isOpenControlled",actions:"invokeOnClose"},{target:"idle",actions:"invokeOnClose"}],CLOSE:[{guard:"isOpenControlled",actions:["invokeOnClose"]},{target:"focused",actions:["invokeOnClose","setFinalFocus"]}],"VALUE.CLEAR":[{guard:"isOpenControlled",actions:["clearInputValue","clearSelectedItems","invokeOnClose"]},{target:"focused",actions:["clearInputValue","clearSelectedItems","invokeOnClose","setFinalFocus"]}]}},suggesting:{tags:["open","focused"],activities:["trackDismissableLayer","scrollToHighlightedItem","computePlacement","trackChildNodes","hideOtherElements"],entry:["setInitialFocus"],on:{"CONTROLLED.CLOSE":[{guard:"restoreFocus",target:"focused",actions:["setFinalFocus"]},{target:"idle"}],CHILDREN_CHANGE:{actions:["highlightFirstItem"]},"INPUT.ARROW_DOWN":{target:"interacting",actions:["highlightNextItem"]},"INPUT.ARROW_UP":{target:"interacting",actions:["highlightPrevItem"]},"INPUT.HOME":{target:"interacting",actions:["highlightFirstItem"]},"INPUT.END":{target:"interacting",actions:["highlightLastItem"]},"INPUT.ENTER":[{guard:Fe("isOpenControlled","closeOnSelect"),actions:["selectHighlightedItem","invokeOnClose"]},{guard:"closeOnSelect",target:"focused",actions:["selectHighlightedItem","invokeOnClose","setFinalFocus"]},{actions:["selectHighlightedItem"]}],"INPUT.CHANGE":[{guard:"autoHighlight",actions:["setInputValue"]},{actions:["setInputValue"]}],"LAYER.ESCAPE":[{guard:"isOpenControlled",actions:["invokeOnClose"]},{target:"focused",actions:["invokeOnClose"]}],"ITEM.POINTER_MOVE":{target:"interacting",actions:["setHighlightedItem"]},"ITEM.POINTER_LEAVE":{actions:["clearHighlightedItem"]},"LAYER.INTERACT_OUTSIDE":[{guard:Fe("isOpenControlled","isCustomValue",Ln("allowCustomValue")),actions:["revertInputValue","invokeOnClose"]},{guard:Fe("isCustomValue",Ln("allowCustomValue")),target:"idle",actions:["revertInputValue","invokeOnClose"]},{guard:"isOpenControlled",actions:["invokeOnClose"]},{target:"idle",actions:["invokeOnClose"]}],"TRIGGER.CLICK":[{guard:"isOpenControlled",actions:["invokeOnClose"]},{target:"focused",actions:["invokeOnClose"]}],"ITEM.CLICK":[{guard:Fe("isOpenControlled","closeOnSelect"),actions:["selectItem","invokeOnClose"]},{guard:"closeOnSelect",target:"focused",actions:["selectItem","invokeOnClose","setFinalFocus"]},{actions:["selectItem"]}],CLOSE:[{guard:"isOpenControlled",actions:["invokeOnClose"]},{target:"focused",actions:["invokeOnClose","setFinalFocus"]}],"VALUE.CLEAR":[{guard:"isOpenControlled",actions:["clearInputValue","clearSelectedItems","invokeOnClose"]},{target:"focused",actions:["clearInputValue","clearSelectedItems","invokeOnClose","setFinalFocus"]}]}}}},{guards:{isInputValueEmpty:t=>t.isInputValueEmpty,autoComplete:t=>t.autoComplete&&!t.multiple,autoHighlight:t=>t.autoHighlight,isFirstItemHighlighted:t=>t.collection.firstValue===t.highlightedValue,isLastItemHighlighted:t=>t.collection.lastValue===t.highlightedValue,isCustomValue:t=>t.inputValue!==t.valueAsString,allowCustomValue:t=>!!t.allowCustomValue,hasHighlightedItem:t=>t.highlightedValue!=null,closeOnSelect:t=>!!t.closeOnSelect,isOpenControlled:t=>!!t["open.controlled"],openOnChange:(t,o)=>{var i;return Xc(t.openOnChange)?t.openOnChange:!!((i=t.openOnChange)!=null&&i.call(t,{inputValue:o.value}))},restoreFocus:(t,o)=>o.restoreFocus==null?!0:!!o.restoreFocus,isChangeEvent:(t,o)=>{var i;return((i=o.previousEvent)==null?void 0:i.type)==="INPUT.CHANGE"}},activities:{trackDismissableLayer(t,o,{send:i}){return t.disableLayer?void 0:Yo(()=>_.getContentEl(t),{defer:!0,exclude:()=>[_.getInputEl(t),_.getTriggerEl(t),_.getClearTriggerEl(t)],onFocusOutside:t.onFocusOutside,onPointerDownOutside:t.onPointerDownOutside,onInteractOutside:t.onInteractOutside,onEscapeKeyDown(a){a.preventDefault(),a.stopPropagation(),i("LAYER.ESCAPE")},onDismiss(){i({type:"LAYER.INTERACT_OUTSIDE",restoreFocus:!1})}})},hideOtherElements(t){return Qs([_.getInputEl(t),_.getContentEl(t),_.getTriggerEl(t)])},computePlacement(t){const o=()=>_.getControlEl(t),i=()=>_.getPositionerEl(t);return t.currentPlacement=t.positioning.placement,sn(o,i,{...t.positioning,defer:!0,onComplete(r){t.currentPlacement=r.placement}})},trackChildNodes(t,o,{send:i}){return t.autoHighlight?Ya(()=>_.getContentEl(t),{callback:()=>i("CHILDREN_CHANGE"),defer:!0}):void 0},scrollToHighlightedItem(t,o,{getState:i}){const r=_.getInputEl(t);let a=[];const s=h=>{if(i().event.type.includes("POINTER")||!t.highlightedValue)return;const p=_.getHighlightedItemEl(t),w=_.getContentEl(t);if(t.scrollToIndexFn){const x=t.collection.indexOf(t.highlightedValue);t.scrollToIndexFn({index:x,immediate:h});return}const f=te(()=>{Fi(p,{rootEl:w,block:"nearest"})});a.push(f)},c=te(()=>s(!0));a.push(c);const d=No(r,{attributes:["aria-activedescendant"],callback:()=>s(!1)});return a.push(d),()=>{a.forEach(h=>h())}}},actions:{reposition(t,o){sn(()=>_.getControlEl(t),()=>_.getPositionerEl(t),{...t.positioning,...o.options,defer:!0,listeners:!1,onComplete(a){t.currentPlacement=a.placement}})},setHighlightedItem(t,o){o.value!=null&&we.highlightedValue(t,o.value)},clearHighlightedItem(t){we.highlightedValue(t,null,!0)},selectHighlightedItem(t){we.value(t,t.highlightedValue)},selectItem(t,o){o.value!=null&&we.value(t,o.value)},clearItem(t,o){if(o.value==null)return;const i=t.value.filter(r=>r!==o.value);we.value(t,i)},setInitialFocus(t){te(()=>{_.focusInputEl(t)})},setFinalFocus(t){te(()=>{const o=_.getTriggerEl(t);(o==null?void 0:o.dataset.focusable)==null?_.focusInputEl(t):_.focusTriggerEl(t)})},syncInputValue(t){const o=_.getInputEl(t);o&&(o.value=t.inputValue,queueMicrotask(()=>{const{selectionStart:i,selectionEnd:r}=o;Math.abs((r??0)-(i??0))===0&&i===0&&o.setSelectionRange(o.value.length,o.value.length)}))},setInputValue(t,o){we.inputValue(t,o.value)},clearInputValue(t){we.inputValue(t,"")},revertInputValue(t){const o=Eo(t.selectionBehavior,{replace:t.hasSelectedItems?t.valueAsString:"",preserve:t.inputValue,clear:""});we.inputValue(t,o)},syncInitialValues(t){const o=t.collection.findMany(t.value),i=t.collection.stringifyMany(t.value);t.highlightedItem=t.collection.find(t.highlightedValue),t.selectedItems=o,t.valueAsString=i,!(t.inputValue.trim()||t.multiple)&&(t.inputValue=Eo(t.selectionBehavior,{preserve:t.inputValue||i,replace:i,clear:""}))},syncSelectionBehavior(t){t.multiple&&(t.selectionBehavior="clear")},setSelectedItems(t,o){_i(o.value)&&we.value(t,o.value)},clearSelectedItems(t){we.value(t,[])},scrollContentToTop(t){if(t.scrollToIndexFn)t.scrollToIndexFn({index:0,immediate:!0});else{const o=_.getContentEl(t);if(!o)return;o.scrollTop=0}},invokeOnOpen(t){var o;(o=t.onOpenChange)==null||o.call(t,{open:!0})},invokeOnClose(t){var o;(o=t.onOpenChange)==null||o.call(t,{open:!1})},highlightFirstItem(t){te(()=>{const o=t.collection.firstValue;we.highlightedValue(t,o)})},highlightFirstItemIfNeeded(t){t.autoHighlight&&te(()=>{const o=t.collection.firstValue;we.highlightedValue(t,o)})},highlightLastItem(t){te(()=>{const o=t.collection.lastValue;we.highlightedValue(t,o)})},highlightNextItem(t){let o=null;t.highlightedValue?(o=t.collection.getNextValue(t.highlightedValue),!o&&t.loopFocus&&(o=t.collection.firstValue)):o=t.collection.firstValue,we.highlightedValue(t,o)},highlightPrevItem(t){let o=null;t.highlightedValue?(o=t.collection.getPreviousValue(t.highlightedValue),!o&&t.loopFocus&&(o=t.collection.lastValue)):o=t.collection.lastValue,we.highlightedValue(t,o)},highlightFirstSelectedItem(t){te(()=>{const[o]=t.collection.sort(t.value);we.highlightedValue(t,o)})},highlightFirstOrSelectedItem(t){te(()=>{let o=null;t.hasSelectedItems?o=t.collection.sort(t.value)[0]:o=t.collection.firstValue,we.highlightedValue(t,o)})},highlightLastOrSelectedItem(t){te(()=>{let o=null;t.hasSelectedItems?o=t.collection.sort(t.value)[0]:o=t.collection.lastValue,we.highlightedValue(t,o)})},autofillInputValue(t,o){const i=_.getInputEl(t);if(!t.autoComplete||!i||!o.keypress)return;const r=t.collection.stringify(t.highlightedValue);te(()=>{i.value=r||t.inputValue})},setCollection(t,o){t.collection=o.value},syncSelectedItems(t){Mo.valueChange(t)},syncHighlightedItem(t){Mo.highlightChange(t)},toggleVisibility(t,o,{send:i}){i({type:t.open?"CONTROLLED.OPEN":"CONTROLLED.CLOSE",previousEvent:o})}}})}var Mo={valueChange:e=>{const n=e.selectedItems;e.selectedItems=e.value.map(i=>{const r=n.find(a=>e.collection.getItemValue(a)===i);return r||e.collection.find(i)});const t=e.collection.stringifyItems(e.selectedItems);e.valueAsString=t;let o;e.getSelectionValue?o=e.getSelectionValue({inputValue:e.inputValue,selectedItems:Array.from(e.selectedItems),valueAsString:t}):o=Eo(e.selectionBehavior,{replace:e.valueAsString,preserve:e.inputValue,clear:""}),we.inputValue(e,o)},highlightChange:e=>{e.highlightedItem=e.collection.find(e.highlightedValue)}},io={valueChange:e=>{var n;Mo.valueChange(e),(n=e.onValueChange)==null||n.call(e,{value:Array.from(e.value),items:Array.from(e.selectedItems)})},highlightChange:e=>{var n;Mo.highlightChange(e),(n=e.onHighlightChange)==null||n.call(e,{highlightedValue:e.highlightedValue,highlightedItem:e.highlightedItem})},inputChange:e=>{var n;(n=e.onInputValueChange)==null||n.call(e,{inputValue:e.inputValue})}},we={value:(e,n,t=!1)=>{if(!Ce(e.value,n)&&!(n==null&&!t)){if(n==null&&t){e.value=[],io.valueChange(e);return}_i(n)?e.value=n:n!=null&&(e.value=e.multiple?ts(e.value,n):[n]),io.valueChange(e)}},highlightedValue:(e,n,t=!1)=>{Ce(e.highlightedValue,n)||!n&&!t||(e.highlightedValue=n||null,io.highlightChange(e))},inputValue:(e,n)=>{Ce(e.inputValue,n)||(e.inputValue=n,io.inputChange(e))}};const r4=e=>{const[n,t]=pe()(e,["isItemDisabled","itemToValue","itemToString","items"]),o=S.useMemo(()=>ir(n),Object.values(n)),{dir:i}=it(),{getRootNode:r}=Ye(),a=Yt(),s={id:S.useId(),ids:{label:a==null?void 0:a.ids.label,input:a==null?void 0:a.ids.control},disabled:a==null?void 0:a.disabled,readOnly:a==null?void 0:a.readOnly,required:a==null?void 0:a.required,invalid:a==null?void 0:a.invalid,dir:i,getRootNode:r,collection:o,open:e.defaultOpen,value:e.defaultValue,"open.controlled":e.open!==void 0,...t},c={...s,collection:o,value:e.value,onValueChange:ge(e.onValueChange,{sync:!0}),onInputValueChange:ge(e.onInputValueChange,{sync:!0}),onHighlightChange:ge(e.onHighlightChange),onOpenChange:ge(e.onOpenChange)},[d,h]=We(i4(s),{context:c});return l4(d,h,Be)},a4=(e,n)=>{const[t,o]=Go(e),[i,r]=pe()(o,["allowCustomValue","autoFocus","closeOnSelect","composite","defaultOpen","defaultValue","disabled","disableLayer","form","getSelectionValue","highlightedValue","id","ids","inputBehavior","inputValue","invalid","isItemDisabled","items","itemToString","itemToValue","loopFocus","multiple","name","onFocusOutside","onHighlightChange","onInputValueChange","onInteractOutside","onOpenChange","onOpenChange","onPointerDownOutside","onValueChange","open","openOnChange","openOnClick","openOnKeyPress","placeholder","positioning","readOnly","required","scrollToIndexFn","selectionBehavior","translations","value"]),a=r4(i),s=Jn(A({present:a.open},t)),c=A(a.getRootProps(),r);return m.jsx(U5,{value:a,children:m.jsx(Wo,{value:s,children:m.jsx(W.div,{...c,ref:n})})})},s4=S.forwardRef(a4),e0=S.forwardRef((e,n)=>{const t=Ft(),o=A(t.getTriggerProps(),e);return m.jsx(W.button,{...o,ref:n})});e0.displayName="ComboboxTrigger";const[c4,vn]=re({name:"DialogContext",hookName:"useDialogContext",providerName:"<DialogProvider />"}),rr=S.forwardRef((e,n)=>{const t=vn(),o=Cs(),i=Jn({...o,present:t.open}),r=A(t.getBackdropProps(),i.getPresenceProps(n),e);return i.unmounted?null:m.jsx(W.div,{...r})});rr.displayName="DialogBackdrop";const ar=S.forwardRef((e,n)=>{const t=vn(),o=A(t.getCloseTriggerProps(),e);return m.jsx(W.button,{...o,ref:n})});ar.displayName="DialogCloseTrigger";const sr=S.forwardRef((e,n)=>{const t=vn(),o=Et(),i=A(t.getContentProps(),o.getPresenceProps(n),e);return o.unmounted?null:m.jsx(W.div,{...i})});sr.displayName="DialogContent";const t0=S.forwardRef((e,n)=>{const t=vn(),o=A(t.getDescriptionProps(),e);return m.jsx(W.div,{...o,ref:n})});t0.displayName="DialogDescription";const cr=S.forwardRef((e,n)=>{const t=vn(),o=A(t.getPositionerProps(),e);return Et().unmounted?null:m.jsx(W.div,{...o,ref:n})});cr.displayName="DialogPositioner";var Ll="data-zag-scroll-lock";function ia(e,n){if(!e)return;const t=e.style.cssText;return Object.assign(e.style,n),()=>{e.style.cssText=t}}function d4(e,n,t){if(!e)return;const o=e.style.getPropertyValue(n);return e.style.setProperty(n,t),()=>{o?e.style.setProperty(n,o):e.style.removeProperty(n)}}function u4(e){const n=e.getBoundingClientRect().left;return Math.round(n)+e.scrollLeft?"paddingLeft":"paddingRight"}function h4(e){const n=e??document,t=n.defaultView??window,{documentElement:o,body:i}=n;if(i.hasAttribute(Ll))return;i.setAttribute(Ll,"");const a=t.innerWidth-o.clientWidth,s=()=>d4(o,"--scrollbar-width",`${a}px`),c=u4(o),d=()=>ia(i,{overflow:"hidden",[c]:`${a}px`}),h=()=>{const{scrollX:g,scrollY:p,visualViewport:w}=t,f=(w==null?void 0:w.offsetLeft)??0,x=(w==null?void 0:w.offsetTop)??0,C=ia(i,{position:"fixed",overflow:"hidden",top:`${-(p-Math.floor(x))}px`,left:`${-(g-Math.floor(f))}px`,right:"0",[c]:`${a}px`});return()=>{C==null||C(),t.scrollTo({left:g,top:p,behavior:"instant"})}},v=[s(),hc()?h():d()];return()=>{v.forEach(g=>g==null?void 0:g()),i.removeAttribute(Ll)}}/*!
31
+ * tabbable 6.2.0
32
+ * @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE
33
+ */var n0=["input:not([inert])","select:not([inert])","textarea:not([inert])","a[href]:not([inert])","button:not([inert])","[tabindex]:not(slot):not([inert])","audio[controls]:not([inert])","video[controls]:not([inert])",'[contenteditable]:not([contenteditable="false"]):not([inert])',"details>summary:first-of-type:not([inert])","details:not([inert])"],zo=n0.join(","),o0=typeof Element>"u",qt=o0?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,Oo=!o0&&Element.prototype.getRootNode?function(e){var n;return e==null||(n=e.getRootNode)===null||n===void 0?void 0:n.call(e)}:function(e){return e==null?void 0:e.ownerDocument},Vo=function e(n,t){var o;t===void 0&&(t=!0);var i=n==null||(o=n.getAttribute)===null||o===void 0?void 0:o.call(n,"inert"),r=i===""||i==="true",a=r||t&&n&&e(n.parentNode);return a},g4=function(n){var t,o=n==null||(t=n.getAttribute)===null||t===void 0?void 0:t.call(n,"contenteditable");return o===""||o==="true"},l0=function(n,t,o){if(Vo(n))return[];var i=Array.prototype.slice.apply(n.querySelectorAll(zo));return t&&qt.call(n,zo)&&i.unshift(n),i=i.filter(o),i},i0=function e(n,t,o){for(var i=[],r=Array.from(n);r.length;){var a=r.shift();if(!Vo(a,!1))if(a.tagName==="SLOT"){var s=a.assignedElements(),c=s.length?s:a.children,d=e(c,!0,o);o.flatten?i.push.apply(i,d):i.push({scopeParent:a,candidates:d})}else{var h=qt.call(a,zo);h&&o.filter(a)&&(t||!n.includes(a))&&i.push(a);var v=a.shadowRoot||typeof o.getShadowRoot=="function"&&o.getShadowRoot(a),g=!Vo(v,!1)&&(!o.shadowRootFilter||o.shadowRootFilter(a));if(v&&g){var p=e(v===!0?a.children:v.children,!0,o);o.flatten?i.push.apply(i,p):i.push({scopeParent:a,candidates:p})}else r.unshift.apply(r,a.children)}}return i},r0=function(n){return!isNaN(parseInt(n.getAttribute("tabindex"),10))},Gt=function(n){if(!n)throw new Error("No node provided");return n.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(n.tagName)||g4(n))&&!r0(n)?0:n.tabIndex},v4=function(n,t){var o=Gt(n);return o<0&&t&&!r0(n)?0:o},m4=function(n,t){return n.tabIndex===t.tabIndex?n.documentOrder-t.documentOrder:n.tabIndex-t.tabIndex},a0=function(n){return n.tagName==="INPUT"},p4=function(n){return a0(n)&&n.type==="hidden"},f4=function(n){var t=n.tagName==="DETAILS"&&Array.prototype.slice.apply(n.children).some(function(o){return o.tagName==="SUMMARY"});return t},w4=function(n,t){for(var o=0;o<n.length;o++)if(n[o].checked&&n[o].form===t)return n[o]},E4=function(n){if(!n.name)return!0;var t=n.form||Oo(n),o=function(s){return t.querySelectorAll('input[type="radio"][name="'+s+'"]')},i;if(typeof window<"u"&&typeof window.CSS<"u"&&typeof window.CSS.escape=="function")i=o(window.CSS.escape(n.name));else try{i=o(n.name)}catch(a){return console.error("Looks like you have a radio button with a name attribute containing invalid CSS selector characters and need the CSS.escape polyfill: %s",a.message),!1}var r=w4(i,n.form);return!r||r===n},y4=function(n){return a0(n)&&n.type==="radio"},x4=function(n){return y4(n)&&!E4(n)},C4=function(n){var t,o=n&&Oo(n),i=(t=o)===null||t===void 0?void 0:t.host,r=!1;if(o&&o!==n){var a,s,c;for(r=!!((a=i)!==null&&a!==void 0&&(s=a.ownerDocument)!==null&&s!==void 0&&s.contains(i)||n!=null&&(c=n.ownerDocument)!==null&&c!==void 0&&c.contains(n));!r&&i;){var d,h,v;o=Oo(i),i=(d=o)===null||d===void 0?void 0:d.host,r=!!((h=i)!==null&&h!==void 0&&(v=h.ownerDocument)!==null&&v!==void 0&&v.contains(i))}}return r},ra=function(n){var t=n.getBoundingClientRect(),o=t.width,i=t.height;return o===0&&i===0},b4=function(n,t){var o=t.displayCheck,i=t.getShadowRoot;if(getComputedStyle(n).visibility==="hidden")return!0;var r=qt.call(n,"details>summary:first-of-type"),a=r?n.parentElement:n;if(qt.call(a,"details:not([open]) *"))return!0;if(!o||o==="full"||o==="legacy-full"){if(typeof i=="function"){for(var s=n;n;){var c=n.parentElement,d=Oo(n);if(c&&!c.shadowRoot&&i(c)===!0)return ra(n);n.assignedSlot?n=n.assignedSlot:!c&&d!==n.ownerDocument?n=d.host:n=c}n=s}if(C4(n))return!n.getClientRects().length;if(o!=="legacy-full")return!0}else if(o==="non-zero-area")return ra(n);return!1},R4=function(n){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(n.tagName))for(var t=n.parentElement;t;){if(t.tagName==="FIELDSET"&&t.disabled){for(var o=0;o<t.children.length;o++){var i=t.children.item(o);if(i.tagName==="LEGEND")return qt.call(t,"fieldset[disabled] *")?!0:!i.contains(n)}return!0}t=t.parentElement}return!1},Fo=function(n,t){return!(t.disabled||Vo(t)||p4(t)||b4(t,n)||f4(t)||R4(t))},Zl=function(n,t){return!(x4(t)||Gt(t)<0||!Fo(n,t))},S4=function(n){var t=parseInt(n.getAttribute("tabindex"),10);return!!(isNaN(t)||t>=0)},I4=function e(n){var t=[],o=[];return n.forEach(function(i,r){var a=!!i.scopeParent,s=a?i.scopeParent:i,c=v4(s,a),d=a?e(i.candidates):s;c===0?a?t.push.apply(t,d):t.push(s):o.push({documentOrder:r,tabIndex:c,item:i,isScope:a,content:d})}),o.sort(m4).reduce(function(i,r){return r.isScope?i.push.apply(i,r.content):i.push(r.content),i},[]).concat(t)},T4=function(n,t){t=t||{};var o;return t.getShadowRoot?o=i0([n],t.includeContainer,{filter:Zl.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:S4}):o=l0(n,t.includeContainer,Zl.bind(null,t)),I4(o)},M4=function(n,t){t=t||{};var o;return t.getShadowRoot?o=i0([n],t.includeContainer,{filter:Fo.bind(null,t),flatten:!0,getShadowRoot:t.getShadowRoot}):o=l0(n,t.includeContainer,Fo.bind(null,t)),o},Qt=function(n,t){if(t=t||{},!n)throw new Error("No node provided");return qt.call(n,zo)===!1?!1:Zl(t,n)},z4=n0.concat("iframe").join(","),_l=function(n,t){if(t=t||{},!n)throw new Error("No node provided");return qt.call(n,z4)===!1?!1:Fo(t,n)};/*!
34
+ * focus-trap 7.5.4
35
+ * @license MIT, https://github.com/focus-trap/focus-trap/blob/master/LICENSE
36
+ */function aa(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);n&&(o=o.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),t.push.apply(t,o)}return t}function sa(e){for(var n=1;n<arguments.length;n++){var t=arguments[n]!=null?arguments[n]:{};n%2?aa(Object(t),!0).forEach(function(o){O4(e,o,t[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):aa(Object(t)).forEach(function(o){Object.defineProperty(e,o,Object.getOwnPropertyDescriptor(t,o))})}return e}function O4(e,n,t){return n=F4(n),n in e?Object.defineProperty(e,n,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[n]=t,e}function V4(e,n){if(typeof e!="object"||e===null)return e;var t=e[Symbol.toPrimitive];if(t!==void 0){var o=t.call(e,n||"default");if(typeof o!="object")return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return(n==="string"?String:Number)(e)}function F4(e){var n=V4(e,"string");return typeof n=="symbol"?n:String(n)}var ca={activateTrap:function(n,t){if(n.length>0){var o=n[n.length-1];o!==t&&o.pause()}var i=n.indexOf(t);i===-1||n.splice(i,1),n.push(t)},deactivateTrap:function(n,t){var o=n.indexOf(t);o!==-1&&n.splice(o,1),n.length>0&&n[n.length-1].unpause()}},P4=function(n){return n.tagName&&n.tagName.toLowerCase()==="input"&&typeof n.select=="function"},k4=function(n){return(n==null?void 0:n.key)==="Escape"||(n==null?void 0:n.key)==="Esc"||(n==null?void 0:n.keyCode)===27},Un=function(n){return(n==null?void 0:n.key)==="Tab"||(n==null?void 0:n.keyCode)===9},B4=function(n){return Un(n)&&!n.shiftKey},A4=function(n){return Un(n)&&n.shiftKey},da=function(n){return setTimeout(n,0)},ua=function(n,t){var o=-1;return n.every(function(i,r){return t(i)?(o=r,!1):!0}),o},_n=function(n){for(var t=arguments.length,o=new Array(t>1?t-1:0),i=1;i<t;i++)o[i-1]=arguments[i];return typeof n=="function"?n.apply(void 0,o):n},ro=function(n){return n.target.shadowRoot&&typeof n.composedPath=="function"?n.composedPath()[0]:n.target},L4=[],_4=function(n,t){var o=(t==null?void 0:t.document)||document,i=(t==null?void 0:t.trapStack)||L4,r=sa({returnFocusOnDeactivate:!0,escapeDeactivates:!0,delayInitialFocus:!0,isKeyForward:B4,isKeyBackward:A4},t),a={containers:[],containerGroups:[],tabbableGroups:[],nodeFocusedBeforeActivation:null,mostRecentlyFocusedNode:null,active:!1,paused:!1,delayInitialFocusTimer:void 0,recentNavEvent:void 0},s,c=function(I,R,M){return I&&I[R]!==void 0?I[R]:r[M||R]},d=function(I,R){var M=typeof(R==null?void 0:R.composedPath)=="function"?R.composedPath():void 0;return a.containerGroups.findIndex(function(U){var Y=U.container,K=U.tabbableNodes;return Y.contains(I)||(M==null?void 0:M.includes(Y))||K.find(function(le){return le===I})})},h=function(I){var R=r[I];if(typeof R=="function"){for(var M=arguments.length,U=new Array(M>1?M-1:0),Y=1;Y<M;Y++)U[Y-1]=arguments[Y];R=R.apply(void 0,U)}if(R===!0&&(R=void 0),!R){if(R===void 0||R===!1)return R;throw new Error("`".concat(I,"` was specified but was not a node, or did not return a node"))}var K=R;if(typeof R=="string"&&(K=o.querySelector(R),!K))throw new Error("`".concat(I,"` as selector refers to no known node"));return K},v=function(){var I=h("initialFocus");if(I===!1)return!1;if(I===void 0||!_l(I,r.tabbableOptions))if(d(o.activeElement)>=0)I=o.activeElement;else{var R=a.tabbableGroups[0],M=R&&R.firstTabbableNode;I=M||h("fallbackFocus")}if(!I)throw new Error("Your focus-trap needs to have at least one focusable element");return I},g=function(){if(a.containerGroups=a.containers.map(function(I){var R=T4(I,r.tabbableOptions),M=M4(I,r.tabbableOptions),U=R.length>0?R[0]:void 0,Y=R.length>0?R[R.length-1]:void 0,K=M.find(function(ue){return Qt(ue)}),le=M.slice().reverse().find(function(ue){return Qt(ue)}),ae=!!R.find(function(ue){return Gt(ue)>0});return{container:I,tabbableNodes:R,focusableNodes:M,posTabIndexesFound:ae,firstTabbableNode:U,lastTabbableNode:Y,firstDomTabbableNode:K,lastDomTabbableNode:le,nextTabbableNode:function(Ae){var Xe=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,Oe=R.indexOf(Ae);return Oe<0?Xe?M.slice(M.indexOf(Ae)+1).find(function(ct){return Qt(ct)}):M.slice(0,M.indexOf(Ae)).reverse().find(function(ct){return Qt(ct)}):R[Oe+(Xe?1:-1)]}}}),a.tabbableGroups=a.containerGroups.filter(function(I){return I.tabbableNodes.length>0}),a.tabbableGroups.length<=0&&!h("fallbackFocus"))throw new Error("Your focus-trap must have at least one container with at least one tabbable node in it at all times");if(a.containerGroups.find(function(I){return I.posTabIndexesFound})&&a.containerGroups.length>1)throw new Error("At least one node with a positive tabindex was found in one of your focus-trap's multiple containers. Positive tabindexes are only supported in single-container focus-traps.")},p=function V(I){var R=I.activeElement;if(R)return R.shadowRoot&&R.shadowRoot.activeElement!==null?V(R.shadowRoot):R},w=function V(I){if(I!==!1&&I!==p(document)){if(!I||!I.focus){V(v());return}I.focus({preventScroll:!!r.preventScroll}),a.mostRecentlyFocusedNode=I,P4(I)&&I.select()}},f=function(I){var R=h("setReturnFocus",I);return R||(R===!1?!1:I)},x=function(I){var R=I.target,M=I.event,U=I.isBackward,Y=U===void 0?!1:U;R=R||ro(M),g();var K=null;if(a.tabbableGroups.length>0){var le=d(R,M),ae=le>=0?a.containerGroups[le]:void 0;if(le<0)Y?K=a.tabbableGroups[a.tabbableGroups.length-1].lastTabbableNode:K=a.tabbableGroups[0].firstTabbableNode;else if(Y){var ue=ua(a.tabbableGroups,function(Ze){var Je=Ze.firstTabbableNode;return R===Je});if(ue<0&&(ae.container===R||_l(R,r.tabbableOptions)&&!Qt(R,r.tabbableOptions)&&!ae.nextTabbableNode(R,!1))&&(ue=le),ue>=0){var Ae=ue===0?a.tabbableGroups.length-1:ue-1,Xe=a.tabbableGroups[Ae];K=Gt(R)>=0?Xe.lastTabbableNode:Xe.lastDomTabbableNode}else Un(M)||(K=ae.nextTabbableNode(R,!1))}else{var Oe=ua(a.tabbableGroups,function(Ze){var Je=Ze.lastTabbableNode;return R===Je});if(Oe<0&&(ae.container===R||_l(R,r.tabbableOptions)&&!Qt(R,r.tabbableOptions)&&!ae.nextTabbableNode(R))&&(Oe=le),Oe>=0){var ct=Oe===a.tabbableGroups.length-1?0:Oe+1,Zt=a.tabbableGroups[ct];K=Gt(R)>=0?Zt.firstTabbableNode:Zt.firstDomTabbableNode}else Un(M)||(K=ae.nextTabbableNode(R))}}else K=h("fallbackFocus");return K},C=function(I){var R=ro(I);if(!(d(R,I)>=0)){if(_n(r.clickOutsideDeactivates,I)){s.deactivate({returnFocus:r.returnFocusOnDeactivate});return}_n(r.allowOutsideClick,I)||I.preventDefault()}},E=function(I){var R=ro(I),M=d(R,I)>=0;if(M||R instanceof Document)M&&(a.mostRecentlyFocusedNode=R);else{I.stopImmediatePropagation();var U,Y=!0;if(a.mostRecentlyFocusedNode)if(Gt(a.mostRecentlyFocusedNode)>0){var K=d(a.mostRecentlyFocusedNode),le=a.containerGroups[K].tabbableNodes;if(le.length>0){var ae=le.findIndex(function(ue){return ue===a.mostRecentlyFocusedNode});ae>=0&&(r.isKeyForward(a.recentNavEvent)?ae+1<le.length&&(U=le[ae+1],Y=!1):ae-1>=0&&(U=le[ae-1],Y=!1))}}else a.containerGroups.some(function(ue){return ue.tabbableNodes.some(function(Ae){return Gt(Ae)>0})})||(Y=!1);else Y=!1;Y&&(U=x({target:a.mostRecentlyFocusedNode,isBackward:r.isKeyBackward(a.recentNavEvent)})),w(U||a.mostRecentlyFocusedNode||v())}a.recentNavEvent=void 0},T=function(I){var R=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;a.recentNavEvent=I;var M=x({event:I,isBackward:R});M&&(Un(I)&&I.preventDefault(),w(M))},F=function(I){if(k4(I)&&_n(r.escapeDeactivates,I)!==!1){I.preventDefault(),s.deactivate();return}(r.isKeyForward(I)||r.isKeyBackward(I))&&T(I,r.isKeyBackward(I))},k=function(I){var R=ro(I);d(R,I)>=0||_n(r.clickOutsideDeactivates,I)||_n(r.allowOutsideClick,I)||(I.preventDefault(),I.stopImmediatePropagation())},q=function(){if(a.active)return ca.activateTrap(i,s),a.delayInitialFocusTimer=r.delayInitialFocus?da(function(){w(v())}):w(v()),o.addEventListener("focusin",E,!0),o.addEventListener("mousedown",C,{capture:!0,passive:!1}),o.addEventListener("touchstart",C,{capture:!0,passive:!1}),o.addEventListener("click",k,{capture:!0,passive:!1}),o.addEventListener("keydown",F,{capture:!0,passive:!1}),s},Q=function(){if(a.active)return o.removeEventListener("focusin",E,!0),o.removeEventListener("mousedown",C,!0),o.removeEventListener("touchstart",C,!0),o.removeEventListener("click",k,!0),o.removeEventListener("keydown",F,!0),s},ce=function(I){var R=I.some(function(M){var U=Array.from(M.removedNodes);return U.some(function(Y){return Y===a.mostRecentlyFocusedNode})});R&&w(v())},H=typeof window<"u"&&"MutationObserver"in window?new MutationObserver(ce):void 0,L=function(){H&&(H.disconnect(),a.active&&!a.paused&&a.containers.map(function(I){H.observe(I,{subtree:!0,childList:!0})}))};return s={get active(){return a.active},get paused(){return a.paused},activate:function(I){if(a.active)return this;var R=c(I,"onActivate"),M=c(I,"onPostActivate"),U=c(I,"checkCanFocusTrap");U||g(),a.active=!0,a.paused=!1,a.nodeFocusedBeforeActivation=o.activeElement,R==null||R();var Y=function(){U&&g(),q(),L(),M==null||M()};return U?(U(a.containers.concat()).then(Y,Y),this):(Y(),this)},deactivate:function(I){if(!a.active)return this;var R=sa({onDeactivate:r.onDeactivate,onPostDeactivate:r.onPostDeactivate,checkCanReturnFocus:r.checkCanReturnFocus},I);clearTimeout(a.delayInitialFocusTimer),a.delayInitialFocusTimer=void 0,Q(),a.active=!1,a.paused=!1,L(),ca.deactivateTrap(i,s);var M=c(R,"onDeactivate"),U=c(R,"onPostDeactivate"),Y=c(R,"checkCanReturnFocus"),K=c(R,"returnFocus","returnFocusOnDeactivate");M==null||M();var le=function(){da(function(){K&&w(f(a.nodeFocusedBeforeActivation)),U==null||U()})};return K&&Y?(Y(f(a.nodeFocusedBeforeActivation)).then(le,le),this):(le(),this)},pause:function(I){if(a.paused||!a.active)return this;var R=c(I,"onPause"),M=c(I,"onPostPause");return a.paused=!0,R==null||R(),Q(),L(),M==null||M(),this},unpause:function(I){if(!a.paused||!a.active)return this;var R=c(I,"onUnpause"),M=c(I,"onPostUnpause");return a.paused=!1,R==null||R(),g(),q(),L(),M==null||M(),this},updateContainerElements:function(I){var R=[].concat(I).filter(Boolean);return a.containers=R.map(function(M){return typeof M=="string"?o.querySelector(M):M}),a.active&&g(),L(),this}},s.updateContainerElements(n),s},N4=Me("dialog").parts("trigger","backdrop","positioner","content","title","description","closeTrigger"),$t=N4.build(),ee=qe({getPositionerId:e=>{var n;return((n=e.ids)==null?void 0:n.positioner)??`dialog:${e.id}:positioner`},getBackdropId:e=>{var n;return((n=e.ids)==null?void 0:n.backdrop)??`dialog:${e.id}:backdrop`},getContentId:e=>{var n;return((n=e.ids)==null?void 0:n.content)??`dialog:${e.id}:content`},getTriggerId:e=>{var n;return((n=e.ids)==null?void 0:n.trigger)??`dialog:${e.id}:trigger`},getTitleId:e=>{var n;return((n=e.ids)==null?void 0:n.title)??`dialog:${e.id}:title`},getDescriptionId:e=>{var n;return((n=e.ids)==null?void 0:n.description)??`dialog:${e.id}:description`},getCloseTriggerId:e=>{var n;return((n=e.ids)==null?void 0:n.closeTrigger)??`dialog:${e.id}:close`},getContentEl:e=>ee.getById(e,ee.getContentId(e)),getPositionerEl:e=>ee.getById(e,ee.getPositionerId(e)),getBackdropEl:e=>ee.getById(e,ee.getBackdropId(e)),getTriggerEl:e=>ee.getById(e,ee.getTriggerId(e)),getTitleEl:e=>ee.getById(e,ee.getTitleId(e)),getDescriptionEl:e=>ee.getById(e,ee.getDescriptionId(e)),getCloseTriggerEl:e=>ee.getById(e,ee.getCloseTriggerId(e))});function $4(e,n,t){const o=e.context["aria-label"],i=e.matches("open"),r=e.context.renderedElements;return{open:i,setOpen(a){a!==i&&n(a?"OPEN":"CLOSE")},getTriggerProps(){return t.button({...$t.trigger.attrs,dir:e.context.dir,id:ee.getTriggerId(e.context),"aria-haspopup":"dialog",type:"button","aria-expanded":i,"data-state":i?"open":"closed","aria-controls":ee.getContentId(e.context),onClick(a){a.defaultPrevented||n("TOGGLE")}})},getBackdropProps(){return t.element({...$t.backdrop.attrs,dir:e.context.dir,hidden:!i,id:ee.getBackdropId(e.context),"data-state":i?"open":"closed"})},getPositionerProps(){return t.element({...$t.positioner.attrs,dir:e.context.dir,id:ee.getPositionerId(e.context),style:{pointerEvents:i?void 0:"none"}})},getContentProps(){return t.element({...$t.content.attrs,dir:e.context.dir,role:e.context.role,hidden:!i,id:ee.getContentId(e.context),tabIndex:-1,"data-state":i?"open":"closed","aria-modal":!0,"aria-label":o||void 0,"aria-labelledby":o||!r.title?void 0:ee.getTitleId(e.context),"aria-describedby":r.description?ee.getDescriptionId(e.context):void 0})},getTitleProps(){return t.element({...$t.title.attrs,dir:e.context.dir,id:ee.getTitleId(e.context)})},getDescriptionProps(){return t.element({...$t.description.attrs,dir:e.context.dir,id:ee.getDescriptionId(e.context)})},getCloseTriggerProps(){return t.button({...$t.closeTrigger.attrs,dir:e.context.dir,id:ee.getCloseTriggerId(e.context),type:"button",onClick(a){a.defaultPrevented||(a.stopPropagation(),n("CLOSE"))}})}}}function H4(e){const n=ze(e);return ke({id:"dialog",initial:n.open?"open":"closed",context:{role:"dialog",renderedElements:{title:!0,description:!0},modal:!0,trapFocus:!0,preventScroll:!0,closeOnInteractOutside:!0,closeOnEscape:!0,restoreFocus:!0,...n},created:["checkInitialFocusEl"],watch:{open:["toggleVisibility"]},states:{open:{entry:["checkRenderedElements","syncZIndex"],activities:["trackDismissableElement","trapFocus","preventScroll","hideContentBelow"],on:{"CONTROLLED.CLOSE":{target:"closed",actions:["setFinalFocus"]},CLOSE:[{guard:"isOpenControlled",actions:["invokeOnClose"]},{target:"closed",actions:["invokeOnClose","setFinalFocus"]}],TOGGLE:[{guard:"isOpenControlled",actions:["invokeOnClose"]},{target:"closed",actions:["invokeOnClose","setFinalFocus"]}]}},closed:{on:{"CONTROLLED.OPEN":{target:"open"},OPEN:[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{target:"open",actions:["invokeOnOpen"]}],TOGGLE:[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{target:"open",actions:["invokeOnOpen"]}]}}}},{guards:{isOpenControlled:t=>!!t["open.controlled"]},activities:{trackDismissableElement(t,o,{send:i}){return Yo(()=>ee.getContentEl(t),{defer:!0,pointerBlocking:t.modal,exclude:[ee.getTriggerEl(t)],onInteractOutside(a){var s;(s=t.onInteractOutside)==null||s.call(t,a),(!t.closeOnInteractOutside||t.role==="alertdialog")&&a.preventDefault()},persistentElements:t.persistentElements,onFocusOutside:t.onFocusOutside,onPointerDownOutside:t.onPointerDownOutside,onEscapeKeyDown(a){var s;(s=t.onEscapeKeyDown)==null||s.call(t,a),t.closeOnEscape?i({type:"CLOSE",src:"escape-key"}):a.preventDefault()},onDismiss(){i({type:"CLOSE",src:"interact-outside"})}})},preventScroll(t){if(t.preventScroll)return h4(ee.getDoc(t))},trapFocus(t){if(!t.trapFocus||!t.modal)return;let o;const i=wo(()=>{const r=ee.getContentEl(t);if(r){o=_4(r,{document:ee.getDoc(t),escapeDeactivates:!1,preventScroll:!0,returnFocusOnDeactivate:!1,fallbackFocus:r,allowOutsideClick:!0,initialFocus:Oi({root:r,getInitialEl:t.initialFocusEl})});try{o.activate()}catch{}}});return()=>{o==null||o.deactivate(),i()}},hideContentBelow(t){return t.modal?Qs(()=>[ee.getContentEl(t)],{defer:!0}):void 0}},actions:{checkInitialFocusEl(t){!t.initialFocusEl&&t.role==="alertdialog"&&(t.initialFocusEl=()=>ee.getCloseTriggerEl(t))},checkRenderedElements(t){te(()=>{t.renderedElements.title=!!ee.getTitleEl(t),t.renderedElements.description=!!ee.getDescriptionEl(t)})},syncZIndex(t){te(()=>{const o=ee.getContentEl(t);if(!o)return;const r=ee.getWin(t).getComputedStyle(o);[ee.getPositionerEl(t),ee.getBackdropEl(t)].forEach(s=>{s==null||s.style.setProperty("--z-index",r.zIndex)})})},invokeOnClose(t){var o;(o=t.onOpenChange)==null||o.call(t,{open:!1})},invokeOnOpen(t){var o;(o=t.onOpenChange)==null||o.call(t,{open:!0})},toggleVisibility(t,o,{send:i}){i({type:t.open?"CONTROLLED.OPEN":"CONTROLLED.CLOSE",previousEvent:o})},setFinalFocus(t){t.restoreFocus&&queueMicrotask(()=>{var i;const o=((i=t.finalFocusEl)==null?void 0:i.call(t))??ee.getTriggerEl(t);o==null||o.focus({preventScroll:!0})})}}})}me()(["aria-label","closeOnEscape","closeOnInteractOutside","dir","finalFocusEl","getRootNode","getRootNode","id","id","ids","initialFocusEl","modal","onEscapeKeyDown","onFocusOutside","onInteractOutside","onOpenChange","onPointerDownOutside","open.controlled","open","persistentElements","preventScroll","restoreFocus","role","trapFocus"]);const D4=(e={})=>{const{getRootNode:n}=Ye(),{dir:t}=it(),o={id:S.useId(),getRootNode:n,dir:t,open:e.defaultOpen,"open.controlled":e.open!==void 0,...e},i={...o,open:e.open,onOpenChange:ge(e.onOpenChange,{sync:!0}),onEscapeKeyDown:ge(e.onEscapeKeyDown),onInteractOutside:ge(e.onInteractOutside)},[r,a]=We(H4(o),{context:i});return $4(r,a,Be)},s0=e=>{const[n,{children:t,...o}]=Go(e),[i]=Gi(n),r=D4(o),a=Jn(A({present:r.open},n));return m.jsx(c4,{value:r,children:m.jsx(Wi,{value:i,children:m.jsx(Wo,{value:a,children:t})})})},c0=S.forwardRef((e,n)=>{const t=vn(),o=A(t.getTitleProps(),e);return m.jsx(W.h2,{...o,ref:n})});c0.displayName="DialogTitle";const[j4,mn]=re({name:"MenuContext",hookName:"useMenuContext",providerName:"<MenuProvider />",strict:!1}),[W4,qE]=re({name:"MenuItemContext",hookName:"useMenuItemContext",providerName:"<MenuItemProvider />"}),d0=S.forwardRef((e,n)=>{const t=mn(),o=Et(),i=A(t.getContentProps(),o.getPresenceProps(n),e);return o.unmounted?null:m.jsx(W.div,{...i})});d0.displayName="MenuContent";const u0=S.forwardRef((e,n)=>{const[t,o]=pe()(e,["closeOnSelect","disabled","value","valueText"]),i=mn(),r=A(i.getItemProps(t),o),a=i.getItemState(t);return m.jsx(W4,{value:a,children:m.jsx(W.div,{...r,ref:n})})});u0.displayName="MenuItem";const[G4,YE]=re({name:"MenuItemGroupContext",hookName:"useMenuItemGroupContext",providerName:"<MenuItemGroupProvider />"}),h0=S.forwardRef((e,n)=>{const[t,o]=pe()(e,["id"]),i=mn(),a={id:S.useId(),...t},s=A(i.getItemGroupProps(a),o);return m.jsx(G4,{value:a,children:m.jsx(W.div,{...s,ref:n})})});h0.displayName="MenuItemGroup";const g0=S.forwardRef((e,n)=>{const t=mn(),o=A(t.getPositionerProps(),e);return Et().unmounted?null:m.jsx(W.div,{...o,ref:n})});g0.displayName="MenuPositioner";const U4=e=>{const n=S.useRef(e),t=S.useRef(!1);S.useEffect(()=>{n.current=e}),S.useEffect(()=>{t.current!==!0&&(t.current=!0,n.current())},[])};var Wn=(e,n)=>({x:e,y:n});function K4(e){const{x:n,y:t,width:o,height:i}=e,r=n+o/2,a=t+i/2;return{x:n,y:t,width:o,height:i,minX:n,minY:t,maxX:n+o,maxY:t+i,midX:r,midY:a,center:Wn(r,a)}}function q4(e){const n=Wn(e.minX,e.minY),t=Wn(e.maxX,e.minY),o=Wn(e.maxX,e.maxY),i=Wn(e.minX,e.maxY);return{top:n,right:t,bottom:o,left:i}}function Y4(e,n){const t=K4(e),{top:o,right:i,left:r,bottom:a}=q4(t),[s]=n.split("-");return{top:[r,o,i,a],right:[o,i,a,r],bottom:[o,r,a,i],left:[i,o,r,a]}[s]}function X4(e,n){const{x:t,y:o}=n;let i=!1;for(let r=0,a=e.length-1;r<e.length;a=r++){const s=e[r].x,c=e[r].y,d=e[a].x,h=e[a].y;c>o!=h>o&&t<(d-s)*(o-c)/(h-c)+s&&(i=!i)}return i}var Z4=Me("menu").parts("arrow","arrowTip","content","contextTrigger","indicator","item","itemGroup","itemGroupLabel","itemIndicator","itemText","positioner","separator","trigger","triggerItem"),Ie=Z4.build(),D=qe({getTriggerId:e=>{var n;return((n=e.ids)==null?void 0:n.trigger)??`menu:${e.id}:trigger`},getContextTriggerId:e=>{var n;return((n=e.ids)==null?void 0:n.contextTrigger)??`menu:${e.id}:ctx-trigger`},getContentId:e=>{var n;return((n=e.ids)==null?void 0:n.content)??`menu:${e.id}:content`},getArrowId:e=>{var n;return((n=e.ids)==null?void 0:n.arrow)??`menu:${e.id}:arrow`},getPositionerId:e=>{var n;return((n=e.ids)==null?void 0:n.positioner)??`menu:${e.id}:popper`},getGroupId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.group)==null?void 0:o.call(t,n))??`menu:${e.id}:group:${n}`},getGroupLabelId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.groupLabel)==null?void 0:o.call(t,n))??`menu:${e.id}:group-label:${n}`},getContentEl:e=>D.getById(e,D.getContentId(e)),getPositionerEl:e=>D.getById(e,D.getPositionerId(e)),getTriggerEl:e=>D.getById(e,D.getTriggerId(e)),getHighlightedItemEl:e=>e.highlightedValue?D.getById(e,e.highlightedValue):null,getArrowEl:e=>D.getById(e,D.getArrowId(e)),getElements:e=>{const t=`[role^="menuitem"][data-ownedby=${CSS.escape(D.getContentId(e))}]:not([data-disabled])`;return Zn(D.getContentEl(e),t)},getFirstEl:e=>Ai(D.getElements(e)),getLastEl:e=>Li(D.getElements(e)),getNextEl:(e,n)=>Si(D.getElements(e),e.highlightedValue,n??e.loopFocus),getPrevEl:(e,n)=>Ii(D.getElements(e),e.highlightedValue,n??e.loopFocus),getElemByKey:(e,n)=>qn(D.getElements(e),{state:e.typeaheadState,key:n,activeId:e.highlightedValue}),isTargetDisabled:e=>nt(e)&&(e.dataset.disabled===""||e.hasAttribute("disabled")),isTriggerItem:e=>{var n;return!!((n=e==null?void 0:e.getAttribute("role"))!=null&&n.startsWith("menuitem"))&&!!(e!=null&&e.hasAttribute("aria-controls"))},getOptionFromItemEl(e){return{id:e.id,name:e.dataset.name,value:e.dataset.value,valueText:e.dataset.valueText,type:e.dataset.type}}});function J4(e,n,t){const o=e.context.isSubmenu,i=e.context.isTypingAhead,r=e.context.composite,a=e.hasTag("open"),s=lr({...e.context.positioning,placement:e.context.anchorPoint?"bottom":e.context.currentPlacement});function c(g){return{disabled:!!g.disabled,highlighted:e.context.highlightedValue===g.value}}function d(g){const p=g.valueText??g.value;return{...g,id:g.value,valueText:p}}function h(g){return{...c(d(g)),checked:!!g.checked}}function v(g){const{value:p,closeOnSelect:w,valueText:f}=g,x=c(g);return t.element({...Ie.item.attrs,id:p,role:"menuitem","aria-disabled":x.disabled,"data-disabled":O(x.disabled),"data-ownedby":D.getContentId(e.context),"data-highlighted":O(x.highlighted),"data-valuetext":f,onDragStart(C){C.currentTarget.matches("a[href]")&&C.preventDefault()},onPointerMove(C){if(x.disabled||C.pointerType!=="mouse")return;const E=C.currentTarget;x.highlighted||n({type:"ITEM_POINTERMOVE",id:p,target:E,closeOnSelect:w})},onPointerLeave(C){if(x.disabled||C.pointerType!=="mouse"||!e.previousEvent.type.includes("POINTER"))return;const T=C.currentTarget;n({type:"ITEM_POINTERLEAVE",id:p,target:T,closeOnSelect:w})},onPointerDown(C){if(x.disabled)return;const E=C.currentTarget;n({type:"ITEM_POINTERDOWN",target:E,id:p,closeOnSelect:w})},onClick(C){if(Wl(C)||jl(C)||x.disabled)return;const E=C.currentTarget;n({type:"ITEM_CLICK",target:E,id:p,closeOnSelect:w})}})}return{highlightedValue:e.context.highlightedValue,open:a,setOpen(g){g!==a&&n(g?"OPEN":"CLOSE")},setHighlightedValue(g){n({type:"HIGHLIGHTED.SET",id:g})},setParent(g){n({type:"PARENT.SET",value:g,id:g.state.context.id})},setChild(g){n({type:"CHILD.SET",value:g,id:g.state.context.id})},reposition(g={}){n({type:"POSITIONING.SET",options:g})},getContextTriggerProps(){return t.element({...Ie.contextTrigger.attrs,dir:e.context.dir,id:D.getContextTriggerId(e.context),onPointerDown(g){if(g.pointerType==="mouse")return;const p=ho(g);n({type:"CONTEXT_MENU_START",point:p})},onPointerCancel(g){g.pointerType!=="mouse"&&n("CONTEXT_MENU_CANCEL")},onPointerMove(g){g.pointerType!=="mouse"&&n("CONTEXT_MENU_CANCEL")},onPointerUp(g){g.pointerType!=="mouse"&&n("CONTEXT_MENU_CANCEL")},onContextMenu(g){const p=ho(g);n({type:"CONTEXT_MENU",point:p}),g.preventDefault()},style:{WebkitTouchCallout:"none",WebkitUserSelect:"none",userSelect:"none"}})},getTriggerItemProps(g){return A(v({value:g.getTriggerProps().id}),g.getTriggerProps())},getTriggerProps(){return t.button({...o?Ie.triggerItem.attrs:Ie.trigger.attrs,"data-placement":e.context.currentPlacement,type:"button",dir:e.context.dir,id:D.getTriggerId(e.context),"data-uid":e.context.id,"aria-haspopup":r?"menu":"dialog","aria-controls":D.getContentId(e.context),"aria-expanded":a||void 0,"data-state":a?"open":"closed",onPointerMove(g){g.pointerType!=="mouse"||D.isTargetDisabled(g.currentTarget)||!o||n({type:"TRIGGER_POINTERMOVE",target:g.currentTarget})},onPointerLeave(g){if(D.isTargetDisabled(g.currentTarget)||g.pointerType!=="mouse"||!o)return;const p=ho(g);n({type:"TRIGGER_POINTERLEAVE",target:g.currentTarget,point:p})},onPointerDown(g){D.isTargetDisabled(g.currentTarget)||Pi(g)||g.preventDefault()},onClick(g){g.defaultPrevented||D.isTargetDisabled(g.currentTarget)||n({type:"TRIGGER_CLICK",target:g.currentTarget})},onBlur(){n("TRIGGER_BLUR")},onFocus(){n("TRIGGER_FOCUS")},onKeyDown(g){if(g.defaultPrevented)return;const p={ArrowDown(){n("ARROW_DOWN")},ArrowUp(){n("ARROW_UP")},Enter(){n({type:"ARROW_DOWN",src:"enter"})},Space(){n({type:"ARROW_DOWN",src:"space"})}},w=It(g,e.context),f=p[w];f&&(g.preventDefault(),f(g))}})},getIndicatorProps(){return t.element({...Ie.indicator.attrs,dir:e.context.dir,"data-state":a?"open":"closed"})},getPositionerProps(){return t.element({...Ie.positioner.attrs,dir:e.context.dir,id:D.getPositionerId(e.context),style:s.floating})},getArrowProps(){return t.element({id:D.getArrowId(e.context),...Ie.arrow.attrs,dir:e.context.dir,style:s.arrow})},getArrowTipProps(){return t.element({...Ie.arrowTip.attrs,dir:e.context.dir,style:s.arrowTip})},getContentProps(){return t.element({...Ie.content.attrs,id:D.getContentId(e.context),"aria-label":e.context["aria-label"],hidden:!a,"data-state":a?"open":"closed",role:r?"menu":"dialog",tabIndex:0,dir:e.context.dir,"aria-activedescendant":e.context.highlightedValue??void 0,"aria-labelledby":D.getTriggerId(e.context),"data-placement":e.context.currentPlacement,onPointerEnter(g){g.pointerType==="mouse"&&n("MENU_POINTERENTER")},onKeyDown(g){if(g.defaultPrevented||!Ci(g))return;const p=St(g);if(!((p==null?void 0:p.closest("[role=menu]"))===g.currentTarget||p===g.currentTarget))return;if(g.key==="Tab"&&!qa(g)){g.preventDefault();return}const f=D.getHighlightedItemEl(e.context),x={ArrowDown(){n("ARROW_DOWN")},ArrowUp(){n("ARROW_UP")},ArrowLeft(){n("ARROW_LEFT")},ArrowRight(){n("ARROW_RIGHT")},Enter(){n("ENTER"),Bi(f)},Space(T){var F;i?n({type:"TYPEAHEAD",key:T.key}):(F=x.Enter)==null||F.call(x,T)},Home(){n("HOME")},End(){n("END")}},C=It(g,{dir:e.context.dir}),E=x[C];if(E){E(g),g.stopPropagation(),g.preventDefault();return}e.context.typeahead&&Lc(g)&&(_c(g)||Vi(p)||(n({type:"TYPEAHEAD",key:g.key}),g.preventDefault()))}})},getSeparatorProps(){return t.element({...Ie.separator.attrs,role:"separator",dir:e.context.dir,"aria-orientation":"horizontal"})},getItemState:c,getItemProps:v,getOptionItemState:h,getOptionItemProps(g){const{type:p,disabled:w,onCheckedChange:f,closeOnSelect:x}=g,C=d(g),E=h(g);return{...v(C),...t.element({"data-type":p,...Ie.item.attrs,dir:e.context.dir,"data-value":C.value,role:`menuitem${p}`,"aria-checked":!!E.checked,"data-state":E.checked?"checked":"unchecked",onClick(T){if(w||Wl(T)||jl(T))return;const F=T.currentTarget;n({type:"ITEM_CLICK",target:F,option:C,closeOnSelect:x}),f==null||f(!E.checked)}})}},getItemIndicatorProps(g){const p=h(g);return t.element({...Ie.itemIndicator.attrs,dir:e.context.dir,"data-disabled":O(p.disabled),"data-highlighted":O(p.highlighted),"data-state":p.checked?"checked":"unchecked",hidden:!p.checked})},getItemTextProps(g){const p=h(g);return t.element({...Ie.itemText.attrs,dir:e.context.dir,"data-disabled":O(p.disabled),"data-highlighted":O(p.highlighted),"data-state":p.checked?"checked":"unchecked"})},getItemGroupLabelProps(g){return t.element({id:D.getGroupLabelId(e.context,g.htmlFor),dir:e.context.dir,...Ie.itemGroupLabel.attrs})},getItemGroupProps(g){return t.element({id:D.getGroupId(e.context,g.id),...Ie.itemGroup.attrs,dir:e.context.dir,"aria-labelledby":D.getGroupLabelId(e.context,g.id),role:"group"})}}}var{not:Ue,and:en,or:Q4}=wt;function e8(e){const n=ze(e);return ke({id:"menu",initial:n.open?"open":"idle",context:{highlightedValue:null,loopFocus:!1,anchorPoint:null,closeOnSelect:!0,typeahead:!0,composite:!0,...n,positioning:{placement:"bottom-start",gutter:8,...n.positioning},intentPolygon:null,parent:null,lastHighlightedValue:null,children:Kc(De({})),suspendPointer:!1,restoreFocus:!0,typeaheadState:qn.defaultOptions},computed:{isSubmenu:t=>t.parent!==null,isRtl:t=>t.dir==="rtl",isTypingAhead:t=>t.typeaheadState.keysSoFar!==""},watch:{isSubmenu:"setSubmenuPlacement",anchorPoint:"reposition",open:"toggleVisibility"},on:{"PARENT.SET":{actions:"setParentMenu"},"CHILD.SET":{actions:"setChildMenu"},OPEN:[{guard:"isOpenControlled",actions:"invokeOnOpen"},{target:"open",actions:"invokeOnOpen"}],OPEN_AUTOFOCUS:[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{internal:!0,target:"open",actions:["highlightFirstItem","invokeOnOpen"]}],CLOSE:[{guard:"isOpenControlled",actions:"invokeOnClose"},{target:"closed",actions:"invokeOnClose"}],"HIGHLIGHTED.RESTORE":{actions:"restoreHighlightedItem"},"HIGHLIGHTED.SET":{actions:"setHighlightedItem"}},states:{idle:{tags:["closed"],on:{"CONTROLLED.OPEN":"open","CONTROLLED.CLOSE":"closed",CONTEXT_MENU_START:{target:"opening:contextmenu",actions:"setAnchorPoint"},CONTEXT_MENU:[{guard:"isOpenControlled",actions:["setAnchorPoint","invokeOnOpen"]},{target:"open",actions:["setAnchorPoint","invokeOnOpen"]}],TRIGGER_CLICK:[{guard:"isOpenControlled",actions:"invokeOnOpen"},{target:"open",actions:"invokeOnOpen"}],TRIGGER_FOCUS:{guard:Ue("isSubmenu"),target:"closed"},TRIGGER_POINTERMOVE:{guard:"isSubmenu",target:"opening"}}},"opening:contextmenu":{tags:["closed"],after:{LONG_PRESS_DELAY:[{guard:"isOpenControlled",actions:"invokeOnOpen"},{target:"open",actions:"invokeOnOpen"}]},on:{"CONTROLLED.OPEN":"open","CONTROLLED.CLOSE":"closed",CONTEXT_MENU_CANCEL:[{guard:"isOpenControlled",actions:"invokeOnClose"},{target:"closed",actions:"invokeOnClose"}]}},opening:{tags:["closed"],after:{SUBMENU_OPEN_DELAY:[{guard:"isOpenControlled",actions:"invokeOnOpen"},{target:"open",actions:"invokeOnOpen"}]},on:{"CONTROLLED.OPEN":"open","CONTROLLED.CLOSE":"closed",BLUR:[{guard:"isOpenControlled",actions:"invokeOnClose"},{target:"closed",actions:"invokeOnClose"}],TRIGGER_POINTERLEAVE:[{guard:"isOpenControlled",actions:"invokeOnClose"},{target:"closed",actions:"invokeOnClose"}]}},closing:{tags:["open"],activities:["trackPointerMove","trackInteractOutside"],after:{SUBMENU_CLOSE_DELAY:[{guard:"isOpenControlled",actions:["invokeOnClose"]},{target:"closed",actions:["focusParentMenu","restoreParentHiglightedItem","invokeOnClose"]}]},on:{"CONTROLLED.OPEN":"open","CONTROLLED.CLOSE":{target:"closed",actions:["focusParentMenu","restoreParentHiglightedItem"]},MENU_POINTERENTER:{target:"open",actions:"clearIntentPolygon"},POINTER_MOVED_AWAY_FROM_SUBMENU:[{guard:"isOpenControlled",actions:"invokeOnClose"},{target:"closed",actions:["focusParentMenu","restoreParentHiglightedItem"]}]}},closed:{tags:["closed"],entry:["clearHighlightedItem","focusTrigger","resumePointer"],on:{"CONTROLLED.OPEN":[{guard:Q4("isOpenAutoFocusEvent","isArrowDownEvent"),target:"open",actions:"highlightFirstItem"},{guard:"isArrowUpEvent",target:"open",actions:"highlightLastItem"},{target:"open"}],CONTEXT_MENU_START:{target:"opening:contextmenu",actions:"setAnchorPoint"},CONTEXT_MENU:[{guard:"isOpenControlled",actions:["setAnchorPoint","invokeOnOpen"]},{target:"open",actions:["setAnchorPoint","invokeOnOpen"]}],TRIGGER_CLICK:[{guard:"isOpenControlled",actions:"invokeOnOpen"},{target:"open",actions:"invokeOnOpen"}],TRIGGER_POINTERMOVE:{guard:"isTriggerItem",target:"opening"},TRIGGER_BLUR:"idle",ARROW_DOWN:[{guard:"isOpenControlled",actions:"invokeOnOpen"},{target:"open",actions:["highlightFirstItem","invokeOnOpen"]}],ARROW_UP:[{guard:"isOpenControlled",actions:"invokeOnOpen"},{target:"open",actions:["highlightLastItem","invokeOnOpen"]}]}},open:{tags:["open"],activities:["trackInteractOutside","trackPositioning","scrollToHighlightedItem"],entry:["focusMenu","resumePointer"],on:{"CONTROLLED.CLOSE":[{target:"closed",guard:"isArrowLeftEvent",actions:["focusParentMenu"]},{target:"closed"}],TRIGGER_CLICK:[{guard:en(Ue("isTriggerItem"),"isOpenControlled"),actions:"invokeOnClose"},{guard:Ue("isTriggerItem"),target:"closed",actions:"invokeOnClose"}],ARROW_UP:{actions:["highlightPrevItem","focusMenu"]},ARROW_DOWN:{actions:["highlightNextItem","focusMenu"]},ARROW_LEFT:[{guard:en("isSubmenu","isOpenControlled"),actions:"invokeOnClose"},{guard:"isSubmenu",target:"closed",actions:["focusParentMenu","invokeOnClose"]}],HOME:{actions:["highlightFirstItem","focusMenu"]},END:{actions:["highlightLastItem","focusMenu"]},ARROW_RIGHT:{guard:"isTriggerItemHighlighted",actions:"openSubmenu"},ENTER:[{guard:"isTriggerItemHighlighted",actions:"openSubmenu"},{actions:"clickHighlightedItem"}],ITEM_POINTERMOVE:[{guard:Ue("suspendPointer"),actions:["setHighlightedItem","focusMenu"]},{actions:"setLastHighlightedItem"}],ITEM_POINTERLEAVE:{guard:en(Ue("suspendPointer"),Ue("isTriggerItem")),actions:"clearHighlightedItem"},ITEM_CLICK:[{guard:en(Ue("isTriggerItemHighlighted"),Ue("isHighlightedItemEditable"),"closeOnSelect","isOpenControlled"),actions:["invokeOnSelect","setOptionState","closeRootMenu","invokeOnClose"]},{guard:en(Ue("isTriggerItemHighlighted"),Ue("isHighlightedItemEditable"),"closeOnSelect"),target:"closed",actions:["invokeOnSelect","setOptionState","closeRootMenu","invokeOnClose"]},{guard:en(Ue("isTriggerItemHighlighted"),Ue("isHighlightedItemEditable")),actions:["invokeOnSelect","setOptionState"]},{actions:"setHighlightedItem"}],TRIGGER_POINTERLEAVE:{target:"closing",actions:"setIntentPolygon"},ITEM_POINTERDOWN:{actions:"setHighlightedItem"},TYPEAHEAD:{actions:"highlightMatchedItem"},FOCUS_MENU:{actions:"focusMenu"},"POSITIONING.SET":{actions:"reposition"}}}}},{delays:{LONG_PRESS_DELAY:700,SUBMENU_OPEN_DELAY:100,SUBMENU_CLOSE_DELAY:100},guards:{closeOnSelect:(t,o)=>!!((o==null?void 0:o.closeOnSelect)??t.closeOnSelect),isTriggerItem:(t,o)=>D.isTriggerItem(o.target),isTriggerItemHighlighted:(t,o)=>{const i=o.target??D.getHighlightedItemEl(t);return!!(i!=null&&i.hasAttribute("aria-controls"))},isSubmenu:t=>t.isSubmenu,suspendPointer:t=>t.suspendPointer,isHighlightedItemEditable:t=>Vi(D.getHighlightedItemEl(t)),isWithinPolygon:(t,o)=>t.intentPolygon?X4(t.intentPolygon,o.point):!1,isOpenControlled:t=>!!t["open.controlled"],isArrowLeftEvent:(t,o)=>{var i;return((i=o.previousEvent)==null?void 0:i.type)==="ARROW_LEFT"},isArrowUpEvent:(t,o)=>{var i;return((i=o.previousEvent)==null?void 0:i.type)==="ARROW_UP"},isArrowDownEvent:(t,o)=>{var i;return((i=o.previousEvent)==null?void 0:i.type)==="ARROW_DOWN"},isOpenAutoFocusEvent:(t,o)=>{var i;return((i=o.previousEvent)==null?void 0:i.type)==="OPEN_AUTOFOCUS"}},activities:{trackPositioning(t){if(t.anchorPoint)return;t.currentPlacement=t.positioning.placement;const o=()=>D.getPositionerEl(t);return sn(D.getTriggerEl(t),o,{...t.positioning,defer:!0,onComplete(i){t.currentPlacement=i.placement}})},trackInteractOutside(t,o,{send:i}){return Yo(()=>D.getContentEl(t),{defer:!0,exclude:[D.getTriggerEl(t)],onInteractOutside:t.onInteractOutside,onFocusOutside:t.onFocusOutside,onEscapeKeyDown(a){var s;(s=t.onEscapeKeyDown)==null||s.call(t,a),t.isSubmenu&&a.preventDefault(),ha(t)},onPointerDownOutside(a){var s;t.restoreFocus=!a.detail.focusable,(s=t.onPointerDownOutside)==null||s.call(t,a)},onDismiss(){i({type:"CLOSE",src:"interact-outside"})}})},trackPointerMove(t,o,{guards:i,send:r}){const{isWithinPolygon:a}=i;t.parent.state.context.suspendPointer=!0;const s=D.getDoc(t);return be(s,"pointermove",c=>{const d={x:c.clientX,y:c.clientY};a(t,{point:d})||(r("POINTER_MOVED_AWAY_FROM_SUBMENU"),t.parent.state.context.suspendPointer=!1)})},scrollToHighlightedItem(t,o,{getState:i}){const r=()=>{if(i().event.type.startsWith("ITEM_POINTER"))return;const c=D.getHighlightedItemEl(t),d=D.getContentEl(t);Fi(c,{rootEl:d,block:"nearest"})};return te(()=>r()),No(()=>D.getContentEl(t),{defer:!0,attributes:["aria-activedescendant"],callback:r})}},actions:{setAnchorPoint(t,o){t.anchorPoint=o.point},setSubmenuPlacement(t){t.isSubmenu&&(t.positioning.placement=t.isRtl?"left-start":"right-start",t.positioning.gutter=0)},reposition(t,o){const i=()=>D.getPositionerEl(t),r=t.anchorPoint?()=>({width:0,height:0,...t.anchorPoint}):void 0;sn(D.getTriggerEl(t),i,{...t.positioning,defer:!0,getAnchorRect:r,...o.options??{},listeners:!1,onComplete(a){t.currentPlacement=a.placement}})},setOptionState(t,o){if(!o.option)return;const{checked:i,onCheckedChange:r,type:a}=o.option;a==="radio"?r==null||r(!0):a==="checkbox"&&(r==null||r(!i))},clickHighlightedItem(t,o){const i=D.getHighlightedItemEl(t);!i||i.dataset.disabled||queueMicrotask(()=>i.click())},setIntentPolygon(t,o){const i=D.getContentEl(t),r=t.currentPlacement;if(!i||!r)return;const a=i.getBoundingClientRect(),s=Y4(a,r);if(!s)return;const d=S5(r)==="right"?-5:5;t.intentPolygon=[{...o.point,x:o.point.x+d},...s]},clearIntentPolygon(t){t.intentPolygon=null},resumePointer(t){t.parent&&(t.parent.state.context.suspendPointer=!1)},setHighlightedItem(t,o){xt.highlighted(t,o.id)},clearHighlightedItem(t){xt.highlighted(t,null)},focusMenu(t){te(()=>{const o=D.getContentEl(t),i=Oi({root:o,enabled:!Rt(o,D.getActiveElement(t)),filter(r){var a;return!((a=r.role)!=null&&a.startsWith("menuitem"))}});i==null||i.focus({preventScroll:!0})})},highlightFirstItem(t){const o=D.getFirstEl(t);o&&xt.highlighted(t,o.id)},highlightLastItem(t){const o=D.getLastEl(t);o&&xt.highlighted(t,o.id)},highlightNextItem(t,o){const i=D.getNextEl(t,o.loop);xt.highlighted(t,(i==null?void 0:i.id)??null)},highlightPrevItem(t,o){const i=D.getPrevEl(t,o.loop);xt.highlighted(t,(i==null?void 0:i.id)??null)},invokeOnSelect(t){var o;t.highlightedValue&&((o=t.onSelect)==null||o.call(t,{value:t.highlightedValue}))},focusTrigger(t){t.isSubmenu||t.anchorPoint||!t.restoreFocus||queueMicrotask(()=>{var o;return(o=D.getTriggerEl(t))==null?void 0:o.focus({preventScroll:!0})})},highlightMatchedItem(t,o){const i=D.getElemByKey(t,o.key);i&&xt.highlighted(t,i.id)},setParentMenu(t,o){t.parent=De(o.value)},setChildMenu(t,o){t.children[o.id]=De(o.value)},closeRootMenu(t){ha(t)},openSubmenu(t){const o=D.getHighlightedItemEl(t),i=o==null?void 0:o.getAttribute("data-uid"),r=i?t.children[i]:null;r==null||r.send("OPEN_AUTOFOCUS")},focusParentMenu(t){var o;(o=t.parent)==null||o.send("FOCUS_MENU")},setLastHighlightedItem(t,o){t.lastHighlightedValue=o.id},restoreHighlightedItem(t){t.lastHighlightedValue&&(xt.highlighted(t,t.lastHighlightedValue),t.lastHighlightedValue=null)},restoreParentHiglightedItem(t){var o;(o=t.parent)==null||o.send("HIGHLIGHTED.RESTORE")},invokeOnOpen(t){var o;(o=t.onOpenChange)==null||o.call(t,{open:!0})},invokeOnClose(t){var o;(o=t.onOpenChange)==null||o.call(t,{open:!1})},toggleVisibility(t,o,{send:i}){i({type:t.open?"CONTROLLED.OPEN":"CONTROLLED.CLOSE",previousEvent:o})}}})}function ha(e){let n=e.parent;for(;n&&n.state.context.isSubmenu;)n=n.state.context.parent;n==null||n.send("CLOSE")}var xt={highlighted(e,n){var t;Ce(e.highlightedValue,n)||(e.highlightedValue=n,(t=e.onHighlightChange)==null||t.call(e,{highlightedValue:n}))}};me()(["anchorPoint","aria-label","closeOnSelect","dir","getRootNode","highlightedValue","id","ids","loopFocus","onFocusOutside","onInteractOutside","onOpenChange","onPointerDownOutside","onEscapeKeyDown","onSelect","onHighlightChange","open","open.controlled","positioning","typeahead","composite"]);me()(["closeOnSelect","disabled","value","valueText"]);me()(["htmlFor"]);me()(["id"]);me()(["disabled","valueText","closeOnSelect","type","value","checked","onCheckedChange"]);const t8=(e={})=>{const{getRootNode:n}=Ye(),{dir:t}=it(),o={id:S.useId(),dir:t,getRootNode:n,open:e.defaultOpen,"open.controlled":e.open!==void 0,...e},i={...o,onOpenChange:ge(e.onOpenChange),onSelect:ge(e.onSelect)},[r,a,s]=We(e8(o),{context:i});return{api:J4(r,a,Be),machine:s}},[n8,o8]=re({name:"MenuMachineContext",hookName:"useMenuMachineContext",providerName:"<MenuMachineProvider />",strict:!1}),[l8,XE]=re({name:"MenuMachineContext",hookName:"useMenuMachineContext",providerName:"<MenuMachineProvider />",strict:!1}),i8=e=>{const[n,t]=Go(e),[o,i]=pe()(t,["anchorPoint","aria-label","closeOnSelect","composite","defaultOpen","highlightedValue","id","ids","loopFocus","onEscapeKeyDown","onFocusOutside","onHighlightChange","onInteractOutside","onOpenChange","onPointerDownOutside","onSelect","open","positioning","typeahead"]),r=mn(),a=o8(),{api:s,machine:c}=t8(o),d=Jn(A({present:s.open},n));U4(()=>{a&&r&&(r.setChild(c),s.setParent(a))});const h=S.useCallback(()=>r==null?void 0:r.getTriggerItemProps(s),[s,r]);return m.jsx(l8,{value:h,children:m.jsx(n8,{value:c,children:m.jsx(j4,{value:s,children:m.jsx(Wo,{value:d,...i})})})})},v0=S.forwardRef((e,n)=>{const t=mn(),o=Et(),i=A({...t.getTriggerProps(),"aria-controls":o.unmounted?void 0:t.getTriggerProps()["aria-controls"]},e);return m.jsx(W.button,{...i,ref:n})});v0.displayName="MenuTrigger";const r8=()=>{const[e,n]=S.useState(!0);return S.useEffect(()=>{n(!1)},[]),e},eo=e=>{const{children:n,container:t,disabled:o}=e,i=r8(),{getRootNode:r}=Ye();if(i||o)return m.jsx(m.Fragment,{children:n});const a=(t==null?void 0:t.current)??a8(r);return m.jsx(m.Fragment,{children:S.Children.map(n,s=>Z0.createPortal(s,a))})};function a8(e){const n=e==null?void 0:e(),t=n.getRootNode();return $a(t)?t:un(n).body}const[s8,Zo]=re({name:"RadioGroupContext",hookName:"useRadioGroupContext",providerName:"<RadioGroupProvider />"}),[c8,d8]=re({name:"RadioGroupItemContext",hookName:"useRadioGroupItemContext",providerName:"<RadioGroupItemProvider />"}),[u8,dr]=re({name:"RadioGroupItemPropsContext",hookName:"useRadioGroupItemPropsContext",providerName:"<RadioGroupItemPropsProvider />"}),ur=S.forwardRef((e,n)=>{const[t,o]=pe()(e,["value","disabled","invalid"]),i=Zo(),r=A(i.getItemProps(t),o),a=i.getItemState(t);return m.jsx(c8,{value:a,children:m.jsx(u8,{value:t,children:m.jsx(W.label,{...r,ref:n})})})});ur.displayName="RadioGroupItem";const m0=e=>e.children(d8()),hr=S.forwardRef((e,n)=>{const t=Zo(),o=dr(),i=A(t.getItemControlProps(o),e);return m.jsx(W.div,{...i,ref:n})});hr.displayName="RadioGroupItemControl";const gr=S.forwardRef((e,n)=>{const t=Zo(),o=dr(),i=A(t.getItemHiddenInputProps(o),e);return m.jsx(W.input,{...i,ref:n})});gr.displayName="RadioGroupItemHiddenInput";const Jl=S.forwardRef((e,n)=>{const t=Zo(),o=dr(),i=A(t.getItemTextProps(o),e);return m.jsx(W.span,{...i,ref:n})});Jl.displayName="RadioGroupItemText";var Ql,jt=new Map,h8=e=>e.getBoundingClientRect();function p0(e,n){const{scope:t="rect",getRect:o=h8,onChange:i}=n,r=g8({scope:t,getRect:o}),a=jt.get(e);return a?(a.callbacks.push(i),i(o(e))):(jt.set(e,{rect:{},callbacks:[i]}),jt.size===1&&(Ql=requestAnimationFrame(r))),function(){const c=jt.get(e);if(!c)return;const d=c.callbacks.indexOf(i);d>-1&&c.callbacks.splice(d,1),c.callbacks.length===0&&(jt.delete(e),jt.size===0&&cancelAnimationFrame(Ql))}}function g8(e){const{scope:n,getRect:t}=e,o=m8(n);return function i(){const r=[];jt.forEach((a,s)=>{const c=t(s);o(a.rect,c)||(a.rect=c,r.push(a))}),r.forEach(a=>{a.callbacks.forEach(s=>s(a.rect))}),Ql=requestAnimationFrame(i)}}var f0=(e,n)=>e.width===n.width&&e.height===n.height,w0=(e,n)=>e.top===n.top&&e.left===n.left,v8=(e,n)=>f0(e,n)&&w0(e,n);function m8(e){return e==="size"?f0:e==="position"?w0:v8}var p8=Me("radio-group").parts("root","label","item","itemText","itemControl","indicator"),tn=p8.build(),oe=qe({getRootId:e=>{var n;return((n=e.ids)==null?void 0:n.root)??`radio-group:${e.id}`},getLabelId:e=>{var n;return((n=e.ids)==null?void 0:n.label)??`radio-group:${e.id}:label`},getItemId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.item)==null?void 0:o.call(t,n))??`radio-group:${e.id}:radio:${n}`},getItemHiddenInputId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.itemHiddenInput)==null?void 0:o.call(t,n))??`radio-group:${e.id}:radio:input:${n}`},getItemControlId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.itemControl)==null?void 0:o.call(t,n))??`radio-group:${e.id}:radio:control:${n}`},getItemLabelId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.itemLabel)==null?void 0:o.call(t,n))??`radio-group:${e.id}:radio:label:${n}`},getIndicatorId:e=>{var n;return((n=e.ids)==null?void 0:n.indicator)??`radio-group:${e.id}:indicator`},getRootEl:e=>oe.getById(e,oe.getRootId(e)),getItemHiddenInputEl:(e,n)=>oe.getById(e,oe.getItemHiddenInputId(e,n)),getIndicatorEl:e=>oe.getById(e,oe.getIndicatorId(e)),getFirstEnabledInputEl:e=>{var n;return(n=oe.getRootEl(e))==null?void 0:n.querySelector("input:not(:disabled)")},getFirstEnabledAndCheckedInputEl:e=>{var n;return(n=oe.getRootEl(e))==null?void 0:n.querySelector("input:not(:disabled):checked")},getInputEls:e=>{const t=`input[type=radio][data-ownedby='${CSS.escape(oe.getRootId(e))}']:not([disabled])`;return Zn(oe.getRootEl(e),t)},getActiveRadioEl:e=>{if(e.value)return oe.getById(e,oe.getItemId(e,e.value))},getOffsetRect:e=>({left:(e==null?void 0:e.offsetLeft)??0,top:(e==null?void 0:e.offsetTop)??0,width:(e==null?void 0:e.offsetWidth)??0,height:(e==null?void 0:e.offsetHeight)??0}),getRectById:(e,n)=>{const t=oe.getById(e,oe.getItemId(e,n));if(t)return oe.resolveRect(oe.getOffsetRect(t))},resolveRect:e=>({width:`${e.width}px`,height:`${e.height}px`,left:`${e.left}px`,top:`${e.top}px`})});function f8(e,n,t){const o=e.context.isDisabled,i=e.context.readOnly;function r(c){return{invalid:!!c.invalid,disabled:!!c.disabled||o,checked:e.context.value===c.value,focused:e.context.focusedValue===c.value,hovered:e.context.hoveredValue===c.value,active:e.context.activeValue===c.value}}function a(c){const d=r(c);return{"data-focus":O(d.focused),"data-disabled":O(d.disabled),"data-readonly":O(i),"data-state":d.checked?"checked":"unchecked","data-hover":O(d.hovered),"data-invalid":O(d.invalid),"data-orientation":e.context.orientation,"data-ssr":O(e.context.ssr)}}const s=()=>{const c=oe.getFirstEnabledAndCheckedInputEl(e.context);if(c){c.focus();return}const d=oe.getFirstEnabledInputEl(e.context);d==null||d.focus()};return{focus:s,value:e.context.value,setValue(c){n({type:"SET_VALUE",value:c,isTrusted:!1})},clearValue(){n({type:"SET_VALUE",value:null,isTrusted:!1})},getRootProps(){return t.element({...tn.root.attrs,role:"radiogroup",id:oe.getRootId(e.context),"aria-labelledby":oe.getLabelId(e.context),"data-orientation":e.context.orientation,"data-disabled":O(o),"aria-orientation":e.context.orientation,dir:e.context.dir,style:{position:"relative"}})},getLabelProps(){return t.element({...tn.label.attrs,dir:e.context.dir,"data-orientation":e.context.orientation,"data-disabled":O(o),id:oe.getLabelId(e.context),onClick:s})},getItemState:r,getItemProps(c){const d=r(c);return t.label({...tn.item.attrs,dir:e.context.dir,id:oe.getItemId(e.context,c.value),htmlFor:oe.getItemHiddenInputId(e.context,c.value),...a(c),onPointerMove(){d.disabled||d.hovered||n({type:"SET_HOVERED",value:c.value,hovered:!0})},onPointerLeave(){d.disabled||n({type:"SET_HOVERED",value:null})},onPointerDown(h){d.disabled||(d.focused&&h.pointerType==="mouse"&&h.preventDefault(),n({type:"SET_ACTIVE",value:c.value,active:!0}))},onPointerUp(){d.disabled||n({type:"SET_ACTIVE",value:null})}})},getItemTextProps(c){return t.element({...tn.itemText.attrs,dir:e.context.dir,id:oe.getItemLabelId(e.context,c.value),...a(c)})},getItemControlProps(c){const d=r(c);return t.element({...tn.itemControl.attrs,dir:e.context.dir,id:oe.getItemControlId(e.context,c.value),"data-active":O(d.active),"aria-hidden":!0,...a(c)})},getItemHiddenInputProps(c){const d=r(c);return t.input({"data-ownedby":oe.getRootId(e.context),id:oe.getItemHiddenInputId(e.context,c.value),type:"radio",name:e.context.name||e.context.id,form:e.context.form,value:c.value,onClick(h){if(i){h.preventDefault();return}h.currentTarget.checked&&n({type:"SET_VALUE",value:c.value,isTrusted:!0})},onBlur(){n({type:"SET_FOCUSED",value:null})},onFocus(){n({type:"SET_FOCUSED",value:c.value,focused:!0})},onKeyDown(h){h.defaultPrevented||h.key===" "&&n({type:"SET_ACTIVE",value:c.value,active:!0})},onKeyUp(h){h.defaultPrevented||h.key===" "&&n({type:"SET_ACTIVE",value:null})},disabled:d.disabled,defaultChecked:d.checked,style:$o})},getIndicatorProps(){var c,d,h,v;return t.element({id:oe.getIndicatorId(e.context),...tn.indicator.attrs,dir:e.context.dir,hidden:e.context.value==null,"data-disabled":O(o),"data-orientation":e.context.orientation,style:{"--transition-property":"left, top, width, height","--left":(c=e.context.indicatorRect)==null?void 0:c.left,"--top":(d=e.context.indicatorRect)==null?void 0:d.top,"--width":(h=e.context.indicatorRect)==null?void 0:h.width,"--height":(v=e.context.indicatorRect)==null?void 0:v.height,position:"absolute",willChange:"var(--transition-property)",transitionProperty:"var(--transition-property)",transitionDuration:e.context.canIndicatorTransition?"var(--transition-duration, 150ms)":"0ms",transitionTimingFunction:"var(--transition-timing-function)",[e.context.orientation==="horizontal"?"left":"top"]:e.context.orientation==="horizontal"?"var(--left)":"var(--top)"}})}}}var{not:w8}=wt;function E8(e){const n=ze(e);return ke({id:"radio",initial:"idle",context:{value:null,activeValue:null,focusedValue:null,hoveredValue:null,disabled:!1,orientation:"vertical",...n,indicatorRect:{},canIndicatorTransition:!1,fieldsetDisabled:!1,ssr:!0},computed:{isDisabled:t=>!!t.disabled||t.fieldsetDisabled},entry:["syncIndicatorRect","syncSsr"],exit:["cleanupObserver"],activities:["trackFormControlState"],watch:{value:["setIndicatorTransition","syncIndicatorRect","syncInputElements"]},on:{SET_VALUE:[{guard:w8("isTrusted"),actions:["setValue","dispatchChangeEvent"]},{actions:["setValue"]}],SET_HOVERED:{actions:"setHovered"},SET_ACTIVE:{actions:"setActive"},SET_FOCUSED:{actions:"setFocused"}},states:{idle:{}}},{guards:{isTrusted:(t,o)=>!!o.isTrusted},activities:{trackFormControlState(t,o,{send:i,initialContext:r}){return jo(oe.getRootEl(t),{onFieldsetDisabledChange(a){t.fieldsetDisabled=a},onFormReset(){i({type:"SET_VALUE",value:r.value})}})}},actions:{setValue(t,o){x8.value(t,o.value)},setHovered(t,o){t.hoveredValue=o.value},setActive(t,o){t.activeValue=o.value},setFocused(t,o){t.focusedValue=o.value},syncInputElements(t){oe.getInputEls(t).forEach(i=>{i.checked=i.value===t.value})},setIndicatorTransition(t){t.canIndicatorTransition=Zc(t.value)},cleanupObserver(t){var o;(o=t.indicatorCleanup)==null||o.call(t)},syncSsr(t){t.ssr=!1},syncIndicatorRect(t){var r;if((r=t.indicatorCleanup)==null||r.call(t),!oe.getIndicatorEl(t))return;const o=t.value,i=oe.getActiveRadioEl(t);if(o==null||!i){t.indicatorRect={};return}t.indicatorCleanup=p0(i,{getRect(a){return oe.getOffsetRect(a)},onChange(a){t.indicatorRect=oe.resolveRect(a),wo(()=>{t.canIndicatorTransition=!1})}})},dispatchChangeEvent(t){oe.getInputEls(t).forEach(i=>{const r=i.value===t.value;r!==i.checked&&qi(i,{checked:r})})}}})}var y8={change:e=>{var n;e.value!=null&&((n=e.onValueChange)==null||n.call(e,{value:e.value}))}},x8={value:(e,n)=>{Ce(e.value,n)||(e.value=n,y8.change(e))}};me()(["dir","disabled","form","getRootNode","id","ids","name","onValueChange","orientation","readOnly","value"]);me()(["value","disabled","invalid"]);const C8=e=>{const{getRootNode:n}=Ye(),{dir:t}=it(),o={id:S.useId(),dir:t,getRootNode:n,value:e.defaultValue,...e},i={...o,value:e.value,onValueChange:ge(e.onValueChange,{sync:!0})},[r,a]=We(E8(o),{context:i});return f8(r,a,Be)},E0=S.forwardRef((e,n)=>{const[t,o]=pe()(e,["defaultValue","disabled","form","id","ids","name","onValueChange","orientation","readOnly","value"]),i=C8(t),r=A(i.getRootProps(),o);return m.jsx(s8,{value:i,children:m.jsx(W.div,{...r,ref:n})})});E0.displayName="RadioGroupRoot";const[b8,Xt]=re({name:"SelectContext",hookName:"useSelectContext",providerName:"<SelectProvider />"}),y0=S.forwardRef((e,n)=>{const t=Xt(),o=Et(),i=A(t.getContentProps(),o.getPresenceProps(n),e);return o.unmounted?null:m.jsx(W.div,{...i})});y0.displayName="SelectContent";const x0=S.forwardRef((e,n)=>{const t=Xt(),o=A(t.getControlProps(),e);return m.jsx(W.div,{...o,ref:n})});x0.displayName="SelectControl";const[R8,ZE]=re({name:"SelectItemContext",hookName:"useSelectItemContext",providerName:"<SelectItemProvider />"}),[S8,JE]=re({name:"SelectItemPropsContext",hookName:"useSelectItemPropsContext",providerName:"<SelectItemPropsProvider />"}),C0=S.forwardRef((e,n)=>{const[t,o]=pe()(e,["item","persistFocus"]),i=Xt(),r=A(i.getItemProps(t),o),a=i.getItemState(t);return m.jsx(S8,{value:t,children:m.jsx(R8,{value:a,children:m.jsx(W.div,{...r,ref:n})})})});C0.displayName="SelectItem";const b0=S.forwardRef((e,n)=>{const t=Xt(),o=A(t.getLabelProps(),e);return m.jsx(W.label,{...o,ref:n})});b0.displayName="SelectLabel";const R0=S.forwardRef((e,n)=>{const t=Xt(),o=A(t.getPositionerProps(),e);return Et().unmounted?null:m.jsx(W.div,{...o,ref:n})});R0.displayName="SelectPositioner";var I8=Me("select").parts("label","positioner","trigger","indicator","clearTrigger","item","itemText","itemIndicator","itemGroup","itemGroupLabel","list","content","root","control","valueText"),Te=I8.build(),vr=e=>De(new Xo(e));vr.empty=()=>De(new Xo({items:[]}));var G=qe({getRootId:e=>{var n;return((n=e.ids)==null?void 0:n.root)??`select:${e.id}`},getContentId:e=>{var n;return((n=e.ids)==null?void 0:n.content)??`select:${e.id}:content`},getTriggerId:e=>{var n;return((n=e.ids)==null?void 0:n.trigger)??`select:${e.id}:trigger`},getClearTriggerId:e=>{var n;return((n=e.ids)==null?void 0:n.clearTrigger)??`select:${e.id}:clear-trigger`},getLabelId:e=>{var n;return((n=e.ids)==null?void 0:n.label)??`select:${e.id}:label`},getControlId:e=>{var n;return((n=e.ids)==null?void 0:n.control)??`select:${e.id}:control`},getItemId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.item)==null?void 0:o.call(t,n))??`select:${e.id}:option:${n}`},getHiddenSelectId:e=>{var n;return((n=e.ids)==null?void 0:n.hiddenSelect)??`select:${e.id}:select`},getPositionerId:e=>{var n;return((n=e.ids)==null?void 0:n.positioner)??`select:${e.id}:positioner`},getItemGroupId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.itemGroup)==null?void 0:o.call(t,n))??`select:${e.id}:optgroup:${n}`},getItemGroupLabelId:(e,n)=>{var t,o;return((o=(t=e.ids)==null?void 0:t.itemGroupLabel)==null?void 0:o.call(t,n))??`select:${e.id}:optgroup-label:${n}`},getHiddenSelectEl:e=>G.getById(e,G.getHiddenSelectId(e)),getContentEl:e=>G.getById(e,G.getContentId(e)),getControlEl:e=>G.getById(e,G.getControlId(e)),getTriggerEl:e=>G.getById(e,G.getTriggerId(e)),getClearTriggerEl:e=>G.getById(e,G.getClearTriggerId(e)),getPositionerEl:e=>G.getById(e,G.getPositionerId(e)),getHighlightedOptionEl(e){return e.highlightedValue?G.getById(e,G.getItemId(e,e.highlightedValue)):null}});function T8(e,n,t){const o=e.context.isDisabled,i=e.context.invalid,r=e.context.readOnly,a=e.context.isInteractive,s=e.context.composite,c=e.hasTag("open"),d=e.matches("focused"),h=e.context.highlightedValue,v=e.context.highlightedItem,g=e.context.selectedItems,p=e.context.isTypingAhead,w=e.context.collection,f=h?G.getItemId(e.context,h):void 0;function x(E){const T=w.getItemDisabled(E.item),F=w.getItemValue(E.item);return{value:F,disabled:!!(o||T),highlighted:h===F,selected:e.context.value.includes(F)}}const C=lr({...e.context.positioning,placement:e.context.currentPlacement});return{open:c,focused:d,empty:e.context.value.length===0,highlightedItem:v,highlightedValue:h,selectedItems:g,hasSelectedItems:e.context.hasSelectedItems,value:e.context.value,valueAsString:e.context.valueAsString,collection:w,setCollection(E){n({type:"COLLECTION.SET",value:E})},reposition(E={}){n({type:"POSITIONING.SET",options:E})},focus(){var E;(E=G.getTriggerEl(e.context))==null||E.focus({preventScroll:!0})},setOpen(E){E!==c&&n(E?"OPEN":"CLOSE")},selectValue(E){n({type:"ITEM.SELECT",value:E})},setValue(E){n({type:"VALUE.SET",value:E})},selectAll(){n({type:"VALUE.SET",value:w.getValues()})},highlightValue(E){n({type:"HIGHLIGHTED_VALUE.SET",value:E})},clearValue(E){n(E?{type:"ITEM.CLEAR",value:E}:{type:"VALUE.CLEAR"})},getItemState:x,getRootProps(){return t.element({...Te.root.attrs,dir:e.context.dir,id:G.getRootId(e.context),"data-invalid":O(i),"data-readonly":O(r)})},getLabelProps(){return t.label({dir:e.context.dir,id:G.getLabelId(e.context),...Te.label.attrs,"data-disabled":O(o),"data-invalid":O(i),"data-readonly":O(r),htmlFor:G.getHiddenSelectId(e.context),onClick(E){var T;E.defaultPrevented||o||(T=G.getTriggerEl(e.context))==null||T.focus({preventScroll:!0})}})},getControlProps(){return t.element({...Te.control.attrs,dir:e.context.dir,id:G.getControlId(e.context),"data-state":c?"open":"closed","data-focus":O(d),"data-disabled":O(o),"data-invalid":O(i)})},getValueTextProps(){return t.element({...Te.valueText.attrs,dir:e.context.dir,"data-disabled":O(o),"data-invalid":O(i),"data-focus":O(d)})},getTriggerProps(){return t.button({id:G.getTriggerId(e.context),disabled:o,dir:e.context.dir,type:"button",role:"combobox","aria-controls":G.getContentId(e.context),"aria-expanded":c,"aria-haspopup":"listbox","data-state":c?"open":"closed","aria-invalid":i,"aria-labelledby":G.getLabelId(e.context),...Te.trigger.attrs,"data-disabled":O(o),"data-invalid":O(i),"data-readonly":O(r),"data-placement":e.context.currentPlacement,"data-placeholder-shown":O(!e.context.hasSelectedItems),onPointerDown(E){Xa(E)&&a&&(E.currentTarget.dataset.pointerType=E.pointerType,!(o||E.pointerType==="touch")&&n({type:"TRIGGER.CLICK"}))},onClick(E){!a||E.button||E.currentTarget.dataset.pointerType==="touch"&&n({type:"TRIGGER.CLICK"})},onFocus(){n("TRIGGER.FOCUS")},onBlur(){n("TRIGGER.BLUR")},onKeyDown(E){if(E.defaultPrevented||!a)return;const F={ArrowUp(){n({type:"TRIGGER.ARROW_UP"})},ArrowDown(k){n({type:k.altKey?"OPEN":"TRIGGER.ARROW_DOWN"})},ArrowLeft(){n({type:"TRIGGER.ARROW_LEFT"})},ArrowRight(){n({type:"TRIGGER.ARROW_RIGHT"})},Home(){n({type:"TRIGGER.HOME"})},End(){n({type:"TRIGGER.END"})},Enter(){n({type:"TRIGGER.ENTER"})},Space(k){n(p?{type:"TRIGGER.TYPEAHEAD",key:k.key}:{type:"TRIGGER.ENTER"})}}[It(E,e.context)];if(F){F(E),E.preventDefault();return}qn.isValidEvent(E)&&(n({type:"TRIGGER.TYPEAHEAD",key:E.key}),E.preventDefault())}})},getIndicatorProps(){return t.element({...Te.indicator.attrs,dir:e.context.dir,"aria-hidden":!0,"data-state":c?"open":"closed","data-disabled":O(o),"data-invalid":O(i),"data-readonly":O(r)})},getItemProps(E){const T=x(E);return t.element({id:G.getItemId(e.context,T.value),role:"option",...Te.item.attrs,dir:e.context.dir,"data-value":T.value,"aria-selected":T.selected,"data-state":T.selected?"checked":"unchecked","data-highlighted":O(T.highlighted),"data-disabled":O(T.disabled),"aria-disabled":uo(T.disabled),onPointerMove(F){T.disabled||F.pointerType!=="mouse"||T.value!==e.context.highlightedValue&&n({type:"ITEM.POINTER_MOVE",value:T.value})},onPointerUp(){T.disabled||n({type:"ITEM.CLICK",src:"pointerup",value:T.value})},onPointerLeave(F){T.disabled||E.persistFocus||F.pointerType!=="mouse"||["CONTENT.ARROW_UP","CONTENT.ARROW_DOWN"].includes(e.event.type)||n({type:"ITEM.POINTER_LEAVE"})},onTouchEnd(F){F.preventDefault(),F.stopPropagation()}})},getItemTextProps(E){const T=x(E);return t.element({...Te.itemText.attrs,"data-state":T.selected?"checked":"unchecked","data-disabled":O(T.disabled),"data-highlighted":O(T.highlighted)})},getItemIndicatorProps(E){const T=x(E);return t.element({"aria-hidden":!0,...Te.itemIndicator.attrs,"data-state":T.selected?"checked":"unchecked",hidden:!T.selected})},getItemGroupLabelProps(E){const{htmlFor:T}=E;return t.element({...Te.itemGroupLabel.attrs,id:G.getItemGroupLabelId(e.context,T),role:"group",dir:e.context.dir})},getItemGroupProps(E){const{id:T}=E;return t.element({...Te.itemGroup.attrs,"data-disabled":O(o),id:G.getItemGroupId(e.context,T),"aria-labelledby":G.getItemGroupLabelId(e.context,T),dir:e.context.dir})},getClearTriggerProps(){return t.button({...Te.clearTrigger.attrs,id:G.getClearTriggerId(e.context),type:"button","aria-label":"Clear value","data-invalid":O(i),disabled:o,hidden:!e.context.hasSelectedItems,dir:e.context.dir,onClick(E){E.defaultPrevented||n("CLEAR.CLICK")}})},getHiddenSelectProps(){return t.select({name:e.context.name,form:e.context.form,disabled:o,multiple:e.context.multiple,required:e.context.required,"aria-hidden":!0,id:G.getHiddenSelectId(e.context),defaultValue:e.context.multiple?e.context.value:e.context.value[0],style:$o,tabIndex:-1,onFocus(){var E;(E=G.getTriggerEl(e.context))==null||E.focus({preventScroll:!0})},"aria-labelledby":G.getLabelId(e.context)})},getPositionerProps(){return t.element({...Te.positioner.attrs,dir:e.context.dir,id:G.getPositionerId(e.context),style:C.floating})},getContentProps(){return t.element({hidden:!c,dir:e.context.dir,id:G.getContentId(e.context),role:s?"listbox":"dialog",...Te.content.attrs,"data-state":c?"open":"closed","data-placement":e.context.currentPlacement,"data-activedescendant":f,"aria-activedescendant":s?f:void 0,"aria-multiselectable":e.context.multiple&&s?!0:void 0,"aria-labelledby":G.getLabelId(e.context),tabIndex:0,onKeyDown(E){if(!a||!Ci(E))return;if(E.key==="Tab"&&!qa(E)){E.preventDefault();return}const T={ArrowUp(){n({type:"CONTENT.ARROW_UP"})},ArrowDown(){n({type:"CONTENT.ARROW_DOWN"})},Home(){n({type:"CONTENT.HOME"})},End(){n({type:"CONTENT.END"})},Enter(){n({type:"ITEM.CLICK",src:"keydown.enter"})},Space(k){var q;p?n({type:"CONTENT.TYPEAHEAD",key:k.key}):(q=T.Enter)==null||q.call(T,k)}},F=T[It(E)];if(F){F(E),E.preventDefault();return}Vi(E.target)||qn.isValidEvent(E)&&(n({type:"CONTENT.TYPEAHEAD",key:E.key}),E.preventDefault())}})},getListProps(){return t.element({...Te.list.attrs,tabIndex:0,role:s?void 0:"listbox","aria-labelledby":G.getTriggerId(e.context),"aria-activedescendant":s?void 0:f,"aria-multiselectable":!s&&e.context.multiple?!0:void 0})}}}var{and:nn,not:Ht,or:M8}=wt;function z8(e){const n=ze(e);return ke({id:"select",context:{value:[],highlightedValue:null,loopFocus:!1,closeOnSelect:!n.multiple,disabled:!1,readOnly:!1,composite:!0,...n,highlightedItem:null,selectedItems:[],valueAsString:"",collection:n.collection??vr.empty(),typeahead:qn.defaultOptions,fieldsetDisabled:!1,restoreFocus:!0,positioning:{placement:"bottom-start",gutter:8,...n.positioning}},computed:{hasSelectedItems:t=>t.value.length>0,isTypingAhead:t=>t.typeahead.keysSoFar!=="",isDisabled:t=>!!t.disabled||t.fieldsetDisabled,isInteractive:t=>!(t.isDisabled||t.readOnly)},initial:n.open?"open":"idle",created:["syncCollection"],entry:["syncSelectElement"],watch:{open:["toggleVisibility"],value:["syncSelectedItems","syncSelectElement"],highlightedValue:["syncHighlightedItem"],collection:["syncCollection"]},on:{"HIGHLIGHTED_VALUE.SET":{actions:["setHighlightedItem"]},"ITEM.SELECT":{actions:["selectItem"]},"ITEM.CLEAR":{actions:["clearItem"]},"VALUE.SET":{actions:["setSelectedItems"]},"VALUE.CLEAR":{actions:["clearSelectedItems"]},"CLEAR.CLICK":{actions:["clearSelectedItems","focusTriggerEl"]},"COLLECTION.SET":{actions:["setCollection"]}},activities:["trackFormControlState"],states:{idle:{tags:["closed"],on:{"CONTROLLED.OPEN":[{guard:"isTriggerClickEvent",target:"open",actions:["highlightFirstSelectedItem"]},{target:"open"}],"TRIGGER.CLICK":[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{target:"open",actions:["invokeOnOpen","highlightFirstSelectedItem"]}],"TRIGGER.FOCUS":{target:"focused"},OPEN:[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{target:"open",actions:["invokeOnOpen"]}]}},focused:{tags:["closed"],entry:["focusTriggerEl"],on:{"CONTROLLED.OPEN":[{guard:"isTriggerClickEvent",target:"open",actions:["highlightFirstSelectedItem"]},{guard:"isTriggerArrowUpEvent",target:"open",actions:["highlightComputedLastItem"]},{guard:M8("isTriggerArrowDownEvent","isTriggerEnterEvent"),target:"open",actions:["highlightComputedFirstItem"]},{target:"open"}],OPEN:[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{target:"open",actions:["invokeOnOpen"]}],"TRIGGER.BLUR":{target:"idle"},"TRIGGER.CLICK":[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{target:"open",actions:["invokeOnOpen","highlightFirstSelectedItem"]}],"TRIGGER.ENTER":[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{target:"open",actions:["invokeOnOpen","highlightComputedFirstItem"]}],"TRIGGER.ARROW_UP":[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{target:"open",actions:["invokeOnOpen","highlightComputedLastItem"]}],"TRIGGER.ARROW_DOWN":[{guard:"isOpenControlled",actions:["invokeOnOpen"]},{target:"open",actions:["invokeOnOpen","highlightComputedFirstItem"]}],"TRIGGER.ARROW_LEFT":[{guard:nn(Ht("multiple"),"hasSelectedItems"),actions:["selectPreviousItem"]},{guard:Ht("multiple"),actions:["selectLastItem"]}],"TRIGGER.ARROW_RIGHT":[{guard:nn(Ht("multiple"),"hasSelectedItems"),actions:["selectNextItem"]},{guard:Ht("multiple"),actions:["selectFirstItem"]}],"TRIGGER.HOME":{guard:Ht("multiple"),actions:["selectFirstItem"]},"TRIGGER.END":{guard:Ht("multiple"),actions:["selectLastItem"]},"TRIGGER.TYPEAHEAD":{guard:Ht("multiple"),actions:["selectMatchingItem"]}}},open:{tags:["open"],entry:["setInitialFocus"],exit:["scrollContentToTop"],activities:["trackDismissableElement","computePlacement","scrollToHighlightedItem"],on:{"CONTROLLED.CLOSE":[{guard:"shouldRestoreFocus",target:"focused",actions:["clearHighlightedItem"]},{target:"idle",actions:["clearHighlightedItem"]}],CLOSE:[{guard:"isOpenControlled",actions:["invokeOnClose"]},{target:"focused",actions:["invokeOnClose","clearHighlightedItem"]}],"TRIGGER.CLICK":[{guard:"isOpenControlled",actions:["invokeOnClose"]},{target:"focused",actions:["invokeOnClose","clearHighlightedItem"]}],"ITEM.CLICK":[{guard:nn("closeOnSelect","isOpenControlled"),actions:["selectHighlightedItem","invokeOnClose"]},{guard:"closeOnSelect",target:"focused",actions:["selectHighlightedItem","invokeOnClose","clearHighlightedItem"]},{actions:["selectHighlightedItem"]}],"CONTENT.INTERACT_OUTSIDE":[{guard:nn("shouldRestoreFocus","isOpenControlled"),actions:["invokeOnClose"]},{guard:"shouldRestoreFocus",target:"focused",actions:["invokeOnClose","clearHighlightedItem"]},{guard:"isOpenControlled",actions:["invokeOnClose"]},{target:"idle",actions:["invokeOnClose","clearHighlightedItem"]}],"CONTENT.HOME":{actions:["highlightFirstItem"]},"CONTENT.END":{actions:["highlightLastItem"]},"CONTENT.ARROW_DOWN":[{guard:nn("hasHighlightedItem","loop","isLastItemHighlighted"),actions:["highlightFirstItem"]},{guard:"hasHighlightedItem",actions:["highlightNextItem"]},{actions:["highlightFirstItem"]}],"CONTENT.ARROW_UP":[{guard:nn("hasHighlightedItem","loop","isFirstItemHighlighted"),actions:["highlightLastItem"]},{guard:"hasHighlightedItem",actions:["highlightPreviousItem"]},{actions:["highlightLastItem"]}],"CONTENT.TYPEAHEAD":{actions:["highlightMatchingItem"]},"ITEM.POINTER_MOVE":{actions:["highlightItem"]},"ITEM.POINTER_LEAVE":{actions:["clearHighlightedItem"]},"POSITIONING.SET":{actions:["reposition"]}}}}},{guards:{loop:t=>!!t.loopFocus,multiple:t=>!!t.multiple,hasSelectedItems:t=>!!t.hasSelectedItems,hasHighlightedItem:t=>t.highlightedValue!=null,isFirstItemHighlighted:t=>t.highlightedValue===t.collection.firstValue,isLastItemHighlighted:t=>t.highlightedValue===t.collection.lastValue,closeOnSelect:(t,o)=>!!(o.closeOnSelect??t.closeOnSelect),shouldRestoreFocus:t=>!!t.restoreFocus,isOpenControlled:t=>!!t["open.controlled"],isTriggerClickEvent:(t,o)=>{var i;return((i=o.previousEvent)==null?void 0:i.type)==="TRIGGER.CLICK"},isTriggerEnterEvent:(t,o)=>{var i;return((i=o.previousEvent)==null?void 0:i.type)==="TRIGGER.ENTER"},isTriggerArrowUpEvent:(t,o)=>{var i;return((i=o.previousEvent)==null?void 0:i.type)==="TRIGGER.ARROW_UP"},isTriggerArrowDownEvent:(t,o)=>{var i;return((i=o.previousEvent)==null?void 0:i.type)==="TRIGGER.ARROW_DOWN"}},activities:{trackFormControlState(t,o,{initialContext:i}){return jo(G.getHiddenSelectEl(t),{onFieldsetDisabledChange(r){t.fieldsetDisabled=r},onFormReset(){he.selectedItems(t,i.value)}})},trackDismissableElement(t,o,{send:i}){return Yo(()=>G.getContentEl(t),{defer:!0,exclude:[G.getTriggerEl(t),G.getClearTriggerEl(t)],onFocusOutside:t.onFocusOutside,onPointerDownOutside:t.onPointerDownOutside,onInteractOutside(a){var s;(s=t.onInteractOutside)==null||s.call(t,a),t.restoreFocus=!a.detail.focusable},onDismiss(){i({type:"CONTENT.INTERACT_OUTSIDE"})}})},computePlacement(t){return t.currentPlacement=t.positioning.placement,sn(()=>G.getTriggerEl(t),()=>G.getPositionerEl(t),{defer:!0,...t.positioning,onComplete(r){t.currentPlacement=r.placement}})},scrollToHighlightedItem(t,o,{getState:i}){const r=s=>{if(t.highlightedValue==null||i().event.type.includes("POINTER"))return;const d=G.getHighlightedOptionEl(t),h=G.getContentEl(t);if(t.scrollToIndexFn){const v=t.collection.indexOf(t.highlightedValue);t.scrollToIndexFn({index:v,immediate:s});return}Fi(d,{rootEl:h,block:"nearest"})};return te(()=>r(!0)),No(()=>G.getContentEl(t),{defer:!0,attributes:["data-activedescendant"],callback(){r(!1)}})}},actions:{reposition(t,o){const i=()=>G.getPositionerEl(t);sn(G.getTriggerEl(t),i,{...t.positioning,...o.options,defer:!0,listeners:!1,onComplete(r){t.currentPlacement=r.placement}})},toggleVisibility(t,o,{send:i}){i({type:t.open?"CONTROLLED.OPEN":"CONTROLLED.CLOSE",previousEvent:o})},highlightPreviousItem(t){if(t.highlightedValue==null)return;const o=t.collection.getPreviousValue(t.highlightedValue);he.highlightedItem(t,o)},highlightNextItem(t){if(t.highlightedValue==null)return;const o=t.collection.getNextValue(t.highlightedValue);he.highlightedItem(t,o)},highlightFirstItem(t){const o=t.collection.firstValue;he.highlightedItem(t,o)},highlightLastItem(t){const o=t.collection.lastValue;he.highlightedItem(t,o)},setInitialFocus(t){te(()=>{const o=Oi({root:G.getContentEl(t)});o==null||o.focus({preventScroll:!0})})},focusTriggerEl(t){te(()=>{var o;(o=G.getTriggerEl(t))==null||o.focus({preventScroll:!0})})},selectHighlightedItem(t,o){const i=o.value??t.highlightedValue;i!=null&&he.selectedItem(t,i)},highlightComputedFirstItem(t){const o=t.hasSelectedItems?t.collection.sort(t.value)[0]:t.collection.firstValue;he.highlightedItem(t,o)},highlightComputedLastItem(t){const o=t.hasSelectedItems?t.collection.sort(t.value)[0]:t.collection.lastValue;he.highlightedItem(t,o)},highlightFirstSelectedItem(t){if(!t.hasSelectedItems)return;const[o]=t.collection.sort(t.value);he.highlightedItem(t,o)},highlightItem(t,o){he.highlightedItem(t,o.value)},highlightMatchingItem(t,o){const i=t.collection.search(o.key,{state:t.typeahead,currentValue:t.highlightedValue});i!=null&&he.highlightedItem(t,i)},setHighlightedItem(t,o){he.highlightedItem(t,o.value)},clearHighlightedItem(t){he.highlightedItem(t,null,!0)},selectItem(t,o){he.selectedItem(t,o.value)},clearItem(t,o){const i=t.value.filter(r=>r!==o.value);he.selectedItems(t,i)},setSelectedItems(t,o){he.selectedItems(t,o.value)},clearSelectedItems(t){he.selectedItems(t,[])},selectPreviousItem(t){const o=t.collection.getPreviousValue(t.value[0]);he.selectedItem(t,o)},selectNextItem(t){const o=t.collection.getNextValue(t.value[0]);he.selectedItem(t,o)},selectFirstItem(t){const o=t.collection.firstValue;he.selectedItem(t,o)},selectLastItem(t){const o=t.collection.lastValue;he.selectedItem(t,o)},selectMatchingItem(t,o){const i=t.collection.search(o.key,{state:t.typeahead,currentValue:t.value[0]});i!=null&&he.selectedItem(t,i)},scrollContentToTop(t){var o;t.scrollToIndexFn?t.scrollToIndexFn({index:0,immediate:!0}):(o=G.getContentEl(t))==null||o.scrollTo(0,0)},invokeOnOpen(t){var o;(o=t.onOpenChange)==null||o.call(t,{open:!0})},invokeOnClose(t){var o;(o=t.onOpenChange)==null||o.call(t,{open:!1})},syncSelectElement(t){const o=G.getHiddenSelectEl(t);if(o){if(t.value.length===0&&!t.multiple){o.selectedIndex=-1;return}for(const i of o.options)i.selected=t.value.includes(i.value)}},setCollection(t,o){t.collection=o.value},syncCollection(t){const o=t.collection.findMany(t.value),i=t.collection.stringifyItems(o);t.highlightedItem=t.collection.find(t.highlightedValue),t.selectedItems=o,t.valueAsString=i},syncSelectedItems(t){Po.valueChange(t)},syncHighlightedItem(t){Po.highlightChange(t)}}})}function O8(e){te(()=>{const n=G.getHiddenSelectEl(e);if(!n)return;const t=G.getWin(e),o=new t.Event("change",{bubbles:!0,composed:!0});n.dispatchEvent(o)})}var Po={valueChange:e=>{const n=e.selectedItems;e.selectedItems=e.value.map(t=>{const o=n.find(i=>e.collection.getItemValue(i)===t);return o||e.collection.find(t)}),e.valueAsString=e.collection.stringifyItems(e.selectedItems)},highlightChange:e=>{e.highlightedItem=e.collection.find(e.highlightedValue)}},ao={valueChange:e=>{var n;Po.valueChange(e),(n=e.onValueChange)==null||n.call(e,{value:Array.from(e.value),items:Array.from(e.selectedItems)}),O8(e)},highlightChange:e=>{var n;Po.highlightChange(e),(n=e.onHighlightChange)==null||n.call(e,{highlightedValue:e.highlightedValue,highlightedItem:e.highlightedItem,highlightedIndex:e.collection.indexOf(e.highlightedValue)})}},he={selectedItem:(e,n,t=!1)=>{if(!Ce(e.value,n)&&!(n==null&&!t)){if(n==null&&t){e.value=[],ao.valueChange(e);return}e.value=e.multiple?ts(e.value,n):[n],ao.valueChange(e)}},selectedItems:(e,n)=>{Ce(e.value,n)||(e.value=n,ao.valueChange(e))},highlightedItem:(e,n,t=!1)=>{Ce(e.highlightedValue,n)||n==null&&!t||(e.highlightedValue=n??null,ao.highlightChange(e))}};me()(["closeOnSelect","collection","dir","disabled","form","getRootNode","highlightedValue","id","ids","invalid","loopFocus","multiple","name","onFocusOutside","onHighlightChange","onInteractOutside","onOpenChange","onPointerDownOutside","onValueChange","open.controlled","open","composite","positioning","required","readOnly","scrollToIndexFn","value"]);me()(["item","persistFocus"]);me()(["id"]);me()(["htmlFor"]);const V8=e=>{const[n,t]=pe()(e,["isItemDisabled","itemToValue","itemToString","items"]),o=S.useMemo(()=>vr(n),Object.values(n)),{getRootNode:i}=Ye(),{dir:r}=it(),a=Yt(),s={id:S.useId(),ids:{label:a==null?void 0:a.ids.label,hiddenSelect:a==null?void 0:a.ids.control},disabled:a==null?void 0:a.disabled,readOnly:a==null?void 0:a.readOnly,invalid:a==null?void 0:a.invalid,required:a==null?void 0:a.required,dir:r,getRootNode:i,collection:o,open:e.defaultOpen,value:e.defaultValue,"open.controlled":e.open!==void 0,...t},c={...s,collection:o,value:e.value,onValueChange:ge(e.onValueChange,{sync:!0}),onHighlightChange:ge(e.onHighlightChange),onOpenChange:ge(e.onOpenChange)},[d,h]=We(z8(s),{context:c});return T8(d,h,Be)},F8=(e,n)=>{const[t,o]=Go(e),[i,r]=pe()(o,["closeOnSelect","composite","defaultOpen","defaultValue","disabled","form","highlightedValue","id","ids","invalid","isItemDisabled","items","itemToString","itemToValue","loopFocus","multiple","name","onFocusOutside","onHighlightChange","onInteractOutside","onOpenChange","onPointerDownOutside","onValueChange","open","positioning","readOnly","required","scrollToIndexFn","value"]),a=V8(i),s=Jn(A({present:a.open},t)),c=A(a.getRootProps(),r);return m.jsx(b8,{value:a,children:m.jsx(Wo,{value:s,children:m.jsx(W.div,{...c,ref:n})})})},P8=S.forwardRef(F8),S0=S.forwardRef((e,n)=>{const t=Xt(),o=A(t.getTriggerProps(),e);return m.jsx(W.button,{...o,ref:n})});S0.displayName="SelectTrigger";const I0=S.forwardRef((e,n)=>{const{children:t,placeholder:o,...i}=e,r=Xt(),a=A(r.getValueTextProps(),i);return m.jsx(W.span,{...a,ref:n,children:t||r.valueAsString||o})});I0.displayName="SelectValueText";const[k8,Jo]=re({name:"SwitchContext",hookName:"useSwitchContext",providerName:"<SwitchProvider />"}),T0=S.forwardRef((e,n)=>{const t=Jo(),o=A(t.getControlProps(),e);return m.jsx(W.span,{...o,ref:n})});T0.displayName="SwitchControl";const M0=S.forwardRef((e,n)=>{const t=Jo(),o=A(t.getHiddenInputProps(),e),i=Yt();return m.jsx(W.input,{"aria-describedby":i==null?void 0:i.ariaDescribedby,...o,ref:n})});M0.displayName="SwitchHiddenInput";const ei=S.forwardRef((e,n)=>{const t=Jo(),o=A(t.getLabelProps(),e);return m.jsx(W.span,{...o,ref:n})});ei.displayName="SwitchLabel";var B8=Me("switch").parts("root","label","control","thumb"),so=B8.build(),Ee=qe({getRootId:e=>{var n;return((n=e.ids)==null?void 0:n.root)??`switch:${e.id}`},getLabelId:e=>{var n;return((n=e.ids)==null?void 0:n.label)??`switch:${e.id}:label`},getThumbId:e=>{var n;return((n=e.ids)==null?void 0:n.thumb)??`switch:${e.id}:thumb`},getControlId:e=>{var n;return((n=e.ids)==null?void 0:n.control)??`switch:${e.id}:control`},getHiddenInputId:e=>{var n;return((n=e.ids)==null?void 0:n.hiddenInput)??`switch:${e.id}:input`},getRootEl:e=>Ee.getById(e,Ee.getRootId(e)),getHiddenInputEl:e=>Ee.getById(e,Ee.getHiddenInputId(e))});function A8(e,n,t){const o=e.context.isDisabled,i=!o&&e.context.focused,r=e.context.checked,a=e.context.readOnly,s={"data-active":O(e.context.active),"data-focus":O(i),"data-readonly":O(a),"data-hover":O(e.context.hovered),"data-disabled":O(o),"data-state":e.context.checked?"checked":"unchecked","data-invalid":O(e.context.invalid)};return{checked:r,disabled:o,focused:i,setChecked(c){n({type:"CHECKED.SET",checked:c,isTrusted:!1})},toggleChecked(){n({type:"CHECKED.TOGGLE",checked:r,isTrusted:!1})},getRootProps(){return t.label({...so.root.attrs,...s,dir:e.context.dir,id:Ee.getRootId(e.context),htmlFor:Ee.getHiddenInputId(e.context),onPointerMove(){o||n({type:"CONTEXT.SET",context:{hovered:!0}})},onPointerLeave(){o||n({type:"CONTEXT.SET",context:{hovered:!1}})},onClick(c){c.target===Ee.getHiddenInputEl(e.context)&&c.stopPropagation()}})},getLabelProps(){return t.element({...so.label.attrs,...s,dir:e.context.dir,id:Ee.getLabelId(e.context)})},getThumbProps(){return t.element({...so.thumb.attrs,...s,dir:e.context.dir,id:Ee.getThumbId(e.context),"aria-hidden":!0})},getControlProps(){return t.element({...so.control.attrs,...s,dir:e.context.dir,id:Ee.getControlId(e.context),"aria-hidden":!0})},getHiddenInputProps(){return t.input({id:Ee.getHiddenInputId(e.context),type:"checkbox",required:e.context.required,defaultChecked:r,disabled:o,"aria-labelledby":Ee.getLabelId(e.context),"aria-invalid":e.context.invalid,name:e.context.name,form:e.context.form,value:e.context.value,style:$o,onClick(c){if(a){c.preventDefault();return}const d=c.currentTarget.checked;n({type:"CHECKED.SET",checked:d,isTrusted:!0})}})}}}var{not:ga}=wt;function L8(e){const n=ze(e);return ke({id:"switch",initial:"ready",context:{checked:!1,label:"switch",value:"on",disabled:!1,...n,fieldsetDisabled:!1},computed:{isDisabled:t=>t.disabled||t.fieldsetDisabled},watch:{disabled:"removeFocusIfNeeded",checked:"syncInputElement"},activities:["trackFormControlState","trackPressEvent","trackFocusVisible"],on:{"CHECKED.TOGGLE":[{guard:ga("isTrusted"),actions:["toggleChecked","dispatchChangeEvent"]},{actions:["toggleChecked"]}],"CHECKED.SET":[{guard:ga("isTrusted"),actions:["setChecked","dispatchChangeEvent"]},{actions:["setChecked"]}],"CONTEXT.SET":{actions:["setContext"]}},states:{ready:{}}},{guards:{isTrusted:(t,o)=>!!o.isTrusted},activities:{trackPressEvent(t){if(!t.isDisabled)return Ja({pointerNode:Ee.getRootEl(t),keyboardNode:Ee.getHiddenInputEl(t),isValidKey:o=>o.key===" ",onPress:()=>t.active=!1,onPressStart:()=>t.active=!0,onPressEnd:()=>t.active=!1})},trackFocusVisible(t){if(!t.isDisabled)return Za(Ee.getHiddenInputEl(t),{onFocus:()=>t.focused=!0,onBlur:()=>t.focused=!1})},trackFormControlState(t,o,{send:i,initialContext:r}){return jo(Ee.getHiddenInputEl(t),{onFieldsetDisabledChange(a){t.fieldsetDisabled=a},onFormReset(){i({type:"CHECKED.SET",checked:!!r.checked,src:"form-reset"})}})}},actions:{setContext(t,o){Object.assign(t,o.context)},syncInputElement(t){const o=Ee.getHiddenInputEl(t);o&&(o.checked=!!t.checked)},removeFocusIfNeeded(t){t.disabled&&t.focused&&(t.focused=!1)},setChecked(t,o){va.checked(t,o.checked)},toggleChecked(t,o){va.checked(t,!t.checked)},dispatchChangeEvent(t){const o=Ee.getHiddenInputEl(t);qi(o,{checked:t.checked})}}})}var _8={change:e=>{var n;(n=e.onCheckedChange)==null||n.call(e,{checked:e.checked})}},va={checked:(e,n)=>{Ce(e.checked,n)||(e.checked=n,_8.change(e))}};me()(["checked","dir","disabled","form","getRootNode","id","ids","invalid","label","name","onCheckedChange","readOnly","required","value"]);const N8=e=>{const{getRootNode:n}=Ye(),{dir:t}=it(),o=Yt(),i={id:S.useId(),ids:{label:o==null?void 0:o.ids.label,hiddenInput:o==null?void 0:o.ids.control},dir:t,disabled:o==null?void 0:o.disabled,readOnly:o==null?void 0:o.readOnly,invalid:o==null?void 0:o.invalid,required:o==null?void 0:o.required,getRootNode:n,checked:e.defaultChecked,...e},r={...i,checked:e.checked,onCheckedChange:ge(e.onCheckedChange,{sync:!0})},[a,s]=We(L8(i),{context:r});return A8(a,s,Be)},z0=S.forwardRef((e,n)=>{const[t,o]=pe()(e,["checked","defaultChecked","disabled","form","id","ids","invalid","label","name","onCheckedChange","readOnly","required","value"]),i=N8(t),r=A(i.getRootProps(),o);return m.jsx(k8,{value:i,children:m.jsx(W.label,{...r,ref:n})})});z0.displayName="SwitchRoot";const O0=S.forwardRef((e,n)=>{const t=Jo(),o=A(t.getThumbProps(),e);return m.jsx(W.span,{...o,ref:n})});O0.displayName="SwitchThumb";const[$8,V0]=re({name:"TabsContext",hookName:"useTabsContext",providerName:"<TabsProvider />"}),F0=S.forwardRef((e,n)=>{const t=V0(),o=A(t.getListProps(),e);return m.jsx(W.div,{...o,ref:n})});F0.displayName="TabList";const P0=S.forwardRef((e,n)=>{const[t,o]=pe()(e,["disabled","value"]),i=V0(),r=A(i.getTriggerProps(t),o);return m.jsx(W.button,{...r,ref:n})});P0.displayName="TabTrigger";var H8=Me("tabs").parts("root","list","trigger","content","indicator"),Nn=H8.build(),X=qe({getRootId:e=>{var n;return((n=e.ids)==null?void 0:n.root)??`tabs:${e.id}`},getListId:e=>{var n;return((n=e.ids)==null?void 0:n.list)??`tabs:${e.id}:list`},getContentId:(e,n)=>{var t;return((t=e.ids)==null?void 0:t.content)??`tabs:${e.id}:content-${n}`},getTriggerId:(e,n)=>{var t;return((t=e.ids)==null?void 0:t.trigger)??`tabs:${e.id}:trigger-${n}`},getIndicatorId:e=>{var n;return((n=e.ids)==null?void 0:n.indicator)??`tabs:${e.id}:indicator`},getListEl:e=>X.getById(e,X.getListId(e)),getContentEl:(e,n)=>X.getById(e,X.getContentId(e,n)),getTriggerEl:(e,n)=>X.getById(e,X.getTriggerId(e,n)),getIndicatorEl:e=>X.getById(e,X.getIndicatorId(e)),getElements:e=>{const t=`[role=tab][data-ownedby='${CSS.escape(X.getListId(e))}']:not([disabled])`;return Zn(X.getListEl(e),t)},getFirstTriggerEl:e=>Ai(X.getElements(e)),getLastTriggerEl:e=>Li(X.getElements(e)),getNextTriggerEl:(e,n)=>Si(X.getElements(e),X.getTriggerId(e,n),e.loopFocus),getPrevTriggerEl:(e,n)=>Ii(X.getElements(e),X.getTriggerId(e,n),e.loopFocus),getSelectedContentEl:e=>{if(e.value)return X.getContentEl(e,e.value)},getSelectedTriggerEl:e=>{if(e.value)return X.getTriggerEl(e,e.value)},getOffsetRect:e=>({left:(e==null?void 0:e.offsetLeft)??0,top:(e==null?void 0:e.offsetTop)??0,width:(e==null?void 0:e.offsetWidth)??0,height:(e==null?void 0:e.offsetHeight)??0}),getRectById:(e,n)=>{const t=Ga(X.getElements(e),X.getTriggerId(e,n));return X.resolveRect(X.getOffsetRect(t))},resolveRect:e=>({width:`${e.width}px`,height:`${e.height}px`,left:`${e.left}px`,top:`${e.top}px`})});function D8(e,n,t){const o=e.context.translations,i=e.matches("focused"),r=e.context.orientation==="vertical",a=e.context.orientation==="horizontal",s=e.context.composite,c=e.context.indicatorState;function d(h){return{selected:e.context.value===h.value,focused:e.context.focusedValue===h.value,disabled:!!h.disabled}}return{value:e.context.value,focusedValue:e.context.focusedValue,setValue(h){n({type:"SET_VALUE",value:h})},clearValue(){n({type:"CLEAR_VALUE"})},setIndicatorRect(h){const v=X.getTriggerId(e.context,h);n({type:"SET_INDICATOR_RECT",id:v})},syncTabIndex(){n("SYNC_TAB_INDEX")},selectNext(h){n({type:"TAB_FOCUS",value:h,src:"selectNext"}),n({type:"ARROW_NEXT",src:"selectNext"})},selectPrev(h){n({type:"TAB_FOCUS",value:h,src:"selectPrev"}),n({type:"ARROW_PREV",src:"selectPrev"})},focus(){var h;(h=X.getSelectedTriggerEl(e.context))==null||h.focus()},getRootProps(){return t.element({...Nn.root.attrs,id:X.getRootId(e.context),"data-orientation":e.context.orientation,"data-focus":O(i),dir:e.context.dir})},getListProps(){return t.element({...Nn.list.attrs,id:X.getListId(e.context),role:"tablist",dir:e.context.dir,"data-focus":O(i),"aria-orientation":e.context.orientation,"data-orientation":e.context.orientation,"aria-label":o==null?void 0:o.listLabel,onKeyDown(h){if(h.defaultPrevented||!Ci(h)||Wa(h))return;const v={ArrowDown(){a||n({type:"ARROW_NEXT",key:"ArrowDown"})},ArrowUp(){a||n({type:"ARROW_PREV",key:"ArrowUp"})},ArrowLeft(){r||n({type:"ARROW_PREV",key:"ArrowLeft"})},ArrowRight(){r||n({type:"ARROW_NEXT",key:"ArrowRight"})},Home(){n("HOME")},End(){n("END")},Enter(){n({type:"ENTER"})}};let g=It(h,e.context);const p=v[g];p&&(h.preventDefault(),p(h))}})},getTriggerState:d,getTriggerProps(h){const{value:v,disabled:g}=h,p=d(h);return t.button({...Nn.trigger.attrs,role:"tab",type:"button",disabled:g,dir:e.context.dir,"data-orientation":e.context.orientation,"data-disabled":O(g),"aria-disabled":g,"data-value":v,"aria-selected":p.selected,"data-selected":O(p.selected),"data-focus":O(p.focused),"aria-controls":p.selected?X.getContentId(e.context,v):void 0,"data-ownedby":X.getListId(e.context),"data-ssr":O(e.context.ssr),id:X.getTriggerId(e.context,v),tabIndex:p.selected&&s?0:-1,onFocus(){n({type:"TAB_FOCUS",value:v})},onBlur(w){const f=w.relatedTarget;(f==null?void 0:f.getAttribute("role"))!=="tab"&&n({type:"TAB_BLUR"})},onClick(w){w.defaultPrevented||g||(Da()&&w.currentTarget.focus(),n({type:"TAB_CLICK",value:v}))}})},getContentProps(h){const{value:v}=h,g=e.context.value===v;return t.element({...Nn.content.attrs,dir:e.context.dir,id:X.getContentId(e.context,v),tabIndex:s?0:-1,"aria-labelledby":X.getTriggerId(e.context,v),role:"tabpanel","data-ownedby":X.getListId(e.context),"data-selected":O(g),"data-orientation":e.context.orientation,hidden:!g})},getIndicatorProps(){var h,v,g,p;return t.element({id:X.getIndicatorId(e.context),...Nn.indicator.attrs,dir:e.context.dir,"data-orientation":e.context.orientation,style:{"--transition-property":"left, right, top, bottom, width, height","--left":(h=c.rect)==null?void 0:h.left,"--top":(v=c.rect)==null?void 0:v.top,"--width":(g=c.rect)==null?void 0:g.width,"--height":(p=c.rect)==null?void 0:p.height,position:"absolute",willChange:"var(--transition-property)",transitionProperty:"var(--transition-property)",transitionDuration:c.transition?"var(--transition-duration, 150ms)":"0ms",transitionTimingFunction:"var(--transition-timing-function)",[a?"left":"top"]:a?"var(--left)":"var(--top)"}})}}}var{not:j8}=wt;function W8(e){const n=ze(e);return ke({initial:"idle",context:{dir:"ltr",orientation:"horizontal",activationMode:"automatic",value:null,loopFocus:!0,composite:!0,...n,focusedValue:n.value??null,ssr:!0,indicatorState:{rendered:!1,transition:!1,rect:{left:"0px",top:"0px",width:"0px",height:"0px"}}},watch:{value:["allowIndicatorTransition","syncIndicatorRect","syncTabIndex","clickIfLink"],dir:["syncIndicatorRect"],orientation:["syncIndicatorRect"]},on:{SET_VALUE:{actions:"setValue"},CLEAR_VALUE:{actions:"clearValue"},SET_INDICATOR_RECT:{actions:"setIndicatorRect"},SYNC_TAB_INDEX:{actions:"syncTabIndex"}},created:["syncFocusedValue"],entry:["checkRenderedElements","syncIndicatorRect","syncTabIndex","syncSsr"],exit:["cleanupObserver"],states:{idle:{on:{TAB_FOCUS:{target:"focused",actions:"setFocusedValue"},TAB_CLICK:{target:"focused",actions:["setFocusedValue","setValue"]}}},focused:{on:{TAB_CLICK:{target:"focused",actions:["setFocusedValue","setValue"]},ARROW_PREV:[{guard:"selectOnFocus",actions:["focusPrevTab","selectFocusedTab"]},{actions:"focusPrevTab"}],ARROW_NEXT:[{guard:"selectOnFocus",actions:["focusNextTab","selectFocusedTab"]},{actions:"focusNextTab"}],HOME:[{guard:"selectOnFocus",actions:["focusFirstTab","selectFocusedTab"]},{actions:"focusFirstTab"}],END:[{guard:"selectOnFocus",actions:["focusLastTab","selectFocusedTab"]},{actions:"focusLastTab"}],ENTER:{guard:j8("selectOnFocus"),actions:"selectFocusedTab"},TAB_FOCUS:{actions:["setFocusedValue"]},TAB_BLUR:{target:"idle",actions:"clearFocusedValue"}}}}},{guards:{selectOnFocus:t=>t.activationMode==="automatic"},actions:{syncFocusedValue(t){t.value!=null&&t.focusedValue==null&&(t.focusedValue=t.value)},selectFocusedTab(t){te(()=>{Dt.value(t,t.focusedValue)})},setFocusedValue(t,o){o.value!=null&&Dt.focusedValue(t,o.value)},clearFocusedValue(t){Dt.focusedValue(t,null)},setValue(t,o){Dt.value(t,o.value)},clearValue(t){Dt.value(t,null)},focusFirstTab(t){te(()=>{var o;(o=X.getFirstTriggerEl(t))==null||o.focus()})},focusLastTab(t){te(()=>{var o;(o=X.getLastTriggerEl(t))==null||o.focus()})},focusNextTab(t){if(!t.focusedValue)return;const o=X.getNextTriggerEl(t,t.focusedValue);te(()=>{t.composite?o==null||o.focus():(o==null?void 0:o.dataset.value)!=null&&Dt.focusedValue(t,o.dataset.value)})},focusPrevTab(t){if(!t.focusedValue)return;const o=X.getPrevTriggerEl(t,t.focusedValue);te(()=>{t.composite?o==null||o.focus():(o==null?void 0:o.dataset.value)!=null&&Dt.focusedValue(t,o.dataset.value)})},checkRenderedElements(t){t.indicatorState.rendered=!!X.getIndicatorEl(t)},syncTabIndex(t){te(()=>{const o=X.getSelectedContentEl(t);if(!o)return;Ka(o).length>0?o.removeAttribute("tabindex"):o.setAttribute("tabindex","0")})},cleanupObserver(t){var o;(o=t.indicatorCleanup)==null||o.call(t)},allowIndicatorTransition(t){t.indicatorState.transition=!0},setIndicatorRect(t,o){const i=o.id??t.value;!t.indicatorState.rendered||!i||!X.getTriggerEl(t,i)||(t.indicatorState.rect=X.getRectById(t,i),wo(()=>{t.indicatorState.transition=!1}))},syncSsr(t){t.ssr=!1},syncIndicatorRect(t){var r;(r=t.indicatorCleanup)==null||r.call(t);const o=t.value;if(!t.indicatorState.rendered||!o)return;const i=X.getSelectedTriggerEl(t);i&&(t.indicatorCleanup=p0(i,{getRect(a){return X.getOffsetRect(a)},onChange(a){t.indicatorState.rect=X.resolveRect(a),wo(()=>{t.indicatorState.transition=!1})}}))},clickIfLink(t){Bi(X.getSelectedTriggerEl(t))}}})}var ma={change:e=>{var n;e.value!=null&&((n=e.onValueChange)==null||n.call(e,{value:e.value}))},focusChange:e=>{var n;e.focusedValue!=null&&((n=e.onFocusChange)==null||n.call(e,{focusedValue:e.focusedValue}))}},Dt={value:(e,n)=>{Ce(n,e.value)||(e.value=n,ma.change(e))},focusedValue:(e,n)=>{Ce(n,e.focusedValue)||(e.focusedValue=n,ma.focusChange(e))}};me()(["activationMode","composite","dir","getRootNode","id","ids","loopFocus","onFocusChange","onValueChange","orientation","translations","value"]);me()(["disabled","value"]);me()(["value"]);const G8=e=>{const{getRootNode:n}=Ye(),{dir:t}=it(),o={id:S.useId(),dir:t,getRootNode:n,value:e.defaultValue,...e},i={...o,value:e.value,onValueChange:ge(e.onValueChange,{sync:!0}),onFocusChange:ge(e.onFocusChange)},[r,a]=We(W8(o),{context:i});return D8(r,a,Be)},k0=S.forwardRef((e,n)=>{const[t,o]=Gi(e),[i,r]=pe()(o,["activationMode","composite","defaultValue","id","ids","loopFocus","onFocusChange","onValueChange","orientation","translations","value"]),a=G8(i),s=A(a.getRootProps(),r);return m.jsx($8,{value:a,children:m.jsx(Wi,{value:t,children:m.jsx(W.div,{...s,ref:n})})})});k0.displayName="TabsRoot";var U8=Me("toast").parts("group","root","title","description","actionTrigger","closeTrigger"),on=U8.build(),Re=qe({getRegionId:e=>`toast-group:${e}`,getRegionEl:(e,n)=>Re.getById(e,`toast-group:${n}`),getRootId:e=>`toast:${e.id}`,getRootEl:e=>Re.getById(e,Re.getRootId(e)),getTitleId:e=>`toast:${e.id}:title`,getDescriptionId:e=>`toast:${e.id}:description`,getCloseTriggerId:e=>`toast${e.id}:close`});function mr(e,n){return e.filter(t=>t.state.context.placement===n)}var pa={info:5e3,error:5e3,success:2e3,loading:1/0,DEFAULT:5e3};function fa(e,n){return e??pa[n]??pa.DEFAULT}function K8(e,n){var h;const t=e.offsets,o=typeof t=="string"?{left:t,right:t,bottom:t,top:t}:t,i=e.dir==="rtl",r=n.replace("-start",i?"-right":"-left").replace("-end",i?"-left":"-right"),a=r.includes("right"),s=r.includes("left"),c={position:"fixed",pointerEvents:e.count>0?void 0:"none",display:"flex",flexDirection:"column","--gap":`${e.gap}px`,"--first-height":`${((h=e.heights[0])==null?void 0:h.height)||0}px`,zIndex:nc};let d="center";if(a&&(d="flex-end"),s&&(d="flex-start"),c.alignItems=d,r.includes("top")){const v=o.top;c.top=`max(env(safe-area-inset-top, 0px), ${v})`}if(r.includes("bottom")){const v=o.bottom;c.bottom=`max(env(safe-area-inset-bottom, 0px), ${v})`}if(!r.includes("left")){const v=o.right;c.insetInlineEnd=`calc(env(safe-area-inset-right, 0px) + ${v})`}if(!r.includes("right")){const v=o.left;c.insetInlineStart=`calc(env(safe-area-inset-left, 0px) + ${v})`}return c}function q8(e,n){const[t]=e.placement.split("-"),o=!e.frontmost,i=!e.stacked,r={position:"absolute",pointerEvents:"auto","--opacity":"0","--remove-delay":`${e.removeDelay}ms`,"--duration":`${e.type==="loading"?Number.MAX_SAFE_INTEGER:e.duration}ms`,"--initial-height":`${e.height}px`,"--offset":`${e.offset}px`,"--index":e.index,"--z-index":e.zIndex,"--lift-amount":"calc(var(--lift) * var(--gap))","--y":"100%","--x":"0"},a=s=>Object.assign(r,s);return t==="top"?a({top:"0","--sign":"-1","--y":"-100%","--lift":"1"}):t==="bottom"&&a({bottom:"0","--sign":"1","--y":"100%","--lift":"-1"}),e.mounted&&(a({"--y":"0","--opacity":"1"}),e.stacked&&a({"--y":"calc(var(--lift) * var(--offset))","--height":"var(--initial-height)"})),n||a({"--opacity":"0",pointerEvents:"none"}),o&&i&&(a({"--base-scale":"var(--index) * 0.05 + 1","--y":"calc(var(--lift-amount) * var(--index))","--scale":"calc(-1 * var(--base-scale))","--height":"var(--first-height)"}),n||a({"--y":"calc(var(--sign) * 40%)"})),o&&e.stacked&&!n&&a({"--y":"calc(var(--lift) * var(--offset) + var(--lift) * -100%)"}),e.frontmost&&!n&&a({"--y":"calc(var(--lift) * -100%)"}),r}function Y8(e,n){const t={position:"absolute",inset:"0",scale:"1 2",pointerEvents:n?"none":"auto"},o=i=>Object.assign(t,i);return e.frontmost&&!n&&o({height:"calc(var(--initial-height) + 80%)"}),t}function X8(e,n){return{position:"absolute",left:"0",height:"calc(var(--gap) + 2px)",bottom:"100%",width:"100%"}}function Z8(e,n,t){function o(){return O2(e)?e.getState():e}function i(h){return mr(o().context.toasts,h)}function r(h){const v=o().context.toasts;return v.length?!!v.find(g=>g.id==h):!1}function a(h){const v=`toast:${Yc()}`,g=h.id?h.id:v;return r(g)||n({type:"ADD_TOAST",toast:{...h,id:g}}),g}function s(h,v){return r(h)&&n({type:"UPDATE_TOAST",id:h,toast:v}),h}function c(h){const{id:v}=h;return(v?r(v):!1)&&v!=null?s(v,h):a(h)}function d(h){h==null?n("DISMISS_ALL"):r(h)&&n({type:"DISMISS_TOAST",id:h})}return{getCount(){return o().context.count},getPlacements(){const v=o().context.toasts.map(g=>g.state.context.placement);return Array.from(new Set(v))},getToastsByPlacement:i,isVisible:r,create:a,update:s,upsert:c,dismiss:d,remove(h){h==null?n("REMOVE_ALL"):r(h)&&n({type:"REMOVE_TOAST",id:h})},dismissByPlacement(h){i(h).forEach(g=>d(g.id))},loading(h){return c({...h,type:"loading"})},success(h){return c({...h,type:"success"})},error(h){return c({...h,type:"error"})},promise(h,v,g={}){const p=c({...g,...v.loading,type:"loading"});return vo(h).then(w=>{const f=vo(v.success,w);c({...g,...f,id:p,type:"success"})}).catch(w=>{const f=vo(v.error,w);c({...g,...f,id:p,type:"error"})}).finally(()=>{var w;(w=v.finally)==null||w.call(v)}),p},pause(h){h==null?n("PAUSE_ALL"):r(h)&&n({type:"PAUSE_TOAST",id:h})},resume(h){h==null?n("RESUME_ALL"):r(h)&&n({type:"RESUME_TOAST",id:h})},getGroupProps(h){const{placement:v,label:g="Notifications"}=h,p=o(),w=p.context.hotkey.join("+").replace(/Key/g,"").replace(/Digit/g,""),[f,x="center"]=v.split("-");return t.element({...on.group.attrs,dir:p.context.dir,tabIndex:-1,"aria-label":`${v} ${g} ${w}`,id:Re.getRegionId(v),"data-placement":v,"data-side":f,"data-align":x,"aria-live":"polite",role:"region",style:K8(p.context,v),onMouseMove(){n({type:"REGION.POINTER_ENTER",placement:v})},onMouseLeave(){n({type:"REGION.POINTER_LEAVE",placement:v})},onFocus(C){n({type:"REGION.FOCUS",target:C.relatedTarget})},onBlur(C){p.context.isFocusWithin&&!Rt(C.currentTarget,C.relatedTarget)&&n({type:"REGION.BLUR"})}})},subscribe(h){const v=o();return xo(v.context.toasts,()=>{const p=i(v.context.placement).map(w=>w.getState().context);h(p)})}}}var{not:J8,and:Q8,or:eu}=wt;function tu(e){const{type:n="info",duration:t,id:o="1",placement:i="bottom",removeDelay:r=200,...a}=e,s=ze(a),c=fa(t,n);return ke({id:o,context:{id:o,type:n,remaining:c,duration:c,removeDelay:r,createdAt:Date.now(),placement:i,...s,height:0,offset:0,frontmost:!1,mounted:!1,index:-1,zIndex:0},initial:n==="loading"?"visible:persist":"visible",on:{UPDATE:[{guard:Q8("hasTypeChanged","isChangingToLoading"),target:"visible:persist",actions:["setContext"]},{guard:eu("hasDurationChanged","hasTypeChanged"),target:"visible:updating",actions:["setContext"]},{actions:["setContext"]}],MEASURE:{actions:["measureHeight"]}},entry:["invokeOnVisible"],activities:["trackHeight"],states:{"visible:updating":{tags:["visible","updating"],after:{0:"visible"}},"visible:persist":{tags:["visible","paused"],on:{RESUME:{guard:J8("isLoadingType"),target:"visible",actions:["setCreatedAt"]},DISMISS:"dismissing"}},visible:{tags:["visible"],after:{VISIBLE_DURATION:"dismissing"},on:{DISMISS:"dismissing",PAUSE:{target:"visible:persist",actions:"setRemainingDuration"}}},dismissing:{entry:"invokeOnDismiss",after:{REMOVE_DELAY:{target:"unmounted",actions:"notifyParentToRemove"}}},unmounted:{entry:"invokeOnUnmount",type:"final"}}},{activities:{trackHeight(d,h,{self:v}){let g;return te(()=>{const p=Re.getRootEl(d);if(!p)return;d.mounted=!0;const w=Zn(p,"[data-ghost]");Ho(w.length!==2,"[toast] No ghost element found in toast. Render the `ghostBefore` and `ghostAfter` elements");const f=()=>{const E=p.style.height;p.style.height="auto";const T=p.getBoundingClientRect().height;p.style.height=E,d.height=T,v.sendParent({type:"UPDATE_HEIGHT",id:v.id,height:T,placement:d.placement})};f();const x=Re.getWin(d),C=new x.MutationObserver(f);C.observe(p,{childList:!0,subtree:!0,characterData:!0}),g=()=>C.disconnect()}),()=>g==null?void 0:g()}},guards:{isChangingToLoading:(d,h)=>{var v;return((v=h.toast)==null?void 0:v.type)==="loading"},isLoadingType:d=>d.type==="loading",hasTypeChanged:(d,h)=>{var v;return((v=h.toast)==null?void 0:v.type)!=null&&h.toast.type!==d.type},hasDurationChanged:(d,h)=>{var v;return((v=h.toast)==null?void 0:v.duration)!=null&&h.toast.duration!==d.duration}},delays:{VISIBLE_DURATION:d=>d.remaining,REMOVE_DELAY:d=>d.removeDelay},actions:{measureHeight(d,h,{self:v}){te(()=>{const g=Re.getRootEl(d);if(!g)return;d.mounted=!0;const p=g.style.height;g.style.height="auto";const w=g.getBoundingClientRect().height;g.style.height=p,d.height=w,v.sendParent({type:"UPDATE_HEIGHT",id:v.id,height:w,placement:d.placement})})},setRemainingDuration(d){d.remaining-=Date.now()-d.createdAt},setCreatedAt(d){d.createdAt=Date.now()},notifyParentToRemove(d,h,{self:v}){v.sendParent({type:"REMOVE_TOAST",id:v.id})},invokeOnDismiss(d){var h;(h=d.onStatusChange)==null||h.call(d,{status:"dismissing"})},invokeOnUnmount(d){var h;(h=d.onStatusChange)==null||h.call(d,{status:"unmounted"})},invokeOnVisible(d){var h;(h=d.onStatusChange)==null||h.call(d,{status:"visible"})},setContext(d,h){var w,f;const v=(w=h.toast)==null?void 0:w.duration,g=((f=h.toast)==null?void 0:f.type)??d.type,p=fa(v,g);Object.assign(d,{...h.toast,duration:p,remaining:p})}}})}function nu(e){const n=ze(e);return ke({id:"toaster",initial:n.overlap?"overlap":"stack",context:{dir:"ltr",max:Number.MAX_SAFE_INTEGER,gap:16,pauseOnPageIdle:!1,hotkey:["altKey","KeyT"],offsets:"1rem",placement:"bottom",removeDelay:200,...n,toasts:[],lastFocusedEl:null,isFocusWithin:!1,heights:[]},computed:{count:t=>t.toasts.length},activities:["trackDocumentVisibility","trackHotKeyPress"],watch:{toasts:["collapsedIfEmpty","setDismissableBranch"]},exit:["removeToasts","clearDismissableBranch","clearLastFocusedEl"],on:{PAUSE_TOAST:{actions:["pauseToast"]},PAUSE_ALL:{actions:["pauseToasts"]},RESUME_TOAST:{actions:["resumeToast"]},RESUME_ALL:{actions:["resumeToasts"]},ADD_TOAST:{guard:"isWithinRange",actions:["createToast","syncToastIndex"]},UPDATE_TOAST:{actions:["updateToast"]},DISMISS_TOAST:{actions:["dismissToast"]},DISMISS_ALL:{actions:["dismissToasts"]},REMOVE_TOAST:{actions:["removeToast","syncToastIndex","syncToastOffset"]},REMOVE_ALL:{actions:["removeToasts"]},UPDATE_HEIGHT:{actions:["syncHeights","syncToastOffset"]},"DOC.HOTKEY":{actions:["focusRegionEl"]},"REGION.BLUR":[{guard:"isOverlapping",target:"overlap",actions:["resumeToasts","restoreLastFocusedEl"]},{actions:["resumeToasts","restoreLastFocusedEl"]}]},states:{stack:{entry:["expandToasts"],on:{"REGION.POINTER_LEAVE":[{guard:"isOverlapping",target:"overlap",actions:["resumeToasts"]},{actions:["resumeToasts"]}],"REGION.OVERLAP":{target:"overlap"},"REGION.FOCUS":{actions:["setLastFocusedEl","pauseToasts"]},"REGION.POINTER_ENTER":{actions:["pauseToasts"]}}},overlap:{entry:["collapseToasts"],on:{"REGION.STACK":{target:"stack"},"REGION.POINTER_ENTER":{target:"stack",actions:["pauseToasts"]},"REGION.FOCUS":{target:"stack",actions:["setLastFocusedEl","pauseToasts"]}}}}},{guards:{isWithinRange:t=>t.toasts.length<t.max,isOverlapping:t=>!!t.overlap},activities:{trackHotKeyPress(t,o,{send:i}){return be(document,"keydown",a=>{t.hotkey.every(c=>a[c]||a.code===c)&&i({type:"DOC.HOTKEY"})},{capture:!0})},trackDocumentVisibility(t,o,{send:i}){if(!t.pauseOnPageIdle)return;const r=Re.getDoc(t);return be(r,"visibilitychange",()=>{i(r.visibilityState==="hidden"?"PAUSE_ALL":"RESUME_ALL")})}},actions:{setDismissableBranch(t){var a;const i=mr(t.toasts,t.placement).length>0;if(!i){(a=t._cleanup)==null||a.call(t);return}if(i&&t._cleanup)return;const r=()=>Re.getRegionEl(t,t.placement);t._cleanup=G5(r,{defer:!0})},clearDismissableBranch(t){var o;(o=t._cleanup)==null||o.call(t)},focusRegionEl(t){queueMicrotask(()=>{var o;(o=Re.getRegionEl(t,t.placement))==null||o.focus()})},expandToasts(t){co(t,o=>{o.state.context.stacked=!0})},collapseToasts(t){co(t,o=>{o.state.context.stacked=!1})},collapsedIfEmpty(t,o,{send:i}){!t.overlap||t.toasts.length>1||i("REGION.OVERLAP")},pauseToast(t,o,{self:i}){i.sendChild("PAUSE",o.id)},pauseToasts(t){t.toasts.forEach(o=>o.send("PAUSE"))},resumeToast(t,o,{self:i}){i.sendChild("RESUME",o.id)},resumeToasts(t){t.toasts.forEach(o=>o.send("RESUME"))},measureToasts(t){t.toasts.forEach(o=>o.send("MEASURE"))},createToast(t,o,{self:i,getState:r}){const a={placement:t.placement,duration:t.duration,removeDelay:t.removeDelay,...o.toast,dir:t.dir,getRootNode:t.getRootNode,stacked:r().matches("stack")},s=tu(a),c=i.spawn(s);t.toasts=[c,...t.toasts]},updateToast(t,o,{self:i}){i.sendChild({type:"UPDATE",toast:o.toast},o.id)},dismissToast(t,o,{self:i}){i.sendChild("DISMISS",o.id)},dismissToasts(t){t.toasts.forEach(o=>o.send("DISMISS"))},removeToast(t,o,{self:i}){i.stopChild(o.id),t.toasts=t.toasts.filter(r=>r.id!==o.id),t.heights=t.heights.filter(r=>r.id!==o.id)},removeToasts(t,o,{self:i}){t.toasts.forEach(r=>i.stopChild(r.id)),t.toasts=[],t.heights=[]},syncHeights(t,o){const i=t.heights.find(r=>r.id===o.id);if(i)i.height=o.height,i.placement=o.placement;else{const r={id:o.id,height:o.height,placement:o.placement};t.heights=[r,...t.heights]}},syncToastIndex(t){co(t,(o,i,r)=>{o.state.context.index=i,o.state.context.frontmost=i===0,o.state.context.zIndex=r.length-i})},syncToastOffset(t,o){const i=o.placement??t.placement;co({...t,placement:i},r=>{const a=Math.max(t.heights.findIndex(c=>c.id===r.id),0),s=t.heights.reduce((c,d,h)=>h>=a?c:c+d.height,0);r.state.context.offset=a*t.gap+s})},setLastFocusedEl(t,o){t.isFocusWithin||!o.target||(t.isFocusWithin=!0,t.lastFocusedEl=De(o.target))},restoreLastFocusedEl(t){t.isFocusWithin=!1,t.lastFocusedEl&&(t.lastFocusedEl.focus({preventScroll:!0}),t.lastFocusedEl=null)},clearLastFocusedEl(t){t.lastFocusedEl&&(t.lastFocusedEl.focus({preventScroll:!0}),t.lastFocusedEl=null,t.isFocusWithin=!1)}}})}function co(e,n){mr(e.toasts,e.placement).forEach(n)}function ou(e,n,t){const o=e.hasTag("visible"),i=e.hasTag("paused"),r=e.context.placement,a=e.context.type,[s,c="center"]=r.split("-");return{type:a,title:e.context.title,description:e.context.description,placement:r,visible:o,paused:i,pause(){n("PAUSE")},resume(){n("RESUME")},dismiss(){n("DISMISS")},getRootProps(){return t.element({...on.root.attrs,dir:e.context.dir,id:Re.getRootId(e.context),"data-state":o?"open":"closed","data-type":a,"data-placement":r,"data-align":c,"data-side":s,"data-mounted":O(e.context.mounted),"data-paused":O(i),"data-first":O(e.context.frontmost),"data-sibling":O(!e.context.frontmost),"data-stack":O(e.context.stacked),"data-overlap":O(!e.context.stacked),role:"status","aria-atomic":"true","aria-describedby":e.context.description?Re.getDescriptionId(e.context):void 0,"aria-labelledby":e.context.title?Re.getTitleId(e.context):void 0,tabIndex:0,style:q8(e.context,o),onKeyDown(d){d.defaultPrevented||d.key=="Escape"&&(n("DISMISS"),d.preventDefault())}})},getGhostBeforeProps(){return t.element({"data-ghost":"before",style:Y8(e.context,o)})},getGhostAfterProps(){return t.element({"data-ghost":"after",style:X8(e.context)})},getTitleProps(){return t.element({...on.title.attrs,id:Re.getTitleId(e.context)})},getDescriptionProps(){return t.element({...on.description.attrs,id:Re.getDescriptionId(e.context)})},getActionTriggerProps(){return t.button({...on.actionTrigger.attrs,type:"button",onClick(d){d.defaultPrevented||n("DISMISS")}})},getCloseTriggerProps(){return t.button({id:Re.getCloseTriggerId(e.context),...on.closeTrigger.attrs,type:"button","aria-label":"Dismiss notification",onClick(d){d.defaultPrevented||n("DISMISS")}})}}}var ti={connect:Z8,machine:nu};const lu=e=>{const n=ti.machine({id:"1",...e});return{...ti.connect(n,n.send,Be),machine:n}},[iu,B0]=re({name:"ToastContext",hookName:"useToastContext",providerName:"<ToastProvider />"}),A0=S.forwardRef((e,n)=>{const t=B0(),o=A(t.getRootProps(),e);return m.jsxs("div",{...o,ref:n,children:[m.jsx("div",{...t.getGhostBeforeProps()}),e.children,m.jsx("div",{...t.getGhostAfterProps()})]})});A0.displayName="ToastRoot";const L0=S.forwardRef((e,n)=>{const t=B0(),o=A(t.getTitleProps(),e);return m.jsx(W.div,{...o,ref:n})});L0.displayName="ToastTitle";const _0=S.forwardRef((e,n)=>{const{toaster:t,children:o,...i}=e,[r,a]=We(t.machine),s=r.context.placement,c=ti.connect(r,a,Be),d=c.getToastsByPlacement(s),h=A(c.getGroupProps({placement:s}),i);return m.jsx(W.div,{...h,ref:n,children:d.map(v=>m.jsx(ru,{value:v,children:g=>o(g)},v.id))})});_0.displayName="Toaster";const ru=e=>{const[n,t]=K2(e.value),o=ou(n,t,Be);return m.jsx(iu,{value:o,children:e.children(n.context)})},au=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m10 6.475-1.37 5.482a.85.85 0 0 1-.825.644H4v-1.2h3.532l1.643-6.576c.215-.858 1.435-.858 1.65 0L14 17.527l1.37-5.482a.85.85 0 0 1 .825-.644H20v1.2h-3.532l-1.643 6.575c-.215.859-1.435.859-1.65 0z",clipRule:"evenodd"})),su=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.023 5.532c0-.47.381-.85.85-.85h16.25c.47 0 .85.38.85.85V15.75c0 .47-.38.85-.85.85h-3.625v-1.2h3.275V5.882H4.223V15.4h3.275v1.2H3.873a.85.85 0 0 1-.85-.85zm8.975 8.831L9.495 18.12h5.007zm-.687-1.131a.827.827 0 0 1 1.375 0l3.202 4.802a.826.826 0 0 1-.688 1.285H8.797a.827.827 0 0 1-.688-1.285z",clipRule:"evenodd"})),cu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 2.057V3.26a8.776 8.776 0 0 1 0 17.478v1.204c5.134-.407 9.174-4.703 9.174-9.943s-4.04-9.536-9.174-9.943M3.223 12a8.776 8.776 0 0 0 7.975 8.74v1.203C6.063 21.536 2.023 17.24 2.023 12s4.04-9.536 9.176-9.943V3.26A8.776 8.776 0 0 0 3.222 12m8.175-5.9v8h1.2v-8zm1.4 11a.8.8 0 1 0-1.6 0 .8.8 0 0 0 1.6 0",clipRule:"evenodd"})),du=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.503 2.249a.85.85 0 0 1 .6-.249h7.794a.85.85 0 0 1 .6.249l5.254 5.254a.85.85 0 0 1 .25.6v7.794a.85.85 0 0 1-.25.6l-5.254 5.254a.85.85 0 0 1-.6.249H8.104a.85.85 0 0 1-.601-.249l-5.254-5.254a.85.85 0 0 1-.249-.6V8.104a.85.85 0 0 1 .249-.601zm8.249.951H8.249L3.2 8.249v7.502L8.249 20.8h7.502l5.05-5.049V8.25zM11.4 14.1v-8h1.2v8z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M12 16.3a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6"})),uu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.277 4.007a1.198 1.198 0 0 0-2.074-.024L2.771 18.19A1.198 1.198 0 0 0 3.801 20h16.424c.916 0 1.492-.987 1.043-1.785zM3.805 18.8l8.428-14.201 7.988 14.2zM11.647 8v6.397h1.2V8zm1.4 8.797a.8.8 0 1 0-1.6 0 .8.8 0 0 0 1.6 0",clipRule:"evenodd"})),hu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20 7.6H4V6.4h16zm-2 3.5H6V9.9h12zm2 3.5H4v-1.2h16zm-2 3.5H6v-1.2h12z",clipRule:"evenodd"})),gu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20 7.6H4V6.4h16zm0 3.5H4V9.9h16zm0 3.5H4v-1.2h16zm0 3.5H4v-1.2h16z",clipRule:"evenodd"})),vu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20 7.6H4V6.4h16zm-4 3.5H4V9.9h12zm4 3.5H4v-1.2h16zm-4 3.5H4v-1.2h12z",clipRule:"evenodd"})),mu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20 7.6H4V6.4h16zm0 3.5H8V9.9h12zm0 3.5H4v-1.2h16zm0 3.5H8v-1.2h12z",clipRule:"evenodd"})),pu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.398 2.092a2.976 2.976 0 0 0 0 5.829V6.677a1.776 1.776 0 0 1 0-3.342zm1.2 4.585a1.776 1.776 0 0 0 0-3.342V2.092a2.976 2.976 0 0 1 0 5.829v12.766a8.776 8.776 0 0 0 8.155-8.155h-1.755v-1.2h2.975v.6c0 5.51-4.465 9.975-9.975 9.975s-9.975-4.465-9.975-9.974v-.6h2.975v1.2H3.244a8.776 8.776 0 0 0 8.154 8.154V7.933h1.2z",clipRule:"evenodd"})),fu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.623 4.65a2.775 2.775 0 1 0 0 5.55 2.775 2.775 0 0 0 0-5.55M3.648 7.423a3.975 3.975 0 1 1 7.95 0 3.975 3.975 0 0 1-7.95 0M16.373 4.65a2.775 2.775 0 1 0 0 5.55 2.775 2.775 0 0 0 0-5.55m-3.975 2.775a3.975 3.975 0 1 1 7.95 0 3.975 3.975 0 0 1-7.95 0M7.623 13.8a2.775 2.775 0 1 0 0 5.55 2.775 2.775 0 0 0 0-5.55m-3.975 2.775a3.975 3.975 0 1 1 7.95 0 3.975 3.975 0 0 1-7.95 0M16.373 13.8a2.775 2.775 0 1 0 0 5.55 2.775 2.775 0 0 0 0-5.55m-3.975 2.775a3.975 3.975 0 1 1 7.95 0 3.975 3.975 0 0 1-7.95 0",clipRule:"evenodd"})),wu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.648 4.3c0-.47.381-.85.85-.85h6.25c.47 0 .85.38.85.85v6.25c0 .469-.38.85-.85.85h-6.25a.85.85 0 0 1-.85-.85zm1.2.35v5.55h5.55V4.65zm7.55-.35c0-.47.381-.85.85-.85h6.25c.47 0 .85.38.85.85v6.25c0 .469-.38.85-.85.85h-6.25a.85.85 0 0 1-.85-.85zm1.2.35v5.55h5.55V4.65zm-9.95 8.8c0-.47.381-.85.85-.85h6.25c.47 0 .85.38.85.85v6.25c0 .469-.38.85-.85.85h-6.25a.85.85 0 0 1-.85-.85zm1.2.35v5.55h5.55V13.8zm7.55-.35c0-.47.381-.85.85-.85h6.25c.47 0 .85.38.85.85v6.25c0 .469-.38.85-.85.85h-6.25a.85.85 0 0 1-.85-.85zm1.2.35v5.55h5.55V13.8z",clipRule:"evenodd"})),Eu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.723 5.1v3.8h16.55V5.1zm-1.2-.35c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v4.5c0 .47-.38.85-.85.85H3.373a.85.85 0 0 1-.85-.85zm2.2 14.15v-7.2h-1.2v7.55c0 .47.381.85.85.85h15.25c.47 0 .85-.38.85-.85V11.7h-1.2v7.2zm10.275-5.3h-6v-1.2h6z",clipRule:"evenodd"})),yu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 3.261V2.057c5.134.407 9.174 4.703 9.174 9.943s-4.04 9.536-9.174 9.943V20.74a8.776 8.776 0 0 0 0-17.478m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.062 2.464 2.022 6.76 2.022 12s4.04 9.536 9.176 9.943zm.199-6.188L8.666 11.82l-.848.849 3.58 3.58a.85.85 0 0 0 1.201 0l3.58-3.58-.848-.849-2.733 2.733V8h-1.2z",clipRule:"evenodd"})),xu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.598 16.552 17.576 5.576l.848.849L7.447 17.4h9.822v1.2H6.249a.85.85 0 0 1-.85-.85V6.73h1.2z",clipRule:"evenodd"})),Cu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M16.55 17.4 5.574 6.423l.849-.849 10.975 10.977V6.73h1.2v11.02c0 .47-.38.85-.85.85H6.73v-1.2z",clipRule:"evenodd"})),bu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.398 19.037-6.944-6.944-.849.848 7.792 7.792a.85.85 0 0 0 1.202 0l7.793-7.793-.85-.848-6.944 6.945.001-15.523h-1.2z",clipRule:"evenodd"})),Ru=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 3.261V2.057c5.134.407 9.174 4.703 9.174 9.943s-4.04 9.536-9.174 9.943V20.74a8.776 8.776 0 0 0 0-17.478m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.062 2.464 2.022 6.76 2.022 12s4.04 9.536 9.176 9.943zM7.75 11.4l3.58-3.58.849.849L9.447 11.4h6.552v1.2H9.445l2.733 2.733-.848.848-3.58-3.58a.85.85 0 0 1 0-1.202",clipRule:"evenodd"})),Su=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m3.268 11.399 7.792-7.792.848.849-6.943 6.943 15.522.002v1.2l-15.523-.002 6.945 6.946-.848.848-7.793-7.792a.85.85 0 0 1 0-1.202",clipRule:"evenodd"})),Iu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 3.261V2.057c5.134.407 9.174 4.703 9.174 9.943s-4.04 9.536-9.174 9.943V20.74a8.776 8.776 0 0 0 0-17.478m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.062 2.464 2.022 6.76 2.022 12s4.04 9.536 9.176 9.943zm3.35-9.34-2.731-2.731.848-.849 3.58 3.58a.85.85 0 0 1 0 1.202l-3.58 3.58-.849-.849L14.55 12.6H7.998v-1.2z",clipRule:"evenodd"})),Tu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.942 3.607 7.793 7.793a.85.85 0 0 1 0 1.202l-7.792 7.791-.848-.848 6.944-6.944-15.523-.002v-1.2l15.522.002-6.944-6.945z",clipRule:"evenodd"})),Mu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.362 5.93A3.764 3.764 0 0 0 6.6 9.694h-1.2a4.964 4.964 0 1 1 9.927 0h-1.2a3.764 3.764 0 0 0-3.764-3.764m-4.964 9.437V11.29h1.2v4.077zm8.728 1.854V11.29h1.2v5.93l2.248-2.247.849.848-3.096 3.096a.85.85 0 0 1-1.202 0l-3.096-3.096.848-.849z",clipRule:"evenodd"})),zu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.085 8.672 8.18 5.576l.848.849-2.248 2.248h5.93v1.2h-5.93l2.249 2.249-.849.848-3.096-3.096a.85.85 0 0 1 0-1.202m9.223.001a4.964 4.964 0 1 1 0 9.927v-1.2a3.764 3.764 0 1 0 0-7.527zM8.635 17.4h4.076v1.2H8.635z",clipRule:"evenodd"})),Ou=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m17.22 8.673-2.247-2.248.848-.849 3.096 3.096a.85.85 0 0 1 0 1.202L15.82 12.97l-.849-.848 2.249-2.249h-5.932v-1.2zm-7.526 1.2a3.764 3.764 0 0 0 0 7.527v1.2a4.964 4.964 0 1 1 0-9.927zm5.673 8.727h-4.078v-1.2h4.078z",clipRule:"evenodd"})),Vu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M14.125 5.083a.85.85 0 0 1 1.202 0l3.096 3.096-.849.848-2.248-2.248v5.93h-1.2V6.78l-2.249 2.249-.848-.849zm-7.527 3.55v4.077h-1.2V8.633zm.254 9.183a4.96 4.96 0 0 1-1.453-3.51h1.2a3.764 3.764 0 1 0 7.527 0h1.2a4.964 4.964 0 0 1-8.474 3.51",clipRule:"evenodd"})),Fu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 3.261V2.057c5.134.407 9.174 4.703 9.174 9.943s-4.04 9.536-9.174 9.943V20.74a8.776 8.776 0 0 0 0-17.478m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.062 2.464 2.022 6.76 2.022 12s4.04 9.536 9.176 9.943zm.198-12.987a.85.85 0 0 1 1.202 0l3.58 3.58-.849.848-2.732-2.732V16h-1.2V9.448L8.666 12.18l-.849-.849z",clipRule:"evenodd"})),Pu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.398 6.25c0-.47.381-.85.85-.85h11.02v1.2h-9.82l10.975 10.977-.849.848L6.598 7.448v9.823h-1.2z",clipRule:"evenodd"})),ku=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.73 5.4h11.02c.469 0 .85.38.85.85v11.02h-1.2V7.45L6.422 18.423l-.849-.848L16.551 6.6H6.73z",clipRule:"evenodd"})),Bu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.398 3.267a.85.85 0 0 1 1.202 0l7.792 7.791-.85.848L12.6 4.964l-.002 15.522h-1.2L11.4 4.962l-6.946 6.946-.849-.849z",clipRule:"evenodd"})),Au=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.398 4.25c0-.47.381-.85.85-.85h13.5c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85h-13.5a.85.85 0 0 1-.85-.85zm1.2.35v14.8h12.8V4.6zm4.5 3.5a.9.9 0 1 0 0 1.8.9.9 0 0 0 0-1.8m-2.1.9a2.1 2.1 0 1 1 4.2 0 2.1 2.1 0 0 1-4.2 0m8 5.1h-8v-1.2h8zm0 3h-8v-1.2h8z",clipRule:"evenodd"})),Lu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 3.261V2.057c5.134.407 9.174 4.703 9.174 9.943s-4.04 9.536-9.174 9.943V20.74a8.76 8.76 0 0 0 5.898-3.07c-1.404-.407-2.52-1.507-3.017-2.91A4.6 4.6 0 1 1 16.599 12v1.114c0 1.817 1.273 3.27 2.869 3.493a8.776 8.776 0 0 0-6.67-13.346m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.062 2.464 2.022 6.76 2.022 12s4.04 9.536 9.176 9.943zm4.2-8.739a3.4 3.4 0 1 0-6.8 0 3.4 3.4 0 0 0 6.8 0",clipRule:"evenodd"})),_u=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.899 3.68a3.627 3.627 0 0 1 3.953 5.917l-.849-.849a2.428 2.428 0 0 0-3.433-3.433l-.848-.848a3.6 3.6 0 0 1 1.177-.787m-7.201 6.81 4.893-4.893.849.849-4.894 4.893zm7.034-2.751.849.848-6.026 6.027a.915.915 0 0 0 1.274 1.31l6.044-6.045.849.849-6.027 6.026-.027.027-.097.098-.005-.005a2.113 2.113 0 0 1-2.98-2.98l-.005-.004zm-7.319 4.734a3.941 3.941 0 1 0 5.574 5.574l.848.848a5.14 5.14 0 0 1-7.27 0 5.14 5.14 0 0 1 0-7.271zm6.708 4.44 4.893-4.893.848.848-4.893 4.894z",clipRule:"evenodd"})),Nu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.199 3.05a6.152 6.152 0 0 0-3.502 10.497V20.1c0 .7.8 1.1 1.36.68l2.941-2.205 2.94 2.205a.85.85 0 0 0 1.36-.68v-6.55a6.152 6.152 0 0 0-3.5-10.498v1.213a4.952 4.952 0 0 1 0 9.773v1.213l.091-.013a6.1 6.1 0 0 0 2.21-.773v4.935l-2.591-1.943a.85.85 0 0 0-1.02 0L8.898 19.4v-4.936a6.1 6.1 0 0 0 2.3.787v-1.213a4.953 4.953 0 0 1 0-9.773z",clipRule:"evenodd"})),$u=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.773 7.185c.408-.566 1.302-.278 1.302.42v2.965c0 .102.038.19.098.251.064.065.15.1.238.1h1.65c.585 0 .924.663.583 1.138l-3.417 4.751c-.407.567-1.301.279-1.301-.42v-2.964a.36.36 0 0 0-.1-.252.33.33 0 0 0-.237-.1H6.94a.718.718 0 0 1-.583-1.138zm.102 1.914-1.996 2.775h.71c.411 0 .803.165 1.092.457.291.295.445.691.445 1.095v1.47l1.995-2.774h-.71c-.411 0-.804-.166-1.092-.457a1.55 1.55 0 0 1-.444-1.095zM3.598 8.1h3.57V6.9h-3.92a.85.85 0 0 0-.85.85v8.5c0 .47.381.85.85.85h4.08v-1.2h-3.73zm12.8 0h-3.72V6.9h4.07c.47 0 .85.38.85.85v8.5c0 .47-.38.85-.85.85h-4.55v-1.2h4.2zm4 2.5h-1.2V9.4h1.55c.47 0 .85.38.85.85v3.5c0 .47-.38.85-.85.85h-1.55v-1.2h1.2z",clipRule:"evenodd"})),Hu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 7.75c0-.47.381-.85.85-.85h13.5c.47 0 .85.38.85.85v8.5c0 .47-.38.85-.85.85h-13.5a.85.85 0 0 1-.85-.85zm1.2.35v7.8h12.8V8.1zm16.8 2.5h-1.2V9.4h1.55c.47 0 .85.381.85.85v3.5c0 .47-.38.85-.85.85h-1.55v-1.2h1.2z",clipRule:"evenodd"})),Du=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.547 5.65h1.2v8.313h8.1V7.231h5.161v1.2h-3.96v5.532h7.202v-2.292h1.2v6.68h-1.2v-3.188H3.747v3.188h-1.2zm5.241 2.781a1.644 1.644 0 1 0 0 3.288 1.644 1.644 0 0 0 0-3.288m-2.844 1.644a2.844 2.844 0 1 1 5.688 0 2.844 2.844 0 0 1-5.688 0m15.306 0c0-.908-.736-1.644-1.644-1.644v-1.2a2.844 2.844 0 0 1 2.844 2.844z",clipRule:"evenodd"})),ju=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.044 9.156A6.6 6.6 0 0 0 5.399 12h1.2a5.4 5.4 0 0 1 .358-1.931zM16.55 17.4 7.78 8.63l-.853-.853L3.09 3.939l.848-.848 16.97 16.97-.848.848-2.31-2.309zm-2.262 0H6.19A2.6 2.6 0 0 0 6.6 16v-2.4H5.4V16A1.4 1.4 0 0 1 4 17.4v1.2h11.488zm4.311-1.91V13.6h-1.2v.69zm-8.531-8.533A5.4 5.4 0 0 1 17.4 12h1.2a6.6 6.6 0 0 0-9.445-5.955zM11.999 2a2.6 2.6 0 0 0-2.6 2.6h1.2a1.4 1.4 0 0 1 2.8 0h1.2A2.6 2.6 0 0 0 12 2m1.4 17.4a1.4 1.4 0 1 1-2.8 0H9.4a2.6 2.6 0 1 0 5.2 0z",clipRule:"evenodd"})),Wu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.162 2.762A2.6 2.6 0 0 1 14.6 4.6h-1.2a1.4 1.4 0 0 0-2.8 0H9.4c0-.69.274-1.35.761-1.838M7.333 7.333A6.6 6.6 0 0 1 18.6 12h-1.2a5.4 5.4 0 0 0-10.8 0H5.4a6.6 6.6 0 0 1 1.933-4.667M6.6 13.6V16c0 .5-.144.985-.41 1.4h11.62a2.6 2.6 0 0 1-.41-1.4v-2.4h1.2V16a1.4 1.4 0 0 0 1.4 1.4v1.2H4v-1.2A1.4 1.4 0 0 0 5.4 16v-2.4zm4 5.8a1.4 1.4 0 1 0 2.8 0h1.2a2.6 2.6 0 1 1-5.2 0z",clipRule:"evenodd"})),Gu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.439 4.826 4.049.002a.85.85 0 0 1 .832.677l.865 4.177v.003l.412 1.937-1.174.25-.292-1.375-10.315 1.79a.85.85 0 0 1-.995-.838V9.237h-1.38v-1.2h3.96v1.2h-1.38v1.797l9.864-1.711-.683-3.294-3.764-.002zm4.816 11.798h-1.258a3.351 3.351 0 0 0 6.508 0h-1.258a2.15 2.15 0 0 1-3.992 0m3.992-1.6h1.258a3.351 3.351 0 0 0-6.508 0h1.258a2.15 2.15 0 0 1 3.992 0M5.42 14.335a1.82 1.82 0 0 0-1.634 1.02H2.508a3.02 3.02 0 0 1 5.824 0H7.055a1.82 1.82 0 0 0-1.635-1.02m-2.912 2.62h1.278a1.82 1.82 0 0 0 3.269 0h1.277a3.02 3.02 0 0 1-5.824 0",clipRule:"evenodd"})),Uu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.48 2.25h3.25c.47 0 .85.38.85.85v1.15h1.8v1.2h-1.8v2.8h1.615a.85.85 0 0 1 .813.601l2.447 8a.85.85 0 0 1-.813 1.099H3.268a.85.85 0 0 1-.841-.97l.928-6.5a.85.85 0 0 1 .842-.73h4.65a.85.85 0 0 1 .706.379l1.748 2.621h3.079v-9.3h-2.9zm4.1 7.2v3.65c0 .47-.38.85-.85.85h-3.616a.85.85 0 0 1-.708-.378L8.66 10.95H4.5l-.828 5.8h15.497l-2.233-7.3zm3.4-5.2a2.6 2.6 0 0 1 0 5.2v-1.2a1.4 1.4 0 1 0 0-2.8zM4.83 19.15a1.4 1.4 0 1 0 2.8 0h1.2a2.6 2.6 0 0 1-5.2 0zm10 0a1.4 1.4 0 1 0 2.8 0h1.2a2.6 2.6 0 0 1-5.2 0z",clipRule:"evenodd"})),Ku=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.599 5.449v5.103L15.15 8zm-1.2 5.103V4.604c0-.758.915-1.137 1.45-.601l3.397 3.396a.85.85 0 0 1 0 1.202l-3.399 3.4 3.399 3.398a.85.85 0 0 1 0 1.202l-3.396 3.397c-.536.535-1.451.156-1.451-.601v-5.948l-2.976 2.975-.849-.848L11.15 12 7.574 8.424l.849-.848zm1.2 2.897v5.103L15.15 16z",clipRule:"evenodd"})),qu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.898 3.4h4v1.2h-2.8v6.8h2.8v1.2h-2.8v6.8h4.8v1.2h-6zm8.005 2.196a3.4 3.4 0 0 0-2.405-.996V3.4a4.6 4.6 0 0 1 2.98 8.106 4.6 4.6 0 0 1-.98 9.094v-1.2a3.4 3.4 0 1 0 0-6.8h-2v-1.2a3.4 3.4 0 0 0 2.405-5.804",clipRule:"evenodd"})),Yu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.598 5.4v11.8h6.4c.5 0 .986.143 1.4.408V6.8a1.4 1.4 0 0 0-1.4-1.4zm8.4-.262a2.6 2.6 0 0 0-2-.939h-6.75a.85.85 0 0 0-.85.85v12.5c0 .47.381.85.85.85h6.75a1.4 1.4 0 0 1 1.4 1.4h1.2a1.4 1.4 0 0 1 1.4-1.4h6.75c.47 0 .85-.38.85-.85V5.05a.85.85 0 0 0-.85-.85h-6.75a2.6 2.6 0 0 0-2 .939m.6 12.47a2.6 2.6 0 0 1 1.4-.409h6.4V5.4h-6.4a1.4 1.4 0 0 0-1.4 1.4z",clipRule:"evenodd"})),Xu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.398 4.25c0-.47.381-.85.85-.85h13.5c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85H8.598v-1.2h9.8v-2.8h-9.8v-1.2h9.8V4.6h-12.8v11.21a2.6 2.6 0 0 1 1.4-.41v1.2a1.4 1.4 0 0 0 0 2.8v1.2a2.6 2.6 0 0 1-2.6-2.6z",clipRule:"evenodd"})),Zu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.567 3.425v16.901l5.9-4.72a.85.85 0 0 1 1.062 0l5.9 4.72V3.425zm-1.2-.35c0-.47.38-.85.85-.85H18.78c.47 0 .85.38.85.85v17.98a.85.85 0 0 1-1.381.663l-6.25-5-6.25 5a.85.85 0 0 1-1.382-.663z",clipRule:"evenodd"})),Ju=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.746 3.947A4.6 4.6 0 0 1 16.598 7.2h-1.2a3.4 3.4 0 1 0-6.8 0h-1.2a4.6 4.6 0 0 1 1.348-3.253M4.098 10v9.8h15.8V10zm-1.2-.35c0-.47.381-.85.85-.85h16.5c.47 0 .85.38.85.85v10.5c0 .47-.38.85-.85.85h-16.5a.85.85 0 0 1-.85-.85zm4 8.55v-6.6h1.2v6.6zm9 0v-6.6h1.2v6.6z",clipRule:"evenodd"})),Qu=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.547 3.021a3.4 3.4 0 0 1 5.804 2.404h-1.2a2.2 2.2 0 0 0-4.4 0h-1.2a3.4 3.4 0 0 1 .996-2.404M7.55 8.008a6.307 6.307 0 0 1 10.2 1.848 2.4 2.4 0 0 0 2.356-2.4h1.2a3.6 3.6 0 0 1-3.155 3.573q.166.704.166 1.439h-1.2a5.108 5.108 0 1 0-10.215 0h-1.2q.001-.734.166-1.438a3.6 3.6 0 0 1-3.165-3.574h1.2a2.4 2.4 0 0 0 2.365 2.4A6.3 6.3 0 0 1 7.55 8.008m-4.259 5.46h3v1.2h-3zm14.415 0h3v1.2h-3zm-5.096 1.914v4.135h-1.2v-4.135zm-5.708.286a5.108 5.108 0 0 0 10.215 0h1.2q-.001.729-.163 1.428a3.6 3.6 0 0 1 3.152 3.572h-1.2a2.4 2.4 0 0 0-2.35-2.4 6.306 6.306 0 0 1-11.493 0 2.4 2.4 0 0 0-2.36 2.4h-1.2a3.6 3.6 0 0 1 3.163-3.573 6.3 6.3 0 0 1-.164-1.427z",clipRule:"evenodd"})),e3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.671 4.243a1.53 1.53 0 0 0-1.53 1.53h-1.2a2.73 2.73 0 0 1 2.517-2.722v-.008h11.08v.008a2.73 2.73 0 0 1 2.519 2.723h-1.2a1.53 1.53 0 0 0-1.531-1.531zM5.141 7.37v8.99h-1.2V8.57h-.67v2.81h-1.2V8.22c0-.47.38-.85.85-.85h2.22m13.715 8.99V7.37h2.22c.47 0 .85.38.85.85v3.16h-1.2V8.57h-.67v7.79zm-1.319-4.192H6.458v-1.2h11.08zm-9.377 2.13a.465.465 0 1 0 0 .931.465.465 0 0 0 0-.93m-1.666.466a1.665 1.665 0 1 1 3.331 0 1.665 1.665 0 0 1-3.33 0m9.447-.465a.465.465 0 1 0 0 .93.465.465 0 0 0 0-.93m-1.666.465a1.665 1.665 0 1 1 3.331 0 1.665 1.665 0 0 1-3.33 0M7.698 18.56v1.548c0 .469-.381.85-.85.85H4.79a.85.85 0 0 1-.85-.85V17.96h1.2v1.797h1.357V18.21c0-.47.38-.85.85-.85h9.301c.47 0 .85.38.85.85v1.547h1.357V17.96h1.2v2.148c0 .469-.38.85-.85.85h-2.057a.85.85 0 0 1-.85-.85V18.56z",clipRule:"evenodd"})),t3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.6 3.4v2h1.3v-2zm-1.2-.35c0-.47.38-.85.85-.85h2c.47 0 .85.38.85.85v.75h3.8v-.75c0-.47.38-.85.85-.85h2c.47 0 .85.38.85.85v.75h2.55c.47 0 .85.38.85.85V9.6h-1.2V5h-2.2v.75c0 .469-.38.85-.85.85h-2a.85.85 0 0 1-.85-.85V5h-3.8v.75c0 .469-.38.85-.85.85h-2a.85.85 0 0 1-.85-.85V5H4.2v4.6H3V4.65c0-.47.38-.85.85-.85H6.4zm8.7.35v2h1.3v-2zm3.5 7.6H5.4V9.8h13.2zM4.2 20.6v-9.4H3v9.75c0 .469.38.85.85.85h16.3c.47 0 .85-.381.85-.85V11.2h-1.2v9.4z",clipRule:"evenodd"})),n3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.788 6.9H2.85a.85.85 0 0 0-.85.85v12.5c0 .47.38.85.85.85h15.138l-1.2-1.2H3.2V8.1h1.788zm4.446 4.447a4.375 4.375 0 0 0 5.994 5.994l-.886-.887a3.175 3.175 0 0 1-4.22-4.22zm6.345 4.081-4.431-4.431-.857-.857-6.2-6.2.848-.849 16.97 16.97-.849.849-1.01-1.01h.001l-3.615-3.615zM8.128 5.018l.876.876A3.399 3.399 0 0 1 15.4 7.5h1.2a4.6 4.6 0 0 0-8.472-2.482m4.194 4.194 4.041 4.041a4.376 4.376 0 0 0-4.04-4.04M20.8 17.69l1.2 1.2V7.75a.85.85 0 0 0-.85-.85H18.2v1.2h2.6z",clipRule:"evenodd"})),o3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12 2.9a4.6 4.6 0 0 0-4.6 4.6h1.2a3.4 3.4 0 1 1 6.8 0h1.2A4.6 4.6 0 0 0 12 2.9M5.805 8.1H3.2v11.8h17.6V8.1h-2.6V6.9h2.95c.47 0 .85.38.85.85v12.5c0 .47-.38.85-.85.85H2.85a.85.85 0 0 1-.85-.85V7.75c0-.47.38-.85.85-.85h2.955zM12.8 16.65a3.176 3.176 0 0 0 0-6.147V9.273a4.376 4.376 0 0 1 0 8.605zm-1.6-6.147a3.176 3.176 0 0 0 0 6.147v1.228a4.376 4.376 0 0 1 0-8.604z",clipRule:"evenodd"})),l3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m6.442 5.225-1.844 5.99v4.315h-1.2v-4.367a.9.9 0 0 1 .038-.25l.573.176-.573-.176 1.935-6.288a.85.85 0 0 1 .812-.6h11.63a.85.85 0 0 1 .813.6l1.935 6.288a.9.9 0 0 1 .037.25v4.367h-1.2v-4.314l-1.843-5.99zm11.756 6.5h-12.4v-1.2h12.4zm-10.7 2a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m10.6-.4a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m-7.9 3.6v1.4c0 .47-.38.85-.85.85h-1.9a.85.85 0 0 1-.85-.85v-2h1.2v1.65h1.2v-1.4c0-.47.381-.85.85-.85h10.7c.47 0 .85.38.85.85v1.4h1.2v-1.65h1.2v2c0 .47-.38.85-.85.85h-1.9a.85.85 0 0 1-.85-.85v-1.4z",clipRule:"evenodd"})),i3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.2 5.705c0-.444.36-.805.805-.805h15.989c.445 0 .805.36.805.805v11.99c0 .445-.36.805-.805.805H11.33v-1.2h8.269V6.1h-15.2v3.97H3.2zm0 6.265a6.53 6.53 0 0 1 6.528 6.53h-1.2A5.33 5.33 0 0 0 3.2 13.17zm0 2.837A3.693 3.693 0 0 1 6.892 18.5h-1.2a2.494 2.494 0 0 0-2.494-2.493z",clipRule:"evenodd"})),r3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.198 2.684-.054.004a9.35 9.35 0 0 0-7.356 13.785l-.707 3.46a.833.833 0 0 0 .984.984l3.46-.707a9.35 9.35 0 0 0 3.673 1.105V20.11A8.15 8.15 0 0 1 7.995 19.1a.84.84 0 0 0-.578-.092l-3.049.623.623-3.048a.84.84 0 0 0-.092-.579A8.15 8.15 0 0 1 11.2 3.89zm1.6 17.426q.397-.039.79-.117a8.15 8.15 0 0 0-.79-16.104V2.684l.049.004a9.35 9.35 0 0 1-.049 18.628z",clipRule:"evenodd"})),a3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.898 5c0-.47.381-.85.85-.85h16.5c.47 0 .85.38.85.85v11.5c0 .47-.38.85-.85.85H8.64L4.13 19.606a.85.85 0 0 1-1.23-.76zm1.2.35v12.93l4.08-2.04a.85.85 0 0 1 .38-.09h11.34V5.35z",clipRule:"evenodd"})),s3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 3.261V2.057c5.134.407 9.174 4.703 9.174 9.943s-4.04 9.536-9.174 9.943V20.74a8.776 8.776 0 0 0 0-17.478m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.062 2.464 2.022 6.76 2.022 12s4.04 9.536 9.176 9.943zm6.457-11.724-6.894 6.894a.85.85 0 0 1-1.203 0l-3.485-3.485.849-.848 3.237 3.237 6.647-6.646z",clipRule:"evenodd"})),c3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.998 3.256-7.4 2.22V11.8h-1.2V5.216a.85.85 0 0 1 .606-.814l7.75-2.325a.85.85 0 0 1 .489 0l7.75 2.325-.173.575.173-.575a.85.85 0 0 1 .605.814V11.8h-1.2V5.476zm4.925 6.15L11.17 15.16a.85.85 0 0 1-1.202 0l-2.894-2.894.849-.848 2.646 2.646 5.505-5.505zM4.598 13.4a7.4 7.4 0 1 0 14.8 0h1.2a8.6 8.6 0 1 1-17.2 0z",clipRule:"evenodd"})),d3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 3.375c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v17.25c0 .47-.38.85-.85.85H3.373a.85.85 0 0 1-.85-.85zm1.2.35v16.55h16.55V3.725zm13.933 5.29-6.894 6.895a.85.85 0 0 1-1.203 0l-3.485-3.485.849-.849 3.237 3.238 6.647-6.647z",clipRule:"evenodd"})),u3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.766 8.636 10.81 16.59a.85.85 0 0 1-1.202 0l-4.035-4.035.849-.848 3.787 3.787 7.707-7.708z",clipRule:"evenodd"})),h3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.397 11.248 7.574 7.425l.849-.849 3.576 3.576 3.575-3.576.849.849-3.823 3.823a.85.85 0 0 1-1.203 0m0 6-3.823-3.823.849-.849 3.576 3.576 3.575-3.576.849.849-3.823 3.823a.85.85 0 0 1-1.203 0",clipRule:"evenodd"})),g3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m6.753 11.4 3.823-3.824.849.849L7.849 12l3.576 3.576-.849.849L6.753 12.6a.85.85 0 0 1 0-1.202m6 0 3.823-3.824.849.849L13.849 12l3.576 3.576-.849.849-3.823-3.824a.85.85 0 0 1 0-1.202",clipRule:"evenodd"})),v3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m13.423 7.576 3.823 3.823a.85.85 0 0 1 0 1.203l-3.823 3.823-.849-.849L16.15 12l-3.576-3.575zm-6 0 3.823 3.823a.85.85 0 0 1 0 1.203l-3.823 3.823-.849-.849L10.15 12 6.574 8.425z",clipRule:"evenodd"})),m3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.397 6.753a.85.85 0 0 1 1.203 0l3.823 3.823-.849.849L12 7.849l-3.576 3.576-.849-.849zm0 6a.85.85 0 0 1 1.203 0l3.823 3.823-.849.849L12 13.849l-3.576 3.576-.849-.849z",clipRule:"evenodd"})),p3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m18.08 9.597-5.48 5.48a.85.85 0 0 1-1.202 0l.424-.425-.424.425-5.48-5.48.848-.849L12 13.981l5.233-5.233z",clipRule:"evenodd"})),f3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m5.632 11.4 3.823-3.824.848.849L6.728 12l3.576 3.576-.849.849L5.632 12.6a.85.85 0 0 1 0-1.202m8.914-3.824 3.823 3.823a.85.85 0 0 1 0 1.203l-3.823 3.823-.849-.849L17.273 12l-3.576-3.575zm2.974 4.672Z",clipRule:"evenodd"})),w3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m8.925 11.398 5.48-5.48.848.848L10.021 12l5.232 5.233-.848.848-5.48-5.48a.85.85 0 0 1 0-1.202",clipRule:"evenodd"})),E3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m9.595 5.918 5.48 5.48a.85.85 0 0 1 0 1.202l-5.48 5.48-.849-.848 5.233-5.233-5.233-5.233z",clipRule:"evenodd"})),y3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.398 5.632a.85.85 0 0 1 1.202 0l3.823 3.823-.849.848L12 6.728l-3.576 3.576-.849-.849zm.848.849-.248-.248zm-.849 11.888-3.823-3.823.849-.849 3.576 3.576 3.575-3.576.849.849-3.823 3.823a.85.85 0 0 1-1.203 0",clipRule:"evenodd"})),x3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.398 8.925a.85.85 0 0 1 1.202 0l5.48 5.48-.848.848-5.233-5.232-5.233 5.232-.848-.848z",clipRule:"evenodd"})),C3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 2.057V3.26a8.776 8.776 0 0 1 0 17.478v1.204c5.134-.407 9.174-4.703 9.174-9.943s-4.04-9.536-9.174-9.943m-1.6 19.886V20.74a8.776 8.776 0 0 1 0-17.478V2.057C6.062 2.464 2.022 6.76 2.022 12s4.04 9.536 9.176 9.943",clipRule:"evenodd"})),b3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M15.998 4h-8V2.8h8zm-10.4 1.2h.6V4h-.95a.85.85 0 0 0-.85.85v15.5c0 .47.381.85.85.85h13.5c.47 0 .85-.38.85-.85V4.85a.85.85 0 0 0-.85-.85h-1.15v1.2h.8V20h-12.8zm10.4 1.2h-8V5.2h8z",clipRule:"evenodd"})),R3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 3.261V2.057c5.134.407 9.174 4.703 9.174 9.943s-4.04 9.536-9.174 9.943V20.74a8.776 8.776 0 0 0 0-17.478m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.062 2.464 2.022 6.76 2.022 12s4.04 9.536 9.176 9.943zm.2-8.843V6h1.2v5.752l3.824 3.824-.849.848-3.927-3.926a.85.85 0 0 1-.249-.601",clipRule:"evenodd"})),S3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.798 3.261V2.057c5.135.407 9.175 4.703 9.175 9.943s-4.04 9.536-9.175 9.943V20.74a8.776 8.776 0 0 0 0-17.478m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.063 2.464 2.023 6.76 2.023 12s4.04 9.536 9.175 9.943zM11.15 12 8.018 8.869l.849-.849 3.131 3.132L15.13 8.02l.848.849L12.847 12l3.131 3.131-.848.849-3.132-3.131-3.131 3.131-.849-.849z",clipRule:"evenodd"})),I3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.503 2.249a.85.85 0 0 1 .6-.249h7.794a.85.85 0 0 1 .6.249l5.254 5.254a.85.85 0 0 1 .25.6v7.794a.85.85 0 0 1-.25.6l-5.254 5.254a.85.85 0 0 1-.6.249H8.104a.85.85 0 0 1-.601-.249l-5.254-5.254a.85.85 0 0 1-.249-.6V8.104a.85.85 0 0 1 .249-.601zm8.249.951H8.249L3.2 8.249v7.502L8.249 20.8h7.502l5.05-5.049V8.25zm-4.6 8.8L8.02 8.869l.848-.849L12 11.152 15.13 8.02l.849.849L12.848 12l3.132 3.131-.849.849L12 12.848 8.868 15.98l-.848-.849z",clipRule:"evenodd"})),T3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 3.375c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v17.25c0 .47-.38.85-.85.85H3.373a.85.85 0 0 1-.85-.85zm1.2.35v16.55h16.55V3.725zM11.15 12 8.019 8.87l.848-.849 3.131 3.132L15.13 8.02l.848.849L12.847 12l3.131 3.132-.848.848-3.132-3.131-3.131 3.131-.848-.848z",clipRule:"evenodd"})),M3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.15 12 5.21 6.06l.85-.85L12 11.15l5.939-5.94.848.85-5.94 5.94 5.94 5.939-.848.848-5.94-5.94-5.94 5.94-.848-.848z",clipRule:"evenodd"})),z3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.031 15.9a5.6 5.6 0 0 1 5.174-5.584l.426.426v.758a4.4 4.4 0 0 0 0 8.8v1.2a5.6 5.6 0 0 1-5.6-5.6m8.75 0c0-.606.096-1.189.274-1.735l.989.99a4.4 4.4 0 0 0-.063.745zm5.66 4.4a4.4 4.4 0 0 0 .686-.062l.989.989a5.6 5.6 0 0 1-1.735.273v-1.2zm2.316-.695.864.864.44.44.85-.848L3.94 3.091l-.849.848 2.976 2.976 1 1 4.746 4.745.864.865zM21.98 15.9c0 .867-.197 1.688-.549 2.42l-.915-.915A4.4 4.4 0 0 0 16.38 11.5v-1.2a5.6 5.6 0 0 1 5.6 5.6m-7.2-5.368v1.137l-.82-.82a5.6 5.6 0 0 1 .82-.317M12.006 3.7c-1.43 0-2.72.6-3.631 1.563l-.85-.849A6.2 6.2 0 0 1 18.206 8.7h-1.2a5 5 0 0 0-5-5M9.23 21.5h5.55v-1.2H9.23z",clipRule:"evenodd"})),O3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.806 8.7a6.2 6.2 0 0 1 12.4 0h-1.2a5 5 0 0 0-10 0zM2.03 15.9a5.6 5.6 0 0 1 5.6-5.6v1.2a4.4 4.4 0 0 0 0 8.8v1.2a5.6 5.6 0 0 1-5.6-5.6m7.2 5.6h5.55v-1.2H9.23zm7.21-1.2h-.06v1.2a5.6 5.6 0 1 0 0-11.2v1.2a4.4 4.4 0 0 1 .06 8.8m-1.66-8.5v-1.268c-2.313.689-4 2.831-4 5.368h1.2a4.4 4.4 0 0 1 2.8-4.1",clipRule:"evenodd"})),V3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.428 4.991a1.4 1.4 0 1 0 0 2.8v1.2a2.6 2.6 0 1 1 0-5.2zm3.6 0a1.4 1.4 0 0 0 0 2.8v1.2a2.6 2.6 0 1 1 0-5.2zm3.6 0a1.4 1.4 0 0 0 0 2.8v1.2a2.6 2.6 0 1 1 0-5.2zm2.311 6.703H3.11v-1.2h13.83zm2.746 1.4a1.4 1.4 0 0 0-1.4-1.4v-1.2a2.6 2.6 0 1 1 0 5.2v-1.2a1.4 1.4 0 0 0 1.4-1.4m-15.372.2a5.714 5.714 0 0 0 11.43 0h1.2a6.914 6.914 0 0 1-13.83 0z",clipRule:"evenodd"})),F3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.845 10.692H5.98v1.2h5.063c.469 0 .85-.38.85-.85V5.98h-1.2v3.863L6.059 5.211l-.848.849zm2.262 2.265c0-.47.38-.85.85-.85h5.062v1.2h-3.863l4.632 4.633-.849.848-4.632-4.633v3.865h-1.2z",clipRule:"evenodd"})),P3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.307 9.844V5.98h-1.2v5.063c0 .469.38.85.85.85h5.062v-1.2h-3.863l4.632-4.634-.849-.848zM5.98 12.107h5.063c.469 0 .85.38.85.85v5.062h-1.2v-3.863l-4.634 4.632-.848-.849 4.633-4.632H5.98z",clipRule:"evenodd"})),k3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.552 11.4 6.82 8.67l.848-.849 3.58 3.58a.85.85 0 0 1 0 1.202l-3.58 3.58-.849-.848L9.552 12.6H3v-1.2zm3.201 0 3.58-3.58.848.849L14.45 11.4h6.552v1.2h-6.552l2.733 2.733-.849.848-3.58-3.58a.85.85 0 0 1 0-1.202",clipRule:"evenodd"})),B3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m7.354 11.399 5.458-5.458.848.849-4.61 4.61h10.648v1.2H9.05l4.61 4.61-.848.848-5.458-5.457a.85.85 0 0 1 0-1.203m-3.053 6.1v-11h1.2v11z",clipRule:"evenodd"})),A3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m14.95 11.4-4.611-4.61.848-.849 5.458 5.458a.85.85 0 0 1 0 1.202l-5.459 5.457-.848-.848 4.61-4.61H4.301v-1.2zm3.548 6.1v-11h1.2v11z",clipRule:"evenodd"})),L3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.402 9.552 8.669 6.82l-.849.849 3.58 3.58a.85.85 0 0 0 1.202 0l3.58-3.58-.848-.848-2.732 2.732V3h-1.2zM7.82 16.333l3.58-3.58a.85.85 0 0 1 1.202 0l3.58 3.58-.848.848-2.732-2.732v6.552h-1.2v-6.552l-2.733 2.733z",clipRule:"evenodd"})),_3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.398 2.47a3.726 3.726 0 0 0 0 7.31V8.543a2.526 2.526 0 0 1 0-4.839zm1.2 6.18h2.05V6.125a2.526 2.526 0 0 0-2.05-2.48V2.43a3.726 3.726 0 0 1 3.25 3.695V8.65h4.3V6h.002a3.726 3.726 0 0 1 3.248-3.57v1.214a2.526 2.526 0 0 0-2.05 2.48V8.65h2.05v1.2h-2.05v4.3h2.05v1.2h-2.05v2.525c0 1.232.883 2.258 2.05 2.48v1.215a3.726 3.726 0 0 1-3.25-3.695V15.35h-4.3V18h-.002a3.726 3.726 0 0 1-3.248 3.57v-1.215a2.526 2.526 0 0 0 2.05-2.48V15.35h-2.05v-1.2h2.05v-4.3h-2.05zm-1.2 5.57a3.726 3.726 0 0 0 0 7.31v-1.236a2.526 2.526 0 0 1 0-4.839zm15-8.095a2.53 2.53 0 0 1-1.8 2.42v1.234a3.726 3.726 0 0 0 0-7.309v1.235a2.53 2.53 0 0 1 1.8 2.42m-1.8 9.33V14.22a3.726 3.726 0 0 1 0 7.31v-1.236a2.526 2.526 0 0 0 0-4.839M9.848 9.85v4.3h4.3v-4.3z",clipRule:"evenodd"})),N3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 3.261V2.057c5.134.407 9.174 4.703 9.174 9.943s-4.04 9.536-9.174 9.943V20.74a8.776 8.776 0 0 0 0-17.478m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.062 2.464 2.022 6.76 2.022 12s4.04 9.536 9.176 9.943zm3.574-12.526c.708-.294 1.413.426 1.103 1.128l-1.868 4.237a.85.85 0 0 1-.442.438l-4.291 1.842c-.706.303-1.42-.41-1.116-1.116l1.84-4.288a.85.85 0 0 1 .456-.45zm-.347 1.443-3.38 1.402-1.439 3.352 3.359-1.442z",clipRule:"evenodd"})),$3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M16.413 4.637a2.1 2.1 0 0 1 2.97 2.97l-.04.039-.848-.849.04-.04a.9.9 0 1 0-1.273-1.272l-.425-.424.425.424-.04.04-.848-.85zM5.598 5.6h8.2V4.4h-8.55a.85.85 0 0 0-.85.85v13.5c0 .47.381.85.85.85h13.5c.47 0 .85-.38.85-.85V10.2h-1.2v8.2h-12.8zm4.047 7.501 6.697-6.697-.848-.848-6.801 6.8a.85.85 0 0 0-.249.608l.013 1.755a.85.85 0 0 0 .844.843l1.755.013a.85.85 0 0 0 .607-.249l6.8-6.8-.848-.849-6.697 6.697-1.263-.01z",clipRule:"evenodd"})),H3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m13.63 11.4 3.823-3.824.849.849L14.726 12l3.576 3.576-.849.849L13.63 12.6a.85.85 0 0 1 0-1.202M6.302 7.575l3.823 3.823a.85.85 0 0 1 0 1.203l-3.823 3.823-.849-.849L9.03 12 5.453 8.425z",clipRule:"evenodd"})),D3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.397 10.127 7.574 6.304l.849-.849 3.576 3.576 3.575-3.576.849.849-3.823 3.823a.85.85 0 0 1-1.203 0m0 3.505a.85.85 0 0 1 1.203 0l3.823 3.823-.849.849L12 14.728l-3.576 3.576-.849-.849zm.849.848Z",clipRule:"evenodd"})),j3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.599 4.25c0-.47.38-.85.85-.85h12.3c.469 0 .85.38.85.85v12.3c0 .47-.381.85-.85.85h-1.15v-1.2h.8V4.6h-11.6v.8h-1.2zm-3.2 3.2c0-.47.38-.85.85-.85h12.299c.47 0 .85.381.85.85v12.3c0 .47-.38.85-.85.85h-12.3a.85.85 0 0 1-.85-.85zm1.2.35v11.6h11.599V7.8z",clipRule:"evenodd"})),W3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.071 11.375V5h1.2v6.378a4.963 4.963 0 0 1-4.77 4.946v.003h-7.72l2.248 2.249-.848.848-3.096-3.096a.85.85 0 0 1 0-1.202L8.18 12.03l.849.849-2.25 2.249h7.528a3.764 3.764 0 0 0 3.763-3.753",clipRule:"evenodd"})),G3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.73 11.364V5h1.2v6.375a3.766 3.766 0 0 0 3.764 3.752h7.527l-2.249-2.248.849-.849 3.096 3.096a.85.85 0 0 1 0 1.202l-3.096 3.096-.848-.848 2.248-2.248H9.5v-.004a4.963 4.963 0 0 1-4.77-4.946v-.014",clipRule:"evenodd"})),U3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.635 4.73h6.364v1.2h-6.375A3.766 3.766 0 0 0 8.87 9.693v7.529l2.249-2.249.848.849-3.096 3.096a.85.85 0 0 1-1.202 0L4.574 15.82l.849-.848L7.67 17.22V9.5h.004a4.964 4.964 0 0 1 4.945-4.77z",clipRule:"evenodd"})),K3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m8.87 6.779 2.25 2.249.848-.849-3.096-3.096a.85.85 0 0 0-1.202 0L4.574 8.179l.849.848L7.67 6.78V14.5h.004a4.964 4.964 0 0 0 4.945 4.77H19v-1.2h-6.376a3.764 3.764 0 0 1-3.752-3.761z",clipRule:"evenodd"})),q3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.375 5.93H5v-1.2h6.378a4.964 4.964 0 0 1 4.946 4.77h.003v7.72l2.249-2.247.848.848-3.096 3.096a.85.85 0 0 1-1.202 0L12.03 15.82l.849-.849 2.249 2.249V9.694a3.764 3.764 0 0 0-3.753-3.764",clipRule:"evenodd"})),Y3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M15.126 5.083a.85.85 0 0 1 1.202 0l3.096 3.096-.848.848-2.248-2.248v7.72h-.004a4.964 4.964 0 0 1-4.946 4.77H5v-1.2h6.375a3.766 3.766 0 0 0 3.752-3.763V6.779L12.88 9.028l-.849-.849z",clipRule:"evenodd"})),X3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.085 7.672 8.18 4.576l.848.849-2.248 2.248h7.531a4.964 4.964 0 0 1 4.96 4.95V19h-1.2v-6.375a3.764 3.764 0 0 0-3.763-3.752H6.781l2.249 2.249-.849.848-3.096-3.096a.85.85 0 0 1 0-1.202",clipRule:"evenodd"})),Z3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.668 7.672h-8.98v1.2h8.98z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m17.82 8.273-2.847-2.848.848-.849 3.096 3.096a.85.85 0 0 1 0 1.202L15.82 11.97l-.849-.848zm-8.126.6a3.764 3.764 0 0 0-3.764 3.752V19h-1.2v-6.378a4.964 4.964 0 0 1 4.964-4.95z",clipRule:"evenodd"})),J3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.4 4.4V2h1.2v2.4h2.8V2h1.2v2.4h4.15c.47 0 .85.38.85.85V9.4H22v1.2h-2.4v2.8H22v1.2h-2.4v4.15c0 .47-.38.85-.85.85H14.6V22h-1.2v-2.4h-2.8V22H9.4v-2.4H5.25a.85.85 0 0 1-.85-.85V14.6H2v-1.2h2.4v-2.8H2V9.4h2.4V5.25c0-.47.38-.85.85-.85zM5.6 5.6v12.8h12.8V5.6zm2.8 3.65c0-.47.38-.85.85-.85h5.5c.47 0 .85.38.85.85v5.5c0 .47-.38.85-.85.85h-5.5a.85.85 0 0 1-.85-.85zm1.2.35v4.8h4.8V9.6z",clipRule:"evenodd"})),Q3=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 5.75c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85V8.3h-1.2V6.1h-16.8v2.2h-1.2zm18 4.15v8h-16.8v-8h-1.2v8.35c0 .47.381.85.85.85h17.5c.47 0 .85-.38.85-.85V9.9zm-1.4-1.4h-14V7.3h14zm0 2.402h-14v-1.2h14zm-2.8 3.598a.8.8 0 0 0 1.6 0h1.2a2 2 0 1 1-4 0z",clipRule:"evenodd"})),eh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.4 7.4V4h1.2v3.4h7.15c.47 0 .85.38.85.85v7.15H20v1.2h-3.4V20h-1.2v-3.4H8.25a.85.85 0 0 1-.85-.85V8.6H4V7.4zm1.2 1.2v6.8h6.8V8.6z",clipRule:"evenodd"})),th=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.998 3.708 5.131 8.001l6.867 4.292 6.868-4.292zm7.4 5.375-6.8 4.25v6.585l6.8-4.25zm-8 10.835v-6.585l-6.8-4.25v6.585zm.15-17.343a.85.85 0 0 1 .9 0l7.868 4.917a.6.6 0 0 1 .282.509v7.86a.85.85 0 0 1-.4.722l-7.882 4.926a.6.6 0 0 1-.636 0l-7.882-4.926a.85.85 0 0 1-.4-.721V8a.6.6 0 0 1 .282-.51z",clipRule:"evenodd"})),nh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.624 5.66a.819.819 0 0 1 1.055-1.053l13.01 4.898c.69.26.711 1.228.033 1.519l-4.804 2.059 3.962 3.962-.848.849-3.962-3.962-2.059 4.802c-.29.678-1.26.656-1.519-.037zm1.417.366 4.242 11.36 2.033-4.742a.6.6 0 0 1 .315-.315l4.748-2.035zm4.575 12.252Z",clipRule:"evenodd"})),oh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M16.25 4.6a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8M13.65 6a2.6 2.6 0 1 1 5.2 0 2.6 2.6 0 0 1-5.2 0m-.852 3.667a4.1 4.1 0 0 0 4.185 2.613l-.105-1.196a2.9 2.9 0 0 1-3.071-2.206.9.9 0 0 0-.582-.635.86.86 0 0 0-.88.193l-3.82 3.704a.86.86 0 0 0-.202.925.89.89 0 0 0 .71.572c1.9.26 3.364 1.89 3.364 3.86h1.2a5.1 5.1 0 0 0-3.791-4.928zM5.75 14.674a2.15 2.15 0 0 0-1.996 1.35H2.496a3.351 3.351 0 0 1 6.508 0H7.746a2.15 2.15 0 0 0-1.996-1.35m-3.254 2.95h1.258a2.15 2.15 0 0 0 3.992 0h1.258a3.351 3.351 0 0 1-6.508 0m13.758 0h-1.258a3.351 3.351 0 0 0 6.508 0h-1.258a2.15 2.15 0 0 1-3.992 0m3.992-1.6h1.258a3.351 3.351 0 0 0-6.508 0h1.258a2.15 2.15 0 0 1 3.992 0",clipRule:"evenodd"})),lh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.313 5.929c0-.073.044-.237.344-.474.294-.231.756-.466 1.38-.674 1.242-.414 2.997-.68 4.962-.68s3.72.266 4.962.68c.624.208 1.086.443 1.38.674.3.237.344.401.344.474v.003c-.002.075-.049.238-.344.471-.294.231-.756.466-1.38.674-1.242.414-2.997.68-4.962.68s-3.72-.266-4.962-.68c-.624-.208-1.086-.443-1.38-.674-.3-.237-.344-.401-.344-.474m-1.2 0c0-.598.364-1.072.801-1.416.444-.35 1.05-.639 1.743-.87C8.052 3.178 9.941 2.9 12 2.9s3.947.278 5.341.743c.695.231 1.3.52 1.743.87.438.344.802.818.802 1.416v12.143c0 .598-.365 1.072-.802 1.416-.443.35-1.048.639-1.743.87-1.394.465-3.283.742-5.341.742s-3.947-.277-5.342-.742c-.694-.231-1.299-.52-1.743-.87-.437-.344-.8-.818-.8-1.416V5.929m1.2 7.761v4.382c0 .073.044.237.344.474.294.231.756.466 1.38.674 1.242.414 2.997.68 4.962.68s3.72-.266 4.962-.68c.624-.208 1.086-.443 1.38-.674.3-.237.343-.401.344-.474V13.69c-.383.23-.84.429-1.345.597-1.394.465-3.283.742-5.341.742s-3.947-.277-5.342-.742a6.8 6.8 0 0 1-1.344-.597m13.372-1.686c-.002.074-.049.238-.344.47-.294.232-.756.466-1.38.675-1.242.414-2.997.68-4.962.68s-3.72-.266-4.962-.68c-.624-.208-1.086-.443-1.38-.674-.3-.237-.344-.402-.344-.474V7.619c.383.23.84.428 1.344.596 1.395.465 3.284.743 5.342.743s3.947-.278 5.341-.743a6.8 6.8 0 0 0 1.345-.596z",clipRule:"evenodd"})),ih=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.503 5.65a.85.85 0 0 1 .6-.25H20.75c.47 0 .85.38.85.85v11.5c0 .47-.38.85-.85.85H9.104a.85.85 0 0 1-.601-.249l.424-.424-.424.424-5.75-5.75a.85.85 0 0 1 0-1.202zm.746.95-5.4 5.4 5.4 5.4H20.4V6.6zm-5.647 5.153L3.353 12zm5.75-5.255-.248-.248zM14 11.152l2.576-2.576.849.849L14.849 12l2.576 2.576-.849.849L14 12.849l-2.575 2.576-.849-.849L13.152 12l-2.576-2.575.849-.849z",clipRule:"evenodd"})),rh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.023 12c0-5.24 4.04-9.536 9.175-9.943V3.26a8.776 8.776 0 0 0 0 17.478v1.204C6.063 21.536 2.023 17.24 2.023 12m10.775 9.943c5.135-.407 9.175-4.703 9.175-9.943s-4.04-9.536-9.175-9.943V3.26a8.776 8.776 0 0 1 0 17.478zm-.8-12.718a2.775 2.775 0 1 0 0 5.55 2.775 2.775 0 0 0 0-5.55M8.023 12a3.975 3.975 0 1 1 7.95 0 3.975 3.975 0 0 1-7.95 0",clipRule:"evenodd"})),ah=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.15 6.375c0-1.369.964-2.511 2.25-2.787v1.25a1.65 1.65 0 0 0 0 3.074v1.25a2.85 2.85 0 0 1-2.25-2.787m4.5 0c0 .7-.435 1.297-1.05 1.537v1.25a2.851 2.851 0 0 0 0-5.574v1.25a1.65 1.65 0 0 1 1.05 1.537M3 12.6v-1.2h18v1.2zm8.4 3.487a1.65 1.65 0 0 0 0 3.075v1.25a2.851 2.851 0 0 1 0-5.574zm1.2 3.075a1.65 1.65 0 0 0 0-3.075v-1.25a2.85 2.85 0 0 1 0 5.574z",clipRule:"evenodd"})),sh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.272 5.1H9.75a3.75 3.75 0 1 0 0 7.5h.522v-1.2H9.75a2.55 2.55 0 1 1 0-5.1h.522zm0 12.6H6.6v1.2h3.672zm3.438 1.2h.414c1.02 0 2.004-.39 2.732-1.09A3.7 3.7 0 0 0 18 15.15a3.7 3.7 0 0 0-1.144-2.66 3.94 3.94 0 0 0-2.606-1.088V11.4h-.54v1.2h.417c.716 0 1.398.275 1.898.755.499.48.775 1.127.775 1.795a2.5 2.5 0 0 1-.775 1.795c-.5.48-1.184.755-1.901.755h-.414zm0-12.6h3.69V5.1h-3.69zM11.472 3h1.038v18h-1.038z",clipRule:"evenodd"})),ch=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7 7.905a5.004 5.004 0 0 1 10.009 0h-1.2a3.804 3.804 0 0 0-7.61 0zm-4.602 5.662a4.533 4.533 0 0 1 4.533-4.532v1.2a3.333 3.333 0 0 0-.79 6.57l-.284 1.166a4.534 4.534 0 0 1-3.459-4.404m17.933 0A3.33 3.33 0 0 0 17 10.237v-1.2a4.533 4.533 0 0 1 1.152 8.917l-.305-1.161a3.334 3.334 0 0 0 2.485-3.224m-8.895 5.483-2.73-2.73-.849.849 3.673 3.672c.28.28.735.28 1.015 0l3.673-3.673-.848-.848-2.734 2.734V12.5h-1.2z",clipRule:"evenodd"})),dh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.399 14.55-3.218-3.217-.849.848 4.066 4.066a.85.85 0 0 0 1.202 0l4.066-4.066-.849-.848L12.6 14.55V2h-1.2zM5.794 5.796a8.775 8.775 0 1 0 12.41 0l.848-.849a9.975 9.975 0 1 1-14.107 0z",clipRule:"evenodd"})),uh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.4 3.753a.85.85 0 0 1 1.201 0l3.11 3.11-.848.848L12 4.85 9.137 7.712l-.848-.849zM3.752 11.4l3.11-3.11.848.848-2.862 2.863 2.863 2.863-.849.848-3.11-3.11a.85.85 0 0 1 0-1.202m15.4.6L16.29 9.139l.849-.848 3.11 3.11a.85.85 0 0 1 0 1.202l-3.11 3.11-.85-.848zM12 11.2a.8.8 0 1 0 0 1.6.8.8 0 0 0 0-1.6m-2 .8a2 2 0 1 1 4 0 2 2 0 0 1-4 0m2 7.153L9.136 16.29l-.848.848 3.11 3.11a.85.85 0 0 0 1.202 0l3.11-3.11-.848-.848z",clipRule:"evenodd"})),hh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M14.29 5.141a2.25 2.25 0 1 1 3.182 3.182l-.13.13-.848-.849.13-.13.423.425-.424-.424a1.05 1.05 0 0 0-1.485-1.485l-.13.13-.848-.849zl.424.425zM6.039 15.09l7.84-7.84-.848-.85-7.94 7.94a.85.85 0 0 0-.248.579l-.055 2.034a.85.85 0 0 0 .873.873l2.034-.055a.85.85 0 0 0 .579-.249l7.94-7.94-.85-.848-7.84 7.841-1.526.041zm13.746 5.11h-15V19h15z",clipRule:"evenodd"})),gh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.27 6.093a.863.863 0 0 1 1.459 0l5.522 8.718a.863.863 0 0 1-.73 1.325H6.479a.863.863 0 0 1-.73-1.325zM12 7.184l-4.91 7.752h9.82zm6.316 11.352H5.684v-1.2h12.632z",clipRule:"evenodd"})),vh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.035 5.885c0-.47.38-.85.85-.85h5.062v1.2H7.084l4.633 4.633-.85.849-4.632-4.634v3.865h-1.2zm11.88 11.88h-3.864v1.2h5.063c.47 0 .85-.381.85-.85v-5.063h-1.2v3.863l-4.633-4.632-.849.849z",clipRule:"evenodd"})),mh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.742 6.592c0-.47.38-.85.85-.85h5.062v1.2H7.791l9.266 9.266v-3.863h1.2v5.062c0 .47-.381.85-.85.85h-5.063v-1.2h3.865L6.942 7.79v3.865h-1.2z",clipRule:"evenodd"})),ph=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.344 5.742h5.063c.469 0 .85.38.85.85v5.062h-1.2V7.791L7.79 17.057h3.863v1.2H6.592a.85.85 0 0 1-.85-.85v-5.063h1.2v3.865l9.267-9.267h-3.865z",clipRule:"evenodd"})),fh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.05 5.035h5.064c.47 0 .85.38.85.85v5.062h-1.2V7.084l-4.633 4.633-.849-.85 4.634-4.632H13.05zm-6.815 11.88v-3.864h-1.2v5.063c0 .47.38.85.85.85h5.062v-1.2H7.084l4.633-4.633-.85-.849z",clipRule:"evenodd"})),wh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.552 11.4 15.821 8.67l.848-.849 3.58 3.58a.85.85 0 0 1 0 1.202l-3.58 3.58-.849-.848 2.733-2.733H5.448l2.733 2.733-.848.848-3.58-3.58a.85.85 0 0 1 0-1.202l3.58-3.58.848.849L5.449 11.4z",clipRule:"evenodd"})),Eh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m2.753 11.4 3.58-3.58.848.849L4.449 11.4h6.552v1.2H4.449l2.732 2.733-.848.848-3.58-3.58a.85.85 0 0 1 0-1.202m16.8 0L16.82 8.67l.848-.849 3.58 3.58a.85.85 0 0 1 0 1.202l-3.58 3.58-.849-.848 2.733-2.733h-6.552v-1.2z",clipRule:"evenodd"})),yh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m4.55 11.399 5.458-5.458.848.849-4.61 4.61h10.648v1.2H6.246l4.611 4.61-.848.848-5.46-5.457a.85.85 0 0 1 0-1.203m13.942 6.1v-11h1.2v11z",clipRule:"evenodd"})),xh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m17.748 11.4-4.611-4.61.848-.849 5.458 5.458a.85.85 0 0 1 0 1.202l-5.459 5.457-.848-.848 4.61-4.61H7.1v-1.2zM4.3 17.5v-11h1.2v11z",clipRule:"evenodd"})),Ch=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.4 3.753a.85.85 0 0 1 1.202 0l3.58 3.58-.848.848-2.732-2.732v13.103l2.732-2.731.848.848-3.58 3.58a.85.85 0 0 1-1.202 0l-3.58-3.58.849-.849 2.733 2.733V5.448L8.669 8.181l-.849-.848z",clipRule:"evenodd"})),bh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.4 2.753a.85.85 0 0 1 1.202 0l3.58 3.58-.848.848-2.732-2.732v6.552h-1.2V4.449L8.669 7.18l-.849-.848zm.002 16.8L8.669 16.82l-.849.849 3.58 3.58a.85.85 0 0 0 1.202 0l3.58-3.58-.848-.848-2.732 2.731v-6.551h-1.2z",clipRule:"evenodd"})),Rh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M14.402 3.4h5.35c.47 0 .85.38.85.85V9.6h-1.2V5.45l-6.975 6.975-.849-.849L18.554 4.6h-4.152zm-2.4 1.2a7.4 7.4 0 1 0 7.4 7.4h1.2a8.6 8.6 0 1 1-8.6-8.6z",clipRule:"evenodd"})),Sh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.89 8.003A9.94 9.94 0 0 0 2.023 15h1.2c0-2.395.96-4.565 2.515-6.149zm3.905 1.643L6.963 7.813l-.86-.86-1.529-1.528.849-.849 14.07 14.071-.848.849-1.784-1.784-.886-.887-1.622-1.622-.863-.862-3.832-3.832zm-.694 1.568a3.975 3.975 0 0 0 4.683 4.683l-1.145-1.145a2.776 2.776 0 0 1-2.393-2.392zm6.244 6.244a8.8 8.8 0 0 1-2.347.317c-2.9 0-5.47-1.405-7.07-3.575l-.965.712a9.96 9.96 0 0 0 8.035 4.063c1.158 0 2.27-.197 3.304-.56zm4.762-1.46q.502-.51.926-1.086l-.966-.712a9 9 0 0 1-.808.95zm-3.211-3.212a3.975 3.975 0 0 0-4.683-4.683l1.145 1.145a2.78 2.78 0 0 1 2.392 2.393zM9.652 6.543A8.775 8.775 0 0 1 20.773 15h1.2c0-5.51-4.465-9.976-9.975-9.976a10 10 0 0 0-3.303.56z",clipRule:"evenodd"})),Ih=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.223 15a8.775 8.775 0 1 1 17.55 0h1.2c0-5.509-4.465-9.975-9.975-9.975S2.023 9.491 2.023 15zm9.375-.29a2.776 2.776 0 0 0 0-5.42V8.07a3.976 3.976 0 0 1 0 7.86zm-1.2-5.42a2.776 2.776 0 0 0 0 5.42v1.22a3.976 3.976 0 0 1 0-7.86zm.6 8.485c-2.9 0-5.47-1.405-7.07-3.575l-.965.712a9.96 9.96 0 0 0 8.035 4.063c3.297 0 6.22-1.6 8.035-4.063l-.966-.712a8.76 8.76 0 0 1-7.069 3.575",clipRule:"evenodd"})),Th=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.5 3.65a.85.85 0 0 1 .602-.25h8.646c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85h-13.5a.85.85 0 0 1-.85-.85V9.104a.85.85 0 0 1 .25-.601zm.747.95L5.598 9.25V19.4h12.8V4.6zm-4.75 4.751h-.001l-.248-.247.248.247m4.852-4.853-.247-.248zM11.4 11.4V9h1.2v2.4h2.4v1.2h-2.4V15h-1.2v-2.4h-2.4v-1.2z",clipRule:"evenodd"})),Mh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.5 3.65a.85.85 0 0 1 .602-.25h8.646c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85h-13.5a.85.85 0 0 1-.85-.85V9.104a.85.85 0 0 1 .25-.601zm.747.95L5.598 9.25V19.4h12.8V4.6zm-4.75 4.751h-.001l-.248-.247.248.247m4.852-4.853-.247-.248zm1.05 9.054-1.794-1.794-.849.849 2.64 2.64a.85.85 0 0 0 1.203 0l2.64-2.64-.848-.848-1.793 1.792v-4.55h-1.2z",clipRule:"evenodd"})),zh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.398 4.25c0-.47.381-.85.85-.85h13.5c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85h-13.5a.85.85 0 0 1-.85-.85zm1.2.35v14.8h12.8V4.6zm10.4 5h-8V8.4h8zm0 3h-8v-1.2h8zm-2 3h-6v-1.2h6z",clipRule:"evenodd"})),Oh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.5 3.65a.85.85 0 0 1 .602-.25h8.646c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85h-13.5a.85.85 0 0 1-.85-.85V9.104a.85.85 0 0 1 .25-.601zm.747.95L5.598 9.25V19.4h12.8V4.6zm-4.75 4.751h-.001l-.248-.247.248.247m4.852-4.853-.247-.248zm1.048 4.255a.85.85 0 0 1 1.202 0l2.64 2.64-.849.848-1.792-1.792V15h-1.2v-4.552l-1.794 1.794-.848-.849z",clipRule:"evenodd"})),Vh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.247 4.6 5.598 9.25V19.4h12.8V4.6zm-.746-.95a.85.85 0 0 1 .601-.25h8.646c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85h-13.5a.85.85 0 0 1-.85-.85V9.104a.85.85 0 0 1 .25-.601zm2.097 2.547V9.75c0 .47-.38.85-.85.85H7.195V9.4h3.203V6.197z",clipRule:"evenodd"})),Fh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 3.375c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v17.25c0 .47-.38.85-.85.85H3.373a.85.85 0 0 1-.85-.85zm1.2.35V6.9h2.675V3.725zm3.875 0V11.4h8.8V3.725zm10 0V6.9h2.675V3.725zM20.273 8.1h-2.675v3.3h2.675zm0 4.5h-2.675v2.8h2.675zm0 4h-2.675v3.675h2.675zm-3.875 3.675V12.6h-8.8v7.675zm-10 0V16.6H3.723v3.675zM3.723 15.4h2.675v-2.8H3.723zm0-4h2.675V8.1H3.723z",clipRule:"evenodd"})),Ph=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21 7.6H3V6.4h18zm-3 5H6v-1.2h12zm-3 5H9v-1.2h6z",clipRule:"evenodd"})),kh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.402 3.25c0-.47.38-.85.85-.85h.354v1.2h-.004v18.15h-1.2zm15.22.35H6.202V2.4h13.225a.85.85 0 0 1 .621 1.43m-1.426-.23-3.9 4.178a.85.85 0 0 0 0 1.16l3.9 4.177H6.202v1.2h13.225a.85.85 0 0 0 .621-1.43l-4.225-4.527 4.225-4.528",clipRule:"evenodd"})),Bh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.098 5.9v12.2h15.8V8.3h-9.782a.85.85 0 0 1-.653-.307L7.717 5.9zm-1.2-.35c0-.47.381-.85.85-.85h4.133a.85.85 0 0 1 .653.305L10.28 7.1h9.97c.469 0 .85.38.85.85v10.5c0 .47-.381.85-.85.85h-16.5a.85.85 0 0 1-.85-.85z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.398 12.4V10h1.2v2.4h2.4v1.2h-2.4V16h-1.2v-2.4h-2.4v-1.2z",clipRule:"evenodd"})),Ah=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.098 5.9v12.2h15.8V8.3h-9.782a.85.85 0 0 1-.653-.307L7.717 5.9zm-1.2-.35c0-.47.381-.85.85-.85h4.133a.85.85 0 0 1 .653.305L10.28 7.1h9.97c.469 0 .85.38.85.85v10.5c0 .47-.381.85-.85.85h-16.5a.85.85 0 0 1-.85-.85z",clipRule:"evenodd"})),Lh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.287 3.393q.454-.09.912-.132V2.057a9.98 9.98 0 0 0-9.09 11.245 9.975 9.975 0 0 0 9.09 8.64v-1.204a8.775 8.775 0 0 1-.912-17.345m2.512 17.345v1.204A9.975 9.975 0 0 0 21.974 12h-1.2a8.775 8.775 0 0 1-7.975 8.738m3.833-16.19A8.8 8.8 0 0 0 12.8 3.26V2.057a9.97 9.97 0 0 1 7.35 4.191V4h1.2v3.687a.91.91 0 0 1-.913.913h-3.688V7.4h2.723a8.8 8.8 0 0 0-2.839-2.852M8.823 15.35V8.648h1.2v6.703zm3.6-5.501v4.3h1.55v-4.3zm-1.2-.35c0-.47.381-.85.85-.85h2.25c.47 0 .85.38.85.85v5c0 .469-.38.85-.85.85h-2.25a.85.85 0 0 1-.85-.85z",clipRule:"evenodd"})),_h=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.287 3.393q.454-.09.912-.132V2.057a9.98 9.98 0 0 0-9.09 11.245 9.975 9.975 0 0 0 9.09 8.64v-1.204a8.775 8.775 0 0 1-.912-17.345m2.512 17.345v1.204A9.975 9.975 0 0 0 21.974 12h-1.2a8.775 8.775 0 0 1-7.975 8.738m3.833-16.19A8.8 8.8 0 0 0 12.8 3.26V2.057a9.97 9.97 0 0 1 7.35 4.191V4h1.2v3.687a.91.91 0 0 1-.913.913h-3.688V7.4h2.723a8.8 8.8 0 0 0-2.839-2.852M8.9 15.35V8.648h1.2v6.703zm3.824-5.501h2.425v-1.2h-2.775a.85.85 0 0 0-.85.85v2.25c0 .469.381.85.85.85h1.65v1.55h-2.425v1.2h2.775c.47 0 .85-.381.85-.85v-2.25a.85.85 0 0 0-.85-.85h-1.65z",clipRule:"evenodd"})),Nh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 3.261V2.057a9.97 9.97 0 0 1 7.35 4.191V4h1.2v3.687a.91.91 0 0 1-.913.913h-3.688V7.4h2.723A8.78 8.78 0 0 0 12.8 3.26m-1.6-1.204V3.26a8.774 8.774 0 0 0-7.9 9.884 8.775 8.775 0 0 0 7.9 7.593v1.204a9.974 9.974 0 0 1 0-19.885m1.6 19.885A9.975 9.975 0 0 0 21.974 12h-1.2a8.775 8.775 0 0 1-7.975 8.738zM10.307 9.85h4.442v-1.2H9.848a.74.74 0 0 0-.741.74v2.469c0 .409.332.74.74.74h3.843v1.55H9.25v1.2h4.9a.74.74 0 0 0 .741-.74V12.14a.74.74 0 0 0-.74-.74h-3.843z",clipRule:"evenodd"})),$h=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M19.129 11.238V6.5h1.2v11h-1.2v-4.738L12.41 17.24a.85.85 0 0 1-1.321-.707v-3.36l-6.1 4.067-.333-.5.332.5a.85.85 0 0 1-1.321-.707V7.467a.85.85 0 0 1 1.321-.707l6.1 4.067v-3.36a.85.85 0 0 1 1.322-.707zM10.686 12 4.868 8.121v7.758zm1.604-3.879L18.108 12l-5.818 3.879z",clipRule:"evenodd"})),Hh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.138 8.12v7.758L10.956 12zm6.221 5.053-6.1 4.067a.85.85 0 0 1-1.322-.708V7.467a.85.85 0 0 1 1.322-.708l6.1 4.067v-3.36a.85.85 0 0 1 1.322-.707l6.8 4.533a.85.85 0 0 1 0 1.415l-6.8 4.533a.85.85 0 0 1-1.322-.708zm1.2-5.052v7.757L18.378 12z",clipRule:"evenodd"})),Dh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 25 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 12c0-5.24 4.04-9.536 9.175-9.943V3.26a8.776 8.776 0 0 0 0 17.478v1.204C6.563 21.536 2.523 17.24 2.523 12m10.775 9.943c5.135-.407 9.175-4.703 9.175-9.943s-4.04-9.536-9.175-9.943V3.26a8.776 8.776 0 0 1 0 17.478zM8.998 8.6a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m8.6-.4a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m-6.5 8a4.6 4.6 0 1 1 9.2 0h-1.2a3.4 3.4 0 0 0-6.8 0z",clipRule:"evenodd"})),jh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.864 5.786a.85.85 0 0 1 .66-1.386h14.949a.85.85 0 0 1 .66 1.386l-6.035 7.427v4.654a.85.85 0 0 1-.378.707l-2.5 1.666a.85.85 0 0 1-1.322-.707v-6.32zM5.259 5.6l5.649 6.953a.85.85 0 0 1 .19.536v5.79l1.8-1.2v-4.59a.85.85 0 0 1 .19-.536l5.65-6.953z",clipRule:"evenodd"})),Wh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.25 2a.85.85 0 0 0-.85.85v1.67a7.9 7.9 0 0 0-2.575 1.49l-1.448-.836a.85.85 0 0 0-1.161.31l-1.75 3.032a.85.85 0 0 0 .31 1.161l1.448.836A8 8 0 0 0 4.084 12a8 8 0 0 0 .14 1.489l-1.447.835a.85.85 0 0 0-.31 1.16l1.75 3.032a.85.85 0 0 0 1.16.311l1.449-.836A7.9 7.9 0 0 0 9.4 19.48v1.67c0 .47.38.85.85.85h3.5c.47 0 .85-.38.85-.85v-1.67a7.9 7.9 0 0 0 2.576-1.49l1.448.837a.85.85 0 0 0 1.161-.311l1.75-3.031a.85.85 0 0 0-.31-1.161l-1.448-.836a8 8 0 0 0 0-2.975l1.448-.836a.85.85 0 0 0 .311-1.161l-1.75-3.031a.85.85 0 0 0-1.161-.312l-1.45.837a7.9 7.9 0 0 0-2.575-1.49V2.85a.85.85 0 0 0-.85-.85zm.35 2.772V3.2h2.8v1.572c0 .383.255.707.603.815.96.3 1.827.808 2.549 1.474a.86.86 0 0 0 1.008.114l1.363-.787 1.4 2.425-1.362.786a.86.86 0 0 0-.406.928 6.75 6.75 0 0 1 0 2.946.86.86 0 0 0 .406.929l1.361.786-1.4 2.425-1.363-.787a.86.86 0 0 0-1.007.114 6.7 6.7 0 0 1-2.549 1.473.86.86 0 0 0-.602.816V20.8h-2.8v-1.572a.86.86 0 0 0-.603-.816A6.7 6.7 0 0 1 7.45 16.94a.86.86 0 0 0-1.007-.114l-1.362.787-1.4-2.425 1.36-.786a.86.86 0 0 0 .405-.928A6.7 6.7 0 0 1 5.284 12a6.8 6.8 0 0 1 .162-1.473.86.86 0 0 0-.405-.928L3.68 8.813l1.4-2.425 1.362.787A.86.86 0 0 0 7.45 7.06a6.7 6.7 0 0 1 2.548-1.474.86.86 0 0 0 .603-.815m2.204 10.502a3.371 3.371 0 0 0 0-6.548V7.5a4.571 4.571 0 0 1 0 9zm-1.6-6.549a3.371 3.371 0 0 0 0 6.55v1.226a4.571 4.571 0 0 1 0-9.002z",clipRule:"evenodd"})),Gh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.74 3.85a1.658 1.658 0 1 0 0 3.317 1.658 1.658 0 0 0 0-3.317M12 3.756a2.858 2.858 0 1 0-4.055 3.975H4.9a.85.85 0 0 0-.85.85v3.64c0 .47.38.85.85.85h14.196c.47 0 .85-.38.85-.85V8.58a.85.85 0 0 0-.85-.85h-3.043a2.858 2.858 0 1 0-4.056-3.975m.461 3.975a3 3 0 0 1-.461-.47q-.203.261-.461.47zm.139-2.223a1.659 1.659 0 1 0 3.317 0 1.659 1.659 0 0 0-3.317 0M5.25 8.931v2.94h6.147V8.93zm7.347 0v2.94h6.149V8.93zM6.08 20.151v-5.859h-1.2V20.5c0 .47.38.85.85.85h12.54c.47 0 .85-.38.85-.85v-6.208h-1.2v5.858h-5.322v-5.858h-1.2v5.858z",clipRule:"evenodd"})),Uh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2 11.4h20v1.2H2zm.268-1.6h1.235a8.8 8.8 0 0 1 5.509-6.053L6.322 9.8h1.313L10.5 3.353a9 9 0 0 1 .9-.107V9.8h1.2V3.246q.457.03.9.107L16.366 9.8h1.313l-2.69-6.053A8.8 8.8 0 0 1 20.497 9.8h1.235C20.73 5.35 16.753 2.025 12 2.025S3.27 5.35 2.268 9.8m19.464 4.4h-1.235a8.8 8.8 0 0 1-5.508 6.053l2.69-6.053h-1.313L13.5 20.648q-.444.076-.901.107V14.2h-1.2v6.555a9 9 0 0 1-.9-.107L7.635 14.2H6.32l2.69 6.053A8.8 8.8 0 0 1 3.503 14.2H2.268C3.27 18.65 7.247 21.975 12 21.975s8.73-3.324 9.732-7.775",clipRule:"evenodd"})),Kh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.198 6.755a2.068 2.068 0 1 0 1.816 3.058 4.2 4.2 0 0 0 .171 1.604 3.268 3.268 0 1 1 .925-4.078 4.2 4.2 0 0 0-.847 1.371 2.07 2.07 0 0 0-2.065-1.955m11.243 5.335c-.502 0-.977-.113-1.402-.315.156-.377.258-.782.297-1.204a2.068 2.068 0 1 0-.707-2.746 4.2 4.2 0 0 0-.841-.91 3.268 3.268 0 1 1 2.654 5.175M2.398 17.16a4.157 4.157 0 0 1 7.05-2.987c-.35.21-.672.463-.959.749a2.957 2.957 0 0 0-4.89 2.238zm15.043-2.958c-.677 0-1.302.228-1.8.612a5 5 0 0 0-.998-.729 4.157 4.157 0 0 1 6.955 3.074h-1.2a2.957 2.957 0 0 0-2.957-2.957m-7.334-4.025a2.068 2.068 0 1 1 4.136 0 2.068 2.068 0 0 1-4.136 0m2.068-3.267a3.268 3.268 0 1 0 0 6.535 3.268 3.268 0 0 0 0-6.535M9.219 18.513a2.957 2.957 0 0 1 5.914 0h1.2a4.157 4.157 0 1 0-8.314 0z",clipRule:"evenodd"})),qh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.398 4.25c0-.47.381-.85.85-.85h13.5c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85h-13.5a.85.85 0 0 1-.85-.85zm1.2.35v8.8h12.8V4.6zm12.8 10h-12.8v4.8h12.8zm-6.797 2a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m5.798-.4a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0",clipRule:"evenodd"})),Yh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m8.681 8.213.599-4.787 1.19.149-.58 4.638h5.166l.599-4.787 1.19.149-.58 4.638H20.5v1.2h-4.384l-.647 5.175H20.5v1.2h-5.181l-.599 4.787-1.19-.15.58-4.637H8.943l-.599 4.787-1.19-.15.58-4.637H3.5v-1.2h4.384l.647-5.175H3.5v-1.2zm1.06 1.2-.647 5.175h5.165l.647-5.175z",clipRule:"evenodd"})),Xh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.945 5.633a9.975 9.975 0 0 1 14.107 0 9.94 9.94 0 0 1 2.921 7.038v5.27c0 1.85-1.5 3.35-3.35 3.35v-1.2a2.15 2.15 0 1 0 0-4.3v-1.2c.819 0 1.569.293 2.15.78v-2.7a8.74 8.74 0 0 0-2.57-6.19 8.775 8.775 0 0 0-12.41 0 8.74 8.74 0 0 0-2.57 6.19v2.7a3.34 3.34 0 0 1 2.15-.78v1.2a2.15 2.15 0 0 0 0 4.3v1.2a3.35 3.35 0 0 1-3.35-3.35v-5.27a9.94 9.94 0 0 1 2.922-7.038M8.178 21.29h-1.2v-6.699h1.2zm9.05 0h-1.2v-6.699h1.2z",clipRule:"evenodd"})),Zh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.298 2.914a5.3 5.3 0 0 0-5.302 5.302v.298h1.2v-.298a4.102 4.102 0 1 1 8.204 0v.298h1.2v-.298a4.102 4.102 0 0 1 8.204 0v.298H20.8 22v.03-.03h.004v-.298A5.302 5.302 0 0 0 12 5.764a5.3 5.3 0 0 0-4.702-2.85m14.502 7.2h-1.247a5.3 5.3 0 0 1-1.258 2.1L12 19.695l-7.483-7.67a4.65 4.65 0 0 1-1.125-1.91H2.151a5.85 5.85 0 0 0 1.507 2.747l7.795 7.992c.3.307.794.307 1.094 0l7.607-7.803a6.5 6.5 0 0 0 1.646-2.937",clipRule:"evenodd"})),Jh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.449 2.575a.85.85 0 0 0-.901 0l-7.75 4.843a.85.85 0 0 0-.4.721v7.723a.85.85 0 0 0 .4.72l7.75 4.845a.85.85 0 0 0 .9 0l7.75-4.844a.85.85 0 0 0 .4-.721V8.139a.85.85 0 0 0-.4-.72zm-7.85 5.758 7.4-4.625 7.4 4.625v7.335l-7.4 4.625-7.4-4.625z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.449 2.575a.85.85 0 0 0-.901 0l-7.75 4.843a.85.85 0 0 0-.4.721v7.723a.85.85 0 0 0 .4.72l7.75 4.845a.85.85 0 0 0 .9 0l7.75-4.844a.85.85 0 0 0 .4-.721V8.139a.85.85 0 0 0-.4-.72zm-7.85 5.758 7.4-4.625 7.4 4.625v7.335l-7.4 4.625-7.4-4.625z",clipRule:"evenodd"})),Qh=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 3.261V2.057a9.98 9.98 0 0 1 7.308 4.132 9.975 9.975 0 0 1-7.308 15.753v-1.204a8.775 8.775 0 0 0 0-17.477m-1.6 17.477A8.775 8.775 0 0 1 3.223 12h-1.2a9.975 9.975 0 0 0 9.176 9.942zm0-18.681V3.26A8.78 8.78 0 0 0 4.526 7.4h2.723v1.2h-3.75a.85.85 0 0 1-.85-.85V4h1.2v2.248a9.97 9.97 0 0 1 7.35-4.191m.2 9.839V6h1.2v5.751l3.824 3.824-.849.849-3.926-3.927a.85.85 0 0 1-.25-.601",clipRule:"evenodd"})),eg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.995 3.526 4.2 10.503v10.09h4.22v-2.2h1.2v2.55c0 .469-.38.85-.85.85H3.85a.85.85 0 0 1-.85-.85V10.345c0-.25.111-.485.295-.644l8.144-7.289.007-.005a.85.85 0 0 1 1.115.015m-.566 1.103 7.805 6.972v10.094H15.58v-2.2h-1.2v2.55c0 .47.38.85.85.85h4.921c.47 0 .85-.38.85-.85v-10.6a.85.85 0 0 0-.283-.635L12.56 2.423M8.42 16.43a3.58 3.58 0 1 1 7.158 0v.357h-1.2v-.357a2.38 2.38 0 1 0-4.759 0v.357h-1.2z",clipRule:"evenodd"})),tg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2 4.25c0-.47.38-.85.85-.85H21.1c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85H2.85a.85.85 0 0 1-.85-.85zm1.2.35v14.8h17.55V4.6zm12 3.7a1.3 1.3 0 1 0 0 2.6 1.3 1.3 0 0 0 0-2.6m-2.5 1.3a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0m-2.14 4.663a2.4 2.4 0 0 0-3.084.747l-1.984 2.834-.983-.688 1.984-2.834a3.6 3.6 0 0 1 4.625-1.121l7.162 3.768-.56 1.062z",clipRule:"evenodd"})),ng=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 4.75c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v6.83h-1.2V5.1H3.723v6.48h-1.2zm2.406 7.025 3.445.001c.469 0 .85.38.85.85v.154a2.775 2.775 0 1 0 5.55 0v-.154c0-.47.38-.85.85-.85h3.455v1.2h-3.11a3.975 3.975 0 0 1-7.94 0h-3.1zM3.723 18.9v-5.72h-1.2v6.07c0 .47.381.85.85.85h17.25c.47 0 .85-.38.85-.85v-6.07h-1.2v5.72z",clipRule:"evenodd"})),og=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 2.057V3.26a8.776 8.776 0 0 1 0 17.478v1.204c5.134-.407 9.174-4.703 9.174-9.943s-4.04-9.536-9.174-9.943M3.223 12a8.776 8.776 0 0 0 7.975 8.74v1.203C6.063 21.536 2.023 17.24 2.023 12s4.04-9.536 9.176-9.943V3.26A8.776 8.776 0 0 0 3.222 12m9.375 5.6v-8h-1.2v8zm.2-10.4a.8.8 0 1 0-1.6 0 .8.8 0 0 0 1.6 0",clipRule:"evenodd"})),lg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.146 5.378H9.835v-1.2h6v1.2h-2.478l-1.834 13.246h1.978v1.2H8.168v-1.2h2.144z",clipRule:"evenodd"})),ig=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.933 3.373a5.601 5.601 0 0 0-3.678 9.072l-2.606 2.606L5.5 17.2l-1.719 1.718.849.849 1.294-1.295 2.154 2.154.849-.848-2.154-2.154 1.3-1.3 2.154 2.154.848-.849-2.154-2.154 2.182-2.181a5.57 5.57 0 0 0 2.83 1.197v-1.212a4.401 4.401 0 0 1 0-8.695zm1.6 9.863a4.402 4.402 0 0 0 0-8.608V3.407a5.602 5.602 0 0 1 0 11.05z",clipRule:"evenodd"})),rg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.023 4.55c0-.47.381-.85.85-.85h18.25c.47 0 .85.38.85.85v11.218c0 .47-.38.85-.85.85H2.873a.85.85 0 0 1-.85-.85zm1.2.35v10.518h17.55V4.899zm17.775 15.4h-18v-1.2h18z",clipRule:"evenodd"})),ag=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.65 3.794a.85.85 0 0 1 .698 0l7.872 3.542a.85.85 0 0 1-.021 1.56l-7.872 3.287a.85.85 0 0 1-.655 0L3.8 8.895a.85.85 0 0 1-.021-1.56zM12 4.953 5.006 8.099l6.992 2.92 6.992-2.92zm0 9.59-8.283-3.232-.436 1.117 8.403 3.281.219-.559-.219.559a.87.87 0 0 0 .63 0l8.403-3.28-.436-1.118zm0 3.519-8.283-3.233-.436 1.118 8.403 3.28a.87.87 0 0 0 .63 0l8.403-3.28-.436-1.118zm-.122.047Z",clipRule:"evenodd"})),sg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm1.2.35v7.8h7.8V3.6zm9 0v16.8h7.8V3.6zm-1.2 16.8v-7.8h-7.8v7.8z",clipRule:"evenodd"})),cg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm1.2.35v16.8h16.8V3.6zm15 14.4h-13.2v-1.2h13.2z",clipRule:"evenodd"})),dg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm1.2.35v16.8h7.8V3.6zm9 0v16.8h7.8V3.6z",clipRule:"evenodd"})),ug=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 4.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm1.2.35v3.8h4.8V4.6zm6 0v3.8h4.8V4.6zm6 0v3.8h4.8V4.6zm4.8 5h-4.8v4.482h4.8zm0 5.682h-4.8V19.4h4.8zm-6 4.118v-4.118h-4.8V19.4zm-6 0v-4.118h-4.8V19.4zm-4.8-5.318h4.8V9.6h-4.8zm6-4.482v4.482h4.8V9.6z",clipRule:"evenodd"})),hg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 4.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm1.2.35v6.7h7.8V4.6zm9 0v6.7h7.8V4.6zm7.8 7.9h-7.8v6.9h7.8zm-9 6.9v-6.9h-7.8v6.9z",clipRule:"evenodd"})),gg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm1.2.35v16.8h16.8V3.6zm2.4 15V5.4h1.2v13.2z",clipRule:"evenodd"})),vg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm1.2.35v16.8h16.8V3.6zm13.2 15V5.4h1.2v13.2z",clipRule:"evenodd"})),mg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm1.2.35v7.8h16.8V3.6zm16.8 9h-16.8v7.8h16.8z",clipRule:"evenodd"})),pg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm1.2.35v3.8h16.8V3.6zm16.8 5h-3.8v11.8h3.8zm-5 11.8V8.6h-11.8v11.8z",clipRule:"evenodd"})),fg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm1.2.35v3.8h16.8V3.6zm16.8 5h-11.8v11.8h11.8zm-13 11.8V8.6h-3.8v11.8z",clipRule:"evenodd"})),wg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm1.2.35v16.8h16.8V3.6zm15 3.6h-13.2V6h13.2z",clipRule:"evenodd"})),Eg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm1.2.35v16.8h7.8V3.6zm9 0v7.8h7.8V3.6zm7.8 9h-7.8v7.8h7.8z",clipRule:"evenodd"})),yg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.023 12c0-5.24 4.04-9.536 9.175-9.943V3.26a8.74 8.74 0 0 0-4.966 2.124l3.412 3.412a3.96 3.96 0 0 1 2.354-.772c.809 0 1.56.241 2.189.656l3.425-3.426a8.74 8.74 0 0 0-4.814-1.994V2.057c5.135.407 9.175 4.703 9.175 9.943s-4.04 9.536-9.175 9.943V20.74a8.74 8.74 0 0 0 4.967-2.124l-3.412-3.412a3.96 3.96 0 0 1-2.355.772 3.96 3.96 0 0 1-2.513-.895l-3.402 3.402a8.74 8.74 0 0 0 5.115 2.257v1.204C6.063 21.536 2.023 17.24 2.023 12m3.36-5.766A8.74 8.74 0 0 0 3.224 12a8.74 8.74 0 0 0 2.03 5.614l3.426-3.426A3.96 3.96 0 0 1 8.023 12c0-.881.287-1.695.772-2.354zm13.097-.15-3.402 3.403c.56.684.895 1.56.895 2.513 0 .881-.286 1.695-.772 2.355l3.412 3.411A8.74 8.74 0 0 0 20.773 12c0-2.28-.869-4.355-2.293-5.915m-6.482 3.141a2.775 2.775 0 1 0 0 5.55 2.775 2.775 0 0 0 0-5.55",clipRule:"evenodd"})),xg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.068 2.345c.483-.664 1.533-.322 1.533.499v6.18c0 .375.141.724.396.979.26.26.611.405.978.405h3.48a.848.848 0 0 1 .686 1.347l-7.206 9.9c-.484.663-1.534.322-1.534-.5v-6.18c0-.372-.142-.723-.398-.978a1.38 1.38 0 0 0-.978-.405h-3.48a.848.848 0 0 1-.686-1.348zl.485.354zm.333 1.58-6.164 8.467h2.788c.685 0 1.342.272 1.826.756.489.489.75 1.148.75 1.827v5.099l6.163-8.466h-2.789a2.58 2.58 0 0 1-1.826-.757 2.58 2.58 0 0 1-.748-1.827z",clipRule:"evenodd"})),Cg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.738 4.93a6.6 6.6 0 0 1 9.334 9.333l-.51.51-.848-.85.51-.508a5.4 5.4 0 1 0-7.638-7.637l-.509.509-.848-.849zm-.792 2.488L7.418 8.946l-.848-.849L8.097 6.57zm6.307 2.178-5.657 5.657-.848-.848 5.657-5.657zM4.93 9.738l.51-.51.848.85-.51.508a5.4 5.4 0 1 0 7.638 7.637l.509-.509.848.849-.509.509a6.6 6.6 0 0 1-9.334-9.334m12.502 6.166-1.527 1.527-.849-.849 1.527-1.527z",clipRule:"evenodd"})),bg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.627 7.2a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0M8.831 7h11.17v1.2H8.831zm-3.204 4.6a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m4.804-.6h11.17v1.2H8.831zM5.627 16a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m4.804-.6h11.17V17H8.831z",clipRule:"evenodd"})),Rg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.83 7H20v1.2H8.83zM4 7h2.8v1.2H4zm4.83 4.4H20v1.2H8.83zM4 11.4h2.8v1.2H4zm0 4.4h2.8V17H4zm4.83 0H20V17H8.83z",clipRule:"evenodd"})),Sg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.325 6.3v2.6h.6V6.3zm1.037 4.4H4.44v.6h1.872v.4H4.89a.55.55 0 0 0-.55.55v.5c0 .305.246.55.55.55h1.92v-.6H4.94v-.4h1.422a.55.55 0 0 0 .55-.55v-.5a.55.55 0 0 0-.55-.55m0 4.4H4.44v.6h1.872v.4H4.44v.6h1.872v.4H4.44v.6h1.922a.55.55 0 0 0 .55-.55v-1.5a.55.55 0 0 0-.55-.55M20 7H8.83v1.2H20zm0 4.4H8.83v1.2H20zm0 4.4H8.83V17H20z",clipRule:"evenodd"})),Ig=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.6 2v5h-1.2V2zM5.353 4.505l3.071 3.07-.848.85-3.071-3.072zm14.142.848-3.07 3.071-.85-.848 3.072-3.071zM22 12.6h-5v-1.2h5zm-15 0H2v-1.2h5zm9.424 2.975 3.073 3.07-.848.848-3.073-3.069zm-8 .85-3.072 3.07-.848-.85 3.072-3.07zM12.6 17v5h-1.2v-5z",clipRule:"evenodd"})),Tg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.746 3.347A4.6 4.6 0 0 1 16.598 6.6v3.2h-1.2V6.6a3.4 3.4 0 0 0-5.804-2.404zM4.598 10.4h9.2V9.2h-9.55a.85.85 0 0 0-.85.85v11.1c0 .47.381.85.85.85h15.5c.47 0 .85-.38.85-.85v-11.1a.85.85 0 0 0-.85-.85h-1.55v1.2h1.2v10.4h-14.8zm7.405 4.4a.8.8 0 1 0 0 1.6.8.8 0 0 0 0-1.6m-2 .8a2 2 0 1 1 4 0 2 2 0 0 1-4 0",clipRule:"evenodd"})),Mg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.746 3.347A4.6 4.6 0 0 1 16.598 6.6v3.2h-1.2V6.6a3.4 3.4 0 1 0-6.8 0v3.2h-1.2V6.6a4.6 4.6 0 0 1 1.348-3.253M4.598 10.4h1.2V9.2h-1.55a.85.85 0 0 0-.85.85v11.1c0 .47.381.85.85.85h15.5c.47 0 .85-.38.85-.85v-11.1a.85.85 0 0 0-.85-.85h-1.55v1.2h1.2v10.4h-14.8zm9.2 0h-3.6V9.2h3.6zm-1.795 4.4a.8.8 0 1 0 0 1.6.8.8 0 0 0 0-1.6m-2 .8a2 2 0 1 1 4 0 2 2 0 0 1-4 0",clipRule:"evenodd"})),zg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.079 2.217a9.975 9.975 0 1 1-5.107 16.837l.848-.849a8.774 8.774 0 1 0 0-12.41l-.848-.848a9.98 9.98 0 0 1 5.107-2.73m.305 5.36 3.783 3.782a.85.85 0 0 1 0 1.202l-3.783 3.783-.848-.848L12.43 12.6H2v-1.2h10.512L9.535 8.425z",clipRule:"evenodd"})),Og=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.71 3.394a8.775 8.775 0 1 0 4.493 14.811l.849.849a9.975 9.975 0 1 1 0-14.107l-.849.849a8.78 8.78 0 0 0-4.493-2.402m4.363 4.182 3.783 3.783a.85.85 0 0 1 0 1.202l-3.783 3.783-.849-.848L20.12 12.6H11v-1.2h9.2l-2.975-2.975z",clipRule:"evenodd"})),Vg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.227 2.037a8.001 8.001 0 0 0 0 15.926v-1.207a6.801 6.801 0 0 1 0-13.512zm1.6 14.714a6.801 6.801 0 0 0 0-13.502V2.042a8.001 8.001 0 0 1 0 15.916zm5.534.458 4.782 4.782.848-.849-4.781-4.781z",clipRule:"evenodd"})),Fg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.031 5.25c0-.47.38-.85.85-.85h18.25c.47 0 .85.38.85.85v13.5c0 .47-.38.85-.85.85H2.881a.85.85 0 0 1-.85-.85zm1.2.35v12.8h17.55V5.6zm8.248 7.755L4.883 8.224l.737-.947L12 12.24l6.382-4.963.737.947-6.597 5.13a.85.85 0 0 1-1.044 0",clipRule:"evenodd"})),Pg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.395 3.778a.85.85 0 0 0-.829.032Zm-.37 1.158L4.598 7.641V18.69l3.8-2.28V6.75h1.2v9.628l5.374 2.687 4.426-2.655V5.32l-3.8 2.321v9.608h-1.2V7.673zm5.947 1.682 4.333-2.648a.85.85 0 0 1 1.293.725v11.913a.85.85 0 0 1-.412.729l-4.761 2.856a.85.85 0 0 1-.818.032l-5.582-2.792-4.34 2.604a.85.85 0 0 1-1.287-.73V7.446a.85.85 0 0 1 .407-.725l4.761-2.91.83-.032m0 0 5.576 2.84Z",clipRule:"evenodd"})),kg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M15.898 3.4h1.6a3.1 3.1 0 0 1 3.1 3.1v1.6h-1.2V6.5a1.9 1.9 0 0 0-1.9-1.9h-1.6zm-9.4 1.2a1.9 1.9 0 0 0-1.9 1.9v1.6h-1.2V6.5a3.1 3.1 0 0 1 3.1-3.1h1.6v1.2zm-1.9 11.3v1.6c0 1.05.851 1.9 1.9 1.9h1.6v1.2h-1.6a3.1 3.1 0 0 1-3.1-3.1v-1.6zm16 0v1.6a3.1 3.1 0 0 1-3.1 3.1h-1.6v-1.2h1.6a1.9 1.9 0 0 0 1.9-1.9v-1.6z",clipRule:"evenodd"})),Bg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2 4.25c0-.47.38-.85.85-.85H21.1c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85H2.85a.85.85 0 0 1-.85-.85zm1.2.35v14.8h17.55V4.6zm6.9 5.006v4.79L14.291 12zm-1.2-.603a.85.85 0 0 1 1.272-.738l5.246 2.997a.85.85 0 0 1 0 1.476l-5.246 2.998a.85.85 0 0 1-1.272-.738z",clipRule:"evenodd"})),Ag=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21 6.6H3V5.4h18zm0 6H3v-1.2h18zm0 6H3v-1.2h18z",clipRule:"evenodd"})),Lg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.814 9.363v1.247h1.2v-.047zm7.662 5.964L8.015 8.865l-1.2-1.2L3.09 3.939l.848-.848 16.97 16.97-.848.849-1.482-1.482-.85-.85-2.398-2.398zm-1.084.613a3.982 3.982 0 0 1-5.377-3.733h-1.2a5.184 5.184 0 0 0 7.488 4.644zm3.382 3.382A8.568 8.568 0 0 1 3.43 12.207h-1.2a9.768 9.768 0 0 0 15.406 7.977zm3.37-1.722a9.77 9.77 0 0 0 1.623-5.393h-1.2a8.57 8.57 0 0 1-1.292 4.525zm-3.372-3.37c.269-.635.41-1.321.41-2.023h-1.2c0 .37-.05.734-.15 1.083zm-8.48-8.481a3.984 3.984 0 0 1 7.69 1.46v3.401h1.2v-3.4a5.184 5.184 0 0 0-9.796-2.367z",clipRule:"evenodd"})),_g=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.333 3.544a5.184 5.184 0 0 1 8.85 3.666v3.4h-1.2v-3.4a3.984 3.984 0 0 0-7.969 0v3.4h-1.2v-3.4c0-1.375.547-2.694 1.519-3.666m6.483 11.48a3.99 3.99 0 0 0 1.167-2.817h1.2a5.184 5.184 0 0 1-10.369 0h1.2a3.984 3.984 0 0 0 6.802 2.817m3.241 3.242a8.57 8.57 0 0 0 2.51-6.059h1.2a9.768 9.768 0 1 1-19.537 0h1.2a8.568 8.568 0 0 0 14.627 6.059",clipRule:"evenodd"})),Ng=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.7 6v1.6a3.1 3.1 0 0 1-3.1 3.1H6V9.5h1.6a1.9 1.9 0 0 0 1.9-1.9V6zm3.9 0v1.6c0 1.05.85 1.9 1.9 1.9h1.6v1.2h-1.6a3.1 3.1 0 0 1-3.1-3.1V6zM6 13.4h1.6a3.1 3.1 0 0 1 3.1 3.1v1.6H9.5v-1.6a1.9 1.9 0 0 0-1.9-1.9H6zm10.5 1.2a1.9 1.9 0 0 0-1.9 1.9v1.6h-1.2v-1.6a3.1 3.1 0 0 1 3.1-3.1h1.6v1.2z",clipRule:"evenodd"})),$g=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 3.375c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v17.25c0 .47-.38.85-.85.85H3.373a.85.85 0 0 1-.85-.85zm1.2.35v16.55h16.55V3.725zM17.998 12.6h-12v-1.2h12z",clipRule:"evenodd"})),Hg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20 12.6H4v-1.2h16z",clipRule:"evenodd"})),Dg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.023 3.85c0-.47.381-.85.85-.85h18.25c.47 0 .85.38.85.85v11.219c0 .47-.38.85-.85.85H2.873a.85.85 0 0 1-.85-.85zm1.2.35v10.519h17.55V4.2zm12.775 14.5h-8v-1.2h8zm0 2.4h-8v-1.2h8z",clipRule:"evenodd"})),jg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.163 3.292a.84.84 0 0 1-.01.9 6.262 6.262 0 0 0 8.654 8.655.84.84 0 0 1 .9-.01c.26.16.45.48.376.855a9.177 9.177 0 0 1-18.184-1.769c0-4.464 3.186-8.182 7.409-9.007a.82.82 0 0 1 .855.376M9.716 4.3a7.977 7.977 0 1 0 9.982 9.983A7.462 7.462 0 0 1 9.717 4.3",clipRule:"evenodd"})),Wg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M8.25 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M13.5 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M18.75 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0"})),Gg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M12 8.25a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3M12 13.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3M12 18.75a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3"})),Ug=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.629 4.138v13.128a3.8 3.8 0 0 1-3.028 3.72v-1.238a2.6 2.6 0 0 0 0-4.965v-1.238a3.8 3.8 0 0 1 1.828.95V3.788c0-.47.38-.85.85-.85H21.13c.47 0 .85.38.85.85v13.478a3.8 3.8 0 0 1-2.998 3.714v-1.241a2.6 2.6 0 0 0 0-4.947v-1.24a3.8 3.8 0 0 1 1.798.943V4.138zm7.754 9.413a3.8 3.8 0 0 0 0 7.429v-1.241a2.6 2.6 0 0 1 0-4.947zM5 19.73v1.245a3.8 3.8 0 0 1 0-7.417v1.245a2.6 2.6 0 0 0 0 4.927",clipRule:"evenodd"})),Kg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.175 4.138H12.82v13.128a3.8 3.8 0 0 1-3.024 3.72v-1.239a2.6 2.6 0 0 0 0-4.963v-1.238c.697.144 1.324.48 1.824.949V3.788c0-.47.38-.85.85-.85h5.705zm-9.98 9.419a3.8 3.8 0 0 0 0 7.417V19.73a2.6 2.6 0 0 1 0-4.93z",clipRule:"evenodd"})),qg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M16.925 6.332 5.01 10.385l5.543 1.79c.247.08.442.273.524.52l1.865 5.592zm.342-1.383a.818.818 0 0 1 1.04 1.033l-4.59 13.77c-.249.747-1.304.747-1.553 0L10 13.258l-6.455-2.085c-.75-.242-.758-1.3-.012-1.553z",clipRule:"evenodd"})),Yg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.503 2.249a.85.85 0 0 1 .6-.249h7.794a.85.85 0 0 1 .6.249l5.254 5.254a.85.85 0 0 1 .25.6v7.794a.85.85 0 0 1-.25.6l-5.254 5.254a.85.85 0 0 1-.6.249H8.104a.85.85 0 0 1-.601-.249l-5.254-5.254a.85.85 0 0 1-.249-.6V8.104a.85.85 0 0 1 .249-.601zm.746.951L3.2 8.249v7.502L8.249 20.8h7.502l5.05-5.049V8.25L15.75 3.2z",clipRule:"evenodd"})),Xg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.548 2.551a.85.85 0 0 1 .9 0l7.868 4.917a.6.6 0 0 1 .282.51v7.86a.85.85 0 0 1-.4.721l-7.882 4.927a.6.6 0 0 1-.636 0l-7.882-4.927a.85.85 0 0 1-.4-.72V7.977a.6.6 0 0 1 .282-.509zm.45 1.134-1.867 1.167 6.867 4.293 1.868-1.168zm7.4 5.375-6.8 4.25v6.585l6.8-4.25zm-8 10.835V13.31l-6.8-4.25v6.585zM5.131 7.977l6.867 4.293 1.868-1.168L6.998 6.81zm3-1.875 6.867 4.293.868-.543L8.998 5.56z",clipRule:"evenodd"})),Zg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.798 3.261V2.057c5.135.407 9.175 4.703 9.175 9.943s-4.04 9.536-9.175 9.943V20.74a8.776 8.776 0 0 0 0-17.478m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.063 2.464 2.023 6.76 2.023 12s4.04 9.536 9.175 9.943zM8.023 8.836a.81.81 0 0 1 .811-.811h1.828c.448 0 .811.363.811.811v6.328c0 .448-.363.811-.81.811H8.833a.81.81 0 0 1-.811-.81zm1.2.389v5.55h1.05v-5.55zm3.3-.389a.81.81 0 0 1 .811-.811h1.828c.448 0 .811.363.811.811v6.328c0 .448-.363.811-.81.811h-1.829a.81.81 0 0 1-.81-.81zm1.2.389v5.55h1.05v-5.55z",clipRule:"evenodd"})),Jg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.398 6.25c0-.47.381-.85.85-.85h3.5c.47 0 .85.38.85.85v11.5c0 .47-.38.85-.85.85h-3.5a.85.85 0 0 1-.85-.85zm1.2.35v10.8h2.8V6.6zm6.8-.35c0-.47.381-.85.85-.85h3.5c.47 0 .85.38.85.85v11.5c0 .47-.38.85-.85.85h-3.5a.85.85 0 0 1-.85-.85zm1.2.35v10.8h2.8V6.6z",clipRule:"evenodd"})),Qg=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.32 4.426a.6.6 0 0 1 .594-.152l11.866 3.49a.85.85 0 0 1 .602.696l.656 4.592 1.45 1.45a.85.85 0 0 1 0 1.202l-3.89 3.89a.85.85 0 0 1-1.201 0l-1.45-1.45-4.593-.656a.85.85 0 0 1-.695-.602L4.17 5.019a.6.6 0 0 1 .151-.593m9.758 13.152.92.92 3.394-3.395-.92-.92zm2.758-4.455-.61-4.27L6.833 6.09l3.63 3.63a2.101 2.101 0 1 1-.849.848l-3.63-3.63 2.763 9.393 4.27.61zM12.1 10.931a.9.9 0 1 0-1.273 1.273.9.9 0 0 0 1.272-1.273",clipRule:"evenodd"})),ev=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M15.393 5.213a2.4 2.4 0 1 1 3.394 3.394l-.142.141-.848-.848.141-.142a1.2 1.2 0 0 0-1.697-1.697l-.141.142-.849-.849zm-9.094 10.79 8.67-8.669-.849-.849-8.768 8.769a.85.85 0 0 0-.25.578l-.06 2.253a.85.85 0 0 0 .873.872l2.253-.06a.85.85 0 0 0 .578-.249l8.768-8.768-.848-.849-8.67 8.67-1.744.047z",clipRule:"evenodd"})),tv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.398 7.5c0-1.436.976-2.643 2.3-2.996v1.272a1.9 1.9 0 0 0 0 3.448v1.271a3.1 3.1 0 0 1-2.3-2.995m5 0a1.9 1.9 0 0 1-1.1 1.724v1.271a3.101 3.101 0 0 0 0-5.991v1.272a1.9 1.9 0 0 1 1.1 1.724M4.574 18.575l14-14 .849.849-14 14zm11.124-3.8a1.9 1.9 0 0 0 0 3.449v1.271a3.101 3.101 0 0 1 0-5.991zm1.6 3.449a1.9 1.9 0 0 0 0-3.448v-1.272a3.101 3.101 0 0 1 0 5.992z",clipRule:"evenodd"})),nv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.327 12.521 7.167-7.167-.848-.849-7.168 7.167-.848.85-1.245 1.244-.848.848-4.033 4.033.848.849 4.033-4.033.849-.849 1.244-1.244zm.283 1.98.848-.849 1.18 1.18 1.283-1.283.425.424-.425-.424a.85.85 0 0 1 1.202 0l2.829 2.828a.85.85 0 0 1 0 1.202l-.25.25-.848-.849.002-.002-2.334-2.333-1.283 1.283a.85.85 0 0 1-1.202 0zm-1.245 1.245-.848.848 2.4 2.4v.001l.158.157.004-.004a3.975 3.975 0 0 0 5.459-.154l-.849-.849a2.775 2.775 0 0 1-3.924 0zm-3.96-2.263.849-.849L5.81 10.19a2.775 2.775 0 0 1 0-3.924l-.849-.849a3.975 3.975 0 0 0 0 5.622zm2.093-2.093.849-.849-1.225-1.224 1.284-1.284a.85.85 0 0 0 0-1.202L7.577 4.003a.85.85 0 0 0-1.202 0l-.249.25.849.848.001-.002L9.31 7.432 8.026 8.716a.85.85 0 0 0 0 1.202z",clipRule:"evenodd"})),ov=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.375 4.003a.85.85 0 0 1 1.202 0l2.829 2.828a.85.85 0 0 1 0 1.202L9.122 9.317l5.516 5.515 1.283-1.283a.85.85 0 0 1 1.202 0l2.829 2.828a.85.85 0 0 1 0 1.202l-.25.25-.848-.849.002-.002-2.334-2.333-1.283 1.283a.85.85 0 0 1-1.202 0l-6.01-6.01a.85.85 0 0 1 0-1.202L9.31 7.432 6.976 5.1l-.001.002-.849-.849zM3.797 8.228c0-1.054.419-2.065 1.164-2.81l.849.848a2.775 2.775 0 0 0 0 3.924l7.953 7.956-.848.848L4.96 11.04a3.98 3.98 0 0 1-1.164-2.811m11.93 10.73c.736 0 1.442-.293 1.962-.813l.849.849a3.975 3.975 0 0 1-5.622 0l.849-.849c.52.52 1.226.813 1.962.813",clipRule:"evenodd"})),lv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.798 2.268c-4.45 1.002-7.775 4.978-7.775 9.731 0 5.51 4.466 9.975 9.975 9.975 4.754 0 8.73-3.324 9.732-7.775h-1.234A8.775 8.775 0 1 1 9.799 3.502V2.268m10.691 9.131h.264a8.78 8.78 0 0 0-8.155-8.155V11.4h7.891m1.481.357a9.978 9.978 0 0 0-9.713-9.729.846.846 0 0 0-.859.847v8.875c0 .47.381.85.85.85h8.876c.46 0 .846-.37.846-.843",clipRule:"evenodd"})),iv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M16.952 5.327A7.001 7.001 0 0 0 5.024 9.699H3.82a8.201 8.201 0 0 1 16.362 0H18.98a6.97 6.97 0 0 0-2.027-4.372m1.976 5.972a6.97 6.97 0 0 1-1.976 3.93l-4.95 4.95-4.951-4.95a6.97 6.97 0 0 1-1.976-3.93H3.864a8.17 8.17 0 0 0 2.338 4.778l5.372 5.371a.605.605 0 0 0 .855 0l5.372-5.371a8.17 8.17 0 0 0 2.338-4.778zm-6.927-2.2a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8m-2.6 1.4a2.6 2.6 0 1 1 5.2 0 2.6 2.6 0 0 1-5.2 0",clipRule:"evenodd"})),rv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("mask",{id:"placeholder_svg__a",width:20,height:20,x:2,y:2,maskUnits:"userSpaceOnUse",style:{maskType:"alpha"}},l.createElement("path",{fill:"#D9D9D9",d:"M2 4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2z"})),l.createElement("g",{mask:"url(#placeholder_svg__a)"},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M23.097-.085A9.4 9.4 0 0 0 9.854 1.074l-.92-.772c3.764-4.484 10.45-5.07 14.934-1.306zM-4.951 2.227A9.4 9.4 0 0 0 8.292 1.068l.919.772C5.448 6.324-1.239 6.91-5.723 3.146zM24.56 5.379a9.4 9.4 0 0 0-13.243 1.159l-.92-.772c3.764-4.484 10.45-5.07 14.934-1.306zM-3.487 7.691A9.4 9.4 0 0 0 9.756 6.532l.92.772C6.911 11.788.225 12.374-4.26 8.61zm29.512 3.152a9.4 9.4 0 0 0-13.243 1.159l-.92-.772c3.764-4.484 10.45-5.069 14.934-1.306zm-28.048 2.312a9.4 9.4 0 0 0 13.243-1.158l.92.77c-3.764 4.486-10.45 5.07-14.934 1.308zm29.512 3.152a9.4 9.4 0 0 0-13.243 1.159l-.92-.771c3.764-4.485 10.45-5.07 14.935-1.307zM-.559 18.62a9.4 9.4 0 0 0 13.243-1.158l.92.771c-3.764 4.485-10.45 5.07-14.934 1.307zm29.513 3.153A9.4 9.4 0 0 0 15.71 22.93l-.919-.771c3.763-4.485 10.45-5.07 14.934-1.307zM.904 24.083a9.4 9.4 0 0 0 13.243-1.158l.92.771c-3.763 4.485-10.45 5.07-14.934 1.307z",clipRule:"evenodd"}))),av=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.16 2.79a2.6 2.6 0 0 1 4.438 1.84h-1.2a1.4 1.4 0 0 0-2.8 0h-1.2c0-.69.274-1.352.762-1.84m-.762 5.74v-2.3h1.2v2.474a.85.85 0 0 1-.34.68l-5.66 4.245v1.368L9.48 13.37a.85.85 0 0 1 1.118.806v4.028a.85.85 0 0 1-.34.68l-1.66 1.245v.432l3.194-.799a.85.85 0 0 1 .413 0l3.193.799v-.432l-1.66-1.245a.85.85 0 0 1-.34-.68v-4.028a.85.85 0 0 1 1.12-.806l4.88 1.627v-1.368l-5.66-4.245a.85.85 0 0 1-.34-.68V6.23h1.2v2.3l5.66 4.245a.85.85 0 0 1 .34.68v2.028a.85.85 0 0 1-1.118.807l-4.882-1.627v3.367l1.66 1.245a.85.85 0 0 1 .34.68v1.055a.85.85 0 0 1-1.056.825l-3.544-.886-3.543.886a.85.85 0 0 1-1.057-.825v-1.055a.85.85 0 0 1 .34-.68l1.66-1.245v-3.367l-4.88 1.627a.85.85 0 0 1-1.12-.807v-2.028a.85.85 0 0 1 .34-.68zm.14 9.394Zm2.545 3.003ZM14.46 8.425l-.21.28zm5.079 5.309.21-.28zm-15.079 0-.21-.28z",clipRule:"evenodd"})),sv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.798 3.261V2.057c5.135.407 9.175 4.703 9.175 9.943s-4.04 9.536-9.175 9.943V20.74a8.776 8.776 0 0 0 0-17.478m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.063 2.464 2.023 6.76 2.023 12s4.04 9.536 9.175 9.943zM10.38 9.496v5.008L14.136 12zm-1.2-.698a.827.827 0 0 1 1.285-.687l4.803 3.201a.827.827 0 0 1 0 1.376l-4.802 3.201a.827.827 0 0 1-1.286-.687z",clipRule:"evenodd"})),cv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.231 7.12v9.758L15.55 12zm7.755 4.588ZM7.031 6.467a.85.85 0 0 1 1.322-.708l8.3 5.533a.85.85 0 0 1 0 1.415l-8.3 5.533a.85.85 0 0 1-1.322-.708z",clipRule:"evenodd"})),dv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 3.375c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v17.25c0 .47-.38.85-.85.85H3.373a.85.85 0 0 1-.85-.85zm1.2.35v16.55h16.55V3.725zm7.675 7.675V8h1.2v3.4h3.4v1.2h-3.4V16h-1.2v-3.4h-3.4v-1.2z",clipRule:"evenodd"})),uv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.4 11.4V4h1.2v7.4H20v1.2h-7.4V20h-1.2v-7.4H4v-1.2z",clipRule:"evenodd"})),hv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.398 3.5c0-.47.381-.85.85-.85h9.5c.47 0 .85.38.85.85v2.05h-1.2v-1.7h-8.8v1.7h-1.2zm-4 4.5c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v9.483c0 .47-.38.85-.85.85h-1.55v-1.2h1.2V8.35h-16.8v8.789l1.206.011-.011 1.2-1.553-.015a.85.85 0 0 1-.842-.85zm14 1.548a.8.8 0 0 0 1.6 0h1.2a2 2 0 1 1-4 0zM6.398 16c0-.47.381-.85.85-.85h9.5c.47 0 .85.38.85.85v4.5c0 .47-.38.85-.85.85h-9.5a.85.85 0 0 1-.85-.85zm1.2.35v3.8h8.8v-3.8z",clipRule:"evenodd"})),gv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 2.057V3.26a8.776 8.776 0 0 1 0 17.478v1.204c5.134-.407 9.174-4.703 9.174-9.943s-4.04-9.536-9.174-9.943M3.223 12a8.776 8.776 0 0 0 7.975 8.74v1.203C6.063 21.536 2.023 17.24 2.023 12s4.04-9.536 9.176-9.943V3.26A8.776 8.776 0 0 0 3.222 12m8.558-5.85a3.85 3.85 0 0 0-3.335 1.925l1.04.6a2.65 2.65 0 1 1 2.294 3.975v1.2a3.85 3.85 0 0 0 0-7.7m1.017 10.3a.8.8 0 1 0-1.6 0 .8.8 0 0 0 1.6 0",clipRule:"evenodd"})),vv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.998 7.23a4.771 4.771 0 1 0 0 9.542v1.2a5.971 5.971 0 0 1 0-11.943zm8.024-1.2a5.971 5.971 0 1 1 0 11.942v-1.2a4.771 4.771 0 0 0 0-9.543zM8 9.797a2.202 2.202 0 1 0 0 4.405v1.2a3.402 3.402 0 1 1 0-6.805zm8.023-1.2a3.402 3.402 0 0 1 0 6.805v-1.2a2.202 2.202 0 1 0 0-4.405zM11.999 10.6a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8m-2.6 1.4a2.6 2.6 0 1 1 5.2 0 2.6 2.6 0 0 1-5.2 0",clipRule:"evenodd"})),mv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.798 3.261V2.057c5.135.407 9.175 4.703 9.175 9.943s-4.04 9.536-9.175 9.943V20.74a8.776 8.776 0 0 0 0-17.478m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.063 2.464 2.023 6.76 2.023 12s4.04 9.536 9.175 9.943zm.8-11.514a2.775 2.775 0 1 0 0 5.55 2.775 2.775 0 0 0 0-5.55M8.023 12a3.975 3.975 0 1 1 7.95 0 3.975 3.975 0 0 1-7.95 0",clipRule:"evenodd"})),pv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.2 2.064a9.98 9.98 0 0 0-7.35 4.192V4h-1.2v3.687c0 .504.408.913.912.913H7.25V7.4H4.53A8.77 8.77 0 0 1 11.2 3.269zm0 18.825a8.77 8.77 0 0 1-6.366-3.63 8.78 8.78 0 0 1-1.567-6.257l-1.19-.157A9.975 9.975 0 0 0 11.2 22.093zm1.6 1.198v-1.204a8.77 8.77 0 0 0 6.729-4.283H16.81v-1.2H20.5c.504 0 .912.408.912.912V20h-1.2v-2.237a9.97 9.97 0 0 1-7.411 4.324m0-18.818V2.065a9.98 9.98 0 0 1 7.308 4.132 9.98 9.98 0 0 1 1.781 7.112l-1.19-.156A8.775 8.775 0 0 0 12.8 3.269",clipRule:"evenodd"})),fv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.767 3.824a.85.85 0 0 1 1.36.68V9.23a.85.85 0 0 1-1.345.691L2.555 7.616a.85.85 0 0 1-.016-1.372zm.16 1.38L3.642 6.917 5.927 8.55zM8.73 6.34h5.318a5.17 5.17 0 0 1 5.169 5.17v.804h-1.2v-.805a3.97 3.97 0 0 0-3.97-3.969H8.732zm-3.22 5.343v.969a3.97 3.97 0 0 0 3.968 3.969h5.792v1.2H9.479a5.17 5.17 0 0 1-5.169-5.17v-.968zm12.565 3.767v3.345l2.284-1.713zm-1.2-.68a.85.85 0 0 1 1.343-.692l3.228 2.305a.85.85 0 0 1 .016 1.372l-3.228 2.42a.85.85 0 0 1-1.36-.68z",clipRule:"evenodd"})),wv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 2.057V3.26a8.777 8.777 0 0 1 7.9 9.884 8.775 8.775 0 0 1-7.9 7.593v1.204a9.975 9.975 0 0 0 0-19.885m-1.6 1.204V2.057a9.97 9.97 0 0 0-7.35 4.191V4h-1.2v3.687c0 .504.408.913.912.913H7.25V7.4H4.526a8.77 8.77 0 0 1 6.673-4.139m0 17.477v1.204A9.975 9.975 0 0 1 2.023 12h1.2a8.775 8.775 0 0 0 7.976 8.738m-2.376-5.387V8.648h1.2v6.703zm3.6-5.501v4.3h1.55v-4.3zm-1.2-.35c0-.47.381-.85.85-.85h2.25c.47 0 .85.38.85.85v5c0 .469-.38.85-.85.85h-2.25a.85.85 0 0 1-.85-.85z",clipRule:"evenodd"})),Ev=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 3.261V2.057a9.98 9.98 0 0 1 7.308 4.132 9.975 9.975 0 0 1-7.308 15.753v-1.204a8.775 8.775 0 0 0 0-17.477m-1.6 17.477A8.775 8.775 0 0 1 3.223 12h-1.2a9.975 9.975 0 0 0 9.176 9.942zm0-18.681V3.26A8.78 8.78 0 0 0 4.526 7.4h2.723v1.2H3.56a.91.91 0 0 1-.912-.913V4h1.2v2.248a9.97 9.97 0 0 1 7.35-4.191m-2.3 13.294V8.648h1.2v6.703zm3.825-5.501h2.425v-1.2h-2.775a.85.85 0 0 0-.85.85v2.25c0 .469.38.85.85.85h1.65v1.55h-2.425v1.2h2.775c.47 0 .85-.381.85-.85v-2.25a.85.85 0 0 0-.85-.85h-1.65z",clipRule:"evenodd"})),yv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 3.261V2.057a9.98 9.98 0 0 1 7.308 4.132 9.975 9.975 0 0 1-7.308 15.753v-1.204a8.775 8.775 0 0 0 0-17.477m-1.6 17.477A8.775 8.775 0 0 1 3.223 12h-1.2a9.975 9.975 0 0 0 9.176 9.942zm0-18.681V3.26A8.77 8.77 0 0 0 4.526 7.4h2.723v1.2H3.56a.91.91 0 0 1-.912-.913V4h1.2v2.248a9.97 9.97 0 0 1 7.35-4.191m-.892 7.793h4.442v-1.2H9.848a.74.74 0 0 0-.741.74v2.469c0 .409.332.74.74.74h3.843v1.55H9.25v1.2h4.9a.74.74 0 0 0 .741-.74V12.14a.74.74 0 0 0-.74-.74h-3.843z",clipRule:"evenodd"})),xv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.668 17.5v-11h1.2v4.738l6.717-4.478a.85.85 0 0 1 1.322.707v3.36l6.1-4.067a.85.85 0 0 1 1.322.707v9.066a.85.85 0 0 1-1.322.707l-6.1-4.067v3.36a.85.85 0 0 1-1.322.707l-6.717-4.478V17.5zm9.643-5.5 5.818 3.879V8.12zm-1.604-3.879L5.889 12l5.818 3.879z",clipRule:"evenodd"})),Cv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.318 6.76a.85.85 0 0 1 1.322.707v3.36l6.1-4.068a.85.85 0 0 1 1.322.708v9.065a.85.85 0 0 1-1.322.708l-6.1-4.067v3.36a.85.85 0 0 1-1.322.707L4.52 12.707a.85.85 0 0 1 0-1.415l.333.5.004.005m-.004-.006-.333-.499 6.8-4.533M13.042 12l5.819 3.88V8.12zM11.44 8.121l-5.818 3.878 5.818 3.88z",clipRule:"evenodd"})),bv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M15.738 8.262A16.6 16.6 0 0 0 4 3.4v1.2A15.4 15.4 0 0 1 19.4 20h1.2a16.6 16.6 0 0 0-4.862-11.738m-3.536 3.536A11.6 11.6 0 0 0 4 8.4v1.2A10.4 10.4 0 0 1 14.4 20h1.2a11.6 11.6 0 0 0-3.398-8.202m-4.752 6.89a1.65 1.65 0 0 0 0-3.075v-1.25a2.851 2.851 0 0 1 0 5.574zm-1.2-3.075a1.65 1.65 0 0 0 0 3.075v1.25a2.851 2.851 0 0 1 0-5.574z",clipRule:"evenodd"})),Rv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.726 3.952a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8m-2.6 1.4a2.6 2.6 0 1 1 5.2 0 2.6 2.6 0 0 1-5.2 0m1.592 4.267a3.9 3.9 0 0 0-4.177 2.872l-1.159-.311a5.1 5.1 0 0 1 6.249-3.608l.444.12v.46a3.4 3.4 0 0 0 3.398 3.398v1.2a4.6 4.6 0 0 1-4.014-2.355l-1.205 4.216a5.1 5.1 0 0 1 4.318 5.037h-1.2a3.897 3.897 0 0 0-3.477-3.874 4.6 4.6 0 0 1-5.532 2.697l.331-1.154a3.4 3.4 0 0 0 4.205-2.33l1.139-4 .003.002z",clipRule:"evenodd"})),Sv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.353 4.132c.512-.604 1.499-.242 1.499.55v8.799c0 .47-.381.85-.85.85h-7.46a.85.85 0 0 1-.649-1.4zm.299 1.504L5.297 13.13h6.355zM3.725 17.229a.85.85 0 0 1 .724-1.295h15.105a.85.85 0 0 1 .724 1.295l-1.825 2.967a.85.85 0 0 1-.724.404H6.275a.85.85 0 0 1-.724-.404zm1.35-.095L6.47 19.4h11.063l1.395-2.266z",clipRule:"evenodd"})),Iv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.598 4.6v14.8h2.8v-5.114c0-.49.397-.886.886-.886h7.429c.489 0 .885.397.885.886V19.4h2.8V7.677L16.321 4.6zm10.8 14.8v-4.8h-6.8v4.8zm-12-15.114c0-.49.397-.886.886-.886h12.168c.234 0 .46.094.626.26l3.261 3.261c.166.166.26.391.26.626v12.168c0 .489-.397.885-.886.885H4.284a.886.886 0 0 1-.886-.885zm10.2 1.914a3.1 3.1 0 1 1-6.2 0h1.2a1.9 1.9 0 1 0 3.8 0z",clipRule:"evenodd"})),Tv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.467 2.147a.85.85 0 0 1 1.062 0l2.666 2.133 3.395.377a.85.85 0 0 1 .75.751l.378 3.395 2.133 2.666a.85.85 0 0 1 0 1.062L19.717 15.2l-.377 3.391a.85.85 0 0 1-.75.751l-3.395.377-2.666 2.133a.85.85 0 0 1-1.062 0L8.8 19.718l-3.393-.377a.85.85 0 0 1-.75-.75l-.378-3.394-2.132-2.666a.85.85 0 0 1 0-1.062L4.28 8.805l.377-3.397a.85.85 0 0 1 .751-.75L8.8 4.28zm.53 1.112L9.47 5.281a.85.85 0 0 1-.437.181l-3.215.357-.358 3.219a.85.85 0 0 1-.18.437L3.26 12l2.02 2.526a.85.85 0 0 1 .18.437l.358 3.217 3.216.357a.85.85 0 0 1 .437.18l2.527 2.022 2.526-2.02a.85.85 0 0 1 .437-.182l3.218-.357.357-3.215a.85.85 0 0 1 .18-.437L20.74 12l-2.022-2.527a.85.85 0 0 1-.18-.437l-.358-3.217-3.217-.357a.85.85 0 0 1-.437-.181z",clipRule:"evenodd"})),Mv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.35 3.299a.85.85 0 0 1 1.206-.967l17.816 8.908a.85.85 0 0 1 0 1.521L3.556 21.669a.85.85 0 0 1-1.205-.966L4.526 12zm1.35.447 2.012 8.049a.85.85 0 0 1 0 .412L3.7 20.256 20.21 12zM13.34 12.6h-6v-1.2h6z",clipRule:"evenodd"})),zv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 5.25c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v5.5c0 .47-.38.85-.85.85H3.373a.85.85 0 0 1-.85-.85zm1.2.35v4.8h16.55V5.6zm2.525 2a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m-2.125 5.25c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v5.5c0 .47-.38.85-.85.85H3.373a.85.85 0 0 1-.85-.85zm1.2.35v4.8h16.55v-4.8zm2.525 2a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0",clipRule:"evenodd"})),Ov=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M16.644 4.686a1.6 1.6 0 1 0 0 3.2 1.6 1.6 0 0 0 0-3.2m-2.972 1.6a2.971 2.971 0 1 1 .782 2.009L9.247 11.3a3 3 0 0 1 0 1.398l5.207 3.007a2.971 2.971 0 1 1-.67 1.197l-5.16-2.98a2.971 2.971 0 1 1 0-3.846l5.16-2.98a3 3 0 0 1-.112-.811M6.358 10.4a1.6 1.6 0 1 0 0 3.2 1.6 1.6 0 0 0 0-3.2m10.286 5.714a1.6 1.6 0 1 0 0 3.2 1.6 1.6 0 0 0 0-3.2",clipRule:"evenodd"})),Vv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.398 3.065a.85.85 0 0 1 1.202 0l4.066 4.066-.849.848-3.219-3.218v10.551h-1.2V4.762L8.181 7.98l-.849-.849zm8.708 11.605a8.8 8.8 0 0 0 .667-3.358h1.2a9.973 9.973 0 0 1-9.975 9.975 9.975 9.975 0 0 1-9.975-9.975h1.2a8.775 8.775 0 0 0 16.883 3.358",clipRule:"evenodd"})),Fv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.4 6.511V11.8h1.2V7.711zm12.906 12.907A7.4 7.4 0 0 1 4.6 13.4H3.4a8.6 8.6 0 0 0 13.766 6.876zm2.794-1.165 1.809 1.808-.849.848L3.09 3.94l.848-.848 1.024 1.024.964.963 12.309 12.309zm.804-1.46a8.6 8.6 0 0 0 .695-3.393h-1.2c0 .865-.148 1.696-.421 2.467zM7.667 4.556l4.332-1.3 7.4 2.22V11.8h1.2V5.216a.85.85 0 0 0-.606-.814l-7.75-2.325a.85.85 0 0 0-.488 0L6.703 3.592z",clipRule:"evenodd"})),Pv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.998 3.256-7.4 2.22V11.8h-1.2V5.216a.85.85 0 0 1 .606-.814l7.75-2.325a.85.85 0 0 1 .489 0l7.75 2.325-.173.575.173-.575a.85.85 0 0 1 .605.814V11.8h-1.2V5.476zM4.598 13.4a7.4 7.4 0 1 0 14.8 0h1.2a8.6 8.6 0 1 1-17.2 0z",clipRule:"evenodd"})),kv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.003 3.11a2.6 2.6 0 0 0-2.6 2.6h1.2a1.4 1.4 0 0 1 2.8 0h1.2a2.6 2.6 0 0 0-2.6-2.6m-2.4 7v-2.4h8.967l.863 2.59 1.139-.38-.943-2.83a.85.85 0 0 0-.807-.58h-9.57a.85.85 0 0 0-.85.85v2.75zm-3.427.897h-.004a.85.85 0 0 0-.83 1.006l1.064 5.706 1.18-.22-.987-5.292h16.704l-1.502 5.237 1.154.33 1.658-5.78a.8.8 0 0 0 .009-.42.73.73 0 0 0-.256-.388.92.92 0 0 0-.57-.179H3.176m5.073 4.925a2.475 2.475 0 0 0-2.401 1.875h1.276a1.275 1.275 0 0 1 2.25 0h1.276a2.475 2.475 0 0 0-2.401-1.875m2.625 3.075a1.27 1.27 0 0 0 1.125.675 1.27 1.27 0 0 0 1.125-.675H14.4a2.475 2.475 0 0 1-4.802 0zm-3.974 0H5.624a1.273 1.273 0 0 1-2.027.301 1.3 1.3 0 0 1-.223-.301H2.098a2.475 2.475 0 0 0 4.802 0m7.724-1.2h-1.276a2.475 2.475 0 0 1 4.802 0h-1.276a1.276 1.276 0 0 0-2.25 0m2.474 1.2a2.474 2.474 0 0 0 4.802 0h-1.276a1.276 1.276 0 0 1-2.25 0z",clipRule:"evenodd"})),Bv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.597 3.435a4.813 4.813 0 0 1 8.217 3.404v2.317h-1.2V6.84a3.613 3.613 0 1 0-7.227 0v2.317h-1.2V6.84c0-1.277.508-2.501 1.41-3.404m-3.37 6.321h.363v-1.2h-.713a.85.85 0 0 0-.85.85v11.72c0 .469.38.85.85.85h14.248c.469 0 .85-.381.85-.85V9.405a.85.85 0 0 0-.85-.85h-.715v1.2h.364v11.02H5.227zm8.784 0H9.99v-1.2h4.02zm-5.624 1a3.613 3.613 0 1 0 7.227 0h1.2a4.813 4.813 0 1 1-9.627 0z",clipRule:"evenodd"})),Av=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.984 4.285a1.72 1.72 0 0 0-1.218-.505v-1.2a2.923 2.923 0 0 1 2.922 2.923h-1.2c0-.457-.181-.895-.504-1.218m.504 3.667c0-.47.38-.85.85-.85h15.107a.85.85 0 0 1 .825 1.056l-2.197 8.79a.85.85 0 0 1-.825.644H5.338a.85.85 0 0 1-.85-.85zm1.2.35v8.09h12.287l2.022-8.09zm.581 10.89a1.026 1.026 0 0 0 2.052 0h1.2a2.226 2.226 0 0 1-4.452 0zm8.362 0a1.026 1.026 0 0 0 2.051 0h1.2a2.226 2.226 0 0 1-4.451 0z",clipRule:"evenodd"})),Lv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M17.732 4.102v3.677l2.51-1.883zm-1.2-.68a.85.85 0 0 1 1.344-.692l3.453 2.467a.85.85 0 0 1 .016 1.372l-3.453 2.59a.85.85 0 0 1-1.36-.68zM2.219 5.055a6.95 6.95 0 0 1 6.356 4.146 6.94 6.94 0 0 1 6.355-4.146v1.2a5.745 5.745 0 1 0 0 11.491v1.2A6.95 6.95 0 0 1 8.575 14.8a6.94 6.94 0 0 1-6.356 4.146v-1.2a5.745 5.745 0 0 0 0-11.49zm15.515 11.133v3.677l2.51-1.883zm2.9 2.072Zm-4.1-2.752a.85.85 0 0 1 1.344-.692l3.453 2.467a.85.85 0 0 1 .016 1.372l-3.454 2.59a.85.85 0 0 1-1.36-.68z",clipRule:"evenodd"})),_v=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.398 18.5v-13h1.2v5.76l8.25-5.5a.85.85 0 0 1 1.32.707v11.066a.85.85 0 0 1-1.32.707l-8.25-5.5v5.76zm9.57-11.379L8.65 12l7.319 4.879z",clipRule:"evenodd"})),Nv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.398 13.725-5.48-5.48.848-.849L12 12.63l5.233-5.233.848.849-5.48 5.48-.424-.424.424.424a.85.85 0 0 1-1.202 0M18 16.778H6v-1.2h12z",clipRule:"evenodd"})),$v=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M15.969 11.26V5.5h1.2v13h-1.2v-5.76l-8.25 5.5a.85.85 0 0 1-1.32-.707V6.467a.85.85 0 0 1 1.32-.707zM7.599 7.12 14.916 12l-7.319 4.879zm7.755 4.588Z",clipRule:"evenodd"})),Hv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m10.275 11.398 5.48-5.48.849.848L11.371 12l5.233 5.233-.849.848-5.48-5.48a.85.85 0 0 1 0-1.202M7.223 18V6h1.2v12z",clipRule:"evenodd"})),Dv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m8.423 5.92 5.48 5.48a.85.85 0 0 1 0 1.202l-5.48 5.48-.849-.848L12.807 12 7.574 6.768zm8.533.08v12h-1.2V6z",clipRule:"evenodd"})),jv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.999 7.22h12v1.2h-12zm5.399 3.053a.85.85 0 0 1 1.202 0l5.48 5.48-.848.849-5.233-5.233-5.233 5.233-.848-.848z",clipRule:"evenodd"})),Wv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.798 3.261V2.057c5.135.407 9.175 4.703 9.175 9.943s-4.04 9.536-9.175 9.944v-1.205a8.74 8.74 0 0 0 4.967-2.124L5.384 6.235a8.776 8.776 0 0 0 5.814 14.505v1.203C6.063 21.536 2.023 17.24 2.023 12s4.04-9.536 9.175-9.943V3.26a8.74 8.74 0 0 0-4.966 2.125l12.381 12.38a8.776 8.776 0 0 0-5.815-14.505",clipRule:"evenodd"})),Gv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.6 5.6a2.4 2.4 0 0 0-2.263 1.6H2.089a3.601 3.601 0 0 1 7.022 0H7.863A2.4 2.4 0 0 0 5.6 5.6M2.09 8.8h1.247a2.401 2.401 0 0 0 4.526 0h1.248a3.601 3.601 0 0 1-7.022 0M2 7.947v.107zm8.798-.547 10.2-.043.005 1.2-10.2.043zm5.338 9.352H14.89a3.601 3.601 0 0 0 7.022 0h-1.248a2.4 2.4 0 0 1-4.527 0m4.527-1.6h1.248a3.601 3.601 0 0 0-7.022 0h1.247a2.401 2.401 0 0 1 4.527 0m-5.863.854v-.108zM2.998 15.4l10.2-.043.005 1.2-10.2.043z",clipRule:"evenodd"})),Uv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m7.6 2.498.044 10.6-1.2.005-.044-10.6zM19.4 6.1a2.4 2.4 0 0 1-1.8 2.324V9.65a3.601 3.601 0 0 0 0-7.1v1.226A2.4 2.4 0 0 1 19.4 6.1m-4.8 0c0-1.118.765-2.058 1.8-2.324V2.55a3.601 3.601 0 0 0 0 7.1V8.424A2.4 2.4 0 0 1 14.6 6.1M17 2.5h.046-.091zm.6 8.398.044 10.6-1.2.005-.044-10.6zM6.45 15.576a2.401 2.401 0 0 0 0 4.648v1.226a3.6 3.6 0 0 1 0-7.1zm1.2 4.648a2.401 2.401 0 0 0 0-4.648V14.35a3.601 3.601 0 0 1 0 7.1zM7.1 14.3h-.101z",clipRule:"evenodd"})),Kv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.54 2.875c0-.47.38-.85.85-.85h11.218c.47 0 .85.38.85.85V4.22h-1.2v-.995H6.739v.995h-1.2zm8.458 2.745h-4v-1.2h4zM6.74 20.775V5.82h-1.2v15.305c0 .47.38.85.85.85h11.219c.47 0 .85-.38.85-.85V5.82h-1.2v14.955zm5.26-3.55a.775.775 0 1 0 0 1.55.775.775 0 0 0 0-1.55M10.022 18a1.975 1.975 0 1 1 3.95 0 1.975 1.975 0 0 1-3.95 0",clipRule:"evenodd"})),qv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 25 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 12c0-5.24 4.04-9.536 9.175-9.943V3.26a8.776 8.776 0 0 0 0 17.478v1.204C6.563 21.536 2.523 17.24 2.523 12m10.775 9.943c5.135-.407 9.175-4.703 9.175-9.943s-4.04-9.536-9.175-9.943V3.26a8.776 8.776 0 0 1 0 17.478zM8.998 8.6a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m8.6-.4a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m-7.3 3a5.4 5.4 0 1 0 10.8 0h1.2a6.6 6.6 0 1 1-13.2 0z",clipRule:"evenodd"})),Yv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.248 3.4a.85.85 0 0 0-.85.85v15.5c0 .47.381.85.85.85h11.5c.47 0 .85-.38.85-.85V4.25a.85.85 0 0 0-.85-.85zm.35 16V4.6h10.8v14.8zm5-11.9a.4.4 0 1 1 .8 0 .4.4 0 0 1-.8 0m.4-1.6a1.6 1.6 0 1 0 0 3.2 1.6 1.6 0 0 0 0-3.2m.6 10.925a2.401 2.401 0 0 0 0-4.649V10.95a3.601 3.601 0 0 1 0 7.1zm-1.2-4.649a2.401 2.401 0 0 0 0 4.649v1.226a3.601 3.601 0 0 1 0-7.1z",clipRule:"evenodd"})),Xv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 3.375c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v17.25c0 .47-.38.85-.85.85H3.373a.85.85 0 0 1-.85-.85zm1.2.35v16.55h16.55V3.725z",clipRule:"evenodd"})),Zv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.55 3.236c.507-1.337 2.398-1.338 2.907-.002l1.836 4.82 5 .36c1.402.101 1.961 1.863.874 2.755l-4.135 3.39 2.152 5c.603 1.4-.958 2.742-2.251 1.935l-4.919-3.066-4.53 3.04c-1.248.84-2.842-.407-2.329-1.82l1.838-5.071-4.148-3.402c-1.089-.893-.526-2.657.88-2.754l4.986-.344zm1.266 15.069Zm3.559-10.036-.338.129zm-3.04-4.608a.356.356 0 0 0-.664 0L9.75 8.72a.84.84 0 0 1-.727.54l-5.217.359a.356.356 0 0 0-.201.63l4.346 3.563c.275.226.378.6.256.935l-1.925 5.31a.356.356 0 0 0 .533.416l4.723-3.17a.84.84 0 0 1 .912-.016l5.116 3.19a.356.356 0 0 0 .515-.442l-2.26-5.25a.84.84 0 0 1 .238-.98l.38.464-.38-.464 4.346-3.563a.356.356 0 0 0-.2-.63l-5.229-.377a.84.84 0 0 1-.723-.538z",clipRule:"evenodd"})),Jv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m14.753 19.4 4.649-4.649V4.6h-14.8v14.8zm.746.95a.85.85 0 0 1-.601.25H4.252a.85.85 0 0 1-.85-.85V4.25c0-.47.38-.85.85-.85h15.5c.469 0 .85.38.85.85v10.646a.85.85 0 0 1-.25.601zm-2.097-2.561v-3.54c0-.469.38-.85.85-.85h3.55v1.2h-3.2v3.19z",clipRule:"evenodd"})),Qv=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.798 3.261V2.057c5.135.407 9.175 4.703 9.175 9.943s-4.04 9.536-9.175 9.943V20.74a8.776 8.776 0 0 0 0-17.478m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.063 2.464 2.023 6.76 2.023 12s4.04 9.536 9.175 9.943zM8.023 8.875c0-.47.38-.85.85-.85h6.25c.47 0 .85.38.85.85v6.25c0 .47-.38.85-.85.85h-6.25a.85.85 0 0 1-.85-.85zm1.2.35v5.55h5.55v-5.55z",clipRule:"evenodd"})),e7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.398 6.25c0-.47.381-.85.85-.85h11.5c.47 0 .85.38.85.85v11.5c0 .47-.38.85-.85.85h-11.5a.85.85 0 0 1-.85-.85zm1.2.35v10.8h10.8V6.6z",clipRule:"evenodd"})),t7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.6 4.4V2h-1.2v2.4zM7.05 6.202 5.353 4.505l-.849.848L6.201 7.05zm12.445-.849-.849-.848-1.697 1.697.849.848zM12.8 15.945a4.026 4.026 0 0 0 0-7.89v-1.22a5.226 5.226 0 0 1 0 10.329zm-1.6-7.89a4.026 4.026 0 0 0 0 7.89v1.22a5.226 5.226 0 0 1 0-10.33zM2 12.6h2.4v-1.2H2zm17.6 0H22v-1.2h-2.4zm-.105 6.047-1.697-1.697-.848.848 1.697 1.697zm-14.142.848 1.697-1.697-.848-.848-1.697 1.697zM12.6 22v-2.4h-1.2V22z",clipRule:"evenodd"})),n7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.567 3.225v17.55H18.43V3.225zm-1.2-.35c0-.47.38-.85.85-.85H18.78c.47 0 .85.38.85.85v18.25c0 .47-.38.85-.85.85H5.217a.85.85 0 0 1-.85-.85zm7.631 14.35a.775.775 0 1 0 0 1.55.775.775 0 0 0 0-1.55M10.023 18a1.975 1.975 0 1 1 3.95 0 1.975 1.975 0 0 1-3.95 0",clipRule:"evenodd"})),o7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.85 4.563a.85.85 0 0 1 .842-.827l6.541-.062a.85.85 0 0 1 .61.249l8.234 8.234a.85.85 0 0 1 0 1.202l-6.718 6.718a.85.85 0 0 1-1.202 0l-8.232-8.233a.85.85 0 0 1-.249-.623zm1.191.37-.161 6.169 7.878 7.879 6.223-6.223-7.883-7.883z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.588 7.588a.4.4 0 1 0 .566.565.4.4 0 0 0-.566-.565m-.849 1.414a1.6 1.6 0 1 1 2.263-2.263A1.6 1.6 0 0 1 6.74 9.002",clipRule:"evenodd"})),l7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.023 12c0-5.24 4.04-9.536 9.176-9.943V3.26a8.776 8.776 0 0 0 0 17.478v1.204C6.064 21.536 2.023 17.24 2.023 12M12.8 21.943c5.134-.407 9.174-4.703 9.174-9.943s-4.04-9.536-9.174-9.943V3.26a8.776 8.776 0 0 1 0 17.478zm-.8-15.218a5.275 5.275 0 1 0 0 10.55 5.275 5.275 0 0 0 0-10.55M5.524 12a6.475 6.475 0 1 1 12.95 0 6.475 6.475 0 0 1-12.95 0m6.475-1.775a1.775 1.775 0 1 0 0 3.55 1.775 1.775 0 0 0 0-3.55M9.024 12a2.975 2.975 0 1 1 5.95 0 2.975 2.975 0 0 1-5.95 0",clipRule:"evenodd"})),i7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.877 3.703a3 3 0 0 1 5.121 2.121h-1.2a1.8 1.8 0 1 0-3.6 0h-1.2a3 3 0 0 1 .88-2.121M6.442 6.424h1.357v-1.2H6.183a.85.85 0 0 0-.812.6l-1.935 6.288.573.176-.573-.176a.9.9 0 0 0-.038.25v4.367h1.2v-4.315zm11.113 0h-1.353v-1.2h1.612a.85.85 0 0 1 .812.6l1.935 6.288a.9.9 0 0 1 .037.25v4.367h-1.2v-4.315zm.643 6.5h-12.4v-1.2h12.4zm-10.7 2a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m10.6-.4a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m-7.9 3.6v1.4c0 .47-.38.85-.85.85h-1.9a.85.85 0 0 1-.85-.85v-2h1.2v1.65h1.2v-1.4c0-.47.381-.85.85-.85h10.7c.47 0 .85.38.85.85v1.4h1.2v-1.65h1.2v2c0 .47-.38.85-.85.85h-1.9a.85.85 0 0 1-.85-.85v-1.4z",clipRule:"evenodd"})),r7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.633 11.69 4.067 6.123l.849-.849 5.813 5.813a.85.85 0 0 1 0 1.202l-5.814 5.814-.849-.849zM19.5 18.3h-8v-1.2h8z",clipRule:"evenodd"})),a7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 25 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m5.767 6.1-.86 7.3h4.315c.337 0 .611.274.611.612v3.035a.853.853 0 0 0 1.662.27l1.664-4.991a.62.62 0 0 1 .59-.426h1.284V6.1zM4.61 5.651a.85.85 0 0 1 .844-.75h10.778v8.2h-2.068l-1.532 4.596a2.053 2.053 0 0 1-4-.65V14.6H4.514a.85.85 0 0 1-.844-.949zM19.284 6.95a2.9 2.9 0 0 0-2.051-.85V4.9a4.1 4.1 0 1 1 0 8.2v-1.2a2.9 2.9 0 0 0 2.05-4.95",clipRule:"evenodd"})),s7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 25 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M14.296 6.1a.85.85 0 0 0-.81.584l-1.663 4.991a.62.62 0 0 1-.59.425H9.948v5.8h9.267l.859-7.3H15.76a.61.61 0 0 1-.612-.61V6.952a.853.853 0 0 0-.852-.853m-1.948.204a2.053 2.053 0 0 1 4 .65V9.4h4.12a.85.85 0 0 1 .843.95l-.94 8a.85.85 0 0 1-.845.75H8.748v-8.2h2.068zm-4.6 5.796a2.9 2.9 0 1 0 0 5.8v1.2a4.1 4.1 0 0 1 0-8.2z",clipRule:"evenodd"})),c7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M17.372 3.884a5.972 5.972 0 0 0-8.181 7.545l-4.266 4.266.848.849 4.43-4.43a.86.86 0 0 0 .177-.95 4.772 4.772 0 0 1 5.986-6.404L13.07 8.058a.85.85 0 0 0 0 1.202l1.671 1.671a.85.85 0 0 0 1.202 0l3.298-3.297a4.771 4.771 0 0 1-6.404 5.986.86.86 0 0 0-.95.177l-4.43 4.43.849.848 4.266-4.266a5.971 5.971 0 0 0 7.545-8.18c-.265-.544-.96-.608-1.349-.22l-3.426 3.426-1.176-1.176 3.426-3.427c.388-.388.324-1.083-.22-1.348M7.173 20.206l-.848-.848-.015.015a1.19 1.19 0 1 1-1.683-1.683l.015-.015-.849-.849-.015.015a2.39 2.39 0 0 0 3.38 3.38z",clipRule:"evenodd"})),d7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.5 3v.005A2.73 2.73 0 0 0 3.94 5.731h1.2A1.53 1.53 0 0 1 6.672 4.2h10.655a1.53 1.53 0 0 1 1.53 1.53h1.2A2.73 2.73 0 0 0 17.327 3zm4.899 7.255h-4.66v1.2h10.52v-1.2H12.6V5.777h-1.2zm-6.257 7.079V7.307h-1.2v10.377c0 .47.38.85.85.85h14.415c.47 0 .85-.38.85-.85V7.307h-1.2v10.027zm3.019-3.078a.465.465 0 1 0 0 .93.465.465 0 0 0 0-.93m-1.666.465a1.665 1.665 0 1 1 3.33 0 1.665 1.665 0 0 1-3.33 0m9.447-.465a.465.465 0 1 0 0 .93.465.465 0 0 0 0-.93m-1.666.465a1.665 1.665 0 1 1 3.331 0 1.665 1.665 0 0 1-3.33 0M6.46 19.757h11.08v1.2H6.46z",clipRule:"evenodd"})),u7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.454 3.084A3.6 3.6 0 0 1 15.6 5.629h-1.2a2.4 2.4 0 0 0-4.8 0H8.4a3.6 3.6 0 0 1 1.054-2.545M21 7.229v1.2H3v-1.2zM17.4 20.8l-.004-10.77h1.2l.004 11.12c0 .47-.38.85-.85.85H6.25a.85.85 0 0 1-.85-.85V10.03h1.2V20.8zm-8-3.3v-6h1.2v6zm4 0v-6h1.2v6z",clipRule:"evenodd"})),h7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m9.242 14.09-5.48-5.48.848-.848 5.233 5.232 3.399-3.399a.85.85 0 0 1 1.202 0l-.424.425-.015.014m.015-.014.424-.425 4.77 4.771v-3.18h1.2v4.378c0 .47-.38.85-.85.85h-4.378v-1.2h3.18l-4.523-4.523-3.4 3.4a.85.85 0 0 1-1.201 0",clipRule:"evenodd"})),g7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M15.186 7.586h4.379c.47 0 .85.38.85.85v4.378h-1.2v-3.18l-4.771 4.77a.85.85 0 0 1-1.202 0l-3.4-3.398-5.232 5.232-.848-.848 5.48-5.48.396.396-.396-.396a.85.85 0 0 1 1.202 0l3.399 3.399 4.523-4.523h-3.18z",clipRule:"evenodd"})),v7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.26 4.583a.85.85 0 0 1 1.477 0l8.069 14.12a.85.85 0 0 1-.738 1.272H3.929a.85.85 0 0 1-.738-1.271zM12 5.71 4.532 18.775h14.933z",clipRule:"evenodd"})),m7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.148 5.551c0-.47.381-.85.85-.85h11.3c.47 0 .85.38.85.85v9.5c0 .47-.38.85-.85.85h-11.3a.85.85 0 0 1-.85-.85zm1.2.35v8.8h10.6v-8.8zm14.051 3h-1.45v-1.2h3.627a.85.85 0 0 1 .796.552l1.477 3.94v2.858c0 .47-.38.85-.85.85h-5.05v-1.2h4.7v-1.8h-2.4a.85.85 0 0 1-.85-.85zm1.2 0v2.8h1.784l-1.05-2.8zm-13.75 7.8a1.4 1.4 0 1 0 2.8 0h1.2a2.6 2.6 0 0 1-5.2 0zm10 0a1.4 1.4 0 1 0 2.8 0h1.2a2.6 2.6 0 1 1-5.2 0z",clipRule:"evenodd"})),p7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.247 7.4 8.423 4.576l-.849.849L9.55 7.4H3.498a.85.85 0 0 0-.85.85v10.723c0 .47.381.85.85.85h17c.47 0 .85-.38.85-.85V8.25a.85.85 0 0 0-.85-.85h-6.051l1.976-1.975-.849-.849L12.75 7.4zM3.848 8.6v10.023h16.3V8.6z",clipRule:"evenodd"})),f7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.098 5.378v3.4h-1.2v-3.75c0-.47.381-.85.85-.85h14.5c.47 0 .85.38.85.85v3.75h-1.2v-3.4h-6.3v13.246h2.067v1.2H9.332v-1.2h2.066V5.378z",clipRule:"evenodd"})),w7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.21 5.411a9.6 9.6 0 0 1 16.385 6.522.845.845 0 0 1-.846.867h-8.15v3.4h-1.2v-3.4h-8.15a.845.845 0 0 1-.846-.867A9.6 9.6 0 0 1 5.21 5.411M12 3.8a8.4 8.4 0 0 0-8.379 7.8h16.758a8.4 8.4 0 0 0-8.379-7.8m.454 16.545A3.6 3.6 0 0 1 11.4 17.8h1.2a2.4 2.4 0 1 0 4.8 0h1.2a3.6 3.6 0 0 1-6.146 2.545",clipRule:"evenodd"})),E7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.733 9.61V3.73h1.2v5.88zm11.338 0V3.73h1.2v5.88zM6.933 11.214a5.07 5.07 0 1 0 10.138 0h1.2a6.269 6.269 0 1 1-12.538 0zm12.243 9.067H4.828v-1.2h14.348z",clipRule:"evenodd"})),y7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7 7.905a5.004 5.004 0 0 1 10.009 0h-1.2a3.804 3.804 0 0 0-7.61 0zm-4.602 5.662a4.533 4.533 0 0 1 4.533-4.532v1.2a3.333 3.333 0 0 0-.79 6.57l-.284 1.166a4.534 4.534 0 0 1-3.459-4.404m17.933 0A3.33 3.33 0 0 0 17 10.237v-1.2a4.533 4.533 0 0 1 1.152 8.917l-.305-1.161a3.334 3.334 0 0 0 2.485-3.224m-8.8-1.408a.72.72 0 0 1 1.014 0l3.673 3.673-.848.849-2.734-2.734V20.5h-1.2v-6.55l-2.73 2.73-.849-.849z",clipRule:"evenodd"})),x7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.985 5.221a3.038 3.038 0 1 0 0 6.077 3.038 3.038 0 0 0 0-6.077M5.747 8.26a4.238 4.238 0 1 1 8.476 0 4.238 4.238 0 0 1-8.476 0m14.182 3.253-3.282 3.282a.85.85 0 0 1-1.202 0l-1.87-1.87.848-.849 1.623 1.623 3.034-3.034zm-9.944 3.71a4.777 4.777 0 0 0-4.777 4.778h-1.2a5.977 5.977 0 1 1 11.954 0h-1.2a4.777 4.777 0 0 0-4.777-4.778",clipRule:"evenodd"})),C7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.799 3.261V2.057c5.134.407 9.174 4.703 9.174 9.943s-4.04 9.536-9.174 9.943V20.74a8.776 8.776 0 0 0 0-17.478m-1.6 17.478a8.776 8.776 0 0 1 0-17.478V2.057C6.062 2.464 2.022 6.76 2.022 12s4.04 9.536 9.176 9.943zm.8-14.014a2.4 2.4 0 1 0 0 4.8 2.4 2.4 0 0 0 0-4.8m-3.6 2.4a3.6 3.6 0 1 1 7.2 0 3.6 3.6 0 0 1-7.2 0m3.6 5.975a3.4 3.4 0 0 0-3.4 3.4h-1.2a4.6 4.6 0 1 1 9.2 0h-1.2a3.4 3.4 0 0 0-3.4-3.4",clipRule:"evenodd"})),b7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.985 5.221a3.038 3.038 0 1 0 0 6.077 3.038 3.038 0 0 0 0-6.077M5.747 8.26a4.238 4.238 0 1 1 8.476 0 4.238 4.238 0 0 1-8.476 0m14.24 5.34h-6v-1.2h6zM9.985 15.224a4.777 4.777 0 0 0-4.777 4.778h-1.2a5.977 5.977 0 1 1 11.954 0h-1.2a4.777 4.777 0 0 0-4.777-4.778",clipRule:"evenodd"})),R7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.985 5.221a3.038 3.038 0 1 0 0 6.077 3.038 3.038 0 0 0 0-6.077M5.747 8.26a4.238 4.238 0 1 1 8.476 0 4.238 4.238 0 0 1-8.476 0m10.64 4.14V10h1.2v2.4h2.4v1.2h-2.4V16h-1.2v-2.4h-2.4v-1.2zm-6.402 2.823a4.777 4.777 0 0 0-4.777 4.778h-1.2a5.977 5.977 0 1 1 11.954 0h-1.2a4.777 4.777 0 0 0-4.777-4.778",clipRule:"evenodd"})),S7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.985 5.221a3.038 3.038 0 1 0 0 6.077 3.038 3.038 0 0 0 0-6.077M5.747 8.26a4.238 4.238 0 1 1 8.476 0 4.238 4.238 0 0 1-8.476 0m11.24 3.892-1.697-1.697-.849.848 1.697 1.698-1.697 1.697.849.848 1.697-1.697 1.697 1.697.848-.848L17.835 13l1.697-1.697-.848-.849zm-7.002 3.071a4.777 4.777 0 0 0-4.777 4.778h-1.2a5.977 5.977 0 1 1 11.954 0h-1.2a4.777 4.777 0 0 0-4.777-4.778",clipRule:"evenodd"})),I7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12 5.221a3.038 3.038 0 1 0 0 6.077 3.038 3.038 0 0 0 0-6.077M7.763 8.26a4.238 4.238 0 1 1 8.477 0 4.238 4.238 0 0 1-8.477 0m4.239 6.963a4.777 4.777 0 0 0-4.778 4.778h-1.2a5.977 5.977 0 1 1 11.955 0h-1.2A4.777 4.777 0 0 0 12 15.223",clipRule:"evenodd"})),T7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M14.185 10.749a6 6 0 0 1-.3 1.198 4.479 4.479 0 1 0-1.708-6.634q.466.41.841.905a3.279 3.279 0 1 1 1.166 4.53m1.642 4.71a4.55 4.55 0 0 0-2.825.977 7.4 7.4 0 0 0-.997-.73 5.772 5.772 0 0 1 9.594 4.325h-1.2a4.57 4.57 0 0 0-4.572-4.571M8.17 6.602a3.279 3.279 0 1 0 0 6.557 3.279 3.279 0 0 0 0-6.557M3.691 9.88a4.479 4.479 0 1 1 8.958 0 4.479 4.479 0 0 1-8.958 0m4.48 7.549A4.57 4.57 0 0 0 3.597 22h-1.2a5.772 5.772 0 0 1 11.544 0h-1.2A4.57 4.57 0 0 0 8.17 17.43",clipRule:"evenodd"})),M7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.467 2.147a.85.85 0 0 1 1.062 0l2.666 2.133 3.395.377a.85.85 0 0 1 .75.751l.378 3.395 2.133 2.666a.85.85 0 0 1 0 1.062L19.717 15.2l-.377 3.391a.85.85 0 0 1-.75.751l-3.395.377-2.666 2.133a.85.85 0 0 1-1.062 0L8.8 19.718l-3.393-.377a.85.85 0 0 1-.75-.75l-.378-3.394-2.132-2.666a.85.85 0 0 1 0-1.062L4.28 8.805l.377-3.397a.85.85 0 0 1 .751-.75L8.8 4.28zm.53 1.112L9.47 5.281a.85.85 0 0 1-.437.181l-3.215.357-.358 3.219a.85.85 0 0 1-.18.437L3.26 12l2.02 2.526a.85.85 0 0 1 .18.437l.358 3.217 3.216.357a.85.85 0 0 1 .437.18l2.527 2.022 2.526-2.02a.85.85 0 0 1 .437-.182l3.218-.357.357-3.215a.85.85 0 0 1 .18-.437L20.74 12l-2.022-2.527a.85.85 0 0 1-.18-.437l-.358-3.217-3.217-.357a.85.85 0 0 1-.437-.181zm4.927 6.147-5.753 5.752a.85.85 0 0 1-1.202 0l-2.894-2.893.849-.849 2.646 2.646 5.505-5.505z",clipRule:"evenodd"})),z7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.753 5.69a.85.85 0 0 0-.21.56v11.5c0 .47.38.85.85.85h11.5c.214 0 .41-.08.56-.21l-.99-.99H3.743V6.68zm11.79 10.093v-.001L5.361 6.6H5.36l-1.2-1.2h.001l-1.46-1.46.848-.848L20.518 20.06l-.848.848-3.927-3.927zm1.2-2.194v-7.34a.85.85 0 0 0-.85-.85h-7.34l1.2 1.2h5.79v5.79zm5.717-6.07a.85.85 0 0 0-1.38-.664l-3.113 2.484.749.938 2.544-2.03v7.507l-2.544-2.031-.749.938 3.113 2.484a.85.85 0 0 0 1.38-.665z",clipRule:"evenodd"})),O7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.543 6.25c0-.47.38-.85.85-.85h11.5c.47 0 .85.38.85.85v11.5c0 .47-.38.85-.85.85h-11.5a.85.85 0 0 1-.85-.85zm1.2.35v10.8h10.8V6.6zm16.337.255a.85.85 0 0 1 1.38.665v8.961a.85.85 0 0 1-1.38.664l-3.113-2.483.749-.938 2.544 2.03V8.247l-2.544 2.03-.749-.938z",clipRule:"evenodd"})),V7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M16.74 8.105a3.976 3.976 0 0 0-2.046 6.67H9.22a3.976 3.976 0 0 0-2.046-6.67v1.237a2.776 2.776 0 0 1 0 5.316v1.317h9.568v-1.317a2.776 2.776 0 0 1 0-5.316zm1.6 6.553a2.776 2.776 0 0 0 0-5.316V8.106a3.976 3.976 0 0 1 0 7.788zM2.399 12a3.976 3.976 0 0 1 3.175-3.894v1.236a2.776 2.776 0 0 0 0 5.316v1.236A3.976 3.976 0 0 1 2.398 12",clipRule:"evenodd"})),F7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.223 5.28 8.276 9.404a.85.85 0 0 1-.544.197h-.514V8.4h.387l5.424-4.52a.85.85 0 0 1 1.394.653v14.933a.85.85 0 0 1-1.394.653l-5.424-4.52h-.387v-1.2h.514a.85.85 0 0 1 .544.198l4.947 4.121zm2.799.748a5.971 5.971 0 0 1 0 11.943v-1.2a4.771 4.771 0 0 0 0-9.543zM5.623 9.6a2.4 2.4 0 1 0 0 4.8v1.2a3.6 3.6 0 0 1 0-7.2zm10.398-1.003a3.402 3.402 0 1 1 0 6.805v-1.2a2.202 2.202 0 1 0 0-4.405z",clipRule:"evenodd"})),P7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M14.4 5.28 9.452 9.404a.85.85 0 0 1-.544.197h-.51V8.4h.383l5.423-4.52a.85.85 0 0 1 1.394.653v14.933a.85.85 0 0 1-1.394.653l-5.423-4.52H8.4v-1.2h.509a.85.85 0 0 1 .544.198l4.946 4.121zM6.8 9.6a2.4 2.4 0 1 0 0 4.8v1.2a3.6 3.6 0 0 1 0-7.2zm10.4-1.2a3.6 3.6 0 1 1 0 7.2v-1.2a2.4 2.4 0 1 0 0-4.8z",clipRule:"evenodd"})),k7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.223 5.28 8.276 9.404a.85.85 0 0 1-.544.197h-.514V8.4h.387l5.424-4.52a.85.85 0 0 1 1.394.653v14.933a.85.85 0 0 1-1.394.653l-5.424-4.52h-.387v-1.2h.514a.85.85 0 0 1 .544.198l4.947 4.121zm-7.6 4.32a2.4 2.4 0 1 0 0 4.8v1.2a3.6 3.6 0 0 1 0-7.2zM18.112 12 15.97 9.857l.848-.848 2.142 2.142 2.142-2.142.85.848L19.808 12l2.142 2.142-.849.848-2.142-2.142-2.142 2.142-.848-.848z",clipRule:"evenodd"})),B7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M16.598 5.28 11.65 9.404a.85.85 0 0 1-.544.197h-.91V8.4h.783l5.424-4.52a.85.85 0 0 1 1.394.653v14.933a.85.85 0 0 1-1.394.653l-5.424-4.52h-.782v-1.2h.91a.85.85 0 0 1 .543.198l4.947 4.121zm-5.715 10.238ZM8.998 9.6a2.4 2.4 0 1 0 0 4.8v1.2a3.6 3.6 0 0 1 0-7.2z",clipRule:"evenodd"})),A7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.498 3.6a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8M8.898 5a2.6 2.6 0 1 1 5.2 0 2.6 2.6 0 0 1-5.2 0m2 4.402a3.4 3.4 0 0 0-3.3 3.398h-1.2a4.6 4.6 0 0 1 4.5-4.599h1.2v.1a3.9 3.9 0 0 0 3.9 3.9v1.2a5.09 5.09 0 0 1-3.9-1.814v3.645a5.6 5.6 0 0 1 5 5.568h-1.2a4.4 4.4 0 0 0-3.839-4.364A5.1 5.1 0 0 1 7 20.9v-1.2a3.9 3.9 0 0 0 3.9-3.9z",clipRule:"evenodd"})),L7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m9.637 3.35-.359 2.876a6.3 6.3 0 0 1 1.92-.557V6.88a5.183 5.183 0 0 0 0 10.24v1.211a6.3 6.3 0 0 1-1.92-.558l.36 2.876h4.721l.36-2.876a6.3 6.3 0 0 1-1.92.558V17.12a5.183 5.183 0 0 0 0-10.24V5.67c.678.085 1.324.276 1.92.557l-.36-2.876zm6.395 3.705-.512-4.093a.926.926 0 0 0-.919-.812H9.396a.926.926 0 0 0-.92.812l-.511 4.093A6.37 6.37 0 0 0 5.617 12c0 1.995.915 3.775 2.348 4.945l.512 4.094a.926.926 0 0 0 .919.811H14.6c.467 0 .861-.347.92-.81l.51-4.094A6.37 6.37 0 0 0 18.38 12a6.37 6.37 0 0 0-2.348-4.945m-4.634 4.826V8.53h1.2v3.22l2.137 2.138-.848.848-2.228-2.228a.9.9 0 0 1-.26-.628",clipRule:"evenodd"})),_7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.418 8.532c-.63.433-1.244.945-1.844 1.545l.849.848a11.7 11.7 0 0 1 1.86-1.528zm4.755 2.493-2.42-2.42-.905-.906-2.345-2.345.848-.848 14.142 14.142-.848.848-7.428-7.428zm-1.657.605a7.9 7.9 0 0 0-1.942 1.447l.849.848c.637-.638 1.297-1.091 1.993-1.395zm2.84 2.84a1.663 1.663 0 1 0 2.176 2.176zm5.448-.774.619-.62a7.7 7.7 0 0 0-3.135-1.897zM10.938 7.83a13 13 0 0 1 1.06-.043c2.842 0 5.567 1.129 7.576 3.138l.849-.848a11.91 11.91 0 0 0-8.424-3.49q-1.099-.002-2.138.166zm.733 7.847a.463.463 0 1 1 .655.654.463.463 0 0 1-.655-.654",clipRule:"evenodd"})),N7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.574 10.075C6.086 7.564 8.85 6.585 12 6.585c3.16 0 6.19 1.256 8.424 3.49l-.849.849a10.71 10.71 0 0 0-7.576-3.138c-2.852 0-5.304.867-7.575 3.138zm3 3C8.19 11.461 9.975 10.83 12 10.83c2.034 0 3.985.808 5.424 2.246l-.849.849a6.47 6.47 0 0 0-4.576-1.895c-1.727 0-3.201.52-4.575 1.895zm4.249 1.752a1.662 1.662 0 1 1 2.351 2.35 1.662 1.662 0 0 1-2.351-2.35m1.502.848a.463.463 0 1 0-.654.654.463.463 0 0 0 .655-.654",clipRule:"evenodd"})),$7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.004 10a8 8 0 0 1 7.223-7.963v1.207a6.801 6.801 0 0 0 0 13.512v1.206A8 8 0 0 1 2.004 10m8.823 7.958a8 8 0 0 0 0-15.916v1.207a6.801 6.801 0 0 1 0 13.502zM9.4 9.4V7h1.2v2.4H13v1.2h-2.4V13H9.4v-2.4H7V9.4zm11.743 12.59-4.782-4.78.849-.85 4.781 4.782z",clipRule:"evenodd"})),H7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.004 10a8 8 0 0 1 7.223-7.963v1.207a6.801 6.801 0 0 0 0 13.512v1.206A8 8 0 0 1 2.004 10m8.823 7.958a8 8 0 0 0 0-15.916v1.207a6.801 6.801 0 0 1 0 13.502zM13 10.6H7V9.4h6zm8.143 11.39-4.782-4.78.849-.85 4.781 4.782z",clipRule:"evenodd"})),D7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m10 6.475-1.37 5.482a.85.85 0 0 1-.825.644H4v-1.2h3.532l1.643-6.576c.215-.858 1.435-.858 1.65 0L14 17.527l1.37-5.482a.85.85 0 0 1 .825-.644H20v1.2h-3.532l-1.643 6.575c-.215.859-1.435.859-1.65 0z",clipRule:"evenodd"})),j7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M3.873 4.682a.85.85 0 0 0-.85.85V15.75c0 .47.381.85.85.85h3.99l2.616-3.923a1.827 1.827 0 0 1 3.04 0l2.615 3.923h3.99c.469 0 .85-.38.85-.85V5.532a.85.85 0 0 0-.85-.85z"}),l.createElement("path",{fill:"currentColor",d:"M12.166 12.88a.818.818 0 0 0-.855.351l-3.202 4.803a.827.827 0 0 0 .688 1.285H15.2a.827.827 0 0 0 .688-1.285l-3.202-4.802a.82.82 0 0 0-.52-.352"})),W7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21.375 12a9.375 9.375 0 1 1-18.75 0 9.375 9.375 0 1 1 18.75 0M11.4 14.1v-8h1.2v8zm1.4 3a.8.8 0 1 0-1.6 0 .8.8 0 0 0 1.6 0",clipRule:"evenodd"})),G7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.104 2a.85.85 0 0 0-.601.249L2.249 7.503a.85.85 0 0 0-.249.6v7.794c0 .225.09.441.249.6l5.254 5.254a.85.85 0 0 0 .6.249h7.794a.85.85 0 0 0 .6-.249l5.254-5.254a.85.85 0 0 0 .25-.6V8.104a.85.85 0 0 0-.25-.601l-5.254-5.254a.85.85 0 0 0-.6-.249zM11.4 14.1v-8h1.2v8zm1.4 3a.8.8 0 1 0-1.6 0 .8.8 0 0 0 1.6 0",clipRule:"evenodd"})),U7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.76 18.494a1.198 1.198 0 0 0 1.03 1.808h16.423c.916 0 1.493-.986 1.044-1.784L13.265 4.31a1.198 1.198 0 0 0-2.073-.024zm8.875-3.794V8.302h1.2V14.7zm1.4 2.4a.8.8 0 1 0-1.6 0 .8.8 0 0 0 1.6 0",clipRule:"evenodd"})),K7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20 7.6H4V6.4h16zM20 14.6H4v-1.2h16zM18 11.1H6V9.9h12zM18 18.1H6v-1.2h12z",clipRule:"evenodd"})),q7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20 7.6H4V6.4h16zM20 14.6H4v-1.2h16zM20 11.1H4V9.9h16zM20 18.1H4v-1.2h16z",clipRule:"evenodd"})),Y7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20 7.6H4V6.4h16zM20 14.6H4v-1.2h16zM16 11.1H4V9.9h12zM16 18.1H4v-1.2h12z",clipRule:"evenodd"})),X7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20 7.6H4V6.4h16zM20 14.6H4v-1.2h16zM20 11.1H8V9.9h12zM20 18.1H8v-1.2h12z",clipRule:"evenodd"})),Z7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.023 5.073a2.975 2.975 0 1 1 3.575 2.914v12.767a8.776 8.776 0 0 0 8.155-8.155h-1.755v-1.2h2.975v.6c0 5.509-4.465 9.975-9.975 9.975s-9.975-4.466-9.975-9.975v-.6h2.975v1.2H3.244a8.776 8.776 0 0 0 8.154 8.155V7.987a2.976 2.976 0 0 1-2.375-2.914",clipRule:"evenodd"})),J7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.623 3.45a3.975 3.975 0 1 0 0 7.95 3.975 3.975 0 0 0 0-7.95M7.623 12.6a3.975 3.975 0 1 0 0 7.95 3.975 3.975 0 0 0 0-7.95M16.373 3.45a3.975 3.975 0 1 0 0 7.95 3.975 3.975 0 0 0 0-7.95M16.373 12.6a3.975 3.975 0 1 0 0 7.95 3.975 3.975 0 0 0 0-7.95",clipRule:"evenodd"})),Q7=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M4.498 3.45a.85.85 0 0 0-.85.85v6.25c0 .469.381.85.85.85h6.25c.47 0 .85-.381.85-.85V4.3a.85.85 0 0 0-.85-.85zM4.498 12.6a.85.85 0 0 0-.85.85v6.25c0 .469.381.85.85.85h6.25c.47 0 .85-.381.85-.85v-6.25a.85.85 0 0 0-.85-.85zM13.248 3.45a.85.85 0 0 0-.85.85v6.25c0 .469.381.85.85.85h6.25c.47 0 .85-.381.85-.85V4.3a.85.85 0 0 0-.85-.85zM13.248 12.6a.85.85 0 0 0-.85.85v6.25c0 .469.381.85.85.85h6.25c.47 0 .85-.381.85-.85v-6.25a.85.85 0 0 0-.85-.85z"})),em=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 4.75c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v4.5c0 .47-.38.85-.85.85H3.373a.85.85 0 0 1-.85-.85zm1 6.35h16.95v8.15c0 .47-.38.85-.85.85H4.373a.85.85 0 0 1-.85-.85zM9 13.6h6v-1.2h-6z",clipRule:"evenodd"})),tm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21.375 12a9.375 9.375 0 1 1-18.75 0 9.375 9.375 0 1 1 18.75 0M11.4 14.551 8.668 11.82l-.849.849 3.58 3.58a.85.85 0 0 0 1.202 0l3.58-3.58-.849-.85-2.732 2.734V8h-1.2z",clipRule:"evenodd"})),nm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.536 17.313 18.514 6.337l-.848-.849L6.688 16.464v-9.82h-1.2v11.019c0 .47.38.85.85.85h11.02v-1.2z",clipRule:"evenodd"})),om=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M17.312 16.464 6.337 5.486l-.849.849 10.976 10.977h-9.82v1.2h11.018c.47 0 .85-.38.85-.85V6.642h-1.2z",clipRule:"evenodd"})),lm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.598 18.789.001-15.523h-1.2l-.001 15.523-6.944-6.944-.849.849 7.792 7.791a.85.85 0 0 0 1.202 0l7.793-7.792-.85-.849z",clipRule:"evenodd"})),im=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21.375 12a9.375 9.375 0 1 1-18.75 0 9.375 9.375 0 1 1 18.75 0m-11.927-.6 2.732-2.732-.848-.849-3.58 3.58a.85.85 0 0 0 0 1.202l3.58 3.58.849-.849L9.448 12.6H16v-1.2z",clipRule:"evenodd"})),rm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.306 3.607 3.515 11.4a.85.85 0 0 0 0 1.202l7.792 7.792.849-.848-6.946-6.946 15.523.002v-1.2l-15.522-.002 6.944-6.943z",clipRule:"evenodd"})),am=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21.375 12a9.375 9.375 0 1 1-18.75 0 9.375 9.375 0 1 1 18.75 0m-6.824-.6L11.82 8.668l.849-.849 3.58 3.58a.85.85 0 0 1 0 1.202l-3.58 3.58-.85-.849 2.734-2.732H8v-1.2z",clipRule:"evenodd"})),sm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.693 20.393 7.792-7.791a.85.85 0 0 0 0-1.202l-7.793-7.793-.848.849 6.944 6.945-15.522-.002v1.2l15.523.002-6.944 6.944z",clipRule:"evenodd"})),cm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.452 4.781a4.964 4.964 0 0 1 4.964 4.964h-1.2a3.764 3.764 0 1 0-7.528 0h-1.2a4.964 4.964 0 0 1 4.964-4.964m3.764 12.491-2.25-2.249-.848.849 3.097 3.096a.85.85 0 0 0 1.202 0l3.095-3.096-.848-.848-2.248 2.248V11.34h-1.2zm-7.528-1.854V11.34h-1.2v4.077z",clipRule:"evenodd"})),dm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"m5.03 8.584 3.096-3.096.849.849-2.249 2.248h5.93v1.2h-5.93l2.249 2.249-.849.848L5.03 9.786a.85.85 0 0 1 0-1.202M19.217 13.549a4.964 4.964 0 0 0-4.964-4.964v1.2a3.764 3.764 0 1 1 0 7.528v1.2a4.964 4.964 0 0 0 4.964-4.964M12.709 17.4H8.632v1.2h4.077z"})),um=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m15.872 5.488 3.096 3.096a.85.85 0 0 1 0 1.202l-3.097 3.096-.848-.848 2.249-2.249H11.34v-1.2h5.932l-2.249-2.248zm-11.09 8.06a4.964 4.964 0 0 1 4.963-4.963v1.2a3.764 3.764 0 1 0 0 7.528v1.2a4.964 4.964 0 0 1-4.964-4.964m10.636 3.765H11.34v1.2h4.078z",clipRule:"evenodd"})),hm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.513 8.126 15.417 5.03a.85.85 0 0 0-1.202 0l-3.097 3.096.849.849 2.249-2.249v5.931h1.2v-5.93l2.248 2.248zm-8.06 11.09a4.964 4.964 0 0 0 4.963-4.963h-1.2a3.764 3.764 0 1 1-7.528 0h-1.2a4.964 4.964 0 0 0 4.964 4.964M6.687 8.582v4.076h-1.2V8.581z",clipRule:"evenodd"})),gm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21.375 12a9.375 9.375 0 1 1-18.75 0 9.375 9.375 0 1 1 18.75 0M12.6 9.448l2.732 2.732.848-.848-3.58-3.58a.85.85 0 0 0-1.201 0l-3.58 3.58.848.849L11.4 9.448V16h1.2z",clipRule:"evenodd"})),vm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M17.357 5.488H6.338a.85.85 0 0 0-.85.85v11.02h1.2V7.537l10.976 10.977.848-.848L7.538 6.688h9.819z",clipRule:"evenodd"})),mm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.514 17.357V6.338a.85.85 0 0 0-.85-.85H6.644v1.2h9.821L5.488 17.664l.849.848L17.314 7.537v9.82z",clipRule:"evenodd"})),pm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20.392 11.306 12.6 3.515a.85.85 0 0 0-1.202 0l-7.793 7.792.849.849L11.4 5.21l-.002 15.523h1.2L12.6 5.211l6.943 6.944z",clipRule:"evenodd"})),fm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.398 4.25c0-.47.381-.85.85-.85h13.5c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85h-13.5a.85.85 0 0 1-.85-.85zM9.198 9a.9.9 0 1 1 1.8 0 .9.9 0 0 1-1.8 0m.9-2.1a2.1 2.1 0 1 0 0 4.2 2.1 2.1 0 0 0 0-4.2m5.9 7.2h-8v-1.2h8zm-8 3h8v-1.2h-8z",clipRule:"evenodd"})),wm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.023 12c0-5.509 4.466-9.975 9.975-9.975 5.51 0 9.975 4.466 9.975 9.975 0 5.51-4.465 9.975-9.975 9.975S2.023 17.51 2.023 12m2.257 0a7.719 7.719 0 1 1 14.15 4.27c-1.076-.572-1.832-1.76-1.832-3.155V12a4.6 4.6 0 1 0-.919 2.76 4.68 4.68 0 0 0 2 2.465A7.719 7.719 0 0 1 4.28 12m11.118 0a3.4 3.4 0 1 1-6.8 0 3.4 3.4 0 0 1 6.8 0m-3.4-8.774a8.774 8.774 0 1 0 0 17.549 8.774 8.774 0 0 0 0-17.549",clipRule:"evenodd"})),Em=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M14.082 5.413a2.427 2.427 0 1 1 3.433 3.433l.849.849a3.628 3.628 0 0 0-5.13-5.13zm-5.016 9.299a.914.914 0 0 0 1.276 1.308l6.043-6.043.848.848-6.026 6.027-.026.025-.099.1-.005-.006a2.11 2.11 0 0 1-1.777.46 2.113 2.113 0 0 1-1.202-3.439l-.005-.005.125-.124 6.026-6.027.849.849zm-2.996-.863c.2-.48.49-.915.855-1.279l-.849-.849a5.143 5.143 0 0 0 7.271 7.272l-.848-.849a3.942 3.942 0 0 1-6.429-4.295m1.14-3.261 4.893-4.893.848.848-4.893 4.894zm11.316 1.53-4.893 4.893.848.848 4.893-4.893z",clipRule:"evenodd"})),ym=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.45 8.874a5.55 5.55 0 1 1 11.1 0 5.55 5.55 0 0 1-11.1 0m9.85 5.204a6.72 6.72 0 0 1-4.3 1.546 6.72 6.72 0 0 1-4.302-1.548v5.747c0 .7.8 1.1 1.36.68l2.94-2.205 2.941 2.205a.85.85 0 0 0 1.36-.68z",clipRule:"evenodd"})),xm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.92 12.43c.623-.867.004-2.076-1.064-2.076h-1.213V7.9c0-.427-.184-.77-.456-.999h5.561c.47 0 .85.38.85.85v8.5c0 .47-.38.85-.85.85h-6.232q.117-.1.216-.237zM8.819 17.1h-5.57a.85.85 0 0 1-.85-.85v-8.5c0-.47.38-.85.85-.85h6.23a1.4 1.4 0 0 0-.21.234L6.08 11.567c-.623.867-.004 2.076 1.064 2.076h1.214v2.455c0 .43.186.774.46 1.002m1.877-5.806c.165.167.388.26.62.26h1.54a.11.11 0 0 1 .09.175l-.09.125-3.098 4.308a.11.11 0 0 1-.2-.064V13.33a.9.9 0 0 0-.254-.628.87.87 0 0 0-.62-.26h-1.54a.11.11 0 0 1-.09-.175l3.19-4.433a.11.11 0 0 1 .199.064v2.767a.9.9 0 0 0 .253.628m7.902-1.044c0-.469.38-.85.85-.85h1.3c.47 0 .85.381.85.85v3.5c0 .47-.38.85-.85.85h-1.3a.85.85 0 0 1-.85-.85z",clipRule:"evenodd"})),Cm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.248 6.9a.85.85 0 0 0-.85.85v8.5c0 .47.381.85.85.85h13.5c.47 0 .85-.38.85-.85v-8.5a.85.85 0 0 0-.85-.85zM19.448 9.4a.85.85 0 0 0-.85.85v3.5c0 .47.38.85.85.85h1.3c.47 0 .85-.38.85-.85v-3.5a.85.85 0 0 0-.85-.85z",clipRule:"evenodd"})),bm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M7.788 7.231a2.844 2.844 0 1 0 0 5.688 2.844 2.844 0 0 0 0-5.688"}),l.createElement("path",{fill:"currentColor",d:"M2.547 5.65h1.2v8.313h8.1V7.231h6.759c1.57 0 2.842 1.27 2.844 2.84v8.28h-1.2v-3.188H3.747v3.188h-1.2z"})),Rm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"m3.09 3.938.848-.848 16.97 16.97-.848.849zM6.044 9.155c-.42.88-.644 1.85-.644 2.845v4A1.4 1.4 0 0 1 4 17.4v1.2h11.488z"}),l.createElement("path",{fill:"currentColor",d:"M19.448 18.6h-1.697L6.928 7.775a6.6 6.6 0 0 1 .848-.848zM18.6 15.489v-3.49a6.6 6.6 0 0 0-9.445-5.955zM10 19.4h4a1.997 1.997 0 0 1-2 2 1.997 1.997 0 0 1-2-2M13.414 3.185A2 2 0 0 1 14 4.6h-4a2 2 0 0 1 3.414-1.415"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10 4.6a2 2 0 0 1 4 0z",clipRule:"evenodd"})),Sm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M13.414 3.185A2 2 0 0 1 14 4.6h-4a2 2 0 0 1 3.414-1.415"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10 4.6a2 2 0 0 1 4 0z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M12 21.4a2 2 0 0 0 2-2h-4a2 2 0 0 0 2 2"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10 19.4h4a1.997 1.997 0 0 1-2 2 1.997 1.997 0 0 1-2-2M5.4 12a6.6 6.6 0 0 1 13.2 0v4a1.4 1.4 0 0 0 1.4 1.4v1.2H4v-1.2A1.4 1.4 0 0 0 5.4 16z",clipRule:"evenodd"})),Im=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.437 4.826 4.048.002a.85.85 0 0 1 .832.677l.866 4.177v.003l.411 1.937-1.173.25-.292-1.375-10.315 1.79a.85.85 0 0 1-.995-.838V9.237h-1.38v-1.2h3.96v1.2h-1.38v1.797l9.864-1.711-.683-3.294-3.764-.002z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M5.418 13.135a3.02 3.02 0 1 0 0 6.04 3.02 3.02 0 0 0 0-6.04M18.248 12.474a3.35 3.35 0 1 0 0 6.7 3.35 3.35 0 0 0 0-6.7"})),Tm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M6.53 21.45a2 2 0 0 0 1.985-1.75c.017-.137-.096-.25-.234-.25h-3.5c-.138 0-.252.113-.235.25a2 2 0 0 0 1.985 1.75"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.14 20.64a2 2 0 0 0 .375-.94c.017-.137-.096-.25-.234-.25h-3.5c-.138 0-.252.113-.235.25a2 2 0 0 0 .385.95c.364.487.945.8 1.6.8a2 2 0 0 0 1.609-.81",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M16.53 21.45a2 2 0 0 0 1.985-1.75c.017-.137-.096-.25-.234-.25h-3.5c-.138 0-.252.113-.235.25a2 2 0 0 0 1.985 1.75"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.14 20.64q.077-.105.14-.22c.122-.218.203-.461.235-.72.017-.137-.096-.25-.234-.25h-3.5c-.138 0-.252.113-.235.25a2 2 0 0 0 .376.94l.009.01c.365.487.945.8 1.6.8.654 0 1.235-.313 1.6-.8z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M15.03 2.55h-3.25v1.2h2.9v9.3h-3.078l-1.748-2.62a.85.85 0 0 0-.707-.38h-4.65a.85.85 0 0 0-.841.73l-.929 6.5a.85.85 0 0 0 .842.97h16.374a.85.85 0 0 0 .813-1.098l-2.475-8.09V5.4a.85.85 0 0 0-.85-.85h-1.55V3.4a.85.85 0 0 0-.85-.85M20.695 8.565a2 2 0 0 1-1.165.57c-.137.017-.25-.096-.25-.234V5.4c0-.138.113-.252.25-.235a2 2 0 0 1 1.165 3.399"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20.469 5.542a2 2 0 0 0-.939-.376c-.137-.017-.25.097-.25.235v3.5c0 .138.113.251.25.234a2 2 0 0 0 .939-.375l.012-.01a2 2 0 0 0 .8-1.6 2 2 0 0 0-.8-1.6z",clipRule:"evenodd"})),Mm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.599 5.449v5.103L15.15 8zm-1.2 5.103V4.604c0-.758.915-1.137 1.45-.601l3.397 3.396a.85.85 0 0 1 0 1.202l-3.399 3.4 3.399 3.398a.85.85 0 0 1 0 1.202l-3.396 3.397c-.536.535-1.451.156-1.451-.601v-5.948l-2.976 2.975-.849-.848L11.15 12 7.574 8.424l.849-.848zm1.2 2.897v5.103L15.15 16z",clipRule:"evenodd"})),zm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.898 3.4h-4v17.2h6v-1.2h-4.8v-6.8h2.8v-1.2h-2.8V4.6h2.8zm4.853 7.853A4.6 4.6 0 0 0 11.5 3.401v1.2a3.4 3.4 0 0 1 .002 6.8H11.5v1.2h2a3.4 3.4 0 1 1 0 6.8v1.2a4.6 4.6 0 0 0 .978-9.095q.142-.12.274-.253",clipRule:"evenodd"})),Om=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20.748 18.4h-6.75a1.4 1.4 0 0 0-1.4 1.38v.012V4.608a2.6 2.6 0 0 1 1.4-.409h6.75c.47 0 .85.38.85.85v12.5c0 .47-.38.85-.85.85m-9.35-13.792a2.6 2.6 0 0 0-1.4-.409h-6.75a.85.85 0 0 0-.85.85v12.5c0 .47.381.85.85.85h6.75a1.4 1.4 0 0 1 1.4 1.38zm0 15.178v.013z",clipRule:"evenodd"})),Vm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.398 4.25c0-.47.381-.85.85-.85h13.5c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85H6.998a2.6 2.6 0 0 1-2.6-2.6zm14 15.15h-11.4a1.4 1.4 0 1 1 0-2.8h11.4z",clipRule:"evenodd"})),Fm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.217 2.225a.85.85 0 0 0-.85.85v17.98a.85.85 0 0 0 1.381.663l6.25-5 6.25 5a.85.85 0 0 0 1.382-.663V3.075a.85.85 0 0 0-.85-.85z",clipRule:"evenodd"})),Pm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.898 9.65c0-.47.381-.85.85-.85h16.5c.47 0 .85.38.85.85v10.5c0 .47-.38.85-.85.85h-16.5a.85.85 0 0 1-.85-.85zm4 1.95v6.6h1.2v-6.6zm9 0v6.6h1.2v-6.6zM8.746 3.947A4.6 4.6 0 0 1 16.599 7.2h-1.2a3.4 3.4 0 1 0-6.8 0h-1.2a4.6 4.6 0 0 1 1.347-3.253",clipRule:"evenodd"})),km=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.062 2.937a2.671 2.671 0 0 1 4.56 1.889v.471H9.28v-.471c0-.709.281-1.388.782-1.89M6.26 9.857a6.306 6.306 0 0 1 11.478 0 2.4 2.4 0 0 0 2.37-2.4h1.2a3.6 3.6 0 0 1-3.169 3.574q.141.6.162 1.237h-1.794v3.6H18.3q-.02.63-.158 1.227a3.6 3.6 0 0 1 3.164 3.573h-1.2a2.4 2.4 0 0 0-2.361-2.4 6.306 6.306 0 0 1-11.493 0 2.4 2.4 0 0 0-2.349 2.4h-1.2a3.6 3.6 0 0 1 3.152-3.572 6.3 6.3 0 0 1-.159-1.228h1.795v-3.6H5.696q.022-.639.163-1.239a3.6 3.6 0 0 1-3.156-3.572h1.2a2.4 2.4 0 0 0 2.356 2.4m12.044 4.811h-.597v-1.2h3v1.2zm-15.012-1.2h3v1.2h-3zm9.32 6.05v-4.135h-1.2v4.135z",clipRule:"evenodd"})),Bm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20.057 5.774a2.73 2.73 0 0 0-2.731-2.731H6.67a2.73 2.73 0 0 0-2.73 2.727v1.6H2.92a.85.85 0 0 0-.85.85v3.16h1.2V8.57h.67v11.538c0 .47.38.85.85.85h2.056c.47 0 .85-.38.85-.85V18.56h4.301V18v.56H16.3v1.547c0 .469.38.85.85.85h2.057c.47 0 .85-.381.85-.85V8.57h.67v2.81h1.2V8.22a.85.85 0 0 0-.85-.85h-1.02V5.774M6.458 12.168h11.08v-1.2H6.457zm1.702 1.23a1.365 1.365 0 1 0 0 2.731 1.365 1.365 0 0 0 0-2.73m7.78 0a1.365 1.365 0 1 0 0 2.731 1.365 1.365 0 0 0 0-2.73",clipRule:"evenodd"})),Am=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.85 2h.7C9.351 2 10 2.65 10 3.45V4h4v-.55c0-.8.65-1.45 1.45-1.45h.7c.801 0 1.45.65 1.45 1.45V4h2.55c.47 0 .85.38.85.85v16.3c0 .47-.38.85-.85.85H3.85a.85.85 0 0 1-.85-.85V4.85c0-.47.38-.85.85-.85H6.4v-.55c0-.8.65-1.45 1.45-1.45M5.4 11.2h13.2V10H5.4z",clipRule:"evenodd"})),Lm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.788 6.9H2.85a.85.85 0 0 0-.85.85v12.5c0 .47.38.85.85.85h15.138l-3.979-3.979a4.075 4.075 0 0 1-5.555-5.555zm11.434 9.171 4.839 4.839.848-.849-5.082-5.082c-.146.397-.351.764-.605 1.092M10.596 9.75c-.396.145-.764.35-1.092.605L6.051 6.9H7.44q.017-.133.042-.265zm5.425 3.162a4.08 4.08 0 0 0-3.356-3.357L8.128 5.018a4.6 4.6 0 0 1 7.125-.77A4.6 4.6 0 0 1 16.561 6.9h4.589c.47 0 .85.38.85.85v11.14z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"m3.09 3.94.848-.85L20.91 20.063l-.848.848z"})),_m=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.748 4.248A4.6 4.6 0 0 1 16.56 6.9h4.589c.47 0 .85.38.85.85v12.5c0 .47-.38.85-.85.85H2.85a.85.85 0 0 1-.85-.85V7.75c0-.47.38-.85.85-.85h4.59a4.6 4.6 0 0 1 1.308-2.652m7.327 9.328a4.075 4.075 0 1 1-8.15 0 4.075 4.075 0 0 1 8.15 0",clipRule:"evenodd"})),Nm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.398 17.125v-5.962a.9.9 0 0 1 .038-.25l1.935-6.288a.85.85 0 0 1 .812-.6h11.63a.85.85 0 0 1 .813.6l1.935 6.288a.9.9 0 0 1 .037.25v7.962c0 .47-.38.85-.85.85h-1.9a.85.85 0 0 1-.85-.85v-1.4h-10v1.4c0 .47-.38.85-.85.85h-1.9a.85.85 0 0 1-.85-.85v-2m2.8-3a1.3 1.3 0 1 1 2.6 0 1.3 1.3 0 0 1-2.6 0m10.3-1.3a1.3 1.3 0 1 0 0 2.6 1.3 1.3 0 0 0 0-2.6m-10.7-1.1h12.4v-1.2h-12.4z",clipRule:"evenodd"})),$m=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.2 15.106a3.693 3.693 0 0 1 3.693 3.693h-1.2a2.494 2.494 0 0 0-2.494-2.493z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.2 12.27a6.53 6.53 0 0 1 6.528 6.529h-1.2a5.33 5.33 0 0 0-5.329-5.33z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M5.85 7.6a.25.25 0 0 0-.25.25v3.601a7.73 7.73 0 0 1 4.947 4.948h7.602a.25.25 0 0 0 .25-.25v-8.3a.25.25 0 0 0-.25-.25z"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.2 6.004c0-.444.36-.805.805-.805h15.989c.445 0 .805.36.805.805v11.99c0 .445-.36.805-.805.805H11.33v-1.2h8.269V6.4h-15.2v3.97H3.2z",clipRule:"evenodd"})),Hm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.307 4.583A9.35 9.35 0 1 1 7.525 20.21l-3.46.707a.833.833 0 0 1-.984-.984l.707-3.46A9.35 9.35 0 0 1 6.307 4.583",clipRule:"evenodd"})),Dm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.748 4.15a.85.85 0 0 0-.85.85v13.846a.85.85 0 0 0 1.23.76L8.64 17.35h11.608c.47 0 .85-.38.85-.85V5a.85.85 0 0 0-.85-.85z",clipRule:"evenodd"})),jm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.023 12c0-5.509 4.466-9.975 9.975-9.975 5.51 0 9.975 4.466 9.975 9.975 0 5.51-4.465 9.975-9.975 9.975S2.023 17.51 2.023 12m8.872 3.747 6.894-6.894-.848-.849-6.647 6.647-3.238-3.237-.848.848 3.485 3.485a.85.85 0 0 0 1.202 0",clipRule:"evenodd"})),Wm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.754 2.077a.85.85 0 0 1 .489 0l7.75 2.325a.85.85 0 0 1 .605.814V13.4a8.6 8.6 0 1 1-17.2 0V5.216a.85.85 0 0 1 .606-.814zm-4.68 10.205 2.894 2.894a.85.85 0 0 0 1.202 0l5.753-5.753-.849-.848-5.505 5.505-2.646-2.646z",clipRule:"evenodd"})),Gm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.559 3.375c0-.452.366-.818.818-.818h17.25c.451 0 .818.366.818.818v17.25a.82.82 0 0 1-.818.818H3.377a.82.82 0 0 1-.818-.818zm8.34 12.372 6.894-6.895-.849-.848-6.647 6.647-3.238-3.238-.848.848 3.485 3.486a.85.85 0 0 0 1.202 0",clipRule:"evenodd"})),Um=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m9.437 16.278-4.035-4.034.849-.849 3.787 3.787 7.707-7.707.849.848-7.955 7.955a.85.85 0 0 1-1.202 0",clipRule:"evenodd"})),Km=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.397 11.248 7.574 7.425l.849-.849 3.576 3.576 3.575-3.576.849.849-3.823 3.823a.85.85 0 0 1-1.203 0M11.397 17.248l-3.823-3.823.849-.849 3.576 3.576 3.575-3.576.849.849-3.823 3.823a.85.85 0 0 1-1.203 0",clipRule:"evenodd"})),qm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.753 11.4 3.823-3.824.849.849L13.849 12l3.576 3.576-.849.849-3.823-3.824a.85.85 0 0 1 0-1.202M6.753 11.4l3.823-3.824.849.849L7.849 12l3.576 3.576-.849.849L6.753 12.6a.85.85 0 0 1 0-1.202",clipRule:"evenodd"})),Ym=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.246 12.602-3.823 3.823-.849-.849L10.15 12 6.574 8.425l.849-.849 3.823 3.823a.85.85 0 0 1 0 1.203M17.246 12.602l-3.823 3.823-.849-.849L16.15 12l-3.576-3.575.849-.849 3.823 3.823a.85.85 0 0 1 0 1.203",clipRule:"evenodd"})),Xm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.6 12.753 3.823 3.823-.849.849L12 13.849l-3.576 3.576-.849-.849 3.823-3.823a.85.85 0 0 1 1.203 0M12.6 6.753l3.823 3.823-.849.849L12 7.849l-3.576 3.576-.849-.849 3.823-3.823a.85.85 0 0 1 1.203 0",clipRule:"evenodd"})),Zm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.398 15.075-5.48-5.48.848-.848L12 13.979l5.233-5.232.848.848-5.48 5.48a.85.85 0 0 1-1.202 0",clipRule:"evenodd"})),Jm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m5.632 11.4 3.823-3.824.848.849L6.728 12l3.576 3.576-.849.849L5.632 12.6a.85.85 0 0 1 0-1.202M18.369 12.602l-3.823 3.823-.849-.849L17.273 12l-3.576-3.575.849-.849 3.823 3.823a.85.85 0 0 1 0 1.203",clipRule:"evenodd"})),Qm=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m8.925 11.398 5.48-5.48.848.848L10.021 12l5.232 5.233-.848.848-5.48-5.48a.85.85 0 0 1 0-1.202",clipRule:"evenodd"})),e6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m15.075 12.602-5.48 5.48-.848-.849 5.232-5.232-5.232-5.233.848-.848 5.48 5.48a.85.85 0 0 1 0 1.202",clipRule:"evenodd"})),t6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.6 5.632 3.823 3.823-.849.848L12 6.728l-3.576 3.576-.849-.849 3.824-3.823a.85.85 0 0 1 1.202 0M11.397 18.369l-3.823-3.823.849-.849 3.576 3.576 3.575-3.576.849.849-3.823 3.823a.85.85 0 0 1-1.203 0",clipRule:"evenodd"})),n6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.602 8.925 5.48 5.48-.849.848-5.232-5.232-5.233 5.232-.848-.848 5.48-5.48a.85.85 0 0 1 1.202 0",clipRule:"evenodd"})),o6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.998 2.025C6.49 2.025 2.023 6.491 2.023 12c0 5.51 4.466 9.975 9.975 9.975 5.51 0 9.975-4.466 9.975-9.975s-4.465-9.975-9.975-9.975",clipRule:"evenodd"})),l6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M4.398 4.85c0-.469.381-.85.85-.85h2.75v1.2h8V4h2.75c.47 0 .85.381.85.85v15.5c0 .47-.38.85-.85.85h-13.5a.85.85 0 0 1-.85-.85z"}),l.createElement("path",{fill:"currentColor",d:"M7.999 2.8h8V4h-8z"})),i6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12 21.375a9.375 9.375 0 1 0 0-18.75 9.375 9.375 0 1 0 0 18.75M11.4 6v5.896c0 .226.09.442.249.601l3.927 3.927.848-.848L12.6 11.75V6z",clipRule:"evenodd"})),r6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21.375 12a9.375 9.375 0 1 1-18.75 0 9.375 9.375 0 1 1 18.75 0m-10.223 0L8.02 8.869l.849-.849L12 11.152l3.132-3.132.848.849L12.849 12l3.131 3.131-.848.849L12 12.848 8.87 15.98l-.849-.848z",clipRule:"evenodd"})),a6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.104 2a.85.85 0 0 0-.601.249L2.249 7.503a.85.85 0 0 0-.249.6v7.794c0 .225.09.441.249.6l5.254 5.254a.85.85 0 0 0 .6.249h7.794a.85.85 0 0 0 .6-.249l5.254-5.254a.85.85 0 0 0 .25-.6V8.104a.85.85 0 0 0-.25-.601l-5.254-5.254a.85.85 0 0 0-.6-.249zm3.048 10L8.02 8.869l.849-.849L12 11.152l3.132-3.132.848.849L12.849 12l3.131 3.131-.848.849L12 12.848 8.87 15.98l-.849-.848z",clipRule:"evenodd"})),s6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.377 2.557a.82.82 0 0 0-.818.818v17.25c0 .451.366.818.818.818h17.25a.82.82 0 0 0 .818-.818V3.375a.82.82 0 0 0-.818-.818zM11.153 12 8.022 8.868l.848-.848 3.132 3.131 3.131-3.131.849.848L12.85 12l3.132 3.131-.849.849-3.131-3.132L8.87 15.98l-.848-.849z",clipRule:"evenodd"})),c6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12 12.848 5.939 5.94.848-.85L12.847 12l5.94-5.94-.848-.848-5.94 5.94-5.94-5.94-.848.848L11.15 12l-5.94 5.94.849.848z",clipRule:"evenodd"})),d6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.809 8.519q-.003.09-.003.181v1.904A5.6 5.6 0 0 0 7.63 21.5h8.75c.716 0 1.4-.134 2.03-.379l-6.298-6.298a4.4 4.4 0 0 0-.133 1.077h-1.2c0-.716.135-1.4.38-2.03zm7.03 4.768 7.01 7.01q.474-.374.858-.84l-7.03-7.03a4.4 4.4 0 0 0-.837.86m-.015-1.713a5.6 5.6 0 0 0-.84.857L6.166 6.613q.217-.606.55-1.147zm2.354.092a4.4 4.4 0 0 1 2.628.07l.39-1.135c-.57-.195-1.181-.301-1.816-.301-.759 0-1.483.151-2.143.425l-6.51-6.51A6.2 6.2 0 0 1 18.206 8.7v1.904a5.6 5.6 0 0 1 3.349 7.439z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"m3.091 3.54.849-.85 16.97 16.971-.848.849z"})),u6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.806 8.7a6.2 6.2 0 1 1 12.4 0v1.905A5.602 5.602 0 0 1 16.381 21.5H7.63a5.6 5.6 0 0 1-1.825-10.896zm6.174 7.2a4.4 4.4 0 0 1 5.826-4.164l.39-1.135a5.6 5.6 0 0 0-7.415 5.3z",clipRule:"evenodd"})),h6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M18.534 14.474a2 2 0 0 0 0-3.97c-.137-.016-.25.097-.25.236v3.5c0 .138.113.251.25.234"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M19.473 10.88a2 2 0 0 0-.939-.375c-.137-.017-.25.096-.25.234v3.5c0 .139.113.252.25.235a2 2 0 0 0 .95-.384 1.997 1.997 0 0 0 0-3.2z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M3.963 10.494a.85.85 0 0 0-.85.85v2.044a6.914 6.914 0 0 0 13.829 0v-2.044a.85.85 0 0 0-.85-.85z"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.79 4.553a2.6 2.6 0 0 0 1.838 4.438v-1.2a1.4 1.4 0 0 1 0-2.8v-1.2a2.6 2.6 0 0 0-1.839.762M5.589 4.553A2.6 2.6 0 0 0 7.427 8.99v-1.2a1.4 1.4 0 1 1 0-2.8v-1.2a2.6 2.6 0 0 0-1.838.762M9.189 4.553a2.6 2.6 0 0 0 1.838 4.438v-1.2a1.4 1.4 0 0 1 0-2.8v-1.2a2.6 2.6 0 0 0-1.838.762",clipRule:"evenodd"})),g6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.844 10.692 5.211 6.06l.848-.85 4.634 4.633V5.98h1.2v5.062c0 .47-.381.85-.85.85H5.98v-1.2zm8.175 1.415h-5.062a.85.85 0 0 0-.85.85v5.063h1.2v-3.865l4.632 4.633.85-.848-4.633-4.633h3.863z",clipRule:"evenodd"})),v6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M14.156 10.693h3.863v1.2h-5.062a.85.85 0 0 1-.85-.85V5.98h1.2v3.864l4.632-4.633.849.848zm-2.264 7.326v-5.062a.85.85 0 0 0-.85-.85H5.98v1.2h3.865l-4.633 4.632.848.85 4.633-4.633v3.863z",clipRule:"evenodd"})),m6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m16.333 7.82-3.58 3.58a.85.85 0 0 0 0 1.202l3.58 3.58.849-.848-2.733-2.733H21v-1.2h-6.552l2.732-2.732zM9.552 11.4 6.82 8.67l.848-.849 3.58 3.58a.85.85 0 0 1 0 1.202l-3.58 3.58-.849-.848L9.552 12.6H3v-1.2z",clipRule:"evenodd"})),p6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.812 5.941 7.354 11.4a.85.85 0 0 0 0 1.202l5.458 5.457.849-.848-4.61-4.61h10.647v-1.2H9.049l4.611-4.61zM4.3 6.5h1.2v11H4.3z",clipRule:"evenodd"})),f6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.187 5.941 5.458 5.458a.85.85 0 0 1 0 1.202l-5.459 5.457-.848-.848 4.61-4.61H4.301v-1.2h10.648l-4.61-4.61zm8.51.559h-1.2v11h1.2z",clipRule:"evenodd"})),w6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.602 9.552 2.732-2.732.848.848-3.58 3.58a.85.85 0 0 1-1.202 0l-3.58-3.58.849-.849 2.733 2.733V3h1.2zm3.58 6.78-3.58-3.58a.85.85 0 0 0-1.202 0l-3.58 3.581.849.849 2.733-2.733V21h1.2v-6.552l2.732 2.732z",clipRule:"evenodd"})),E6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.398 2.47a3.726 3.726 0 0 0 0 7.31V8.543a2.526 2.526 0 0 1 0-4.839zm1.2 6.18h2.05V6.125a2.526 2.526 0 0 0-2.05-2.48V2.43a3.726 3.726 0 0 1 3.25 3.695V8.65h4.3V6h.002a3.726 3.726 0 0 1 3.248-3.57v1.214a2.526 2.526 0 0 0-2.05 2.48V8.65h2.05v1.2h-2.05v4.3h2.05v1.2h-2.05v2.525c0 1.232.883 2.258 2.05 2.48v1.215a3.726 3.726 0 0 1-3.25-3.695V15.35h-4.3V18h-.002a3.726 3.726 0 0 1-3.248 3.57v-1.215a2.526 2.526 0 0 0 2.05-2.48V15.35h-2.05v-1.2h2.05v-4.3h-2.05zm-1.2 5.57a3.726 3.726 0 0 0 0 7.31v-1.236a2.526 2.526 0 0 1 0-4.838zm15-8.095a2.53 2.53 0 0 1-1.8 2.42v1.234a3.726 3.726 0 0 0 0-7.309v1.235a2.53 2.53 0 0 1 1.8 2.42m-1.8 9.33V14.22a3.726 3.726 0 0 1 0 7.31v-1.236a2.526 2.526 0 0 0 0-4.838m-4.45-5.605h-4.3v4.3h4.3z",clipRule:"evenodd"})),y6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10m-7.226-3.787c.708-.294 1.413.426 1.104 1.128l-1.869 4.237a.85.85 0 0 1-.442.438l-4.29 1.842c-.706.303-1.42-.41-1.117-1.116L10 10.454a.85.85 0 0 1 .456-.45z",clipRule:"evenodd"})),x6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m17.372 5.337-.688-.688a1.9 1.9 0 0 1 2.686 2.686l-.69-.69-.918.919.69.69-6.984 6.983a.68.68 0 0 1-.465.2l-1.768.048a.683.683 0 0 1-.701-.701l.048-1.768a.68.68 0 0 1 .2-.465l6.983-6.984.689.689zM15.236 4.4H5.248a.85.85 0 0 0-.85.85v13.5c0 .47.381.85.85.85h13.5c.47 0 .85-.38.85-.85V8.804l-7.281 7.282c-.341.34-.8.538-1.281.55l-1.768.049a1.883 1.883 0 0 1-1.934-1.934l.048-1.768c.013-.482.21-.94.551-1.28z",clipRule:"evenodd"})),C6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m13.63 11.4 3.823-3.824.849.849L14.726 12l3.576 3.576-.849.849L13.63 12.6a.85.85 0 0 1 0-1.202M10.125 12.602l-3.823 3.823-.849-.849L9.03 12 5.453 8.425l.849-.849 3.823 3.823a.85.85 0 0 1 0 1.203",clipRule:"evenodd"})),b6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.6 13.632 3.823 3.823-.849.849L12 14.728l-3.576 3.576-.849-.849 3.824-3.823a.85.85 0 0 1 1.202 0M11.397 10.127 7.574 6.304l.849-.849 3.576 3.576 3.575-3.576.849.849-3.823 3.823a.85.85 0 0 1-1.203 0",clipRule:"evenodd"})),R6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M4.248 6.6a.85.85 0 0 0-.85.85v12.3c0 .47.381.85.85.85h12.3c.47 0 .85-.38.85-.85V7.45a.85.85 0 0 0-.85-.85z"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.6 4.25c0-.47.38-.85.85-.85h12.298c.47 0 .85.38.85.85v12.3c0 .47-.38.85-.85.85h-1.15v-1.2h.8V4.6H7.8v.8H6.6z",clipRule:"evenodd"})),S6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M19.217 11.15V4.788h-1.2v6.376a3.764 3.764 0 0 1-3.764 3.752H6.726l2.249-2.25-.849-.848-3.096 3.096a.85.85 0 0 0 0 1.203l3.096 3.095.849-.848-2.249-2.248h7.54a4.963 4.963 0 0 0 4.95-4.964",clipRule:"evenodd"})),I6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M4.781 11.15V4.788h1.2v6.376a3.764 3.764 0 0 0 3.764 3.752h7.527l-2.249-2.25.849-.848 3.096 3.096a.85.85 0 0 1 0 1.203l-3.096 3.095-.848-.848 2.248-2.248H9.734a4.963 4.963 0 0 1-4.953-4.964"})),T6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.85 4.781h6.364v1.2h-6.376a3.763 3.763 0 0 0-3.752 3.762v7.529l2.249-2.249.848.849-3.096 3.096a.85.85 0 0 1-1.202 0l-3.096-3.096.849-.848 2.248 2.248v-7.53a4.964 4.964 0 0 1 4.964-4.96",clipRule:"evenodd"})),M6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.79 8.126 7.884 5.03a.85.85 0 0 1 1.202 0l3.096 3.096-.848.849-2.25-2.249v7.527a3.764 3.764 0 0 0 3.753 3.764h6.375v1.2H12.85a4.964 4.964 0 0 1-4.964-4.956V6.726L5.638 8.975z",clipRule:"evenodd"})),z6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.153 4.781H4.789v1.2h6.376a3.763 3.763 0 0 1 3.752 3.761v7.53l-2.25-2.249-.848.849 3.096 3.096a.85.85 0 0 0 1.203 0l3.095-3.096-.848-.848-2.248 2.248v-7.53a4.964 4.964 0 0 0-4.964-4.96",clipRule:"evenodd"})),O6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M19.213 8.126 16.117 5.03a.85.85 0 0 0-1.202 0L11.82 8.126l.849.849 2.249-2.249v7.527a3.763 3.763 0 0 1-3.752 3.764H4.789v1.2h6.364a4.964 4.964 0 0 0 4.964-4.955V6.726l2.248 2.249z",clipRule:"evenodd"})),V6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.126 4.787 5.03 7.883a.85.85 0 0 0 0 1.202l3.096 3.096.849-.848-2.249-2.25h7.527a3.763 3.763 0 0 1 3.764 3.753v6.375h1.2v-6.363a4.964 4.964 0 0 0-4.958-4.964H6.726l2.249-2.248z",clipRule:"evenodd"})),F6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m15.872 4.787 3.096 3.096a.85.85 0 0 1 0 1.202l-3.097 3.096-.848-.848 2.249-2.25H9.745a3.764 3.764 0 0 0-3.764 3.753v6.375h-1.2v-6.363a4.964 4.964 0 0 1 4.946-4.964h7.545l-2.249-2.248z",clipRule:"evenodd"})),P6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.75 4.432H14.6V2h-1.2v2.432h-2.8V2H9.4v2.432H5.25a.82.82 0 0 0-.818.818V9.4H2v1.2h2.432v2.8H2v1.2h2.432v4.15c0 .452.366.818.818.818H9.4V22h1.2v-2.432h2.8V22h1.2v-2.432h4.15a.82.82 0 0 0 .818-.818V14.6H22v-1.2h-2.432v-2.8H22V9.4h-2.432V5.25a.82.82 0 0 0-.818-.818M9.775 9.573a.2.2 0 0 0-.202.202v4.45c0 .111.09.202.202.202h4.45c.111 0 .202-.09.202-.202v-4.45a.2.2 0 0 0-.202-.202z",clipRule:"evenodd"})),k6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.023 5.454c0-.47.381-.85.85-.85h18.25c.47 0 .85.38.85.85v13.093c0 .47-.38.85-.85.85H2.873a.85.85 0 0 1-.85-.85zM18.198 15a.8.8 0 0 1-1.6 0h-1.2a2 2 0 1 0 4 0zm1.37-7.2V9H4.429V7.8zm0 2.4H4.429v1.2h15.14z",clipRule:"evenodd"})),B6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.4 15.75V8.6H4V7.4h3.4V4h1.2v3.4h7.15c.47 0 .85.38.85.85v7.15H20v1.2h-3.4V20h-1.2v-3.4H8.25a.85.85 0 0 1-.85-.85",clipRule:"evenodd"})),A6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.548 2.686a.85.85 0 0 1 .9 0l7.557 4.722-.315.19-7.692 4.806-7.66-4.787-.309-.232zm-8.15 5.726v7.561a.85.85 0 0 0 .4.721l7.6 4.75v-8L3.68 8.622l-.042-.03zm9.2 13.032 7.6-4.75a.85.85 0 0 0 .4-.72V8.451l-.286.172-7.714 4.82z",clipRule:"evenodd"})),L6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.785 4.716A.819.819 0 0 0 4.729 5.77l4.868 13.038c.259.692 1.23.715 1.52.036l2.058-4.802 3.962 3.962.849-.849-3.962-3.962 4.804-2.059c.678-.29.656-1.259-.034-1.518z",clipRule:"evenodd"})),_6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M18.248 13.687a3.35 3.35 0 1 0 0 6.7 3.35 3.35 0 0 0 0-6.7M5.748 13.687a3.35 3.35 0 1 0 0 6.7 3.35 3.35 0 0 0 0-6.7M16.248 3.613a2.6 2.6 0 1 0 0 5.2 2.6 2.6 0 0 0 0-5.2"}),l.createElement("path",{fill:"currentColor",d:"M13.736 8.666a.6.6 0 0 0-1.016-.384l-4.64 4.5a.6.6 0 0 0 .419 1.031 3.897 3.897 0 0 1 3.896 3.897h1.2a5.1 5.1 0 0 0-3.79-4.928l2.991-2.902a4.1 4.1 0 0 0 4.186 2.613l-.105-1.196a2.9 2.9 0 0 1-3.141-2.63"})),N6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.999 2.9c-2.058 0-3.947.278-5.342.743-.694.23-1.299.52-1.743.87-.437.344-.8.818-.8 1.416v.037q.013.026.048.07c.072.088.201.2.409.324.414.25 1.04.494 1.826.707 1.565.424 3.636.69 5.602.69s4.037-.266 5.602-.69c.786-.213 1.412-.457 1.826-.707.207-.125.337-.236.409-.323a.5.5 0 0 0 .049-.07v-.038c0-.598-.365-1.072-.802-1.417-.443-.35-1.048-.638-1.743-.87C15.946 3.179 14.057 2.9 12 2.9m7.886 4.581c-.531.291-1.214.54-1.97.744-1.68.455-3.858.733-5.916.733s-4.236-.278-5.916-.733c-.756-.205-1.439-.453-1.97-.744v4.557q.014.025.05.07c.071.088.2.199.408.324.414.25 1.04.494 1.826.707 1.565.424 3.636.69 5.602.69s4.037-.266 5.602-.69c.786-.213 1.412-.457 1.826-.707.207-.125.337-.236.409-.324a.4.4 0 0 0 .049-.07zM4.113 18.071v-4.518c.531.29 1.214.539 1.97.744 1.68.455 3.858.732 5.916.732s4.236-.277 5.916-.732c.756-.205 1.439-.453 1.97-.744v4.519c0 .598-.365 1.072-.802 1.416-.443.35-1.048.639-1.743.87-1.394.465-3.283.742-5.341.742s-3.947-.277-5.342-.742c-.694-.231-1.299-.52-1.743-.87-.437-.344-.8-.818-.8-1.416",clipRule:"evenodd"})),$6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.053 5.4a.85.85 0 0 0-.6.25l-5.75 5.75a.85.85 0 0 0 0 1.201l5.75 5.75a.85.85 0 0 0 .6.25H20.7c.469 0 .85-.381.85-.85V6.25a.85.85 0 0 0-.85-.85zm4.048 6.6-2.576-2.575.849-.849 2.576 2.576 2.575-2.576.849.849L14.798 12l2.576 2.575-.849.849-2.575-2.576-2.576 2.576-.849-.849z",clipRule:"evenodd"})),H6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.023 12c0-5.509 4.466-9.975 9.975-9.975 5.51 0 9.975 4.466 9.975 9.975 0 5.51-4.465 9.975-9.975 9.975S2.023 17.51 2.023 12m7.2 0a2.775 2.775 0 1 1 5.55 0 2.775 2.775 0 0 1-5.55 0m2.775-3.975a3.975 3.975 0 1 0 0 7.95 3.975 3.975 0 0 0 0-7.95",clipRule:"evenodd"})),D6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12 3.525a2.85 2.85 0 1 1 0 5.7 2.85 2.85 0 0 1 0-5.7m0 11.25a2.85 2.85 0 1 1 0 5.7 2.85 2.85 0 0 1 0-5.7m9-3.375H3v1.2h18z",clipRule:"evenodd"})),j6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M11.472 3h1.039v18h-1.039z"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.272 5.1H9.75a3.75 3.75 0 0 0 0 7.5h.522v-1.2H9.75a2.55 2.55 0 1 1 0-5.1h.522zm3.439 6.3v1.2h.413c.717 0 1.4.274 1.9.755.5.48.776 1.127.776 1.795a2.5 2.5 0 0 1-.775 1.795c-.5.481-1.184.755-1.901.755h-.413v1.2h.413c1.02 0 2.004-.39 2.732-1.09A3.7 3.7 0 0 0 18 15.15a3.7 3.7 0 0 0-1.144-2.66 3.94 3.94 0 0 0-2.606-1.088V11.4zm-3.439 6.3v1.2H6.6v-1.2zm3.439-11.4V5.1H17.4v1.2z",clipRule:"evenodd"})),W6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.47 19.074 8.919 16.52a.25.25 0 0 0-.354 0l-.495.495a.25.25 0 0 0 0 .353l3.496 3.496c.28.28.735.28 1.016 0l3.496-3.496a.25.25 0 0 0 0-.354l-.495-.495a.25.25 0 0 0-.354 0l-2.557 2.558v-6.304a.25.25 0 0 0-.25-.25h-.7a.25.25 0 0 0-.25.25z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M7.035 7.928a5.004 5.004 0 0 1 10.009 0v1.13a4.533 4.533 0 0 1 1.142 8.918l-.038.01-1.076.138h-.061a1.45 1.45 0 0 0-.086-1.957l-.495-.496a1.45 1.45 0 0 0-2.05 0l-.509.51v-3.407c0-.8-.649-1.45-1.45-1.45h-.7c-.8 0-1.45.649-1.45 1.45v3.403l-.505-.505a1.45 1.45 0 0 0-2.05 0l-.495.495a1.45 1.45 0 0 0-.086 1.957H7l-1.071-.12-.037-.01a4.534 4.534 0 0 1 1.074-8.936h.069z"})),G6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.4 14.55-3.22-3.217-.848.848 4.066 4.066a.85.85 0 0 0 1.202 0l4.066-4.066-.849-.848L12.6 14.55V2h-1.2zM5.793 5.796a8.775 8.775 0 1 0 12.41 0l.848-.849a9.975 9.975 0 1 1-14.107 0z",clipRule:"evenodd"})),U6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m14.863 7.711.848-.848-3.11-3.11a.85.85 0 0 0-1.202 0l-3.11 3.11.848.849 2.864-2.863zm0 8.58.848.848-3.11 3.11a.85.85 0 0 1-1.202 0l-3.11-3.11.848-.85 2.864 2.864zm-8-8.001.848.848-2.862 2.863 2.863 2.863-.849.848-3.11-3.11a.85.85 0 0 1 0-1.202zm9.427.848.849-.848 3.11 3.11a.85.85 0 0 1 0 1.202l-3.11 3.11-.85-.848L19.154 12zm-4.29.863a2 2 0 1 0 0 4 2 2 0 0 0 0-4",clipRule:"evenodd"})),K6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M19.785 20.2h-15V19h15zM15.143 5.941l-.804-.804a2.219 2.219 0 0 1 3.137 3.138l-.805-.806-1.073 1.073.805.806-8.157 8.157a.8.8 0 0 1-.543.234l-2.065.056a.8.8 0 0 1-.82-.82l.056-2.065a.8.8 0 0 1 .234-.543l8.158-8.158.804.805z",clipRule:"evenodd"})),q6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.478 16.023a.863.863 0 0 1-.73-1.325l5.523-8.719a.863.863 0 0 1 1.458 0l5.522 8.719a.863.863 0 0 1-.73 1.325zm-.794 2.4h12.632v-1.2H5.684z",clipRule:"evenodd"})),Y6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.947 5.035H5.885a.85.85 0 0 0-.85.85v5.063h1.2V7.083l4.633 4.634.849-.849-4.633-4.633h3.863zm5.969 12.73-4.634-4.633.849-.849 4.633 4.632v-3.863h1.2v5.062c0 .47-.38.85-.85.85H13.05v-1.2z",clipRule:"evenodd"})),X6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.654 5.742H6.592a.85.85 0 0 0-.85.85v5.063h1.2V7.79l4.633 4.634.848-.849-4.632-4.633h3.863zm4.555 11.315-4.634-4.633.848-.848 4.634 4.632v-3.863h1.2v5.062c0 .47-.381.85-.85.85h-5.063v-1.2z",clipRule:"evenodd"})),Z6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.257 11.654V6.592a.85.85 0 0 0-.85-.85h-5.063v1.2h3.865l-4.634 4.633.394.394-.394-.394-4.633 4.634v-3.865h-1.2v5.063c0 .469.38.85.85.85h5.062v-1.2H7.791l4.633-4.633 4.633-4.633v3.863z",clipRule:"evenodd"})),J6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.964 10.947V5.885a.85.85 0 0 0-.85-.85H13.05v1.2h3.865l-4.634 4.633.849.849 4.633-4.633v3.863zm-11.88 6.817h3.863v1.2H5.885a.85.85 0 0 1-.85-.85V13.05h1.2v3.865l4.633-4.634.849.849z",clipRule:"evenodd"})),Q6=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m7.332 7.82-3.58 3.58a.85.85 0 0 0 0 1.202l3.58 3.58.85-.848L5.448 12.6H12v-1.2H5.449l2.732-2.732zm11.22 3.58L15.821 8.67l.848-.849 3.58 3.58a.85.85 0 0 1 0 1.202l-3.58 3.58-.849-.848 2.733-2.733h-6.552v-1.2z",clipRule:"evenodd"})),ep=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m6.332 7.82-3.58 3.58a.85.85 0 0 0 0 1.202l3.58 3.58.85-.848L4.448 12.6H11v-1.2H4.449l2.732-2.732zm13.22 3.58L16.822 8.67l.848-.849 3.58 3.58a.85.85 0 0 1 0 1.202l-3.58 3.58-.849-.848 2.733-2.733H13v-1.2z",clipRule:"evenodd"})),tp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.012 5.941 4.554 11.4a.85.85 0 0 0 0 1.202l5.458 5.457.849-.848-4.61-4.61h10.647v-1.2H6.249l4.611-4.61zm8.484.559h1.2v11h-1.2z",clipRule:"evenodd"})),np=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m13.99 5.941 5.457 5.458a.85.85 0 0 1 0 1.202l-5.459 5.457-.848-.848 4.61-4.61H7.103v-1.2H17.75l-4.61-4.61zM5.504 6.5h-1.2v11h1.2z",clipRule:"evenodd"})),op=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m16.182 7.332-3.58-3.58a.85.85 0 0 0-1.202 0l-3.58 3.58.849.85 2.733-2.733V12h1.2V5.449l2.732 2.732zm-3.58 11.22 2.732-2.731.848.848-3.58 3.58a.85.85 0 0 1-1.202 0l-3.58-3.58.849-.849 2.733 2.733v-6.552h1.2z",clipRule:"evenodd"})),lp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m16.182 6.332-3.58-3.58a.85.85 0 0 0-1.202 0l-3.58 3.58.849.85 2.733-2.733L11.4 11h1.2V4.449l2.733 2.732zm-3.58 13.22 2.732-2.731.848.848-3.58 3.58a.85.85 0 0 1-1.202 0l-3.58-3.58.849-.849 2.733 2.733L11.4 13h1.2z",clipRule:"evenodd"})),ip=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.998 4.6a7.4 7.4 0 1 0 7.4 7.4h1.2a8.6 8.6 0 1 1-8.6-8.6zm7.4.85V9.6h1.2V4.25a.85.85 0 0 0-.85-.85h-5.35v1.2h4.153l-6.976 6.976.848.849z",clipRule:"evenodd"})),rp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M4.63 7.742a9.94 9.94 0 0 0-2.606 6.716l-.004.004q.063.087.13.173a12.37 12.37 0 0 0 9.849 4.874c1.327 0 2.605-.21 3.803-.595l-3.84-3.84a3.075 3.075 0 0 1-3.037-3.038zM8.307 5.196 19.83 16.719a12.5 12.5 0 0 0 2.148-2.257l-.005-.003q0-.1-.002-.201C21.862 8.844 17.44 4.49 12 4.49c-1.304 0-2.55.25-3.692.706M3.09 3.938l.848-.848 16.97 16.97-.848.849z"})),ap=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21.974 14.459q0-.1-.002-.201C21.862 8.844 17.44 4.49 12 4.49S2.137 8.845 2.027 14.26q-.003.1-.003.2l-.004.003q.063.087.13.173a12.37 12.37 0 0 0 9.849 4.874 12.37 12.37 0 0 0 9.98-5.047zM12 15.075a3.075 3.075 0 1 0 0-6.15 3.075 3.075 0 0 0 0 6.15",clipRule:"evenodd"})),sp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.5 3.65a.85.85 0 0 1 .602-.25h8.646c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85h-13.5a.85.85 0 0 1-.85-.85V9.104a.85.85 0 0 1 .25-.601zM11.4 12.6h-2.4v-1.2h2.4V9h1.2v2.4h2.4v1.2h-2.4V15h-1.2z",clipRule:"evenodd"})),cp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.5 3.65a.85.85 0 0 1 .602-.25h8.646c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85h-13.5a.85.85 0 0 1-.85-.85V9.104a.85.85 0 0 1 .25-.601zm3.098 9.901 1.793-1.792.848.848-2.64 2.64a.85.85 0 0 1-1.202 0l-2.64-2.64.848-.848 1.793 1.793V9h1.2z",clipRule:"evenodd"})),dp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.248 3.4a.85.85 0 0 0-.85.85v15.5c0 .47.381.85.85.85h13.5c.47 0 .85-.38.85-.85V4.25a.85.85 0 0 0-.85-.85zm2.75 6.2h8V8.4h-8zm8 3h-8v-1.2h8zm-8 3h6v-1.2h-6z",clipRule:"evenodd"})),up=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.5 3.65a.85.85 0 0 1 .602-.25h8.646c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85h-13.5a.85.85 0 0 1-.85-.85V9.104a.85.85 0 0 1 .25-.601zm3.098 6.8 1.793 1.792.848-.849-2.64-2.64a.85.85 0 0 0-1.202 0l-2.64 2.64.848.849 1.793-1.794V15h1.2z",clipRule:"evenodd"})),hp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.102 3.4a.85.85 0 0 0-.601.25L4.647 8.502a.85.85 0 0 0-.249.6V19.75c0 .47.381.85.85.85h13.5c.47 0 .85-.38.85-.85V4.25a.85.85 0 0 0-.85-.85zm1.497 6.35V6.198h-1.2v3.204H7.195v1.2h3.554c.47 0 .85-.381.85-.85",clipRule:"evenodd"})),gp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.559 3.375c0-.452.366-.818.818-.818h17.25c.451 0 .818.366.818.818v17.25a.82.82 0 0 1-.818.818H3.377a.82.82 0 0 1-.818-.818zM3.695 8.1v3.3h2.707V8.1zm0 4.5h2.707v2.8H3.695zm0 4h2.707v3.707H3.695zm0-12.907h2.707V6.9H3.695zm16.614 16.614h-2.707V16.6h2.707zm0-4.907h-2.707v-2.8h2.707zm0-4h-2.707V8.1h2.707zm0-4.5h-2.707V3.693h2.707zM6.404 12.6h11.195v-1.2H6.404z",clipRule:"evenodd"})),vp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21 7.6H3V6.4h18zM18 12.6H6v-1.2h12zM15 17.6H9v-1.2h6z",clipRule:"evenodd"})),mp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.413 2.324a.85.85 0 0 0-.85.85v18.5h1.2V3.524h.004v-1.2zm1.949 0h13.225a.85.85 0 0 1 .622 1.43l-4.226 4.527 4.226 4.528a.85.85 0 0 1-.622 1.43H6.362z",clipRule:"evenodd"})),pp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.898 5.55c0-.47.381-.85.85-.85h4.133a.85.85 0 0 1 .653.305L10.28 7.1h9.97c.469 0 .85.38.85.85v10.5c0 .47-.381.85-.85.85h-16.5a.85.85 0 0 1-.85-.85zm8.5 10.45v-2.4h-2.4v-1.2h2.4V10h1.2v2.4h2.4v1.2h-2.4V16z",clipRule:"evenodd"})),fp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.748 4.7a.85.85 0 0 0-.85.85v12.9c0 .469.381.85.85.85h16.5c.47 0 .85-.381.85-.85V7.95a.85.85 0 0 0-.85-.85H10.28L8.534 5.004a.85.85 0 0 0-.653-.306z",clipRule:"evenodd"})),wp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M19.474 7.4a8.775 8.775 0 0 0-16.211 3.8H2.059A9.975 9.975 0 0 1 20.15 6.25V4h1.2v3.688a.91.91 0 0 1-.912.912H16.75V7.4zM2.06 12.8a9.98 9.98 0 0 0 3.614 6.911 9.975 9.975 0 0 0 16.271-6.91H20.74a8.775 8.775 0 0 1-17.477 0zM8.826 8.65v6.703h1.2V8.649zm3.6 1.201v4.3h1.55v-4.3zm-1.2-.35c0-.47.381-.85.85-.85h2.25c.47 0 .85.38.85.85v5c0 .47-.38.85-.85.85h-2.25a.85.85 0 0 1-.85-.85z",clipRule:"evenodd"})),Ep=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M19.474 7.4a8.775 8.775 0 0 0-16.211 3.8H2.059A9.975 9.975 0 0 1 20.15 6.25V4h1.2v3.688a.91.91 0 0 1-.912.912H16.75V7.4zM2.06 12.8a9.98 9.98 0 0 0 3.614 6.911 9.975 9.975 0 0 0 16.271-6.91H20.74a8.775 8.775 0 0 1-17.477 0zm6.843 2.552V8.649h1.2v6.703zm6.25-5.502h-2.425v1.55h1.65c.469 0 .85.38.85.85v2.25c0 .47-.381.85-.85.85H11.6v-1.2h2.425V12.6h-1.65a.85.85 0 0 1-.85-.85V9.5c0-.47.381-.85.85-.85h2.775z",clipRule:"evenodd"})),yp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M16.635 4.549a8.8 8.8 0 0 1 2.84 2.851H16.75v1.2h3.688a.91.91 0 0 0 .912-.912V4h-1.2V6.25A9.974 9.974 0 0 0 2.06 11.2h1.204A8.775 8.775 0 0 1 16.635 4.55M2.112 13.302a10 10 0 0 1-.053-.502h1.204q.015.173.039.346A8.775 8.775 0 0 0 20.74 12.8h1.204a9.975 9.975 0 0 1-19.832.502m12.64-3.452H10.31v1.55h3.842c.41 0 .741.332.741.741v2.469a.74.74 0 0 1-.74.74H9.252v-1.2h4.441V12.6H9.851a.74.74 0 0 1-.741-.74V9.39c0-.409.332-.74.74-.74h4.902z",clipRule:"evenodd"})),xp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20.33 6.5v11h-1.2v-4.738L12.41 17.24a.85.85 0 0 1-1.321-.707v-3.36l-6.1 4.067a.85.85 0 0 1-1.322-.707V7.467a.85.85 0 0 1 1.321-.707l6.1 4.067v-3.36a.85.85 0 0 1 1.322-.707l6.718 4.478V6.5z",clipRule:"evenodd"})),Cp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.36 6.76a.85.85 0 0 0-1.32.707v9.065a.85.85 0 0 0 1.32.708l6.1-4.067v3.36a.85.85 0 0 0 1.322.707l6.8-4.533a.85.85 0 0 0 0-1.415l-6.8-4.533a.85.85 0 0 0-1.321.708v3.36z",clipRule:"evenodd"})),bp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.023 12c0-5.509 4.466-9.975 9.975-9.975 5.51 0 9.975 4.466 9.975 9.975 0 5.51-4.465 9.975-9.975 9.975S2.023 17.51 2.023 12m6.075-3a.4.4 0 1 1 .8 0 .4.4 0 0 1-.8 0m.4-1.6a1.6 1.6 0 1 0 0 3.2 1.6 1.6 0 0 0 0-3.2m7 1.2a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m-1.9 4.6a3.4 3.4 0 0 0-3.4 3.4h-1.2a4.6 4.6 0 1 1 9.2 0h-1.2a3.4 3.4 0 0 0-3.4-3.4",clipRule:"evenodd"})),Rp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.523 4.4a.85.85 0 0 0-.66 1.386l6.035 7.427v6.32a.85.85 0 0 0 1.322.707l2.5-1.666a.85.85 0 0 0 .378-.707v-4.654l6.035-7.427a.85.85 0 0 0-.66-1.386z",clipRule:"evenodd"})),Sp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.4 2.85c0-.47.381-.85.85-.85h3.5c.47 0 .85.38.85.85v1.67a7.9 7.9 0 0 1 2.577 1.49l1.449-.837a.85.85 0 0 1 1.161.312l1.75 3.03a.85.85 0 0 1-.311 1.162l-1.448.836a8 8 0 0 1 0 2.975l1.447.836a.85.85 0 0 1 .311 1.16l-1.75 3.032a.85.85 0 0 1-1.16.31l-1.45-.835a7.9 7.9 0 0 1-2.575 1.489v1.67c0 .47-.38.85-.85.85h-3.5a.85.85 0 0 1-.85-.85v-1.67a7.9 7.9 0 0 1-2.575-1.489l-1.449.836a.85.85 0 0 1-1.16-.311l-1.75-3.031.31-1.161 1.447-.835L9.401 4.52m0 0V2.85Zm0 0A7.9 7.9 0 0 0 6.825 6.01l-1.448-.836a.85.85 0 0 0-1.161.31l-1.75 3.032a.85.85 0 0 0 .31 1.161l1.448.836A8 8 0 0 0 4.084 12a8 8 0 0 0 .14 1.489l-1.447.835a.85.85 0 0 0-.31 1.16l.31-1.16 1.447-.835m7.778-5.159a3.67 3.67 0 1 0 0 7.34 3.67 3.67 0 0 0 0-7.34",clipRule:"evenodd"})),Ip=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.74 2.65a2.858 2.858 0 0 0-1.796 5.081H4.901a.85.85 0 0 0-.85.85v3.64c0 .47.38.85.85.85h6.497V7.719h.154q.25-.205.447-.459.198.255.447.46h.152v5.351h6.499c.47 0 .85-.38.85-.85v-3.64a.85.85 0 0 0-.85-.85h-3.043A2.858 2.858 0 1 0 12 3.756 2.85 2.85 0 0 0 9.741 2.65M4.88 15c0-.47.38-.85.85-.85h5.668v7.2H5.73a.85.85 0 0 1-.85-.85zm7.718 6.35v-7.2h5.672c.47 0 .85.38.85.85v5.5c0 .47-.38.85-.85.85z",clipRule:"evenodd"})),Tp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M17.679 9.8h4.078a10.02 10.02 0 0 0-7.399-7.52l.195.486zm4.078 4.4H17.68l-3.13 7.044-.012.024-.232.465a10.02 10.02 0 0 0 7.452-7.533m-5.391 0H12.6v7.782q.124-.007.247-.017l.61-1.221zm-8.731 0H11.4v7.782q-.123-.007-.247-.017l-.61-1.221zM2.243 9.8h4.079l3.344-7.526A10.02 10.02 0 0 0 2.243 9.8m5.392 0H11.4V2.018a10 10 0 0 0-.317.023zm4.965 0V2.018q.187.01.373.029l.47 1.176.009.02L16.366 9.8zM2.243 14.2H6.32l3.13 7.044.012.024.233.465A10.02 10.02 0 0 1 2.243 14.2",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M2 12.6v-1.2h20v1.2z"})),Mp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M6.198 5.22a3.268 3.268 0 1 0 1.987 5.863 4.2 4.2 0 0 1-.187-1.24c0-1.095.422-2.093 1.112-2.838a3.27 3.27 0 0 0-2.912-1.784M6.555 12.669c1.125 0 2.144.446 2.892 1.17a5.06 5.06 0 0 0-2.393 3.586H3.248a.837.837 0 0 1-.84-.891 4.157 4.157 0 0 1 4.147-3.865M14.787 6.581a4.17 4.17 0 0 1 1.568 3.262c0 .566-.113 1.106-.317 1.598a3.268 3.268 0 1 0-1.251-4.86M17.441 12.669c-1.078 0-2.06.41-2.798 1.082a5.07 5.07 0 0 1 2.544 3.675h3.561c.458 0 .875-.38.84-.892a4.157 4.157 0 0 0-4.147-3.865M12.175 14.023a4.157 4.157 0 0 0-4.147 3.865.837.837 0 0 0 .84.891h6.615c.458 0 .875-.38.84-.891a4.157 4.157 0 0 0-4.148-3.866"}),l.createElement("path",{fill:"currentColor",d:"M12.175 6.576a3.268 3.268 0 1 0 0 6.535 3.268 3.268 0 0 0 0-6.535"})),zp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.398 4.25c0-.47.381-.85.85-.85h13.5c.47 0 .85.38.85.85v9.15h-15.2zm0 10.35v5.15c0 .47.381.85.85.85h13.5c.47 0 .85-.38.85-.85V14.6zm7.203 2a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m5.398 0a.4.4 0 1 1 .8 0 .4.4 0 0 1-.8 0m.4-1.6a1.6 1.6 0 1 0 0 3.2 1.6 1.6 0 0 0 0-3.2",clipRule:"evenodd"})),Op=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.28 3.426 8.68 8.213H3.5v1.2h5.031l-.647 5.175H3.5v1.2h4.234l-.58 4.638 1.191.149.599-4.787h5.165l-.58 4.638 1.191.149.599-4.787H20.5v-1.2h-5.031l.647-5.175H20.5v-1.2h-4.235l.58-4.638-1.19-.15-.599 4.788H9.891l.58-4.638zm4.98 11.162.646-5.175H9.741l-.647 5.175z",clipRule:"evenodd"})),Vp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M4.945 5.633a9.975 9.975 0 0 1 14.107 0 9.94 9.94 0 0 1 2.921 7.038v5.27c0 1.85-1.5 3.35-3.35 3.35h-.6v-6.7h.6c.819 0 1.569.293 2.15.78v-2.7a8.74 8.74 0 0 0-2.57-6.19 8.775 8.775 0 0 0-12.41 0 8.74 8.74 0 0 0-2.57 6.19v2.7a3.34 3.34 0 0 1 2.15-.78h.6v6.7h-.6a3.35 3.35 0 0 1-3.35-3.35v-5.27a9.94 9.94 0 0 1 2.922-7.038"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.979 21.29v-6.699h1.2v6.7zM16.029 21.29v-6.699h1.2v6.7z",clipRule:"evenodd"})),Fp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.535 3.373A5.035 5.035 0 0 0 2.5 8.408v.533c0 1.45.567 2.842 1.579 3.88l7.402 7.588a.725.725 0 0 0 1.038 0l7.224-7.41a6.17 6.17 0 0 0 1.753-4.308h.004v-.283A5.035 5.035 0 0 0 12 6.079a5.03 5.03 0 0 0-4.465-2.706",clipRule:"evenodd"})),Pp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.548 2.575a.85.85 0 0 1 .9 0l7.75 4.843a.85.85 0 0 1 .4.721v7.723a.85.85 0 0 1-.4.72l-7.75 4.845a.85.85 0 0 1-.9 0l-7.75-4.844a.85.85 0 0 1-.4-.721V8.139a.85.85 0 0 1 .4-.72m0 0 7.75-4.844Z",clipRule:"evenodd"})),kp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.368 4.549A8.8 8.8 0 0 0 4.528 7.4h2.723v1.2h-3.75a.85.85 0 0 1-.85-.85V4h1.2v2.25a9.974 9.974 0 0 1 18.093 4.95H20.74A8.775 8.775 0 0 0 7.368 4.55M20.74 12.8h1.204a9.975 9.975 0 0 1-19.886 0h1.205a8.775 8.775 0 0 0 17.477 0M11.402 6v5.897c0 .225.089.441.248.6l3.927 3.928.849-.849-3.824-3.824V6z",clipRule:"evenodd"})),Bp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.566 2.425a.85.85 0 0 0-1.133 0l-8.15 7.28A.85.85 0 0 0 3 10.34V20.94c0 .47.38.85.85.85h4.92c.47 0 .85-.38.85-.85v-7.05h4.778l-.009 2.298v2.802l-.01 1.946a.85.85 0 0 0 .85.854h4.921c.47 0 .85-.38.85-.85v-10.6a.85.85 0 0 0-.283-.635z",clipRule:"evenodd"})),Ap=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.873 3.4a.85.85 0 0 0-.85.85v15.5c0 .47.381.85.85.85h18.25c.47 0 .85-.38.85-.85V4.25a.85.85 0 0 0-.85-.85zm7.71 10.863a2.4 2.4 0 0 0-3.084.747l-1.984 2.835-.983-.688 1.984-2.835a3.6 3.6 0 0 1 4.626-1.121l7.161 3.769-.559 1.062zm6.84-4.663a2.2 2.2 0 1 1-4.4 0 2.2 2.2 0 0 1 4.4 0",clipRule:"evenodd"})),Lp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 4.75c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v6.626H20.28V5.85a.75.75 0 0 0-.75-.75H4.479a.75.75 0 0 0-.75.75v5.525H2.523zm0 8.226v6.274c0 .47.381.85.85.85h17.25c.47 0 .85-.38.85-.85v-6.274H15.97a3.975 3.975 0 0 1-7.94 0H2.522",clipRule:"evenodd"})),_p=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21.375 12a9.375 9.375 0 1 1-18.75 0 9.375 9.375 0 1 1 18.75 0M12 6.4A.8.8 0 1 1 12 8a.8.8 0 0 1 0-1.6m-.6 11.2v-8h1.2v8z",clipRule:"evenodd"})),Np=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.146 5.378H9.835v-1.2h6v1.2h-2.478l-1.834 13.246h1.978v1.2H8.168v-1.2h2.144z",clipRule:"evenodd"})),$p=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M14.616 3.354a5.6 5.6 0 0 0-4.361 9.113L3.78 18.94l.849.848 1.294-1.294 2.154 2.154.849-.849-2.154-2.154 1.3-1.3 2.154 2.154.848-.848-2.154-2.154 2.182-2.182a5.6 5.6 0 1 0 3.513-9.962"})),Hp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.873 3a.85.85 0 0 0-.85.85v11.219c0 .47.381.85.85.85h18.25c.47 0 .85-.38.85-.85V3.85a.85.85 0 0 0-.85-.85z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M2.598 18.72h18.8v1.2h-18.8z"})),Dp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.348 3.794a.85.85 0 0 0-.698 0L3.78 7.336a.85.85 0 0 0 .02 1.56l7.873 3.287a.85.85 0 0 0 .655 0l7.871-3.288a.85.85 0 0 0 .022-1.56z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12 14.544 3.716 11.31l-.436 1.117 8.403 3.281a.87.87 0 0 0 .63 0l8.403-3.28-.436-1.118z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12 18.062-8.283-3.233-.436 1.118 8.403 3.28a.87.87 0 0 0 .63 0l8.403-3.28-.436-1.118z",clipRule:"evenodd"})),jp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.399 2.4h-8.15a.85.85 0 0 0-.85.85v8.15h9zm0 10.2h-9v8.15c0 .47.38.85.85.85h8.15zm1.2 9h8.15c.469 0 .85-.38.85-.85V3.25a.85.85 0 0 0-.85-.85h-8.15z",clipRule:"evenodd"})),Wp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm3 14.75h13.2v-1.2h-13.2z",clipRule:"evenodd"})),Gp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.399 2.4h-8.15a.85.85 0 0 0-.85.85v17.5c0 .47.38.85.85.85h8.15zm1.2 19.2h8.15c.469 0 .85-.38.85-.85V3.25a.85.85 0 0 0-.85-.85h-8.15z",clipRule:"evenodd"})),Up=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.598 20.6h4.8v-5.318h-4.8zm0-6.518V9.6h4.8v4.482zm6 1.2V20.6h5.15c.47 0 .85-.38.85-.85v-4.468zm6-1.2h-6V9.6h6zm-13.2 0h-6V9.6h6zm-6 1.2h6V20.6h-5.15a.85.85 0 0 1-.85-.85zm7.2-6.882h4.8v-5h-4.8zm6 0h6V4.25a.85.85 0 0 0-.85-.85h-5.15zm-7.2-5v5h-6V4.25c0-.47.381-.85.85-.85z",clipRule:"evenodd"})),Kp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20.748 20.6h-8.15v-8.1h9v7.25c0 .47-.38.85-.85.85m.85-9.3h-9V3.4h8.15c.47 0 .85.38.85.85zm-10.2 0V3.4h-8.15a.85.85 0 0 0-.85.85v7.05zm-9 1.2v7.25c0 .47.381.85.85.85h8.15v-8.1z",clipRule:"evenodd"})),qp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm3.6 2.15v13.2h1.2V5.4z",clipRule:"evenodd"})),Yp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm14.4 2.15v13.2h1.2V5.4z",clipRule:"evenodd"})),Xp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v8.15h-19.2zm0 9.35v8.15c0 .47.381.85.85.85h17.5c.47 0 .85-.38.85-.85V12.6z",clipRule:"evenodd"})),Zp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.248 2.4a.85.85 0 0 0-.85.85V7.4h19.2V3.25a.85.85 0 0 0-.85-.85zm-.85 18.35V8.6h13v13H3.249a.85.85 0 0 1-.85-.85m14.2.85h4.15c.47 0 .85-.38.85-.85V8.6h-5z",clipRule:"evenodd"})),Jp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.248 2.4a.85.85 0 0 0-.85.85V7.4h19.2V3.25a.85.85 0 0 0-.85-.85zm-.85 18.35V8.6h5v12.987h1.2V8.6h13v12.15c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85",clipRule:"evenodd"})),Qp=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 3.25c0-.47.381-.85.85-.85h17.5c.47 0 .85.38.85.85v17.5c0 .47-.38.85-.85.85h-17.5a.85.85 0 0 1-.85-.85zm3 3.95h13.2V6h-13.2z",clipRule:"evenodd"})),ef=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.399 2.4h-8.15a.85.85 0 0 0-.85.85v17.5c0 .47.38.85.85.85h8.15zm1.2 19.2h8.15c.469 0 .85-.38.85-.85V12.6h-9zm0-10.2h9V3.25a.85.85 0 0 0-.85-.85h-8.15z",clipRule:"evenodd"})),tf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.382 4.535a9.94 9.94 0 0 1 6.616-2.51c2.467 0 4.725.896 6.466 2.38L14.187 8.68a3.96 3.96 0 0 0-2.188-.656c-.882 0-1.696.287-2.355.772zm-.849.849A9.94 9.94 0 0 0 2.023 12c0 2.467.896 4.725 2.38 6.466l4.276-4.278A3.96 3.96 0 0 1 8.024 12c0-.88.286-1.695.771-2.354zm.7 13.947a9.94 9.94 0 0 0 6.765 2.644 9.94 9.94 0 0 0 6.617-2.51l-4.262-4.262a3.96 3.96 0 0 1-2.354.772 3.96 3.96 0 0 1-2.514-.895zm14.23-.714A9.94 9.94 0 0 0 21.974 12a9.94 9.94 0 0 0-2.644-6.764l-4.25 4.25c.559.686.894 1.56.894 2.514 0 .882-.286 1.696-.772 2.355zM9.224 12a2.775 2.775 0 1 1 5.55 0 2.775 2.775 0 0 1-5.55 0",clipRule:"evenodd"})),nf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.055 2.957c.457-.629 1.452-.305 1.452.473v5.785c0 .348.132.673.368.91.241.24.568.376.91.376h3.257a.803.803 0 0 1 .649 1.275l-6.745 9.267c-.458.629-1.453.305-1.453-.473v-5.785a1.28 1.28 0 0 0-.37-.909 1.29 1.29 0 0 0-.909-.377H5.957a.803.803 0 0 1-.65-1.275m0 0 6.748-9.267Z",clipRule:"evenodd"})),of=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.93 9.738a6.6 6.6 0 0 0 9.333 9.334l.51-.51-.85-.848-.508.51a5.4 5.4 0 1 1-7.637-7.638l.509-.509-.849-.848zM9.738 4.93a6.6 6.6 0 0 1 9.334 9.333l-.51.51-.848-.85.51-.508a5.4 5.4 0 1 0-7.638-7.637l-.509.509-.848-.849zM8.946 7.418 7.418 8.946l-.848-.849L8.097 6.57zM17.431 15.904l-1.527 1.527-.849-.849 1.527-1.527z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m15.253 9.596-5.657 5.657-.848-.848 5.657-5.657z",clipRule:"evenodd"})),lf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.816 7h11.17v1.2H8.816zM8.816 11.4h11.17v1.2H8.816zM8.816 15.8h11.17V17H8.816z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M7.212 7.6a1.6 1.6 0 1 0-3.2 0 1.6 1.6 0 0 0 3.2 0M7.212 12a1.6 1.6 0 1 0-3.2 0 1.6 1.6 0 0 0 3.2 0M7.212 16.4a1.6 1.6 0 1 0-3.2 0 1.6 1.6 0 0 0 3.2 0"})),rf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.8 8.2H4V7h2.8zM20 7H8.83v1.2H20zm0 4.4H8.83v1.2H20zM8.83 15.8H20V17H8.83zM4 12.6h2.8v-1.2H4zM6.8 17H4v-1.2h2.8z",clipRule:"evenodd"})),af=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.157 6.3v2.6h.6V6.3zm14.675.7H8.662v1.2h11.17zm0 4.4H8.662v1.2h11.17zm-11.17 4.4h11.17V17H8.662zm-2.518-4.5H4.272v-.6h1.922a.55.55 0 0 1 .55.55v.5a.55.55 0 0 1-.55.55H4.772v.4h1.87v.6h-1.92a.55.55 0 0 1-.55-.55v-.5a.55.55 0 0 1 .55-.55h1.422zm-1.872 4.4h1.872v.4H4.272v.6h1.872v.4H4.272v.6h1.922a.55.55 0 0 0 .55-.55v-1.5a.55.55 0 0 0-.55-.55H4.272z",clipRule:"evenodd"})),sf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.6 17v5h-1.2v-5zM12.6 2v5h-1.2V2zM7 12.6H2v-1.2h5zM22 12.6h-5v-1.2h5zM8.425 16.424l-3.073 3.07-.848-.848 3.072-3.07zM19.495 5.353l-3.07 3.071-.85-.848 3.072-3.071zM15.576 16.424l3.073 3.07.848-.85-3.073-3.069zM4.505 5.353l3.07 3.071.85-.848-3.072-3.071z",clipRule:"evenodd"})),cf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.999 2a4.6 4.6 0 0 0-3.253 1.347l.848.849A3.4 3.4 0 0 1 15.4 6.6v1h1.2v-1a4.6 4.6 0 0 0-4.6-4.6m-8.6 8.05c0-.47.38-.85.85-.85h15.5c.469 0 .85.38.85.85v11.1c0 .47-.381.85-.85.85h-15.5a.85.85 0 0 1-.85-.85zm7.032 5.55a1.571 1.571 0 1 1 3.143 0 1.571 1.571 0 0 1-3.143 0",clipRule:"evenodd"})),df=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.746 3.347A4.6 4.6 0 0 1 16.598 6.6v1h-1.2v-1a3.4 3.4 0 1 0-6.8 0v1h-1.2v-1a4.6 4.6 0 0 1 1.348-3.253M4.248 9.2a.85.85 0 0 0-.85.85v11.1c0 .47.381.85.85.85h15.5c.47 0 .85-.38.85-.85v-11.1a.85.85 0 0 0-.85-.85zm6.184 6.4a1.571 1.571 0 1 1 3.142 0 1.571 1.571 0 0 1-3.142 0",clipRule:"evenodd"})),uf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.313 3.394A8.775 8.775 0 1 1 5.82 18.205l-.848.849a9.975 9.975 0 1 0 0-14.107l.848.849a8.78 8.78 0 0 1 4.493-2.402m2.118 9.207-2.895 2.895.848.848 3.783-3.783a.85.85 0 0 0 0-1.202l-3.783-3.783-.848.849L12.51 11.4H2v1.2z",clipRule:"evenodd"})),hf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.71 3.394a8.775 8.775 0 1 0 4.493 14.811l.849.849a9.975 9.975 0 1 1 0-14.107l-.849.849a8.78 8.78 0 0 0-4.493-2.402m4.363 12.95-.849-.848 2.895-2.895H11v-1.2H20.2l-2.976-2.976.849-.849 3.783 3.783a.85.85 0 0 1 0 1.202z",clipRule:"evenodd"})),gf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M18.004 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m16.361 17.21.849-.85 4.781 4.782-.848.849z",clipRule:"evenodd"})),vf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.031 5.25c0-.47.38-.85.85-.85h18.25c.47 0 .85.38.85.85v13.5c0 .47-.38.85-.85.85H2.881a.85.85 0 0 1-.85-.85zM19.12 8.224l-6.597 5.13a.85.85 0 0 1-1.044 0l-6.596-5.13.737-.947L12 12.24l6.382-4.963z",clipRule:"evenodd"})),mf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.395 3.778a.85.85 0 0 0-.829.032l-4.76 2.91a.85.85 0 0 0-.408.725v11.863a.85.85 0 0 0 1.288.729l3.712-2.228V6.75h1.2V17.72l5.01 2.505a.85.85 0 0 0 .817-.032l4.76-2.856a.85.85 0 0 0 .413-.73V4.696a.85.85 0 0 0-1.293-.725l-3.707 2.265V17.25h-1.2V6.326z",clipRule:"evenodd"})),pf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.398 8.1V6.5a3.1 3.1 0 0 1 3.1-3.1h1.6v1.2h-1.6a1.9 1.9 0 0 0-1.9 1.9v1.6zm17.2-1.6v1.6h-1.2V6.5a1.9 1.9 0 0 0-1.9-1.9h-1.6V3.4h1.6a3.1 3.1 0 0 1 3.1 3.1m0 11v-1.6h-1.2v1.6a1.9 1.9 0 0 1-1.9 1.9h-1.6v1.2h1.6a3.1 3.1 0 0 0 3.1-3.1m-17.2 0v-1.6h1.2v1.6c0 1.05.851 1.9 1.9 1.9h1.6v1.2h-1.6a3.1 3.1 0 0 1-3.1-3.1",clipRule:"evenodd"})),ff=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2 4.25c0-.47.38-.85.85-.85H21.1c.47 0 .85.38.85.85v15.5c0 .47-.38.85-.85.85H2.85a.85.85 0 0 1-.85-.85zm7.2 4.753a.55.55 0 0 1 .823-.478l5.246 2.998a.55.55 0 0 1 0 .955l-5.246 2.998a.55.55 0 0 1-.823-.478z",clipRule:"evenodd"})),wf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21 12.6H3v-1.2h18zM21 18.6H3v-1.2h18zM21 6.6H3V5.4h18z",clipRule:"evenodd"})),Ef=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"m3.088 3.94.849-.85 16.97 16.972-.848.848zM6.814 9.362v2.845a5.184 5.184 0 0 0 7.489 4.644z"}),l.createElement("path",{fill:"currentColor",d:"M16.774 19.322A8.568 8.568 0 0 1 3.43 12.207h-1.2a9.768 9.768 0 0 0 15.406 7.977zM18.577 19.428l-.85-.85a8.5 8.5 0 0 0 .835-.862l.851.851a10 10 0 0 1-.836.861M20.143 17.6a9.77 9.77 0 0 0 1.624-5.393h-1.2a8.57 8.57 0 0 1-1.292 4.525zM16.772 14.229c.268-.634.41-1.32.41-2.022V7.21a5.184 5.184 0 0 0-9.796-2.367zM6.814 7.665V7.21q0-.571.122-1.12l9.217 9.217a5.2 5.2 0 0 1-.824.873z"})),yf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.999 2.025A5.184 5.184 0 0 0 6.814 7.21v4.997a5.184 5.184 0 0 0 10.369 0V7.21a5.184 5.184 0 0 0-5.184-5.185",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.092 19.114a9.768 9.768 0 0 0 16.675-6.907h-1.2a8.568 8.568 0 1 1-17.137 0h-1.2c0 2.591 1.03 5.075 2.862 6.907",clipRule:"evenodd"})),xf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.65 7.55v-1.6h-1.2v1.6a1.9 1.9 0 0 1-1.9 1.9h-1.6v1.2h1.6a3.1 3.1 0 0 0 3.1-3.1m0 8.9v1.6h-1.2v-1.6a1.9 1.9 0 0 0-1.9-1.9h-1.6v-1.2h1.6a3.1 3.1 0 0 1 3.1 3.1m2.699 1.6v-1.6a3.1 3.1 0 0 1 3.1-3.1h1.6v1.2h-1.6a1.9 1.9 0 0 0-1.9 1.9v1.6zm0-10.5v-1.6h1.2v1.6c0 1.049.85 1.9 1.9 1.9h1.6v1.2h-1.6a3.1 3.1 0 0 1-3.1-3.1",clipRule:"evenodd"})),Cf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.559 3.375c0-.452.366-.818.818-.818h17.25c.451 0 .818.366.818.818v17.25a.82.82 0 0 1-.818.818H3.377a.82.82 0 0 1-.818-.818zM6.002 12.6h12v-1.2h-12z",clipRule:"evenodd"})),bf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20 12.6H4v-1.2h16z",clipRule:"evenodd"})),Rf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.873 3a.85.85 0 0 0-.85.85v11.219c0 .47.381.85.85.85h18.25c.47 0 .85-.38.85-.85V3.85a.85.85 0 0 0-.85-.85zM15.998 17.52v1.2h-8v-1.2zm0 2.4h-8v1.2h8z",clipRule:"evenodd"})),Sf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.154 4.19a.84.84 0 0 0 .009-.9.82.82 0 0 0-.855-.376A9.177 9.177 0 0 0 12.076 21.1c4.464 0 8.182-3.187 9.007-7.409a.82.82 0 0 0-.376-.855.84.84 0 0 0-.899.009 6.262 6.262 0 0 1-8.654-8.655",clipRule:"evenodd"})),If=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M8.25 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M13.5 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M18.75 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0"})),Tf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M12 8.25a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3M12 13.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3M12 18.75a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3"})),Mf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M14.976 4.138H9.62v13.128a3.799 3.799 0 1 1-1.2-2.771V3.788c0-.47.38-.85.85-.85h5.705zm6.147-1.2h-6.147v1.2h5.797v10.357a3.799 3.799 0 1 0 1.2 2.77V3.787a.85.85 0 0 0-.85-.85",clipRule:"evenodd"})),zf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.476 4.138H13.12v13.128a3.799 3.799 0 1 1-1.2-2.771V3.788c0-.47.38-.85.85-.85h5.705z",clipRule:"evenodd"})),Of=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.306 5.983a.818.818 0 0 0-1.04-1.034L3.532 9.62c-.745.254-.737 1.311.012 1.553L10 13.258l2.165 6.496c.248.746 1.303.746 1.552 0z",clipRule:"evenodd"})),Vf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.503 2.249a.85.85 0 0 1 .6-.249h7.794a.85.85 0 0 1 .6.249l5.254 5.254a.85.85 0 0 1 .25.6v7.794a.85.85 0 0 1-.25.6l-5.254 5.254a.85.85 0 0 1-.6.249H8.104a.85.85 0 0 1-.601-.249l-5.254-5.254a.85.85 0 0 1-.249-.6V8.104a.85.85 0 0 1 .249-.601z",clipRule:"evenodd"})),Ff=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.449 2.686a.85.85 0 0 0-.901 0L9.042 4.252l7.935 5.014.021.014 2.692-1.683.315-.189zm2.423 7.922L6.93 5.572l-2.9 1.813.308.232 7.66 4.787zM3.398 15.973V8.412l.24.18.042.029 7.718 4.823v8l-7.6-4.75a.85.85 0 0 1-.4-.72m16.8.721-7.6 4.75v-8l7.714-4.82.286-.172v7.521a.85.85 0 0 1-.4.721",clipRule:"evenodd"})),Pf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21.375 12a9.375 9.375 0 1 1-18.75 0 9.375 9.375 0 1 1 18.75 0m-12.5-3.675a.55.55 0 0 0-.55.55v6.25c0 .304.246.55.55.55h1.75a.55.55 0 0 0 .55-.55v-6.25a.55.55 0 0 0-.55-.55zm4.5 0a.55.55 0 0 0-.55.55v6.25c0 .304.246.55.55.55h1.75a.55.55 0 0 0 .55-.55v-6.25a.55.55 0 0 0-.55-.55z",clipRule:"evenodd"})),kf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.248 5.4a.85.85 0 0 0-.85.85v11.5c0 .47.381.85.85.85h3.5c.47 0 .85-.38.85-.85V6.25a.85.85 0 0 0-.85-.85zm8 0a.85.85 0 0 0-.85.85v11.5c0 .47.381.85.85.85h3.5c.47 0 .85-.38.85-.85V6.25a.85.85 0 0 0-.85-.85z",clipRule:"evenodd"})),Bf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.946 10.083a2.1 2.1 0 0 0-2.484-.363L5.06 4.318l11.72 3.447a.85.85 0 0 1 .601.695l.515 3.603-5.94 5.94-3.603-.515a.85.85 0 0 1-.695-.601L4.211 5.166l5.403 5.403a2.1 2.1 0 1 0 3.332-.486m-.848.849a.9.9 0 1 0-1.273 1.272.9.9 0 0 0 1.273-1.272m2.298 8.662-1.167-1.167 5.091-5.091 1.167 1.167a.85.85 0 0 1 0 1.202l-3.89 3.889a.85.85 0 0 1-1.201 0",clipRule:"evenodd"})),Af=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m16.143 6.244-.849-.848a2.34 2.34 0 0 1 3.31 3.308l-.85-.849-1.132 1.132.85.849-8.603 8.603a.84.84 0 0 1-.573.247l-2.178.058a.84.84 0 0 1-.864-.864l.06-2.177a.84.84 0 0 1 .245-.573l8.604-8.603.848.848z",clipRule:"evenodd"})),Lf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.498 4.4a3.1 3.1 0 1 1 0 6.2 3.1 3.1 0 0 1 0-6.2m11.076.176-14 14 .849.849 14-14zM19.598 16.5a3.1 3.1 0 1 0-6.2 0 3.1 3.1 0 0 0 6.2 0",clipRule:"evenodd"})),_f=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"m19.494 5.353-.848-.848L4.503 18.647l.849.849z"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.065 12.086.848.849-2.528 2.528-.848-.849zm-1.132-1.131L8.71 9.73l1.697-1.697a.85.85 0 0 0 0-1.202L7.577 4.003a.85.85 0 0 0-1.202 0L4.961 5.417a3.975 3.975 0 0 0 0 5.622l2.444 2.444zm.584 5.639 2.4 2.4a3.975 3.975 0 0 0 5.62 0l1.415-1.415a.85.85 0 0 0 0-1.202l-2.829-2.828a.85.85 0 0 0-1.202 0l-1.697 1.697-1.18-1.18z",clipRule:"evenodd"})),Nf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.961 5.417a3.975 3.975 0 0 0 0 5.622l7.955 7.955a3.975 3.975 0 0 0 5.622 0l1.414-1.415a.85.85 0 0 0 0-1.202l-2.829-2.828a.85.85 0 0 0-1.202 0l-1.697 1.697L8.71 9.73l1.697-1.697a.85.85 0 0 0 0-1.202L7.577 4.003a.85.85 0 0 0-1.202 0z",clipRule:"evenodd"})),$f=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.798 2.269C5.348 3.27 2.023 7.247 2.023 12c0 5.51 4.466 9.975 9.975 9.975 4.754 0 8.73-3.324 9.732-7.775H11.648a1.85 1.85 0 0 1-1.85-1.85V2.27",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M12.248 12.6h8.875c.468 0 .86-.382.847-.866a9.975 9.975 0 0 0-9.705-9.705.846.846 0 0 0-.867.847v8.875c0 .47.381.85.85.85"})),Hf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.199 16.077a8.201 8.201 0 1 1 11.598 0l-5.371 5.371a.605.605 0 0 1-.855 0zm3.59-5.578a2.21 2.21 0 1 1 4.42 0 2.21 2.21 0 0 1-4.42 0",clipRule:"evenodd"})),Df=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("mask",{id:"placeholder_svg__a",width:20,height:20,x:2,y:2,maskUnits:"userSpaceOnUse",style:{maskType:"alpha"}},l.createElement("path",{fill:"#D9D9D9",d:"M2 4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2z"})),l.createElement("g",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",mask:"url(#placeholder_svg__a)"},l.createElement("path",{d:"M24.56 5.38a9.4 9.4 0 0 0-13.242 1.16l-.92-.772c3.764-4.485 10.45-5.07 14.934-1.307zM-3.487 7.693A9.4 9.4 0 0 0 9.756 6.534l.92.771C6.911 11.79.225 12.375-4.26 8.612zM-4.951 2.229a9.4 9.4 0 0 0 13.243-1.16l.919.772C5.448 6.326-1.239 6.911-5.723 3.148zM27.49 16.309a9.4 9.4 0 0 0-13.244 1.159l-.92-.772c3.764-4.484 10.45-5.07 14.935-1.306zM-.559 18.62a9.4 9.4 0 0 0 13.243-1.158l.92.772C9.84 22.718 3.153 23.304-1.33 19.54zM28.954 21.773a9.4 9.4 0 0 0-13.244 1.159l-.919-.772c3.763-4.484 10.45-5.07 14.934-1.306zM26.025 10.845a9.4 9.4 0 0 0-13.243 1.158l-.92-.77c3.764-4.486 10.45-5.07 14.934-1.307zM-2.023 13.157a9.4 9.4 0 0 0 13.243-1.159l.92.772c-3.764 4.484-10.45 5.069-14.934 1.306z"}))),jf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.998 2.03a2.6 2.6 0 0 0-2.6 2.6v3.9l-5.66 4.244a.85.85 0 0 0-.34.68v2.028c0 .58.569.99 1.12.807l4.88-1.627v3.367l-1.66 1.245a.85.85 0 0 0-.34.68v1.055a.85.85 0 0 0 1.057.825l3.543-.886 3.544.886a.85.85 0 0 0 1.056-.825v-1.055a.85.85 0 0 0-.34-.68l-1.66-1.245v-3.367l4.882 1.627a.85.85 0 0 0 1.118-.807v-2.028a.85.85 0 0 0-.34-.68l-5.66-4.245v-3.9a2.6 2.6 0 0 0-2.6-2.6",clipRule:"evenodd"})),Wf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21.375 12a9.375 9.375 0 1 1-18.75 0 9.375 9.375 0 1 1 18.75 0M10.7 8.476a.8.8 0 0 0-1.244.666v5.716a.8.8 0 0 0 1.244.666l4.287-2.858a.8.8 0 0 0 0-1.332z",clipRule:"evenodd"})),Gf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.322 5.76A.85.85 0 0 0 7 6.466v11.065a.85.85 0 0 0 1.322.708l8.299-5.533a.85.85 0 0 0 0-1.415z",clipRule:"evenodd"})),Uf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.373 2.525a.85.85 0 0 0-.85.85v17.25c0 .47.381.85.85.85h17.25c.47 0 .85-.38.85-.85V3.375a.85.85 0 0 0-.85-.85zM11.4 12.6h-3.4v-1.2h3.4V8h1.2v3.4h3.4v1.2h-3.4V16h-1.2z",clipRule:"evenodd"})),Kf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.4 12.6V20h1.2v-7.4H20v-1.2h-7.4V4h-1.2v7.4H4v1.2z",clipRule:"evenodd"})),qf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.248 7.449a.85.85 0 0 0-.85.85v9.482c0 .47.381.85.85.85h3.15V16.3c0-.47.381-.85.85-.85h9.5c.47 0 .85.38.85.85v2.332h3.15c.47 0 .85-.38.85-.85V8.3a.85.85 0 0 0-.85-.85zm13.95 3.197a.8.8 0 0 0 .8-.8h1.2a2 2 0 1 1-4 0h1.2a.8.8 0 0 0 .8.8",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M7.6 16.838c0-.105.099-.19.22-.19h8.357c.122 0 .22.085.22.19v3.422c0 .105-.098.19-.22.19H7.82c-.121 0-.22-.085-.22-.19zM16.749 3.549h-9.5a.25.25 0 0 0-.25.25v1.8c0 .138.111.25.25.25h9.5a.25.25 0 0 0 .25-.25v-1.8a.25.25 0 0 0-.25-.25"})),Yf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21.375 12a9.375 9.375 0 1 1-18.75 0 9.375 9.375 0 1 1 18.75 0M9.857 6.666a3.85 3.85 0 1 1 1.925 7.184v-1.2a2.65 2.65 0 1 0-2.295-3.975l-1.039-.6a3.85 3.85 0 0 1 1.41-1.41M12.8 16.45a.8.8 0 1 0-1.6 0 .8.8 0 0 0 1.6 0",clipRule:"evenodd"})),Xf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.428 9.595a3.403 3.403 0 0 1-2.406 5.808v-1.2a2.202 2.202 0 1 0 0-4.405v-1.2c.902 0 1.768.359 2.406.997",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20.245 7.778a5.971 5.971 0 0 1-4.223 10.194v-1.2a4.771 4.771 0 0 0 0-9.543v-1.2c1.584 0 3.103.63 4.223 1.75M5.593 9.595A3.402 3.402 0 0 0 8 15.403v-1.2a2.202 2.202 0 1 1 0-4.405v-1.2c-.902 0-1.768.359-2.406.997",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.776 7.778a5.971 5.971 0 0 0 4.222 10.194v-1.2a4.771 4.771 0 0 1 0-9.543v-1.2c-1.583 0-3.102.63-4.222 1.75",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M11.999 9.4a2.6 2.6 0 1 0 0 5.2 2.6 2.6 0 0 0 0-5.2"})),Zf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21.375 12a9.375 9.375 0 1 1-18.75 0 9.375 9.375 0 1 1 18.75 0M12 8.325a3.675 3.675 0 1 0 0 7.35 3.675 3.675 0 0 0 0-7.35",clipRule:"evenodd"})),Jf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.2 2.064a9.97 9.97 0 0 0-7.35 4.192V4h-1.2v3.687c0 .504.408.913.912.913h3.687V7.4H4.532A8.77 8.77 0 0 1 11.2 3.269zm0 18.824a8.77 8.77 0 0 1-6.366-3.63 8.78 8.78 0 0 1-1.567-6.256l-1.19-.157A9.975 9.975 0 0 0 11.2 22.093zm1.6 1.2v-1.206a8.78 8.78 0 0 0 6.729-4.282H16.81v-1.2H20.5c.504 0 .912.408.912.912V20h-1.2v-2.237a9.97 9.97 0 0 1-7.411 4.324m0-18.82V2.065a9.977 9.977 0 0 1 9.09 11.245l-1.19-.156a8.775 8.775 0 0 0-7.9-9.884",clipRule:"evenodd"})),Qf=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.767 3.824a.85.85 0 0 1 1.36.68V9.23a.85.85 0 0 1-1.345.691L2.555 7.616a.85.85 0 0 1-.016-1.372zm8.282 2.517H8.73v1.2h5.318a3.97 3.97 0 0 1 3.969 3.97v.804h1.2v-.805a5.17 5.17 0 0 0-5.17-5.169m-4.57 11.48h5.792v-1.2H9.479a3.97 3.97 0 0 1-3.969-3.968v-.97h-1.2v.97a5.17 5.17 0 0 0 5.17 5.169m8.757 2.355a.85.85 0 0 1-1.36-.68V14.77a.85.85 0 0 1 1.344-.691l3.227 2.305a.85.85 0 0 1 .016 1.372z",clipRule:"evenodd"})),e9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.529 7.4a8.774 8.774 0 0 1 16.211 3.8h1.204A9.975 9.975 0 0 0 3.851 6.25V4h-1.2v3.688c0 .504.409.912.913.912h3.687V7.4zM20.7 13.146a9 9 0 0 0 .039-.346h1.204a9.975 9.975 0 0 1-19.886 0h1.205a8.775 8.775 0 0 0 17.438.346M8.826 15.352V8.649h1.2v6.703zm3.6-1.202v-4.3h1.55v4.3zm-.35-5.5a.85.85 0 0 0-.85.85v5c0 .47.381.85.85.85h2.25c.47 0 .85-.38.85-.85v-5a.85.85 0 0 0-.85-.85z",clipRule:"evenodd"})),t9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.529 7.4a8.774 8.774 0 0 1 16.211 3.8h1.204A9.975 9.975 0 0 0 3.851 6.25V4h-1.2v3.688c0 .504.409.912.913.912h3.687V7.4zM20.7 13.146a9 9 0 0 0 .039-.346h1.204a9.975 9.975 0 0 1-19.886 0h1.205a8.775 8.775 0 0 0 17.438.346m-11.8 2.206V8.649h1.2v6.703zm6.25-5.502h-2.424v1.55h1.65c.47 0 .85.38.85.85v2.25c0 .47-.38.85-.85.85H11.6v-1.2h2.426V12.6h-1.65a.85.85 0 0 1-.85-.85V9.5c0-.47.38-.85.85-.85h2.774z",clipRule:"evenodd"})),n9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.368 4.549A8.8 8.8 0 0 0 4.528 7.4h2.723v1.2H3.564a.91.91 0 0 1-.913-.912V4h1.2v2.25a9.974 9.974 0 0 1 18.093 4.95H20.74A8.775 8.775 0 0 0 7.368 4.55M20.74 12.8h1.204a9.975 9.975 0 0 1-19.886 0h1.205a8.775 8.775 0 0 0 17.477 0m-5.988-2.95H10.31v1.55h3.842c.41 0 .741.332.741.741v2.469a.74.74 0 0 1-.74.74H9.252v-1.2h4.441V12.6H9.851a.74.74 0 0 1-.741-.74V9.39c0-.409.332-.74.74-.74h4.902z",clipRule:"evenodd"})),o9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.668 6.5v11h1.2v-4.738l6.718 4.478a.85.85 0 0 0 1.321-.707v-3.36l6.1 4.067a.85.85 0 0 0 1.322-.707V7.467a.85.85 0 0 0-1.321-.707l-6.1 4.067v-3.36a.85.85 0 0 0-1.322-.707l-6.718 4.478V6.5z",clipRule:"evenodd"})),l9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.217 6.76a.85.85 0 0 1 1.321.707v3.36l6.1-4.068a.85.85 0 0 1 1.322.708v9.065a.85.85 0 0 1-1.321.708l-6.1-4.067v3.36a.85.85 0 0 1-1.322.707l-6.8-4.533a.85.85 0 0 1 0-1.415z",clipRule:"evenodd"})),i9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4 8.4A11.6 11.6 0 0 1 15.6 20h-1.2A10.4 10.4 0 0 0 4 9.6z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4 3.4A16.6 16.6 0 0 1 20.6 20h-1.2A15.4 15.4 0 0 0 4 4.6zM6.85 14.3a2.85 2.85 0 1 0 0 5.7 2.85 2.85 0 0 0 0-5.7",clipRule:"evenodd"})),r9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M14.333 2.875a2.6 2.6 0 1 0 0 5.2 2.6 2.6 0 0 0 0-5.2M8.623 12.965a3.9 3.9 0 0 1 4.177-2.87l-.677 2.368h-.003l-1.14 4a3.4 3.4 0 0 1-4.204 2.33l-.33 1.153a4.6 4.6 0 0 0 5.531-2.697 3.897 3.897 0 0 1 3.477 3.874h1.2a5.1 5.1 0 0 0-4.318-5.037l1.205-4.216a4.6 4.6 0 0 0 4.014 2.355v-1.2a3.4 3.4 0 0 1-3.398-3.383.6.6 0 0 0-.435-.592l-.012-.004a5.1 5.1 0 0 0-6.246 3.609z",clipRule:"evenodd"})),a9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M4.449 15.934a.85.85 0 0 0-.724 1.295l1.826 2.967a.85.85 0 0 0 .724.404h11.454a.85.85 0 0 0 .724-.404l1.825-2.967a.85.85 0 0 0-.724-1.295zM12.852 4.682c0-.792-.987-1.154-1.499-.55l-7.46 8.8a.85.85 0 0 0 .648 1.399h7.46c.47 0 .85-.38.85-.85z"})),s9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.284 3.4a.886.886 0 0 0-.886.886v15.429c0 .489.397.885.886.885h3.114v-6.314c0-.49.397-.886.886-.886h7.429c.489 0 .885.397.885.886V20.6h3.115c.489 0 .885-.396.885-.885V7.547a.89.89 0 0 0-.259-.626L17.078 3.66a.89.89 0 0 0-.626-.26zm4.314 11.2v5.8h6.8v-5.8zm0-8.4a1.9 1.9 0 1 0 3.8 0h1.2a3.1 3.1 0 1 1-6.2 0z",clipRule:"evenodd"})),c9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.529 2.147a.85.85 0 0 0-1.062 0L8.8 4.281l-3.393.376a.85.85 0 0 0-.75.751l-.378 3.397-2.132 2.664a.85.85 0 0 0 0 1.062l2.132 2.666.378 3.393a.85.85 0 0 0 .75.751l3.393.377 2.667 2.133a.85.85 0 0 0 1.062 0l2.665-2.133 3.396-.377a.85.85 0 0 0 .75-.75l.377-3.392 2.134-2.668a.85.85 0 0 0 0-1.062l-2.133-2.666-.377-3.395a.85.85 0 0 0-.751-.75l-3.395-.378z",clipRule:"evenodd"})),d9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.556 2.332A.85.85 0 0 0 2.35 3.3L4.526 12l-2.175 8.702a.85.85 0 0 0 1.205.966l17.816-8.908a.85.85 0 0 0 0-1.52zM7.34 12.601h6v-1.2h-6z",clipRule:"evenodd"})),u9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M5.848 8a.4.4 0 1 1 .8 0 .4.4 0 0 1-.8 0"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 5.25c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v5.5c0 .47-.38.85-.85.85H3.373a.85.85 0 0 1-.85-.85zM6.248 6.4a1.6 1.6 0 1 0 0 3.2 1.6 1.6 0 0 0 0-3.2",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M5.848 16a.4.4 0 1 1 .8 0 .4.4 0 0 1-.8 0"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.523 13.25c0-.47.381-.85.85-.85h17.25c.47 0 .85.38.85.85v5.5c0 .47-.38.85-.85.85H3.373a.85.85 0 0 1-.85-.85zm3.725 1.15a1.6 1.6 0 1 0 0 3.2 1.6 1.6 0 0 0 0-3.2",clipRule:"evenodd"})),h9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M16.644 3.314a2.97 2.97 0 0 0-2.86 3.784l-5.16 2.98a2.971 2.971 0 1 0 0 3.845l5.16 2.98q-.11.388-.112.812a2.971 2.971 0 1 0 .782-2.01L9.247 12.7a3 3 0 0 0 0-1.398l5.207-3.006a2.971 2.971 0 1 0 2.19-4.98",clipRule:"evenodd"})),g9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m8.18 7.927-.848-.849 4.066-4.065a.85.85 0 0 1 1.202 0l4.066 4.065-.849.849-3.219-3.219v10.551h-1.2V4.71zm-4.957 3.332a8.775 8.775 0 1 0 17.55 0h1.2a9.973 9.973 0 0 1-15.516 8.294 9.98 9.98 0 0 1-4.434-8.294z",clipRule:"evenodd"})),v9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"m3.09 3.917.848-.848 16.97 16.97-.848.849z"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.399 6.49v7.288h.01a8.6 8.6 0 0 0 13.756 6.477zM19.1 18.23a9 9 0 0 1-.75.947L3.71 4.537a.9.9 0 0 1 .295-.157l.958-.287zm.804-1.459a8.6 8.6 0 0 0 .686-2.993h.009V5.195a.85.85 0 0 0-.606-.815l-7.75-2.325a.85.85 0 0 0-.488 0L6.703 3.571z",clipRule:"evenodd"})),m9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.243 2.077a.85.85 0 0 0-.489 0l-7.75 2.325a.85.85 0 0 0-.606.814V13.4a8.6 8.6 0 1 0 17.2 0V5.216a.85.85 0 0 0-.605-.814z",clipRule:"evenodd"})),p9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.249 15.84a2.475 2.475 0 0 0-2.401 1.875h1.276a1.275 1.275 0 0 1 2.25 0h1.276a2.474 2.474 0 0 0-2.401-1.875m2.625 3.075a1.27 1.27 0 0 0 1.125.675 1.27 1.27 0 0 0 1.125-.675H14.4a2.475 2.475 0 0 1-4.802 0zm-3.974 0H5.624a1.273 1.273 0 0 1-2.25 0H2.098a2.475 2.475 0 0 0 4.802 0m7.724-1.2h-1.276a2.475 2.475 0 0 1 4.802 0h-1.276a1.276 1.276 0 0 0-2.25 0m2.474 1.2a2.475 2.475 0 0 0 4.802 0h-1.276a1.273 1.273 0 0 1-2.027.302 1.3 1.3 0 0 1-.223-.302z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M10.414 3.795q.096.096.178.203l.017.023a2 2 0 0 1 .375.939c.018.137-.096.249-.234.249h-3.5c-.138 0-.252-.112-.234-.25a2 2 0 0 1 .224-.7l.01-.018q.06-.108.133-.21l.008-.01.009-.012a2 2 0 0 1 3.014-.214M6.6 7.21v2.4H5.4V6.86c0-.47.38-.85.85-.85h9.57a.85.85 0 0 1 .806.58l.943 2.83-1.138.379-.864-2.59zM2.34 11.515a.85.85 0 0 1 .836-1.006H20.79a.85.85 0 0 1 .817 1.088l-1.605 5.5a.85.85 0 0 1-.816.612h-.008l-.059-.236a3.474 3.474 0 0 0-6.743 0l-.059.236h-.639l-.059-.236a3.474 3.474 0 0 0-6.743 0l-.059.236h-.617a.85.85 0 0 1-.836-.694z"}),l.createElement("path",{fill:"currentColor",d:"M7.127 17.71H5.849a2.475 2.475 0 0 1 4.8 0H9.37a1.274 1.274 0 0 0-2.244 0M14.627 17.71h-1.278a2.475 2.475 0 0 1 4.8 0H16.87a1.27 1.27 0 0 0-1.122-.67 1.27 1.27 0 0 0-1.122.67"})),f9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.597 3.435a4.813 4.813 0 0 1 8.217 3.404v.121h-1.2V6.84a3.613 3.613 0 1 0-7.227 0v.121h-1.2V6.84c0-1.277.508-2.501 1.41-3.404M4.027 9.406c0-.47.38-.85.85-.85h14.248c.469 0 .85.38.85.85v11.72c0 .469-.381.85-.85.85H4.877a.85.85 0 0 1-.85-.85zm11.588 1.35a3.614 3.614 0 0 1-7.227 0h-1.2a4.813 4.813 0 0 0 9.627 0z",clipRule:"evenodd"})),w9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M15.656 20.819c.898 0 1.626-.728 1.626-1.626h-3.251c0 .898.727 1.625 1.625 1.625"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M14.03 19.193a1.62 1.62 0 0 0 1.626 1.625 1.621 1.621 0 0 0 1.626-1.626z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M7.295 20.819c.898 0 1.626-.728 1.626-1.626H5.669c0 .898.728 1.625 1.626 1.625"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.67 19.193a1.62 1.62 0 0 0 1.625 1.625 1.622 1.622 0 0 0 1.626-1.626z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M5.338 7.102a.85.85 0 0 0-.85.85v8.79c0 .47.38.85.85.85h12.91a.85.85 0 0 0 .824-.643l2.198-8.79a.85.85 0 0 0-.825-1.057z"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.688 5.503A2.923 2.923 0 0 0 2.766 2.58v1.2a1.723 1.723 0 0 1 1.722 1.723z",clipRule:"evenodd"})),E9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M17.938 9.165a.85.85 0 0 1-1.36-.68V3.428a.85.85 0 0 1 1.344-.692l3.454 2.467a.85.85 0 0 1 .016 1.372zm-9.317.042A6.94 6.94 0 0 0 2.266 5.06v1.2a5.745 5.745 0 1 1 0 11.49v1.2a6.95 6.95 0 0 0 6.355-4.145 6.94 6.94 0 0 0 6.356 4.146v-1.2a5.745 5.745 0 1 1 0-11.49v-1.2a6.95 6.95 0 0 0-6.356 4.145m7.96 11.364c0 .7.799 1.1 1.36.68l3.453-2.59a.85.85 0 0 0-.016-1.372l-3.454-2.467a.85.85 0 0 0-1.344.692z",clipRule:"evenodd"})),y9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.613 5.5v13h1.2v-5.76l8.25 5.5a.85.85 0 0 0 1.32-.707V6.467a.85.85 0 0 0-1.32-.707l-8.25 5.5V5.5z",clipRule:"evenodd"})),x9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.398 13.637-5.48-5.48.848-.848L12 12.54l5.233-5.232.848.848-5.48 5.48a.85.85 0 0 1-1.202 0M18 16.69H6v-1.2h12z",clipRule:"evenodd"})),C9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M17.384 18.5v-13h-1.2v5.76l-8.25-5.5a.85.85 0 0 0-1.32.707v11.066a.85.85 0 0 0 1.32.707l8.25-5.5v5.76z",clipRule:"evenodd"})),b9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m10.361 11.398 5.48-5.48.849.848L11.457 12l5.233 5.233-.849.848-5.48-5.48a.85.85 0 0 1 0-1.202M7.309 18V6h1.2v12z",clipRule:"evenodd"})),R9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m13.637 12.602-5.48 5.48-.848-.848L12.54 12 7.31 6.768l.848-.848 5.48 5.48a.85.85 0 0 1 0 1.202M16.69 6v12h-1.2V6z",clipRule:"evenodd"})),S9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.6 10.361 5.48 5.48-.848.849-5.233-5.233-5.233 5.233-.848-.849 5.48-5.48a.85.85 0 0 1 1.202 0M5.999 7.309h12v1.2h-12z",clipRule:"evenodd"})),I9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M19.04 18.192A9.34 9.34 0 0 0 21.375 12 9.375 9.375 0 0 0 12 2.625 9.34 9.34 0 0 0 5.808 4.96zm-.849.848A9.34 9.34 0 0 1 12 21.375 9.375 9.375 0 0 1 2.625 12 9.34 9.34 0 0 1 4.96 5.809z",clipRule:"evenodd"})),T9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.6 4.424a3.6 3.6 0 1 0 0 7.2 3.6 3.6 0 0 0 0-7.2m12.8 7.952a3.6 3.6 0 1 0 0 7.2 3.6 3.6 0 0 0 0-7.2m-7.602-4.952 10.2-.044.005 1.2-10.2.044zm2.4 7.956-10.2.044.005 1.2 10.2-.044z",clipRule:"evenodd"})),M9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m7.62 13.098-.043-10.6-1.2.005.044 10.6zM20.578 6.1a3.6 3.6 0 1 0-7.2 0 3.6 3.6 0 0 0 7.2 0m-9.951 11.8a3.6 3.6 0 1 0-7.2 0 3.6 3.6 0 0 0 7.2 0m6.951-7.002.044 10.6-1.2.005-.044-10.6z",clipRule:"evenodd"})),z9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.39 2.025a.85.85 0 0 0-.85.85v18.25c0 .47.38.85.85.85h11.218c.47 0 .85-.38.85-.85V2.875a.85.85 0 0 0-.85-.85zm5.608 14a1.975 1.975 0 1 0 0 3.95 1.975 1.975 0 0 0 0-3.95m-2-10.325h4V4.5h-4z",clipRule:"evenodd"})),O9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.023 12c0-5.509 4.466-9.975 9.975-9.975 5.51 0 9.975 4.466 9.975 9.975 0 5.51-4.465 9.975-9.975 9.975S2.023 17.51 2.023 12m6.075-3a.4.4 0 1 1 .8 0 .4.4 0 0 1-.8 0m.4-1.6a1.6 1.6 0 1 0 0 3.2 1.6 1.6 0 0 0 0-3.2m7 1.2a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m-1.9 8.4a5.4 5.4 0 0 1-5.4-5.4h-1.2a6.6 6.6 0 1 0 13.2 0h-1.2a5.4 5.4 0 0 1-5.4 5.4",clipRule:"evenodd"})),V9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.248 3.4a.85.85 0 0 0-.85.85v15.5c0 .47.381.85.85.85h11.5c.47 0 .85-.38.85-.85V4.25a.85.85 0 0 0-.85-.85zm5.75 3.7a.4.4 0 1 0 0 .8.4.4 0 0 0 0-.8m-1.6.4a1.6 1.6 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0m-.8 7a2.4 2.4 0 1 1 4.8 0 2.4 2.4 0 0 1-4.8 0m2.4-3.6a3.6 3.6 0 1 0 0 7.2 3.6 3.6 0 0 0 0-7.2",clipRule:"evenodd"})),F9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.373 2.525a.85.85 0 0 0-.85.85v17.25c0 .47.381.85.85.85h17.25c.47 0 .85-.38.85-.85V3.375a.85.85 0 0 0-.85-.85z",clipRule:"evenodd"})),P9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.37 3.508c-.487-1.25-2.255-1.25-2.742 0l-1.84 4.72-4.704.341c-1.34.098-1.86 1.793-.804 2.624l4.062 3.2-1.855 4.93c-.505 1.34 1.008 2.539 2.198 1.74l4.325-2.903 4.7 2.93c1.232.767 2.713-.52 2.125-1.846l-2.159-4.866 4.042-3.185c1.056-.831.536-2.526-.804-2.624l-4.705-.342z",clipRule:"evenodd"})),k9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M15.496 20.351a.85.85 0 0 1-.601.25H4.248a.85.85 0 0 1-.85-.85V4.25c0-.47.381-.85.85-.85h15.5c.47 0 .85.38.85.85v10.646a.85.85 0 0 1-.248.6zm-2.098-6.1v3.538h1.2V14.6h3.2v-1.2h-3.55a.85.85 0 0 0-.85.85",clipRule:"evenodd"})),B9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M21.375 12a9.375 9.375 0 1 1-18.75 0 9.375 9.375 0 1 1 18.75 0m-12.2-3.675a.85.85 0 0 0-.85.85v5.65c0 .47.38.85.85.85h5.65c.47 0 .85-.38.85-.85v-5.65a.85.85 0 0 0-.85-.85z",clipRule:"evenodd"})),A9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.248 5.4a.85.85 0 0 0-.85.85v11.5c0 .47.381.85.85.85h11.5c.47 0 .85-.38.85-.85V6.25a.85.85 0 0 0-.85-.85z",clipRule:"evenodd"})),L9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M16.625 12a4.625 4.625 0 1 1-9.25 0 4.625 4.625 0 0 1 9.25 0"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.6 19.6V22h-1.2v-2.4zM12.6 2v2.4h-1.2V2zM4.4 12.6H2v-1.2h2.4zM22 12.6h-2.4v-1.2H22zM7.05 17.798l-1.697 1.697-.848-.848 1.697-1.697zM19.495 5.353 17.798 7.05l-.849-.848 1.697-1.697zM16.95 17.798l1.697 1.697.848-.848-1.697-1.697zM4.504 5.353 6.201 7.05l.849-.848-1.697-1.697z",clipRule:"evenodd"})),_9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.367 2.875c0-.47.38-.85.85-.85H18.78c.47 0 .85.38.85.85v18.25c0 .47-.38.85-.85.85H5.217a.85.85 0 0 1-.85-.85zM11.223 18a.775.775 0 1 1 1.55 0 .775.775 0 0 1-1.55 0m.775-1.975a1.975 1.975 0 1 0 0 3.95 1.975 1.975 0 0 0 0-3.95",clipRule:"evenodd"})),N9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.692 3.736a.85.85 0 0 0-.841.827l-.175 6.658a.85.85 0 0 0 .249.623l8.232 8.233a.85.85 0 0 0 1.202 0l6.718-6.718a.85.85 0 0 0 0-1.202l-8.234-8.234a.85.85 0 0 0-.61-.25zm2.896 4.417a.4.4 0 1 1 .565-.565.4.4 0 0 1-.565.565M6.739 6.74a1.6 1.6 0 1 0 2.263 2.263 1.6 1.6 0 0 0-2.263-2.263",clipRule:"evenodd"})),$9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.998 3.225a8.775 8.775 0 1 0 0 17.55 8.775 8.775 0 0 0 0-17.55M2.023 12c0-5.509 4.466-9.975 9.975-9.975 5.51 0 9.975 4.466 9.975 9.975 0 5.51-4.465 9.975-9.975 9.975S2.023 17.51 2.023 12",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.523 12a6.475 6.475 0 1 1 12.95 0 6.475 6.475 0 0 1-12.95 0M12 13.773a1.772 1.772 0 1 0 0-3.545 1.772 1.772 0 0 0 0 3.545",clipRule:"evenodd"})),H9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.999 2.02a3 3 0 0 0-3 3v.205H6.183a.85.85 0 0 0-.812.6l-1.935 6.287a.9.9 0 0 0-.038.25v7.963c0 .47.381.85.85.85h1.9c.47 0 .85-.38.85-.85v-1.4h5V18.5v.425h5v1.4c0 .47.38.85.85.85h1.9c.47 0 .85-.38.85-.85v-7.963a.9.9 0 0 0-.037-.25l-1.935-6.287a.85.85 0 0 0-.812-.6h-2.815V5.02a3 3 0 0 0-3-3m-5.8 13.304a1.3 1.3 0 1 1 2.6 0 1.3 1.3 0 0 1-2.6 0m9 0a1.3 1.3 0 1 1 2.6 0 1.3 1.3 0 0 1-2.6 0m-9.4-2.4h12.399v-1.2h-12.4z",clipRule:"evenodd"})),D9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.73 11.088 4.915 5.275l-.849.849 5.566 5.565-5.567 5.566.849.849 5.814-5.814a.85.85 0 0 0 0-1.202M19.5 18.3h-8v-1.2h8z",clipRule:"evenodd"})),j9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.837 17.697a2.053 2.053 0 0 1-4-.65V14.6h-4.12a.85.85 0 0 1-.844-.949l.941-8a.85.85 0 0 1 .844-.75h9.928c.47 0 .85.38.85.85v6.5c0 .469-.38.85-.85.85H13.37z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M21.136 9a4.1 4.1 0 0 1-3.807 4.09.837.837 0 0 1-.893-.84v-6.5c0-.457.38-.876.893-.84A4.1 4.1 0 0 1 21.136 9"})),W9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M14.114 4.9c-.883 0-1.668.566-1.947 1.404L10.635 10.9H9.417a.85.85 0 0 0-.85.85v6.5c0 .47.38.85.85.85h9.928a.85.85 0 0 0 .844-.75l.941-8a.85.85 0 0 0-.844-.95h-4.119V6.953c0-1.134-.919-2.053-2.053-2.053M2.867 15a4.1 4.1 0 0 1 3.808-4.09.837.837 0 0 1 .892.84v6.5c0 .458-.379.877-.892.84A4.1 4.1 0 0 1 2.867 15",clipRule:"evenodd"})),G9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.767 6.212c.388-.388 1.084-.324 1.349.219a5.972 5.972 0 0 1-7.545 8.18l-4.266 4.267-3.38-3.38 4.266-4.266a5.971 5.971 0 0 1 8.18-7.546c.544.266.608.96.22 1.35L14.164 8.46l1.177 1.177zM3.793 16.629l-.015.015a2.39 2.39 0 1 0 3.38 3.38l.015-.015z",clipRule:"evenodd"})),U9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.941 5.73A2.73 2.73 0 0 1 6.672 3h10.655a2.73 2.73 0 0 1 2.73 2.73v11.954c0 .47-.38.85-.85.85H4.792a.85.85 0 0 1-.85-.85zM17.54 19.758H6.46v1.2h11.08zm-10.8-9.502h4.66V5.778h1.2v4.478h4.66v1.2H6.74zm1.42 3.1a1.365 1.365 0 1 0 0 2.731 1.365 1.365 0 0 0 0-2.73m7.782 0a1.365 1.365 0 1 0 0 2.731 1.365 1.365 0 0 0 0-2.73",clipRule:"evenodd"})),K9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M14.546 3.084a3.6 3.6 0 0 1 1.042 2.246.28.28 0 0 1-.288.3H8.7a.28.28 0 0 1-.288-.3 3.6 3.6 0 0 1 6.134-2.246"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3 8.43h2.4v12.72c0 .469.38.85.85.85h11.5c.47 0 .85-.381.85-.851l-.004-11.119.003-1.6H21v-1.2H3zm6.4 9.07v-6h1.2v6zm4-6v6h1.2v-6z",clipRule:"evenodd"})),q9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m3.672 8.522 5.48 5.48a.85.85 0 0 0 1.202 0l3.399-3.399 4.523 4.523h-3.18v1.2h4.38c.469 0 .85-.38.85-.85v-4.378h-1.2v3.18l-4.772-4.77a.85.85 0 0 0-1.202 0l-3.399 3.399L4.52 7.674z",clipRule:"evenodd"})),Y9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20.325 12.902V8.524a.85.85 0 0 0-.85-.85h-4.379v1.2h3.18l-4.523 4.523-3.399-3.4a.85.85 0 0 0-1.202 0l-5.48 5.48.848.85 5.233-5.233 3.399 3.399a.85.85 0 0 0 1.202 0l4.771-4.771v3.18z",clipRule:"evenodd"})),X9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.737 4.583a.85.85 0 0 0-1.476 0l-8.07 14.12a.85.85 0 0 0 .738 1.272h16.139a.85.85 0 0 0 .738-1.271z",clipRule:"evenodd"})),Z9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.82 17.936a2 2 0 0 1-1.572.763 2 2 0 0 1-1.609-.812l-.003-.004a2 2 0 0 1-.372-.935c-.017-.137.096-.25.234-.25h3.5c.138 0 .252.113.235.25a2 2 0 0 1-.235.72m-.14.219-.038.049m.037-.049q.075-.1.136-.21ZM17.82 17.936a2 2 0 0 1-1.572.763 2 2 0 0 1-1.609-.812l-.003-.004a2 2 0 0 1-.138-.215l-.016-.03a2 2 0 0 1-.218-.69c-.017-.137.096-.25.234-.25h3.5c.138 0 .252.113.235.25a2 2 0 0 1-.413.988M2.998 4.7a.85.85 0 0 0-.85.85v9.5c0 .469.381.85.85.85h11.3c.47 0 .85-.381.85-.85v-9.5a.85.85 0 0 0-.85-.85zM15.948 8.55c0-.47.38-.85.85-.85h2.777a.85.85 0 0 1 .796.55l1.478 3.94v2.86c0 .469-.38.85-.85.85h-4.2a.85.85 0 0 1-.85-.85zm3.425.465.918 2.444c.038.114-.036.235-.144.235h-1.393c-.085 0-.154-.078-.154-.174V9.079c0-.097.069-.175.154-.175l.475-.003c.064 0 .122.046.145.114",clipRule:"evenodd"})),J9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.423 4.576 11.247 7.4h1.503l2.824-2.824.849.849L14.447 7.4h6.051c.47 0 .85.381.85.85v10.723c0 .47-.38.85-.85.85h-17a.85.85 0 0 1-.85-.85V8.25c0-.469.381-.85.85-.85H9.55L7.574 5.425z",clipRule:"evenodd"})),Q9=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.098 5.378v3.4h-1.2v-3.75c0-.47.381-.85.85-.85h14.5c.47 0 .85.38.85.85v3.75h-1.2v-3.4h-6.3v13.246h2.067v1.2H9.332v-1.2h2.066V5.378z",clipRule:"evenodd"})),ew=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M17.545 20.345a3.6 3.6 0 0 1-6.146-2.546h1.2a2.4 2.4 0 0 0 4.8 0h1.2a3.6 3.6 0 0 1-1.054 2.546M5.21 5.411a9.6 9.6 0 0 1 16.385 6.522.845.845 0 0 1-.846.867h-8.15v3.4h-1.2v-3.4h-8.15a.845.845 0 0 1-.846-.867A9.6 9.6 0 0 1 5.21 5.411",clipRule:"evenodd"})),tw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M17.071 9.61V3.73h1.2v5.88zm-5.069 7.873a6.27 6.27 0 0 1-6.27-6.27h1.2a5.07 5.07 0 0 0 10.139 0h1.2a6.27 6.27 0 0 1-6.269 6.27M4.828 20.28h14.348v-1.2H4.828zm.905-16.55v5.88h1.2V3.73z",clipRule:"evenodd"})),nw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.67 14.246 2.558 2.557a.25.25 0 0 0 .354 0l.495-.495a.25.25 0 0 0 0-.353l-3.497-3.497a.72.72 0 0 0-1.015 0L8.07 15.954a.25.25 0 0 0 0 .354l.495.495a.25.25 0 0 0 .354 0l2.553-2.553v6.3c0 .137.112.25.25.25h.7a.25.25 0 0 0 .25-.25z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",d:"M7.035 8.204a5.004 5.004 0 0 1 10.009 0v1.13a4.533 4.533 0 0 1 1.142 8.917l-.038.01-1.076.138h-3.2v-1.256l.508.509a1.45 1.45 0 0 0 2.05 0l.495-.495a1.45 1.45 0 0 0 0-2.05L13.43 11.61a1.92 1.92 0 0 0-2.712 0L7.22 15.106a1.45 1.45 0 0 0 0 2.05l.495.495a1.45 1.45 0 0 0 2.05 0l.505-.505V18.4h-3.27l-1.072-.12-.037-.009a4.534 4.534 0 0 1 1.074-8.936h.069z"})),ow=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M10.015 3.71a4.238 4.238 0 1 0 0 8.477 4.238 4.238 0 0 0 0-8.476M10.015 13.713a5.977 5.977 0 0 0-5.971 5.7.84.84 0 0 0 .844.877h10.254c.462 0 .867-.38.844-.878a5.977 5.977 0 0 0-5.971-5.7"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m15.474 14.485-1.87-1.87.848-.85 1.623 1.624 3.035-3.035.848.849-3.282 3.282a.85.85 0 0 1-1.202 0",clipRule:"evenodd"})),lw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10m0-6.9a3.4 3.4 0 0 0-3.4 3.4H7.4a4.6 4.6 0 0 1 9.2 0h-1.2a3.4 3.4 0 0 0-3.4-3.4M9.6 9.125a2.4 2.4 0 1 1 4.8 0 2.4 2.4 0 0 1-4.8 0m2.4-3.6a3.6 3.6 0 1 0 0 7.2 3.6 3.6 0 0 0 0-7.2",clipRule:"evenodd"})),iw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.984 3.71a4.238 4.238 0 1 0 0 8.477 4.238 4.238 0 0 0 0-8.476m0 10.003a5.977 5.977 0 0 0-5.971 5.7.84.84 0 0 0 .843.877h10.255c.462 0 .866-.38.843-.878a5.98 5.98 0 0 0-5.97-5.7M19.985 13.29h-6v-1.2h6z",clipRule:"evenodd"})),rw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.984 3.71a4.238 4.238 0 1 0 0 8.477 4.238 4.238 0 0 0 0-8.476m0 10.003a5.977 5.977 0 0 0-5.971 5.7.84.84 0 0 0 .843.877h10.255c.462 0 .866-.38.843-.878a5.98 5.98 0 0 0-5.97-5.7M16.385 13.29v2.4h1.2v-2.4h2.4v-1.2h-2.4v-2.4h-1.2v2.4h-2.4v1.2z",clipRule:"evenodd"})),aw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M10.214 3.71a4.238 4.238 0 1 0 0 8.477 4.238 4.238 0 0 0 0-8.476M10.214 13.713a5.977 5.977 0 0 0-5.97 5.7.84.84 0 0 0 .843.877H15.34c.463 0 .867-.38.844-.878a5.977 5.977 0 0 0-5.971-5.7M17.216 13.539l1.697 1.697.848-.85-1.697-1.696 1.697-1.697-.848-.849-1.697 1.697-1.697-1.697-.849.849 1.697 1.697-1.697 1.697.849.849z"})),sw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.999 3.71a4.238 4.238 0 1 0 0 8.477 4.238 4.238 0 0 0 0-8.476m0 10.003a5.977 5.977 0 0 0-5.97 5.7.84.84 0 0 0 .843.877h10.254c.463 0 .867-.38.844-.878l-.6.028.6-.028a5.98 5.98 0 0 0-5.97-5.7",clipRule:"evenodd"})),cw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M12.18 4.597a4.479 4.479 0 1 1 1.708 6.634c.233-.645.36-1.342.36-2.067 0-1.82-.8-3.454-2.068-4.567M21.75 18.9a5.606 5.606 0 0 0-9.513-3.764 7.38 7.38 0 0 1 2.99 4.014h6.28c.137 0 .25-.112.244-.25"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.172 4.685a4.479 4.479 0 1 0 0 8.957 4.479 4.479 0 0 0 0-8.957M2.25 21.034a5.606 5.606 0 0 1 11.201 0 .24.24 0 0 1-.244.25H2.495a.24.24 0 0 1-.245-.25",clipRule:"evenodd"})),dw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.47 2.186a.85.85 0 0 1 1.057 0l2.657 2.125 3.381.375a.85.85 0 0 1 .749.748l.375 3.382 2.125 2.656a.85.85 0 0 1 0 1.058l-2.125 2.657-.376 3.379a.85.85 0 0 1-.748.748l-3.382.376-2.656 2.124a.846.846 0 0 1-1.057 0L8.813 19.69l-3.38-.376a.85.85 0 0 1-.748-.748l-.375-3.38-2.124-2.656a.85.85 0 0 1 0-1.058l2.123-2.654.376-3.384a.85.85 0 0 1 .748-.748l3.38-.375zM7.095 12.28l2.882 2.883c.331.33.867.33 1.198 0l5.73-5.73-.845-.846-5.484 5.484-2.636-2.636z",clipRule:"evenodd"})),uw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"m3.02 3.938.849-.848 16.97 16.97-.848.849zM2.925 5.54a.85.85 0 0 0-.382.71v11.5c0 .469.38.85.85.85h11.5a.85.85 0 0 0 .71-.383z"}),l.createElement("path",{fill:"currentColor",d:"M15.743 14.964v1.697L4.481 5.399H6.18zM17.807 15.33l-1.036-1.035a.9.9 0 0 1-.03-.224V9.927a.85.85 0 0 1 .32-.664l3.02-2.409a.85.85 0 0 1 1.38.665v8.961a.85.85 0 0 1-1.38.665zM15.743 13.267 7.876 5.399h7.017c.47 0 .85.38.85.85z"})),hw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.543 6.25c0-.47.38-.85.85-.85h11.5c.47 0 .85.38.85.85v11.5c0 .47-.38.85-.85.85h-11.5a.85.85 0 0 1-.85-.85zM20.08 6.855a.85.85 0 0 1 1.38.665v8.961a.85.85 0 0 1-1.38.664l-3.019-2.408a.85.85 0 0 1-.32-.665V9.93a.85.85 0 0 1 .32-.665z",clipRule:"evenodd"})),gw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.398 12a3.975 3.975 0 1 1 6.821 2.775h5.475a3.975 3.975 0 1 1 2.846 1.2H6.374A3.975 3.975 0 0 1 2.397 12",clipRule:"evenodd"})),vw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M2.023 12a3.6 3.6 0 0 1 3.3-3.588c.522-.043.9.383.9.838v5.5c0 .454-.378.88-.9.837a3.6 3.6 0 0 1-3.3-3.588M14.423 4.533a.85.85 0 0 0-1.394-.653l-5.5 4.584a.85.85 0 0 0-.306.653v5.765a.85.85 0 0 0 .306.653l5.5 4.584a.85.85 0 0 0 1.394-.653z"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M18.427 9.594a3.402 3.402 0 0 1-2.406 5.808v-1.2a2.202 2.202 0 1 0 0-4.405v-1.2c.902 0 1.768.359 2.406.997",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20.244 7.777a5.971 5.971 0 0 1-4.222 10.194v-1.2a4.771 4.771 0 0 0 0-9.543v-1.2c1.583 0 3.102.63 4.222 1.75",clipRule:"evenodd"})),mw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M3.2 12a3.6 3.6 0 0 1 3.3-3.588c.52-.043.9.383.9.838v5.5c0 .454-.38.88-.9.837a3.6 3.6 0 0 1-3.3-3.588M15.6 4.533a.85.85 0 0 0-1.395-.653l-5.5 4.584a.85.85 0 0 0-.306.653v5.765a.85.85 0 0 0 .306.653l5.5 4.584a.85.85 0 0 0 1.394-.653z"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M19.745 9.454a3.6 3.6 0 0 1-2.546 6.146v-1.2a2.4 2.4 0 1 0 0-4.8V8.4a3.6 3.6 0 0 1 2.546 1.054",clipRule:"evenodd"})),pw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M2.023 12a3.6 3.6 0 0 1 3.3-3.588c.522-.043.9.383.9.838v5.5c0 .454-.378.88-.9.837a3.6 3.6 0 0 1-3.3-3.588M14.423 4.533a.85.85 0 0 0-1.394-.653l-5.5 4.584a.85.85 0 0 0-.306.653v5.765a.85.85 0 0 0 .306.653l5.5 4.584a.85.85 0 0 0 1.394-.653z"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m18.96 12.848 2.143 2.142.848-.848L19.81 12l2.142-2.143-.848-.848-2.143 2.142-2.142-2.142-.848.848L18.112 12l-2.142 2.142.848.848z",clipRule:"evenodd"})),fw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M5.398 12a3.6 3.6 0 0 1 3.3-3.588c.522-.043.9.383.9.838v5.5c0 .454-.378.88-.9.837a3.6 3.6 0 0 1-3.3-3.588M17.798 4.533a.85.85 0 0 0-1.394-.653l-5.5 4.584a.85.85 0 0 0-.306.653v5.765a.85.85 0 0 0 .305.653l5.5 4.584a.85.85 0 0 0 1.395-.653z"})),ww=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M11.748 2.75a2.6 2.6 0 1 0 0 5.2 2.6 2.6 0 0 0 0-5.2"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.348 8.65v-.1h-1.2v.001a4.6 4.6 0 0 0-4.5 4.6h1.2a3.4 3.4 0 0 1 3.3-3.4v6.399a3.9 3.9 0 0 1-3.9 3.9v1.2a5.1 5.1 0 0 0 5.061-4.465 4.4 4.4 0 0 1 3.84 4.365h1.2a5.6 5.6 0 0 0-5-5.568v-3.645a5.09 5.09 0 0 0 3.9 1.813v-1.2a3.9 3.9 0 0 1-3.9-3.9",clipRule:"evenodd"})),Ew=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"M16.026 16.952A6.36 6.36 0 0 1 12 18.382a6.36 6.36 0 0 1-4.026-1.43q0 .057.008.114l.496 3.974a.926.926 0 0 0 .92.81h5.205c.467 0 .86-.347.919-.81l.496-3.973a1 1 0 0 0 .008-.115M8.478 2.962a.926.926 0 0 1 .92-.812h5.205c.467 0 .86.348.919.812l.496 3.973a1 1 0 0 1 .008.114A6.36 6.36 0 0 0 12 5.619a6.36 6.36 0 0 0-4.026 1.43 1 1 0 0 1 .008-.114z"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12 17.192a5.191 5.191 0 1 0 0-10.383 5.191 5.191 0 0 0 0 10.383m-.6-8.66v3.349a.9.9 0 0 0 .26.628l2.228 2.228.849-.848-2.137-2.137v-3.22z",clipRule:"evenodd"})),yw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",d:"m4.503 5.352.848-.848 14.142 14.142-.848.849z"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.418 8.53c-.63.433-1.244.945-1.844 1.545l.849.848a11.7 11.7 0 0 1 1.86-1.527zm3.098 3.099a7.9 7.9 0 0 0-1.942 1.446l.849.848c.637-.637 1.297-1.091 1.993-1.395zm2.84 2.839 2.176 2.177a1.663 1.663 0 1 1-2.177-2.177m5.448-.774-2.516-2.517a7.7 7.7 0 0 1 3.135 1.898zm-5.866-5.866a13 13 0 0 1 1.06-.043c2.842 0 5.567 1.13 7.576 3.138l.849-.848a11.91 11.91 0 0 0-8.424-3.49q-1.099-.002-2.138.166z",clipRule:"evenodd"})),xw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.574 10.075C6.086 7.564 8.85 6.585 12 6.585c3.16 0 6.19 1.256 8.424 3.49l-.849.849a10.71 10.71 0 0 0-7.576-3.138c-2.852 0-5.304.867-7.575 3.138z",clipRule:"evenodd"}),l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.574 13.075C8.19 11.461 9.975 10.83 12 10.83c2.034 0 3.985.808 5.424 2.246l-.849.849a6.47 6.47 0 0 0-4.576-1.895c-1.727 0-3.201.52-4.575 1.895zM10.823 14.827a1.662 1.662 0 1 1 2.351 2.35 1.662 1.662 0 0 1-2.351-2.35",clipRule:"evenodd"})),Cw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.004 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16m11.14 3.991-5.063-5.063.848-.848 5.063 5.063zM9.4 10.6h-2.4V9.4h2.4V7h1.2v2.4h2.4v1.2h-2.4V13h-1.2z",clipRule:"evenodd"})),bw=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",...e},l.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"m21.144 21.991-5.063-5.063.848-.848 5.063 5.063zM18.004 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0M7 9.4v1.2h6V9.4z",clipRule:"evenodd"}));var ni={exports:{}},$n={};/**
37
+ * @license React
38
+ * react-jsx-runtime.production.min.js
39
+ *
40
+ * Copyright (c) Facebook, Inc. and its affiliates.
41
+ *
42
+ * This source code is licensed under the MIT license found in the
43
+ * LICENSE file in the root directory of this source tree.
44
+ */var wa;function Rw(){if(wa)return $n;wa=1;var e=S,n=Symbol.for("react.element"),t=Symbol.for("react.fragment"),o=Object.prototype.hasOwnProperty,i=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,r={key:!0,ref:!0,__self:!0,__source:!0};function a(s,c,d){var h,v={},g=null,p=null;d!==void 0&&(g=""+d),c.key!==void 0&&(g=""+c.key),c.ref!==void 0&&(p=c.ref);for(h in c)o.call(c,h)&&!r.hasOwnProperty(h)&&(v[h]=c[h]);if(s&&s.defaultProps)for(h in c=s.defaultProps,c)v[h]===void 0&&(v[h]=c[h]);return{$$typeof:n,type:s,key:g,ref:p,props:v,_owner:i.current}}return $n.Fragment=t,$n.jsx=a,$n.jsxs=a,$n}var Hn={};/**
45
+ * @license React
46
+ * react-jsx-runtime.development.js
47
+ *
48
+ * Copyright (c) Facebook, Inc. and its affiliates.
49
+ *
50
+ * This source code is licensed under the MIT license found in the
51
+ * LICENSE file in the root directory of this source tree.
52
+ */var Ea;function Sw(){return Ea||(Ea=1,process.env.NODE_ENV!=="production"&&function(){var e=S,n=Symbol.for("react.element"),t=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),i=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),a=Symbol.for("react.provider"),s=Symbol.for("react.context"),c=Symbol.for("react.forward_ref"),d=Symbol.for("react.suspense"),h=Symbol.for("react.suspense_list"),v=Symbol.for("react.memo"),g=Symbol.for("react.lazy"),p=Symbol.for("react.offscreen"),w=Symbol.iterator,f="@@iterator";function x(u){if(u===null||typeof u!="object")return null;var y=w&&u[w]||u[f];return typeof y=="function"?y:null}var C=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function E(u){{for(var y=arguments.length,b=new Array(y>1?y-1:0),z=1;z<y;z++)b[z-1]=arguments[z];T("error",u,b)}}function T(u,y,b){{var z=C.ReactDebugCurrentFrame,N=z.getStackAddendum();N!==""&&(y+="%s",b=b.concat([N]));var j=b.map(function(B){return String(B)});j.unshift("Warning: "+y),Function.prototype.apply.call(console[u],console,j)}}var F=!1,k=!1,q=!1,Q=!1,ce=!1,H;H=Symbol.for("react.module.reference");function L(u){return!!(typeof u=="string"||typeof u=="function"||u===o||u===r||ce||u===i||u===d||u===h||Q||u===p||F||k||q||typeof u=="object"&&u!==null&&(u.$$typeof===g||u.$$typeof===v||u.$$typeof===a||u.$$typeof===s||u.$$typeof===c||u.$$typeof===H||u.getModuleId!==void 0))}function V(u,y,b){var z=u.displayName;if(z)return z;var N=y.displayName||y.name||"";return N!==""?b+"("+N+")":b}function I(u){return u.displayName||"Context"}function R(u){if(u==null)return null;if(typeof u.tag=="number"&&E("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),typeof u=="function")return u.displayName||u.name||null;if(typeof u=="string")return u;switch(u){case o:return"Fragment";case t:return"Portal";case r:return"Profiler";case i:return"StrictMode";case d:return"Suspense";case h:return"SuspenseList"}if(typeof u=="object")switch(u.$$typeof){case s:var y=u;return I(y)+".Consumer";case a:var b=u;return I(b._context)+".Provider";case c:return V(u,u.render,"ForwardRef");case v:var z=u.displayName||null;return z!==null?z:R(u.type)||"Memo";case g:{var N=u,j=N._payload,B=N._init;try{return R(B(j))}catch{return null}}}return null}var M=Object.assign,U=0,Y,K,le,ae,ue,Ae,Xe;function Oe(){}Oe.__reactDisabledLog=!0;function ct(){{if(U===0){Y=console.log,K=console.info,le=console.warn,ae=console.error,ue=console.group,Ae=console.groupCollapsed,Xe=console.groupEnd;var u={configurable:!0,enumerable:!0,value:Oe,writable:!0};Object.defineProperties(console,{info:u,log:u,warn:u,error:u,group:u,groupCollapsed:u,groupEnd:u})}U++}}function Zt(){{if(U--,U===0){var u={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:M({},u,{value:Y}),info:M({},u,{value:K}),warn:M({},u,{value:le}),error:M({},u,{value:ae}),group:M({},u,{value:ue}),groupCollapsed:M({},u,{value:Ae}),groupEnd:M({},u,{value:Xe})})}U<0&&E("disabledDepth fell below zero. This is a bug in React. Please file an issue.")}}var Ze=C.ReactCurrentDispatcher,Je;function dt(u,y,b){{if(Je===void 0)try{throw Error()}catch(N){var z=N.stack.trim().match(/\n( *(at )?)/);Je=z&&z[1]||""}return`
53
+ `+Je+u}}var Pt=!1,ut;{var Qo=typeof WeakMap=="function"?WeakMap:Map;ut=new Qo}function pn(u,y){if(!u||Pt)return"";{var b=ut.get(u);if(b!==void 0)return b}var z;Pt=!0;var N=Error.prepareStackTrace;Error.prepareStackTrace=void 0;var j;j=Ze.current,Ze.current=null,ct();try{if(y){var B=function(){throw Error()};if(Object.defineProperty(B.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(B,[])}catch(se){z=se}Reflect.construct(u,[],B)}else{try{B.call()}catch(se){z=se}u.call(B.prototype)}}else{try{throw Error()}catch(se){z=se}u()}}catch(se){if(se&&z&&typeof se.stack=="string"){for(var P=se.stack.split(`
54
+ `),ie=z.stack.split(`
55
+ `),Z=P.length-1,J=ie.length-1;Z>=1&&J>=0&&P[Z]!==ie[J];)J--;for(;Z>=1&&J>=0;Z--,J--)if(P[Z]!==ie[J]){if(Z!==1||J!==1)do if(Z--,J--,J<0||P[Z]!==ie[J]){var de=`
56
+ `+P[Z].replace(" at new "," at ");return u.displayName&&de.includes("<anonymous>")&&(de=de.replace("<anonymous>",u.displayName)),typeof u=="function"&&ut.set(u,de),de}while(Z>=1&&J>=0);break}}}finally{Pt=!1,Ze.current=j,Zt(),Error.prepareStackTrace=N}var _e=u?u.displayName||u.name:"",Se=_e?dt(_e):"";return typeof u=="function"&&ut.set(u,Se),Se}function el(u,y,b){return pn(u,!1)}function tl(u){var y=u.prototype;return!!(y&&y.isReactComponent)}function ht(u,y,b){if(u==null)return"";if(typeof u=="function")return pn(u,tl(u));if(typeof u=="string")return dt(u);switch(u){case d:return dt("Suspense");case h:return dt("SuspenseList")}if(typeof u=="object")switch(u.$$typeof){case c:return el(u.render);case v:return ht(u.type,y,b);case g:{var z=u,N=z._payload,j=z._init;try{return ht(j(N),y,b)}catch{}}}return""}var Qe=Object.prototype.hasOwnProperty,fn={},wn=C.ReactDebugCurrentFrame;function gt(u){if(u){var y=u._owner,b=ht(u.type,u._source,y?y.type:null);wn.setExtraStackFrame(b)}else wn.setExtraStackFrame(null)}function nl(u,y,b,z,N){{var j=Function.call.bind(Qe);for(var B in u)if(j(u,B)){var P=void 0;try{if(typeof u[B]!="function"){var ie=Error((z||"React class")+": "+b+" type `"+B+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof u[B]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw ie.name="Invariant Violation",ie}P=u[B](y,B,z,b,null,"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED")}catch(Z){P=Z}P&&!(P instanceof Error)&&(gt(N),E("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).",z||"React class",b,B,typeof P),gt(null)),P instanceof Error&&!(P.message in fn)&&(fn[P.message]=!0,gt(N),E("Failed %s type: %s",b,P.message),gt(null))}}}var ol=Array.isArray;function kt(u){return ol(u)}function ll(u){{var y=typeof Symbol=="function"&&Symbol.toStringTag,b=y&&u[Symbol.toStringTag]||u.constructor.name||"Object";return b}}function il(u){try{return En(u),!1}catch{return!0}}function En(u){return""+u}function yn(u){if(il(u))return E("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.",ll(u)),En(u)}var et=C.ReactCurrentOwner,rl={key:!0,ref:!0,__self:!0,__source:!0},xn,Cn,Bt;Bt={};function al(u){if(Qe.call(u,"ref")){var y=Object.getOwnPropertyDescriptor(u,"ref").get;if(y&&y.isReactWarning)return!1}return u.ref!==void 0}function sl(u){if(Qe.call(u,"key")){var y=Object.getOwnPropertyDescriptor(u,"key").get;if(y&&y.isReactWarning)return!1}return u.key!==void 0}function cl(u,y){if(typeof u.ref=="string"&&et.current&&y&&et.current.stateNode!==y){var b=R(et.current.type);Bt[b]||(E('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref',R(et.current.type),u.ref),Bt[b]=!0)}}function dl(u,y){{var b=function(){xn||(xn=!0,E("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)",y))};b.isReactWarning=!0,Object.defineProperty(u,"key",{get:b,configurable:!0})}}function ul(u,y){{var b=function(){Cn||(Cn=!0,E("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)",y))};b.isReactWarning=!0,Object.defineProperty(u,"ref",{get:b,configurable:!0})}}var hl=function(u,y,b,z,N,j,B){var P={$$typeof:n,type:u,key:y,ref:b,props:B,_owner:j};return P._store={},Object.defineProperty(P._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:!1}),Object.defineProperty(P,"_self",{configurable:!1,enumerable:!1,writable:!1,value:z}),Object.defineProperty(P,"_source",{configurable:!1,enumerable:!1,writable:!1,value:N}),Object.freeze&&(Object.freeze(P.props),Object.freeze(P)),P};function gl(u,y,b,z,N){{var j,B={},P=null,ie=null;b!==void 0&&(yn(b),P=""+b),sl(y)&&(yn(y.key),P=""+y.key),al(y)&&(ie=y.ref,cl(y,N));for(j in y)Qe.call(y,j)&&!rl.hasOwnProperty(j)&&(B[j]=y[j]);if(u&&u.defaultProps){var Z=u.defaultProps;for(j in Z)B[j]===void 0&&(B[j]=Z[j])}if(P||ie){var J=typeof u=="function"?u.displayName||u.name||"Unknown":u;P&&dl(B,J),ie&&ul(B,J)}return hl(u,P,ie,N,z,et.current,B)}}var At=C.ReactCurrentOwner,bn=C.ReactDebugCurrentFrame;function Le(u){if(u){var y=u._owner,b=ht(u.type,u._source,y?y.type:null);bn.setExtraStackFrame(b)}else bn.setExtraStackFrame(null)}var Lt;Lt=!1;function _t(u){return typeof u=="object"&&u!==null&&u.$$typeof===n}function Rn(){{if(At.current){var u=R(At.current.type);if(u)return`
57
+
58
+ Check the render method of \``+u+"`."}return""}}function vl(u){return""}var Sn={};function ml(u){{var y=Rn();if(!y){var b=typeof u=="string"?u:u.displayName||u.name;b&&(y=`
59
+
60
+ Check the top-level render call using <`+b+">.")}return y}}function In(u,y){{if(!u._store||u._store.validated||u.key!=null)return;u._store.validated=!0;var b=ml(y);if(Sn[b])return;Sn[b]=!0;var z="";u&&u._owner&&u._owner!==At.current&&(z=" It was passed a child from "+R(u._owner.type)+"."),Le(u),E('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.',b,z),Le(null)}}function Tn(u,y){{if(typeof u!="object")return;if(kt(u))for(var b=0;b<u.length;b++){var z=u[b];_t(z)&&In(z,y)}else if(_t(u))u._store&&(u._store.validated=!0);else if(u){var N=x(u);if(typeof N=="function"&&N!==u.entries)for(var j=N.call(u),B;!(B=j.next()).done;)_t(B.value)&&In(B.value,y)}}}function pl(u){{var y=u.type;if(y==null||typeof y=="string")return;var b;if(typeof y=="function")b=y.propTypes;else if(typeof y=="object"&&(y.$$typeof===c||y.$$typeof===v))b=y.propTypes;else return;if(b){var z=R(y);nl(b,u.props,"prop",z,u)}else if(y.PropTypes!==void 0&&!Lt){Lt=!0;var N=R(y);E("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?",N||"Unknown")}typeof y.getDefaultProps=="function"&&!y.getDefaultProps.isReactClassApproved&&E("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.")}}function fl(u){{for(var y=Object.keys(u.props),b=0;b<y.length;b++){var z=y[b];if(z!=="children"&&z!=="key"){Le(u),E("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",z),Le(null);break}}u.ref!==null&&(Le(u),E("Invalid attribute `ref` supplied to `React.Fragment`."),Le(null))}}var Mn={};function zn(u,y,b,z,N,j){{var B=L(u);if(!B){var P="";(u===void 0||typeof u=="object"&&u!==null&&Object.keys(u).length===0)&&(P+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");var ie=vl();ie?P+=ie:P+=Rn();var Z;u===null?Z="null":kt(u)?Z="array":u!==void 0&&u.$$typeof===n?(Z="<"+(R(u.type)||"Unknown")+" />",P=" Did you accidentally export a JSX literal instead of a component?"):Z=typeof u,E("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",Z,P)}var J=gl(u,y,b,N,j);if(J==null)return J;if(B){var de=y.children;if(de!==void 0)if(z)if(kt(de)){for(var _e=0;_e<de.length;_e++)Tn(de[_e],u);Object.freeze&&Object.freeze(de)}else E("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else Tn(de,u)}if(Qe.call(y,"key")){var Se=R(u),se=Object.keys(y).filter(function(bl){return bl!=="key"}),Nt=se.length>0?"{key: someKey, "+se.join(": ..., ")+": ...}":"{key: someKey}";if(!Mn[Se+Nt]){var Cl=se.length>0?"{"+se.join(": ..., ")+": ...}":"{}";E(`A props object containing a "key" prop is being spread into JSX:
61
+ let props = %s;
62
+ <%s {...props} />
63
+ React keys must be passed directly to JSX without using spread:
64
+ let props = %s;
65
+ <%s key={someKey} {...props} />`,Nt,Se,Cl,Se),Mn[Se+Nt]=!0}}return u===o?fl(J):pl(J),J}}function wl(u,y,b){return zn(u,y,b,!0)}function El(u,y,b){return zn(u,y,b,!1)}var yl=El,xl=wl;Hn.Fragment=o,Hn.jsx=yl,Hn.jsxs=xl}()),Hn}process.env.NODE_ENV==="production"?ni.exports=Rw():ni.exports=Sw();var Iw=ni.exports;const Tw=Object.assign({"../assets/outlined/activity.svg":au,"../assets/outlined/airplay.svg":su,"../assets/outlined/alert-circle.svg":cu,"../assets/outlined/alert-octagon.svg":du,"../assets/outlined/alert-triangle.svg":uu,"../assets/outlined/align-center.svg":hu,"../assets/outlined/align-justify.svg":gu,"../assets/outlined/align-left.svg":vu,"../assets/outlined/align-right.svg":mu,"../assets/outlined/anchor.svg":pu,"../assets/outlined/apps-circle.svg":fu,"../assets/outlined/apps-square.svg":wu,"../assets/outlined/archive.svg":Eu,"../assets/outlined/arrow-down-circle.svg":yu,"../assets/outlined/arrow-down-left.svg":xu,"../assets/outlined/arrow-down-right.svg":Cu,"../assets/outlined/arrow-down.svg":bu,"../assets/outlined/arrow-left-circle.svg":Ru,"../assets/outlined/arrow-left.svg":Su,"../assets/outlined/arrow-right-circle.svg":Iu,"../assets/outlined/arrow-right.svg":Tu,"../assets/outlined/arrow-turn-down.svg":Mu,"../assets/outlined/arrow-turn-left.svg":zu,"../assets/outlined/arrow-turn-right.svg":Ou,"../assets/outlined/arrow-turn-up.svg":Vu,"../assets/outlined/arrow-up-circle.svg":Fu,"../assets/outlined/arrow-up-left.svg":Pu,"../assets/outlined/arrow-up-right.svg":ku,"../assets/outlined/arrow-up.svg":Bu,"../assets/outlined/article.svg":Au,"../assets/outlined/at-symbol.svg":Lu,"../assets/outlined/attachment.svg":_u,"../assets/outlined/award.svg":Nu,"../assets/outlined/battery-charging.svg":$u,"../assets/outlined/battery.svg":Hu,"../assets/outlined/bed.svg":Du,"../assets/outlined/bell-off.svg":ju,"../assets/outlined/bell.svg":Wu,"../assets/outlined/bicycle.svg":Gu,"../assets/outlined/bike.svg":Uu,"../assets/outlined/bluetooth.svg":Ku,"../assets/outlined/bold.svg":qu,"../assets/outlined/book-open.svg":Yu,"../assets/outlined/book.svg":Xu,"../assets/outlined/bookmark.svg":Zu,"../assets/outlined/briefcase.svg":Ju,"../assets/outlined/bug.svg":Qu,"../assets/outlined/bus.svg":e3,"../assets/outlined/calendar.svg":t3,"../assets/outlined/camera-off.svg":n3,"../assets/outlined/camera.svg":o3,"../assets/outlined/car.svg":l3,"../assets/outlined/cast.svg":i3,"../assets/outlined/chat-circle.svg":r3,"../assets/outlined/chat-rectangle.svg":a3,"../assets/outlined/check-circle.svg":s3,"../assets/outlined/check-shield.svg":c3,"../assets/outlined/check-square.svg":d3,"../assets/outlined/check.svg":u3,"../assets/outlined/chevron-double-down.svg":h3,"../assets/outlined/chevron-double-left.svg":g3,"../assets/outlined/chevron-double-right.svg":v3,"../assets/outlined/chevron-double-up.svg":m3,"../assets/outlined/chevron-down.svg":p3,"../assets/outlined/chevron-left-right.svg":f3,"../assets/outlined/chevron-left.svg":w3,"../assets/outlined/chevron-right.svg":E3,"../assets/outlined/chevron-up-down.svg":y3,"../assets/outlined/chevron-up.svg":x3,"../assets/outlined/circle.svg":C3,"../assets/outlined/clipboard.svg":b3,"../assets/outlined/clock.svg":R3,"../assets/outlined/close-circle.svg":S3,"../assets/outlined/close-octagon.svg":I3,"../assets/outlined/close-square.svg":T3,"../assets/outlined/close.svg":M3,"../assets/outlined/cloud-off.svg":z3,"../assets/outlined/cloud.svg":O3,"../assets/outlined/coffee.svg":V3,"../assets/outlined/collapse-diagonal-alt.svg":F3,"../assets/outlined/collapse-diagonal.svg":P3,"../assets/outlined/collapse-horizontal.svg":k3,"../assets/outlined/collapse-left.svg":B3,"../assets/outlined/collapse-right.svg":A3,"../assets/outlined/collapse-vertical.svg":L3,"../assets/outlined/command.svg":_3,"../assets/outlined/compass.svg":N3,"../assets/outlined/compose.svg":$3,"../assets/outlined/contract-left-right.svg":H3,"../assets/outlined/contract-up-down.svg":D3,"../assets/outlined/copy.svg":j3,"../assets/outlined/corner-down-left.svg":W3,"../assets/outlined/corner-down-right.svg":G3,"../assets/outlined/corner-left-down.svg":U3,"../assets/outlined/corner-left-up.svg":K3,"../assets/outlined/corner-right-down.svg":q3,"../assets/outlined/corner-right-up.svg":Y3,"../assets/outlined/corner-up-left.svg":X3,"../assets/outlined/corner-up-right.svg":Z3,"../assets/outlined/cpu.svg":J3,"../assets/outlined/credit-card.svg":Q3,"../assets/outlined/crop.svg":eh,"../assets/outlined/cube.svg":th,"../assets/outlined/cursor.svg":nh,"../assets/outlined/cycling.svg":oh,"../assets/outlined/data.svg":lh,"../assets/outlined/delete.svg":ih,"../assets/outlined/disc.svg":rh,"../assets/outlined/divide.svg":ah,"../assets/outlined/dollar-sign.svg":sh,"../assets/outlined/download-cloud.svg":ch,"../assets/outlined/download.svg":dh,"../assets/outlined/drag-move.svg":uh,"../assets/outlined/edit.svg":hh,"../assets/outlined/eject.svg":gh,"../assets/outlined/expand-diagonal-alt.svg":vh,"../assets/outlined/expand-diagonal-linked-alt.svg":mh,"../assets/outlined/expand-diagonal-linked.svg":ph,"../assets/outlined/expand-diagonal.svg":fh,"../assets/outlined/expand-horizontal-linked.svg":wh,"../assets/outlined/expand-horizontal.svg":Eh,"../assets/outlined/expand-left.svg":yh,"../assets/outlined/expand-right.svg":xh,"../assets/outlined/expand-vertical-linked.svg":Ch,"../assets/outlined/expand-vertical.svg":bh,"../assets/outlined/external-link.svg":Rh,"../assets/outlined/eye-hidden.svg":Sh,"../assets/outlined/eye.svg":Ih,"../assets/outlined/file-add.svg":Th,"../assets/outlined/file-download.svg":Mh,"../assets/outlined/file-text.svg":zh,"../assets/outlined/file-upload.svg":Oh,"../assets/outlined/file.svg":Vh,"../assets/outlined/film.svg":Fh,"../assets/outlined/filter.svg":Ph,"../assets/outlined/flag.svg":kh,"../assets/outlined/folder-add.svg":Bh,"../assets/outlined/folder.svg":Ah,"../assets/outlined/forward-10.svg":Lh,"../assets/outlined/forward-15.svg":_h,"../assets/outlined/forward-5.svg":Nh,"../assets/outlined/forward-end.svg":$h,"../assets/outlined/forward.svg":Hh,"../assets/outlined/frown.svg":Dh,"../assets/outlined/funnel.svg":jh,"../assets/outlined/gear.svg":Wh,"../assets/outlined/gift.svg":Gh,"../assets/outlined/globe.svg":Uh,"../assets/outlined/group.svg":Kh,"../assets/outlined/hard-drive.svg":qh,"../assets/outlined/hash.svg":Yh,"../assets/outlined/headphone.svg":Xh,"../assets/outlined/heart.svg":Zh,"../assets/outlined/hexagon.svg":Jh,"../assets/outlined/history.svg":Qh,"../assets/outlined/home.svg":eg,"../assets/outlined/image.svg":tg,"../assets/outlined/inbox.svg":ng,"../assets/outlined/information.svg":og,"../assets/outlined/italic.svg":lg,"../assets/outlined/key.svg":ig,"../assets/outlined/laptop.svg":rg,"../assets/outlined/layer.svg":ag,"../assets/outlined/layout-alt.svg":sg,"../assets/outlined/layout-bottom.svg":cg,"../assets/outlined/layout-column.svg":dg,"../assets/outlined/layout-grid-alt.svg":ug,"../assets/outlined/layout-grid.svg":hg,"../assets/outlined/layout-left.svg":gg,"../assets/outlined/layout-right.svg":vg,"../assets/outlined/layout-row.svg":mg,"../assets/outlined/layout-sidebar-alt.svg":pg,"../assets/outlined/layout-sidebar.svg":fg,"../assets/outlined/layout-top.svg":wg,"../assets/outlined/layout.svg":Eg,"../assets/outlined/life-buoy.svg":yg,"../assets/outlined/lightning.svg":xg,"../assets/outlined/link.svg":Cg,"../assets/outlined/list-bullet.svg":bg,"../assets/outlined/list-dash.svg":Rg,"../assets/outlined/list-number.svg":Sg,"../assets/outlined/loader.svg":Ig,"../assets/outlined/lock-unlocked.svg":Tg,"../assets/outlined/lock.svg":Mg,"../assets/outlined/login.svg":zg,"../assets/outlined/logout.svg":Og,"../assets/outlined/magnifying-glass.svg":Vg,"../assets/outlined/mail.svg":Fg,"../assets/outlined/map.svg":Pg,"../assets/outlined/maximize.svg":kg,"../assets/outlined/media.svg":Bg,"../assets/outlined/menu.svg":Ag,"../assets/outlined/mic-muted.svg":Lg,"../assets/outlined/mic.svg":_g,"../assets/outlined/minimize.svg":Ng,"../assets/outlined/minus-square.svg":$g,"../assets/outlined/minus.svg":Hg,"../assets/outlined/monitor.svg":Dg,"../assets/outlined/moon.svg":jg,"../assets/outlined/more-horizontal.svg":Wg,"../assets/outlined/more-vertical.svg":Gg,"../assets/outlined/music-alt.svg":Ug,"../assets/outlined/music.svg":Kg,"../assets/outlined/navigation.svg":qg,"../assets/outlined/octagon.svg":Yg,"../assets/outlined/package.svg":Xg,"../assets/outlined/pause-circle.svg":Zg,"../assets/outlined/pause.svg":Jg,"../assets/outlined/pen.svg":Qg,"../assets/outlined/pencil.svg":ev,"../assets/outlined/percent.svg":tv,"../assets/outlined/phone-off.svg":nv,"../assets/outlined/phone.svg":ov,"../assets/outlined/pie-chart.svg":lv,"../assets/outlined/pin.svg":iv,"../assets/outlined/placeholder.svg":rv,"../assets/outlined/plane.svg":av,"../assets/outlined/play-circle.svg":sv,"../assets/outlined/play.svg":cv,"../assets/outlined/plus-square.svg":dv,"../assets/outlined/plus.svg":uv,"../assets/outlined/printer.svg":hv,"../assets/outlined/question.svg":gv,"../assets/outlined/radio.svg":vv,"../assets/outlined/record-circle.svg":mv,"../assets/outlined/refresh.svg":pv,"../assets/outlined/repeat.svg":fv,"../assets/outlined/rewind-10.svg":wv,"../assets/outlined/rewind-15.svg":Ev,"../assets/outlined/rewind-5.svg":yv,"../assets/outlined/rewind-start.svg":xv,"../assets/outlined/rewind.svg":Cv,"../assets/outlined/rss.svg":bv,"../assets/outlined/run.svg":Rv,"../assets/outlined/sailboat.svg":Sv,"../assets/outlined/save.svg":Iv,"../assets/outlined/seal.svg":Tv,"../assets/outlined/send.svg":Mv,"../assets/outlined/server.svg":zv,"../assets/outlined/share-alt.svg":Ov,"../assets/outlined/share.svg":Vv,"../assets/outlined/shield-off.svg":Fv,"../assets/outlined/shield.svg":Pv,"../assets/outlined/ship.svg":kv,"../assets/outlined/shopping-bag.svg":Bv,"../assets/outlined/shopping-cart.svg":Av,"../assets/outlined/shuffle.svg":Lv,"../assets/outlined/skip-back.svg":_v,"../assets/outlined/skip-down.svg":Nv,"../assets/outlined/skip-forward.svg":$v,"../assets/outlined/skip-left.svg":Hv,"../assets/outlined/skip-right.svg":Dv,"../assets/outlined/skip-up.svg":jv,"../assets/outlined/slash.svg":Wv,"../assets/outlined/slider-horizontal.svg":Gv,"../assets/outlined/slider-vertical.svg":Uv,"../assets/outlined/smartphone.svg":Kv,"../assets/outlined/smile.svg":qv,"../assets/outlined/speaker.svg":Yv,"../assets/outlined/square.svg":Xv,"../assets/outlined/star.svg":Zv,"../assets/outlined/sticky-note.svg":Jv,"../assets/outlined/stop-circle.svg":Qv,"../assets/outlined/stop.svg":e7,"../assets/outlined/sun.svg":t7,"../assets/outlined/tablet.svg":n7,"../assets/outlined/tag.svg":o7,"../assets/outlined/target.svg":l7,"../assets/outlined/taxi.svg":i7,"../assets/outlined/terminal.svg":r7,"../assets/outlined/thumb-down.svg":a7,"../assets/outlined/thumb-up.svg":s7,"../assets/outlined/tool.svg":c7,"../assets/outlined/train.svg":d7,"../assets/outlined/trash.svg":u7,"../assets/outlined/trending-down.svg":h7,"../assets/outlined/trending-up.svg":g7,"../assets/outlined/triangle.svg":v7,"../assets/outlined/truck.svg":m7,"../assets/outlined/tv.svg":p7,"../assets/outlined/type.svg":f7,"../assets/outlined/umbrella.svg":w7,"../assets/outlined/underline.svg":E7,"../assets/outlined/upload-cloud.svg":y7,"../assets/outlined/user-check.svg":x7,"../assets/outlined/user-circle.svg":C7,"../assets/outlined/user-minus.svg":b7,"../assets/outlined/user-plus.svg":R7,"../assets/outlined/user-x.svg":S7,"../assets/outlined/user.svg":I7,"../assets/outlined/users.svg":T7,"../assets/outlined/verified-badge.svg":M7,"../assets/outlined/video-off.svg":z7,"../assets/outlined/video.svg":O7,"../assets/outlined/voicemail.svg":V7,"../assets/outlined/volume-high.svg":F7,"../assets/outlined/volume-low.svg":P7,"../assets/outlined/volume-muted.svg":k7,"../assets/outlined/volume-none.svg":B7,"../assets/outlined/walk.svg":A7,"../assets/outlined/watch.svg":L7,"../assets/outlined/wifi-off.svg":_7,"../assets/outlined/wifi.svg":N7,"../assets/outlined/zoom-in.svg":$7,"../assets/outlined/zoom-out.svg":H7}),Mw=Object.assign({"../assets/filled/activity.svg":D7,"../assets/filled/airplay.svg":j7,"../assets/filled/alert-circle.svg":W7,"../assets/filled/alert-octagon.svg":G7,"../assets/filled/alert-triangle.svg":U7,"../assets/filled/align-center.svg":K7,"../assets/filled/align-justify.svg":q7,"../assets/filled/align-left.svg":Y7,"../assets/filled/align-right.svg":X7,"../assets/filled/anchor.svg":Z7,"../assets/filled/apps-circle.svg":J7,"../assets/filled/apps-square.svg":Q7,"../assets/filled/archive.svg":em,"../assets/filled/arrow-down-circle.svg":tm,"../assets/filled/arrow-down-left.svg":nm,"../assets/filled/arrow-down-right.svg":om,"../assets/filled/arrow-down.svg":lm,"../assets/filled/arrow-left-circle.svg":im,"../assets/filled/arrow-left.svg":rm,"../assets/filled/arrow-right-circle.svg":am,"../assets/filled/arrow-right.svg":sm,"../assets/filled/arrow-turn-down.svg":cm,"../assets/filled/arrow-turn-left.svg":dm,"../assets/filled/arrow-turn-right.svg":um,"../assets/filled/arrow-turn-up.svg":hm,"../assets/filled/arrow-up-circle.svg":gm,"../assets/filled/arrow-up-left.svg":vm,"../assets/filled/arrow-up-right.svg":mm,"../assets/filled/arrow-up.svg":pm,"../assets/filled/article.svg":fm,"../assets/filled/at-symbol.svg":wm,"../assets/filled/attachment.svg":Em,"../assets/filled/award.svg":ym,"../assets/filled/battery-charging.svg":xm,"../assets/filled/battery.svg":Cm,"../assets/filled/bed.svg":bm,"../assets/filled/bell-off.svg":Rm,"../assets/filled/bell.svg":Sm,"../assets/filled/bicycle.svg":Im,"../assets/filled/bike.svg":Tm,"../assets/filled/bluetooth.svg":Mm,"../assets/filled/bold.svg":zm,"../assets/filled/book-open.svg":Om,"../assets/filled/book.svg":Vm,"../assets/filled/bookmark.svg":Fm,"../assets/filled/briefcase.svg":Pm,"../assets/filled/bug.svg":km,"../assets/filled/bus.svg":Bm,"../assets/filled/calendar.svg":Am,"../assets/filled/camera-off.svg":Lm,"../assets/filled/camera.svg":_m,"../assets/filled/car.svg":Nm,"../assets/filled/cast.svg":$m,"../assets/filled/chat-circle.svg":Hm,"../assets/filled/chat-rectangle.svg":Dm,"../assets/filled/check-circle.svg":jm,"../assets/filled/check-shield.svg":Wm,"../assets/filled/check-square.svg":Gm,"../assets/filled/check.svg":Um,"../assets/filled/chevron-double-down.svg":Km,"../assets/filled/chevron-double-left.svg":qm,"../assets/filled/chevron-double-right.svg":Ym,"../assets/filled/chevron-double-up.svg":Xm,"../assets/filled/chevron-down.svg":Zm,"../assets/filled/chevron-left-right.svg":Jm,"../assets/filled/chevron-left.svg":Qm,"../assets/filled/chevron-right.svg":e6,"../assets/filled/chevron-up-down.svg":t6,"../assets/filled/chevron-up.svg":n6,"../assets/filled/circle.svg":o6,"../assets/filled/clipboard.svg":l6,"../assets/filled/clock.svg":i6,"../assets/filled/close-circle.svg":r6,"../assets/filled/close-octagon.svg":a6,"../assets/filled/close-square.svg":s6,"../assets/filled/close.svg":c6,"../assets/filled/cloud-off.svg":d6,"../assets/filled/cloud.svg":u6,"../assets/filled/coffee.svg":h6,"../assets/filled/collapse-diagonal-alt.svg":g6,"../assets/filled/collapse-diagonal.svg":v6,"../assets/filled/collapse-horizontal.svg":m6,"../assets/filled/collapse-left.svg":p6,"../assets/filled/collapse-right.svg":f6,"../assets/filled/collapse-vertical.svg":w6,"../assets/filled/command.svg":E6,"../assets/filled/compass.svg":y6,"../assets/filled/compose.svg":x6,"../assets/filled/contract-left-right.svg":C6,"../assets/filled/contract-up-down.svg":b6,"../assets/filled/copy.svg":R6,"../assets/filled/corner-down-left.svg":S6,"../assets/filled/corner-down-right.svg":I6,"../assets/filled/corner-left-down.svg":T6,"../assets/filled/corner-left-up.svg":M6,"../assets/filled/corner-right-down.svg":z6,"../assets/filled/corner-right-up.svg":O6,"../assets/filled/corner-up-left.svg":V6,"../assets/filled/corner-up-right.svg":F6,"../assets/filled/cpu.svg":P6,"../assets/filled/credit-card.svg":k6,"../assets/filled/crop.svg":B6,"../assets/filled/cube.svg":A6,"../assets/filled/cursor.svg":L6,"../assets/filled/cycling.svg":_6,"../assets/filled/data.svg":N6,"../assets/filled/delete.svg":$6,"../assets/filled/disc.svg":H6,"../assets/filled/divide.svg":D6,"../assets/filled/dollar-sign.svg":j6,"../assets/filled/download-cloud.svg":W6,"../assets/filled/download.svg":G6,"../assets/filled/drag-move.svg":U6,"../assets/filled/edit.svg":K6,"../assets/filled/eject.svg":q6,"../assets/filled/expand-diagonal-alt.svg":Y6,"../assets/filled/expand-diagonal-linked-alt.svg":X6,"../assets/filled/expand-diagonal-linked.svg":Z6,"../assets/filled/expand-diagonal.svg":J6,"../assets/filled/expand-horizontal-linked.svg":Q6,"../assets/filled/expand-horizontal.svg":ep,"../assets/filled/expand-left.svg":tp,"../assets/filled/expand-right.svg":np,"../assets/filled/expand-vertical-linked.svg":op,"../assets/filled/expand-vertical.svg":lp,"../assets/filled/external-link.svg":ip,"../assets/filled/eye-hidden.svg":rp,"../assets/filled/eye.svg":ap,"../assets/filled/file-add.svg":sp,"../assets/filled/file-download.svg":cp,"../assets/filled/file-text.svg":dp,"../assets/filled/file-upload.svg":up,"../assets/filled/file.svg":hp,"../assets/filled/film.svg":gp,"../assets/filled/filter.svg":vp,"../assets/filled/flag.svg":mp,"../assets/filled/folder-add.svg":pp,"../assets/filled/folder.svg":fp,"../assets/filled/forward-10.svg":wp,"../assets/filled/forward-15.svg":Ep,"../assets/filled/forward-5.svg":yp,"../assets/filled/forward-end.svg":xp,"../assets/filled/forward.svg":Cp,"../assets/filled/frown.svg":bp,"../assets/filled/funnel.svg":Rp,"../assets/filled/gear.svg":Sp,"../assets/filled/gift.svg":Ip,"../assets/filled/globe.svg":Tp,"../assets/filled/group.svg":Mp,"../assets/filled/hard-drive.svg":zp,"../assets/filled/hash.svg":Op,"../assets/filled/headphone.svg":Vp,"../assets/filled/heart.svg":Fp,"../assets/filled/hexagon.svg":Pp,"../assets/filled/history.svg":kp,"../assets/filled/home.svg":Bp,"../assets/filled/image.svg":Ap,"../assets/filled/inbox.svg":Lp,"../assets/filled/information.svg":_p,"../assets/filled/italic.svg":Np,"../assets/filled/key.svg":$p,"../assets/filled/laptop.svg":Hp,"../assets/filled/layer.svg":Dp,"../assets/filled/layout-alt.svg":jp,"../assets/filled/layout-bottom.svg":Wp,"../assets/filled/layout-column.svg":Gp,"../assets/filled/layout-grid-alt.svg":Up,"../assets/filled/layout-grid.svg":Kp,"../assets/filled/layout-left.svg":qp,"../assets/filled/layout-right.svg":Yp,"../assets/filled/layout-row.svg":Xp,"../assets/filled/layout-sidebar-alt.svg":Zp,"../assets/filled/layout-sidebar.svg":Jp,"../assets/filled/layout-top.svg":Qp,"../assets/filled/layout.svg":ef,"../assets/filled/life-buoy.svg":tf,"../assets/filled/lightning.svg":nf,"../assets/filled/link.svg":of,"../assets/filled/list-bullet.svg":lf,"../assets/filled/list-dash.svg":rf,"../assets/filled/list-number.svg":af,"../assets/filled/loader.svg":sf,"../assets/filled/lock-unlocked.svg":cf,"../assets/filled/lock.svg":df,"../assets/filled/login.svg":uf,"../assets/filled/logout.svg":hf,"../assets/filled/magnifying-glass.svg":gf,"../assets/filled/mail.svg":vf,"../assets/filled/map.svg":mf,"../assets/filled/maximize.svg":pf,"../assets/filled/media.svg":ff,"../assets/filled/menu.svg":wf,"../assets/filled/mic-muted.svg":Ef,"../assets/filled/mic.svg":yf,"../assets/filled/minimize.svg":xf,"../assets/filled/minus-square.svg":Cf,"../assets/filled/minus.svg":bf,"../assets/filled/monitor.svg":Rf,"../assets/filled/moon.svg":Sf,"../assets/filled/more-horizontal.svg":If,"../assets/filled/more-vertical.svg":Tf,"../assets/filled/music-alt.svg":Mf,"../assets/filled/music.svg":zf,"../assets/filled/navigation.svg":Of,"../assets/filled/octagon.svg":Vf,"../assets/filled/package.svg":Ff,"../assets/filled/pause-circle.svg":Pf,"../assets/filled/pause.svg":kf,"../assets/filled/pen.svg":Bf,"../assets/filled/pencil.svg":Af,"../assets/filled/percent.svg":Lf,"../assets/filled/phone-off.svg":_f,"../assets/filled/phone.svg":Nf,"../assets/filled/pie-chart.svg":$f,"../assets/filled/pin.svg":Hf,"../assets/filled/placeholder.svg":Df,"../assets/filled/plane.svg":jf,"../assets/filled/play-circle.svg":Wf,"../assets/filled/play.svg":Gf,"../assets/filled/plus-square.svg":Uf,"../assets/filled/plus.svg":Kf,"../assets/filled/printer.svg":qf,"../assets/filled/question.svg":Yf,"../assets/filled/radio.svg":Xf,"../assets/filled/record-circle.svg":Zf,"../assets/filled/refresh.svg":Jf,"../assets/filled/repeat.svg":Qf,"../assets/filled/rewind-10.svg":e9,"../assets/filled/rewind-15.svg":t9,"../assets/filled/rewind-5.svg":n9,"../assets/filled/rewind-start.svg":o9,"../assets/filled/rewind.svg":l9,"../assets/filled/rss.svg":i9,"../assets/filled/run.svg":r9,"../assets/filled/sailboat.svg":a9,"../assets/filled/save.svg":s9,"../assets/filled/seal.svg":c9,"../assets/filled/send.svg":d9,"../assets/filled/server.svg":u9,"../assets/filled/share-alt.svg":h9,"../assets/filled/share.svg":g9,"../assets/filled/shield-off.svg":v9,"../assets/filled/shield.svg":m9,"../assets/filled/ship.svg":p9,"../assets/filled/shopping-bag.svg":f9,"../assets/filled/shopping-cart.svg":w9,"../assets/filled/shuffle.svg":E9,"../assets/filled/skip-back.svg":y9,"../assets/filled/skip-down.svg":x9,"../assets/filled/skip-forward.svg":C9,"../assets/filled/skip-left.svg":b9,"../assets/filled/skip-right.svg":R9,"../assets/filled/skip-up.svg":S9,"../assets/filled/slash.svg":I9,"../assets/filled/slider-horizontal.svg":T9,"../assets/filled/slider-vertical.svg":M9,"../assets/filled/smartphone.svg":z9,"../assets/filled/smile.svg":O9,"../assets/filled/speaker.svg":V9,"../assets/filled/square.svg":F9,"../assets/filled/star.svg":P9,"../assets/filled/sticky-note.svg":k9,"../assets/filled/stop-circle.svg":B9,"../assets/filled/stop.svg":A9,"../assets/filled/sun.svg":L9,"../assets/filled/tablet.svg":_9,"../assets/filled/tag.svg":N9,"../assets/filled/target.svg":$9,"../assets/filled/taxi.svg":H9,"../assets/filled/terminal.svg":D9,"../assets/filled/thumb-down.svg":j9,"../assets/filled/thumb-up.svg":W9,"../assets/filled/tool.svg":G9,"../assets/filled/train.svg":U9,"../assets/filled/trash.svg":K9,"../assets/filled/trending-down.svg":q9,"../assets/filled/trending-up.svg":Y9,"../assets/filled/triangle.svg":X9,"../assets/filled/truck.svg":Z9,"../assets/filled/tv.svg":J9,"../assets/filled/type.svg":Q9,"../assets/filled/umbrella.svg":ew,"../assets/filled/underline.svg":tw,"../assets/filled/upload-cloud.svg":nw,"../assets/filled/user-check.svg":ow,"../assets/filled/user-circle.svg":lw,"../assets/filled/user-minus.svg":iw,"../assets/filled/user-plus.svg":rw,"../assets/filled/user-x.svg":aw,"../assets/filled/user.svg":sw,"../assets/filled/users.svg":cw,"../assets/filled/verified-badge.svg":dw,"../assets/filled/video-off.svg":uw,"../assets/filled/video.svg":hw,"../assets/filled/voicemail.svg":gw,"../assets/filled/volume-high.svg":vw,"../assets/filled/volume-low.svg":mw,"../assets/filled/volume-muted.svg":pw,"../assets/filled/volume-none.svg":fw,"../assets/filled/walk.svg":ww,"../assets/filled/watch.svg":Ew,"../assets/filled/wifi-off.svg":yw,"../assets/filled/wifi.svg":xw,"../assets/filled/zoom-in.svg":Cw,"../assets/filled/zoom-out.svg":bw}),Pe=({name:e,variant:n="outlined",size:t=24,...o})=>{const i=n==="outlined"?Tw:Mw,r=`../assets/${n}/${e}.svg`,a=i[r];return a?Iw.jsx(a,{...o,width:t,height:t}):null},ya=ve({slots:["item","title","itemIndicator","icon","description"],base:{item:{display:"flex",width:"100%",gap:"sd.system.dimension.spacing.extraSmall",paddingX:"sd.system.dimension.spacing.medium",paddingY:"sd.system.dimension.spacing.small",_hover:{bg:"color-mix(in srgb, {colors.sd.system.color.component.surface}, {colors.sd.system.color.interaction.hoveredVariant})"},cursor:"pointer"},title:{flex:1,textAlign:"left",color:"sd.system.color.component.onSurface",textStyle:"sd.system.typography.body.medium_compact",_expanded:{textStyle:"sd.system.typography.body.medium_expanded"}},itemIndicator:{flex:"0 0 24px",transition:"transform 0.2s",_open:{transform:"rotate(180deg)"}},icon:{color:"sd.system.color.component.onSurface"},description:{paddingX:"sd.system.dimension.spacing.medium",paddingTop:"sd.system.dimension.spacing.small",paddingBottom:"sd.system.dimension.spacing.medium",textStyle:"sd.system.typography.body.medium_compact",_expanded:{textStyle:"sd.system.typography.body.medium_expanded"}}},variants:{isLeftIcon:{true:{item:{flexDirection:"row-reverse"},itemIndicator:{transform:"rotate(-90deg)",_open:{transform:"rotate(0deg)"}}}}}}),zw=({title:e,value:n,description:t,...o})=>{const[i,r]=ya.splitVariantProps(o),a=ya(i);return m.jsxs(bs,{value:e||n,...r,children:[m.jsxs(Ts,{className:a.item,children:[m.jsx("span",{className:a.title,children:e}),m.jsx(Is,{className:a.itemIndicator,children:m.jsx(Pe,{name:"chevron-down",className:a.icon,width:24})})]}),m.jsx(Ss,{className:a.description,children:t})]},e)};var Ow="css,pos,insetX,insetY,insetEnd,end,insetStart,start,flexDir,p,pl,pr,pt,pb,py,paddingY,paddingX,px,pe,paddingEnd,ps,paddingStart,ml,mr,mt,mb,m,my,marginY,mx,marginX,me,marginEnd,ms,marginStart,ringWidth,ringColor,ring,ringOffset,w,minW,maxW,h,minH,maxH,textShadowColor,bgPosition,bgPositionX,bgPositionY,bgAttachment,bgClip,bg,bgColor,bgOrigin,bgImage,bgRepeat,bgBlendMode,bgSize,bgGradient,rounded,roundedTopLeft,roundedTopRight,roundedBottomRight,roundedBottomLeft,roundedTop,roundedRight,roundedBottom,roundedLeft,roundedStartStart,roundedStartEnd,roundedStart,roundedEndStart,roundedEndEnd,roundedEnd,borderX,borderXWidth,borderXColor,borderY,borderYWidth,borderYColor,borderStart,borderStartWidth,borderStartColor,borderEnd,borderEndWidth,borderEndColor,shadow,shadowColor,x,y,z,scrollMarginY,scrollMarginX,scrollPaddingY,scrollPaddingX,aspectRatio,boxDecorationBreak,zIndex,boxSizing,objectPosition,objectFit,overscrollBehavior,overscrollBehaviorX,overscrollBehaviorY,position,top,left,inset,insetInline,insetBlock,insetBlockEnd,insetBlockStart,insetInlineEnd,insetInlineStart,right,bottom,float,visibility,display,hideFrom,hideBelow,flexBasis,flex,flexDirection,flexGrow,flexShrink,gridTemplateColumns,gridTemplateRows,gridColumn,gridRow,gridColumnStart,gridColumnEnd,gridAutoFlow,gridAutoColumns,gridAutoRows,gap,gridGap,gridRowGap,gridColumnGap,rowGap,columnGap,justifyContent,alignContent,alignItems,alignSelf,padding,paddingLeft,paddingRight,paddingTop,paddingBottom,paddingBlock,paddingBlockEnd,paddingBlockStart,paddingInline,paddingInlineEnd,paddingInlineStart,marginLeft,marginRight,marginTop,marginBottom,margin,marginBlock,marginBlockEnd,marginBlockStart,marginInline,marginInlineEnd,marginInlineStart,spaceX,spaceY,outlineWidth,outlineColor,outline,outlineOffset,divideX,divideY,divideColor,divideStyle,width,inlineSize,minWidth,minInlineSize,maxWidth,maxInlineSize,height,blockSize,minHeight,minBlockSize,maxHeight,maxBlockSize,color,fontFamily,fontSize,fontSizeAdjust,fontPalette,fontKerning,fontFeatureSettings,fontWeight,fontSmoothing,fontVariant,fontVariantAlternates,fontVariantCaps,fontVariationSettings,fontVariantNumeric,letterSpacing,lineHeight,textAlign,textDecoration,textDecorationColor,textEmphasisColor,textDecorationStyle,textDecorationThickness,textUnderlineOffset,textTransform,textIndent,textShadow,textOverflow,verticalAlign,wordBreak,textWrap,truncate,lineClamp,listStyleType,listStylePosition,listStyleImage,listStyle,backgroundPosition,backgroundPositionX,backgroundPositionY,backgroundAttachment,backgroundClip,background,backgroundColor,backgroundOrigin,backgroundImage,backgroundRepeat,backgroundBlendMode,backgroundSize,backgroundGradient,textGradient,gradientFromPosition,gradientToPosition,gradientFrom,gradientTo,gradientVia,gradientViaPosition,borderRadius,borderTopLeftRadius,borderTopRightRadius,borderBottomRightRadius,borderBottomLeftRadius,borderTopRadius,borderRightRadius,borderBottomRadius,borderLeftRadius,borderStartStartRadius,borderStartEndRadius,borderStartRadius,borderEndStartRadius,borderEndEndRadius,borderEndRadius,border,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,borderColor,borderInline,borderInlineWidth,borderInlineColor,borderBlock,borderBlockWidth,borderBlockColor,borderLeft,borderLeftColor,borderInlineStart,borderInlineStartWidth,borderInlineStartColor,borderRight,borderRightColor,borderInlineEnd,borderInlineEndWidth,borderInlineEndColor,borderTop,borderTopColor,borderBottom,borderBottomColor,borderBlockEnd,borderBlockEndColor,borderBlockStart,borderBlockStartColor,opacity,boxShadow,boxShadowColor,mixBlendMode,filter,brightness,contrast,grayscale,hueRotate,invert,saturate,sepia,dropShadow,blur,backdropFilter,backdropBlur,backdropBrightness,backdropContrast,backdropGrayscale,backdropHueRotate,backdropInvert,backdropOpacity,backdropSaturate,backdropSepia,borderCollapse,borderSpacing,borderSpacingX,borderSpacingY,tableLayout,transitionTimingFunction,transitionDelay,transitionDuration,transitionProperty,transition,animation,animationName,animationTimingFunction,animationDuration,animationDelay,animationPlayState,animationComposition,animationFillMode,animationDirection,animationIterationCount,animationRange,animationState,animationRangeStart,animationRangeEnd,animationTimeline,transformOrigin,transformBox,transformStyle,transform,rotate,rotateX,rotateY,rotateZ,scale,scaleX,scaleY,translate,translateX,translateY,translateZ,accentColor,caretColor,scrollBehavior,scrollbar,scrollbarColor,scrollbarGutter,scrollbarWidth,scrollMargin,scrollMarginLeft,scrollMarginRight,scrollMarginTop,scrollMarginBottom,scrollMarginBlock,scrollMarginBlockEnd,scrollMarginBlockStart,scrollMarginInline,scrollMarginInlineEnd,scrollMarginInlineStart,scrollPadding,scrollPaddingBlock,scrollPaddingBlockStart,scrollPaddingBlockEnd,scrollPaddingInline,scrollPaddingInlineEnd,scrollPaddingInlineStart,scrollPaddingLeft,scrollPaddingRight,scrollPaddingTop,scrollPaddingBottom,scrollSnapAlign,scrollSnapStop,scrollSnapType,scrollSnapStrictness,scrollSnapMargin,scrollSnapMarginTop,scrollSnapMarginBottom,scrollSnapMarginLeft,scrollSnapMarginRight,scrollSnapCoordinate,scrollSnapDestination,scrollSnapPointsX,scrollSnapPointsY,scrollSnapTypeX,scrollSnapTypeY,scrollTimeline,scrollTimelineAxis,scrollTimelineName,touchAction,userSelect,overflow,overflowWrap,overflowX,overflowY,overflowAnchor,overflowBlock,overflowInline,overflowClipBox,overflowClipMargin,overscrollBehaviorBlock,overscrollBehaviorInline,fill,stroke,strokeWidth,strokeDasharray,strokeDashoffset,strokeLinecap,strokeLinejoin,strokeMiterlimit,strokeOpacity,srOnly,debug,appearance,backfaceVisibility,clipPath,hyphens,mask,maskImage,maskSize,textSizeAdjust,container,containerName,containerType,colorPalette,_hover,_focus,_focusWithin,_focusVisible,_disabled,_active,_visited,_target,_readOnly,_readWrite,_empty,_checked,_enabled,_expanded,_highlighted,_before,_after,_firstLetter,_firstLine,_marker,_selection,_file,_backdrop,_first,_last,_only,_even,_odd,_firstOfType,_lastOfType,_onlyOfType,_peerFocus,_peerHover,_peerActive,_peerFocusWithin,_peerFocusVisible,_peerDisabled,_peerChecked,_peerInvalid,_peerExpanded,_peerPlaceholderShown,_groupFocus,_groupHover,_groupActive,_groupFocusWithin,_groupFocusVisible,_groupDisabled,_groupChecked,_groupExpanded,_groupInvalid,_indeterminate,_required,_valid,_invalid,_autofill,_inRange,_outOfRange,_placeholder,_placeholderShown,_pressed,_selected,_default,_optional,_open,_closed,_fullscreen,_loading,_currentPage,_currentStep,_motionReduce,_motionSafe,_print,_landscape,_portrait,_dark,_light,_osDark,_osLight,_highContrast,_lessContrast,_moreContrast,_ltr,_rtl,_scrollbar,_scrollbarThumb,_scrollbarTrack,_horizontal,_vertical,_starting,expanded,expandedOnly,expandedDown,_themeAsagi,_themeKurikawa,_themeSumire,_themeTsutsuji,textStyle",Vw=Ow.split(","),Fw="WebkitAppearance,WebkitBorderBefore,WebkitBorderBeforeColor,WebkitBorderBeforeStyle,WebkitBorderBeforeWidth,WebkitBoxReflect,WebkitLineClamp,WebkitMask,WebkitMaskAttachment,WebkitMaskClip,WebkitMaskComposite,WebkitMaskImage,WebkitMaskOrigin,WebkitMaskPosition,WebkitMaskPositionX,WebkitMaskPositionY,WebkitMaskRepeat,WebkitMaskRepeatX,WebkitMaskRepeatY,WebkitMaskSize,WebkitOverflowScrolling,WebkitTapHighlightColor,WebkitTextFillColor,WebkitTextStroke,WebkitTextStrokeColor,WebkitTextStrokeWidth,WebkitTouchCallout,WebkitUserModify,accentColor,alignContent,alignItems,alignSelf,alignTracks,all,animation,animationComposition,animationDelay,animationDirection,animationDuration,animationFillMode,animationIterationCount,animationName,animationPlayState,animationRange,animationRangeEnd,animationRangeStart,animationTimingFunction,animationTimeline,appearance,aspectRatio,azimuth,backdropFilter,backfaceVisibility,background,backgroundAttachment,backgroundBlendMode,backgroundClip,backgroundColor,backgroundImage,backgroundOrigin,backgroundPosition,backgroundPositionX,backgroundPositionY,backgroundRepeat,backgroundSize,blockSize,border,borderBlock,borderBlockColor,borderBlockStyle,borderBlockWidth,borderBlockEnd,borderBlockEndColor,borderBlockEndStyle,borderBlockEndWidth,borderBlockStart,borderBlockStartColor,borderBlockStartStyle,borderBlockStartWidth,borderBottom,borderBottomColor,borderBottomLeftRadius,borderBottomRightRadius,borderBottomStyle,borderBottomWidth,borderCollapse,borderColor,borderEndEndRadius,borderEndStartRadius,borderImage,borderImageOutset,borderImageRepeat,borderImageSlice,borderImageSource,borderImageWidth,borderInline,borderInlineEnd,borderInlineColor,borderInlineStyle,borderInlineWidth,borderInlineEndColor,borderInlineEndStyle,borderInlineEndWidth,borderInlineStart,borderInlineStartColor,borderInlineStartStyle,borderInlineStartWidth,borderLeft,borderLeftColor,borderLeftStyle,borderLeftWidth,borderRadius,borderRight,borderRightColor,borderRightStyle,borderRightWidth,borderSpacing,borderStartEndRadius,borderStartStartRadius,borderStyle,borderTop,borderTopColor,borderTopLeftRadius,borderTopRightRadius,borderTopStyle,borderTopWidth,borderWidth,bottom,boxAlign,boxDecorationBreak,boxDirection,boxFlex,boxFlexGroup,boxLines,boxOrdinalGroup,boxOrient,boxPack,boxShadow,boxSizing,breakAfter,breakBefore,breakInside,captionSide,caret,caretColor,caretShape,clear,clip,clipPath,color,colorScheme,columnCount,columnFill,columnGap,columnRule,columnRuleColor,columnRuleStyle,columnRuleWidth,columnSpan,columnWidth,columns,contain,containIntrinsicSize,containIntrinsicBlockSize,containIntrinsicHeight,containIntrinsicInlineSize,containIntrinsicWidth,container,containerName,containerType,content,contentVisibility,counterIncrement,counterReset,counterSet,cursor,direction,display,emptyCells,filter,flex,flexBasis,flexDirection,flexFlow,flexGrow,flexShrink,flexWrap,float,font,fontFamily,fontFeatureSettings,fontKerning,fontLanguageOverride,fontOpticalSizing,fontPalette,fontVariationSettings,fontSize,fontSizeAdjust,fontSmooth,fontStretch,fontStyle,fontSynthesis,fontSynthesisPosition,fontSynthesisSmallCaps,fontSynthesisStyle,fontSynthesisWeight,fontVariant,fontVariantAlternates,fontVariantCaps,fontVariantEastAsian,fontVariantEmoji,fontVariantLigatures,fontVariantNumeric,fontVariantPosition,fontWeight,forcedColorAdjust,gap,grid,gridArea,gridAutoColumns,gridAutoFlow,gridAutoRows,gridColumn,gridColumnEnd,gridColumnGap,gridColumnStart,gridGap,gridRow,gridRowEnd,gridRowGap,gridRowStart,gridTemplate,gridTemplateAreas,gridTemplateColumns,gridTemplateRows,hangingPunctuation,height,hyphenateCharacter,hyphenateLimitChars,hyphens,imageOrientation,imageRendering,imageResolution,imeMode,initialLetter,initialLetterAlign,inlineSize,inputSecurity,inset,insetBlock,insetBlockEnd,insetBlockStart,insetInline,insetInlineEnd,insetInlineStart,isolation,justifyContent,justifyItems,justifySelf,justifyTracks,left,letterSpacing,lineBreak,lineClamp,lineHeight,lineHeightStep,listStyle,listStyleImage,listStylePosition,listStyleType,margin,marginBlock,marginBlockEnd,marginBlockStart,marginBottom,marginInline,marginInlineEnd,marginInlineStart,marginLeft,marginRight,marginTop,marginTrim,mask,maskBorder,maskBorderMode,maskBorderOutset,maskBorderRepeat,maskBorderSlice,maskBorderSource,maskBorderWidth,maskClip,maskComposite,maskImage,maskMode,maskOrigin,maskPosition,maskRepeat,maskSize,maskType,masonryAutoFlow,mathDepth,mathShift,mathStyle,maxBlockSize,maxHeight,maxInlineSize,maxLines,maxWidth,minBlockSize,minHeight,minInlineSize,minWidth,mixBlendMode,objectFit,objectPosition,offset,offsetAnchor,offsetDistance,offsetPath,offsetPosition,offsetRotate,opacity,order,orphans,outline,outlineColor,outlineOffset,outlineStyle,outlineWidth,overflow,overflowAnchor,overflowBlock,overflowClipBox,overflowClipMargin,overflowInline,overflowWrap,overflowX,overflowY,overlay,overscrollBehavior,overscrollBehaviorBlock,overscrollBehaviorInline,overscrollBehaviorX,overscrollBehaviorY,padding,paddingBlock,paddingBlockEnd,paddingBlockStart,paddingBottom,paddingInline,paddingInlineEnd,paddingInlineStart,paddingLeft,paddingRight,paddingTop,page,pageBreakAfter,pageBreakBefore,pageBreakInside,paintOrder,perspective,perspectiveOrigin,placeContent,placeItems,placeSelf,pointerEvents,position,printColorAdjust,quotes,resize,right,rotate,rowGap,rubyAlign,rubyMerge,rubyPosition,scale,scrollbarColor,scrollbarGutter,scrollbarWidth,scrollBehavior,scrollMargin,scrollMarginBlock,scrollMarginBlockStart,scrollMarginBlockEnd,scrollMarginBottom,scrollMarginInline,scrollMarginInlineStart,scrollMarginInlineEnd,scrollMarginLeft,scrollMarginRight,scrollMarginTop,scrollPadding,scrollPaddingBlock,scrollPaddingBlockStart,scrollPaddingBlockEnd,scrollPaddingBottom,scrollPaddingInline,scrollPaddingInlineStart,scrollPaddingInlineEnd,scrollPaddingLeft,scrollPaddingRight,scrollPaddingTop,scrollSnapAlign,scrollSnapCoordinate,scrollSnapDestination,scrollSnapPointsX,scrollSnapPointsY,scrollSnapStop,scrollSnapType,scrollSnapTypeX,scrollSnapTypeY,scrollTimeline,scrollTimelineAxis,scrollTimelineName,shapeImageThreshold,shapeMargin,shapeOutside,tabSize,tableLayout,textAlign,textAlignLast,textCombineUpright,textDecoration,textDecorationColor,textDecorationLine,textDecorationSkip,textDecorationSkipInk,textDecorationStyle,textDecorationThickness,textEmphasis,textEmphasisColor,textEmphasisPosition,textEmphasisStyle,textIndent,textJustify,textOrientation,textOverflow,textRendering,textShadow,textSizeAdjust,textTransform,textUnderlineOffset,textUnderlinePosition,textWrap,timelineScope,top,touchAction,transform,transformBox,transformOrigin,transformStyle,transition,transitionBehavior,transitionDelay,transitionDuration,transitionProperty,transitionTimingFunction,translate,unicodeBidi,userSelect,verticalAlign,viewTimeline,viewTimelineAxis,viewTimelineInset,viewTimelineName,viewTransitionName,visibility,whiteSpace,whiteSpaceCollapse,widows,width,willChange,wordBreak,wordSpacing,wordWrap,writingMode,zIndex,zoom,alignmentBaseline,baselineShift,clipRule,colorInterpolation,colorRendering,dominantBaseline,fill,fillOpacity,fillRule,floodColor,floodOpacity,glyphOrientationVertical,lightingColor,marker,markerEnd,markerMid,markerStart,shapeRendering,stopColor,stopOpacity,stroke,strokeDasharray,strokeDashoffset,strokeLinecap,strokeLinejoin,strokeMiterlimit,strokeOpacity,strokeWidth,textAnchor,vectorEffect",Pw=Fw.split(",").concat(Vw),kw=new Map(Pw.map(e=>[e,!0])),Bw=/&|@/,N0=dn(e=>kw.has(e)||e.startsWith("--")||Bw.test(e));const Aw=(e,n)=>!n.includes(e)&&!N0(e),Lw=(e,n)=>e.__shouldForwardProps__&&n?t=>e.__shouldForwardProps__(t)&&n(t):n,_w=(e,n)=>{var o;if(e&&!n)return e;if(!e&&n)return n;if(e.__cva__&&n.__cva__||e.__recipe__&&n.__recipe__)return e.merge(n);const t=new TypeError("Cannot merge cva with recipe. Please use either cva or recipe.");throw(o=TypeError.captureStackTrace)==null||o.call(TypeError,t),t},Nw=e=>typeof e=="string"?e:(e==null?void 0:e.displayName)||(e==null?void 0:e.name)||"Component";function Nl(e,n={},t={}){const o=n.__cva__||n.__recipe__?n:ft(n),i=t.shouldForwardProp||Aw,r=g=>i(g,o.variantKeys),a=Object.assign(t.dataAttr&&n.__name__?{"data-recipe":n.__name__}:{},t.defaultProps),s=_w(e.__cva__,o),c=Lw(e,r),d=e.__base__||e,h=S.forwardRef(function(p,w){const{as:f=d,children:x,...C}=p,E=S.useMemo(()=>Object.assign({},a,C),[C]),[T,F,k,q,Q]=S.useMemo(()=>Ao(E,Dl.keys,c,s.variantKeys,N0),[E]);function ce(){var M;const{css:V,...I}=q,R=(M=s.__getCompoundVariantCss__)==null?void 0:M.call(s,k);return ne(s(k,!1),xe(R,I,V),E.className)}function H(){const{css:V,...I}=q,R=s.raw(k);return ne(xe(R,I,V),E.className)}const L=n.__recipe__?ce:H;return S.createElement(f,{ref:w,...F,...Q,...Dl(T),className:L()},E.children??x)}),v=Nw(d);return h.displayName=`styled.${v}`,h.__cva__=s,h.__base__=d,h.__shouldForwardProps__=r,h}function $w(){const e=new Map;return new Proxy(Nl,{apply(n,t,o){return Nl(...o)},get(n,t){return e.has(t)||e.set(t,Nl(t)),e.get(t)}})}const pr=$w(),xa={transform(e){return e}},Hw=(e={})=>{const n=N1(xa,e);return xa.transform(n,_1)},Dw=S.forwardRef(function(n,t){const[o,i]=Ao(n,[]),r=Hw(o),a={ref:t,...r,...i};return S.createElement(pr.div,a)}),jw=pr(Ms,{base:{display:"flex",flexDirection:"column"}}),oi=ve({slots:["root","fallback","image"],base:{root:{borderRadius:"50%"},fallback:{display:"flex",alignItems:"center",justifyContent:"center",width:"100%",height:"100%",borderRadius:"50%",color:"sd.system.color.component.onSurface",backgroundColor:"sd.reference.color.scale.blue.200",textStyle:"sd.system.typography.label.extraLarge_compact"},image:{width:"100%",height:"100%",borderRadius:"50%"}},variants:{size:{small:{root:{width:24,height:24},fallback:{fontSize:11}},medium:{root:{width:40,height:40},fallback:{fontSize:19}},large:{root:{width:80,height:80},fallback:{fontSize:37}}}},defaultVariants:{size:"medium"}}),Ww=({src:e,alt:n,text:t,placeholder:o="filled",className:i,...r})=>{const[a,s]=oi.splitVariantProps(r),{size:c}=a,d=oi({size:c,...a}),h=c==="small"?24:c==="large"?80:40;return m.jsx(Fs,{className:ne(d.root,i),...s,children:e?m.jsx(Vs,{className:d.image,src:e,alt:n}):t?m.jsx(Os,{className:d.fallback,children:t.slice(0,2)}):o==="outlined"?m.jsx(Pe,{name:"user-circle",size:h}):m.jsx(Gw,{})})},Gw=()=>m.jsxs("svg",{viewBox:"0 0 80 80",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[m.jsxs("g",{"clip-path":"url(#clip0_3661_24550)",children:[m.jsx("rect",{width:"80",height:"80",rx:"40",fill:"#EFF2FC"}),m.jsx("g",{style:{mixBlendMode:"multiply"},children:m.jsx("path",{d:"M42.783 26.208L13.5059 26.208L34.4075 63.9769L63.6846 63.9769L42.783 26.208Z",fill:"#0A69CF"})}),m.jsx("g",{style:{mixBlendMode:"multiply"},children:m.jsx("path",{d:"M14.5894 51.3908C14.5894 52.5565 16.3965 53.3535 16.8169 54.369C17.2373 55.3845 16.5548 57.2598 17.3465 58.0515C18.1381 58.8431 19.978 58.147 21.0289 58.5811C22.0799 59.0151 22.8415 60.8085 24.0071 60.8085C25.1727 60.8085 25.9698 59.0014 26.9853 58.5811C28.0008 58.1607 29.8761 58.8431 30.6677 58.0515C31.4594 57.2598 30.7633 55.42 31.1973 54.369C31.6313 53.3181 33.4248 52.5565 33.4248 51.3908C33.4248 50.2252 31.6177 49.4281 31.1973 48.4127C30.7769 47.3972 31.4594 45.5218 30.6677 44.7302C29.8761 43.9386 28.0362 44.6347 26.9853 44.2006C25.9343 43.7666 25.1727 41.9731 24.0071 41.9731C22.8415 41.9731 22.0444 43.7803 21.0289 44.2006C20.0135 44.621 18.1381 43.9386 17.3465 44.7302C16.5548 45.5218 17.2509 47.3617 16.8169 48.4127C16.3829 49.4636 14.5894 50.2252 14.5894 51.3908Z",fill:"#8FAEFE"})}),m.jsx("g",{style:{mixBlendMode:"multiply"},children:m.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M48.5175 28.506C51.5824 31.5709 56.5515 31.5709 59.6164 28.506L64.373 33.2627C58.6812 38.9546 49.4528 38.9546 43.7609 33.2627C38.069 27.5708 38.069 18.3424 43.7609 12.6505L48.5175 17.4072C45.4527 20.472 45.4527 25.4412 48.5175 28.506Z",fill:"#F84258"})})]}),m.jsx("defs",{children:m.jsx("clipPath",{id:"clip0_3661_24550",children:m.jsx("rect",{width:"80",height:"80",fill:"white"})})})]}),li=ft({base:{display:"inline-flex",alignItems:"center",gap:"2px",borderRadius:"sd.system.dimension.radius.extraLarge",bg:"sd.system.color.interaction.hoveredVariant"},variants:{size:{small:{height:"16px",pr:"sd.system.dimension.spacing.twoExtraSmall",pl:"sd.system.dimension.spacing.twoExtraSmall",textStyle:"sd.system.typography.label.small_compact",expanded:{textStyle:"sd.system.typography.label.small_expanded"}},medium:{height:"24px",pr:"sd.system.dimension.spacing.extraSmall",pl:"sd.system.dimension.spacing.extraSmall",textStyle:"sd.system.typography.label.medium_compact",expanded:{textStyle:"sd.system.typography.label.medium_expanded"}},large:{height:"32px",pr:"sd.system.dimension.spacing.medium",pl:"sd.system.dimension.spacing.medium",textStyle:"sd.system.typography.label.large_compact",expanded:{textStyle:"sd.system.typography.label.large_expanded"}}},styleColor:{gray:{bg:"sd.reference.color.scale.gray.600",color:"sd.system.color.component.inverseOnSurface"},blue:{bg:"sd.reference.color.scale.blue.600",color:"sd.system.color.component.inverseOnSurface"},green:{bg:"sd.reference.color.scale.green.600",color:"sd.system.color.component.inverseOnSurface"},yellow:{bg:"sd.reference.color.scale.yellow.600",color:"sd.system.color.component.inverseOnSurface"},chestnut:{bg:"sd.reference.color.scale.chestnut.600",color:"sd.system.color.component.inverseOnSurface"},red:{bg:"sd.reference.color.scale.red.600",color:"sd.system.color.component.inverseOnSurface"},"gray-subtle":{bg:"sd.reference.color.scale.gray.100",color:"sd.reference.color.scale.gray.800"},"blue-subtle":{bg:"sd.reference.color.scale.blue.100",color:"sd.reference.color.scale.blue.800"},"green-subtle":{bg:"sd.reference.color.scale.green.100",color:"sd.reference.color.scale.green.800"},"yellow-subtle":{bg:"sd.reference.color.scale.yellow.100",color:"sd.reference.color.scale.yellow.800"},"chestnut-subtle":{bg:"sd.reference.color.scale.chestnut.100",color:"sd.reference.color.scale.chestnut.800"},"red-subtle":{bg:"sd.reference.color.scale.red.100",color:"sd.reference.color.scale.red.800"}}},defaultVariants:{size:"medium",styleColor:"gray"}}),Uw=({children:e,closeButton:n,...t})=>{const[o,{className:i,...r}]=li.splitVariantProps(t),a=li(o);return m.jsxs("span",{className:ne(a,i),...r,children:[e,n]})},Kw=ft({base:{cursor:"pointer"}}),qw=e=>{const n=Kw();return m.jsx("button",{...e,className:n,children:m.jsx(Pe,{name:"close",color:"currentColor",size:12})})},Ca=ve({slots:["container","icon","title","description"],base:{container:{display:"grid",gridTemplateColumns:"24px 1fr",columnGap:"sd.system.dimension.spacing.twoExtraSmall",rowGap:"sd.system.dimension.spacing.extraSmall",p:"sd.system.dimension.spacing.small",borderRadius:"sd.system.dimension.radius.medium"},title:{textStyle:"sd.system.typography.body.medium_compact",expanded:{textStyle:"sd.system.typography.body.medium_expanded"}},description:{gridArea:"2 / 2 / 3 / 3",textStyle:"sd.system.typography.body.medium_compact",expanded:{textStyle:"sd.system.typography.body.medium_expanded"}}},variants:{type:{information:{container:{bg:"sd.system.color.component.surface",color:"sd.system.color.component.onSurface",borderWidth:"sd.system.dimension.border.medium",borderStyle:"solid",borderColor:"sd.system.color.component.outline"}},error:{container:{bg:"sd.system.color.impression.negativeContainer",color:"sd.system.color.impression.onNegativeContainer",borderWidth:"sd.system.dimension.border.medium",borderStyle:"solid",borderColor:"sd.system.color.impression.negativeContainer"},icon:{color:"sd.system.color.impression.negative"}},warning:{container:{bg:"sd.system.color.impression.noticeContainer",color:"sd.system.color.impression.onNoticeContainer",borderWidth:"sd.system.dimension.border.medium",borderStyle:"solid",borderColor:"sd.system.color.impression.noticeContainer"}}}},defaultVariants:{type:"information"}}),Yw=e=>{const[n,{title:t,icon:o,description:i,className:r,...a}]=Ca.splitVariantProps(e),s=Ca(n),c=n.type||"alert-circle";return m.jsxs("div",{className:ne(s.container,r),...a,children:[m.jsx("div",{className:s.icon,children:o||m.jsx(Pe,{name:"alert-circle",size:24,variant:c==="error"||c==="warning"?"filled":"outlined"})}),m.jsx("h2",{className:s.title,children:t}),m.jsx("p",{className:s.description,children:i})]})},Xw=({children:e,className:n,...t})=>m.jsx("nav",{className:ne(xe({display:"flex",alignItems:"center",justifyContent:"space-around",height:64,paddingX:"sd.system.dimension.spacing.medium",borderTop:"1px solid",borderTopColor:"sd.system.color.component.outline"}),n),...t,children:e}),ba=ve({slots:["root","text"],base:{root:{position:"absolute",display:"flex",alignItems:"center",justifyContent:"center",height:24,minWidth:24,color:"sd.system.color.impression.onNegative",borderRadius:"sd.system.dimension.radius.full",paddingX:"sd.system.dimension.spacing.twoExtraSmall",textStyle:"sd.system.typography.label.small_compact",_expanded:{textStyle:"sd.system.typography.label.small_expanded"}},text:{height:24,lineHeight:"24px"}},variants:{size:{small:{root:{height:16,minWidth:16,paddingX:"sd.system.dimension.spacing.twoExtraSmall"}},medium:{root:{height:24,minWidth:24,paddingX:"sd.system.dimension.spacing.extraSmall"}}},variant:{primary:{root:{backgroundColor:"sd.system.color.impression.negative"}},secondary:{root:{backgroundColor:"sd.system.color.impression.primary"}}},noNumber:{true:{root:{height:8,paddingX:0,minWidth:8}}},position:{relative:{root:{position:"relative"}}}},defaultVariants:{variant:"primary",size:"medium"}}),cn=({count:e,noNumber:n,className:t,...o})=>{const[i,r]=ba.splitVariantProps(o),a=ba({noNumber:n,...i});return n?m.jsx("div",{className:ne(a.root,t),...r}):!e||e<1?null:m.jsx("div",{className:ne(a.root,t),...r,children:m.jsx("span",{className:a.text,children:e>99?"99+":e})})},ii=ve({slots:["root","iconGroup","icon","label","badge"],base:{root:{display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",gap:"sd.system.dimension.spacing.twoExtraSmall",height:64,flex:1,cursor:"pointer"},iconGroup:{position:"relative"},label:{color:"sd.system.color.component.onSurface",textStyle:"sd.system.typography.label.small_compact",expanded:{textStyle:"sd.system.typography.label.small_compact"}},icon:{color:"sd.system.color.component.onSurface","& svg":{width:"sd.reference.dimension.scale.8",height:"sd.reference.dimension.scale.8"}},badge:{position:"absolute",top:"-6px",right:"4px"}},variants:{isActive:{true:{label:{color:"sd.system.color.impression.primary"},icon:{color:"sd.system.color.impression.primary"}}},dot:{true:{badge:{top:"-2.5px",right:"4px"}}}},defaultVariants:{isActive:!1}}),Zw=({icon:e,label:n,count:t,className:o,...i})=>{const[r,a]=ii.splitVariantProps(i),s=ii(r);return m.jsxs("button",{className:ne(s.root,o),...a,children:[m.jsxs("div",{className:s.iconGroup,children:[m.jsx("div",{className:s.badge,children:m.jsx(cn,{count:t||0,noNumber:r.dot,size:"small"})}),m.jsx("div",{className:s.icon,children:e})]}),m.jsx("span",{className:s.label,children:n})]})},Ra={color:"sd.system.color.component.onSurface",outlineWidth:"sd.system.dimension.border.medium",outlineStyle:"solid",outlineColor:"sd.system.color.component.outline",bgColor:"sd.system.color.component.surface",_enabled:{_hover:{bgColor:"sd.system.color.interaction.hoveredVariant"},_focusVisible:{outlineColor:"sd.system.color.component.outlineVariant",bgColor:"sd.system.color.interaction.hoveredVariant"}},_disabled:{bgColor:"sd.system.color.interaction.disabled",color:"sd.system.color.interaction.disabledOnSurface",outline:"none"}},ri=ft({base:{borderRadius:"sd.system.dimension.radius.full",position:"relative",display:"inline-flex",gap:"sd.system.dimension.spacing.twoExtraSmall",alignItems:"center",justifyContent:"center",overflow:"hidden",cursor:"pointer",_disabled:{cursor:"not-allowed"}},variants:{styleType:{filled:{bg:"sd.system.color.impression.primaryContainer",color:"sd.system.color.impression.onPrimaryContainer",_enabled:{_hover:{_after:{content:"''",position:"absolute",inset:"0",bg:"sd.system.color.interaction.hovered"}},_focusVisible:{outlineWidth:"sd.system.dimension.border.medium",outlineStyle:"solid",outlineColor:"sd.system.color.interaction.hovered",_after:{content:"''",position:"absolute",inset:"0",bg:"sd.system.color.interaction.hovered"}}},_disabled:{bg:"sd.system.color.interaction.disabled",color:"sd.system.color.interaction.disabledOnSurface"}},ghost:{color:"sd.system.color.impression.primary",_enabled:{_hover:{bgColor:"sd.system.color.interaction.hoveredVariant"},_focusVisible:{bgColor:"sd.system.color.interaction.hoveredVariant",outlineWidth:"sd.system.dimension.border.medium",outlineStyle:"solid",outlineColor:"sd.system.color.component.outlineVariant"}},_disabled:{color:"sd.system.color.interaction.disabledOnSurface"}},outlined:Ra,rectangle:{...Ra,borderRadius:"sd.system.dimension.radius.medium"}},size:{medium:{height:48,px:"sd.system.dimension.spacing.extraLarge",py:"sd.system.dimension.spacing.small",textStyle:"sd.system.typography.label.large_compact",expanded:{textStyle:"sd.system.typography.label.large_expanded"}},small:{height:32,px:"sd.system.dimension.spacing.small",py:"sd.system.dimension.spacing.twoExtraSmall",textStyle:"sd.system.typography.label.medium_compact",expanded:{textStyle:"sd.system.typography.label.medium_expanded"}}}},defaultVariants:{styleType:"filled",size:"medium"}}),$l=pr("span",{base:{position:"relative",zIndex:"sd.system.elevation.zIndex.base"}}),ko=S.forwardRef((e,n)=>{const[t,{children:o,leftIcon:i,rightIcon:r,isLoading:a,className:s,...c}]=ri.splitVariantProps(e),d=ri(t),h=xe(i||r?e.size==="medium"?{paddingLeft:i?"sd.system.dimension.spacing.medium":"sd.system.dimension.spacing.extraLarge",paddingRight:r?"sd.system.dimension.spacing.medium":"sd.system.dimension.spacing.extraLarge"}:{paddingLeft:i?"sd.system.dimension.spacing.extraSmall":"sd.system.dimension.spacing.medium",paddingRight:r?"sd.system.dimension.spacing.extraSmall":"sd.system.dimension.spacing.medium"}:{});return m.jsxs("button",{ref:n,className:ne(d,h,s),...c,children:[a&&m.jsx(K0,{size:t.size,color:e.styleType===void 0||e.styleType==="filled"?"white":"gray"}),!a&&i&&m.jsx($l,{p:"2px",children:i}),m.jsx($l,{children:o}),!a&&r&&m.jsx($l,{p:"2px",children:r})]})}),$0=e=>l.createElement("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e},l.createElement("path",{d:"M3.25 6C3.25 4.48122 4.48122 3.25 6 3.25H18C19.5188 3.25 20.75 4.48122 20.75 6V18C20.75 19.5188 19.5188 20.75 18 20.75H6C4.48122 20.75 3.25 19.5188 3.25 18V6Z",fill:"currentColor"}),l.createElement("path",{d:"M16.5294 9.52941L10.9991 15.0597L7.46875 11.5294L8.52941 10.4688L10.9991 12.9384L15.4688 8.46875L16.5294 9.52941Z",fill:"currentColor",className:"checkmark"})),H0=e=>l.createElement("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e},l.createElement("path",{d:"M3.25 6C3.25 4.48122 4.48122 3.25 6 3.25H18C19.5188 3.25 20.75 4.48122 20.75 6V18C20.75 19.5188 19.5188 20.75 18 20.75H6C4.48122 20.75 3.25 19.5188 3.25 18V6ZM6 4.75C5.30964 4.75 4.75 5.30964 4.75 6V18C4.75 18.6904 5.30964 19.25 6 19.25H18C18.6904 19.25 19.25 18.6904 19.25 18V6C19.25 5.30964 18.6904 4.75 18 4.75H6Z",fill:"currentColor"})),fr={flexShrink:0,cursor:"pointer",".group:has(:focus-visible) &":{outlineStyle:"solid",outlineOffset:"-2px",outlineWidth:"1.5px",outlineColor:"sd.system.color.impression.primary",borderRadius:"sd.system.dimension.radius.small"},_disabled:{_checked:{"& svg":{color:"color-mix(in srgb, {colors.sd.system.color.impression.primary}, {colors.sd.system.color.interaction.hoveredOnPrimary});"},"& .checkmark":{color:"color-mix(in srgb, {colors.sd.system.color.interaction.disabled}, {colors.sd.system.color.impression.onPrimaryContainer});"}}}},wr={width:24,height:24,color:"sd.system.color.impression.primary","& .checkmark":{color:"sd.system.color.impression.onPrimaryContainer"}},Er={width:24,height:24,color:"sd.system.color.component.outline",_disabled:{color:"color-mix(in srgb, {colors.sd.system.color.component.outline}, {colors.sd.system.color.interaction.hoveredOnPrimary});"}},ai=ve({slots:["root","itemControl","checkedIcon","uncheckedIcon","itemTextGroup","itemText","helperText"],base:{root:{display:"flex",alignItems:"center",gap:"sd.system.dimension.spacing.medium",paddingY:"sd.system.dimension.spacing.small",paddingX:"sd.system.dimension.spacing.medium",cursor:"pointer"},itemControl:fr,checkedIcon:wr,uncheckedIcon:Er,itemTextGroup:{display:"flex",flexFlow:"column"},itemText:{color:"sd.system.color.component.onSurface",textStyle:"sd.system.typography.body.medium_compact",_expanded:{textStyle:"sd.system.typography.body.medium_expanded"},_disabled:{color:"sd.system.color.interaction.disabledOnSurface"}},helperText:{color:"sd.system.color.component.onSurfaceVariant",marginTop:"sd.system.dimension.spacing.twoExtraSmall",textStyle:"sd.system.typography.body.extraSmall_compact",_expanded:{textStyle:"sd.system.typography.body.extraSmall_expanded"},_disabled:{color:"sd.system.color.interaction.disabledOnSurface"}}}}),Jw=({value:e,label:n,helperText:t,className:o,...i})=>{const[r,a]=ai.splitVariantProps(i),s=ai(r),c=ne(s.root,t&&xe({alignItems:"flex-start"}));return m.jsxs(Xi,{value:e,className:ne("group",c,o),...a,children:[m.jsx(Ps,{children:d=>m.jsx(Ki,{className:s.itemControl,children:d.checked?m.jsx($0,{className:s.checkedIcon}):m.jsx(H0,{className:s.uncheckedIcon})})}),m.jsxs("div",{className:s.itemTextGroup,children:[m.jsx(ql,{className:s.itemText,children:n}),t&&m.jsx(ql,{className:s.helperText,children:t})]}),m.jsx(Yi,{})]})},D0=e=>l.createElement("svg",{width:24,height:24,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",...e},l.createElement("path",{d:"M12 4.75C7.99594 4.75 4.75 7.99594 4.75 12C4.75 16.0041 7.99594 19.25 12 19.25C16.0041 19.25 19.25 16.0041 19.25 12C19.25 7.99594 16.0041 4.75 12 4.75ZM3.25 12C3.25 7.16751 7.16751 3.25 12 3.25C16.8325 3.25 20.75 7.16751 20.75 12C20.75 16.8325 16.8325 20.75 12 20.75C7.16751 20.75 3.25 16.8325 3.25 12Z",fill:"currentColor"}),l.createElement("path",{d:"M18 12C18 15.3137 15.3137 18 12 18C8.68629 18 6 15.3137 6 12C6 8.68629 8.68629 6 12 6C15.3137 6 18 8.68629 18 12Z",fill:"currentColor"})),j0=e=>l.createElement("svg",{width:24,height:24,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",...e},l.createElement("path",{d:"M12 4.75C7.99594 4.75 4.75 7.99594 4.75 12C4.75 16.0041 7.99594 19.25 12 19.25C16.0041 19.25 19.25 16.0041 19.25 12C19.25 7.99594 16.0041 4.75 12 4.75ZM3.25 12C3.25 7.16751 7.16751 3.25 12 3.25C16.8325 3.25 20.75 7.16751 20.75 12C20.75 16.8325 16.8325 20.75 12 20.75C7.16751 20.75 3.25 16.8325 3.25 12Z",fill:"currentColor"})),yr={flexShrink:0,cursor:"pointer",".group:has(:focus-visible) &":{backgroundColor:"sd.system.color.interaction.selectedSurface",borderRadius:"sd.system.dimension.radius.full"}},xr={color:"sd.system.color.impression.primary",_disabled:{color:"color-mix(in srgb, {colors.sd.system.color.impression.primary}, {colors.sd.system.color.interaction.hoveredOnPrimary});"}},Cr={color:"sd.system.color.component.outlineVariant",_disabled:{color:"color-mix(in srgb, {colors.sd.system.color.component.outlineVariant}, {colors.sd.system.color.interaction.hoveredOnPrimary});"}},si=ve({slots:["item","itemControl","checkedIcon","unCheckedIcon","itemTextGroup","itemText","helperText"],base:{item:{display:"flex",alignItems:"center",gap:"sd.system.dimension.spacing.medium",paddingY:"sd.system.dimension.spacing.small",paddingX:"sd.system.dimension.spacing.medium",cursor:"pointer"},itemControl:yr,checkedIcon:xr,unCheckedIcon:Cr,itemTextGroup:{display:"flex",flexFlow:"column"},itemText:{color:"sd.system.color.component.onSurface",textStyle:"sd.system.typography.body.medium_compact",_expanded:{textStyle:"sd.system.typography.body.medium_expanded"},_disabled:{color:"sd.system.color.interaction.disabledOnSurface"}},helperText:{color:"sd.system.color.component.onSurfaceVariant",marginTop:"sd.system.dimension.spacing.twoExtraSmall",textStyle:"sd.system.typography.body.extraSmall_compact",_expanded:{textStyle:"sd.system.typography.body.extraSmall_expanded"},_disabled:{color:"sd.system.color.interaction.disabledOnSurface"}}}}),Qw=({value:e,label:n,helperText:t,className:o,...i})=>{const[r,a]=si.splitVariantProps(i),s=si(r),c=ne(s.item,t&&xe({alignItems:"flex-start"}));return m.jsxs(ur,{value:e,className:ne("group",c,o),...a,children:[m.jsx(m0,{children:d=>m.jsx(hr,{className:s.itemControl,asChild:!0,children:d.checked?m.jsx(D0,{className:s.checkedIcon}):m.jsx(j0,{className:s.unCheckedIcon})})}),m.jsxs("div",{className:s.itemTextGroup,children:[n&&m.jsx(Jl,{className:s.itemText,children:n}),t&&m.jsx(Jl,{className:s.helperText,children:t})]}),m.jsx(gr,{})]})},ci=ve({slots:["root","radioItem","radioCheckedIcon","radioUncheckedIcon","checkboxItem","checkboxCheckedIcon","checkboxUncheckedIcon"],base:{root:{display:"flex"},radioItem:yr,radioCheckedIcon:xr,radioUncheckedIcon:Cr,checkboxItem:fr,checkboxCheckedIcon:wr,checkboxUncheckedIcon:Er}}),eE=({type:e,value:n,className:t,...o})=>{const[i,r]=ci.splitVariantProps(o),a=ci(i);if(e==="radio")return m.jsxs(ur,{value:n,className:ne("group",a.root,t),...r,children:[m.jsx(m0,{children:s=>m.jsx(hr,{className:a.radioItem,asChild:!0,children:s.checked?m.jsx(D0,{className:a.radioCheckedIcon}):m.jsx(j0,{className:a.radioUncheckedIcon})})}),m.jsx(gr,{})]});if(e==="checkbox")return m.jsxs(Xi,{value:n,className:ne("group",a.root,t),...r,children:[m.jsx(Ps,{children:s=>m.jsx(Ki,{className:a.checkboxItem,children:s.checked?m.jsx($0,{className:a.checkboxCheckedIcon}):m.jsx(H0,{className:a.checkboxUncheckedIcon})})}),m.jsx(Yi,{})]})},tE=ve({slots:["root","labelContainer","label","labelTitle","labelText","area","areaContainer","areaValue","areaValueLabel","areaValueContainer","areaValueNumber","areaValueNumberUnit"],base:{root:{display:"flex",flexDirection:"column",gap:"sd.system.dimension.spacing.medium",py:"sd.system.dimension.spacing.small",px:"sd.system.dimension.spacing.medium",width:"100%",bgColor:"sd.system.color.component.surface",borderRadius:"sd.system.dimension.radius.medium"},labelContainer:{display:"flex",justifyContent:"space-between",alignItems:"center",width:"100%",cursor:"pointer"},label:{display:"flex",alignItems:"center",gap:"sd.system.dimension.spacing.medium",width:"100%"},labelTitle:{textStyle:"sd.system.typography.label.extraLarge_compact",_expanded:{textStyle:"sd.system.typography.label.extraLarge_expanded"}},labelText:{textStyle:"sd.system.typography.label.small_compact",color:"sd.system.color.component.onSurfaceVariant",_expanded:{textStyle:"sd.system.typography.label.small_expanded"}},area:{display:"grid",gridTemplateColumns:"1fr",gap:"sd.system.dimension.spacing.medium"},areaContainer:{},areaValue:{display:"flex",flexDirection:"column",alignSelf:"flex-end"},areaValueLabel:{color:"sd.system.color.component.onSurfaceVariant",textStyle:"sd.system.typography.label.small_compact",_expanded:{textStyle:"sd.system.typography.label.small_expanded"}},areaValueContainer:{display:"flex",alignItems:"baseline",gap:"sd.system.dimension.spacing.twoExtraSmall"},areaValueNumber:{textStyle:"sd.system.typography.title.large_compact",_expanded:{textStyle:"sd.system.typography.title.large_expanded"}},areaValueNumberUnit:{color:"sd.system.color.component.onSurfaceVariant",textStyle:"sd.system.typography.label.small_compact",_expanded:{textStyle:"sd.system.typography.label.small_expanded"}}},variants:{values:{noValue:{area:{gridTemplateColumns:"1fr"}},singleValue:{area:{gridTemplateColumns:"auto 1fr",gap:"sd.system.dimension.spacing.twoExtraLarge"}},doubleValue:{areaContainer:{gridColumn:"span 2",order:-1},area:{gridTemplateColumns:"1fr 1fr"}}}},defaultVariants:{values:"singleValue"}}),nE=({values:e,children:n,linkTo:t,className:o,...i})=>{const r=tE({values:e===void 0?"noValue":e.length===1?"singleValue":"doubleValue"}),a=({label:s,value:c,unit:d})=>m.jsxs("div",{className:r.areaValue,children:[m.jsx("h3",{className:r.areaValueLabel,children:s}),m.jsxs("div",{className:r.areaValueContainer,children:[m.jsx("p",{className:r.areaValueNumber,children:c}),m.jsx("p",{className:r.areaValueNumberUnit,children:d})]})]});return m.jsxs("div",{className:ne(r.root,o),...i,children:[m.jsxs("a",{href:t,className:r.labelContainer,children:[m.jsxs("div",{className:r.label,children:[m.jsx("h2",{className:r.labelTitle,children:"title"}),m.jsx("p",{className:r.labelText,children:"icon"})]}),m.jsx(Pe,{name:"chevron-right"})]}),m.jsxs("div",{className:r.area,children:[e==null?void 0:e.map((s,c)=>m.jsx(a,{...s},c)),m.jsx("div",{className:r.areaContainer,children:n})]})]})},di=ft({base:{border:"none"},variants:{color:{light:{borderColor:"sd.reference.color.scale.gray.200"},normal:{borderColor:"sd.reference.color.scale.gray.300"},dark:{borderColor:"sd.system.color.component.outlineVariant"}},type:{horizontal:{width:"100%",height:"sd.reference.dimension.scale.1",borderBottomStyle:"solid",borderWidth:"sd.system.dimension.border.medium"},vertical:{borderLeftStyle:"solid",width:"sd.reference.dimension.scale.1",borderWidth:"sd.system.dimension.border.medium",height:"100%",minHeight:"10px"}}},defaultVariants:{color:"normal",type:"horizontal"}}),oE=e=>{const[n,t]=di.splitVariantProps(e),{className:o,...i}=t;return m.jsx("hr",{className:ne(di(n),o),...i})},ui=ft({base:{position:"relative",display:"inline-flex",alignItems:"center",justifyContent:"center",overflow:"hidden",color:"sd.system.color.component.onSurface",outlineWidth:"sd.system.dimension.border.medium",outlineStyle:"solid",cursor:"pointer","& svg":{width:"sd.reference.dimension.scale.8",height:"sd.reference.dimension.scale.8"},_disabled:{color:"sd.system.color.interaction.disabledOnSurface",cursor:"not-allowed",outlineColor:"transparent",bg:"sd.system.color.interaction.disabled"}},variants:{shape:{rectangle:{borderRadius:"sd.system.dimension.radius.medium"},circle:{borderRadius:"sd.system.dimension.radius.full"}},styleType:{filled:{color:"sd.system.color.impression.onPrimaryContainer",bgColor:"sd.system.color.impression.primaryContainer",_enabled:{_hover:{backgroundImage:"linear-gradient(0deg, {colors.sd.system.color.interaction.hovered} 0%, {colors.sd.system.color.interaction.hovered} 100%)"},_focusVisible:{outlineWidth:"sd.system.dimension.border.medium",outlineStyle:"solid",outlineColor:"sd.system.color.interaction.hovered",outlineOffset:"-1px",backgroundImage:"linear-gradient(0deg, {colors.sd.system.color.interaction.hovered} 0%, {colors.sd.system.color.interaction.hovered} 100%)"}}},outlined:{outlineColor:"sd.system.color.component.outline",bgColor:"sd.system.color.component.surface",_enabled:{_hover:{bgColor:"sd.system.color.interaction.hoveredVariant"},_focusVisible:{outlineColor:"sd.system.color.component.outlineVariant",bgColor:"sd.system.color.interaction.hoveredVariant"}}},ghost:{outlineColor:"transparent",_enabled:{_hover:{bgColor:"sd.system.color.interaction.hoveredVariant"},_focusVisible:{bgColor:"sd.system.color.interaction.hoveredVariant",outlineColor:"sd.system.color.component.outlineVariant"}},_disabled:{bg:"transparent"}}},size:{large:{w:"{spacing.sd.reference.dimension.scale.17}",h:"{spacing.sd.reference.dimension.scale.17}","& svg":{width:"sd.reference.dimension.scale.12",height:"sd.reference.dimension.scale.12"}},medium:{w:"{spacing.sd.reference.dimension.scale.13}",h:"{spacing.sd.reference.dimension.scale.13}"},small:{w:"{spacing.sd.reference.dimension.scale.10}",h:"{spacing.sd.reference.dimension.scale.10}"}}},defaultVariants:{shape:"circle",styleType:"filled",size:"medium"}}),br=S.forwardRef(({icon:e,className:n,...t},o)=>{const[i,r]=ui.splitVariantProps(t),a=ui(i);return m.jsx("button",{ref:o,className:ne(a,n),...r,children:e})}),Sa=ve({slots:["backdrop","content","contentInner","closeTrigger"],base:{backdrop:{background:"sd.system.color.component.scrim",position:"fixed",inset:0,zIndex:"sd.system.elevation.zIndex.modal"},content:{position:"fixed",top:"0",width:"calc(100% - {spacing.sd.system.dimension.spacing.extraLarge})",maxWidth:"375px",height:"100vh",gap:"sd.system.dimension.spacing.twoExtraLarge",backgroundColor:"sd.system.color.component.surface",boxShadow:"sd.system.elevation.shadow.level5",zIndex:"sd.system.elevation.zIndex.modal"},contentInner:{display:"grid",gap:"sd.system.dimension.spacing.medium"},closeTrigger:{display:"flex",alignItems:"flex-start",padding:"sd.system.dimension.spacing.twoExtraSmall"}},variants:{type:{left:{content:{left:"0",justifyContent:"flex-start"}},full:{content:{left:"0",width:"100%",minWidth:"100%",maxWidth:"100%"}},right:{content:{right:"0"},closeTrigger:{justifyContent:"flex-end"}}}},defaultVariants:{type:"right"}}),lE=({isOpen:e,children:n,contentClassName:t,backdropClassName:o,...i})=>{const[r,a]=Sa.splitVariantProps(i),s=Sa(r);return m.jsx(s0,{open:e,...a,children:m.jsxs(eo,{children:[m.jsx(rr,{className:ne(s.backdrop,o)}),m.jsx(cr,{children:m.jsxs(sr,{className:ne(s.content,t),children:[m.jsx("header",{className:s.closeTrigger,children:m.jsx(ar,{asChild:!0,children:m.jsx(br,{icon:m.jsx(Pe,{name:"close"}),shape:"rectangle",styleType:"ghost"})})}),n]})})]})})},W0=ve({slots:["content","itemGroup","item","itemIcon","button","buttonIcon"],base:{content:{bgColor:"sd.system.color.component.surface",borderRadius:"sd.system.dimension.radius.medium",bg:"sd.system.color.component.surface",boxShadow:"sd.system.elevation.shadow.level1",outline:"none"},itemGroup:{width:240},item:{display:"flex",height:"48px",alignItems:"center",gap:"sd.system.dimension.spacing.small",paddingX:"sd.system.dimension.spacing.medium",paddingY:"sd.system.dimension.spacing.extraSmall",cursor:"pointer",textStyle:"sd.system.typography.body.medium_compact",expanded:{textStyle:"sd.system.typography.body.medium_expanded"},_hover:{bgColor:"sd.system.color.interaction.hoveredVariant"},_highlighted:{bgColor:"sd.system.color.interaction.hoveredVariant"}},itemIcon:{"& svg":{width:"sd.reference.dimension.scale.8",height:"sd.reference.dimension.scale.8"}},button:{paddingY:"sd.system.dimension.spacing.small",paddingInlineStart:"sd.system.dimension.spacing.medium",paddingRight:"sd.system.dimension.spacing.small",color:"sd.system.color.component.onSurfaceVariant",gap:"sd.system.dimension.spacing.extraSmall",textStyle:"sd.system.typography.body.medium_compact",expanded:{textStyle:"sd.system.typography.body.medium_expanded"},_disabled:{outline:"solid",outlineOffset:"0px",outlineColor:"sd.system.color.component.outline",outlineWidth:"sd.system.dimension.border.medium"},_expanded:{textStyle:"sd.system.typography.body.medium_compact",expanded:{textStyle:"sd.system.typography.body.medium_expanded"},"& svg":{transform:"rotate(180deg)"}}},buttonIcon:{color:"sd.system.color.component.onSurface",marginLeft:"2px",transition:"transform 0.2s"}}}),iE=({isIconMenu:e,title:n,items:t,disabled:o,...i})=>{const r=W0();return m.jsxs(i8,{...i,children:[m.jsx(v0,{asChild:!0,children:e?m.jsx(br,{icon:m.jsx(Pe,{name:"menu"}),shape:"rectangle",disabled:o,styleType:"outlined"}):m.jsx(ko,{styleType:"rectangle",size:"medium",disabled:o,rightIcon:m.jsx(Pe,{name:"chevron-down",size:24,className:r.buttonIcon}),className:r.button,children:n})}),m.jsx(eo,{children:m.jsx(g0,{children:m.jsx(d0,{className:r.content,children:m.jsx(h0,{className:r.itemGroup,children:t.map(a=>m.jsxs(u0,{value:a.value,className:r.item,children:[a.icon&&m.jsx("div",{className:r.itemIcon,children:a.icon}),a.label]},a.value))})})})})]})},G0=({children:e,...n})=>m.jsx("ul",{...n,children:e}),hi=ve({slots:["root","wrapper","textGroup","title","description","rightIcon","leftIcon","badge"],base:{root:{position:"relative"},wrapper:{minH:48,display:"flex",alignItems:"center",paddingX:"sd.system.dimension.spacing.medium",paddingY:"sd.system.dimension.spacing.extraSmall",gap:"sd.system.dimension.spacing.small",cursor:"pointer",_hover:{background:"color-mix(in srgb, {colors.sd.system.color.interaction.hoveredVariant}, {colors.sd.system.color.component.surface});"},_focusVisible:{outline:"1px solid",outlineColor:"sd.system.color.component.outline"},_selected:{background:"sd.system.color.interaction.selectedSurface",_hover:{background:"sd.system.color.interaction.selectedSurface"}},_disabled:{opacity:.3,cursor:"not-allowed",_selected:{background:"transparent"}}},textGroup:{display:"flex",flexDirection:"column",flexGrow:1},title:{py:"sd.system.dimension.spacing.twoExtraSmall",textStyle:"sd.system.typography.label.extraLarge_compact",color:"sd.system.color.component.onSurface",_expanded:{textStyle:"sd.system.typography.label.extraLarge_expanded"},_disabled:{opacity:.3}},description:{display:"flex",flexDirection:"column",textStyle:"sd.system.typography.body.extraSmall_compact",color:"sd.system.color.component.onSurfaceVariant",_expanded:{textStyle:"sd.system.typography.body.extraSmall_expanded"},_disabled:{opacity:.3}},leftIcon:{flexShrink:0,"& svg":{display:"block",maxHeight:"100%",maxWidth:"100%",width:"24px",height:"24px"},_disabled:{opacity:.3}},rightIcon:{flexShrink:0,"& svg":{width:"24px",height:"24px"},_disabled:{opacity:.3}},badge:{position:"absolute",right:"sd.system.dimension.spacing.medium",top:"sd.system.dimension.spacing.extraSmall",height:24,minW:24}},variants:{isLargeLeftIcon:{true:{leftIcon:{"& svg":{width:"40px",height:"40px"}}},false:{}},size:{small:{wrapper:{minH:38}}}}}),U0=({leftIcon:e,rightIcon:n,title:t,description:o,badge:i,children:r,disabled:a,selected:s,focusVisible:c,className:d,...h})=>{const[v,g]=hi.splitVariantProps(h),p=hi(v);return m.jsxs("li",{className:ne(p.root,d),...g,children:[m.jsxs("div",{tabIndex:1,className:ne(p.wrapper,o&&xe({alignItems:"flex-start"})),"data-disabled":a?!0:void 0,"data-selected":s?!0:void 0,"data-focus-visible":c?!0:void 0,children:[e&&m.jsx("div",{className:p.leftIcon,style:h.isLargeLeftIcon?{padding:"0",width:"40px",height:"40px"}:{padding:"0",width:"24px",height:"24px"},children:e}),m.jsxs("div",{className:ne(p.textGroup,(!!o||!!r)&&xe({alignItems:"flex-start"})),children:[m.jsx("span",{className:p.title,children:t}),m.jsxs("div",{className:p.description,children:[o,r]})]}),n&&m.jsx("div",{className:p.rightIcon,children:n})]}),i&&m.jsx("div",{className:p.badge,children:m.jsx(cn,{count:i,variant:"secondary"})})]})},rE=ve({slots:["backdrop","content","contentInner","title","description","buttonWrapper","closeTrigger"],base:{backdrop:{background:"sd.system.color.component.scrim",position:"fixed",inset:0,zIndex:"sd.system.elevation.zIndex.modal"},content:{position:"fixed",top:"50%",left:"50%",transform:"translate(-50%, -50%)",width:"calc(100% - {spacing.sd.system.dimension.spacing.large} * 2)",maxWidth:"408px",display:"grid",gap:"sd.system.dimension.spacing.twoExtraLarge",paddingTop:{base:"sd.system.dimension.spacing.extraLarge",expanded:"sd.system.dimension.spacing.large"},paddingRight:"sd.system.dimension.spacing.extraLarge",paddingBottom:"sd.system.dimension.spacing.large",paddingLeft:"sd.system.dimension.spacing.extraLarge",backgroundColor:"sd.system.color.component.surface",boxShadow:"sd.system.elevation.shadow.level5",borderRadius:"sd.system.dimension.radius.medium",zIndex:"sd.system.elevation.zIndex.modal"},contentInner:{display:"grid",gap:"sd.system.dimension.spacing.medium"},title:{textStyle:{base:"sd.system.typography.title.small_compact",expanded:"sd.system.typography.title.small_expanded"}},description:{textStyle:{base:"sd.system.typography.body.medium_compact",expanded:"sd.system.typography.body.medium_expanded"}},buttonWrapper:{display:"flex",alignItems:"center",gap:"sd.system.dimension.spacing.medium",expanded:{flexDirection:"row-reverse",justifyContent:"end"}}}}),aE=({isOpen:e,title:n,cancelButtonLabel:t,submitButtonLabel:o,onButtonClick:i,children:r,className:a,...s})=>{const c=rE(s);return m.jsx(s0,{open:e,...s,children:m.jsxs(eo,{children:[m.jsx(rr,{className:c.backdrop}),m.jsx(cr,{children:m.jsxs(sr,{className:ne(c.content,a),children:[m.jsxs("div",{className:c.contentInner,children:[m.jsx(c0,{className:c.title,children:n}),m.jsx(t0,{className:c.description,children:r})]}),m.jsxs("div",{className:c.buttonWrapper,children:[m.jsx(ko,{onClick:i,children:o}),m.jsx(ar,{asChild:!0,children:m.jsx(ko,{styleType:"ghost",children:t||"閉じる"})})]})]})})]})})},gi=ft({base:{animation:"1s linear infinite spin",stroke:"sd.reference.color.scale.gray.400"},variants:{size:{small:{width:"16px",height:"16px"},medium:{width:"24px",height:"24px"},large:{width:"96px",height:"96px"}},color:{gray:{stroke:"sd.reference.color.scale.gray.400"},white:{stroke:"sd.reference.color.scale.white.1000"}}},defaultVariants:{size:"medium",color:"gray"}}),K0=({className:e,...n})=>{const[t,o]=gi.splitVariantProps(n),i=gi(t);return m.jsx("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:ne(i,e),...o,children:m.jsx("path",{d:"M24 44C27.9556 44 31.8224 42.827 35.1114 40.6294C38.4004 38.4318 40.9638 35.3082 42.4776 31.6537C43.9913 27.9992 44.3874 23.9778 43.6157 20.0982C42.844 16.2186 40.9392 12.6549 38.1421 9.85786C35.3451 7.06082 31.7814 5.156 27.9018 4.38429C24.0222 3.61259 20.0008 4.00866 16.3463 5.52241C12.6918 7.03616 9.56821 9.59962 7.37059 12.8886C5.17297 16.1776 3.99998 20.0444 3.99998 24",strokeWidth:"4"})})},sE=({children:e,...n})=>m.jsx(E0,{...n,children:e}),q0=ve({slots:["input","control","combobox","comboboxItem","iconBox","icon","closeIcon"],base:{control:{display:"inline-grid",lineHeight:"1",gridTemplateColumns:"auto 1fr auto",alignItems:"center",borderRadius:"sd.system.dimension.radius.medium",outlineStyle:"solid",outlineWidth:"sd.system.dimension.border.medium",outlineColor:"sd.system.color.component.outline",bg:"sd.system.color.component.surface",_focus:{outlineWidth:"sd.system.dimension.border.thick",outlineColor:"sd.system.color.impression.primary"},_disabled:{bgColor:"sd.system.color.interaction.disabled",cursor:"not-allowed"}},input:{outline:"none",width:"100%",textOverflow:"ellipsis",_placeholder:{color:"sd.system.color.component.onSurfaceVariant"},_disabled:{color:"sd.system.color.interaction.disabledOnSurface",_placeholder:{color:"sd.system.color.interaction.disabledOnSurface"}}},combobox:{bgColor:"sd.system.color.component.surface",borderRadius:"sd.system.dimension.radius.medium",boxShadow:"sd.system.elevation.shadow.level1",zIndex:"sd.system.elevation.zIndex.dropdown",width:"100%"},comboboxItem:{display:"flex",gap:"sd.system.dimension.spacing.small",cursor:"pointer",_highlighted:{backgroundColor:"sd.system.color.interaction.hoveredVariant"}},iconBox:{display:"flex",justifyContent:"center","[data-disabled] &":{color:"sd.system.color.interaction.disabledOnSurface"}},icon:{width:"sd.system.dimension.spacing.large"},closeIcon:{opacity:0,"[data-state=open] &":{opacity:1}}},variants:{size:{medium:{iconBox:{w:"40px"},control:{height:48,gap:"sd.system.dimension.spacing.extraSmall",textStyle:"sd.system.typography.body.medium_compact",paddingTop:"sd.system.dimension.spacing.small",paddingRight:"sd.system.dimension.spacing.extraSmall",paddingBottom:"sd.system.dimension.spacing.small",paddingLeft:"sd.system.dimension.spacing.twoExtraSmall"},comboboxItem:{paddingRight:"sd.system.dimension.spacing.medium",paddingLeft:"sd.system.dimension.spacing.medium",paddingBottom:"sd.system.dimension.spacing.extraSmall",paddingTop:"sd.system.dimension.spacing.extraSmall"}},small:{iconBox:{w:"20px"},control:{height:32,gap:"sd.system.dimension.spacing.twoExtraSmall",textStyle:"sd.system.typography.body.small_compact",paddingTop:"sd.system.dimension.spacing.twoExtraSmall",paddingLeft:"sd.system.dimension.spacing.extraSmall",paddingRight:"sd.system.dimension.spacing.extraSmall",paddingBottom:"sd.system.dimension.spacing.twoExtraSmall",scrollPaddingLeft:"sd.system.dimension.spacing.twoExtraSmall"},comboboxItem:{gap:"sd.system.dimension.spacing.twoExtraSmall",paddingTop:"sd.system.dimension.spacing.extraSmall",paddingRight:"sd.system.dimension.spacing.extraSmall",paddingBottom:"sd.system.dimension.spacing.extraSmall",paddingLeft:"sd.system.dimension.spacing.extraSmall"}}}},defaultVariants:{size:"medium"}}),cE=({items:e=[],...n})=>{const t=q0(n);return m.jsxs(s4,{items:e,lazyMount:!0,unmountOnExit:!0,...n,children:[m.jsxs(Ks,{className:t.control,children:[m.jsx("div",{className:t.iconBox,children:m.jsx(Pe,{name:"magnifying-glass",className:t.icon})}),m.jsx(qs,{className:t.input}),e.length>0&&m.jsx(e0,{children:m.jsx("div",{className:t.closeIcon,children:m.jsx(Pe,{name:"close",className:t.icon})})})]}),e.length>0&&m.jsx(eo,{children:m.jsx(Js,{children:m.jsx(Us,{className:t.combobox,children:m.jsx(Xs,{id:"framework",children:e.map((o,i)=>m.jsxs(Ys,{item:o,className:t.comboboxItem,children:[m.jsx(Dw,{w:"sd.system.dimension.spacing.large",h:"sd.system.dimension.spacing.large"}),m.jsx(Zs,{children:o})]},i))})})})})]})},vi=ve({slots:["root","valueText","trigger","content","item","iconBox"],base:{root:{display:"inline-grid",gridTemplateColumns:"minmax(auto, 300px)",rowGap:"sd.system.dimension.spacing.extraSmall"},trigger:{width:"100%",textAlign:"left",display:"grid",gridTemplateColumns:"1fr auto",paddingTop:"sd.system.dimension.spacing.small",paddingRight:"sd.system.dimension.spacing.extraSmall",paddingBottom:"sd.system.dimension.spacing.small",paddingLeft:"sd.system.dimension.spacing.medium",alignItems:"center",borderRadius:"sd.system.dimension.radius.medium",outlineStyle:"solid",outlineWidth:"sd.system.dimension.border.medium",outlineColor:"sd.system.color.component.outline",bg:"sd.system.color.component.surface",cursor:"pointer",_enabled:{_focusVisible:{outlineWidth:"sd.system.dimension.border.thick",outlineColor:"sd.system.color.impression.primary"},_hover:{outlineColor:"sd.system.color.interaction.hovered",bg:"color-mix(in srgb, {colors.sd.system.color.component.surface}, {colors.sd.system.color.interaction.hoveredVariant})"}},_disabled:{bgColor:"sd.system.color.interaction.disabled",color:"sd.system.color.interaction.disabledOnSurface",cursor:"not-allowed"},_invalid:{outlineColor:"sd.system.color.impression.negative"}},valueText:{outline:"none",width:"100%",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",textStyle:{base:"sd.system.typography.body.medium_compact",expanded:"sd.system.typography.body.medium_expanded"},"[data-placeholder-shown] &":{color:"sd.system.color.component.onSurfaceVariant"},_disabled:{"[data-placeholder-shown] &":{color:"sd.system.color.interaction.disabledOnSurface"}}},content:{bgColor:"sd.system.color.component.surface",borderRadius:"sd.system.dimension.radius.medium",boxShadow:"sd.system.elevation.shadow.level1",zIndex:"sd.system.elevation.zIndex.dropdown",width:"100%",cursor:"pointer"},item:{width:"100%"},iconBox:{w:"40px",display:"flex",justifyContent:"center","[data-disabled] &":{color:"sd.system.color.interaction.disabledOnSurface"}}},variants:{size:{medium:{root:{textStyle:{base:"sd.system.typography.body.medium_compact",expanded:"sd.system.typography.body.medium_expanded"}},valueText:{textStyle:{base:"sd.system.typography.body.medium_compact",expanded:"sd.system.typography.body.medium_expanded"}},trigger:{height:48},item:{}},small:{root:{gridTemplateColumns:"minmax(auto, 150px)",textStyle:{base:"sd.system.typography.body.small_compact"}},valueText:{textStyle:{base:"sd.system.typography.body.small_compact",expanded:"sd.system.typography.body.small_expanded"}},trigger:{height:32,paddingTop:"sd.system.dimension.spacing.twoExtraSmall",paddingRight:"sd.system.dimension.spacing.extraSmall",paddingBottom:"sd.system.dimension.spacing.twoExtraSmall",paddingLeft:"sd.system.dimension.spacing.extraSmall",borderRadius:"sd.system.dimension.radius.small"},content:{borderRadius:"sd.system.dimension.radius.small"},item:{}}}},defaultVariants:{size:"medium"}}),dE=({placeholder:e="",label:n,required:t,invalid:o,invalidMessage:i,className:r,...a})=>{const[s,c]=vi.splitVariantProps(a),d=vi(s),h=S.useId();return m.jsxs(P8,{...c,invalid:o,className:ne(d.root,r),positioning:{sameWidth:!0},children:[n&&s.size!="small"&&m.jsxs(b0,{className:xe({textStyle:{base:"sd.system.typography.label.medium_compact",expanded:"sd.system.typography.label.medium_expanded"}}),children:[n,t&&m.jsx("span",{className:xe({pl:"sd.system.dimension.spacing.extraSmall",color:"sd.system.color.impression.negative"}),children:"必須"})]}),m.jsx(x0,{children:m.jsxs(S0,{className:d.trigger,children:[m.jsx(I0,{placeholder:e,className:d.valueText}),m.jsx(Pe,{name:"chevron-down",className:d.iconBox,size:20})]})}),o&&i&&m.jsx("div",{className:xe({textStyle:{base:"sd.system.typography.body.extraSmall_compact",expanded:"sd.system.typography.body.extraSmall_expanded"},color:"sd.system.color.impression.negative"}),children:i}),m.jsx(eo,{children:m.jsx(R0,{children:m.jsx(y0,{className:d.content,children:m.jsx(G0,{id:h,children:a.items.map((v,g)=>m.jsx(C0,{item:v,children:m.jsx(U0,{title:v.label,value:v.value,className:d.item,size:s.size=="small"?"small":void 0})},g))})})})})]})},uE=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",...e},l.createElement("path",{d:"M18 13h-5v5c0 .55-.45 1-1 1s-1-.45-1-1v-5H6c-.55 0-1-.45-1-1s.45-1 1-1h5V6c0-.55.45-1 1-1s1 .45 1 1v5h5c.55 0 1 .45 1 1s-.45 1-1 1z"})),hE=e=>l.createElement("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.8001 3.26101V2.05665C17.935 2.46416 21.975 6.7603 21.975 12C21.975 17.2398 17.935 21.5359 12.8001 21.9434V20.739C17.2714 20.3349 20.775 16.5766 20.775 12C20.775 7.42343 17.2714 3.66514 12.8001 3.26101ZM11.2001 20.7391C6.72868 20.335 3.22502 16.5767 3.22502 12C3.22502 7.4234 6.72868 3.66508 11.2001 3.261V2.05664C6.06507 2.46411 2.02502 6.76027 2.02502 12C2.02502 17.2398 6.06507 21.536 11.2001 21.9434V20.7391ZM12 6.72503C10.6745 6.72503 9.60002 7.79955 9.60002 9.12503C9.60002 10.4505 10.6745 11.525 12 11.525C13.3255 11.525 14.4 10.4505 14.4 9.12503C14.4 7.79955 13.3255 6.72503 12 6.72503ZM8.40002 9.12503C8.40002 7.13681 10.0118 5.52503 12 5.52503C13.9882 5.52503 15.6 7.13681 15.6 9.12503C15.6 11.1133 13.9882 12.725 12 12.725C10.0118 12.725 8.40002 11.1133 8.40002 9.12503ZM12 15.1C10.1223 15.1 8.60002 16.6223 8.60002 18.5H7.40002C7.40002 15.9595 9.45951 13.9 12 13.9C14.5405 13.9 16.6 15.9595 16.6 18.5H15.4C15.4 16.6223 13.8778 15.1 12 15.1Z",fill:"black"})),gE=e=>l.createElement("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e},l.createElement("path",{d:"M17.5294 8.52941L10.4991 15.5597L6.46875 11.5294L7.52941 10.4688L10.4991 13.4384L16.4688 7.46875L17.5294 8.52941Z",fill:"#279B20"})),vE=e=>l.createElement("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.1515 12.0001L5.21179 6.06044L6.06032 5.21191L12 11.1516L17.9397 5.21191L18.7882 6.06044L12.8485 12.0001L18.7882 17.9398L17.9397 18.7884L12 12.8487L6.06032 18.7884L5.21179 17.9398L11.1515 12.0001Z",fill:"black"})),mE=e=>l.createElement("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e},l.createElement("rect",{x:2.69922,y:2.69922,width:18.6,height:18.6,rx:9.3,fill:"#279B20"}),l.createElement("path",{d:"M17.2286 9.22863L10.1983 16.259L6.16797 12.2286L7.22863 11.168L10.1983 14.1376L16.168 8.16797L17.2286 9.22863Z",fill:"white"})),Ia=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",...e},l.createElement("path",{d:"M6 7c0 .55.45 1 1 1h7.59l-8.88 8.88a.996.996 0 1 0 1.41 1.41L16 9.41V17c0 .55.45 1 1 1s1-.45 1-1V7c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1z"})),Ta=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",...e},l.createElement("path",{d:"M15 20H5V7c0-.55-.45-1-1-1s-1 .45-1 1v13c0 1.1.9 2 2 2h10c.55 0 1-.45 1-1s-.45-1-1-1zm5-4V4c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2zm-2 0H9V4h9v12z"})),pE=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",...e},l.createElement("path",{d:"M14.71 6.71a.996.996 0 0 0-1.41 0L8.71 11.3a.996.996 0 0 0 0 1.41l4.59 4.59a.996.996 0 1 0 1.41-1.41L10.83 12l3.88-3.88c.39-.39.38-1.03 0-1.41z"})),fE=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",...e},l.createElement("path",{d:"M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"})),wE=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",...e},l.createElement("path",{d:"M10.25 13a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0zM15 11.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24a10 10 0 0 1-7.76-3.69A10.016 10.016 0 0 1 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z"})),EE=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",...e},l.createElement("path",{d:"M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"})),yE=e=>l.createElement("svg",{width:25,height:25,viewBox:"0 0 25 25",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e},l.createElement("path",{d:"M5.41384 20.7778C5.18242 20.7041 4.97954 20.5801 4.80519 20.4057C4.63084 20.2314 4.50681 20.0269 4.43309 19.7923L20.0032 4.2019C20.25 4.27755 20.4575 4.4016 20.6258 4.57403C20.7941 4.74645 20.9202 4.94932 21.0042 5.18265L5.41384 20.7778ZM4.40039 14.4922V12.5134L12.7167 4.2019H14.6907L4.40039 14.4922ZM4.40039 7.1807V5.90863C4.40039 5.43363 4.5661 5.03043 4.89752 4.69903C5.22892 4.36761 5.63212 4.2019 6.10712 4.2019H7.38399L4.40039 7.1807ZM18.0177 20.798L20.9965 17.8144V19.0913C20.9965 19.5663 20.8308 19.9695 20.4994 20.3009C20.168 20.6323 19.7648 20.798 19.2898 20.798H18.0177ZM10.7062 20.798L20.9965 10.5077V12.4817L12.685 20.798H10.7062Z",fill:"currentColor"})),xE=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",...e},l.createElement("path",{d:"M15.88 9.29 12 13.17 8.12 9.29a.996.996 0 1 0-1.41 1.41l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59a.996.996 0 0 0 0-1.41c-.39-.38-1.03-.39-1.42 0z"})),CE=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",height:"24px",viewBox:"0 -960 960 960",width:"24px",fill:"#5f6368",...e},l.createElement("path",{d:"M480-280q17 0 28.5-11.5T520-320q0-17-11.5-28.5T480-360q-17 0-28.5 11.5T440-320q0 17 11.5 28.5T480-280Zm-40-160h80v-240h-80v240Zm40 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"})),bE=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",height:"24px",viewBox:"0 -960 960 960",width:"24px",fill:"#5f6368",...e},l.createElement("path",{d:"M480-280q17 0 28.5-11.5T520-320q0-17-11.5-28.5T480-360q-17 0-28.5 11.5T440-320q0 17 11.5 28.5T480-280Zm-40-160h80v-240h-80v240Zm40 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z"})),RE=e=>l.createElement("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e},l.createElement("path",{d:"M12.0035 21.2973C10.7176 21.2973 9.50872 21.0529 8.37682 20.5641C7.24492 20.0754 6.26032 19.4121 5.42302 18.5743C4.58572 17.7364 3.92309 16.7526 3.43511 15.6229C2.94713 14.4931 2.70312 13.286 2.70312 12.0015C2.70312 10.7157 2.9475 9.50677 3.43625 8.37487C3.92498 7.24297 4.58828 6.25837 5.42613 5.42107C6.26396 4.58377 7.24775 3.92113 8.3775 3.43315C9.50725 2.94516 10.7144 2.70117 11.9989 2.70117C13.2847 2.70117 14.4936 2.94555 15.6255 3.4343C16.7574 3.92303 17.742 4.58632 18.5793 5.42417C19.4166 6.262 20.0793 7.2458 20.5673 8.37555C21.0552 9.5053 21.2992 10.7124 21.2992 11.9969C21.2992 13.2828 21.0548 14.4917 20.5661 15.6236C20.0774 16.7555 19.4141 17.7401 18.5762 18.5774C17.7384 19.4147 16.7546 20.0773 15.6249 20.5653C14.4951 21.0533 13.288 21.2973 12.0035 21.2973Z",fill:"#D61930"}),l.createElement("path",{d:"M12.0035 21.2973C10.7176 21.2973 9.50872 21.0529 8.37682 20.5641C7.24492 20.0754 6.26032 19.4121 5.42302 18.5743C4.58572 17.7364 3.92309 16.7526 3.43511 15.6229C2.94713 14.4931 2.70312 13.286 2.70312 12.0015C2.70312 10.7157 2.9475 9.50677 3.43625 8.37487C3.92498 7.24297 4.58828 6.25837 5.42613 5.42107C6.26396 4.58377 7.24775 3.92113 8.3775 3.43315C9.50725 2.94516 10.7144 2.70117 11.9989 2.70117C13.2847 2.70117 14.4936 2.94555 15.6255 3.4343C16.7574 3.92303 17.742 4.58632 18.5793 5.42417C19.4166 6.262 20.0793 7.2458 20.5673 8.37555C21.0552 9.5053 21.2992 10.7124 21.2992 11.9969C21.2992 13.2828 21.0548 14.4917 20.5661 15.6236C20.0774 16.7555 19.4141 17.7401 18.5762 18.5774C17.7384 19.4147 16.7546 20.0773 15.6249 20.5653C14.4951 21.0533 13.288 21.2973 12.0035 21.2973Z",fill:"#D61930"}),l.createElement("path",{d:"M12.0035 21.2973C10.7176 21.2973 9.50872 21.0529 8.37682 20.5641C7.24492 20.0754 6.26032 19.4121 5.42302 18.5743C4.58572 17.7364 3.92309 16.7526 3.43511 15.6229C2.94713 14.4931 2.70312 13.286 2.70312 12.0015C2.70312 10.7157 2.9475 9.50677 3.43625 8.37487C3.92498 7.24297 4.58828 6.25837 5.42613 5.42107C6.26396 4.58377 7.24775 3.92113 8.3775 3.43315C9.50725 2.94516 10.7144 2.70117 11.9989 2.70117C13.2847 2.70117 14.4936 2.94555 15.6255 3.4343C16.7574 3.92303 17.742 4.58632 18.5793 5.42417C19.4166 6.262 20.0793 7.2458 20.5673 8.37555C21.0552 9.5053 21.2992 10.7124 21.2992 11.9969C21.2992 13.2828 21.0548 14.4917 20.5661 15.6236C20.0774 16.7555 19.4141 17.7401 18.5762 18.5774C17.7384 19.4147 16.7546 20.0773 15.6249 20.5653C14.4951 21.0533 13.288 21.2973 12.0035 21.2973Z",fill:"#D61930"}),l.createElement("path",{d:"M12.0035 21.2973C10.7176 21.2973 9.50872 21.0529 8.37682 20.5641C7.24492 20.0754 6.26032 19.4121 5.42302 18.5743C4.58572 17.7364 3.92309 16.7526 3.43511 15.6229C2.94713 14.4931 2.70312 13.286 2.70312 12.0015C2.70312 10.7157 2.9475 9.50677 3.43625 8.37487C3.92498 7.24297 4.58828 6.25837 5.42613 5.42107C6.26396 4.58377 7.24775 3.92113 8.3775 3.43315C9.50725 2.94516 10.7144 2.70117 11.9989 2.70117C13.2847 2.70117 14.4936 2.94555 15.6255 3.4343C16.7574 3.92303 17.742 4.58632 18.5793 5.42417C19.4166 6.262 20.0793 7.2458 20.5673 8.37555C21.0552 9.5053 21.2992 10.7124 21.2992 11.9969C21.2992 13.2828 21.0548 14.4917 20.5661 15.6236C20.0774 16.7555 19.4141 17.7401 18.5762 18.5774C17.7384 19.4147 16.7546 20.0773 15.6249 20.5653C14.4951 21.0533 13.288 21.2973 12.0035 21.2973Z",fill:"#D61930"}),l.createElement("path",{d:"M12.0035 21.2973C10.7176 21.2973 9.50872 21.0529 8.37682 20.5641C7.24492 20.0754 6.26032 19.4121 5.42302 18.5743C4.58572 17.7364 3.92309 16.7526 3.43511 15.6229C2.94713 14.4931 2.70312 13.286 2.70312 12.0015C2.70312 10.7157 2.9475 9.50677 3.43625 8.37487C3.92498 7.24297 4.58828 6.25837 5.42613 5.42107C6.26396 4.58377 7.24775 3.92113 8.3775 3.43315C9.50725 2.94516 10.7144 2.70117 11.9989 2.70117C13.2847 2.70117 14.4936 2.94555 15.6255 3.4343C16.7574 3.92303 17.742 4.58632 18.5793 5.42417C19.4166 6.262 20.0793 7.2458 20.5673 8.37555C21.0552 9.5053 21.2992 10.7124 21.2992 11.9969C21.2992 13.2828 21.0548 14.4917 20.5661 15.6236C20.0774 16.7555 19.4141 17.7401 18.5762 18.5774C17.7384 19.4147 16.7546 20.0773 15.6249 20.5653C14.4951 21.0533 13.288 21.2973 12.0035 21.2973Z",fill:"#D61930"}),l.createElement("path",{d:"M11.999 16.6303C12.2194 16.6303 12.4028 16.5579 12.5493 16.4132C12.6957 16.2685 12.769 16.086 12.769 15.8656C12.769 15.6453 12.6966 15.4619 12.5519 15.3154C12.4072 15.1689 12.2247 15.0957 12.0043 15.0957C11.784 15.0957 11.6006 15.1681 11.4541 15.3128C11.3076 15.4575 11.2344 15.64 11.2344 15.8604C11.2344 16.0807 11.3067 16.2641 11.4514 16.4106C11.5962 16.5571 11.7787 16.6303 11.999 16.6303ZM11.3123 13.0774H12.7113V7.1582H11.3123V13.0774Z",fill:"white"})),SE=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",...e},l.createElement("path",{d:"M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"})),IE=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",...e},l.createElement("path",{d:"M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z"})),TE=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",...e},l.createElement("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 4c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6zm0 14c-2.03 0-4.43-.82-6.14-2.88a9.947 9.947 0 0 1 12.28 0C16.43 19.18 14.03 20 12 20z"})),ME=e=>l.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",...e},l.createElement("path",{d:"M19.5 12c0-.23-.01-.45-.03-.68l1.86-1.41c.4-.3.51-.86.26-1.3l-1.87-3.23a.987.987 0 0 0-1.25-.42l-2.15.91c-.37-.26-.76-.49-1.17-.68l-.29-2.31c-.06-.5-.49-.88-.99-.88h-3.73c-.51 0-.94.38-1 .88l-.29 2.31c-.41.19-.8.42-1.17.68l-2.15-.91c-.46-.2-1-.02-1.25.42L2.41 8.62c-.25.44-.14.99.26 1.3l1.86 1.41a7.343 7.343 0 0 0 0 1.35l-1.86 1.41c-.4.3-.51.86-.26 1.3l1.87 3.23c.25.44.79.62 1.25.42l2.15-.91c.37.26.76.49 1.17.68l.29 2.31c.06.5.49.88.99.88h3.73c.5 0 .93-.38.99-.88l.29-2.31c.41-.19.8-.42 1.17-.68l2.15.91c.46.2 1 .02 1.25-.42l1.87-3.23c.25-.44.14-.99-.26-1.3l-1.86-1.41c.03-.23.04-.45.04-.68zm-7.46 3.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z"})),zE={add:uE,avatar:hE,check:gE,checkCircle:mE,arrow_outward:Ia,arrow_blank:Ia,content_copy:Ta,clipboard_copy:Ta,chevron_left:pE,chevron_right:fE,close:vE,face:wE,search:EE,texture:yE,expandMore:xE,errorCircle:RE,error:CE,error_fill:bE,info:SE,menu:IE,account_circle:TE,settings:ME},OE=({icon:e,size:n,className:t,...o})=>{const i=zE[e];return i?m.jsx(i,{...o,width:n||"1em",height:n||"1em",className:ne(xe({fill:"currentColor"}),t)}):null},mi=ve({slots:["root","control","thumb","label","textGroup","helperText"],base:{root:{display:"flex",alignItems:"center",gap:"sd.system.dimension.spacing.medium",paddingY:"sd.system.dimension.spacing.small",paddingX:"sd.system.dimension.spacing.medium",'&[data-focus="true"] .control':{borderColor:"sd.system.color.impression.primary"}},control:{cursor:"pointer",width:52,height:32,flexShrink:0,backgroundColor:"sd.system.color.interaction.disabled",borderRadius:"sd.system.dimension.radius.full",borderWidth:1,borderColor:"sd.system.color.component.outline",transitionDuration:".2s",transitionProperty:"background, borderColor",transitionTimingFunction:"cubic-bezier(.2, 0, 0, 1)",_checked:{backgroundColor:"sd.system.color.impression.primary",borderColor:"sd.system.color.impression.primary",_disabled:{backgroundColor:"color-mix(in srgb, {colors.sd.system.color.impression.primary}, {colors.sd.system.color.interaction.hoveredOnPrimary});",borderColor:"transparent"}},_disabled:{cursor:"default",background:"sd.system.color.interaction.disabled"},".group:has(:focus-visible) &":{borderColor:"sd.system.color.impression.primary"}},thumb:{display:"block",width:20,height:20,marginY:5,marginX:6,background:"sd.system.color.component.surface",borderRadius:"sd.system.dimension.radius.full",borderColor:"sd.system.color.component.outline",borderWidth:1,transitionDuration:".3s",transitionProperty:"transform, borderColor",transitionTimingFunction:"cubic-bezier(.2, 0, 0, 1)",_checked:{transform:"translateX(19px)",borderColor:"sd.system.color.component.surface"}},label:{color:"sd.system.color.component.onSurface",textStyle:"sd.system.typography.body.medium_compact",_expanded:{textStyle:"sd.system.typography.body.medium_expanded"},_disabled:{color:"sd.system.color.interaction.disabledOnSurface"}},textGroup:{display:"flex",flexFlow:"column",width:160},helperText:{color:"sd.system.color.component.onSurfaceVariant",marginTop:"sd.system.dimension.spacing.twoExtraSmall",lineHeight:"sd.reference.typography.lineHeight.tight",textStyle:"sd.system.typography.body.extraSmall_compact",_expanded:{textStyle:"sd.system.typography.body.extraSmall_expanded"},_disabled:{color:"sd.system.color.interaction.disabledOnSurface"}}}}),VE=S.forwardRef(({label:e,helperText:n,className:t,...o},i)=>{const[r,a]=mi.splitVariantProps(o),s=mi(r);return m.jsxs(z0,{ref:i,className:ne("group",s.root,n&&xe({alignItems:"flex-start"}),t),...a,children:[m.jsxs("div",{className:s.textGroup,children:[m.jsx(ei,{className:s.label,children:e}),n&&m.jsx(ei,{className:s.helperText,children:n})]}),m.jsx(T0,{className:ne("control",s.control),children:m.jsx(O0,{className:s.thumb})}),m.jsx(M0,{})]})}),pi=ve({slots:["trigger","dot","badgeBox","badge"],base:{trigger:{display:"flex",justifyContent:"center",flex:1,gap:"sd.system.dimension.spacing.twoExtraSmall",alignItems:"center",height:44,cursor:"pointer",color:"sd.system.color.component.onSurface",transitionDuration:".2s",transitionProperty:"color, border-color",transitionTimingFunction:"cubic-bezier(.2, 0, 0, 1)",borderBottom:"2px solid",borderBottomColor:"transparent",textStyle:"sd.system.typography.label.large_compact",_expanded:{textStyle:"sd.system.typography.label.large_expanded"},_selected:{color:"sd.system.color.impression.primary",fontWeight:"bold",borderBottomColor:"sd.system.color.impression.primary"},_disabled:{cursor:"default",color:"sd.system.color.interaction.disabledOnSurface"},_hover:{color:"sd.system.color.impression.primary",_disabled:{color:"sd.system.color.interaction.disabledOnSurface"}},_focusVisible:{outlineWidth:"1px",outlineStyle:"solid",outlineColor:"sd.system.color.component.outline",outlineOffset:"-1px"}},dot:{height:8,width:8},badgeBox:{height:16,width:16},badge:{backgroundColor:"color-mix(in srgb, {colors.sd.system.color.interaction.hoveredOnPrimary}, {colors.sd.system.color.impression.negativeContainer});"}}}),FE=({title:e,value:n,disabled:t,dot:o,badge:i,className:r,...a})=>{const[s,c]=pi.splitVariantProps(a),d=pi(s),h=t?d.badge:"";return m.jsxs(P0,{value:n,className:ne(d.trigger,r),disabled:t,...c,children:[m.jsx("span",{children:e}),o&&m.jsx("div",{className:d.dot,children:m.jsx(cn,{noNumber:!0,className:h})}),i&&m.jsx("div",{className:d.badgeBox,children:m.jsx(cn,{count:i,size:"small",className:h})})]})},fi=ve({slots:["root","list"],base:{root:{display:"flex",paddingX:"sd.system.dimension.spacing.medium"},list:{display:"flex",flex:1,alignItems:"center",justifyContent:"space-around"}}}),PE=({children:e,className:n,...t})=>{const[o,i]=fi.splitVariantProps(t),r=fi(o);return m.jsx(k0,{className:ne(r.root,n),...i,children:m.jsx(F0,{className:r.list,children:e})})};function Y0(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];var t=e.filter(Boolean);if(t.length<=1){var o=t[0];return o||null}return function(r){t.forEach(function(a){typeof a=="function"?a(r):a&&(a.current=r)})}}const Ma=ve({slots:["root","label","required","wrapper","textarea","messageField","description","invalidMessage"],base:{root:{display:"inline-grid","@layer components":{width:"min(100%, 300px)"},gridTemplateColumns:"auto",rowGap:"sd.system.dimension.spacing.extraSmall",textStyle:{base:"sd.system.typography.body.medium_compact",expanded:"sd.system.typography.body.medium_expanded"}},label:{textStyle:{base:"sd.system.typography.label.medium_compact",expanded:"sd.system.typography.label.medium_expanded"}},wrapper:{display:"grid",gridTemplateColumns:"1fr auto",alignItems:"center",outlineStyle:"solid",outlineWidth:"sd.system.dimension.border.medium",outlineColor:"sd.system.color.component.outline",borderRadius:"sd.system.dimension.radius.medium",_focusWithin:{outlineWidth:"sd.system.dimension.border.thick",outlineColor:"sd.system.color.impression.primary"},_disabled:{backgroundColor:"sd.system.color.interaction.disabled"},_invalid:{outlineColor:"sd.system.color.impression.negative"},'&:has([data-focus="true"])':{outlineWidth:"sd.system.dimension.border.thick",outlineColor:"sd.system.color.impression.primary"}},textarea:{outline:"none",marginTop:"sd.system.dimension.spacing.extraSmall",marginRight:"sd.system.dimension.spacing.twoExtraSmall",marginBottom:"sd.system.dimension.spacing.twoExtraSmall",marginLeft:"sd.system.dimension.spacing.small",_disabled:{cursor:"not-allowed"}},required:{pl:"sd.system.dimension.spacing.extraSmall",color:"sd.system.color.impression.negative"},messageField:{textAlign:"right",color:"sd.system.color.component.onSurfaceVariant",textStyle:{base:"sd.system.typography.body.extraSmall_compact",expanded:"sd.system.typography.body.extraSmall_expanded"}},invalidMessage:{color:"sd.system.color.impression.negative"}},variants:{autoAdjustHeight:{true:{textarea:{fieldSizing:"content",minHeight:"2lh"}}}}}),kE=S.forwardRef(({placeholder:e,label:n,description:t,required:o,invalidMessage:i,invalid:r,disabled:a,className:s,...c},d)=>{const h=S.useRef(null),v=Y0(h,d),[g,p]=Ma.splitVariantProps(c),w=Ma(g),f=t||r&&i;return m.jsxs("div",{className:ne(w.root,s),children:[m.jsxs("label",{className:w.label,children:[n,o&&m.jsx("span",{className:w.required,children:"必須"})]}),m.jsx("div",{className:w.wrapper,"data-invalid":r?!0:void 0,"data-disabled":a?!0:void 0,children:m.jsx("textarea",{ref:v,placeholder:e,required:o,disabled:a,className:w.textarea,...p})}),f&&m.jsxs("div",{className:w.messageField,children:[t&&m.jsx("p",{className:w.description,children:t}),r&&i&&m.jsx("p",{className:w.invalidMessage,children:i})]})]})}),za=ve({slots:["root","label","required","inputWrapper","input","icon","messageField","description","invalidMessage"],base:{root:{display:"inline-grid","@layer components":{width:"min(100%, 300px)"},gridTemplateColumns:"auto",rowGap:"sd.system.dimension.spacing.extraSmall",textStyle:{base:"sd.system.typography.body.medium_compact",expanded:"sd.system.typography.body.medium_expanded"}},label:{textStyle:{base:"sd.system.typography.label.medium_compact",expanded:"sd.system.typography.label.medium_expanded"}},inputWrapper:{height:48,display:"grid",gridTemplateColumns:"1fr auto",alignItems:"center",outlineStyle:"solid",outlineWidth:"sd.system.dimension.border.medium",outlineColor:"sd.system.color.component.outline",borderRadius:"sd.system.dimension.radius.medium",backgroundColor:"sd.system.color.component.surface",'&:has([data-focus="true"])':{outlineWidth:"sd.system.dimension.border.thick",outlineColor:"sd.system.color.impression.primary"},_focusWithin:{outlineWidth:"sd.system.dimension.border.thick",outlineColor:"sd.system.color.impression.primary"},_disabled:{backgroundColor:"sd.system.color.interaction.disabled",cursor:"not-allowed"},_invalid:{outlineColor:"sd.system.color.impression.negative"}},input:{outline:"none",paddingTop:"sd.system.dimension.spacing.extraSmall",paddingRight:"sd.system.dimension.spacing.twoExtraSmall",paddingBottom:"sd.system.dimension.spacing.extraSmall",paddingLeft:"sd.system.dimension.spacing.medium"},icon:{display:"grid",placeItems:"center",w:"48px",h:"48px",expanded:{w:"44px",h:"44px"}},required:{pl:"sd.system.dimension.spacing.extraSmall",color:"sd.system.color.impression.negative"},messageField:{textStyle:{base:"sd.system.typography.body.extraSmall_compact",expanded:"sd.system.typography.body.extraSmall_expanded"}},invalidMessage:{color:"sd.system.color.impression.negative"}}}),BE=S.forwardRef(({placeholder:e,label:n,description:t,required:o,invalidMessage:i,invalid:r,type:a="text",disabled:s,onChange:c,value:d,className:h,...v},g)=>{const p=S.useRef(null),w=Y0(p,g),[f,x]=za.splitVariantProps(v),C=za(f),E=t||r&&i,[T,F]=S.useState(v.defaultValue||d),k=()=>{var ce;const Q={target:{value:""}};q(Q),(ce=v.onReset)==null||ce.call(v,Q),p.current&&(p.current.value="")},q=Q=>{F(Q.target.value),c&&c(Q)};return m.jsxs("div",{className:ne(C.root,h),children:[m.jsxs("label",{className:C.label,children:[n,o&&m.jsx("span",{className:C.required,children:"必須"})]}),m.jsxs("div",{className:C.inputWrapper,"data-invalid":r?!0:void 0,"data-disabled":s?!0:void 0,children:[m.jsx("input",{ref:w,placeholder:e,required:o,disabled:s,value:d,type:a,className:C.input,onChange:q,...x}),m.jsx("div",{className:C.icon,children:!s&&(r?m.jsx("span",{className:xe({color:"sd.system.color.impression.negative"}),children:m.jsx(Pe,{name:"alert-circle",size:20})}):T?m.jsx("button",{className:xe({cursor:"pointer"}),onClick:k,"aria-label":"値をクリア",children:m.jsx(Pe,{name:"close",size:20})}):null)})]}),E&&m.jsxs("div",{className:C.messageField,children:[t&&m.jsx("p",{className:C.description,children:t}),r&&i&&m.jsx("p",{className:C.invalidMessage,children:i})]})]})}),X0=ve({slots:["root","textGroup","text","icon"],base:{root:{display:"flex",alignItems:"center",paddingX:"sd.system.dimension.spacing.extraLarge",borderRadius:"sd.system.dimension.radius.medium",boxShadow:"sd.system.elevation.shadow.level3",height:40},textGroup:{display:"flex",alignItems:"center",gap:"sd.system.dimension.spacing.twoExtraSmall"},text:{textStyle:"sd.system.typography.body.small_compact",_expanded:{textStyle:"sd.system.typography.body.small_expanded"}},icon:{color:"sd.system.color.component.inverseOnSurface"}},variants:{variant:{default:{root:{background:"sd.system.color.component.inverseSurface"},text:{color:"sd.system.color.component.inverseOnSurface"},icon:{color:"sd.system.color.impression.positive"}},error:{root:{background:"sd.system.color.impression.negativeContainer",borderColor:"sd.system.color.impression.negative",borderWidth:1},text:{color:"sd.system.color.impression.negative"},icon:{color:"sd.system.color.impression.negative"}}}},defaultVariants:{variant:"default"}}),AE=lu({placement:"bottom"}),LE=({toaster:e})=>{const n={success:"check-circle",error:"alert-circle"};return m.jsx(_0,{toaster:e,children:t=>{const o=t.type==="error"?"error":"default",i=X0({variant:o}),r=n[t.type];return m.jsx(A0,{className:i.root,children:m.jsxs("div",{className:i.textGroup,children:[r&&m.jsx(Pe,{name:r,size:24,variant:"filled",className:i.icon}),m.jsx(L0,{className:i.text,children:t.title})]})},t.id)}})},Oa=ve({slots:["root","container","left","buttonContainer","title"],base:{root:{width:"100%",backgroundColor:"sd.system.color.component.surface"},container:{height:"48px",display:"flex",justifyContent:"space-between",gap:"8px",alignItems:"center"},left:{display:"flex",alignItems:"center",gap:"8px",width:"100%"},buttonContainer:{display:"flex",alignItems:"center",gap:"8px"},title:{textStyle:"sd.system.typography.title.medium_compact",maxW:"100%",_expanded:{textStyle:"sd.system.typography.title.medium_expanded"}}},variants:{type:{navbar:{},titleBar:{},titleBarTitleOnly:{root:{_lastOfType:{paddingBottom:"8px"},_firstOfType:{paddingBottom:"0px"}}}}},defaultVariants:{type:"navbar"}}),_E=({headingIconButton:e,trailingIconButtons:n,badge:t,title:o,...i})=>{const[r,{className:a,...s}]=Oa.splitVariantProps(i),c=Oa(r);return m.jsx("nav",{className:ne(c.root,a),...s,children:m.jsxs("div",{className:c.container,children:[m.jsxs("div",{className:c.left,children:[m.jsx("div",{className:c.buttonContainer,children:e}),m.jsx("h1",{className:c.title,children:o}),t&&m.jsx(cn,{count:t,position:"relative"})]}),m.jsx("div",{className:c.buttonContainer,children:n})]})})};exports.Accordion=zw;exports.AccordionGroup=jw;exports.Avatar=Ww;exports.AvatarStyle=oi;exports.Badge=Uw;exports.BadgeCloseButton=qw;exports.BadgeStyle=li;exports.Banner=Yw;exports.BottomNavigation=Xw;exports.BottomNavigationItem=Zw;exports.BottomNavigationItemStyle=ii;exports.Button=ko;exports.ButtonStyle=ri;exports.CheckBox=Jw;exports.CheckBoxStyle=ai;exports.ChoiceBox=eE;exports.ChoiceBoxStyle=ci;exports.DashboardWidget=nE;exports.Divider=oE;exports.DividerStyle=di;exports.Drawer=lE;exports.DropdownMenu=iE;exports.DropdownMenuStyle=W0;exports.IconButton=br;exports.IconButtonStyle=ui;exports.List=G0;exports.ListItem=U0;exports.ListItemStyle=hi;exports.ModalDialog=aE;exports.NotificationBadge=cn;exports.ProgressIndicator=K0;exports.ProgressIndicatorStyle=gi;exports.RadioButton=Qw;exports.RadioButtonStyle=si;exports.RadioGroup=sE;exports.Search=cE;exports.SearchStyle=q0;exports.Select=dE;exports.SelectStyle=vi;exports.SerendiePreset=c1;exports.SvgIcon=OE;exports.Switch=VE;exports.SwitchStyle=mi;exports.TabItem=FE;exports.TabItemStyle=pi;exports.Tabs=PE;exports.TabsStyle=fi;exports.TextArea=kE;exports.TextField=BE;exports.Toast=LE;exports.ToastStyle=X0;exports.TopAppBar=_E;exports.checkboxCheckedIconCss=wr;exports.checkboxIconCss=fr;exports.checkboxUncheckedIconCss=Er;exports.radioCheckedIconCss=xr;exports.radioIconCss=yr;exports.radioUncheckedIconCss=Cr;exports.toaster=AE;