lawgic-dev-kit 0.2.4 → 0.3.4

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 (683) hide show
  1. package/dist/_virtual/_commonjsHelpers.js +8 -0
  2. package/dist/_virtual/client.js +5 -0
  3. package/dist/_virtual/client2.js +4 -0
  4. package/dist/_virtual/index.js +7 -0
  5. package/dist/_virtual/index2.js +4 -0
  6. package/dist/_virtual/index3.js +5 -0
  7. package/dist/_virtual/index4.js +5 -0
  8. package/dist/_virtual/index5.js +7 -0
  9. package/dist/_virtual/index6.js +4 -0
  10. package/dist/_virtual/index7.js +4 -0
  11. package/dist/_virtual/index8.js +4 -0
  12. package/dist/_virtual/jsx-runtime.js +5 -0
  13. package/dist/_virtual/jsx-runtime2.js +4 -0
  14. package/dist/_virtual/lodash.js +5 -0
  15. package/dist/_virtual/lodash2.js +4 -0
  16. package/dist/_virtual/react-dom-client.development.js +4 -0
  17. package/dist/_virtual/react-dom-client.production.js +4 -0
  18. package/dist/_virtual/react-is.development.js +4 -0
  19. package/dist/_virtual/react-is.production.min.js +4 -0
  20. package/dist/_virtual/react-jsx-runtime.development.js +4 -0
  21. package/dist/_virtual/react-jsx-runtime.production.js +4 -0
  22. package/dist/_virtual/scheduler.development.js +4 -0
  23. package/dist/_virtual/scheduler.production.js +4 -0
  24. package/dist/components/atoms/ActionButton/ActionButton.js +51 -0
  25. package/dist/components/atoms/AsyncToast/index.js +33 -0
  26. package/dist/components/atoms/Avatar/Avatar.js +100 -0
  27. package/dist/components/atoms/BoxContainer/BoxContainer.js +18 -0
  28. package/dist/components/atoms/Button/Button.js +25 -0
  29. package/dist/components/atoms/Button/Button.styles.js +43 -0
  30. package/dist/components/atoms/CenterModal/CenterModal.js +79 -0
  31. package/dist/components/atoms/CountrySelectInput/CountryDropdown.js +256 -0
  32. package/dist/components/atoms/Divider/Divider.js +5 -0
  33. package/dist/components/atoms/FullLogo/FullLogo.js +21 -0
  34. package/dist/components/atoms/IconButton/IconButton.js +35 -0
  35. package/dist/components/atoms/IconButton/IconButton.styles.js +34 -0
  36. package/dist/components/atoms/ImageProfileInput/ImageProfileInput.js +115 -0
  37. package/dist/components/atoms/ImageProfileInput/ImageProfileInput.validators.js +8 -0
  38. package/dist/components/atoms/InfoCard/InfoCard.js +17 -0
  39. package/dist/components/atoms/LoadingSpinner/LoadingSpinner.js +20 -0
  40. package/dist/components/atoms/PasswordInput/PasswordInput.js +91 -0
  41. package/dist/components/atoms/ProgressBar/ProgressBar.js +23 -0
  42. package/dist/components/atoms/SearchBar/index.js +44 -0
  43. package/dist/components/atoms/SectionButton/SectionButton.js +10 -0
  44. package/dist/components/atoms/SectionButton/desktop/SectionButton.js +60 -0
  45. package/dist/components/atoms/SectionButton/desktop/SectionButton.styles.js +11 -0
  46. package/dist/components/atoms/SectionButton/mobile/MobileSectionButton.styles.js +19 -0
  47. package/dist/components/atoms/SectionButton/mobile/SectionButton.js +59 -0
  48. package/dist/components/atoms/SelectDropdown/SelectDropdown.js +178 -0
  49. package/dist/components/atoms/Tab/Tab.js +23 -0
  50. package/dist/components/atoms/Tab/Tab.styles.js +15 -0
  51. package/dist/components/atoms/TextButton/TextButton.js +23 -0
  52. package/dist/components/atoms/TextButton/TextButton.styles.js +13 -0
  53. package/dist/components/atoms/TextInput/TextInput.js +81 -0
  54. package/dist/components/atoms/Toast/Toast.js +113 -0
  55. package/dist/components/atoms/UncontrolledSelector/UncontrolledSelector.js +58 -0
  56. package/dist/components/atoms/UncontrolledTextInput/UncontrolledTextInput.js +80 -0
  57. package/dist/components/atoms/UploadContainer/UploadContainer.js +115 -0
  58. package/dist/components/molecules/AlertModal/AlertModal.js +112 -0
  59. package/dist/components/molecules/CalendarSelector/CalendarSelector.js +221 -0
  60. package/dist/components/molecules/CalendarSelector/PeriodToggle.js +51 -0
  61. package/dist/components/molecules/CalendarSelector/TimeDisplay.js +16 -0
  62. package/dist/components/molecules/DateInput/DateInput.js +73 -0
  63. package/dist/components/molecules/DialogModal/DialogModal.js +125 -0
  64. package/dist/components/molecules/Dropdown/Dropdown.js +77 -0
  65. package/dist/components/molecules/FileUpload/FileUpload.js +121 -0
  66. package/dist/components/molecules/FileUpload/FileUpload.types.js +8 -0
  67. package/dist/components/molecules/FloatingMenu/FloatingMenu.js +82 -0
  68. package/dist/components/molecules/SearchModal/SearchModal.js +64 -0
  69. package/dist/components/molecules/Stepper/Stepper.js +225 -0
  70. package/dist/components/molecules/Tabs/Tabs.js +36 -0
  71. package/dist/components/organisms/index.js +4 -0
  72. package/dist/index.d.ts +1 -0
  73. package/dist/index.js +106 -0
  74. package/dist/lawgic-dev-kit.css +1 -0
  75. package/dist/lawgic-dev-kit.umd.js +136 -136
  76. package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +428 -0
  77. package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +393 -0
  78. package/dist/node_modules/@floating-ui/react/dist/floating-ui.react.js +586 -0
  79. package/dist/node_modules/@floating-ui/react/dist/floating-ui.react.utils.js +55 -0
  80. package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +199 -0
  81. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +131 -0
  82. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +128 -0
  83. package/dist/node_modules/@fortawesome/fontawesome-svg-core/index.js +2661 -0
  84. package/dist/node_modules/@fortawesome/free-solid-svg-icons/index.js +23 -0
  85. package/dist/node_modules/@fortawesome/pro-light-svg-icons/index.js +73 -0
  86. package/dist/node_modules/@fortawesome/pro-regular-svg-icons/index.js +13 -0
  87. package/dist/node_modules/@fortawesome/pro-solid-svg-icons/index.js +28 -0
  88. package/dist/node_modules/@fortawesome/react-fontawesome/index.es.js +266 -0
  89. package/dist/node_modules/clsx/dist/clsx.js +17 -0
  90. package/dist/node_modules/date-fns/_lib/addLeadingZeros.js +7 -0
  91. package/dist/node_modules/date-fns/_lib/defaultOptions.js +7 -0
  92. package/dist/node_modules/date-fns/_lib/format/formatters.js +583 -0
  93. package/dist/node_modules/date-fns/_lib/format/lightFormatters.js +59 -0
  94. package/dist/node_modules/date-fns/_lib/format/longFormatters.js +52 -0
  95. package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +18 -0
  96. package/dist/node_modules/date-fns/_lib/normalizeDates.js +11 -0
  97. package/dist/node_modules/date-fns/_lib/normalizeInterval.js +8 -0
  98. package/dist/node_modules/date-fns/_lib/protectedTokens.js +20 -0
  99. package/dist/node_modules/date-fns/addMonths.js +20 -0
  100. package/dist/node_modules/date-fns/constants.js +6 -0
  101. package/dist/node_modules/date-fns/constructFrom.js +8 -0
  102. package/dist/node_modules/date-fns/constructNow.js +8 -0
  103. package/dist/node_modules/date-fns/differenceInCalendarDays.js +16 -0
  104. package/dist/node_modules/date-fns/eachDayOfInterval.js +17 -0
  105. package/dist/node_modules/date-fns/endOfMonth.js +9 -0
  106. package/dist/node_modules/date-fns/endOfWeek.js +11 -0
  107. package/dist/node_modules/date-fns/format.js +59 -0
  108. package/dist/node_modules/date-fns/getDayOfYear.js +11 -0
  109. package/dist/node_modules/date-fns/getISOWeek.js +12 -0
  110. package/dist/node_modules/date-fns/getISOWeekYear.js +15 -0
  111. package/dist/node_modules/date-fns/getWeek.js +12 -0
  112. package/dist/node_modules/date-fns/getWeekYear.js +17 -0
  113. package/dist/node_modules/date-fns/isDate.js +7 -0
  114. package/dist/node_modules/date-fns/isSameDay.js +14 -0
  115. package/dist/node_modules/date-fns/isSameMonth.js +13 -0
  116. package/dist/node_modules/date-fns/isToday.js +13 -0
  117. package/dist/node_modules/date-fns/isValid.js +9 -0
  118. package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +9 -0
  119. package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +18 -0
  120. package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.js +31 -0
  121. package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +15 -0
  122. package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +70 -0
  123. package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.js +33 -0
  124. package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +11 -0
  125. package/dist/node_modules/date-fns/locale/en-US/_lib/localize.js +155 -0
  126. package/dist/node_modules/date-fns/locale/en-US/_lib/match.js +110 -0
  127. package/dist/node_modules/date-fns/locale/en-US.js +21 -0
  128. package/dist/node_modules/date-fns/locale/es/_lib/formatDistance.js +70 -0
  129. package/dist/node_modules/date-fns/locale/es/_lib/formatLong.js +33 -0
  130. package/dist/node_modules/date-fns/locale/es/_lib/formatRelative.js +18 -0
  131. package/dist/node_modules/date-fns/locale/es/_lib/localize.js +143 -0
  132. package/dist/node_modules/date-fns/locale/es/_lib/match.js +116 -0
  133. package/dist/node_modules/date-fns/locale/es.js +21 -0
  134. package/dist/node_modules/date-fns/setHours.js +9 -0
  135. package/dist/node_modules/date-fns/setMinutes.js +9 -0
  136. package/dist/node_modules/date-fns/setSeconds.js +9 -0
  137. package/dist/node_modules/date-fns/startOfDay.js +9 -0
  138. package/dist/node_modules/date-fns/startOfISOWeek.js +8 -0
  139. package/dist/node_modules/date-fns/startOfISOWeekYear.js +11 -0
  140. package/dist/node_modules/date-fns/startOfMonth.js +9 -0
  141. package/dist/node_modules/date-fns/startOfWeek.js +11 -0
  142. package/dist/node_modules/date-fns/startOfWeekYear.js +13 -0
  143. package/dist/node_modules/date-fns/startOfYear.js +9 -0
  144. package/dist/node_modules/date-fns/subMonths.js +8 -0
  145. package/dist/node_modules/date-fns/toDate.js +8 -0
  146. package/dist/node_modules/framer-motion/dist/es/animation/animate/single-value.js +11 -0
  147. package/dist/node_modules/framer-motion/dist/es/animation/animators/AcceleratedAnimation.js +205 -0
  148. package/dist/node_modules/framer-motion/dist/es/animation/animators/BaseAnimation.js +83 -0
  149. package/dist/node_modules/framer-motion/dist/es/animation/animators/MainThreadAnimation.js +147 -0
  150. package/dist/node_modules/framer-motion/dist/es/animation/animators/drivers/driver-frameloop.js +18 -0
  151. package/dist/node_modules/framer-motion/dist/es/animation/animators/utils/accelerated-values.js +12 -0
  152. package/dist/node_modules/framer-motion/dist/es/animation/animators/utils/can-animate.js +23 -0
  153. package/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/index.js +18 -0
  154. package/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.js +8 -0
  155. package/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/utils/supports-waapi.js +6 -0
  156. package/dist/node_modules/framer-motion/dist/es/animation/generators/inertia.js +37 -0
  157. package/dist/node_modules/framer-motion/dist/es/animation/generators/keyframes.js +30 -0
  158. package/dist/node_modules/framer-motion/dist/es/animation/generators/spring/defaults.js +32 -0
  159. package/dist/node_modules/framer-motion/dist/es/animation/generators/spring/find.js +52 -0
  160. package/dist/node_modules/framer-motion/dist/es/animation/generators/spring/index.js +92 -0
  161. package/dist/node_modules/framer-motion/dist/es/animation/generators/utils/velocity.js +10 -0
  162. package/dist/node_modules/framer-motion/dist/es/animation/interfaces/motion-value.js +47 -0
  163. package/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element-target.js +46 -0
  164. package/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element-variant.js +33 -0
  165. package/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element.js +22 -0
  166. package/dist/node_modules/framer-motion/dist/es/animation/optimized-appear/data-id.js +6 -0
  167. package/dist/node_modules/framer-motion/dist/es/animation/optimized-appear/get-appear-id.js +7 -0
  168. package/dist/node_modules/framer-motion/dist/es/animation/utils/default-transitions.js +22 -0
  169. package/dist/node_modules/framer-motion/dist/es/animation/utils/is-animatable.js +7 -0
  170. package/dist/node_modules/framer-motion/dist/es/animation/utils/is-animation-controls.js +6 -0
  171. package/dist/node_modules/framer-motion/dist/es/animation/utils/is-keyframes-target.js +4 -0
  172. package/dist/node_modules/framer-motion/dist/es/animation/utils/is-none.js +7 -0
  173. package/dist/node_modules/framer-motion/dist/es/animation/utils/is-transition-defined.js +6 -0
  174. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.js +53 -0
  175. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js +41 -0
  176. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/index.js +45 -0
  177. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.js +17 -0
  178. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/utils.js +12 -0
  179. package/dist/node_modules/framer-motion/dist/es/context/LayoutGroupContext.js +5 -0
  180. package/dist/node_modules/framer-motion/dist/es/context/LazyContext.js +5 -0
  181. package/dist/node_modules/framer-motion/dist/es/context/MotionConfigContext.js +9 -0
  182. package/dist/node_modules/framer-motion/dist/es/context/MotionContext/create.js +13 -0
  183. package/dist/node_modules/framer-motion/dist/es/context/MotionContext/index.js +5 -0
  184. package/dist/node_modules/framer-motion/dist/es/context/MotionContext/utils.js +15 -0
  185. package/dist/node_modules/framer-motion/dist/es/context/PresenceContext.js +5 -0
  186. package/dist/node_modules/framer-motion/dist/es/context/SwitchLayoutGroupContext.js +5 -0
  187. package/dist/node_modules/framer-motion/dist/es/easing/anticipate.js +5 -0
  188. package/dist/node_modules/framer-motion/dist/es/easing/back.js +9 -0
  189. package/dist/node_modules/framer-motion/dist/es/easing/circ.js +8 -0
  190. package/dist/node_modules/framer-motion/dist/es/easing/cubic-bezier.js +19 -0
  191. package/dist/node_modules/framer-motion/dist/es/easing/ease.js +7 -0
  192. package/dist/node_modules/framer-motion/dist/es/easing/modifiers/mirror.js +4 -0
  193. package/dist/node_modules/framer-motion/dist/es/easing/modifiers/reverse.js +4 -0
  194. package/dist/node_modules/framer-motion/dist/es/easing/utils/is-easing-array.js +4 -0
  195. package/dist/node_modules/framer-motion/dist/es/easing/utils/map.js +32 -0
  196. package/dist/node_modules/framer-motion/dist/es/events/add-dom-event.js +6 -0
  197. package/dist/node_modules/framer-motion/dist/es/events/add-pointer-event.js +8 -0
  198. package/dist/node_modules/framer-motion/dist/es/events/event-info.js +15 -0
  199. package/dist/node_modules/framer-motion/dist/es/gestures/drag/VisualElementDragControls.js +256 -0
  200. package/dist/node_modules/framer-motion/dist/es/gestures/drag/index.js +19 -0
  201. package/dist/node_modules/framer-motion/dist/es/gestures/drag/utils/constraints.js +68 -0
  202. package/dist/node_modules/framer-motion/dist/es/gestures/focus.js +28 -0
  203. package/dist/node_modules/framer-motion/dist/es/gestures/hover.js +22 -0
  204. package/dist/node_modules/framer-motion/dist/es/gestures/pan/PanSession.js +85 -0
  205. package/dist/node_modules/framer-motion/dist/es/gestures/pan/index.js +44 -0
  206. package/dist/node_modules/framer-motion/dist/es/gestures/press.js +24 -0
  207. package/dist/node_modules/framer-motion/dist/es/motion/features/Feature.js +10 -0
  208. package/dist/node_modules/framer-motion/dist/es/motion/features/animation/exit.js +27 -0
  209. package/dist/node_modules/framer-motion/dist/es/motion/features/animation/index.js +34 -0
  210. package/dist/node_modules/framer-motion/dist/es/motion/features/animations.js +13 -0
  211. package/dist/node_modules/framer-motion/dist/es/motion/features/definitions.js +27 -0
  212. package/dist/node_modules/framer-motion/dist/es/motion/features/drag.js +17 -0
  213. package/dist/node_modules/framer-motion/dist/es/motion/features/gestures.js +21 -0
  214. package/dist/node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.js +75 -0
  215. package/dist/node_modules/framer-motion/dist/es/motion/features/layout.js +11 -0
  216. package/dist/node_modules/framer-motion/dist/es/motion/features/load-features.js +11 -0
  217. package/dist/node_modules/framer-motion/dist/es/motion/features/viewport/index.js +44 -0
  218. package/dist/node_modules/framer-motion/dist/es/motion/features/viewport/observers.js +21 -0
  219. package/dist/node_modules/framer-motion/dist/es/motion/index.js +59 -0
  220. package/dist/node_modules/framer-motion/dist/es/motion/utils/is-forced-motion-value.js +8 -0
  221. package/dist/node_modules/framer-motion/dist/es/motion/utils/symbol.js +4 -0
  222. package/dist/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.js +18 -0
  223. package/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-element.js +65 -0
  224. package/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-state.js +53 -0
  225. package/dist/node_modules/framer-motion/dist/es/motion/utils/valid-prop.js +38 -0
  226. package/dist/node_modules/framer-motion/dist/es/projection/animation/mix-values.js +33 -0
  227. package/dist/node_modules/framer-motion/dist/es/projection/geometry/conversion.js +25 -0
  228. package/dist/node_modules/framer-motion/dist/es/projection/geometry/copy.js +14 -0
  229. package/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-apply.js +52 -0
  230. package/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-calc.js +36 -0
  231. package/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-remove.js +25 -0
  232. package/dist/node_modules/framer-motion/dist/es/projection/geometry/models.js +18 -0
  233. package/dist/node_modules/framer-motion/dist/es/projection/geometry/utils.js +34 -0
  234. package/dist/node_modules/framer-motion/dist/es/projection/node/DocumentProjectionNode.js +13 -0
  235. package/dist/node_modules/framer-motion/dist/es/projection/node/HTMLProjectionNode.js +25 -0
  236. package/dist/node_modules/framer-motion/dist/es/projection/node/create-projection-node.js +608 -0
  237. package/dist/node_modules/framer-motion/dist/es/projection/node/state.js +15 -0
  238. package/dist/node_modules/framer-motion/dist/es/projection/shared/stack.js +59 -0
  239. package/dist/node_modules/framer-motion/dist/es/projection/styles/scale-border-radius.js +21 -0
  240. package/dist/node_modules/framer-motion/dist/es/projection/styles/scale-box-shadow.js +16 -0
  241. package/dist/node_modules/framer-motion/dist/es/projection/styles/scale-correction.js +10 -0
  242. package/dist/node_modules/framer-motion/dist/es/projection/styles/transform.js +13 -0
  243. package/dist/node_modules/framer-motion/dist/es/projection/utils/each-axis.js +6 -0
  244. package/dist/node_modules/framer-motion/dist/es/projection/utils/has-transform.js +20 -0
  245. package/dist/node_modules/framer-motion/dist/es/projection/utils/measure.js +13 -0
  246. package/dist/node_modules/framer-motion/dist/es/render/VisualElement.js +229 -0
  247. package/dist/node_modules/framer-motion/dist/es/render/components/create-factory.js +20 -0
  248. package/dist/node_modules/framer-motion/dist/es/render/components/create-proxy.js +18 -0
  249. package/dist/node_modules/framer-motion/dist/es/render/components/motion/create.js +15 -0
  250. package/dist/node_modules/framer-motion/dist/es/render/components/motion/proxy.js +6 -0
  251. package/dist/node_modules/framer-motion/dist/es/render/dom/DOMKeyframesResolver.js +66 -0
  252. package/dist/node_modules/framer-motion/dist/es/render/dom/DOMVisualElement.js +27 -0
  253. package/dist/node_modules/framer-motion/dist/es/render/dom/create-visual-element.js +10 -0
  254. package/dist/node_modules/framer-motion/dist/es/render/dom/use-render.js +18 -0
  255. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/camel-to-dash.js +4 -0
  256. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/css-variables-conversion.js +31 -0
  257. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/filter-props.js +20 -0
  258. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-css-variable.js +5 -0
  259. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-svg-component.js +24 -0
  260. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-svg-element.js +6 -0
  261. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/unit-conversion.js +31 -0
  262. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/animatable-none.js +10 -0
  263. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/defaults.js +24 -0
  264. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/dimensions.js +9 -0
  265. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/find.js +8 -0
  266. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/get-as-type.js +4 -0
  267. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/number-browser.js +41 -0
  268. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/number.js +18 -0
  269. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/test.js +4 -0
  270. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/transform.js +31 -0
  271. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/type-auto.js +7 -0
  272. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/type-int.js +8 -0
  273. package/dist/node_modules/framer-motion/dist/es/render/html/HTMLVisualElement.js +37 -0
  274. package/dist/node_modules/framer-motion/dist/es/render/html/config-motion.js +12 -0
  275. package/dist/node_modules/framer-motion/dist/es/render/html/use-props.js +27 -0
  276. package/dist/node_modules/framer-motion/dist/es/render/html/utils/build-styles.js +29 -0
  277. package/dist/node_modules/framer-motion/dist/es/render/html/utils/build-transform.js +31 -0
  278. package/dist/node_modules/framer-motion/dist/es/render/html/utils/create-render-state.js +9 -0
  279. package/dist/node_modules/framer-motion/dist/es/render/html/utils/keys-position.js +13 -0
  280. package/dist/node_modules/framer-motion/dist/es/render/html/utils/keys-transform.js +23 -0
  281. package/dist/node_modules/framer-motion/dist/es/render/html/utils/make-none-animatable.js +16 -0
  282. package/dist/node_modules/framer-motion/dist/es/render/html/utils/parse-transform.js +64 -0
  283. package/dist/node_modules/framer-motion/dist/es/render/html/utils/render.js +8 -0
  284. package/dist/node_modules/framer-motion/dist/es/render/html/utils/scrape-motion-values.js +12 -0
  285. package/dist/node_modules/framer-motion/dist/es/render/store.js +4 -0
  286. package/dist/node_modules/framer-motion/dist/es/render/svg/SVGVisualElement.js +48 -0
  287. package/dist/node_modules/framer-motion/dist/es/render/svg/config-motion.js +44 -0
  288. package/dist/node_modules/framer-motion/dist/es/render/svg/lowercase-elements.js +30 -0
  289. package/dist/node_modules/framer-motion/dist/es/render/svg/use-props.js +22 -0
  290. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/build-attrs.js +26 -0
  291. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/camel-case-attrs.js +28 -0
  292. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/create-render-state.js +8 -0
  293. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/is-svg-tag.js +4 -0
  294. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/measure.js +15 -0
  295. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/path.js +18 -0
  296. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/render.js +11 -0
  297. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/scrape-motion-values.js +15 -0
  298. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/transform-origin.js +11 -0
  299. package/dist/node_modules/framer-motion/dist/es/render/utils/KeyframesResolver.js +77 -0
  300. package/dist/node_modules/framer-motion/dist/es/render/utils/animation-state.js +128 -0
  301. package/dist/node_modules/framer-motion/dist/es/render/utils/compare-by-depth.js +4 -0
  302. package/dist/node_modules/framer-motion/dist/es/render/utils/flat-tree.js +20 -0
  303. package/dist/node_modules/framer-motion/dist/es/render/utils/get-variant-context.js +20 -0
  304. package/dist/node_modules/framer-motion/dist/es/render/utils/is-controlling-variants.js +13 -0
  305. package/dist/node_modules/framer-motion/dist/es/render/utils/is-variant-label.js +6 -0
  306. package/dist/node_modules/framer-motion/dist/es/render/utils/motion-values.js +27 -0
  307. package/dist/node_modules/framer-motion/dist/es/render/utils/resolve-dynamic-variants.js +8 -0
  308. package/dist/node_modules/framer-motion/dist/es/render/utils/resolve-variants.js +20 -0
  309. package/dist/node_modules/framer-motion/dist/es/render/utils/setters.js +19 -0
  310. package/dist/node_modules/framer-motion/dist/es/render/utils/variant-props.js +13 -0
  311. package/dist/node_modules/framer-motion/dist/es/utils/clamp.js +4 -0
  312. package/dist/node_modules/framer-motion/dist/es/utils/delay.js +13 -0
  313. package/dist/node_modules/framer-motion/dist/es/utils/distance.js +9 -0
  314. package/dist/node_modules/framer-motion/dist/es/utils/get-context-window.js +4 -0
  315. package/dist/node_modules/framer-motion/dist/es/utils/hsla-to-rgba.js +22 -0
  316. package/dist/node_modules/framer-motion/dist/es/utils/interpolate.js +41 -0
  317. package/dist/node_modules/framer-motion/dist/es/utils/is-browser.js +4 -0
  318. package/dist/node_modules/framer-motion/dist/es/utils/is-numerical-string.js +4 -0
  319. package/dist/node_modules/framer-motion/dist/es/utils/is-ref-object.js +6 -0
  320. package/dist/node_modules/framer-motion/dist/es/utils/is-zero-value-string.js +4 -0
  321. package/dist/node_modules/framer-motion/dist/es/utils/mix/color.js +29 -0
  322. package/dist/node_modules/framer-motion/dist/es/utils/mix/complex.js +52 -0
  323. package/dist/node_modules/framer-motion/dist/es/utils/mix/immediate.js +6 -0
  324. package/dist/node_modules/framer-motion/dist/es/utils/mix/index.js +8 -0
  325. package/dist/node_modules/framer-motion/dist/es/utils/mix/number.js +4 -0
  326. package/dist/node_modules/framer-motion/dist/es/utils/mix/visibility.js +8 -0
  327. package/dist/node_modules/framer-motion/dist/es/utils/offsets/default.js +8 -0
  328. package/dist/node_modules/framer-motion/dist/es/utils/offsets/fill.js +13 -0
  329. package/dist/node_modules/framer-motion/dist/es/utils/offsets/time.js +6 -0
  330. package/dist/node_modules/framer-motion/dist/es/utils/pipe.js +4 -0
  331. package/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/index.js +13 -0
  332. package/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/state.js +5 -0
  333. package/dist/node_modules/framer-motion/dist/es/utils/resolve-value.js +6 -0
  334. package/dist/node_modules/framer-motion/dist/es/utils/shallow-compare.js +14 -0
  335. package/dist/node_modules/framer-motion/dist/es/utils/use-constant.js +8 -0
  336. package/dist/node_modules/framer-motion/dist/es/utils/use-isomorphic-effect.js +6 -0
  337. package/dist/node_modules/framer-motion/dist/es/value/types/color/hex.js +19 -0
  338. package/dist/node_modules/framer-motion/dist/es/value/types/color/hsla.js +12 -0
  339. package/dist/node_modules/framer-motion/dist/es/value/types/color/index.js +11 -0
  340. package/dist/node_modules/framer-motion/dist/es/value/types/color/rgba.js +16 -0
  341. package/dist/node_modules/framer-motion/dist/es/value/types/color/utils.js +18 -0
  342. package/dist/node_modules/framer-motion/dist/es/value/types/complex/filter.js +24 -0
  343. package/dist/node_modules/framer-motion/dist/es/value/types/complex/index.js +49 -0
  344. package/dist/node_modules/framer-motion/dist/es/value/types/numbers/index.js +17 -0
  345. package/dist/node_modules/framer-motion/dist/es/value/types/numbers/units.js +17 -0
  346. package/dist/node_modules/framer-motion/dist/es/value/types/utils/color-regex.js +4 -0
  347. package/dist/node_modules/framer-motion/dist/es/value/types/utils/float-regex.js +4 -0
  348. package/dist/node_modules/framer-motion/dist/es/value/types/utils/is-nullish.js +6 -0
  349. package/dist/node_modules/framer-motion/dist/es/value/types/utils/sanitize.js +4 -0
  350. package/dist/node_modules/framer-motion/dist/es/value/types/utils/single-color-regex.js +4 -0
  351. package/dist/node_modules/framer-motion/dist/es/value/use-will-change/add-will-change.js +9 -0
  352. package/dist/node_modules/framer-motion/dist/es/value/use-will-change/is.js +7 -0
  353. package/dist/node_modules/framer-motion/dist/es/value/utils/is-motion-value.js +4 -0
  354. package/dist/node_modules/framer-motion/dist/es/value/utils/resolve-motion-value.js +9 -0
  355. package/dist/node_modules/lodash/lodash.js +3677 -0
  356. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animate/single-value.js +10 -0
  357. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/AcceleratedAnimation.js +204 -0
  358. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/BaseAnimation.js +82 -0
  359. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/MainThreadAnimation.js +147 -0
  360. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/drivers/driver-frameloop.js +17 -0
  361. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/utils/accelerated-values.js +12 -0
  362. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/utils/can-animate.js +23 -0
  363. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/waapi/index.js +17 -0
  364. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.js +8 -0
  365. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/supports-waapi.js +5 -0
  366. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/inertia.js +37 -0
  367. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/keyframes.js +30 -0
  368. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/spring/defaults.js +32 -0
  369. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/spring/find.js +52 -0
  370. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/spring/index.js +91 -0
  371. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/utils/velocity.js +9 -0
  372. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/interfaces/motion-value.js +46 -0
  373. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/interfaces/visual-element-target.js +45 -0
  374. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/interfaces/visual-element-variant.js +33 -0
  375. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/interfaces/visual-element.js +22 -0
  376. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/optimized-appear/data-id.js +6 -0
  377. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/optimized-appear/get-appear-id.js +7 -0
  378. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/default-transitions.js +22 -0
  379. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-animatable.js +7 -0
  380. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-animation-controls.js +6 -0
  381. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-keyframes-target.js +4 -0
  382. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-none.js +7 -0
  383. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-transition-defined.js +6 -0
  384. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/PopChild.js +53 -0
  385. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js +41 -0
  386. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/index.js +45 -0
  387. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/use-presence.js +17 -0
  388. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/utils.js +12 -0
  389. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/LayoutGroupContext.js +5 -0
  390. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/LazyContext.js +5 -0
  391. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/MotionConfigContext.js +9 -0
  392. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/MotionContext/create.js +13 -0
  393. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/MotionContext/index.js +5 -0
  394. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/MotionContext/utils.js +15 -0
  395. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/PresenceContext.js +5 -0
  396. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/SwitchLayoutGroupContext.js +5 -0
  397. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/anticipate.js +5 -0
  398. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/back.js +9 -0
  399. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/circ.js +8 -0
  400. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/cubic-bezier.js +18 -0
  401. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/ease.js +7 -0
  402. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/modifiers/mirror.js +4 -0
  403. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/modifiers/reverse.js +4 -0
  404. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/utils/is-easing-array.js +4 -0
  405. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/utils/map.js +32 -0
  406. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/events/add-dom-event.js +6 -0
  407. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/events/add-pointer-event.js +8 -0
  408. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/events/event-info.js +14 -0
  409. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/drag/VisualElementDragControls.js +256 -0
  410. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/drag/index.js +18 -0
  411. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/drag/utils/constraints.js +67 -0
  412. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/focus.js +28 -0
  413. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/hover.js +21 -0
  414. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/pan/PanSession.js +84 -0
  415. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/pan/index.js +43 -0
  416. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/press.js +23 -0
  417. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/Feature.js +10 -0
  418. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/animation/exit.js +27 -0
  419. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/animation/index.js +34 -0
  420. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/animations.js +13 -0
  421. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/definitions.js +27 -0
  422. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/drag.js +17 -0
  423. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/gestures.js +21 -0
  424. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/layout/MeasureLayout.js +74 -0
  425. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/layout.js +11 -0
  426. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/load-features.js +11 -0
  427. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/viewport/index.js +44 -0
  428. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/viewport/observers.js +21 -0
  429. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/index.js +59 -0
  430. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/is-forced-motion-value.js +8 -0
  431. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/symbol.js +4 -0
  432. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/use-motion-ref.js +18 -0
  433. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/use-visual-element.js +64 -0
  434. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/use-visual-state.js +53 -0
  435. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/valid-prop.js +38 -0
  436. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/animation/mix-values.js +32 -0
  437. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/conversion.js +25 -0
  438. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/copy.js +14 -0
  439. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/delta-apply.js +52 -0
  440. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/delta-calc.js +36 -0
  441. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/delta-remove.js +25 -0
  442. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/models.js +18 -0
  443. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/utils.js +34 -0
  444. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/DocumentProjectionNode.js +13 -0
  445. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/HTMLProjectionNode.js +25 -0
  446. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/create-projection-node.js +607 -0
  447. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/state.js +15 -0
  448. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/shared/stack.js +58 -0
  449. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/styles/scale-border-radius.js +21 -0
  450. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/styles/scale-box-shadow.js +16 -0
  451. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/styles/scale-correction.js +10 -0
  452. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/styles/transform.js +13 -0
  453. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/utils/each-axis.js +6 -0
  454. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/utils/has-transform.js +20 -0
  455. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/utils/measure.js +13 -0
  456. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/VisualElement.js +228 -0
  457. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/components/create-factory.js +20 -0
  458. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/components/create-proxy.js +17 -0
  459. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/components/motion/create.js +15 -0
  460. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/components/motion/proxy.js +6 -0
  461. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/DOMKeyframesResolver.js +66 -0
  462. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/DOMVisualElement.js +27 -0
  463. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/create-visual-element.js +10 -0
  464. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/use-render.js +18 -0
  465. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/camel-to-dash.js +4 -0
  466. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/css-variables-conversion.js +31 -0
  467. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/filter-props.js +20 -0
  468. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/is-css-variable.js +5 -0
  469. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/is-svg-component.js +24 -0
  470. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/is-svg-element.js +6 -0
  471. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/unit-conversion.js +31 -0
  472. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/animatable-none.js +10 -0
  473. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/defaults.js +24 -0
  474. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/dimensions.js +9 -0
  475. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/find.js +8 -0
  476. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/get-as-type.js +4 -0
  477. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/number-browser.js +41 -0
  478. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/number.js +18 -0
  479. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/test.js +4 -0
  480. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/transform.js +31 -0
  481. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/type-auto.js +7 -0
  482. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/type-int.js +8 -0
  483. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/HTMLVisualElement.js +37 -0
  484. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/config-motion.js +12 -0
  485. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/use-props.js +27 -0
  486. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/build-styles.js +29 -0
  487. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/build-transform.js +31 -0
  488. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/create-render-state.js +9 -0
  489. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/keys-position.js +13 -0
  490. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/keys-transform.js +23 -0
  491. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/make-none-animatable.js +16 -0
  492. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/parse-transform.js +64 -0
  493. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/render.js +8 -0
  494. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/scrape-motion-values.js +12 -0
  495. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/store.js +4 -0
  496. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/SVGVisualElement.js +47 -0
  497. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/config-motion.js +43 -0
  498. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/lowercase-elements.js +30 -0
  499. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/use-props.js +22 -0
  500. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/build-attrs.js +26 -0
  501. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/camel-case-attrs.js +28 -0
  502. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/create-render-state.js +8 -0
  503. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/is-svg-tag.js +4 -0
  504. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/measure.js +15 -0
  505. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/path.js +18 -0
  506. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/render.js +11 -0
  507. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/scrape-motion-values.js +15 -0
  508. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/transform-origin.js +11 -0
  509. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/KeyframesResolver.js +76 -0
  510. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/animation-state.js +128 -0
  511. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/compare-by-depth.js +4 -0
  512. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/flat-tree.js +19 -0
  513. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/get-variant-context.js +20 -0
  514. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/is-controlling-variants.js +13 -0
  515. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/is-variant-label.js +6 -0
  516. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/motion-values.js +26 -0
  517. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/resolve-dynamic-variants.js +8 -0
  518. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/resolve-variants.js +20 -0
  519. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/setters.js +18 -0
  520. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/variant-props.js +13 -0
  521. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/clamp.js +4 -0
  522. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/delay.js +12 -0
  523. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/distance.js +9 -0
  524. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/get-context-window.js +4 -0
  525. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/hsla-to-rgba.js +22 -0
  526. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/interpolate.js +41 -0
  527. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/is-browser.js +4 -0
  528. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/is-numerical-string.js +4 -0
  529. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/is-ref-object.js +6 -0
  530. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/is-zero-value-string.js +4 -0
  531. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/color.js +29 -0
  532. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/complex.js +52 -0
  533. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/immediate.js +6 -0
  534. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/index.js +8 -0
  535. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/number.js +4 -0
  536. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/visibility.js +8 -0
  537. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/offsets/default.js +8 -0
  538. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/offsets/fill.js +12 -0
  539. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/offsets/time.js +6 -0
  540. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/pipe.js +4 -0
  541. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/reduced-motion/index.js +13 -0
  542. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/reduced-motion/state.js +5 -0
  543. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/resolve-value.js +6 -0
  544. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/shallow-compare.js +14 -0
  545. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/use-constant.js +8 -0
  546. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/use-isomorphic-effect.js +6 -0
  547. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/hex.js +19 -0
  548. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/hsla.js +12 -0
  549. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/index.js +11 -0
  550. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/rgba.js +16 -0
  551. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/utils.js +18 -0
  552. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/complex/filter.js +24 -0
  553. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/complex/index.js +49 -0
  554. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/numbers/index.js +17 -0
  555. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/numbers/units.js +17 -0
  556. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/color-regex.js +4 -0
  557. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/float-regex.js +4 -0
  558. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/is-nullish.js +6 -0
  559. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/sanitize.js +4 -0
  560. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/single-color-regex.js +4 -0
  561. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/use-will-change/add-will-change.js +9 -0
  562. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/use-will-change/is.js +7 -0
  563. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/utils/is-motion-value.js +4 -0
  564. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/utils/resolve-motion-value.js +9 -0
  565. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/controls/BaseGroup.js +74 -0
  566. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/controls/Group.js +9 -0
  567. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/generators/utils/calc-duration.js +13 -0
  568. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/generators/utils/is-generator.js +6 -0
  569. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/utils/get-value-transition.js +6 -0
  570. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/waapi/utils/attach-timeline.js +6 -0
  571. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/waapi/utils/easing.js +27 -0
  572. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/waapi/utils/linear.js +11 -0
  573. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/frameloop/batcher.js +26 -0
  574. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/frameloop/frame.js +9 -0
  575. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/frameloop/microtask.js +5 -0
  576. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/frameloop/order.js +17 -0
  577. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/frameloop/render-step.js +42 -0
  578. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/frameloop/sync-time.js +15 -0
  579. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/drag/state/is-active.js +11 -0
  580. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/drag/state/set-active.js +11 -0
  581. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/hover.js +24 -0
  582. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/press/index.js +32 -0
  583. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.js +13 -0
  584. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/press/utils/keyboard.js +27 -0
  585. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/press/utils/state.js +4 -0
  586. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/utils/is-node-or-child.js +4 -0
  587. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/utils/is-primary-pointer.js +4 -0
  588. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/utils/setup.js +12 -0
  589. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/stats/buffer.js +6 -0
  590. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/is-bezier-definition.js +4 -0
  591. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/resolve-elements.js +14 -0
  592. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/supports/flags.js +6 -0
  593. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/supports/linear-easing.js +12 -0
  594. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/supports/memo.js +12 -0
  595. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/supports/scroll-timeline.js +5 -0
  596. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/value/index.js +201 -0
  597. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/array.js +11 -0
  598. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/errors.js +12 -0
  599. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/global-config.js +6 -0
  600. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/memo.js +8 -0
  601. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/noop.js +4 -0
  602. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/progress.js +7 -0
  603. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/subscription-manager.js +29 -0
  604. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/time-conversion.js +5 -0
  605. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/velocity-per-second.js +6 -0
  606. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/warn-once.js +7 -0
  607. package/dist/node_modules/motion-dom/dist/es/animation/controls/BaseGroup.js +74 -0
  608. package/dist/node_modules/motion-dom/dist/es/animation/controls/Group.js +9 -0
  609. package/dist/node_modules/motion-dom/dist/es/animation/generators/utils/calc-duration.js +13 -0
  610. package/dist/node_modules/motion-dom/dist/es/animation/generators/utils/is-generator.js +6 -0
  611. package/dist/node_modules/motion-dom/dist/es/animation/utils/get-value-transition.js +6 -0
  612. package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/attach-timeline.js +6 -0
  613. package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/easing.js +27 -0
  614. package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/linear.js +12 -0
  615. package/dist/node_modules/motion-dom/dist/es/frameloop/batcher.js +27 -0
  616. package/dist/node_modules/motion-dom/dist/es/frameloop/frame.js +10 -0
  617. package/dist/node_modules/motion-dom/dist/es/frameloop/microtask.js +5 -0
  618. package/dist/node_modules/motion-dom/dist/es/frameloop/order.js +17 -0
  619. package/dist/node_modules/motion-dom/dist/es/frameloop/render-step.js +42 -0
  620. package/dist/node_modules/motion-dom/dist/es/frameloop/sync-time.js +16 -0
  621. package/dist/node_modules/motion-dom/dist/es/gestures/drag/state/is-active.js +11 -0
  622. package/dist/node_modules/motion-dom/dist/es/gestures/drag/state/set-active.js +11 -0
  623. package/dist/node_modules/motion-dom/dist/es/gestures/hover.js +24 -0
  624. package/dist/node_modules/motion-dom/dist/es/gestures/press/index.js +32 -0
  625. package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.js +13 -0
  626. package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/keyboard.js +27 -0
  627. package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/state.js +4 -0
  628. package/dist/node_modules/motion-dom/dist/es/gestures/utils/is-node-or-child.js +4 -0
  629. package/dist/node_modules/motion-dom/dist/es/gestures/utils/is-primary-pointer.js +4 -0
  630. package/dist/node_modules/motion-dom/dist/es/gestures/utils/setup.js +12 -0
  631. package/dist/node_modules/motion-dom/dist/es/stats/buffer.js +6 -0
  632. package/dist/node_modules/motion-dom/dist/es/utils/is-bezier-definition.js +4 -0
  633. package/dist/node_modules/motion-dom/dist/es/utils/resolve-elements.js +14 -0
  634. package/dist/node_modules/motion-dom/dist/es/utils/supports/flags.js +6 -0
  635. package/dist/node_modules/motion-dom/dist/es/utils/supports/linear-easing.js +12 -0
  636. package/dist/node_modules/motion-dom/dist/es/utils/supports/memo.js +13 -0
  637. package/dist/node_modules/motion-dom/dist/es/utils/supports/scroll-timeline.js +6 -0
  638. package/dist/node_modules/motion-dom/dist/es/value/index.js +202 -0
  639. package/dist/node_modules/motion-utils/dist/es/array.js +11 -0
  640. package/dist/node_modules/motion-utils/dist/es/errors.js +12 -0
  641. package/dist/node_modules/motion-utils/dist/es/global-config.js +6 -0
  642. package/dist/node_modules/motion-utils/dist/es/memo.js +8 -0
  643. package/dist/node_modules/motion-utils/dist/es/noop.js +4 -0
  644. package/dist/node_modules/motion-utils/dist/es/progress.js +7 -0
  645. package/dist/node_modules/motion-utils/dist/es/subscription-manager.js +29 -0
  646. package/dist/node_modules/motion-utils/dist/es/time-conversion.js +5 -0
  647. package/dist/node_modules/motion-utils/dist/es/velocity-per-second.js +6 -0
  648. package/dist/node_modules/motion-utils/dist/es/warn-once.js +7 -0
  649. package/dist/node_modules/object-assign/index.js +54 -0
  650. package/dist/node_modules/prop-types/checkPropTypes.js +54 -0
  651. package/dist/node_modules/prop-types/factoryWithThrowingShims.js +52 -0
  652. package/dist/node_modules/prop-types/factoryWithTypeCheckers.js +329 -0
  653. package/dist/node_modules/prop-types/index.js +17 -0
  654. package/dist/node_modules/prop-types/lib/ReactPropTypesSecret.js +10 -0
  655. package/dist/node_modules/prop-types/lib/has.js +7 -0
  656. package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js +95 -0
  657. package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.production.min.js +78 -0
  658. package/dist/node_modules/prop-types/node_modules/react-is/index.js +10 -0
  659. package/dist/node_modules/property-expr/index.js +82 -0
  660. package/dist/node_modules/react/cjs/react-jsx-runtime.development.js +247 -0
  661. package/dist/node_modules/react/cjs/react-jsx-runtime.production.js +35 -0
  662. package/dist/node_modules/react/jsx-runtime.js +10 -0
  663. package/dist/node_modules/react-dom/cjs/react-dom-client.development.js +15314 -0
  664. package/dist/node_modules/react-dom/cjs/react-dom-client.production.js +9408 -0
  665. package/dist/node_modules/react-dom/client.js +23 -0
  666. package/dist/node_modules/react-hook-form/dist/index.esm.js +203 -0
  667. package/dist/node_modules/scheduler/cjs/scheduler.development.js +236 -0
  668. package/dist/node_modules/scheduler/cjs/scheduler.production.js +233 -0
  669. package/dist/node_modules/scheduler/index.js +10 -0
  670. package/dist/node_modules/tiny-case/index.js +22 -0
  671. package/dist/node_modules/toposort/index.js +66 -0
  672. package/dist/node_modules/yup/index.esm.js +1359 -0
  673. package/dist/providers/ThemeProvider.js +19 -0
  674. package/dist/themes/default.js +9 -0
  675. package/dist/utils/dates.js +14 -0
  676. package/dist/utils/files.js +29 -0
  677. package/dist/utils/images.js +4 -0
  678. package/dist/utils/modal.js +87 -0
  679. package/dist/utils/renderContentOptions.js +15 -0
  680. package/dist/utils/strings.js +16 -0
  681. package/dist/utils/toast.js +114 -0
  682. package/package.json +15 -14
  683. package/dist/lawgic-dev-kit.es.js +0 -50777
@@ -0,0 +1,2661 @@
1
+ /*!
2
+ * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2024 Fonticons, Inc.
5
+ */
6
+ function Kn(t, n, e) {
7
+ return (n = Qn(n)) in t ? Object.defineProperty(t, n, {
8
+ value: e,
9
+ enumerable: !0,
10
+ configurable: !0,
11
+ writable: !0
12
+ }) : t[n] = e, t;
13
+ }
14
+ function Yt(t, n) {
15
+ var e = Object.keys(t);
16
+ if (Object.getOwnPropertySymbols) {
17
+ var a = Object.getOwnPropertySymbols(t);
18
+ n && (a = a.filter(function(r) {
19
+ return Object.getOwnPropertyDescriptor(t, r).enumerable;
20
+ })), e.push.apply(e, a);
21
+ }
22
+ return e;
23
+ }
24
+ function s(t) {
25
+ for (var n = 1; n < arguments.length; n++) {
26
+ var e = arguments[n] != null ? arguments[n] : {};
27
+ n % 2 ? Yt(Object(e), !0).forEach(function(a) {
28
+ Kn(t, a, e[a]);
29
+ }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(t, Object.getOwnPropertyDescriptors(e)) : Yt(Object(e)).forEach(function(a) {
30
+ Object.defineProperty(t, a, Object.getOwnPropertyDescriptor(e, a));
31
+ });
32
+ }
33
+ return t;
34
+ }
35
+ function qn(t, n) {
36
+ if (typeof t != "object" || !t) return t;
37
+ var e = t[Symbol.toPrimitive];
38
+ if (e !== void 0) {
39
+ var a = e.call(t, n);
40
+ if (typeof a != "object") return a;
41
+ throw new TypeError("@@toPrimitive must return a primitive value.");
42
+ }
43
+ return (n === "string" ? String : Number)(t);
44
+ }
45
+ function Qn(t) {
46
+ var n = qn(t, "string");
47
+ return typeof n == "symbol" ? n : n + "";
48
+ }
49
+ const Ut = () => {
50
+ };
51
+ let It = {}, gn = {}, pn = null, hn = {
52
+ mark: Ut,
53
+ measure: Ut
54
+ };
55
+ try {
56
+ typeof window < "u" && (It = window), typeof document < "u" && (gn = document), typeof MutationObserver < "u" && (pn = MutationObserver), typeof performance < "u" && (hn = performance);
57
+ } catch {
58
+ }
59
+ const {
60
+ userAgent: Wt = ""
61
+ } = It.navigator || {}, N = It, p = gn, Ht = pn, q = hn;
62
+ N.document;
63
+ const O = !!p.documentElement && !!p.head && typeof p.addEventListener == "function" && typeof p.createElement == "function", bn = ~Wt.indexOf("MSIE") || ~Wt.indexOf("Trident/");
64
+ var Jn = /fa(s|r|l|t|d|dr|dl|dt|b|k|kd|ss|sr|sl|st|sds|sdr|sdl|sdt)?[\-\ ]/, Zn = /Font ?Awesome ?([56 ]*)(Solid|Regular|Light|Thin|Duotone|Brands|Free|Pro|Sharp Duotone|Sharp|Kit)?.*/i, yn = {
65
+ classic: {
66
+ fa: "solid",
67
+ fas: "solid",
68
+ "fa-solid": "solid",
69
+ far: "regular",
70
+ "fa-regular": "regular",
71
+ fal: "light",
72
+ "fa-light": "light",
73
+ fat: "thin",
74
+ "fa-thin": "thin",
75
+ fab: "brands",
76
+ "fa-brands": "brands"
77
+ },
78
+ duotone: {
79
+ fa: "solid",
80
+ fad: "solid",
81
+ "fa-solid": "solid",
82
+ "fa-duotone": "solid",
83
+ fadr: "regular",
84
+ "fa-regular": "regular",
85
+ fadl: "light",
86
+ "fa-light": "light",
87
+ fadt: "thin",
88
+ "fa-thin": "thin"
89
+ },
90
+ sharp: {
91
+ fa: "solid",
92
+ fass: "solid",
93
+ "fa-solid": "solid",
94
+ fasr: "regular",
95
+ "fa-regular": "regular",
96
+ fasl: "light",
97
+ "fa-light": "light",
98
+ fast: "thin",
99
+ "fa-thin": "thin"
100
+ },
101
+ "sharp-duotone": {
102
+ fa: "solid",
103
+ fasds: "solid",
104
+ "fa-solid": "solid",
105
+ fasdr: "regular",
106
+ "fa-regular": "regular",
107
+ fasdl: "light",
108
+ "fa-light": "light",
109
+ fasdt: "thin",
110
+ "fa-thin": "thin"
111
+ }
112
+ }, te = {
113
+ GROUP: "duotone-group",
114
+ PRIMARY: "primary",
115
+ SECONDARY: "secondary"
116
+ }, vn = ["fa-classic", "fa-duotone", "fa-sharp", "fa-sharp-duotone"], h = "classic", et = "duotone", ne = "sharp", ee = "sharp-duotone", xn = [h, et, ne, ee], ae = {
117
+ classic: {
118
+ 900: "fas",
119
+ 400: "far",
120
+ normal: "far",
121
+ 300: "fal",
122
+ 100: "fat"
123
+ },
124
+ duotone: {
125
+ 900: "fad",
126
+ 400: "fadr",
127
+ 300: "fadl",
128
+ 100: "fadt"
129
+ },
130
+ sharp: {
131
+ 900: "fass",
132
+ 400: "fasr",
133
+ 300: "fasl",
134
+ 100: "fast"
135
+ },
136
+ "sharp-duotone": {
137
+ 900: "fasds",
138
+ 400: "fasdr",
139
+ 300: "fasdl",
140
+ 100: "fasdt"
141
+ }
142
+ }, re = {
143
+ "Font Awesome 6 Free": {
144
+ 900: "fas",
145
+ 400: "far"
146
+ },
147
+ "Font Awesome 6 Pro": {
148
+ 900: "fas",
149
+ 400: "far",
150
+ normal: "far",
151
+ 300: "fal",
152
+ 100: "fat"
153
+ },
154
+ "Font Awesome 6 Brands": {
155
+ 400: "fab",
156
+ normal: "fab"
157
+ },
158
+ "Font Awesome 6 Duotone": {
159
+ 900: "fad",
160
+ 400: "fadr",
161
+ normal: "fadr",
162
+ 300: "fadl",
163
+ 100: "fadt"
164
+ },
165
+ "Font Awesome 6 Sharp": {
166
+ 900: "fass",
167
+ 400: "fasr",
168
+ normal: "fasr",
169
+ 300: "fasl",
170
+ 100: "fast"
171
+ },
172
+ "Font Awesome 6 Sharp Duotone": {
173
+ 900: "fasds",
174
+ 400: "fasdr",
175
+ normal: "fasdr",
176
+ 300: "fasdl",
177
+ 100: "fasdt"
178
+ }
179
+ }, ie = /* @__PURE__ */ new Map([["classic", {
180
+ defaultShortPrefixId: "fas",
181
+ defaultStyleId: "solid",
182
+ styleIds: ["solid", "regular", "light", "thin", "brands"],
183
+ futureStyleIds: [],
184
+ defaultFontWeight: 900
185
+ }], ["sharp", {
186
+ defaultShortPrefixId: "fass",
187
+ defaultStyleId: "solid",
188
+ styleIds: ["solid", "regular", "light", "thin"],
189
+ futureStyleIds: [],
190
+ defaultFontWeight: 900
191
+ }], ["duotone", {
192
+ defaultShortPrefixId: "fad",
193
+ defaultStyleId: "solid",
194
+ styleIds: ["solid", "regular", "light", "thin"],
195
+ futureStyleIds: [],
196
+ defaultFontWeight: 900
197
+ }], ["sharp-duotone", {
198
+ defaultShortPrefixId: "fasds",
199
+ defaultStyleId: "solid",
200
+ styleIds: ["solid", "regular", "light", "thin"],
201
+ futureStyleIds: [],
202
+ defaultFontWeight: 900
203
+ }]]), oe = {
204
+ classic: {
205
+ solid: "fas",
206
+ regular: "far",
207
+ light: "fal",
208
+ thin: "fat",
209
+ brands: "fab"
210
+ },
211
+ duotone: {
212
+ solid: "fad",
213
+ regular: "fadr",
214
+ light: "fadl",
215
+ thin: "fadt"
216
+ },
217
+ sharp: {
218
+ solid: "fass",
219
+ regular: "fasr",
220
+ light: "fasl",
221
+ thin: "fast"
222
+ },
223
+ "sharp-duotone": {
224
+ solid: "fasds",
225
+ regular: "fasdr",
226
+ light: "fasdl",
227
+ thin: "fasdt"
228
+ }
229
+ }, se = ["fak", "fa-kit", "fakd", "fa-kit-duotone"], Gt = {
230
+ kit: {
231
+ fak: "kit",
232
+ "fa-kit": "kit"
233
+ },
234
+ "kit-duotone": {
235
+ fakd: "kit-duotone",
236
+ "fa-kit-duotone": "kit-duotone"
237
+ }
238
+ }, le = ["kit"], fe = {
239
+ kit: {
240
+ "fa-kit": "fak"
241
+ }
242
+ }, ce = ["fak", "fakd"], ue = {
243
+ kit: {
244
+ fak: "fa-kit"
245
+ }
246
+ }, Xt = {
247
+ kit: {
248
+ kit: "fak"
249
+ },
250
+ "kit-duotone": {
251
+ "kit-duotone": "fakd"
252
+ }
253
+ }, Q = {
254
+ GROUP: "duotone-group",
255
+ SWAP_OPACITY: "swap-opacity",
256
+ PRIMARY: "primary",
257
+ SECONDARY: "secondary"
258
+ }, de = ["fa-classic", "fa-duotone", "fa-sharp", "fa-sharp-duotone"], me = ["fak", "fa-kit", "fakd", "fa-kit-duotone"], ge = {
259
+ "Font Awesome Kit": {
260
+ 400: "fak",
261
+ normal: "fak"
262
+ },
263
+ "Font Awesome Kit Duotone": {
264
+ 400: "fakd",
265
+ normal: "fakd"
266
+ }
267
+ }, pe = {
268
+ classic: {
269
+ "fa-brands": "fab",
270
+ "fa-duotone": "fad",
271
+ "fa-light": "fal",
272
+ "fa-regular": "far",
273
+ "fa-solid": "fas",
274
+ "fa-thin": "fat"
275
+ },
276
+ duotone: {
277
+ "fa-regular": "fadr",
278
+ "fa-light": "fadl",
279
+ "fa-thin": "fadt"
280
+ },
281
+ sharp: {
282
+ "fa-solid": "fass",
283
+ "fa-regular": "fasr",
284
+ "fa-light": "fasl",
285
+ "fa-thin": "fast"
286
+ },
287
+ "sharp-duotone": {
288
+ "fa-solid": "fasds",
289
+ "fa-regular": "fasdr",
290
+ "fa-light": "fasdl",
291
+ "fa-thin": "fasdt"
292
+ }
293
+ }, he = {
294
+ classic: ["fas", "far", "fal", "fat", "fad"],
295
+ duotone: ["fadr", "fadl", "fadt"],
296
+ sharp: ["fass", "fasr", "fasl", "fast"],
297
+ "sharp-duotone": ["fasds", "fasdr", "fasdl", "fasdt"]
298
+ }, mt = {
299
+ classic: {
300
+ fab: "fa-brands",
301
+ fad: "fa-duotone",
302
+ fal: "fa-light",
303
+ far: "fa-regular",
304
+ fas: "fa-solid",
305
+ fat: "fa-thin"
306
+ },
307
+ duotone: {
308
+ fadr: "fa-regular",
309
+ fadl: "fa-light",
310
+ fadt: "fa-thin"
311
+ },
312
+ sharp: {
313
+ fass: "fa-solid",
314
+ fasr: "fa-regular",
315
+ fasl: "fa-light",
316
+ fast: "fa-thin"
317
+ },
318
+ "sharp-duotone": {
319
+ fasds: "fa-solid",
320
+ fasdr: "fa-regular",
321
+ fasdl: "fa-light",
322
+ fasdt: "fa-thin"
323
+ }
324
+ }, be = ["fa-solid", "fa-regular", "fa-light", "fa-thin", "fa-duotone", "fa-brands"], gt = ["fa", "fas", "far", "fal", "fat", "fad", "fadr", "fadl", "fadt", "fab", "fass", "fasr", "fasl", "fast", "fasds", "fasdr", "fasdl", "fasdt", ...de, ...be], ye = ["solid", "regular", "light", "thin", "duotone", "brands"], An = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], ve = An.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]), xe = [...Object.keys(he), ...ye, "2xs", "xs", "sm", "lg", "xl", "2xl", "beat", "border", "fade", "beat-fade", "bounce", "flip-both", "flip-horizontal", "flip-vertical", "flip", "fw", "inverse", "layers-counter", "layers-text", "layers", "li", "pull-left", "pull-right", "pulse", "rotate-180", "rotate-270", "rotate-90", "rotate-by", "shake", "spin-pulse", "spin-reverse", "spin", "stack-1x", "stack-2x", "stack", "ul", Q.GROUP, Q.SWAP_OPACITY, Q.PRIMARY, Q.SECONDARY].concat(An.map((t) => "".concat(t, "x"))).concat(ve.map((t) => "w-".concat(t))), Ae = {
325
+ "Font Awesome 5 Free": {
326
+ 900: "fas",
327
+ 400: "far"
328
+ },
329
+ "Font Awesome 5 Pro": {
330
+ 900: "fas",
331
+ 400: "far",
332
+ normal: "far",
333
+ 300: "fal"
334
+ },
335
+ "Font Awesome 5 Brands": {
336
+ 400: "fab",
337
+ normal: "fab"
338
+ },
339
+ "Font Awesome 5 Duotone": {
340
+ 900: "fad"
341
+ }
342
+ };
343
+ const P = "___FONT_AWESOME___", pt = 16, kn = "fa", wn = "svg-inline--fa", L = "data-fa-i2svg", ht = "data-fa-pseudo-element", ke = "data-fa-pseudo-element-pending", Nt = "data-prefix", Ft = "data-icon", Bt = "fontawesome-i2svg", we = "async", Se = ["HTML", "HEAD", "STYLE", "SCRIPT"], Sn = (() => {
344
+ try {
345
+ return process.env.NODE_ENV === "production";
346
+ } catch {
347
+ return !1;
348
+ }
349
+ })();
350
+ function $(t) {
351
+ return new Proxy(t, {
352
+ get(n, e) {
353
+ return e in n ? n[e] : n[h];
354
+ }
355
+ });
356
+ }
357
+ const Pn = s({}, yn);
358
+ Pn[h] = s(s(s(s({}, {
359
+ "fa-duotone": "duotone"
360
+ }), yn[h]), Gt.kit), Gt["kit-duotone"]);
361
+ const Pe = $(Pn), bt = s({}, oe);
362
+ bt[h] = s(s(s(s({}, {
363
+ duotone: "fad"
364
+ }), bt[h]), Xt.kit), Xt["kit-duotone"]);
365
+ const Vt = $(bt), yt = s({}, mt);
366
+ yt[h] = s(s({}, yt[h]), ue.kit);
367
+ const Tt = $(yt), vt = s({}, pe);
368
+ vt[h] = s(s({}, vt[h]), fe.kit);
369
+ $(vt);
370
+ const Ee = Jn, En = "fa-layers-text", Oe = Zn, Ce = s({}, ae);
371
+ $(Ce);
372
+ const Ie = ["class", "data-prefix", "data-icon", "data-fa-transform", "data-fa-mask"], lt = te, Ne = [...le, ...xe], G = N.FontAwesomeConfig || {};
373
+ function Fe(t) {
374
+ var n = p.querySelector("script[" + t + "]");
375
+ if (n)
376
+ return n.getAttribute(t);
377
+ }
378
+ function Te(t) {
379
+ return t === "" ? !0 : t === "false" ? !1 : t === "true" ? !0 : t;
380
+ }
381
+ p && typeof p.querySelector == "function" && [["data-family-prefix", "familyPrefix"], ["data-css-prefix", "cssPrefix"], ["data-family-default", "familyDefault"], ["data-style-default", "styleDefault"], ["data-replacement-class", "replacementClass"], ["data-auto-replace-svg", "autoReplaceSvg"], ["data-auto-add-css", "autoAddCss"], ["data-auto-a11y", "autoA11y"], ["data-search-pseudo-elements", "searchPseudoElements"], ["data-observe-mutations", "observeMutations"], ["data-mutate-approach", "mutateApproach"], ["data-keep-original-source", "keepOriginalSource"], ["data-measure-performance", "measurePerformance"], ["data-show-missing-icons", "showMissingIcons"]].forEach((n) => {
382
+ let [e, a] = n;
383
+ const r = Te(Fe(e));
384
+ r != null && (G[a] = r);
385
+ });
386
+ const On = {
387
+ styleDefault: "solid",
388
+ familyDefault: h,
389
+ cssPrefix: kn,
390
+ replacementClass: wn,
391
+ autoReplaceSvg: !0,
392
+ autoAddCss: !0,
393
+ autoA11y: !0,
394
+ searchPseudoElements: !1,
395
+ observeMutations: !0,
396
+ mutateApproach: "async",
397
+ keepOriginalSource: !0,
398
+ measurePerformance: !1,
399
+ showMissingIcons: !0
400
+ };
401
+ G.familyPrefix && (G.cssPrefix = G.familyPrefix);
402
+ const U = s(s({}, On), G);
403
+ U.autoReplaceSvg || (U.observeMutations = !1);
404
+ const f = {};
405
+ Object.keys(On).forEach((t) => {
406
+ Object.defineProperty(f, t, {
407
+ enumerable: !0,
408
+ set: function(n) {
409
+ U[t] = n, X.forEach((e) => e(f));
410
+ },
411
+ get: function() {
412
+ return U[t];
413
+ }
414
+ });
415
+ });
416
+ Object.defineProperty(f, "familyPrefix", {
417
+ enumerable: !0,
418
+ set: function(t) {
419
+ U.cssPrefix = t, X.forEach((n) => n(f));
420
+ },
421
+ get: function() {
422
+ return U.cssPrefix;
423
+ }
424
+ });
425
+ N.FontAwesomeConfig = f;
426
+ const X = [];
427
+ function _e(t) {
428
+ return X.push(t), () => {
429
+ X.splice(X.indexOf(t), 1);
430
+ };
431
+ }
432
+ const I = pt, k = {
433
+ size: 16,
434
+ x: 0,
435
+ y: 0,
436
+ rotate: 0,
437
+ flipX: !1,
438
+ flipY: !1
439
+ };
440
+ function Me(t) {
441
+ if (!t || !O)
442
+ return;
443
+ const n = p.createElement("style");
444
+ n.setAttribute("type", "text/css"), n.innerHTML = t;
445
+ const e = p.head.childNodes;
446
+ let a = null;
447
+ for (let r = e.length - 1; r > -1; r--) {
448
+ const i = e[r], o = (i.tagName || "").toUpperCase();
449
+ ["STYLE", "LINK"].indexOf(o) > -1 && (a = i);
450
+ }
451
+ return p.head.insertBefore(n, a), t;
452
+ }
453
+ const Le = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
454
+ function B() {
455
+ let t = 12, n = "";
456
+ for (; t-- > 0; )
457
+ n += Le[Math.random() * 62 | 0];
458
+ return n;
459
+ }
460
+ function W(t) {
461
+ const n = [];
462
+ for (let e = (t || []).length >>> 0; e--; )
463
+ n[e] = t[e];
464
+ return n;
465
+ }
466
+ function _t(t) {
467
+ return t.classList ? W(t.classList) : (t.getAttribute("class") || "").split(" ").filter((n) => n);
468
+ }
469
+ function Cn(t) {
470
+ return "".concat(t).replace(/&/g, "&amp;").replace(/"/g, "&quot;").replace(/'/g, "&#39;").replace(/</g, "&lt;").replace(/>/g, "&gt;");
471
+ }
472
+ function De(t) {
473
+ return Object.keys(t || {}).reduce((n, e) => n + "".concat(e, '="').concat(Cn(t[e]), '" '), "").trim();
474
+ }
475
+ function at(t) {
476
+ return Object.keys(t || {}).reduce((n, e) => n + "".concat(e, ": ").concat(t[e].trim(), ";"), "");
477
+ }
478
+ function Mt(t) {
479
+ return t.size !== k.size || t.x !== k.x || t.y !== k.y || t.rotate !== k.rotate || t.flipX || t.flipY;
480
+ }
481
+ function Re(t) {
482
+ let {
483
+ transform: n,
484
+ containerWidth: e,
485
+ iconWidth: a
486
+ } = t;
487
+ const r = {
488
+ transform: "translate(".concat(e / 2, " 256)")
489
+ }, i = "translate(".concat(n.x * 32, ", ").concat(n.y * 32, ") "), o = "scale(".concat(n.size / 16 * (n.flipX ? -1 : 1), ", ").concat(n.size / 16 * (n.flipY ? -1 : 1), ") "), l = "rotate(".concat(n.rotate, " 0 0)"), u = {
490
+ transform: "".concat(i, " ").concat(o, " ").concat(l)
491
+ }, c = {
492
+ transform: "translate(".concat(a / 2 * -1, " -256)")
493
+ };
494
+ return {
495
+ outer: r,
496
+ inner: u,
497
+ path: c
498
+ };
499
+ }
500
+ function ze(t) {
501
+ let {
502
+ transform: n,
503
+ width: e = pt,
504
+ height: a = pt,
505
+ startCentered: r = !1
506
+ } = t, i = "";
507
+ return r && bn ? i += "translate(".concat(n.x / I - e / 2, "em, ").concat(n.y / I - a / 2, "em) ") : r ? i += "translate(calc(-50% + ".concat(n.x / I, "em), calc(-50% + ").concat(n.y / I, "em)) ") : i += "translate(".concat(n.x / I, "em, ").concat(n.y / I, "em) "), i += "scale(".concat(n.size / I * (n.flipX ? -1 : 1), ", ").concat(n.size / I * (n.flipY ? -1 : 1), ") "), i += "rotate(".concat(n.rotate, "deg) "), i;
508
+ }
509
+ var je = `:root, :host {
510
+ --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
511
+ --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
512
+ --fa-font-light: normal 300 1em/1 "Font Awesome 6 Pro";
513
+ --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Pro";
514
+ --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";
515
+ --fa-font-duotone-regular: normal 400 1em/1 "Font Awesome 6 Duotone";
516
+ --fa-font-duotone-light: normal 300 1em/1 "Font Awesome 6 Duotone";
517
+ --fa-font-duotone-thin: normal 100 1em/1 "Font Awesome 6 Duotone";
518
+ --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
519
+ --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 6 Sharp";
520
+ --fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 6 Sharp";
521
+ --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 6 Sharp";
522
+ --fa-font-sharp-thin: normal 100 1em/1 "Font Awesome 6 Sharp";
523
+ --fa-font-sharp-duotone-solid: normal 900 1em/1 "Font Awesome 6 Sharp Duotone";
524
+ --fa-font-sharp-duotone-regular: normal 400 1em/1 "Font Awesome 6 Sharp Duotone";
525
+ --fa-font-sharp-duotone-light: normal 300 1em/1 "Font Awesome 6 Sharp Duotone";
526
+ --fa-font-sharp-duotone-thin: normal 100 1em/1 "Font Awesome 6 Sharp Duotone";
527
+ }
528
+
529
+ svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
530
+ overflow: visible;
531
+ box-sizing: content-box;
532
+ }
533
+
534
+ .svg-inline--fa {
535
+ display: var(--fa-display, inline-block);
536
+ height: 1em;
537
+ overflow: visible;
538
+ vertical-align: -0.125em;
539
+ }
540
+ .svg-inline--fa.fa-2xs {
541
+ vertical-align: 0.1em;
542
+ }
543
+ .svg-inline--fa.fa-xs {
544
+ vertical-align: 0em;
545
+ }
546
+ .svg-inline--fa.fa-sm {
547
+ vertical-align: -0.0714285705em;
548
+ }
549
+ .svg-inline--fa.fa-lg {
550
+ vertical-align: -0.2em;
551
+ }
552
+ .svg-inline--fa.fa-xl {
553
+ vertical-align: -0.25em;
554
+ }
555
+ .svg-inline--fa.fa-2xl {
556
+ vertical-align: -0.3125em;
557
+ }
558
+ .svg-inline--fa.fa-pull-left {
559
+ margin-right: var(--fa-pull-margin, 0.3em);
560
+ width: auto;
561
+ }
562
+ .svg-inline--fa.fa-pull-right {
563
+ margin-left: var(--fa-pull-margin, 0.3em);
564
+ width: auto;
565
+ }
566
+ .svg-inline--fa.fa-li {
567
+ width: var(--fa-li-width, 2em);
568
+ top: 0.25em;
569
+ }
570
+ .svg-inline--fa.fa-fw {
571
+ width: var(--fa-fw-width, 1.25em);
572
+ }
573
+
574
+ .fa-layers svg.svg-inline--fa {
575
+ bottom: 0;
576
+ left: 0;
577
+ margin: auto;
578
+ position: absolute;
579
+ right: 0;
580
+ top: 0;
581
+ }
582
+
583
+ .fa-layers-counter, .fa-layers-text {
584
+ display: inline-block;
585
+ position: absolute;
586
+ text-align: center;
587
+ }
588
+
589
+ .fa-layers {
590
+ display: inline-block;
591
+ height: 1em;
592
+ position: relative;
593
+ text-align: center;
594
+ vertical-align: -0.125em;
595
+ width: 1em;
596
+ }
597
+ .fa-layers svg.svg-inline--fa {
598
+ transform-origin: center center;
599
+ }
600
+
601
+ .fa-layers-text {
602
+ left: 50%;
603
+ top: 50%;
604
+ transform: translate(-50%, -50%);
605
+ transform-origin: center center;
606
+ }
607
+
608
+ .fa-layers-counter {
609
+ background-color: var(--fa-counter-background-color, #ff253a);
610
+ border-radius: var(--fa-counter-border-radius, 1em);
611
+ box-sizing: border-box;
612
+ color: var(--fa-inverse, #fff);
613
+ line-height: var(--fa-counter-line-height, 1);
614
+ max-width: var(--fa-counter-max-width, 5em);
615
+ min-width: var(--fa-counter-min-width, 1.5em);
616
+ overflow: hidden;
617
+ padding: var(--fa-counter-padding, 0.25em 0.5em);
618
+ right: var(--fa-right, 0);
619
+ text-overflow: ellipsis;
620
+ top: var(--fa-top, 0);
621
+ transform: scale(var(--fa-counter-scale, 0.25));
622
+ transform-origin: top right;
623
+ }
624
+
625
+ .fa-layers-bottom-right {
626
+ bottom: var(--fa-bottom, 0);
627
+ right: var(--fa-right, 0);
628
+ top: auto;
629
+ transform: scale(var(--fa-layers-scale, 0.25));
630
+ transform-origin: bottom right;
631
+ }
632
+
633
+ .fa-layers-bottom-left {
634
+ bottom: var(--fa-bottom, 0);
635
+ left: var(--fa-left, 0);
636
+ right: auto;
637
+ top: auto;
638
+ transform: scale(var(--fa-layers-scale, 0.25));
639
+ transform-origin: bottom left;
640
+ }
641
+
642
+ .fa-layers-top-right {
643
+ top: var(--fa-top, 0);
644
+ right: var(--fa-right, 0);
645
+ transform: scale(var(--fa-layers-scale, 0.25));
646
+ transform-origin: top right;
647
+ }
648
+
649
+ .fa-layers-top-left {
650
+ left: var(--fa-left, 0);
651
+ right: auto;
652
+ top: var(--fa-top, 0);
653
+ transform: scale(var(--fa-layers-scale, 0.25));
654
+ transform-origin: top left;
655
+ }
656
+
657
+ .fa-1x {
658
+ font-size: 1em;
659
+ }
660
+
661
+ .fa-2x {
662
+ font-size: 2em;
663
+ }
664
+
665
+ .fa-3x {
666
+ font-size: 3em;
667
+ }
668
+
669
+ .fa-4x {
670
+ font-size: 4em;
671
+ }
672
+
673
+ .fa-5x {
674
+ font-size: 5em;
675
+ }
676
+
677
+ .fa-6x {
678
+ font-size: 6em;
679
+ }
680
+
681
+ .fa-7x {
682
+ font-size: 7em;
683
+ }
684
+
685
+ .fa-8x {
686
+ font-size: 8em;
687
+ }
688
+
689
+ .fa-9x {
690
+ font-size: 9em;
691
+ }
692
+
693
+ .fa-10x {
694
+ font-size: 10em;
695
+ }
696
+
697
+ .fa-2xs {
698
+ font-size: 0.625em;
699
+ line-height: 0.1em;
700
+ vertical-align: 0.225em;
701
+ }
702
+
703
+ .fa-xs {
704
+ font-size: 0.75em;
705
+ line-height: 0.0833333337em;
706
+ vertical-align: 0.125em;
707
+ }
708
+
709
+ .fa-sm {
710
+ font-size: 0.875em;
711
+ line-height: 0.0714285718em;
712
+ vertical-align: 0.0535714295em;
713
+ }
714
+
715
+ .fa-lg {
716
+ font-size: 1.25em;
717
+ line-height: 0.05em;
718
+ vertical-align: -0.075em;
719
+ }
720
+
721
+ .fa-xl {
722
+ font-size: 1.5em;
723
+ line-height: 0.0416666682em;
724
+ vertical-align: -0.125em;
725
+ }
726
+
727
+ .fa-2xl {
728
+ font-size: 2em;
729
+ line-height: 0.03125em;
730
+ vertical-align: -0.1875em;
731
+ }
732
+
733
+ .fa-fw {
734
+ text-align: center;
735
+ width: 1.25em;
736
+ }
737
+
738
+ .fa-ul {
739
+ list-style-type: none;
740
+ margin-left: var(--fa-li-margin, 2.5em);
741
+ padding-left: 0;
742
+ }
743
+ .fa-ul > li {
744
+ position: relative;
745
+ }
746
+
747
+ .fa-li {
748
+ left: calc(-1 * var(--fa-li-width, 2em));
749
+ position: absolute;
750
+ text-align: center;
751
+ width: var(--fa-li-width, 2em);
752
+ line-height: inherit;
753
+ }
754
+
755
+ .fa-border {
756
+ border-color: var(--fa-border-color, #eee);
757
+ border-radius: var(--fa-border-radius, 0.1em);
758
+ border-style: var(--fa-border-style, solid);
759
+ border-width: var(--fa-border-width, 0.08em);
760
+ padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
761
+ }
762
+
763
+ .fa-pull-left {
764
+ float: left;
765
+ margin-right: var(--fa-pull-margin, 0.3em);
766
+ }
767
+
768
+ .fa-pull-right {
769
+ float: right;
770
+ margin-left: var(--fa-pull-margin, 0.3em);
771
+ }
772
+
773
+ .fa-beat {
774
+ animation-name: fa-beat;
775
+ animation-delay: var(--fa-animation-delay, 0s);
776
+ animation-direction: var(--fa-animation-direction, normal);
777
+ animation-duration: var(--fa-animation-duration, 1s);
778
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
779
+ animation-timing-function: var(--fa-animation-timing, ease-in-out);
780
+ }
781
+
782
+ .fa-bounce {
783
+ animation-name: fa-bounce;
784
+ animation-delay: var(--fa-animation-delay, 0s);
785
+ animation-direction: var(--fa-animation-direction, normal);
786
+ animation-duration: var(--fa-animation-duration, 1s);
787
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
788
+ animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
789
+ }
790
+
791
+ .fa-fade {
792
+ animation-name: fa-fade;
793
+ animation-delay: var(--fa-animation-delay, 0s);
794
+ animation-direction: var(--fa-animation-direction, normal);
795
+ animation-duration: var(--fa-animation-duration, 1s);
796
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
797
+ animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
798
+ }
799
+
800
+ .fa-beat-fade {
801
+ animation-name: fa-beat-fade;
802
+ animation-delay: var(--fa-animation-delay, 0s);
803
+ animation-direction: var(--fa-animation-direction, normal);
804
+ animation-duration: var(--fa-animation-duration, 1s);
805
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
806
+ animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
807
+ }
808
+
809
+ .fa-flip {
810
+ animation-name: fa-flip;
811
+ animation-delay: var(--fa-animation-delay, 0s);
812
+ animation-direction: var(--fa-animation-direction, normal);
813
+ animation-duration: var(--fa-animation-duration, 1s);
814
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
815
+ animation-timing-function: var(--fa-animation-timing, ease-in-out);
816
+ }
817
+
818
+ .fa-shake {
819
+ animation-name: fa-shake;
820
+ animation-delay: var(--fa-animation-delay, 0s);
821
+ animation-direction: var(--fa-animation-direction, normal);
822
+ animation-duration: var(--fa-animation-duration, 1s);
823
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
824
+ animation-timing-function: var(--fa-animation-timing, linear);
825
+ }
826
+
827
+ .fa-spin {
828
+ animation-name: fa-spin;
829
+ animation-delay: var(--fa-animation-delay, 0s);
830
+ animation-direction: var(--fa-animation-direction, normal);
831
+ animation-duration: var(--fa-animation-duration, 2s);
832
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
833
+ animation-timing-function: var(--fa-animation-timing, linear);
834
+ }
835
+
836
+ .fa-spin-reverse {
837
+ --fa-animation-direction: reverse;
838
+ }
839
+
840
+ .fa-pulse,
841
+ .fa-spin-pulse {
842
+ animation-name: fa-spin;
843
+ animation-direction: var(--fa-animation-direction, normal);
844
+ animation-duration: var(--fa-animation-duration, 1s);
845
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
846
+ animation-timing-function: var(--fa-animation-timing, steps(8));
847
+ }
848
+
849
+ @media (prefers-reduced-motion: reduce) {
850
+ .fa-beat,
851
+ .fa-bounce,
852
+ .fa-fade,
853
+ .fa-beat-fade,
854
+ .fa-flip,
855
+ .fa-pulse,
856
+ .fa-shake,
857
+ .fa-spin,
858
+ .fa-spin-pulse {
859
+ animation-delay: -1ms;
860
+ animation-duration: 1ms;
861
+ animation-iteration-count: 1;
862
+ transition-delay: 0s;
863
+ transition-duration: 0s;
864
+ }
865
+ }
866
+ @keyframes fa-beat {
867
+ 0%, 90% {
868
+ transform: scale(1);
869
+ }
870
+ 45% {
871
+ transform: scale(var(--fa-beat-scale, 1.25));
872
+ }
873
+ }
874
+ @keyframes fa-bounce {
875
+ 0% {
876
+ transform: scale(1, 1) translateY(0);
877
+ }
878
+ 10% {
879
+ transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
880
+ }
881
+ 30% {
882
+ transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
883
+ }
884
+ 50% {
885
+ transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
886
+ }
887
+ 57% {
888
+ transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
889
+ }
890
+ 64% {
891
+ transform: scale(1, 1) translateY(0);
892
+ }
893
+ 100% {
894
+ transform: scale(1, 1) translateY(0);
895
+ }
896
+ }
897
+ @keyframes fa-fade {
898
+ 50% {
899
+ opacity: var(--fa-fade-opacity, 0.4);
900
+ }
901
+ }
902
+ @keyframes fa-beat-fade {
903
+ 0%, 100% {
904
+ opacity: var(--fa-beat-fade-opacity, 0.4);
905
+ transform: scale(1);
906
+ }
907
+ 50% {
908
+ opacity: 1;
909
+ transform: scale(var(--fa-beat-fade-scale, 1.125));
910
+ }
911
+ }
912
+ @keyframes fa-flip {
913
+ 50% {
914
+ transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
915
+ }
916
+ }
917
+ @keyframes fa-shake {
918
+ 0% {
919
+ transform: rotate(-15deg);
920
+ }
921
+ 4% {
922
+ transform: rotate(15deg);
923
+ }
924
+ 8%, 24% {
925
+ transform: rotate(-18deg);
926
+ }
927
+ 12%, 28% {
928
+ transform: rotate(18deg);
929
+ }
930
+ 16% {
931
+ transform: rotate(-22deg);
932
+ }
933
+ 20% {
934
+ transform: rotate(22deg);
935
+ }
936
+ 32% {
937
+ transform: rotate(-12deg);
938
+ }
939
+ 36% {
940
+ transform: rotate(12deg);
941
+ }
942
+ 40%, 100% {
943
+ transform: rotate(0deg);
944
+ }
945
+ }
946
+ @keyframes fa-spin {
947
+ 0% {
948
+ transform: rotate(0deg);
949
+ }
950
+ 100% {
951
+ transform: rotate(360deg);
952
+ }
953
+ }
954
+ .fa-rotate-90 {
955
+ transform: rotate(90deg);
956
+ }
957
+
958
+ .fa-rotate-180 {
959
+ transform: rotate(180deg);
960
+ }
961
+
962
+ .fa-rotate-270 {
963
+ transform: rotate(270deg);
964
+ }
965
+
966
+ .fa-flip-horizontal {
967
+ transform: scale(-1, 1);
968
+ }
969
+
970
+ .fa-flip-vertical {
971
+ transform: scale(1, -1);
972
+ }
973
+
974
+ .fa-flip-both,
975
+ .fa-flip-horizontal.fa-flip-vertical {
976
+ transform: scale(-1, -1);
977
+ }
978
+
979
+ .fa-rotate-by {
980
+ transform: rotate(var(--fa-rotate-angle, 0));
981
+ }
982
+
983
+ .fa-stack {
984
+ display: inline-block;
985
+ vertical-align: middle;
986
+ height: 2em;
987
+ position: relative;
988
+ width: 2.5em;
989
+ }
990
+
991
+ .fa-stack-1x,
992
+ .fa-stack-2x {
993
+ bottom: 0;
994
+ left: 0;
995
+ margin: auto;
996
+ position: absolute;
997
+ right: 0;
998
+ top: 0;
999
+ z-index: var(--fa-stack-z-index, auto);
1000
+ }
1001
+
1002
+ .svg-inline--fa.fa-stack-1x {
1003
+ height: 1em;
1004
+ width: 1.25em;
1005
+ }
1006
+ .svg-inline--fa.fa-stack-2x {
1007
+ height: 2em;
1008
+ width: 2.5em;
1009
+ }
1010
+
1011
+ .fa-inverse {
1012
+ color: var(--fa-inverse, #fff);
1013
+ }
1014
+
1015
+ .sr-only,
1016
+ .fa-sr-only {
1017
+ position: absolute;
1018
+ width: 1px;
1019
+ height: 1px;
1020
+ padding: 0;
1021
+ margin: -1px;
1022
+ overflow: hidden;
1023
+ clip: rect(0, 0, 0, 0);
1024
+ white-space: nowrap;
1025
+ border-width: 0;
1026
+ }
1027
+
1028
+ .sr-only-focusable:not(:focus),
1029
+ .fa-sr-only-focusable:not(:focus) {
1030
+ position: absolute;
1031
+ width: 1px;
1032
+ height: 1px;
1033
+ padding: 0;
1034
+ margin: -1px;
1035
+ overflow: hidden;
1036
+ clip: rect(0, 0, 0, 0);
1037
+ white-space: nowrap;
1038
+ border-width: 0;
1039
+ }
1040
+
1041
+ .svg-inline--fa .fa-primary {
1042
+ fill: var(--fa-primary-color, currentColor);
1043
+ opacity: var(--fa-primary-opacity, 1);
1044
+ }
1045
+
1046
+ .svg-inline--fa .fa-secondary {
1047
+ fill: var(--fa-secondary-color, currentColor);
1048
+ opacity: var(--fa-secondary-opacity, 0.4);
1049
+ }
1050
+
1051
+ .svg-inline--fa.fa-swap-opacity .fa-primary {
1052
+ opacity: var(--fa-secondary-opacity, 0.4);
1053
+ }
1054
+
1055
+ .svg-inline--fa.fa-swap-opacity .fa-secondary {
1056
+ opacity: var(--fa-primary-opacity, 1);
1057
+ }
1058
+
1059
+ .svg-inline--fa mask .fa-primary,
1060
+ .svg-inline--fa mask .fa-secondary {
1061
+ fill: black;
1062
+ }`;
1063
+ function In() {
1064
+ const t = kn, n = wn, e = f.cssPrefix, a = f.replacementClass;
1065
+ let r = je;
1066
+ if (e !== t || a !== n) {
1067
+ const i = new RegExp("\\.".concat(t, "\\-"), "g"), o = new RegExp("\\--".concat(t, "\\-"), "g"), l = new RegExp("\\.".concat(n), "g");
1068
+ r = r.replace(i, ".".concat(e, "-")).replace(o, "--".concat(e, "-")).replace(l, ".".concat(a));
1069
+ }
1070
+ return r;
1071
+ }
1072
+ let $t = !1;
1073
+ function ft() {
1074
+ f.autoAddCss && !$t && (Me(In()), $t = !0);
1075
+ }
1076
+ var Ye = {
1077
+ mixout() {
1078
+ return {
1079
+ dom: {
1080
+ css: In,
1081
+ insertCss: ft
1082
+ }
1083
+ };
1084
+ },
1085
+ hooks() {
1086
+ return {
1087
+ beforeDOMElementCreation() {
1088
+ ft();
1089
+ },
1090
+ beforeI2svg() {
1091
+ ft();
1092
+ }
1093
+ };
1094
+ }
1095
+ };
1096
+ const E = N || {};
1097
+ E[P] || (E[P] = {});
1098
+ E[P].styles || (E[P].styles = {});
1099
+ E[P].hooks || (E[P].hooks = {});
1100
+ E[P].shims || (E[P].shims = []);
1101
+ var w = E[P];
1102
+ const Nn = [], Fn = function() {
1103
+ p.removeEventListener("DOMContentLoaded", Fn), tt = 1, Nn.map((t) => t());
1104
+ };
1105
+ let tt = !1;
1106
+ O && (tt = (p.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(p.readyState), tt || p.addEventListener("DOMContentLoaded", Fn));
1107
+ function Ue(t) {
1108
+ O && (tt ? setTimeout(t, 0) : Nn.push(t));
1109
+ }
1110
+ function K(t) {
1111
+ const {
1112
+ tag: n,
1113
+ attributes: e = {},
1114
+ children: a = []
1115
+ } = t;
1116
+ return typeof t == "string" ? Cn(t) : "<".concat(n, " ").concat(De(e), ">").concat(a.map(K).join(""), "</").concat(n, ">");
1117
+ }
1118
+ function Kt(t, n, e) {
1119
+ if (t && t[n] && t[n][e])
1120
+ return {
1121
+ prefix: n,
1122
+ iconName: e,
1123
+ icon: t[n][e]
1124
+ };
1125
+ }
1126
+ var ct = function(n, e, a, r) {
1127
+ var i = Object.keys(n), o = i.length, l = e, u, c, d;
1128
+ for (a === void 0 ? (u = 1, d = n[i[0]]) : (u = 0, d = a); u < o; u++)
1129
+ c = i[u], d = l(d, n[c], c, n);
1130
+ return d;
1131
+ };
1132
+ function We(t) {
1133
+ const n = [];
1134
+ let e = 0;
1135
+ const a = t.length;
1136
+ for (; e < a; ) {
1137
+ const r = t.charCodeAt(e++);
1138
+ if (r >= 55296 && r <= 56319 && e < a) {
1139
+ const i = t.charCodeAt(e++);
1140
+ (i & 64512) == 56320 ? n.push(((r & 1023) << 10) + (i & 1023) + 65536) : (n.push(r), e--);
1141
+ } else
1142
+ n.push(r);
1143
+ }
1144
+ return n;
1145
+ }
1146
+ function xt(t) {
1147
+ const n = We(t);
1148
+ return n.length === 1 ? n[0].toString(16) : null;
1149
+ }
1150
+ function He(t, n) {
1151
+ const e = t.length;
1152
+ let a = t.charCodeAt(n), r;
1153
+ return a >= 55296 && a <= 56319 && e > n + 1 && (r = t.charCodeAt(n + 1), r >= 56320 && r <= 57343) ? (a - 55296) * 1024 + r - 56320 + 65536 : a;
1154
+ }
1155
+ function qt(t) {
1156
+ return Object.keys(t).reduce((n, e) => {
1157
+ const a = t[e];
1158
+ return !!a.icon ? n[a.iconName] = a.icon : n[e] = a, n;
1159
+ }, {});
1160
+ }
1161
+ function At(t, n) {
1162
+ let e = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
1163
+ const {
1164
+ skipHooks: a = !1
1165
+ } = e, r = qt(n);
1166
+ typeof w.hooks.addPack == "function" && !a ? w.hooks.addPack(t, qt(n)) : w.styles[t] = s(s({}, w.styles[t] || {}), r), t === "fas" && At("fa", n);
1167
+ }
1168
+ const {
1169
+ styles: V,
1170
+ shims: Ge
1171
+ } = w, Tn = Object.keys(Tt), Xe = Tn.reduce((t, n) => (t[n] = Object.keys(Tt[n]), t), {});
1172
+ let Lt = null, _n = {}, Mn = {}, Ln = {}, Dn = {}, Rn = {};
1173
+ function Be(t) {
1174
+ return ~Ne.indexOf(t);
1175
+ }
1176
+ function Ve(t, n) {
1177
+ const e = n.split("-"), a = e[0], r = e.slice(1).join("-");
1178
+ return a === t && r !== "" && !Be(r) ? r : null;
1179
+ }
1180
+ const zn = () => {
1181
+ const t = (a) => ct(V, (r, i, o) => (r[o] = ct(i, a, {}), r), {});
1182
+ _n = t((a, r, i) => (r[3] && (a[r[3]] = i), r[2] && r[2].filter((l) => typeof l == "number").forEach((l) => {
1183
+ a[l.toString(16)] = i;
1184
+ }), a)), Mn = t((a, r, i) => (a[i] = i, r[2] && r[2].filter((l) => typeof l == "string").forEach((l) => {
1185
+ a[l] = i;
1186
+ }), a)), Rn = t((a, r, i) => {
1187
+ const o = r[2];
1188
+ return a[i] = i, o.forEach((l) => {
1189
+ a[l] = i;
1190
+ }), a;
1191
+ });
1192
+ const n = "far" in V || f.autoFetchSvg, e = ct(Ge, (a, r) => {
1193
+ const i = r[0];
1194
+ let o = r[1];
1195
+ const l = r[2];
1196
+ return o === "far" && !n && (o = "fas"), typeof i == "string" && (a.names[i] = {
1197
+ prefix: o,
1198
+ iconName: l
1199
+ }), typeof i == "number" && (a.unicodes[i.toString(16)] = {
1200
+ prefix: o,
1201
+ iconName: l
1202
+ }), a;
1203
+ }, {
1204
+ names: {},
1205
+ unicodes: {}
1206
+ });
1207
+ Ln = e.names, Dn = e.unicodes, Lt = rt(f.styleDefault, {
1208
+ family: f.familyDefault
1209
+ });
1210
+ };
1211
+ _e((t) => {
1212
+ Lt = rt(t.styleDefault, {
1213
+ family: f.familyDefault
1214
+ });
1215
+ });
1216
+ zn();
1217
+ function Dt(t, n) {
1218
+ return (_n[t] || {})[n];
1219
+ }
1220
+ function $e(t, n) {
1221
+ return (Mn[t] || {})[n];
1222
+ }
1223
+ function M(t, n) {
1224
+ return (Rn[t] || {})[n];
1225
+ }
1226
+ function jn(t) {
1227
+ return Ln[t] || {
1228
+ prefix: null,
1229
+ iconName: null
1230
+ };
1231
+ }
1232
+ function Ke(t) {
1233
+ const n = Dn[t], e = Dt("fas", t);
1234
+ return n || (e ? {
1235
+ prefix: "fas",
1236
+ iconName: e
1237
+ } : null) || {
1238
+ prefix: null,
1239
+ iconName: null
1240
+ };
1241
+ }
1242
+ function F() {
1243
+ return Lt;
1244
+ }
1245
+ const Yn = () => ({
1246
+ prefix: null,
1247
+ iconName: null,
1248
+ rest: []
1249
+ });
1250
+ function qe(t) {
1251
+ let n = h;
1252
+ const e = Tn.reduce((a, r) => (a[r] = "".concat(f.cssPrefix, "-").concat(r), a), {});
1253
+ return xn.forEach((a) => {
1254
+ (t.includes(e[a]) || t.some((r) => Xe[a].includes(r))) && (n = a);
1255
+ }), n;
1256
+ }
1257
+ function rt(t) {
1258
+ let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
1259
+ const {
1260
+ family: e = h
1261
+ } = n, a = Pe[e][t];
1262
+ if (e === et && !t)
1263
+ return "fad";
1264
+ const r = Vt[e][t] || Vt[e][a], i = t in w.styles ? t : null;
1265
+ return r || i || null;
1266
+ }
1267
+ function Qe(t) {
1268
+ let n = [], e = null;
1269
+ return t.forEach((a) => {
1270
+ const r = Ve(f.cssPrefix, a);
1271
+ r ? e = r : a && n.push(a);
1272
+ }), {
1273
+ iconName: e,
1274
+ rest: n
1275
+ };
1276
+ }
1277
+ function Qt(t) {
1278
+ return t.sort().filter((n, e, a) => a.indexOf(n) === e);
1279
+ }
1280
+ function it(t) {
1281
+ let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
1282
+ const {
1283
+ skipLookups: e = !1
1284
+ } = n;
1285
+ let a = null;
1286
+ const r = gt.concat(me), i = Qt(t.filter((g) => r.includes(g))), o = Qt(t.filter((g) => !gt.includes(g))), l = i.filter((g) => (a = g, !vn.includes(g))), [u = null] = l, c = qe(i), d = s(s({}, Qe(o)), {}, {
1287
+ prefix: rt(u, {
1288
+ family: c
1289
+ })
1290
+ });
1291
+ return s(s(s({}, d), na({
1292
+ values: t,
1293
+ family: c,
1294
+ styles: V,
1295
+ config: f,
1296
+ canonical: d,
1297
+ givenPrefix: a
1298
+ })), Je(e, a, d));
1299
+ }
1300
+ function Je(t, n, e) {
1301
+ let {
1302
+ prefix: a,
1303
+ iconName: r
1304
+ } = e;
1305
+ if (t || !a || !r)
1306
+ return {
1307
+ prefix: a,
1308
+ iconName: r
1309
+ };
1310
+ const i = n === "fa" ? jn(r) : {}, o = M(a, r);
1311
+ return r = i.iconName || o || r, a = i.prefix || a, a === "far" && !V.far && V.fas && !f.autoFetchSvg && (a = "fas"), {
1312
+ prefix: a,
1313
+ iconName: r
1314
+ };
1315
+ }
1316
+ const Ze = xn.filter((t) => t !== h || t !== et), ta = Object.keys(mt).filter((t) => t !== h).map((t) => Object.keys(mt[t])).flat();
1317
+ function na(t) {
1318
+ const {
1319
+ values: n,
1320
+ family: e,
1321
+ canonical: a,
1322
+ givenPrefix: r = "",
1323
+ styles: i = {},
1324
+ config: o = {}
1325
+ } = t, l = e === et, u = n.includes("fa-duotone") || n.includes("fad"), c = o.familyDefault === "duotone", d = a.prefix === "fad" || a.prefix === "fa-duotone";
1326
+ if (!l && (u || c || d) && (a.prefix = "fad"), (n.includes("fa-brands") || n.includes("fab")) && (a.prefix = "fab"), !a.prefix && Ze.includes(e) && (Object.keys(i).find((m) => ta.includes(m)) || o.autoFetchSvg)) {
1327
+ const m = ie.get(e).defaultShortPrefixId;
1328
+ a.prefix = m, a.iconName = M(a.prefix, a.iconName) || a.iconName;
1329
+ }
1330
+ return (a.prefix === "fa" || r === "fa") && (a.prefix = F() || "fas"), a;
1331
+ }
1332
+ class ea {
1333
+ constructor() {
1334
+ this.definitions = {};
1335
+ }
1336
+ add() {
1337
+ for (var n = arguments.length, e = new Array(n), a = 0; a < n; a++)
1338
+ e[a] = arguments[a];
1339
+ const r = e.reduce(this._pullDefinitions, {});
1340
+ Object.keys(r).forEach((i) => {
1341
+ this.definitions[i] = s(s({}, this.definitions[i] || {}), r[i]), At(i, r[i]);
1342
+ const o = Tt[h][i];
1343
+ o && At(o, r[i]), zn();
1344
+ });
1345
+ }
1346
+ reset() {
1347
+ this.definitions = {};
1348
+ }
1349
+ _pullDefinitions(n, e) {
1350
+ const a = e.prefix && e.iconName && e.icon ? {
1351
+ 0: e
1352
+ } : e;
1353
+ return Object.keys(a).map((r) => {
1354
+ const {
1355
+ prefix: i,
1356
+ iconName: o,
1357
+ icon: l
1358
+ } = a[r], u = l[2];
1359
+ n[i] || (n[i] = {}), u.length > 0 && u.forEach((c) => {
1360
+ typeof c == "string" && (n[i][c] = l);
1361
+ }), n[i][o] = l;
1362
+ }), n;
1363
+ }
1364
+ }
1365
+ let Jt = [], j = {};
1366
+ const Y = {}, aa = Object.keys(Y);
1367
+ function ra(t, n) {
1368
+ let {
1369
+ mixoutsTo: e
1370
+ } = n;
1371
+ return Jt = t, j = {}, Object.keys(Y).forEach((a) => {
1372
+ aa.indexOf(a) === -1 && delete Y[a];
1373
+ }), Jt.forEach((a) => {
1374
+ const r = a.mixout ? a.mixout() : {};
1375
+ if (Object.keys(r).forEach((i) => {
1376
+ typeof r[i] == "function" && (e[i] = r[i]), typeof r[i] == "object" && Object.keys(r[i]).forEach((o) => {
1377
+ e[i] || (e[i] = {}), e[i][o] = r[i][o];
1378
+ });
1379
+ }), a.hooks) {
1380
+ const i = a.hooks();
1381
+ Object.keys(i).forEach((o) => {
1382
+ j[o] || (j[o] = []), j[o].push(i[o]);
1383
+ });
1384
+ }
1385
+ a.provides && a.provides(Y);
1386
+ }), e;
1387
+ }
1388
+ function kt(t, n) {
1389
+ for (var e = arguments.length, a = new Array(e > 2 ? e - 2 : 0), r = 2; r < e; r++)
1390
+ a[r - 2] = arguments[r];
1391
+ return (j[t] || []).forEach((o) => {
1392
+ n = o.apply(null, [n, ...a]);
1393
+ }), n;
1394
+ }
1395
+ function D(t) {
1396
+ for (var n = arguments.length, e = new Array(n > 1 ? n - 1 : 0), a = 1; a < n; a++)
1397
+ e[a - 1] = arguments[a];
1398
+ (j[t] || []).forEach((i) => {
1399
+ i.apply(null, e);
1400
+ });
1401
+ }
1402
+ function T() {
1403
+ const t = arguments[0], n = Array.prototype.slice.call(arguments, 1);
1404
+ return Y[t] ? Y[t].apply(null, n) : void 0;
1405
+ }
1406
+ function wt(t) {
1407
+ t.prefix === "fa" && (t.prefix = "fas");
1408
+ let {
1409
+ iconName: n
1410
+ } = t;
1411
+ const e = t.prefix || F();
1412
+ if (n)
1413
+ return n = M(e, n) || n, Kt(Un.definitions, e, n) || Kt(w.styles, e, n);
1414
+ }
1415
+ const Un = new ea(), ia = () => {
1416
+ f.autoReplaceSvg = !1, f.observeMutations = !1, D("noAuto");
1417
+ }, oa = {
1418
+ i2svg: function() {
1419
+ let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
1420
+ return O ? (D("beforeI2svg", t), T("pseudoElements2svg", t), T("i2svg", t)) : Promise.reject(new Error("Operation requires a DOM of some kind."));
1421
+ },
1422
+ watch: function() {
1423
+ let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
1424
+ const {
1425
+ autoReplaceSvgRoot: n
1426
+ } = t;
1427
+ f.autoReplaceSvg === !1 && (f.autoReplaceSvg = !0), f.observeMutations = !0, Ue(() => {
1428
+ la({
1429
+ autoReplaceSvgRoot: n
1430
+ }), D("watch", t);
1431
+ });
1432
+ }
1433
+ }, sa = {
1434
+ icon: (t) => {
1435
+ if (t === null)
1436
+ return null;
1437
+ if (typeof t == "object" && t.prefix && t.iconName)
1438
+ return {
1439
+ prefix: t.prefix,
1440
+ iconName: M(t.prefix, t.iconName) || t.iconName
1441
+ };
1442
+ if (Array.isArray(t) && t.length === 2) {
1443
+ const n = t[1].indexOf("fa-") === 0 ? t[1].slice(3) : t[1], e = rt(t[0]);
1444
+ return {
1445
+ prefix: e,
1446
+ iconName: M(e, n) || n
1447
+ };
1448
+ }
1449
+ if (typeof t == "string" && (t.indexOf("".concat(f.cssPrefix, "-")) > -1 || t.match(Ee))) {
1450
+ const n = it(t.split(" "), {
1451
+ skipLookups: !0
1452
+ });
1453
+ return {
1454
+ prefix: n.prefix || F(),
1455
+ iconName: M(n.prefix, n.iconName) || n.iconName
1456
+ };
1457
+ }
1458
+ if (typeof t == "string") {
1459
+ const n = F();
1460
+ return {
1461
+ prefix: n,
1462
+ iconName: M(n, t) || t
1463
+ };
1464
+ }
1465
+ }
1466
+ }, v = {
1467
+ noAuto: ia,
1468
+ config: f,
1469
+ dom: oa,
1470
+ parse: sa,
1471
+ library: Un,
1472
+ findIconDefinition: wt,
1473
+ toHtml: K
1474
+ }, la = function() {
1475
+ let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
1476
+ const {
1477
+ autoReplaceSvgRoot: n = p
1478
+ } = t;
1479
+ (Object.keys(w.styles).length > 0 || f.autoFetchSvg) && O && f.autoReplaceSvg && v.dom.i2svg({
1480
+ node: n
1481
+ });
1482
+ };
1483
+ function ot(t, n) {
1484
+ return Object.defineProperty(t, "abstract", {
1485
+ get: n
1486
+ }), Object.defineProperty(t, "html", {
1487
+ get: function() {
1488
+ return t.abstract.map((e) => K(e));
1489
+ }
1490
+ }), Object.defineProperty(t, "node", {
1491
+ get: function() {
1492
+ if (!O) return;
1493
+ const e = p.createElement("div");
1494
+ return e.innerHTML = t.html, e.children;
1495
+ }
1496
+ }), t;
1497
+ }
1498
+ function fa(t) {
1499
+ let {
1500
+ children: n,
1501
+ main: e,
1502
+ mask: a,
1503
+ attributes: r,
1504
+ styles: i,
1505
+ transform: o
1506
+ } = t;
1507
+ if (Mt(o) && e.found && !a.found) {
1508
+ const {
1509
+ width: l,
1510
+ height: u
1511
+ } = e, c = {
1512
+ x: l / u / 2,
1513
+ y: 0.5
1514
+ };
1515
+ r.style = at(s(s({}, i), {}, {
1516
+ "transform-origin": "".concat(c.x + o.x / 16, "em ").concat(c.y + o.y / 16, "em")
1517
+ }));
1518
+ }
1519
+ return [{
1520
+ tag: "svg",
1521
+ attributes: r,
1522
+ children: n
1523
+ }];
1524
+ }
1525
+ function ca(t) {
1526
+ let {
1527
+ prefix: n,
1528
+ iconName: e,
1529
+ children: a,
1530
+ attributes: r,
1531
+ symbol: i
1532
+ } = t;
1533
+ const o = i === !0 ? "".concat(n, "-").concat(f.cssPrefix, "-").concat(e) : i;
1534
+ return [{
1535
+ tag: "svg",
1536
+ attributes: {
1537
+ style: "display: none;"
1538
+ },
1539
+ children: [{
1540
+ tag: "symbol",
1541
+ attributes: s(s({}, r), {}, {
1542
+ id: o
1543
+ }),
1544
+ children: a
1545
+ }]
1546
+ }];
1547
+ }
1548
+ function Rt(t) {
1549
+ const {
1550
+ icons: {
1551
+ main: n,
1552
+ mask: e
1553
+ },
1554
+ prefix: a,
1555
+ iconName: r,
1556
+ transform: i,
1557
+ symbol: o,
1558
+ title: l,
1559
+ maskId: u,
1560
+ titleId: c,
1561
+ extra: d,
1562
+ watchable: g = !1
1563
+ } = t, {
1564
+ width: m,
1565
+ height: b
1566
+ } = e.found ? e : n, C = ce.includes(a), _ = [f.replacementClass, r ? "".concat(f.cssPrefix, "-").concat(r) : ""].filter((z) => d.classes.indexOf(z) === -1).filter((z) => z !== "" || !!z).concat(d.classes).join(" ");
1567
+ let x = {
1568
+ children: [],
1569
+ attributes: s(s({}, d.attributes), {}, {
1570
+ "data-prefix": a,
1571
+ "data-icon": r,
1572
+ class: _,
1573
+ role: d.attributes.role || "img",
1574
+ xmlns: "http://www.w3.org/2000/svg",
1575
+ viewBox: "0 0 ".concat(m, " ").concat(b)
1576
+ })
1577
+ };
1578
+ const S = C && !~d.classes.indexOf("fa-fw") ? {
1579
+ width: "".concat(m / b * 16 * 0.0625, "em")
1580
+ } : {};
1581
+ g && (x.attributes[L] = ""), l && (x.children.push({
1582
+ tag: "title",
1583
+ attributes: {
1584
+ id: x.attributes["aria-labelledby"] || "title-".concat(c || B())
1585
+ },
1586
+ children: [l]
1587
+ }), delete x.attributes.title);
1588
+ const y = s(s({}, x), {}, {
1589
+ prefix: a,
1590
+ iconName: r,
1591
+ main: n,
1592
+ mask: e,
1593
+ maskId: u,
1594
+ transform: i,
1595
+ symbol: o,
1596
+ styles: s(s({}, S), d.styles)
1597
+ }), {
1598
+ children: A,
1599
+ attributes: R
1600
+ } = e.found && n.found ? T("generateAbstractMask", y) || {
1601
+ children: [],
1602
+ attributes: {}
1603
+ } : T("generateAbstractIcon", y) || {
1604
+ children: [],
1605
+ attributes: {}
1606
+ };
1607
+ return y.children = A, y.attributes = R, o ? ca(y) : fa(y);
1608
+ }
1609
+ function Zt(t) {
1610
+ const {
1611
+ content: n,
1612
+ width: e,
1613
+ height: a,
1614
+ transform: r,
1615
+ title: i,
1616
+ extra: o,
1617
+ watchable: l = !1
1618
+ } = t, u = s(s(s({}, o.attributes), i ? {
1619
+ title: i
1620
+ } : {}), {}, {
1621
+ class: o.classes.join(" ")
1622
+ });
1623
+ l && (u[L] = "");
1624
+ const c = s({}, o.styles);
1625
+ Mt(r) && (c.transform = ze({
1626
+ transform: r,
1627
+ startCentered: !0,
1628
+ width: e,
1629
+ height: a
1630
+ }), c["-webkit-transform"] = c.transform);
1631
+ const d = at(c);
1632
+ d.length > 0 && (u.style = d);
1633
+ const g = [];
1634
+ return g.push({
1635
+ tag: "span",
1636
+ attributes: u,
1637
+ children: [n]
1638
+ }), i && g.push({
1639
+ tag: "span",
1640
+ attributes: {
1641
+ class: "sr-only"
1642
+ },
1643
+ children: [i]
1644
+ }), g;
1645
+ }
1646
+ function ua(t) {
1647
+ const {
1648
+ content: n,
1649
+ title: e,
1650
+ extra: a
1651
+ } = t, r = s(s(s({}, a.attributes), e ? {
1652
+ title: e
1653
+ } : {}), {}, {
1654
+ class: a.classes.join(" ")
1655
+ }), i = at(a.styles);
1656
+ i.length > 0 && (r.style = i);
1657
+ const o = [];
1658
+ return o.push({
1659
+ tag: "span",
1660
+ attributes: r,
1661
+ children: [n]
1662
+ }), e && o.push({
1663
+ tag: "span",
1664
+ attributes: {
1665
+ class: "sr-only"
1666
+ },
1667
+ children: [e]
1668
+ }), o;
1669
+ }
1670
+ const {
1671
+ styles: ut
1672
+ } = w;
1673
+ function St(t) {
1674
+ const n = t[0], e = t[1], [a] = t.slice(4);
1675
+ let r = null;
1676
+ return Array.isArray(a) ? r = {
1677
+ tag: "g",
1678
+ attributes: {
1679
+ class: "".concat(f.cssPrefix, "-").concat(lt.GROUP)
1680
+ },
1681
+ children: [{
1682
+ tag: "path",
1683
+ attributes: {
1684
+ class: "".concat(f.cssPrefix, "-").concat(lt.SECONDARY),
1685
+ fill: "currentColor",
1686
+ d: a[0]
1687
+ }
1688
+ }, {
1689
+ tag: "path",
1690
+ attributes: {
1691
+ class: "".concat(f.cssPrefix, "-").concat(lt.PRIMARY),
1692
+ fill: "currentColor",
1693
+ d: a[1]
1694
+ }
1695
+ }]
1696
+ } : r = {
1697
+ tag: "path",
1698
+ attributes: {
1699
+ fill: "currentColor",
1700
+ d: a
1701
+ }
1702
+ }, {
1703
+ found: !0,
1704
+ width: n,
1705
+ height: e,
1706
+ icon: r
1707
+ };
1708
+ }
1709
+ const da = {
1710
+ found: !1,
1711
+ width: 512,
1712
+ height: 512
1713
+ };
1714
+ function ma(t, n) {
1715
+ !Sn && !f.showMissingIcons && t && console.error('Icon with name "'.concat(t, '" and prefix "').concat(n, '" is missing.'));
1716
+ }
1717
+ function Pt(t, n) {
1718
+ let e = n;
1719
+ return n === "fa" && f.styleDefault !== null && (n = F()), new Promise((a, r) => {
1720
+ if (e === "fa") {
1721
+ const i = jn(t) || {};
1722
+ t = i.iconName || t, n = i.prefix || n;
1723
+ }
1724
+ if (t && n && ut[n] && ut[n][t]) {
1725
+ const i = ut[n][t];
1726
+ return a(St(i));
1727
+ }
1728
+ ma(t, n), a(s(s({}, da), {}, {
1729
+ icon: f.showMissingIcons && t ? T("missingIconAbstract") || {} : {}
1730
+ }));
1731
+ });
1732
+ }
1733
+ const tn = () => {
1734
+ }, Et = f.measurePerformance && q && q.mark && q.measure ? q : {
1735
+ mark: tn,
1736
+ measure: tn
1737
+ }, H = 'FA "6.7.2"', ga = (t) => (Et.mark("".concat(H, " ").concat(t, " begins")), () => Wn(t)), Wn = (t) => {
1738
+ Et.mark("".concat(H, " ").concat(t, " ends")), Et.measure("".concat(H, " ").concat(t), "".concat(H, " ").concat(t, " begins"), "".concat(H, " ").concat(t, " ends"));
1739
+ };
1740
+ var zt = {
1741
+ begin: ga,
1742
+ end: Wn
1743
+ };
1744
+ const J = () => {
1745
+ };
1746
+ function nn(t) {
1747
+ return typeof (t.getAttribute ? t.getAttribute(L) : null) == "string";
1748
+ }
1749
+ function pa(t) {
1750
+ const n = t.getAttribute ? t.getAttribute(Nt) : null, e = t.getAttribute ? t.getAttribute(Ft) : null;
1751
+ return n && e;
1752
+ }
1753
+ function ha(t) {
1754
+ return t && t.classList && t.classList.contains && t.classList.contains(f.replacementClass);
1755
+ }
1756
+ function ba() {
1757
+ return f.autoReplaceSvg === !0 ? Z.replace : Z[f.autoReplaceSvg] || Z.replace;
1758
+ }
1759
+ function ya(t) {
1760
+ return p.createElementNS("http://www.w3.org/2000/svg", t);
1761
+ }
1762
+ function va(t) {
1763
+ return p.createElement(t);
1764
+ }
1765
+ function Hn(t) {
1766
+ let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
1767
+ const {
1768
+ ceFn: e = t.tag === "svg" ? ya : va
1769
+ } = n;
1770
+ if (typeof t == "string")
1771
+ return p.createTextNode(t);
1772
+ const a = e(t.tag);
1773
+ return Object.keys(t.attributes || []).forEach(function(i) {
1774
+ a.setAttribute(i, t.attributes[i]);
1775
+ }), (t.children || []).forEach(function(i) {
1776
+ a.appendChild(Hn(i, {
1777
+ ceFn: e
1778
+ }));
1779
+ }), a;
1780
+ }
1781
+ function xa(t) {
1782
+ let n = " ".concat(t.outerHTML, " ");
1783
+ return n = "".concat(n, "Font Awesome fontawesome.com "), n;
1784
+ }
1785
+ const Z = {
1786
+ replace: function(t) {
1787
+ const n = t[0];
1788
+ if (n.parentNode)
1789
+ if (t[1].forEach((e) => {
1790
+ n.parentNode.insertBefore(Hn(e), n);
1791
+ }), n.getAttribute(L) === null && f.keepOriginalSource) {
1792
+ let e = p.createComment(xa(n));
1793
+ n.parentNode.replaceChild(e, n);
1794
+ } else
1795
+ n.remove();
1796
+ },
1797
+ nest: function(t) {
1798
+ const n = t[0], e = t[1];
1799
+ if (~_t(n).indexOf(f.replacementClass))
1800
+ return Z.replace(t);
1801
+ const a = new RegExp("".concat(f.cssPrefix, "-.*"));
1802
+ if (delete e[0].attributes.id, e[0].attributes.class) {
1803
+ const i = e[0].attributes.class.split(" ").reduce((o, l) => (l === f.replacementClass || l.match(a) ? o.toSvg.push(l) : o.toNode.push(l), o), {
1804
+ toNode: [],
1805
+ toSvg: []
1806
+ });
1807
+ e[0].attributes.class = i.toSvg.join(" "), i.toNode.length === 0 ? n.removeAttribute("class") : n.setAttribute("class", i.toNode.join(" "));
1808
+ }
1809
+ const r = e.map((i) => K(i)).join(`
1810
+ `);
1811
+ n.setAttribute(L, ""), n.innerHTML = r;
1812
+ }
1813
+ };
1814
+ function en(t) {
1815
+ t();
1816
+ }
1817
+ function Gn(t, n) {
1818
+ const e = typeof n == "function" ? n : J;
1819
+ if (t.length === 0)
1820
+ e();
1821
+ else {
1822
+ let a = en;
1823
+ f.mutateApproach === we && (a = N.requestAnimationFrame || en), a(() => {
1824
+ const r = ba(), i = zt.begin("mutate");
1825
+ t.map(r), i(), e();
1826
+ });
1827
+ }
1828
+ }
1829
+ let jt = !1;
1830
+ function Xn() {
1831
+ jt = !0;
1832
+ }
1833
+ function Ot() {
1834
+ jt = !1;
1835
+ }
1836
+ let nt = null;
1837
+ function an(t) {
1838
+ if (!Ht || !f.observeMutations)
1839
+ return;
1840
+ const {
1841
+ treeCallback: n = J,
1842
+ nodeCallback: e = J,
1843
+ pseudoElementsCallback: a = J,
1844
+ observeMutationsRoot: r = p
1845
+ } = t;
1846
+ nt = new Ht((i) => {
1847
+ if (jt) return;
1848
+ const o = F();
1849
+ W(i).forEach((l) => {
1850
+ if (l.type === "childList" && l.addedNodes.length > 0 && !nn(l.addedNodes[0]) && (f.searchPseudoElements && a(l.target), n(l.target)), l.type === "attributes" && l.target.parentNode && f.searchPseudoElements && a(l.target.parentNode), l.type === "attributes" && nn(l.target) && ~Ie.indexOf(l.attributeName))
1851
+ if (l.attributeName === "class" && pa(l.target)) {
1852
+ const {
1853
+ prefix: u,
1854
+ iconName: c
1855
+ } = it(_t(l.target));
1856
+ l.target.setAttribute(Nt, u || o), c && l.target.setAttribute(Ft, c);
1857
+ } else ha(l.target) && e(l.target);
1858
+ });
1859
+ }), O && nt.observe(r, {
1860
+ childList: !0,
1861
+ attributes: !0,
1862
+ characterData: !0,
1863
+ subtree: !0
1864
+ });
1865
+ }
1866
+ function Aa() {
1867
+ nt && nt.disconnect();
1868
+ }
1869
+ function ka(t) {
1870
+ const n = t.getAttribute("style");
1871
+ let e = [];
1872
+ return n && (e = n.split(";").reduce((a, r) => {
1873
+ const i = r.split(":"), o = i[0], l = i.slice(1);
1874
+ return o && l.length > 0 && (a[o] = l.join(":").trim()), a;
1875
+ }, {})), e;
1876
+ }
1877
+ function wa(t) {
1878
+ const n = t.getAttribute("data-prefix"), e = t.getAttribute("data-icon"), a = t.innerText !== void 0 ? t.innerText.trim() : "";
1879
+ let r = it(_t(t));
1880
+ return r.prefix || (r.prefix = F()), n && e && (r.prefix = n, r.iconName = e), r.iconName && r.prefix || (r.prefix && a.length > 0 && (r.iconName = $e(r.prefix, t.innerText) || Dt(r.prefix, xt(t.innerText))), !r.iconName && f.autoFetchSvg && t.firstChild && t.firstChild.nodeType === Node.TEXT_NODE && (r.iconName = t.firstChild.data)), r;
1881
+ }
1882
+ function Sa(t) {
1883
+ const n = W(t.attributes).reduce((r, i) => (r.name !== "class" && r.name !== "style" && (r[i.name] = i.value), r), {}), e = t.getAttribute("title"), a = t.getAttribute("data-fa-title-id");
1884
+ return f.autoA11y && (e ? n["aria-labelledby"] = "".concat(f.replacementClass, "-title-").concat(a || B()) : (n["aria-hidden"] = "true", n.focusable = "false")), n;
1885
+ }
1886
+ function Pa() {
1887
+ return {
1888
+ iconName: null,
1889
+ title: null,
1890
+ titleId: null,
1891
+ prefix: null,
1892
+ transform: k,
1893
+ symbol: !1,
1894
+ mask: {
1895
+ iconName: null,
1896
+ prefix: null,
1897
+ rest: []
1898
+ },
1899
+ maskId: null,
1900
+ extra: {
1901
+ classes: [],
1902
+ styles: {},
1903
+ attributes: {}
1904
+ }
1905
+ };
1906
+ }
1907
+ function rn(t) {
1908
+ let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {
1909
+ styleParser: !0
1910
+ };
1911
+ const {
1912
+ iconName: e,
1913
+ prefix: a,
1914
+ rest: r
1915
+ } = wa(t), i = Sa(t), o = kt("parseNodeAttributes", {}, t);
1916
+ let l = n.styleParser ? ka(t) : [];
1917
+ return s({
1918
+ iconName: e,
1919
+ title: t.getAttribute("title"),
1920
+ titleId: t.getAttribute("data-fa-title-id"),
1921
+ prefix: a,
1922
+ transform: k,
1923
+ mask: {
1924
+ iconName: null,
1925
+ prefix: null,
1926
+ rest: []
1927
+ },
1928
+ maskId: null,
1929
+ symbol: !1,
1930
+ extra: {
1931
+ classes: r,
1932
+ styles: l,
1933
+ attributes: i
1934
+ }
1935
+ }, o);
1936
+ }
1937
+ const {
1938
+ styles: Ea
1939
+ } = w;
1940
+ function Bn(t) {
1941
+ const n = f.autoReplaceSvg === "nest" ? rn(t, {
1942
+ styleParser: !1
1943
+ }) : rn(t);
1944
+ return ~n.extra.classes.indexOf(En) ? T("generateLayersText", t, n) : T("generateSvgReplacementMutation", t, n);
1945
+ }
1946
+ function Oa() {
1947
+ return [...se, ...gt];
1948
+ }
1949
+ function on(t) {
1950
+ let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null;
1951
+ if (!O) return Promise.resolve();
1952
+ const e = p.documentElement.classList, a = (d) => e.add("".concat(Bt, "-").concat(d)), r = (d) => e.remove("".concat(Bt, "-").concat(d)), i = f.autoFetchSvg ? Oa() : vn.concat(Object.keys(Ea));
1953
+ i.includes("fa") || i.push("fa");
1954
+ const o = [".".concat(En, ":not([").concat(L, "])")].concat(i.map((d) => ".".concat(d, ":not([").concat(L, "])"))).join(", ");
1955
+ if (o.length === 0)
1956
+ return Promise.resolve();
1957
+ let l = [];
1958
+ try {
1959
+ l = W(t.querySelectorAll(o));
1960
+ } catch {
1961
+ }
1962
+ if (l.length > 0)
1963
+ a("pending"), r("complete");
1964
+ else
1965
+ return Promise.resolve();
1966
+ const u = zt.begin("onTree"), c = l.reduce((d, g) => {
1967
+ try {
1968
+ const m = Bn(g);
1969
+ m && d.push(m);
1970
+ } catch (m) {
1971
+ Sn || m.name === "MissingIcon" && console.error(m);
1972
+ }
1973
+ return d;
1974
+ }, []);
1975
+ return new Promise((d, g) => {
1976
+ Promise.all(c).then((m) => {
1977
+ Gn(m, () => {
1978
+ a("active"), a("complete"), r("pending"), typeof n == "function" && n(), u(), d();
1979
+ });
1980
+ }).catch((m) => {
1981
+ u(), g(m);
1982
+ });
1983
+ });
1984
+ }
1985
+ function Ca(t) {
1986
+ let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null;
1987
+ Bn(t).then((e) => {
1988
+ e && Gn([e], n);
1989
+ });
1990
+ }
1991
+ function Ia(t) {
1992
+ return function(n) {
1993
+ let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
1994
+ const a = (n || {}).icon ? n : wt(n || {});
1995
+ let {
1996
+ mask: r
1997
+ } = e;
1998
+ return r && (r = (r || {}).icon ? r : wt(r || {})), t(a, s(s({}, e), {}, {
1999
+ mask: r
2000
+ }));
2001
+ };
2002
+ }
2003
+ const Na = function(t) {
2004
+ let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
2005
+ const {
2006
+ transform: e = k,
2007
+ symbol: a = !1,
2008
+ mask: r = null,
2009
+ maskId: i = null,
2010
+ title: o = null,
2011
+ titleId: l = null,
2012
+ classes: u = [],
2013
+ attributes: c = {},
2014
+ styles: d = {}
2015
+ } = n;
2016
+ if (!t) return;
2017
+ const {
2018
+ prefix: g,
2019
+ iconName: m,
2020
+ icon: b
2021
+ } = t;
2022
+ return ot(s({
2023
+ type: "icon"
2024
+ }, t), () => (D("beforeDOMElementCreation", {
2025
+ iconDefinition: t,
2026
+ params: n
2027
+ }), f.autoA11y && (o ? c["aria-labelledby"] = "".concat(f.replacementClass, "-title-").concat(l || B()) : (c["aria-hidden"] = "true", c.focusable = "false")), Rt({
2028
+ icons: {
2029
+ main: St(b),
2030
+ mask: r ? St(r.icon) : {
2031
+ found: !1,
2032
+ width: null,
2033
+ height: null,
2034
+ icon: {}
2035
+ }
2036
+ },
2037
+ prefix: g,
2038
+ iconName: m,
2039
+ transform: s(s({}, k), e),
2040
+ symbol: a,
2041
+ title: o,
2042
+ maskId: i,
2043
+ titleId: l,
2044
+ extra: {
2045
+ attributes: c,
2046
+ styles: d,
2047
+ classes: u
2048
+ }
2049
+ })));
2050
+ };
2051
+ var Fa = {
2052
+ mixout() {
2053
+ return {
2054
+ icon: Ia(Na)
2055
+ };
2056
+ },
2057
+ hooks() {
2058
+ return {
2059
+ mutationObserverCallbacks(t) {
2060
+ return t.treeCallback = on, t.nodeCallback = Ca, t;
2061
+ }
2062
+ };
2063
+ },
2064
+ provides(t) {
2065
+ t.i2svg = function(n) {
2066
+ const {
2067
+ node: e = p,
2068
+ callback: a = () => {
2069
+ }
2070
+ } = n;
2071
+ return on(e, a);
2072
+ }, t.generateSvgReplacementMutation = function(n, e) {
2073
+ const {
2074
+ iconName: a,
2075
+ title: r,
2076
+ titleId: i,
2077
+ prefix: o,
2078
+ transform: l,
2079
+ symbol: u,
2080
+ mask: c,
2081
+ maskId: d,
2082
+ extra: g
2083
+ } = e;
2084
+ return new Promise((m, b) => {
2085
+ Promise.all([Pt(a, o), c.iconName ? Pt(c.iconName, c.prefix) : Promise.resolve({
2086
+ found: !1,
2087
+ width: 512,
2088
+ height: 512,
2089
+ icon: {}
2090
+ })]).then((C) => {
2091
+ let [_, x] = C;
2092
+ m([n, Rt({
2093
+ icons: {
2094
+ main: _,
2095
+ mask: x
2096
+ },
2097
+ prefix: o,
2098
+ iconName: a,
2099
+ transform: l,
2100
+ symbol: u,
2101
+ maskId: d,
2102
+ title: r,
2103
+ titleId: i,
2104
+ extra: g,
2105
+ watchable: !0
2106
+ })]);
2107
+ }).catch(b);
2108
+ });
2109
+ }, t.generateAbstractIcon = function(n) {
2110
+ let {
2111
+ children: e,
2112
+ attributes: a,
2113
+ main: r,
2114
+ transform: i,
2115
+ styles: o
2116
+ } = n;
2117
+ const l = at(o);
2118
+ l.length > 0 && (a.style = l);
2119
+ let u;
2120
+ return Mt(i) && (u = T("generateAbstractTransformGrouping", {
2121
+ main: r,
2122
+ transform: i,
2123
+ containerWidth: r.width,
2124
+ iconWidth: r.width
2125
+ })), e.push(u || r.icon), {
2126
+ children: e,
2127
+ attributes: a
2128
+ };
2129
+ };
2130
+ }
2131
+ }, Ta = {
2132
+ mixout() {
2133
+ return {
2134
+ layer(t) {
2135
+ let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
2136
+ const {
2137
+ classes: e = []
2138
+ } = n;
2139
+ return ot({
2140
+ type: "layer"
2141
+ }, () => {
2142
+ D("beforeDOMElementCreation", {
2143
+ assembler: t,
2144
+ params: n
2145
+ });
2146
+ let a = [];
2147
+ return t((r) => {
2148
+ Array.isArray(r) ? r.map((i) => {
2149
+ a = a.concat(i.abstract);
2150
+ }) : a = a.concat(r.abstract);
2151
+ }), [{
2152
+ tag: "span",
2153
+ attributes: {
2154
+ class: ["".concat(f.cssPrefix, "-layers"), ...e].join(" ")
2155
+ },
2156
+ children: a
2157
+ }];
2158
+ });
2159
+ }
2160
+ };
2161
+ }
2162
+ }, _a = {
2163
+ mixout() {
2164
+ return {
2165
+ counter(t) {
2166
+ let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
2167
+ const {
2168
+ title: e = null,
2169
+ classes: a = [],
2170
+ attributes: r = {},
2171
+ styles: i = {}
2172
+ } = n;
2173
+ return ot({
2174
+ type: "counter",
2175
+ content: t
2176
+ }, () => (D("beforeDOMElementCreation", {
2177
+ content: t,
2178
+ params: n
2179
+ }), ua({
2180
+ content: t.toString(),
2181
+ title: e,
2182
+ extra: {
2183
+ attributes: r,
2184
+ styles: i,
2185
+ classes: ["".concat(f.cssPrefix, "-layers-counter"), ...a]
2186
+ }
2187
+ })));
2188
+ }
2189
+ };
2190
+ }
2191
+ }, Ma = {
2192
+ mixout() {
2193
+ return {
2194
+ text(t) {
2195
+ let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
2196
+ const {
2197
+ transform: e = k,
2198
+ title: a = null,
2199
+ classes: r = [],
2200
+ attributes: i = {},
2201
+ styles: o = {}
2202
+ } = n;
2203
+ return ot({
2204
+ type: "text",
2205
+ content: t
2206
+ }, () => (D("beforeDOMElementCreation", {
2207
+ content: t,
2208
+ params: n
2209
+ }), Zt({
2210
+ content: t,
2211
+ transform: s(s({}, k), e),
2212
+ title: a,
2213
+ extra: {
2214
+ attributes: i,
2215
+ styles: o,
2216
+ classes: ["".concat(f.cssPrefix, "-layers-text"), ...r]
2217
+ }
2218
+ })));
2219
+ }
2220
+ };
2221
+ },
2222
+ provides(t) {
2223
+ t.generateLayersText = function(n, e) {
2224
+ const {
2225
+ title: a,
2226
+ transform: r,
2227
+ extra: i
2228
+ } = e;
2229
+ let o = null, l = null;
2230
+ if (bn) {
2231
+ const u = parseInt(getComputedStyle(n).fontSize, 10), c = n.getBoundingClientRect();
2232
+ o = c.width / u, l = c.height / u;
2233
+ }
2234
+ return f.autoA11y && !a && (i.attributes["aria-hidden"] = "true"), Promise.resolve([n, Zt({
2235
+ content: n.innerHTML,
2236
+ width: o,
2237
+ height: l,
2238
+ transform: r,
2239
+ title: a,
2240
+ extra: i,
2241
+ watchable: !0
2242
+ })]);
2243
+ };
2244
+ }
2245
+ };
2246
+ const La = new RegExp('"', "ug"), sn = [1105920, 1112319], ln = s(s(s(s({}, {
2247
+ FontAwesome: {
2248
+ normal: "fas",
2249
+ 400: "fas"
2250
+ }
2251
+ }), re), Ae), ge), Ct = Object.keys(ln).reduce((t, n) => (t[n.toLowerCase()] = ln[n], t), {}), Da = Object.keys(Ct).reduce((t, n) => {
2252
+ const e = Ct[n];
2253
+ return t[n] = e[900] || [...Object.entries(e)][0][1], t;
2254
+ }, {});
2255
+ function Ra(t) {
2256
+ const n = t.replace(La, ""), e = He(n, 0), a = e >= sn[0] && e <= sn[1], r = n.length === 2 ? n[0] === n[1] : !1;
2257
+ return {
2258
+ value: xt(r ? n[0] : n),
2259
+ isSecondary: a || r
2260
+ };
2261
+ }
2262
+ function za(t, n) {
2263
+ const e = t.replace(/^['"]|['"]$/g, "").toLowerCase(), a = parseInt(n), r = isNaN(a) ? "normal" : a;
2264
+ return (Ct[e] || {})[r] || Da[e];
2265
+ }
2266
+ function fn(t, n) {
2267
+ const e = "".concat(ke).concat(n.replace(":", "-"));
2268
+ return new Promise((a, r) => {
2269
+ if (t.getAttribute(e) !== null)
2270
+ return a();
2271
+ const o = W(t.children).filter((m) => m.getAttribute(ht) === n)[0], l = N.getComputedStyle(t, n), u = l.getPropertyValue("font-family"), c = u.match(Oe), d = l.getPropertyValue("font-weight"), g = l.getPropertyValue("content");
2272
+ if (o && !c)
2273
+ return t.removeChild(o), a();
2274
+ if (c && g !== "none" && g !== "") {
2275
+ const m = l.getPropertyValue("content");
2276
+ let b = za(u, d);
2277
+ const {
2278
+ value: C,
2279
+ isSecondary: _
2280
+ } = Ra(m), x = c[0].startsWith("FontAwesome");
2281
+ let S = Dt(b, C), y = S;
2282
+ if (x) {
2283
+ const A = Ke(C);
2284
+ A.iconName && A.prefix && (S = A.iconName, b = A.prefix);
2285
+ }
2286
+ if (S && !_ && (!o || o.getAttribute(Nt) !== b || o.getAttribute(Ft) !== y)) {
2287
+ t.setAttribute(e, y), o && t.removeChild(o);
2288
+ const A = Pa(), {
2289
+ extra: R
2290
+ } = A;
2291
+ R.attributes[ht] = n, Pt(S, b).then((z) => {
2292
+ const Vn = Rt(s(s({}, A), {}, {
2293
+ icons: {
2294
+ main: z,
2295
+ mask: Yn()
2296
+ },
2297
+ prefix: b,
2298
+ iconName: y,
2299
+ extra: R,
2300
+ watchable: !0
2301
+ })), st = p.createElementNS("http://www.w3.org/2000/svg", "svg");
2302
+ n === "::before" ? t.insertBefore(st, t.firstChild) : t.appendChild(st), st.outerHTML = Vn.map(($n) => K($n)).join(`
2303
+ `), t.removeAttribute(e), a();
2304
+ }).catch(r);
2305
+ } else
2306
+ a();
2307
+ } else
2308
+ a();
2309
+ });
2310
+ }
2311
+ function ja(t) {
2312
+ return Promise.all([fn(t, "::before"), fn(t, "::after")]);
2313
+ }
2314
+ function Ya(t) {
2315
+ return t.parentNode !== document.head && !~Se.indexOf(t.tagName.toUpperCase()) && !t.getAttribute(ht) && (!t.parentNode || t.parentNode.tagName !== "svg");
2316
+ }
2317
+ function cn(t) {
2318
+ if (O)
2319
+ return new Promise((n, e) => {
2320
+ const a = W(t.querySelectorAll("*")).filter(Ya).map(ja), r = zt.begin("searchPseudoElements");
2321
+ Xn(), Promise.all(a).then(() => {
2322
+ r(), Ot(), n();
2323
+ }).catch(() => {
2324
+ r(), Ot(), e();
2325
+ });
2326
+ });
2327
+ }
2328
+ var Ua = {
2329
+ hooks() {
2330
+ return {
2331
+ mutationObserverCallbacks(t) {
2332
+ return t.pseudoElementsCallback = cn, t;
2333
+ }
2334
+ };
2335
+ },
2336
+ provides(t) {
2337
+ t.pseudoElements2svg = function(n) {
2338
+ const {
2339
+ node: e = p
2340
+ } = n;
2341
+ f.searchPseudoElements && cn(e);
2342
+ };
2343
+ }
2344
+ };
2345
+ let un = !1;
2346
+ var Wa = {
2347
+ mixout() {
2348
+ return {
2349
+ dom: {
2350
+ unwatch() {
2351
+ Xn(), un = !0;
2352
+ }
2353
+ }
2354
+ };
2355
+ },
2356
+ hooks() {
2357
+ return {
2358
+ bootstrap() {
2359
+ an(kt("mutationObserverCallbacks", {}));
2360
+ },
2361
+ noAuto() {
2362
+ Aa();
2363
+ },
2364
+ watch(t) {
2365
+ const {
2366
+ observeMutationsRoot: n
2367
+ } = t;
2368
+ un ? Ot() : an(kt("mutationObserverCallbacks", {
2369
+ observeMutationsRoot: n
2370
+ }));
2371
+ }
2372
+ };
2373
+ }
2374
+ };
2375
+ const dn = (t) => {
2376
+ let n = {
2377
+ size: 16,
2378
+ x: 0,
2379
+ y: 0,
2380
+ flipX: !1,
2381
+ flipY: !1,
2382
+ rotate: 0
2383
+ };
2384
+ return t.toLowerCase().split(" ").reduce((e, a) => {
2385
+ const r = a.toLowerCase().split("-"), i = r[0];
2386
+ let o = r.slice(1).join("-");
2387
+ if (i && o === "h")
2388
+ return e.flipX = !0, e;
2389
+ if (i && o === "v")
2390
+ return e.flipY = !0, e;
2391
+ if (o = parseFloat(o), isNaN(o))
2392
+ return e;
2393
+ switch (i) {
2394
+ case "grow":
2395
+ e.size = e.size + o;
2396
+ break;
2397
+ case "shrink":
2398
+ e.size = e.size - o;
2399
+ break;
2400
+ case "left":
2401
+ e.x = e.x - o;
2402
+ break;
2403
+ case "right":
2404
+ e.x = e.x + o;
2405
+ break;
2406
+ case "up":
2407
+ e.y = e.y - o;
2408
+ break;
2409
+ case "down":
2410
+ e.y = e.y + o;
2411
+ break;
2412
+ case "rotate":
2413
+ e.rotate = e.rotate + o;
2414
+ break;
2415
+ }
2416
+ return e;
2417
+ }, n);
2418
+ };
2419
+ var Ha = {
2420
+ mixout() {
2421
+ return {
2422
+ parse: {
2423
+ transform: (t) => dn(t)
2424
+ }
2425
+ };
2426
+ },
2427
+ hooks() {
2428
+ return {
2429
+ parseNodeAttributes(t, n) {
2430
+ const e = n.getAttribute("data-fa-transform");
2431
+ return e && (t.transform = dn(e)), t;
2432
+ }
2433
+ };
2434
+ },
2435
+ provides(t) {
2436
+ t.generateAbstractTransformGrouping = function(n) {
2437
+ let {
2438
+ main: e,
2439
+ transform: a,
2440
+ containerWidth: r,
2441
+ iconWidth: i
2442
+ } = n;
2443
+ const o = {
2444
+ transform: "translate(".concat(r / 2, " 256)")
2445
+ }, l = "translate(".concat(a.x * 32, ", ").concat(a.y * 32, ") "), u = "scale(".concat(a.size / 16 * (a.flipX ? -1 : 1), ", ").concat(a.size / 16 * (a.flipY ? -1 : 1), ") "), c = "rotate(".concat(a.rotate, " 0 0)"), d = {
2446
+ transform: "".concat(l, " ").concat(u, " ").concat(c)
2447
+ }, g = {
2448
+ transform: "translate(".concat(i / 2 * -1, " -256)")
2449
+ }, m = {
2450
+ outer: o,
2451
+ inner: d,
2452
+ path: g
2453
+ };
2454
+ return {
2455
+ tag: "g",
2456
+ attributes: s({}, m.outer),
2457
+ children: [{
2458
+ tag: "g",
2459
+ attributes: s({}, m.inner),
2460
+ children: [{
2461
+ tag: e.icon.tag,
2462
+ children: e.icon.children,
2463
+ attributes: s(s({}, e.icon.attributes), m.path)
2464
+ }]
2465
+ }]
2466
+ };
2467
+ };
2468
+ }
2469
+ };
2470
+ const dt = {
2471
+ x: 0,
2472
+ y: 0,
2473
+ width: "100%",
2474
+ height: "100%"
2475
+ };
2476
+ function mn(t) {
2477
+ let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !0;
2478
+ return t.attributes && (t.attributes.fill || n) && (t.attributes.fill = "black"), t;
2479
+ }
2480
+ function Ga(t) {
2481
+ return t.tag === "g" ? t.children : [t];
2482
+ }
2483
+ var Xa = {
2484
+ hooks() {
2485
+ return {
2486
+ parseNodeAttributes(t, n) {
2487
+ const e = n.getAttribute("data-fa-mask"), a = e ? it(e.split(" ").map((r) => r.trim())) : Yn();
2488
+ return a.prefix || (a.prefix = F()), t.mask = a, t.maskId = n.getAttribute("data-fa-mask-id"), t;
2489
+ }
2490
+ };
2491
+ },
2492
+ provides(t) {
2493
+ t.generateAbstractMask = function(n) {
2494
+ let {
2495
+ children: e,
2496
+ attributes: a,
2497
+ main: r,
2498
+ mask: i,
2499
+ maskId: o,
2500
+ transform: l
2501
+ } = n;
2502
+ const {
2503
+ width: u,
2504
+ icon: c
2505
+ } = r, {
2506
+ width: d,
2507
+ icon: g
2508
+ } = i, m = Re({
2509
+ transform: l,
2510
+ containerWidth: d,
2511
+ iconWidth: u
2512
+ }), b = {
2513
+ tag: "rect",
2514
+ attributes: s(s({}, dt), {}, {
2515
+ fill: "white"
2516
+ })
2517
+ }, C = c.children ? {
2518
+ children: c.children.map(mn)
2519
+ } : {}, _ = {
2520
+ tag: "g",
2521
+ attributes: s({}, m.inner),
2522
+ children: [mn(s({
2523
+ tag: c.tag,
2524
+ attributes: s(s({}, c.attributes), m.path)
2525
+ }, C))]
2526
+ }, x = {
2527
+ tag: "g",
2528
+ attributes: s({}, m.outer),
2529
+ children: [_]
2530
+ }, S = "mask-".concat(o || B()), y = "clip-".concat(o || B()), A = {
2531
+ tag: "mask",
2532
+ attributes: s(s({}, dt), {}, {
2533
+ id: S,
2534
+ maskUnits: "userSpaceOnUse",
2535
+ maskContentUnits: "userSpaceOnUse"
2536
+ }),
2537
+ children: [b, x]
2538
+ }, R = {
2539
+ tag: "defs",
2540
+ children: [{
2541
+ tag: "clipPath",
2542
+ attributes: {
2543
+ id: y
2544
+ },
2545
+ children: Ga(g)
2546
+ }, A]
2547
+ };
2548
+ return e.push(R, {
2549
+ tag: "rect",
2550
+ attributes: s({
2551
+ fill: "currentColor",
2552
+ "clip-path": "url(#".concat(y, ")"),
2553
+ mask: "url(#".concat(S, ")")
2554
+ }, dt)
2555
+ }), {
2556
+ children: e,
2557
+ attributes: a
2558
+ };
2559
+ };
2560
+ }
2561
+ }, Ba = {
2562
+ provides(t) {
2563
+ let n = !1;
2564
+ N.matchMedia && (n = N.matchMedia("(prefers-reduced-motion: reduce)").matches), t.missingIconAbstract = function() {
2565
+ const e = [], a = {
2566
+ fill: "currentColor"
2567
+ }, r = {
2568
+ attributeType: "XML",
2569
+ repeatCount: "indefinite",
2570
+ dur: "2s"
2571
+ };
2572
+ e.push({
2573
+ tag: "path",
2574
+ attributes: s(s({}, a), {}, {
2575
+ d: "M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"
2576
+ })
2577
+ });
2578
+ const i = s(s({}, r), {}, {
2579
+ attributeName: "opacity"
2580
+ }), o = {
2581
+ tag: "circle",
2582
+ attributes: s(s({}, a), {}, {
2583
+ cx: "256",
2584
+ cy: "364",
2585
+ r: "28"
2586
+ }),
2587
+ children: []
2588
+ };
2589
+ return n || o.children.push({
2590
+ tag: "animate",
2591
+ attributes: s(s({}, r), {}, {
2592
+ attributeName: "r",
2593
+ values: "28;14;28;28;14;28;"
2594
+ })
2595
+ }, {
2596
+ tag: "animate",
2597
+ attributes: s(s({}, i), {}, {
2598
+ values: "1;0;1;1;0;1;"
2599
+ })
2600
+ }), e.push(o), e.push({
2601
+ tag: "path",
2602
+ attributes: s(s({}, a), {}, {
2603
+ opacity: "1",
2604
+ d: "M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"
2605
+ }),
2606
+ children: n ? [] : [{
2607
+ tag: "animate",
2608
+ attributes: s(s({}, i), {}, {
2609
+ values: "1;0;0;0;0;1;"
2610
+ })
2611
+ }]
2612
+ }), n || e.push({
2613
+ tag: "path",
2614
+ attributes: s(s({}, a), {}, {
2615
+ opacity: "0",
2616
+ d: "M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"
2617
+ }),
2618
+ children: [{
2619
+ tag: "animate",
2620
+ attributes: s(s({}, i), {}, {
2621
+ values: "0;0;1;1;0;0;"
2622
+ })
2623
+ }]
2624
+ }), {
2625
+ tag: "g",
2626
+ attributes: {
2627
+ class: "missing"
2628
+ },
2629
+ children: e
2630
+ };
2631
+ };
2632
+ }
2633
+ }, Va = {
2634
+ hooks() {
2635
+ return {
2636
+ parseNodeAttributes(t, n) {
2637
+ const e = n.getAttribute("data-fa-symbol"), a = e === null ? !1 : e === "" ? !0 : e;
2638
+ return t.symbol = a, t;
2639
+ }
2640
+ };
2641
+ }
2642
+ }, $a = [Ye, Fa, Ta, _a, Ma, Ua, Wa, Ha, Xa, Ba, Va];
2643
+ ra($a, {
2644
+ mixoutsTo: v
2645
+ });
2646
+ v.noAuto;
2647
+ v.config;
2648
+ v.library;
2649
+ v.dom;
2650
+ const Ka = v.parse;
2651
+ v.findIconDefinition;
2652
+ v.toHtml;
2653
+ const qa = v.icon;
2654
+ v.layer;
2655
+ v.text;
2656
+ v.counter;
2657
+ export {
2658
+ v as api,
2659
+ qa as icon,
2660
+ Ka as parse
2661
+ };