diff --git a/agentic_security/static/inter.css b/agentic_security/static/inter.css new file mode 100644 index 0000000..6668d89 --- /dev/null +++ b/agentic_security/static/inter.css @@ -0,0 +1,21 @@ +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); +} +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 600; + font-display: swap; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); +} +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf) format('truetype'); +} diff --git a/agentic_security/static/lucide.js b/agentic_security/static/lucide.js new file mode 100644 index 0000000..7aabb32 --- /dev/null +++ b/agentic_security/static/lucide.js @@ -0,0 +1,16688 @@ +/** + * @license lucide v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */ + +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.lucide = {})); +})(this, (function (exports) { 'use strict'; + + const createElement = ([tag, attrs, children]) => { + const element = document.createElementNS("http://www.w3.org/2000/svg", tag); + Object.keys(attrs).forEach((name) => { + element.setAttribute(name, String(attrs[name])); + }); + if (children?.length) { + children.forEach((child) => { + const childElement = createElement(child); + element.appendChild(childElement); + }); + } + return element; + }; + + const defaultAttributes = { + xmlns: "http://www.w3.org/2000/svg", + width: 24, + height: 24, + viewBox: "0 0 24 24", + fill: "none", + stroke: "currentColor", + "stroke-width": 2, + "stroke-linecap": "round", + "stroke-linejoin": "round" + }; + + const getAttrs = (element) => Array.from(element.attributes).reduce((attrs, attr) => { + attrs[attr.name] = attr.value; + return attrs; + }, {}); + const getClassNames = (attrs) => { + if (typeof attrs === "string") + return attrs; + if (!attrs || !attrs.class) + return ""; + if (attrs.class && typeof attrs.class === "string") { + return attrs.class.split(" "); + } + if (attrs.class && Array.isArray(attrs.class)) { + return attrs.class; + } + return ""; + }; + const combineClassNames = (arrayOfClassnames) => { + const classNameArray = arrayOfClassnames.flatMap(getClassNames); + return classNameArray.map((classItem) => classItem.trim()).filter(Boolean).filter((value, index, self) => self.indexOf(value) === index).join(" "); + }; + const toPascalCase = (string) => string.replace(/(\w)(\w*)(_|-|\s*)/g, (g0, g1, g2) => g1.toUpperCase() + g2.toLowerCase()); + const replaceElement = (element, { nameAttr, icons, attrs }) => { + const iconName = element.getAttribute(nameAttr); + if (iconName == null) + return; + const ComponentName = toPascalCase(iconName); + const iconNode = icons[ComponentName]; + if (!iconNode) { + return console.warn( + `${element.outerHTML} icon name was not found in the provided icons object.` + ); + } + const elementAttrs = getAttrs(element); + const iconAttrs = { + ...defaultAttributes, + "data-lucide": iconName, + ...attrs, + ...elementAttrs + }; + const classNames = combineClassNames(["lucide", `lucide-${iconName}`, elementAttrs, attrs]); + if (classNames) { + Object.assign(iconAttrs, { + class: classNames + }); + } + const svgElement = createElement(["svg", iconAttrs, iconNode]); + return element.parentNode?.replaceChild(svgElement, element); + }; + + const AArrowDown = [ + ["path", { d: "M3.5 13h6" }], + ["path", { d: "m2 16 4.5-9 4.5 9" }], + ["path", { d: "M18 7v9" }], + ["path", { d: "m14 12 4 4 4-4" }] + ]; + + const AArrowUp = [ + ["path", { d: "M3.5 13h6" }], + ["path", { d: "m2 16 4.5-9 4.5 9" }], + ["path", { d: "M18 16V7" }], + ["path", { d: "m14 11 4-4 4 4" }] + ]; + + const ALargeSmall = [ + ["path", { d: "M21 14h-5" }], + ["path", { d: "M16 16v-3.5a2.5 2.5 0 0 1 5 0V16" }], + ["path", { d: "M4.5 13h6" }], + ["path", { d: "m3 16 4.5-9 4.5 9" }] + ]; + + const Accessibility = [ + ["circle", { cx: "16", cy: "4", r: "1" }], + ["path", { d: "m18 19 1-7-6 1" }], + ["path", { d: "m5 8 3-3 5.5 3-2.36 3.5" }], + ["path", { d: "M4.24 14.5a5 5 0 0 0 6.88 6" }], + ["path", { d: "M13.76 17.5a5 5 0 0 0-6.88-6" }] + ]; + + const Activity = [ + [ + "path", + { + d: "M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2" + } + ] + ]; + + const AirVent = [ + ["path", { d: "M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M6 8h12" }], + ["path", { d: "M18.3 17.7a2.5 2.5 0 0 1-3.16 3.83 2.53 2.53 0 0 1-1.14-2V12" }], + ["path", { d: "M6.6 15.6A2 2 0 1 0 10 17v-5" }] + ]; + + const Airplay = [ + ["path", { d: "M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1" }], + ["path", { d: "m12 15 5 6H7Z" }] + ]; + + const AlarmClockCheck = [ + ["circle", { cx: "12", cy: "13", r: "8" }], + ["path", { d: "M5 3 2 6" }], + ["path", { d: "m22 6-3-3" }], + ["path", { d: "M6.38 18.7 4 21" }], + ["path", { d: "M17.64 18.67 20 21" }], + ["path", { d: "m9 13 2 2 4-4" }] + ]; + + const AlarmClockMinus = [ + ["circle", { cx: "12", cy: "13", r: "8" }], + ["path", { d: "M5 3 2 6" }], + ["path", { d: "m22 6-3-3" }], + ["path", { d: "M6.38 18.7 4 21" }], + ["path", { d: "M17.64 18.67 20 21" }], + ["path", { d: "M9 13h6" }] + ]; + + const AlarmClockOff = [ + ["path", { d: "M6.87 6.87a8 8 0 1 0 11.26 11.26" }], + ["path", { d: "M19.9 14.25a8 8 0 0 0-9.15-9.15" }], + ["path", { d: "m22 6-3-3" }], + ["path", { d: "M6.26 18.67 4 21" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M4 4 2 6" }] + ]; + + const AlarmClockPlus = [ + ["circle", { cx: "12", cy: "13", r: "8" }], + ["path", { d: "M5 3 2 6" }], + ["path", { d: "m22 6-3-3" }], + ["path", { d: "M6.38 18.7 4 21" }], + ["path", { d: "M17.64 18.67 20 21" }], + ["path", { d: "M12 10v6" }], + ["path", { d: "M9 13h6" }] + ]; + + const AlarmClock = [ + ["circle", { cx: "12", cy: "13", r: "8" }], + ["path", { d: "M12 9v4l2 2" }], + ["path", { d: "M5 3 2 6" }], + ["path", { d: "m22 6-3-3" }], + ["path", { d: "M6.38 18.7 4 21" }], + ["path", { d: "M17.64 18.67 20 21" }] + ]; + + const AlarmSmoke = [ + ["path", { d: "M11 21c0-2.5 2-2.5 2-5" }], + ["path", { d: "M16 21c0-2.5 2-2.5 2-5" }], + ["path", { d: "m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8" }], + ["path", { d: "M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z" }], + ["path", { d: "M6 21c0-2.5 2-2.5 2-5" }] + ]; + + const Album = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }], + ["polyline", { points: "11 3 11 11 14 8 17 11 17 3" }] + ]; + + const AlignCenterHorizontal = [ + ["path", { d: "M2 12h20" }], + ["path", { d: "M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4" }], + ["path", { d: "M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4" }], + ["path", { d: "M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1" }], + ["path", { d: "M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1" }] + ]; + + const AlignCenterVertical = [ + ["path", { d: "M12 2v20" }], + ["path", { d: "M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4" }], + ["path", { d: "M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4" }], + ["path", { d: "M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1" }], + ["path", { d: "M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1" }] + ]; + + const AlignCenter = [ + ["path", { d: "M17 12H7" }], + ["path", { d: "M19 18H5" }], + ["path", { d: "M21 6H3" }] + ]; + + const AlignEndHorizontal = [ + ["rect", { width: "6", height: "16", x: "4", y: "2", rx: "2" }], + ["rect", { width: "6", height: "9", x: "14", y: "9", rx: "2" }], + ["path", { d: "M22 22H2" }] + ]; + + const AlignEndVertical = [ + ["rect", { width: "16", height: "6", x: "2", y: "4", rx: "2" }], + ["rect", { width: "9", height: "6", x: "9", y: "14", rx: "2" }], + ["path", { d: "M22 22V2" }] + ]; + + const AlignHorizontalDistributeCenter = [ + ["rect", { width: "6", height: "14", x: "4", y: "5", rx: "2" }], + ["rect", { width: "6", height: "10", x: "14", y: "7", rx: "2" }], + ["path", { d: "M17 22v-5" }], + ["path", { d: "M17 7V2" }], + ["path", { d: "M7 22v-3" }], + ["path", { d: "M7 5V2" }] + ]; + + const AlignHorizontalDistributeEnd = [ + ["rect", { width: "6", height: "14", x: "4", y: "5", rx: "2" }], + ["rect", { width: "6", height: "10", x: "14", y: "7", rx: "2" }], + ["path", { d: "M10 2v20" }], + ["path", { d: "M20 2v20" }] + ]; + + const AlignHorizontalDistributeStart = [ + ["rect", { width: "6", height: "14", x: "4", y: "5", rx: "2" }], + ["rect", { width: "6", height: "10", x: "14", y: "7", rx: "2" }], + ["path", { d: "M4 2v20" }], + ["path", { d: "M14 2v20" }] + ]; + + const AlignHorizontalJustifyCenter = [ + ["rect", { width: "6", height: "14", x: "2", y: "5", rx: "2" }], + ["rect", { width: "6", height: "10", x: "16", y: "7", rx: "2" }], + ["path", { d: "M12 2v20" }] + ]; + + const AlignHorizontalJustifyEnd = [ + ["rect", { width: "6", height: "14", x: "2", y: "5", rx: "2" }], + ["rect", { width: "6", height: "10", x: "12", y: "7", rx: "2" }], + ["path", { d: "M22 2v20" }] + ]; + + const AlignHorizontalJustifyStart = [ + ["rect", { width: "6", height: "14", x: "6", y: "5", rx: "2" }], + ["rect", { width: "6", height: "10", x: "16", y: "7", rx: "2" }], + ["path", { d: "M2 2v20" }] + ]; + + const AlignHorizontalSpaceAround = [ + ["rect", { width: "6", height: "10", x: "9", y: "7", rx: "2" }], + ["path", { d: "M4 22V2" }], + ["path", { d: "M20 22V2" }] + ]; + + const AlignHorizontalSpaceBetween = [ + ["rect", { width: "6", height: "14", x: "3", y: "5", rx: "2" }], + ["rect", { width: "6", height: "10", x: "15", y: "7", rx: "2" }], + ["path", { d: "M3 2v20" }], + ["path", { d: "M21 2v20" }] + ]; + + const AlignJustify = [ + ["path", { d: "M3 12h18" }], + ["path", { d: "M3 18h18" }], + ["path", { d: "M3 6h18" }] + ]; + + const AlignLeft = [ + ["path", { d: "M15 12H3" }], + ["path", { d: "M17 18H3" }], + ["path", { d: "M21 6H3" }] + ]; + + const AlignRight = [ + ["path", { d: "M21 12H9" }], + ["path", { d: "M21 18H7" }], + ["path", { d: "M21 6H3" }] + ]; + + const AlignStartHorizontal = [ + ["rect", { width: "6", height: "16", x: "4", y: "6", rx: "2" }], + ["rect", { width: "6", height: "9", x: "14", y: "6", rx: "2" }], + ["path", { d: "M22 2H2" }] + ]; + + const AlignStartVertical = [ + ["rect", { width: "9", height: "6", x: "6", y: "14", rx: "2" }], + ["rect", { width: "16", height: "6", x: "6", y: "4", rx: "2" }], + ["path", { d: "M2 2v20" }] + ]; + + const AlignVerticalDistributeCenter = [ + ["path", { d: "M22 17h-3" }], + ["path", { d: "M22 7h-5" }], + ["path", { d: "M5 17H2" }], + ["path", { d: "M7 7H2" }], + ["rect", { x: "5", y: "14", width: "14", height: "6", rx: "2" }], + ["rect", { x: "7", y: "4", width: "10", height: "6", rx: "2" }] + ]; + + const AlignVerticalDistributeEnd = [ + ["rect", { width: "14", height: "6", x: "5", y: "14", rx: "2" }], + ["rect", { width: "10", height: "6", x: "7", y: "4", rx: "2" }], + ["path", { d: "M2 20h20" }], + ["path", { d: "M2 10h20" }] + ]; + + const AlignVerticalDistributeStart = [ + ["rect", { width: "14", height: "6", x: "5", y: "14", rx: "2" }], + ["rect", { width: "10", height: "6", x: "7", y: "4", rx: "2" }], + ["path", { d: "M2 14h20" }], + ["path", { d: "M2 4h20" }] + ]; + + const AlignVerticalJustifyCenter = [ + ["rect", { width: "14", height: "6", x: "5", y: "16", rx: "2" }], + ["rect", { width: "10", height: "6", x: "7", y: "2", rx: "2" }], + ["path", { d: "M2 12h20" }] + ]; + + const AlignVerticalJustifyEnd = [ + ["rect", { width: "14", height: "6", x: "5", y: "12", rx: "2" }], + ["rect", { width: "10", height: "6", x: "7", y: "2", rx: "2" }], + ["path", { d: "M2 22h20" }] + ]; + + const AlignVerticalJustifyStart = [ + ["rect", { width: "14", height: "6", x: "5", y: "16", rx: "2" }], + ["rect", { width: "10", height: "6", x: "7", y: "6", rx: "2" }], + ["path", { d: "M2 2h20" }] + ]; + + const AlignVerticalSpaceAround = [ + ["rect", { width: "10", height: "6", x: "7", y: "9", rx: "2" }], + ["path", { d: "M22 20H2" }], + ["path", { d: "M22 4H2" }] + ]; + + const AlignVerticalSpaceBetween = [ + ["rect", { width: "14", height: "6", x: "5", y: "15", rx: "2" }], + ["rect", { width: "10", height: "6", x: "7", y: "3", rx: "2" }], + ["path", { d: "M2 21h20" }], + ["path", { d: "M2 3h20" }] + ]; + + const Ambulance = [ + ["path", { d: "M10 10H6" }], + ["path", { d: "M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2" }], + [ + "path", + { + d: "M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14" + } + ], + ["path", { d: "M8 8v4" }], + ["path", { d: "M9 18h6" }], + ["circle", { cx: "17", cy: "18", r: "2" }], + ["circle", { cx: "7", cy: "18", r: "2" }] + ]; + + const Ampersand = [ + [ + "path", + { + d: "M17.5 12c0 4.4-3.6 8-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13" + } + ], + ["path", { d: "M16 12h3" }] + ]; + + const Ampersands = [ + [ + "path", + { d: "M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5" } + ], + [ + "path", + { d: "M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5" } + ] + ]; + + const Amphora = [ + ["path", { d: "M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8" }], + ["path", { d: "M10 5H8a2 2 0 0 0 0 4h.68" }], + ["path", { d: "M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8" }], + ["path", { d: "M14 5h2a2 2 0 0 1 0 4h-.68" }], + ["path", { d: "M18 22H6" }], + ["path", { d: "M9 2h6" }] + ]; + + const Anchor = [ + ["path", { d: "M12 22V8" }], + ["path", { d: "M5 12H2a10 10 0 0 0 20 0h-3" }], + ["circle", { cx: "12", cy: "5", r: "3" }] + ]; + + const Angry = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M16 16s-1.5-2-4-2-4 2-4 2" }], + ["path", { d: "M7.5 8 10 9" }], + ["path", { d: "m14 9 2.5-1" }], + ["path", { d: "M9 10h.01" }], + ["path", { d: "M15 10h.01" }] + ]; + + const Annoyed = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M8 15h8" }], + ["path", { d: "M8 9h2" }], + ["path", { d: "M14 9h2" }] + ]; + + const Antenna = [ + ["path", { d: "M2 12 7 2" }], + ["path", { d: "m7 12 5-10" }], + ["path", { d: "m12 12 5-10" }], + ["path", { d: "m17 12 5-10" }], + ["path", { d: "M4.5 7h15" }], + ["path", { d: "M12 16v6" }] + ]; + + const Anvil = [ + ["path", { d: "M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4" }], + ["path", { d: "M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z" }], + ["path", { d: "M9 12v5" }], + ["path", { d: "M15 12v5" }], + ["path", { d: "M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1" }] + ]; + + const Aperture = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "m14.31 8 5.74 9.94" }], + ["path", { d: "M9.69 8h11.48" }], + ["path", { d: "m7.38 12 5.74-9.94" }], + ["path", { d: "M9.69 16 3.95 6.06" }], + ["path", { d: "M14.31 16H2.83" }], + ["path", { d: "m16.62 12-5.74 9.94" }] + ]; + + const AppWindowMac = [ + ["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }], + ["path", { d: "M6 8h.01" }], + ["path", { d: "M10 8h.01" }], + ["path", { d: "M14 8h.01" }] + ]; + + const AppWindow = [ + ["rect", { x: "2", y: "4", width: "20", height: "16", rx: "2" }], + ["path", { d: "M10 4v4" }], + ["path", { d: "M2 8h20" }], + ["path", { d: "M6 4v4" }] + ]; + + const Apple = [ + [ + "path", + { + d: "M12 20.94c1.5 0 2.75 1.06 4 1.06 3 0 6-8 6-12.22A4.91 4.91 0 0 0 17 5c-2.22 0-4 1.44-5 2-1-.56-2.78-2-5-2a4.9 4.9 0 0 0-5 4.78C2 14 5 22 8 22c1.25 0 2.5-1.06 4-1.06Z" + } + ], + ["path", { d: "M10 2c1 .5 2 2 2 5" }] + ]; + + const ArchiveRestore = [ + ["rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }], + ["path", { d: "M4 8v11a2 2 0 0 0 2 2h2" }], + ["path", { d: "M20 8v11a2 2 0 0 1-2 2h-2" }], + ["path", { d: "m9 15 3-3 3 3" }], + ["path", { d: "M12 12v9" }] + ]; + + const ArchiveX = [ + ["rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }], + ["path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }], + ["path", { d: "m9.5 17 5-5" }], + ["path", { d: "m9.5 12 5 5" }] + ]; + + const Archive = [ + ["rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }], + ["path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }], + ["path", { d: "M10 12h4" }] + ]; + + const Armchair = [ + ["path", { d: "M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3" }], + [ + "path", + { + d: "M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z" + } + ], + ["path", { d: "M5 18v2" }], + ["path", { d: "M19 18v2" }] + ]; + + const ArrowBigDownDash = [ + ["path", { d: "M15 5H9" }], + ["path", { d: "M15 9v3h4l-7 7-7-7h4V9z" }] + ]; + + const ArrowBigDown = [["path", { d: "M15 6v6h4l-7 7-7-7h4V6h6z" }]]; + + const ArrowBigLeftDash = [ + ["path", { d: "M19 15V9" }], + ["path", { d: "M15 15h-3v4l-7-7 7-7v4h3v6z" }] + ]; + + const ArrowBigLeft = [["path", { d: "M18 15h-6v4l-7-7 7-7v4h6v6z" }]]; + + const ArrowBigRightDash = [ + ["path", { d: "M5 9v6" }], + ["path", { d: "M9 9h3V5l7 7-7 7v-4H9V9z" }] + ]; + + const ArrowBigRight = [["path", { d: "M6 9h6V5l7 7-7 7v-4H6V9z" }]]; + + const ArrowBigUpDash = [ + ["path", { d: "M9 19h6" }], + ["path", { d: "M9 15v-3H5l7-7 7 7h-4v3H9z" }] + ]; + + const ArrowBigUp = [["path", { d: "M9 18v-6H5l7-7 7 7h-4v6H9z" }]]; + + const ArrowDown01 = [ + ["path", { d: "m3 16 4 4 4-4" }], + ["path", { d: "M7 20V4" }], + ["rect", { x: "15", y: "4", width: "4", height: "6", ry: "2" }], + ["path", { d: "M17 20v-6h-2" }], + ["path", { d: "M15 20h4" }] + ]; + + const ArrowDown10 = [ + ["path", { d: "m3 16 4 4 4-4" }], + ["path", { d: "M7 20V4" }], + ["path", { d: "M17 10V4h-2" }], + ["path", { d: "M15 10h4" }], + ["rect", { x: "15", y: "14", width: "4", height: "6", ry: "2" }] + ]; + + const ArrowDownAZ = [ + ["path", { d: "m3 16 4 4 4-4" }], + ["path", { d: "M7 20V4" }], + ["path", { d: "M20 8h-5" }], + ["path", { d: "M15 10V6.5a2.5 2.5 0 0 1 5 0V10" }], + ["path", { d: "M15 14h5l-5 6h5" }] + ]; + + const ArrowDownFromLine = [ + ["path", { d: "M19 3H5" }], + ["path", { d: "M12 21V7" }], + ["path", { d: "m6 15 6 6 6-6" }] + ]; + + const ArrowDownLeft = [ + ["path", { d: "M17 7 7 17" }], + ["path", { d: "M17 17H7V7" }] + ]; + + const ArrowDownNarrowWide = [ + ["path", { d: "m3 16 4 4 4-4" }], + ["path", { d: "M7 20V4" }], + ["path", { d: "M11 4h4" }], + ["path", { d: "M11 8h7" }], + ["path", { d: "M11 12h10" }] + ]; + + const ArrowDownRight = [ + ["path", { d: "m7 7 10 10" }], + ["path", { d: "M17 7v10H7" }] + ]; + + const ArrowDownToDot = [ + ["path", { d: "M12 2v14" }], + ["path", { d: "m19 9-7 7-7-7" }], + ["circle", { cx: "12", cy: "21", r: "1" }] + ]; + + const ArrowDownToLine = [ + ["path", { d: "M12 17V3" }], + ["path", { d: "m6 11 6 6 6-6" }], + ["path", { d: "M19 21H5" }] + ]; + + const ArrowDownUp = [ + ["path", { d: "m3 16 4 4 4-4" }], + ["path", { d: "M7 20V4" }], + ["path", { d: "m21 8-4-4-4 4" }], + ["path", { d: "M17 4v16" }] + ]; + + const ArrowDownWideNarrow = [ + ["path", { d: "m3 16 4 4 4-4" }], + ["path", { d: "M7 20V4" }], + ["path", { d: "M11 4h10" }], + ["path", { d: "M11 8h7" }], + ["path", { d: "M11 12h4" }] + ]; + + const ArrowDownZA = [ + ["path", { d: "m3 16 4 4 4-4" }], + ["path", { d: "M7 4v16" }], + ["path", { d: "M15 4h5l-5 6h5" }], + ["path", { d: "M15 20v-3.5a2.5 2.5 0 0 1 5 0V20" }], + ["path", { d: "M20 18h-5" }] + ]; + + const ArrowDown = [ + ["path", { d: "M12 5v14" }], + ["path", { d: "m19 12-7 7-7-7" }] + ]; + + const ArrowLeftFromLine = [ + ["path", { d: "m9 6-6 6 6 6" }], + ["path", { d: "M3 12h14" }], + ["path", { d: "M21 19V5" }] + ]; + + const ArrowLeftRight = [ + ["path", { d: "M8 3 4 7l4 4" }], + ["path", { d: "M4 7h16" }], + ["path", { d: "m16 21 4-4-4-4" }], + ["path", { d: "M20 17H4" }] + ]; + + const ArrowLeftToLine = [ + ["path", { d: "M3 19V5" }], + ["path", { d: "m13 6-6 6 6 6" }], + ["path", { d: "M7 12h14" }] + ]; + + const ArrowLeft = [ + ["path", { d: "m12 19-7-7 7-7" }], + ["path", { d: "M19 12H5" }] + ]; + + const ArrowRightFromLine = [ + ["path", { d: "M3 5v14" }], + ["path", { d: "M21 12H7" }], + ["path", { d: "m15 18 6-6-6-6" }] + ]; + + const ArrowRightLeft = [ + ["path", { d: "m16 3 4 4-4 4" }], + ["path", { d: "M20 7H4" }], + ["path", { d: "m8 21-4-4 4-4" }], + ["path", { d: "M4 17h16" }] + ]; + + const ArrowRightToLine = [ + ["path", { d: "M17 12H3" }], + ["path", { d: "m11 18 6-6-6-6" }], + ["path", { d: "M21 5v14" }] + ]; + + const ArrowRight = [ + ["path", { d: "M5 12h14" }], + ["path", { d: "m12 5 7 7-7 7" }] + ]; + + const ArrowUp01 = [ + ["path", { d: "m3 8 4-4 4 4" }], + ["path", { d: "M7 4v16" }], + ["rect", { x: "15", y: "4", width: "4", height: "6", ry: "2" }], + ["path", { d: "M17 20v-6h-2" }], + ["path", { d: "M15 20h4" }] + ]; + + const ArrowUp10 = [ + ["path", { d: "m3 8 4-4 4 4" }], + ["path", { d: "M7 4v16" }], + ["path", { d: "M17 10V4h-2" }], + ["path", { d: "M15 10h4" }], + ["rect", { x: "15", y: "14", width: "4", height: "6", ry: "2" }] + ]; + + const ArrowUpAZ = [ + ["path", { d: "m3 8 4-4 4 4" }], + ["path", { d: "M7 4v16" }], + ["path", { d: "M20 8h-5" }], + ["path", { d: "M15 10V6.5a2.5 2.5 0 0 1 5 0V10" }], + ["path", { d: "M15 14h5l-5 6h5" }] + ]; + + const ArrowUpDown = [ + ["path", { d: "m21 16-4 4-4-4" }], + ["path", { d: "M17 20V4" }], + ["path", { d: "m3 8 4-4 4 4" }], + ["path", { d: "M7 4v16" }] + ]; + + const ArrowUpFromDot = [ + ["path", { d: "m5 9 7-7 7 7" }], + ["path", { d: "M12 16V2" }], + ["circle", { cx: "12", cy: "21", r: "1" }] + ]; + + const ArrowUpFromLine = [ + ["path", { d: "m18 9-6-6-6 6" }], + ["path", { d: "M12 3v14" }], + ["path", { d: "M5 21h14" }] + ]; + + const ArrowUpLeft = [ + ["path", { d: "M7 17V7h10" }], + ["path", { d: "M17 17 7 7" }] + ]; + + const ArrowUpNarrowWide = [ + ["path", { d: "m3 8 4-4 4 4" }], + ["path", { d: "M7 4v16" }], + ["path", { d: "M11 12h4" }], + ["path", { d: "M11 16h7" }], + ["path", { d: "M11 20h10" }] + ]; + + const ArrowUpRight = [ + ["path", { d: "M7 7h10v10" }], + ["path", { d: "M7 17 17 7" }] + ]; + + const ArrowUpToLine = [ + ["path", { d: "M5 3h14" }], + ["path", { d: "m18 13-6-6-6 6" }], + ["path", { d: "M12 7v14" }] + ]; + + const ArrowUpWideNarrow = [ + ["path", { d: "m3 8 4-4 4 4" }], + ["path", { d: "M7 4v16" }], + ["path", { d: "M11 12h10" }], + ["path", { d: "M11 16h7" }], + ["path", { d: "M11 20h4" }] + ]; + + const ArrowUpZA = [ + ["path", { d: "m3 8 4-4 4 4" }], + ["path", { d: "M7 4v16" }], + ["path", { d: "M15 4h5l-5 6h5" }], + ["path", { d: "M15 20v-3.5a2.5 2.5 0 0 1 5 0V20" }], + ["path", { d: "M20 18h-5" }] + ]; + + const ArrowUp = [ + ["path", { d: "m5 12 7-7 7 7" }], + ["path", { d: "M12 19V5" }] + ]; + + const ArrowsUpFromLine = [ + ["path", { d: "m4 6 3-3 3 3" }], + ["path", { d: "M7 17V3" }], + ["path", { d: "m14 6 3-3 3 3" }], + ["path", { d: "M17 17V3" }], + ["path", { d: "M4 21h16" }] + ]; + + const Asterisk = [ + ["path", { d: "M12 6v12" }], + ["path", { d: "M17.196 9 6.804 15" }], + ["path", { d: "m6.804 9 10.392 6" }] + ]; + + const AtSign = [ + ["circle", { cx: "12", cy: "12", r: "4" }], + ["path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" }] + ]; + + const Atom = [ + ["circle", { cx: "12", cy: "12", r: "1" }], + [ + "path", + { + d: "M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z" + } + ], + [ + "path", + { + d: "M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z" + } + ] + ]; + + const AudioLines = [ + ["path", { d: "M2 10v3" }], + ["path", { d: "M6 6v11" }], + ["path", { d: "M10 3v18" }], + ["path", { d: "M14 8v7" }], + ["path", { d: "M18 5v13" }], + ["path", { d: "M22 10v3" }] + ]; + + const AudioWaveform = [ + [ + "path", + { + d: "M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2" + } + ] + ]; + + const Award = [ + [ + "path", + { + d: "m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526" + } + ], + ["circle", { cx: "12", cy: "8", r: "6" }] + ]; + + const Axe = [ + ["path", { d: "m14 12-8.5 8.5a2.12 2.12 0 1 1-3-3L11 9" }], + ["path", { d: "M15 13 9 7l4-4 6 6h3a8 8 0 0 1-7 7z" }] + ]; + + const Axis3d = [ + ["path", { d: "M4 4v16h16" }], + ["path", { d: "m4 20 7-7" }] + ]; + + const Baby = [ + ["path", { d: "M9 12h.01" }], + ["path", { d: "M15 12h.01" }], + ["path", { d: "M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5" }], + [ + "path", + { + d: "M19 6.3a9 9 0 0 1 1.8 3.9 2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1" + } + ] + ]; + + const Backpack = [ + ["path", { d: "M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z" }], + ["path", { d: "M8 10h8" }], + ["path", { d: "M8 18h8" }], + ["path", { d: "M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6" }], + ["path", { d: "M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2" }] + ]; + + const BadgeAlert = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["line", { x1: "12", x2: "12", y1: "8", y2: "12" }], + ["line", { x1: "12", x2: "12.01", y1: "16", y2: "16" }] + ]; + + const BadgeCent = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["path", { d: "M12 7v10" }], + ["path", { d: "M15.4 10a4 4 0 1 0 0 4" }] + ]; + + const BadgeCheck = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["path", { d: "m9 12 2 2 4-4" }] + ]; + + const BadgeDollarSign = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["path", { d: "M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8" }], + ["path", { d: "M12 18V6" }] + ]; + + const BadgeEuro = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["path", { d: "M7 12h5" }], + ["path", { d: "M15 9.4a4 4 0 1 0 0 5.2" }] + ]; + + const BadgeHelp = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }], + ["line", { x1: "12", x2: "12.01", y1: "17", y2: "17" }] + ]; + + const BadgeIndianRupee = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["path", { d: "M8 8h8" }], + ["path", { d: "M8 12h8" }], + ["path", { d: "m13 17-5-1h1a4 4 0 0 0 0-8" }] + ]; + + const BadgeInfo = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["line", { x1: "12", x2: "12", y1: "16", y2: "12" }], + ["line", { x1: "12", x2: "12.01", y1: "8", y2: "8" }] + ]; + + const BadgeJapaneseYen = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["path", { d: "m9 8 3 3v7" }], + ["path", { d: "m12 11 3-3" }], + ["path", { d: "M9 12h6" }], + ["path", { d: "M9 16h6" }] + ]; + + const BadgeMinus = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["line", { x1: "8", x2: "16", y1: "12", y2: "12" }] + ]; + + const BadgePercent = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["path", { d: "m15 9-6 6" }], + ["path", { d: "M9 9h.01" }], + ["path", { d: "M15 15h.01" }] + ]; + + const BadgePlus = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["line", { x1: "12", x2: "12", y1: "8", y2: "16" }], + ["line", { x1: "8", x2: "16", y1: "12", y2: "12" }] + ]; + + const BadgePoundSterling = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["path", { d: "M8 12h4" }], + ["path", { d: "M10 16V9.5a2.5 2.5 0 0 1 5 0" }], + ["path", { d: "M8 16h7" }] + ]; + + const BadgeRussianRuble = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["path", { d: "M9 16h5" }], + ["path", { d: "M9 12h5a2 2 0 1 0 0-4h-3v9" }] + ]; + + const BadgeSwissFranc = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["path", { d: "M11 17V8h4" }], + ["path", { d: "M11 12h3" }], + ["path", { d: "M9 16h4" }] + ]; + + const BadgeX = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ], + ["line", { x1: "15", x2: "9", y1: "9", y2: "15" }], + ["line", { x1: "9", x2: "15", y1: "9", y2: "15" }] + ]; + + const Badge = [ + [ + "path", + { + d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" + } + ] + ]; + + const BaggageClaim = [ + ["path", { d: "M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2" }], + ["path", { d: "M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10" }], + ["rect", { width: "13", height: "8", x: "8", y: "6", rx: "1" }], + ["circle", { cx: "18", cy: "20", r: "2" }], + ["circle", { cx: "9", cy: "20", r: "2" }] + ]; + + const Ban = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "m4.9 4.9 14.2 14.2" }] + ]; + + const Banana = [ + ["path", { d: "M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5" }], + [ + "path", + { + d: "M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z" + } + ] + ]; + + const Bandage = [ + ["path", { d: "M10 10.01h.01" }], + ["path", { d: "M10 14.01h.01" }], + ["path", { d: "M14 10.01h.01" }], + ["path", { d: "M14 14.01h.01" }], + ["path", { d: "M18 6v11.5" }], + ["path", { d: "M6 6v12" }], + ["rect", { x: "2", y: "6", width: "20", height: "12", rx: "2" }] + ]; + + const Banknote = [ + ["rect", { width: "20", height: "12", x: "2", y: "6", rx: "2" }], + ["circle", { cx: "12", cy: "12", r: "2" }], + ["path", { d: "M6 12h.01M18 12h.01" }] + ]; + + const Barcode = [ + ["path", { d: "M3 5v14" }], + ["path", { d: "M8 5v14" }], + ["path", { d: "M12 5v14" }], + ["path", { d: "M17 5v14" }], + ["path", { d: "M21 5v14" }] + ]; + + const Baseline = [ + ["path", { d: "M4 20h16" }], + ["path", { d: "m6 16 6-12 6 12" }], + ["path", { d: "M8 12h8" }] + ]; + + const Bath = [ + ["path", { d: "M10 4 8 6" }], + ["path", { d: "M17 19v2" }], + ["path", { d: "M2 12h20" }], + ["path", { d: "M7 19v2" }], + ["path", { d: "M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5" }] + ]; + + const BatteryCharging = [ + ["path", { d: "M15 7h1a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M6 7H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h1" }], + ["path", { d: "m11 7-3 5h4l-3 5" }], + ["line", { x1: "22", x2: "22", y1: "11", y2: "13" }] + ]; + + const BatteryFull = [ + ["rect", { width: "16", height: "10", x: "2", y: "7", rx: "2", ry: "2" }], + ["line", { x1: "22", x2: "22", y1: "11", y2: "13" }], + ["line", { x1: "6", x2: "6", y1: "11", y2: "13" }], + ["line", { x1: "10", x2: "10", y1: "11", y2: "13" }], + ["line", { x1: "14", x2: "14", y1: "11", y2: "13" }] + ]; + + const BatteryLow = [ + ["rect", { width: "16", height: "10", x: "2", y: "7", rx: "2", ry: "2" }], + ["line", { x1: "22", x2: "22", y1: "11", y2: "13" }], + ["line", { x1: "6", x2: "6", y1: "11", y2: "13" }] + ]; + + const BatteryMedium = [ + ["rect", { width: "16", height: "10", x: "2", y: "7", rx: "2", ry: "2" }], + ["line", { x1: "22", x2: "22", y1: "11", y2: "13" }], + ["line", { x1: "6", x2: "6", y1: "11", y2: "13" }], + ["line", { x1: "10", x2: "10", y1: "11", y2: "13" }] + ]; + + const BatteryPlus = [ + ["path", { d: "M10 9v6" }], + ["path", { d: "M13.5 7H16a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2.5" }], + ["path", { d: "M22 11v2" }], + ["path", { d: "M6.5 17H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2.5" }], + ["path", { d: "M7 12h6" }] + ]; + + const BatteryWarning = [ + ["path", { d: "M10 17h.01" }], + ["path", { d: "M10 7v6" }], + ["path", { d: "M14 7h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M22 11v2" }], + ["path", { d: "M6 7H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2" }] + ]; + + const Battery = [ + ["rect", { width: "16", height: "10", x: "2", y: "7", rx: "2", ry: "2" }], + ["line", { x1: "22", x2: "22", y1: "11", y2: "13" }] + ]; + + const Beaker = [ + ["path", { d: "M4.5 3h15" }], + ["path", { d: "M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3" }], + ["path", { d: "M6 14h12" }] + ]; + + const BeanOff = [ + ["path", { d: "M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1" }], + ["path", { d: "M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66" }], + ["path", { d: "M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Bean = [ + [ + "path", + { + d: "M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z" + } + ], + ["path", { d: "M5.341 10.62a4 4 0 1 0 5.279-5.28" }] + ]; + + const BedDouble = [ + ["path", { d: "M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8" }], + ["path", { d: "M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4" }], + ["path", { d: "M12 4v6" }], + ["path", { d: "M2 18h20" }] + ]; + + const BedSingle = [ + ["path", { d: "M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8" }], + ["path", { d: "M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4" }], + ["path", { d: "M3 18h18" }] + ]; + + const Bed = [ + ["path", { d: "M2 4v16" }], + ["path", { d: "M2 8h18a2 2 0 0 1 2 2v10" }], + ["path", { d: "M2 17h20" }], + ["path", { d: "M6 8v9" }] + ]; + + const Beef = [ + ["circle", { cx: "12.5", cy: "8.5", r: "2.5" }], + [ + "path", + { + d: "M12.5 2a6.5 6.5 0 0 0-6.22 4.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3A6.5 6.5 0 0 0 12.5 2Z" + } + ], + [ + "path", + { + d: "m18.5 6 2.19 4.5a6.48 6.48 0 0 1 .31 2 6.49 6.49 0 0 1-2.6 5.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5" + } + ] + ]; + + const BeerOff = [ + ["path", { d: "M13 13v5" }], + ["path", { d: "M17 11.47V8" }], + ["path", { d: "M17 11h1a3 3 0 0 1 2.745 4.211" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3" }], + ["path", { d: "M7.536 7.535C6.766 7.649 6.154 8 5.5 8a2.5 2.5 0 0 1-1.768-4.268" }], + [ + "path", + { + d: "M8.727 3.204C9.306 2.767 9.885 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.149 3.149 0 0 0-.842.12" + } + ], + ["path", { d: "M9 14.6V18" }] + ]; + + const Beer = [ + ["path", { d: "M17 11h1a3 3 0 0 1 0 6h-1" }], + ["path", { d: "M9 12v6" }], + ["path", { d: "M13 12v6" }], + [ + "path", + { + d: "M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z" + } + ], + ["path", { d: "M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8" }] + ]; + + const BellDot = [ + ["path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }], + [ + "path", + { + d: "M13.916 2.314A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.74 7.327A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673 9 9 0 0 1-.585-.665" + } + ], + ["circle", { cx: "18", cy: "8", r: "3" }] + ]; + + const BellElectric = [ + ["path", { d: "M18.8 4A6.3 8.7 0 0 1 20 9" }], + ["path", { d: "M9 9h.01" }], + ["circle", { cx: "9", cy: "9", r: "7" }], + ["rect", { width: "10", height: "6", x: "4", y: "16", rx: "2" }], + ["path", { d: "M14 19c3 0 4.6-1.6 4.6-1.6" }], + ["circle", { cx: "20", cy: "16", r: "2" }] + ]; + + const BellMinus = [ + ["path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }], + ["path", { d: "M15 8h6" }], + [ + "path", + { + d: "M16.243 3.757A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673A9.4 9.4 0 0 1 18.667 12" + } + ] + ]; + + const BellOff = [ + ["path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }], + ["path", { d: "M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05" }] + ]; + + const BellPlus = [ + ["path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }], + ["path", { d: "M15 8h6" }], + ["path", { d: "M18 5v6" }], + [ + "path", + { + d: "M20.002 14.464a9 9 0 0 0 .738.863A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 8.75-5.332" + } + ] + ]; + + const BellRing = [ + ["path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }], + ["path", { d: "M22 8c0-2.3-.8-4.3-2-6" }], + [ + "path", + { + d: "M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326" + } + ], + ["path", { d: "M4 2C2.8 3.7 2 5.7 2 8" }] + ]; + + const Bell = [ + ["path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }], + [ + "path", + { + d: "M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326" + } + ] + ]; + + const BetweenHorizontalEnd = [ + ["rect", { width: "13", height: "7", x: "3", y: "3", rx: "1" }], + ["path", { d: "m22 15-3-3 3-3" }], + ["rect", { width: "13", height: "7", x: "3", y: "14", rx: "1" }] + ]; + + const BetweenHorizontalStart = [ + ["rect", { width: "13", height: "7", x: "8", y: "3", rx: "1" }], + ["path", { d: "m2 9 3 3-3 3" }], + ["rect", { width: "13", height: "7", x: "8", y: "14", rx: "1" }] + ]; + + const BetweenVerticalEnd = [ + ["rect", { width: "7", height: "13", x: "3", y: "3", rx: "1" }], + ["path", { d: "m9 22 3-3 3 3" }], + ["rect", { width: "7", height: "13", x: "14", y: "3", rx: "1" }] + ]; + + const BetweenVerticalStart = [ + ["rect", { width: "7", height: "13", x: "3", y: "8", rx: "1" }], + ["path", { d: "m15 2-3 3-3-3" }], + ["rect", { width: "7", height: "13", x: "14", y: "8", rx: "1" }] + ]; + + const BicepsFlexed = [ + [ + "path", + { + d: "M12.409 13.017A5 5 0 0 1 22 15c0 3.866-4 7-9 7-4.077 0-8.153-.82-10.371-2.462-.426-.316-.631-.832-.62-1.362C2.118 12.723 2.627 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.105 0-1.64-.444-2-1" + } + ], + ["path", { d: "M15 14a5 5 0 0 0-7.584 2" }], + ["path", { d: "M9.964 6.825C8.019 7.977 9.5 13 8 15" }] + ]; + + const Bike = [ + ["circle", { cx: "18.5", cy: "17.5", r: "3.5" }], + ["circle", { cx: "5.5", cy: "17.5", r: "3.5" }], + ["circle", { cx: "15", cy: "5", r: "1" }], + ["path", { d: "M12 17.5V14l-3-3 4-3 2 3h2" }] + ]; + + const Binary = [ + ["rect", { x: "14", y: "14", width: "4", height: "6", rx: "2" }], + ["rect", { x: "6", y: "4", width: "4", height: "6", rx: "2" }], + ["path", { d: "M6 20h4" }], + ["path", { d: "M14 10h4" }], + ["path", { d: "M6 14h2v6" }], + ["path", { d: "M14 4h2v6" }] + ]; + + const Binoculars = [ + ["path", { d: "M10 10h4" }], + ["path", { d: "M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3" }], + [ + "path", + { + d: "M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z" + } + ], + ["path", { d: "M 22 16 L 2 16" }], + [ + "path", + { + d: "M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z" + } + ], + ["path", { d: "M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3" }] + ]; + + const Biohazard = [ + ["circle", { cx: "12", cy: "11.9", r: "2" }], + ["path", { d: "M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6" }], + ["path", { d: "m8.9 10.1 1.4.8" }], + ["path", { d: "M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5" }], + ["path", { d: "m15.1 10.1-1.4.8" }], + ["path", { d: "M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2" }], + ["path", { d: "M12 13.9v1.6" }], + ["path", { d: "M13.5 5.4c-1-.2-2-.2-3 0" }], + ["path", { d: "M17 16.4c.7-.7 1.2-1.6 1.5-2.5" }], + ["path", { d: "M5.5 13.9c.3.9.8 1.8 1.5 2.5" }] + ]; + + const Bird = [ + ["path", { d: "M16 7h.01" }], + ["path", { d: "M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20" }], + ["path", { d: "m20 7 2 .5-2 .5" }], + ["path", { d: "M10 18v3" }], + ["path", { d: "M14 17.75V21" }], + ["path", { d: "M7 18a6 6 0 0 0 3.84-10.61" }] + ]; + + const Bitcoin = [ + [ + "path", + { + d: "M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727" + } + ] + ]; + + const Blend = [ + ["circle", { cx: "9", cy: "9", r: "7" }], + ["circle", { cx: "15", cy: "15", r: "7" }] + ]; + + const Blinds = [ + ["path", { d: "M3 3h18" }], + ["path", { d: "M20 7H8" }], + ["path", { d: "M20 11H8" }], + ["path", { d: "M10 19h10" }], + ["path", { d: "M8 15h12" }], + ["path", { d: "M4 3v14" }], + ["circle", { cx: "4", cy: "19", r: "2" }] + ]; + + const Blocks = [ + ["rect", { width: "7", height: "7", x: "14", y: "3", rx: "1" }], + [ + "path", + { + d: "M10 21V8a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1H3" + } + ] + ]; + + const BluetoothConnected = [ + ["path", { d: "m7 7 10 10-5 5V2l5 5L7 17" }], + ["line", { x1: "18", x2: "21", y1: "12", y2: "12" }], + ["line", { x1: "3", x2: "6", y1: "12", y2: "12" }] + ]; + + const BluetoothOff = [ + ["path", { d: "m17 17-5 5V12l-5 5" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M14.5 9.5 17 7l-5-5v4.5" }] + ]; + + const BluetoothSearching = [ + ["path", { d: "m7 7 10 10-5 5V2l5 5L7 17" }], + ["path", { d: "M20.83 14.83a4 4 0 0 0 0-5.66" }], + ["path", { d: "M18 12h.01" }] + ]; + + const Bluetooth = [["path", { d: "m7 7 10 10-5 5V2l5 5L7 17" }]]; + + const Bold = [ + ["path", { d: "M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8" }] + ]; + + const Bolt = [ + [ + "path", + { + d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z" + } + ], + ["circle", { cx: "12", cy: "12", r: "4" }] + ]; + + const Bomb = [ + ["circle", { cx: "11", cy: "13", r: "9" }], + [ + "path", + { d: "M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95" } + ], + ["path", { d: "m22 2-1.5 1.5" }] + ]; + + const Bone = [ + [ + "path", + { + d: "M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z" + } + ] + ]; + + const BookA = [ + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ], + ["path", { d: "m8 13 4-7 4 7" }], + ["path", { d: "M9.1 11h5.7" }] + ]; + + const BookAudio = [ + ["path", { d: "M12 6v7" }], + ["path", { d: "M16 8v3" }], + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ], + ["path", { d: "M8 8v3" }] + ]; + + const BookCheck = [ + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ], + ["path", { d: "m9 9.5 2 2 4-4" }] + ]; + + const BookCopy = [ + ["path", { d: "M2 16V4a2 2 0 0 1 2-2h11" }], + [ + "path", + { d: "M22 18H11a2 2 0 1 0 0 4h10.5a.5.5 0 0 0 .5-.5v-15a.5.5 0 0 0-.5-.5H11a2 2 0 0 0-2 2v12" } + ], + ["path", { d: "M5 14H4a2 2 0 1 0 0 4h1" }] + ]; + + const BookDashed = [ + ["path", { d: "M12 17h1.5" }], + ["path", { d: "M12 22h1.5" }], + ["path", { d: "M12 2h1.5" }], + ["path", { d: "M17.5 22H19a1 1 0 0 0 1-1" }], + ["path", { d: "M17.5 2H19a1 1 0 0 1 1 1v1.5" }], + ["path", { d: "M20 14v3h-2.5" }], + ["path", { d: "M20 8.5V10" }], + ["path", { d: "M4 10V8.5" }], + ["path", { d: "M4 19.5V14" }], + ["path", { d: "M4 4.5A2.5 2.5 0 0 1 6.5 2H8" }], + ["path", { d: "M8 22H6.5a1 1 0 0 1 0-5H8" }] + ]; + + const BookDown = [ + ["path", { d: "M12 13V7" }], + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ], + ["path", { d: "m9 10 3 3 3-3" }] + ]; + + const BookHeadphones = [ + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ], + ["path", { d: "M8 12v-2a4 4 0 0 1 8 0v2" }], + ["circle", { cx: "15", cy: "12", r: "1" }], + ["circle", { cx: "9", cy: "12", r: "1" }] + ]; + + const BookHeart = [ + [ + "path", + { + d: "M16 8.2A2.22 2.22 0 0 0 13.8 6c-.8 0-1.4.3-1.8.9-.4-.6-1-.9-1.8-.9A2.22 2.22 0 0 0 8 8.2c0 .6.3 1.2.7 1.6A226.652 226.652 0 0 0 12 13a404 404 0 0 0 3.3-3.1 2.413 2.413 0 0 0 .7-1.7" + } + ], + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ] + ]; + + const BookImage = [ + ["path", { d: "m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17" }], + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ], + ["circle", { cx: "10", cy: "8", r: "2" }] + ]; + + const BookKey = [ + ["path", { d: "m19 3 1 1" }], + ["path", { d: "m20 2-4.5 4.5" }], + ["path", { d: "M20 8v13a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" }], + ["path", { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H14" }], + ["circle", { cx: "14", cy: "8", r: "2" }] + ]; + + const BookLock = [ + ["path", { d: "M18 6V4a2 2 0 1 0-4 0v2" }], + ["path", { d: "M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" }], + ["path", { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10" }], + ["rect", { x: "12", y: "6", width: "8", height: "5", rx: "1" }] + ]; + + const BookMarked = [ + ["path", { d: "M10 2v8l3-3 3 3V2" }], + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ] + ]; + + const BookMinus = [ + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ], + ["path", { d: "M9 10h6" }] + ]; + + const BookOpenCheck = [ + ["path", { d: "M12 21V7" }], + ["path", { d: "m16 12 2 2 4-4" }], + [ + "path", + { + d: "M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3" + } + ] + ]; + + const BookOpenText = [ + ["path", { d: "M12 7v14" }], + ["path", { d: "M16 12h2" }], + ["path", { d: "M16 8h2" }], + [ + "path", + { + d: "M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z" + } + ], + ["path", { d: "M6 12h2" }], + ["path", { d: "M6 8h2" }] + ]; + + const BookOpen = [ + ["path", { d: "M12 7v14" }], + [ + "path", + { + d: "M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z" + } + ] + ]; + + const BookPlus = [ + ["path", { d: "M12 7v6" }], + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ], + ["path", { d: "M9 10h6" }] + ]; + + const BookText = [ + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ], + ["path", { d: "M8 11h8" }], + ["path", { d: "M8 7h6" }] + ]; + + const BookType = [ + ["path", { d: "M10 13h4" }], + ["path", { d: "M12 6v7" }], + ["path", { d: "M16 8V6H8v2" }], + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ] + ]; + + const BookUp2 = [ + ["path", { d: "M12 13V7" }], + ["path", { d: "M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" }], + ["path", { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2" }], + ["path", { d: "m9 10 3-3 3 3" }], + ["path", { d: "m9 5 3-3 3 3" }] + ]; + + const BookUp = [ + ["path", { d: "M12 13V7" }], + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ], + ["path", { d: "m9 10 3-3 3 3" }] + ]; + + const BookUser = [ + ["path", { d: "M15 13a3 3 0 1 0-6 0" }], + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ], + ["circle", { cx: "12", cy: "8", r: "2" }] + ]; + + const BookX = [ + ["path", { d: "m14.5 7-5 5" }], + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ], + ["path", { d: "m9.5 7 5 5" }] + ]; + + const Book = [ + [ + "path", + { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" } + ] + ]; + + const BookmarkCheck = [ + ["path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z" }], + ["path", { d: "m9 10 2 2 4-4" }] + ]; + + const BookmarkMinus = [ + ["path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z" }], + ["line", { x1: "15", x2: "9", y1: "10", y2: "10" }] + ]; + + const BookmarkPlus = [ + ["path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z" }], + ["line", { x1: "12", x2: "12", y1: "7", y2: "13" }], + ["line", { x1: "15", x2: "9", y1: "10", y2: "10" }] + ]; + + const BookmarkX = [ + ["path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z" }], + ["path", { d: "m14.5 7.5-5 5" }], + ["path", { d: "m9.5 7.5 5 5" }] + ]; + + const Bookmark = [["path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z" }]]; + + const BoomBox = [ + ["path", { d: "M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4" }], + ["path", { d: "M8 8v1" }], + ["path", { d: "M12 8v1" }], + ["path", { d: "M16 8v1" }], + ["rect", { width: "20", height: "12", x: "2", y: "9", rx: "2" }], + ["circle", { cx: "8", cy: "15", r: "2" }], + ["circle", { cx: "16", cy: "15", r: "2" }] + ]; + + const BotMessageSquare = [ + ["path", { d: "M12 6V2H8" }], + ["path", { d: "m8 18-4 4V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2Z" }], + ["path", { d: "M2 12h2" }], + ["path", { d: "M9 11v2" }], + ["path", { d: "M15 11v2" }], + ["path", { d: "M20 12h2" }] + ]; + + const BotOff = [ + ["path", { d: "M13.67 8H18a2 2 0 0 1 2 2v4.33" }], + ["path", { d: "M2 14h2" }], + ["path", { d: "M20 14h2" }], + ["path", { d: "M22 22 2 2" }], + ["path", { d: "M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586" }], + ["path", { d: "M9 13v2" }], + ["path", { d: "M9.67 4H12v2.33" }] + ]; + + const Bot = [ + ["path", { d: "M12 8V4H8" }], + ["rect", { width: "16", height: "12", x: "4", y: "8", rx: "2" }], + ["path", { d: "M2 14h2" }], + ["path", { d: "M20 14h2" }], + ["path", { d: "M15 13v2" }], + ["path", { d: "M9 13v2" }] + ]; + + const Box = [ + [ + "path", + { + d: "M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z" + } + ], + ["path", { d: "m3.3 7 8.7 5 8.7-5" }], + ["path", { d: "M12 22V12" }] + ]; + + const Boxes = [ + [ + "path", + { + d: "M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z" + } + ], + ["path", { d: "m7 16.5-4.74-2.85" }], + ["path", { d: "m7 16.5 5-3" }], + ["path", { d: "M7 16.5v5.17" }], + [ + "path", + { + d: "M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z" + } + ], + ["path", { d: "m17 16.5-5-3" }], + ["path", { d: "m17 16.5 4.74-2.85" }], + ["path", { d: "M17 16.5v5.17" }], + [ + "path", + { + d: "M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z" + } + ], + ["path", { d: "M12 8 7.26 5.15" }], + ["path", { d: "m12 8 4.74-2.85" }], + ["path", { d: "M12 13.5V8" }] + ]; + + const Braces = [ + ["path", { d: "M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1" }], + ["path", { d: "M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1" }] + ]; + + const Brackets = [ + ["path", { d: "M16 3h3v18h-3" }], + ["path", { d: "M8 21H5V3h3" }] + ]; + + const BrainCircuit = [ + [ + "path", + { d: "M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z" } + ], + ["path", { d: "M9 13a4.5 4.5 0 0 0 3-4" }], + ["path", { d: "M6.003 5.125A3 3 0 0 0 6.401 6.5" }], + ["path", { d: "M3.477 10.896a4 4 0 0 1 .585-.396" }], + ["path", { d: "M6 18a4 4 0 0 1-1.967-.516" }], + ["path", { d: "M12 13h4" }], + ["path", { d: "M12 18h6a2 2 0 0 1 2 2v1" }], + ["path", { d: "M12 8h8" }], + ["path", { d: "M16 8V5a2 2 0 0 1 2-2" }], + ["circle", { cx: "16", cy: "13", r: ".5" }], + ["circle", { cx: "18", cy: "3", r: ".5" }], + ["circle", { cx: "20", cy: "21", r: ".5" }], + ["circle", { cx: "20", cy: "8", r: ".5" }] + ]; + + const BrainCog = [ + [ + "path", + { + d: "M12 5a3 3 0 1 0-5.997.142 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588 4 4 0 0 0 7.636 2.106 3.2 3.2 0 0 0 .164-.546c.028-.13.306-.13.335 0a3.2 3.2 0 0 0 .163.546 4 4 0 0 0 7.636-2.106 4 4 0 0 0 .556-6.588 4 4 0 0 0-2.526-5.77A3 3 0 1 0 12 5" + } + ], + ["path", { d: "M17.599 6.5a3 3 0 0 0 .399-1.375" }], + ["path", { d: "M6.003 5.125A3 3 0 0 0 6.401 6.5" }], + ["path", { d: "M3.477 10.896a4 4 0 0 1 .585-.396" }], + ["path", { d: "M19.938 10.5a4 4 0 0 1 .585.396" }], + ["path", { d: "M6 18a4 4 0 0 1-1.967-.516" }], + ["path", { d: "M19.967 17.484A4 4 0 0 1 18 18" }], + ["circle", { cx: "12", cy: "12", r: "3" }], + ["path", { d: "m15.7 10.4-.9.4" }], + ["path", { d: "m9.2 13.2-.9.4" }], + ["path", { d: "m13.6 15.7-.4-.9" }], + ["path", { d: "m10.8 9.2-.4-.9" }], + ["path", { d: "m15.7 13.5-.9-.4" }], + ["path", { d: "m9.2 10.9-.9-.4" }], + ["path", { d: "m10.5 15.7.4-.9" }], + ["path", { d: "m13.1 9.2.4-.9" }] + ]; + + const Brain = [ + [ + "path", + { d: "M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z" } + ], + [ + "path", + { d: "M12 5a3 3 0 1 1 5.997.125 4 4 0 0 1 2.526 5.77 4 4 0 0 1-.556 6.588A4 4 0 1 1 12 18Z" } + ], + ["path", { d: "M15 13a4.5 4.5 0 0 1-3-4 4.5 4.5 0 0 1-3 4" }], + ["path", { d: "M17.599 6.5a3 3 0 0 0 .399-1.375" }], + ["path", { d: "M6.003 5.125A3 3 0 0 0 6.401 6.5" }], + ["path", { d: "M3.477 10.896a4 4 0 0 1 .585-.396" }], + ["path", { d: "M19.938 10.5a4 4 0 0 1 .585.396" }], + ["path", { d: "M6 18a4 4 0 0 1-1.967-.516" }], + ["path", { d: "M19.967 17.484A4 4 0 0 1 18 18" }] + ]; + + const BrickWall = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M12 9v6" }], + ["path", { d: "M16 15v6" }], + ["path", { d: "M16 3v6" }], + ["path", { d: "M3 15h18" }], + ["path", { d: "M3 9h18" }], + ["path", { d: "M8 15v6" }], + ["path", { d: "M8 3v6" }] + ]; + + const BriefcaseBusiness = [ + ["path", { d: "M12 12h.01" }], + ["path", { d: "M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2" }], + ["path", { d: "M22 13a18.15 18.15 0 0 1-20 0" }], + ["rect", { width: "20", height: "14", x: "2", y: "6", rx: "2" }] + ]; + + const BriefcaseConveyorBelt = [ + ["path", { d: "M10 20v2" }], + ["path", { d: "M14 20v2" }], + ["path", { d: "M18 20v2" }], + ["path", { d: "M21 20H3" }], + ["path", { d: "M6 20v2" }], + ["path", { d: "M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12" }], + ["rect", { x: "4", y: "6", width: "16", height: "10", rx: "2" }] + ]; + + const BriefcaseMedical = [ + ["path", { d: "M12 11v4" }], + ["path", { d: "M14 13h-4" }], + ["path", { d: "M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2" }], + ["path", { d: "M18 6v14" }], + ["path", { d: "M6 6v14" }], + ["rect", { width: "20", height: "14", x: "2", y: "6", rx: "2" }] + ]; + + const Briefcase = [ + ["path", { d: "M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16" }], + ["rect", { width: "20", height: "14", x: "2", y: "6", rx: "2" }] + ]; + + const BringToFront = [ + ["rect", { x: "8", y: "8", width: "8", height: "8", rx: "2" }], + ["path", { d: "M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2" }], + ["path", { d: "M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2" }] + ]; + + const Brush = [ + ["path", { d: "m9.06 11.9 8.07-8.06a2.85 2.85 0 1 1 4.03 4.03l-8.06 8.08" }], + [ + "path", + { + d: "M7.07 14.94c-1.66 0-3 1.35-3 3.02 0 1.33-2.5 1.52-2 2.02 1.08 1.1 2.49 2.02 4 2.02 2.2 0 4-1.8 4-4.04a3.01 3.01 0 0 0-3-3.02z" + } + ] + ]; + + const BugOff = [ + ["path", { d: "M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2" }], + ["path", { d: "M14.12 3.88 16 2" }], + ["path", { d: "M22 13h-4v-2a4 4 0 0 0-4-4h-1.3" }], + ["path", { d: "M20.97 5c0 2.1-1.6 3.8-3.5 4" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13" }], + ["path", { d: "M12 20v-8" }], + ["path", { d: "M6 13H2" }], + ["path", { d: "M3 21c0-2.1 1.7-3.9 3.8-4" }] + ]; + + const BugPlay = [ + [ + "path", + { + d: "M12.765 21.522a.5.5 0 0 1-.765-.424v-8.196a.5.5 0 0 1 .765-.424l5.878 3.674a1 1 0 0 1 0 1.696z" + } + ], + ["path", { d: "M14.12 3.88 16 2" }], + ["path", { d: "M18 11a4 4 0 0 0-4-4h-4a4 4 0 0 0-4 4v3a6.1 6.1 0 0 0 2 4.5" }], + ["path", { d: "M20.97 5c0 2.1-1.6 3.8-3.5 4" }], + ["path", { d: "M3 21c0-2.1 1.7-3.9 3.8-4" }], + ["path", { d: "M6 13H2" }], + ["path", { d: "M6.53 9C4.6 8.8 3 7.1 3 5" }], + ["path", { d: "m8 2 1.88 1.88" }], + ["path", { d: "M9 7.13v-1a3.003 3.003 0 1 1 6 0v1" }] + ]; + + const Bug = [ + ["path", { d: "m8 2 1.88 1.88" }], + ["path", { d: "M14.12 3.88 16 2" }], + ["path", { d: "M9 7.13v-1a3.003 3.003 0 1 1 6 0v1" }], + ["path", { d: "M12 20c-3.3 0-6-2.7-6-6v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v3c0 3.3-2.7 6-6 6" }], + ["path", { d: "M12 20v-9" }], + ["path", { d: "M6.53 9C4.6 8.8 3 7.1 3 5" }], + ["path", { d: "M6 13H2" }], + ["path", { d: "M3 21c0-2.1 1.7-3.9 3.8-4" }], + ["path", { d: "M20.97 5c0 2.1-1.6 3.8-3.5 4" }], + ["path", { d: "M22 13h-4" }], + ["path", { d: "M17.2 17c2.1.1 3.8 1.9 3.8 4" }] + ]; + + const Building2 = [ + ["path", { d: "M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z" }], + ["path", { d: "M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2" }], + ["path", { d: "M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M10 6h4" }], + ["path", { d: "M10 10h4" }], + ["path", { d: "M10 14h4" }], + ["path", { d: "M10 18h4" }] + ]; + + const Building = [ + ["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2", ry: "2" }], + ["path", { d: "M9 22v-4h6v4" }], + ["path", { d: "M8 6h.01" }], + ["path", { d: "M16 6h.01" }], + ["path", { d: "M12 6h.01" }], + ["path", { d: "M12 10h.01" }], + ["path", { d: "M12 14h.01" }], + ["path", { d: "M16 10h.01" }], + ["path", { d: "M16 14h.01" }], + ["path", { d: "M8 10h.01" }], + ["path", { d: "M8 14h.01" }] + ]; + + const BusFront = [ + ["path", { d: "M4 6 2 7" }], + ["path", { d: "M10 6h4" }], + ["path", { d: "m22 7-2-1" }], + ["rect", { width: "16", height: "16", x: "4", y: "3", rx: "2" }], + ["path", { d: "M4 11h16" }], + ["path", { d: "M8 15h.01" }], + ["path", { d: "M16 15h.01" }], + ["path", { d: "M6 19v2" }], + ["path", { d: "M18 21v-2" }] + ]; + + const Bus = [ + ["path", { d: "M8 6v6" }], + ["path", { d: "M15 6v6" }], + ["path", { d: "M2 12h19.6" }], + [ + "path", + { + d: "M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3" + } + ], + ["circle", { cx: "7", cy: "18", r: "2" }], + ["path", { d: "M9 18h5" }], + ["circle", { cx: "16", cy: "18", r: "2" }] + ]; + + const CableCar = [ + ["path", { d: "M10 3h.01" }], + ["path", { d: "M14 2h.01" }], + ["path", { d: "m2 9 20-5" }], + ["path", { d: "M12 12V6.5" }], + ["rect", { width: "16", height: "10", x: "4", y: "12", rx: "3" }], + ["path", { d: "M9 12v5" }], + ["path", { d: "M15 12v5" }], + ["path", { d: "M4 17h16" }] + ]; + + const Cable = [ + ["path", { d: "M17 21v-2a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1" }], + ["path", { d: "M19 15V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V9" }], + ["path", { d: "M21 21v-2h-4" }], + ["path", { d: "M3 5h4V3" }], + ["path", { d: "M7 5a1 1 0 0 1 1 1v1a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1V3" }] + ]; + + const CakeSlice = [ + ["circle", { cx: "9", cy: "7", r: "2" }], + ["path", { d: "M7.2 7.9 3 11v9c0 .6.4 1 1 1h16c.6 0 1-.4 1-1v-9c0-2-3-6-7-8l-3.6 2.6" }], + ["path", { d: "M16 13H3" }], + ["path", { d: "M16 17H3" }] + ]; + + const Cake = [ + ["path", { d: "M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8" }], + ["path", { d: "M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1" }], + ["path", { d: "M2 21h20" }], + ["path", { d: "M7 8v3" }], + ["path", { d: "M12 8v3" }], + ["path", { d: "M17 8v3" }], + ["path", { d: "M7 4h.01" }], + ["path", { d: "M12 4h.01" }], + ["path", { d: "M17 4h.01" }] + ]; + + const Calculator = [ + ["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2" }], + ["line", { x1: "8", x2: "16", y1: "6", y2: "6" }], + ["line", { x1: "16", x2: "16", y1: "14", y2: "18" }], + ["path", { d: "M16 10h.01" }], + ["path", { d: "M12 10h.01" }], + ["path", { d: "M8 10h.01" }], + ["path", { d: "M12 14h.01" }], + ["path", { d: "M8 14h.01" }], + ["path", { d: "M12 18h.01" }], + ["path", { d: "M8 18h.01" }] + ]; + + const Calendar1 = [ + ["path", { d: "M11 14h1v4" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "M8 2v4" }], + ["rect", { x: "3", y: "4", width: "18", height: "18", rx: "2" }] + ]; + + const CalendarArrowDown = [ + ["path", { d: "m14 18 4 4 4-4" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "M18 14v8" }], + ["path", { d: "M21 11.354V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.343" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "M8 2v4" }] + ]; + + const CalendarArrowUp = [ + ["path", { d: "m14 18 4-4 4 4" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "M18 22v-8" }], + ["path", { d: "M21 11.343V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "M8 2v4" }] + ]; + + const CalendarCheck2 = [ + ["path", { d: "M8 2v4" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "m16 20 2 2 4-4" }] + ]; + + const CalendarCheck = [ + ["path", { d: "M8 2v4" }], + ["path", { d: "M16 2v4" }], + ["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "m9 16 2 2 4-4" }] + ]; + + const CalendarClock = [ + ["path", { d: "M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "M8 2v4" }], + ["path", { d: "M3 10h5" }], + ["path", { d: "M17.5 17.5 16 16.3V14" }], + ["circle", { cx: "16", cy: "16", r: "6" }] + ]; + + const CalendarCog = [ + ["path", { d: "m15.2 16.9-.9-.4" }], + ["path", { d: "m15.2 19.1-.9.4" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "m16.9 15.2-.4-.9" }], + ["path", { d: "m16.9 20.8-.4.9" }], + ["path", { d: "m19.5 14.3-.4.9" }], + ["path", { d: "m19.5 21.7-.4-.9" }], + ["path", { d: "M21 10.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6" }], + ["path", { d: "m21.7 16.5-.9.4" }], + ["path", { d: "m21.7 19.5-.9-.4" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "M8 2v4" }], + ["circle", { cx: "18", cy: "18", r: "3" }] + ]; + + const CalendarDays = [ + ["path", { d: "M8 2v4" }], + ["path", { d: "M16 2v4" }], + ["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "M8 14h.01" }], + ["path", { d: "M12 14h.01" }], + ["path", { d: "M16 14h.01" }], + ["path", { d: "M8 18h.01" }], + ["path", { d: "M12 18h.01" }], + ["path", { d: "M16 18h.01" }] + ]; + + const CalendarFold = [ + ["path", { d: "M8 2v4" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "M21 17V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h11Z" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "M15 22v-4a2 2 0 0 1 2-2h4" }] + ]; + + const CalendarHeart = [ + ["path", { d: "M3 10h18V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7" }], + ["path", { d: "M8 2v4" }], + ["path", { d: "M16 2v4" }], + [ + "path", + { + d: "M21.29 14.7a2.43 2.43 0 0 0-2.65-.52c-.3.12-.57.3-.8.53l-.34.34-.35-.34a2.43 2.43 0 0 0-2.65-.53c-.3.12-.56.3-.79.53-.95.94-1 2.53.2 3.74L17.5 22l3.6-3.55c1.2-1.21 1.14-2.8.19-3.74Z" + } + ] + ]; + + const CalendarMinus2 = [ + ["path", { d: "M8 2v4" }], + ["path", { d: "M16 2v4" }], + ["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "M10 16h4" }] + ]; + + const CalendarMinus = [ + ["path", { d: "M16 19h6" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "M8 2v4" }] + ]; + + const CalendarOff = [ + ["path", { d: "M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18" }], + ["path", { d: "M21 15.5V6a2 2 0 0 0-2-2H9.5" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "M3 10h7" }], + ["path", { d: "M21 10h-5.5" }], + ["path", { d: "m2 2 20 20" }] + ]; + + const CalendarPlus2 = [ + ["path", { d: "M8 2v4" }], + ["path", { d: "M16 2v4" }], + ["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "M10 16h4" }], + ["path", { d: "M12 14v4" }] + ]; + + const CalendarPlus = [ + ["path", { d: "M8 2v4" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "M16 19h6" }], + ["path", { d: "M19 16v6" }] + ]; + + const CalendarRange = [ + ["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "M8 2v4" }], + ["path", { d: "M17 14h-6" }], + ["path", { d: "M13 18H7" }], + ["path", { d: "M7 14h.01" }], + ["path", { d: "M17 18h.01" }] + ]; + + const CalendarSearch = [ + ["path", { d: "M16 2v4" }], + ["path", { d: "M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25" }], + ["path", { d: "m22 22-1.875-1.875" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "M8 2v4" }], + ["circle", { cx: "18", cy: "18", r: "3" }] + ]; + + const CalendarSync = [ + ["path", { d: "M11 10v4h4" }], + ["path", { d: "m11 14 1.535-1.605a5 5 0 0 1 8 1.5" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "m21 18-1.535 1.605a5 5 0 0 1-8-1.5" }], + ["path", { d: "M21 22v-4h-4" }], + ["path", { d: "M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3" }], + ["path", { d: "M3 10h4" }], + ["path", { d: "M8 2v4" }] + ]; + + const CalendarX2 = [ + ["path", { d: "M8 2v4" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "m17 22 5-5" }], + ["path", { d: "m17 17 5 5" }] + ]; + + const CalendarX = [ + ["path", { d: "M8 2v4" }], + ["path", { d: "M16 2v4" }], + ["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }], + ["path", { d: "M3 10h18" }], + ["path", { d: "m14 14-4 4" }], + ["path", { d: "m10 14 4 4" }] + ]; + + const Calendar = [ + ["path", { d: "M8 2v4" }], + ["path", { d: "M16 2v4" }], + ["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }], + ["path", { d: "M3 10h18" }] + ]; + + const CameraOff = [ + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }], + ["path", { d: "M7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16" }], + ["path", { d: "M9.5 4h5L17 7h3a2 2 0 0 1 2 2v7.5" }], + ["path", { d: "M14.121 15.121A3 3 0 1 1 9.88 10.88" }] + ]; + + const Camera = [ + [ + "path", + { + d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z" + } + ], + ["circle", { cx: "12", cy: "13", r: "3" }] + ]; + + const CandyCane = [ + [ + "path", + { d: "M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.464-2 2 2 0 1 0-3.464-2Z" } + ], + ["path", { d: "M17.75 7 15 2.1" }], + ["path", { d: "M10.9 4.8 13 9" }], + ["path", { d: "m7.9 9.7 2 4.4" }], + ["path", { d: "M4.9 14.7 7 18.9" }] + ]; + + const CandyOff = [ + ["path", { d: "m8.5 8.5-1 1a4.95 4.95 0 0 0 7 7l1-1" }], + ["path", { d: "M11.843 6.187A4.947 4.947 0 0 1 16.5 7.5a4.947 4.947 0 0 1 1.313 4.657" }], + ["path", { d: "M14 16.5V14" }], + ["path", { d: "M14 6.5v1.843" }], + ["path", { d: "M10 10v7.5" }], + ["path", { d: "m16 7 1-5 1.367.683A3 3 0 0 0 19.708 3H21v1.292a3 3 0 0 0 .317 1.341L22 7l-5 1" }], + ["path", { d: "m8 17-1 5-1.367-.683A3 3 0 0 0 4.292 21H3v-1.292a3 3 0 0 0-.317-1.341L2 17l5-1" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Candy = [ + ["path", { d: "m9.5 7.5-2 2a4.95 4.95 0 1 0 7 7l2-2a4.95 4.95 0 1 0-7-7Z" }], + ["path", { d: "M14 6.5v10" }], + ["path", { d: "M10 7.5v10" }], + ["path", { d: "m16 7 1-5 1.37.68A3 3 0 0 0 19.7 3H21v1.3c0 .46.1.92.32 1.33L22 7l-5 1" }], + ["path", { d: "m8 17-1 5-1.37-.68A3 3 0 0 0 4.3 21H3v-1.3a3 3 0 0 0-.32-1.33L2 17l5-1" }] + ]; + + const Cannabis = [ + ["path", { d: "M12 22v-4" }], + [ + "path", + { + d: "M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6" + } + ] + ]; + + const CaptionsOff = [ + ["path", { d: "M10.5 5H19a2 2 0 0 1 2 2v8.5" }], + ["path", { d: "M17 11h-.5" }], + ["path", { d: "M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M7 11h4" }], + ["path", { d: "M7 15h2.5" }] + ]; + + const Captions = [ + ["rect", { width: "18", height: "14", x: "3", y: "5", rx: "2", ry: "2" }], + ["path", { d: "M7 15h4M15 15h2M7 11h2M13 11h4" }] + ]; + + const CarFront = [ + ["path", { d: "m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8" }], + ["path", { d: "M7 14h.01" }], + ["path", { d: "M17 14h.01" }], + ["rect", { width: "18", height: "8", x: "3", y: "10", rx: "2" }], + ["path", { d: "M5 18v2" }], + ["path", { d: "M19 18v2" }] + ]; + + const CarTaxiFront = [ + ["path", { d: "M10 2h4" }], + ["path", { d: "m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8" }], + ["path", { d: "M7 14h.01" }], + ["path", { d: "M17 14h.01" }], + ["rect", { width: "18", height: "8", x: "3", y: "10", rx: "2" }], + ["path", { d: "M5 18v2" }], + ["path", { d: "M19 18v2" }] + ]; + + const Car = [ + [ + "path", + { + d: "M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2" + } + ], + ["circle", { cx: "7", cy: "17", r: "2" }], + ["path", { d: "M9 17h6" }], + ["circle", { cx: "17", cy: "17", r: "2" }] + ]; + + const Caravan = [ + ["path", { d: "M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2" }], + ["path", { d: "M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2" }], + ["path", { d: "M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9" }], + ["circle", { cx: "8", cy: "19", r: "2" }] + ]; + + const Carrot = [ + [ + "path", + { + d: "M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46" + } + ], + ["path", { d: "M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z" }], + ["path", { d: "M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z" }] + ]; + + const CaseLower = [ + ["circle", { cx: "7", cy: "12", r: "3" }], + ["path", { d: "M10 9v6" }], + ["circle", { cx: "17", cy: "12", r: "3" }], + ["path", { d: "M14 7v8" }] + ]; + + const CaseSensitive = [ + ["path", { d: "m3 15 4-8 4 8" }], + ["path", { d: "M4 13h6" }], + ["circle", { cx: "18", cy: "12", r: "3" }], + ["path", { d: "M21 9v6" }] + ]; + + const CaseUpper = [ + ["path", { d: "m3 15 4-8 4 8" }], + ["path", { d: "M4 13h6" }], + ["path", { d: "M15 11h4.5a2 2 0 0 1 0 4H15V7h4a2 2 0 0 1 0 4" }] + ]; + + const CassetteTape = [ + ["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }], + ["circle", { cx: "8", cy: "10", r: "2" }], + ["path", { d: "M8 12h8" }], + ["circle", { cx: "16", cy: "10", r: "2" }], + ["path", { d: "m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3" }] + ]; + + const Cast = [ + ["path", { d: "M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6" }], + ["path", { d: "M2 12a9 9 0 0 1 8 8" }], + ["path", { d: "M2 16a5 5 0 0 1 4 4" }], + ["line", { x1: "2", x2: "2.01", y1: "20", y2: "20" }] + ]; + + const Castle = [ + ["path", { d: "M22 20v-9H2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2Z" }], + ["path", { d: "M18 11V4H6v7" }], + ["path", { d: "M15 22v-4a3 3 0 0 0-3-3a3 3 0 0 0-3 3v4" }], + ["path", { d: "M22 11V9" }], + ["path", { d: "M2 11V9" }], + ["path", { d: "M6 4V2" }], + ["path", { d: "M18 4V2" }], + ["path", { d: "M10 4V2" }], + ["path", { d: "M14 4V2" }] + ]; + + const Cat = [ + [ + "path", + { + d: "M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z" + } + ], + ["path", { d: "M8 14v.5" }], + ["path", { d: "M16 14v.5" }], + ["path", { d: "M11.25 16.25h1.5L12 17l-.75-.75Z" }] + ]; + + const Cctv = [ + [ + "path", + { d: "M16.75 12h3.632a1 1 0 0 1 .894 1.447l-2.034 4.069a1 1 0 0 1-1.708.134l-2.124-2.97" } + ], + [ + "path", + { + d: "M17.106 9.053a1 1 0 0 1 .447 1.341l-3.106 6.211a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z" + } + ], + ["path", { d: "M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15" }], + ["path", { d: "M2 21v-4" }], + ["path", { d: "M7 9h.01" }] + ]; + + const ChartArea = [ + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + [ + "path", + { + d: "M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z" + } + ] + ]; + + const ChartBarBig = [ + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["rect", { x: "7", y: "13", width: "9", height: "4", rx: "1" }], + ["rect", { x: "7", y: "5", width: "12", height: "4", rx: "1" }] + ]; + + const ChartBarDecreasing = [ + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["path", { d: "M7 11h8" }], + ["path", { d: "M7 16h3" }], + ["path", { d: "M7 6h12" }] + ]; + + const ChartBarIncreasing = [ + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["path", { d: "M7 11h8" }], + ["path", { d: "M7 16h12" }], + ["path", { d: "M7 6h3" }] + ]; + + const ChartBarStacked = [ + ["path", { d: "M11 13v4" }], + ["path", { d: "M15 5v4" }], + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["rect", { x: "7", y: "13", width: "9", height: "4", rx: "1" }], + ["rect", { x: "7", y: "5", width: "12", height: "4", rx: "1" }] + ]; + + const ChartBar = [ + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["path", { d: "M7 16h8" }], + ["path", { d: "M7 11h12" }], + ["path", { d: "M7 6h3" }] + ]; + + const ChartCandlestick = [ + ["path", { d: "M9 5v4" }], + ["rect", { width: "4", height: "6", x: "7", y: "9", rx: "1" }], + ["path", { d: "M9 15v2" }], + ["path", { d: "M17 3v2" }], + ["rect", { width: "4", height: "8", x: "15", y: "5", rx: "1" }], + ["path", { d: "M17 13v3" }], + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }] + ]; + + const ChartColumnBig = [ + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["rect", { x: "15", y: "5", width: "4", height: "12", rx: "1" }], + ["rect", { x: "7", y: "8", width: "4", height: "9", rx: "1" }] + ]; + + const ChartColumnDecreasing = [ + ["path", { d: "M13 17V9" }], + ["path", { d: "M18 17v-3" }], + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["path", { d: "M8 17V5" }] + ]; + + const ChartColumnIncreasing = [ + ["path", { d: "M13 17V9" }], + ["path", { d: "M18 17V5" }], + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["path", { d: "M8 17v-3" }] + ]; + + const ChartColumnStacked = [ + ["path", { d: "M11 13H7" }], + ["path", { d: "M19 9h-4" }], + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["rect", { x: "15", y: "5", width: "4", height: "12", rx: "1" }], + ["rect", { x: "7", y: "8", width: "4", height: "9", rx: "1" }] + ]; + + const ChartColumn = [ + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["path", { d: "M18 17V9" }], + ["path", { d: "M13 17V5" }], + ["path", { d: "M8 17v-3" }] + ]; + + const ChartGantt = [ + ["path", { d: "M10 6h8" }], + ["path", { d: "M12 16h6" }], + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["path", { d: "M8 11h7" }] + ]; + + const ChartLine = [ + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["path", { d: "m19 9-5 5-4-4-3 3" }] + ]; + + const ChartNetwork = [ + ["path", { d: "m13.11 7.664 1.78 2.672" }], + ["path", { d: "m14.162 12.788-3.324 1.424" }], + ["path", { d: "m20 4-6.06 1.515" }], + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["circle", { cx: "12", cy: "6", r: "2" }], + ["circle", { cx: "16", cy: "12", r: "2" }], + ["circle", { cx: "9", cy: "15", r: "2" }] + ]; + + const ChartNoAxesColumnDecreasing = [ + ["path", { d: "M12 20V10" }], + ["path", { d: "M18 20v-4" }], + ["path", { d: "M6 20V4" }] + ]; + + const ChartNoAxesColumnIncreasing = [ + ["line", { x1: "12", x2: "12", y1: "20", y2: "10" }], + ["line", { x1: "18", x2: "18", y1: "20", y2: "4" }], + ["line", { x1: "6", x2: "6", y1: "20", y2: "16" }] + ]; + + const ChartNoAxesColumn = [ + ["line", { x1: "18", x2: "18", y1: "20", y2: "10" }], + ["line", { x1: "12", x2: "12", y1: "20", y2: "4" }], + ["line", { x1: "6", x2: "6", y1: "20", y2: "14" }] + ]; + + const ChartNoAxesCombined = [ + ["path", { d: "M12 16v5" }], + ["path", { d: "M16 14v7" }], + ["path", { d: "M20 10v11" }], + ["path", { d: "m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15" }], + ["path", { d: "M4 18v3" }], + ["path", { d: "M8 14v7" }] + ]; + + const ChartNoAxesGantt = [ + ["path", { d: "M8 6h10" }], + ["path", { d: "M6 12h9" }], + ["path", { d: "M11 18h7" }] + ]; + + const ChartPie = [ + [ + "path", + { + d: "M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z" + } + ], + ["path", { d: "M21.21 15.89A10 10 0 1 1 8 2.83" }] + ]; + + const ChartScatter = [ + ["circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" }], + ["circle", { cx: "18.5", cy: "5.5", r: ".5", fill: "currentColor" }], + ["circle", { cx: "11.5", cy: "11.5", r: ".5", fill: "currentColor" }], + ["circle", { cx: "7.5", cy: "16.5", r: ".5", fill: "currentColor" }], + ["circle", { cx: "17.5", cy: "14.5", r: ".5", fill: "currentColor" }], + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }] + ]; + + const ChartSpline = [ + ["path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }], + ["path", { d: "M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7" }] + ]; + + const CheckCheck = [ + ["path", { d: "M18 6 7 17l-5-5" }], + ["path", { d: "m22 10-7.5 7.5L13 16" }] + ]; + + const Check = [["path", { d: "M20 6 9 17l-5-5" }]]; + + const ChefHat = [ + [ + "path", + { + d: "M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z" + } + ], + ["path", { d: "M6 17h12" }] + ]; + + const Cherry = [ + ["path", { d: "M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z" }], + ["path", { d: "M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z" }], + ["path", { d: "M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12" }], + ["path", { d: "M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z" }] + ]; + + const ChevronDown = [["path", { d: "m6 9 6 6 6-6" }]]; + + const ChevronFirst = [ + ["path", { d: "m17 18-6-6 6-6" }], + ["path", { d: "M7 6v12" }] + ]; + + const ChevronLast = [ + ["path", { d: "m7 18 6-6-6-6" }], + ["path", { d: "M17 6v12" }] + ]; + + const ChevronLeft = [["path", { d: "m15 18-6-6 6-6" }]]; + + const ChevronRight = [["path", { d: "m9 18 6-6-6-6" }]]; + + const ChevronUp = [["path", { d: "m18 15-6-6-6 6" }]]; + + const ChevronsDownUp = [ + ["path", { d: "m7 20 5-5 5 5" }], + ["path", { d: "m7 4 5 5 5-5" }] + ]; + + const ChevronsDown = [ + ["path", { d: "m7 6 5 5 5-5" }], + ["path", { d: "m7 13 5 5 5-5" }] + ]; + + const ChevronsLeftRightEllipsis = [ + ["path", { d: "m18 8 4 4-4 4" }], + ["path", { d: "m6 8-4 4 4 4" }], + ["path", { d: "M8 12h.01" }], + ["path", { d: "M12 12h.01" }], + ["path", { d: "M16 12h.01" }] + ]; + + const ChevronsLeftRight = [ + ["path", { d: "m9 7-5 5 5 5" }], + ["path", { d: "m15 7 5 5-5 5" }] + ]; + + const ChevronsLeft = [ + ["path", { d: "m11 17-5-5 5-5" }], + ["path", { d: "m18 17-5-5 5-5" }] + ]; + + const ChevronsRightLeft = [ + ["path", { d: "m20 17-5-5 5-5" }], + ["path", { d: "m4 17 5-5-5-5" }] + ]; + + const ChevronsRight = [ + ["path", { d: "m6 17 5-5-5-5" }], + ["path", { d: "m13 17 5-5-5-5" }] + ]; + + const ChevronsUpDown = [ + ["path", { d: "m7 15 5 5 5-5" }], + ["path", { d: "m7 9 5-5 5 5" }] + ]; + + const ChevronsUp = [ + ["path", { d: "m17 11-5-5-5 5" }], + ["path", { d: "m17 18-5-5-5 5" }] + ]; + + const Chrome = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["circle", { cx: "12", cy: "12", r: "4" }], + ["line", { x1: "21.17", x2: "12", y1: "8", y2: "8" }], + ["line", { x1: "3.95", x2: "8.54", y1: "6.06", y2: "14" }], + ["line", { x1: "10.88", x2: "15.46", y1: "21.94", y2: "14" }] + ]; + + const Church = [ + ["path", { d: "M10 9h4" }], + ["path", { d: "M12 7v5" }], + ["path", { d: "M14 22v-4a2 2 0 0 0-4 0v4" }], + [ + "path", + { + d: "M18 22V5.618a1 1 0 0 0-.553-.894l-4.553-2.277a2 2 0 0 0-1.788 0L6.553 4.724A1 1 0 0 0 6 5.618V22" + } + ], + [ + "path", + { + d: "m18 7 3.447 1.724a1 1 0 0 1 .553.894V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.618a1 1 0 0 1 .553-.894L6 7" + } + ] + ]; + + const CigaretteOff = [ + ["path", { d: "M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13" }], + ["path", { d: "M18 8c0-2.5-2-2.5-2-5" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866" }], + ["path", { d: "M22 8c0-2.5-2-2.5-2-5" }], + ["path", { d: "M7 12v4" }] + ]; + + const Cigarette = [ + ["path", { d: "M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14" }], + ["path", { d: "M18 8c0-2.5-2-2.5-2-5" }], + ["path", { d: "M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1" }], + ["path", { d: "M22 8c0-2.5-2-2.5-2-5" }], + ["path", { d: "M7 12v4" }] + ]; + + const CircleAlert = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["line", { x1: "12", x2: "12", y1: "8", y2: "12" }], + ["line", { x1: "12", x2: "12.01", y1: "16", y2: "16" }] + ]; + + const CircleArrowDown = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M12 8v8" }], + ["path", { d: "m8 12 4 4 4-4" }] + ]; + + const CircleArrowLeft = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M16 12H8" }], + ["path", { d: "m12 8-4 4 4 4" }] + ]; + + const CircleArrowOutDownLeft = [ + ["path", { d: "M2 12a10 10 0 1 1 10 10" }], + ["path", { d: "m2 22 10-10" }], + ["path", { d: "M8 22H2v-6" }] + ]; + + const CircleArrowOutDownRight = [ + ["path", { d: "M12 22a10 10 0 1 1 10-10" }], + ["path", { d: "M22 22 12 12" }], + ["path", { d: "M22 16v6h-6" }] + ]; + + const CircleArrowOutUpLeft = [ + ["path", { d: "M2 8V2h6" }], + ["path", { d: "m2 2 10 10" }], + ["path", { d: "M12 2A10 10 0 1 1 2 12" }] + ]; + + const CircleArrowOutUpRight = [ + ["path", { d: "M22 12A10 10 0 1 1 12 2" }], + ["path", { d: "M22 2 12 12" }], + ["path", { d: "M16 2h6v6" }] + ]; + + const CircleArrowRight = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M8 12h8" }], + ["path", { d: "m12 16 4-4-4-4" }] + ]; + + const CircleArrowUp = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "m16 12-4-4-4 4" }], + ["path", { d: "M12 16V8" }] + ]; + + const CircleCheckBig = [ + ["path", { d: "M21.801 10A10 10 0 1 1 17 3.335" }], + ["path", { d: "m9 11 3 3L22 4" }] + ]; + + const CircleCheck = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "m9 12 2 2 4-4" }] + ]; + + const CircleChevronDown = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "m16 10-4 4-4-4" }] + ]; + + const CircleChevronLeft = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "m14 16-4-4 4-4" }] + ]; + + const CircleChevronRight = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "m10 8 4 4-4 4" }] + ]; + + const CircleChevronUp = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "m8 14 4-4 4 4" }] + ]; + + const CircleDashed = [ + ["path", { d: "M10.1 2.182a10 10 0 0 1 3.8 0" }], + ["path", { d: "M13.9 21.818a10 10 0 0 1-3.8 0" }], + ["path", { d: "M17.609 3.721a10 10 0 0 1 2.69 2.7" }], + ["path", { d: "M2.182 13.9a10 10 0 0 1 0-3.8" }], + ["path", { d: "M20.279 17.609a10 10 0 0 1-2.7 2.69" }], + ["path", { d: "M21.818 10.1a10 10 0 0 1 0 3.8" }], + ["path", { d: "M3.721 6.391a10 10 0 0 1 2.7-2.69" }], + ["path", { d: "M6.391 20.279a10 10 0 0 1-2.69-2.7" }] + ]; + + const CircleDivide = [ + ["line", { x1: "8", x2: "16", y1: "12", y2: "12" }], + ["line", { x1: "12", x2: "12", y1: "16", y2: "16" }], + ["line", { x1: "12", x2: "12", y1: "8", y2: "8" }], + ["circle", { cx: "12", cy: "12", r: "10" }] + ]; + + const CircleDollarSign = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8" }], + ["path", { d: "M12 18V6" }] + ]; + + const CircleDotDashed = [ + ["path", { d: "M10.1 2.18a9.93 9.93 0 0 1 3.8 0" }], + ["path", { d: "M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7" }], + ["path", { d: "M21.82 10.1a9.93 9.93 0 0 1 0 3.8" }], + ["path", { d: "M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69" }], + ["path", { d: "M13.9 21.82a9.94 9.94 0 0 1-3.8 0" }], + ["path", { d: "M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7" }], + ["path", { d: "M2.18 13.9a9.93 9.93 0 0 1 0-3.8" }], + ["path", { d: "M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69" }], + ["circle", { cx: "12", cy: "12", r: "1" }] + ]; + + const CircleDot = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["circle", { cx: "12", cy: "12", r: "1" }] + ]; + + const CircleEllipsis = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M17 12h.01" }], + ["path", { d: "M12 12h.01" }], + ["path", { d: "M7 12h.01" }] + ]; + + const CircleEqual = [ + ["path", { d: "M7 10h10" }], + ["path", { d: "M7 14h10" }], + ["circle", { cx: "12", cy: "12", r: "10" }] + ]; + + const CircleFadingArrowUp = [ + ["path", { d: "M12 2a10 10 0 0 1 7.38 16.75" }], + ["path", { d: "m16 12-4-4-4 4" }], + ["path", { d: "M12 16V8" }], + ["path", { d: "M2.5 8.875a10 10 0 0 0-.5 3" }], + ["path", { d: "M2.83 16a10 10 0 0 0 2.43 3.4" }], + ["path", { d: "M4.636 5.235a10 10 0 0 1 .891-.857" }], + ["path", { d: "M8.644 21.42a10 10 0 0 0 7.631-.38" }] + ]; + + const CircleFadingPlus = [ + ["path", { d: "M12 2a10 10 0 0 1 7.38 16.75" }], + ["path", { d: "M12 8v8" }], + ["path", { d: "M16 12H8" }], + ["path", { d: "M2.5 8.875a10 10 0 0 0-.5 3" }], + ["path", { d: "M2.83 16a10 10 0 0 0 2.43 3.4" }], + ["path", { d: "M4.636 5.235a10 10 0 0 1 .891-.857" }], + ["path", { d: "M8.644 21.42a10 10 0 0 0 7.631-.38" }] + ]; + + const CircleGauge = [ + ["path", { d: "M15.6 2.7a10 10 0 1 0 5.7 5.7" }], + ["circle", { cx: "12", cy: "12", r: "2" }], + ["path", { d: "M13.4 10.6 19 5" }] + ]; + + const CircleHelp = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }], + ["path", { d: "M12 17h.01" }] + ]; + + const CircleMinus = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M8 12h8" }] + ]; + + const CircleOff = [ + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M8.35 2.69A10 10 0 0 1 21.3 15.65" }], + ["path", { d: "M19.08 19.08A10 10 0 1 1 4.92 4.92" }] + ]; + + const CircleParkingOff = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "m5 5 14 14" }], + ["path", { d: "M13 13a3 3 0 1 0 0-6H9v2" }], + ["path", { d: "M9 17v-2.34" }] + ]; + + const CircleParking = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M9 17V7h4a3 3 0 0 1 0 6H9" }] + ]; + + const CirclePause = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["line", { x1: "10", x2: "10", y1: "15", y2: "9" }], + ["line", { x1: "14", x2: "14", y1: "15", y2: "9" }] + ]; + + const CirclePercent = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "m15 9-6 6" }], + ["path", { d: "M9 9h.01" }], + ["path", { d: "M15 15h.01" }] + ]; + + const CirclePlay = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polygon", { points: "10 8 16 12 10 16 10 8" }] + ]; + + const CirclePlus = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M8 12h8" }], + ["path", { d: "M12 8v8" }] + ]; + + const CirclePower = [ + ["path", { d: "M12 7v4" }], + ["path", { d: "M7.998 9.003a5 5 0 1 0 8-.005" }], + ["circle", { cx: "12", cy: "12", r: "10" }] + ]; + + const CircleSlash2 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M22 2 2 22" }] + ]; + + const CircleSlash = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["line", { x1: "9", x2: "15", y1: "15", y2: "9" }] + ]; + + const CircleSmall = [["circle", { cx: "12", cy: "12", r: "6" }]]; + + const CircleStop = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["rect", { x: "9", y: "9", width: "6", height: "6", rx: "1" }] + ]; + + const CircleUserRound = [ + ["path", { d: "M18 20a6 6 0 0 0-12 0" }], + ["circle", { cx: "12", cy: "10", r: "4" }], + ["circle", { cx: "12", cy: "12", r: "10" }] + ]; + + const CircleUser = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["circle", { cx: "12", cy: "10", r: "3" }], + ["path", { d: "M7 20.662V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.662" }] + ]; + + const CircleX = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "m15 9-6 6" }], + ["path", { d: "m9 9 6 6" }] + ]; + + const Circle = [["circle", { cx: "12", cy: "12", r: "10" }]]; + + const CircuitBoard = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M11 9h4a2 2 0 0 0 2-2V3" }], + ["circle", { cx: "9", cy: "9", r: "2" }], + ["path", { d: "M7 21v-4a2 2 0 0 1 2-2h4" }], + ["circle", { cx: "15", cy: "15", r: "2" }] + ]; + + const Citrus = [ + [ + "path", + { d: "M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z" } + ], + ["path", { d: "M19.65 15.66A8 8 0 0 1 8.35 4.34" }], + ["path", { d: "m14 10-5.5 5.5" }], + ["path", { d: "M14 17.85V10H6.15" }] + ]; + + const Clapperboard = [ + ["path", { d: "M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z" }], + ["path", { d: "m6.2 5.3 3.1 3.9" }], + ["path", { d: "m12.4 3.4 3.1 4" }], + ["path", { d: "M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z" }] + ]; + + const ClipboardCheck = [ + ["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }], + ["path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }], + ["path", { d: "m9 14 2 2 4-4" }] + ]; + + const ClipboardCopy = [ + ["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }], + ["path", { d: "M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2" }], + ["path", { d: "M16 4h2a2 2 0 0 1 2 2v4" }], + ["path", { d: "M21 14H11" }], + ["path", { d: "m15 10-4 4 4 4" }] + ]; + + const ClipboardList = [ + ["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }], + ["path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }], + ["path", { d: "M12 11h4" }], + ["path", { d: "M12 16h4" }], + ["path", { d: "M8 11h.01" }], + ["path", { d: "M8 16h.01" }] + ]; + + const ClipboardMinus = [ + ["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }], + ["path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }], + ["path", { d: "M9 14h6" }] + ]; + + const ClipboardPaste = [ + ["path", { d: "M15 2H9a1 1 0 0 0-1 1v2c0 .6.4 1 1 1h6c.6 0 1-.4 1-1V3c0-.6-.4-1-1-1Z" }], + [ + "path", + { d: "M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2M16 4h2a2 2 0 0 1 2 2v2M11 14h10" } + ], + ["path", { d: "m17 10 4 4-4 4" }] + ]; + + const ClipboardPenLine = [ + ["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1" }], + ["path", { d: "M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5" }], + ["path", { d: "M16 4h2a2 2 0 0 1 1.73 1" }], + ["path", { d: "M8 18h1" }], + [ + "path", + { + d: "M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z" + } + ] + ]; + + const ClipboardPen = [ + ["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1" }], + ["path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5.5" }], + ["path", { d: "M4 13.5V6a2 2 0 0 1 2-2h2" }], + [ + "path", + { + d: "M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z" + } + ] + ]; + + const ClipboardPlus = [ + ["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }], + ["path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }], + ["path", { d: "M9 14h6" }], + ["path", { d: "M12 17v-6" }] + ]; + + const ClipboardType = [ + ["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }], + ["path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }], + ["path", { d: "M9 12v-1h6v1" }], + ["path", { d: "M11 17h2" }], + ["path", { d: "M12 11v6" }] + ]; + + const ClipboardX = [ + ["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }], + ["path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }], + ["path", { d: "m15 11-6 6" }], + ["path", { d: "m9 11 6 6" }] + ]; + + const Clipboard = [ + ["rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }], + ["path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }] + ]; + + const Clock1 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polyline", { points: "12 6 12 12 14.5 8" }] + ]; + + const Clock10 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polyline", { points: "12 6 12 12 8 10" }] + ]; + + const Clock11 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polyline", { points: "12 6 12 12 9.5 8" }] + ]; + + const Clock12 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polyline", { points: "12 6 12 12" }] + ]; + + const Clock2 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polyline", { points: "12 6 12 12 16 10" }] + ]; + + const Clock3 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polyline", { points: "12 6 12 12 16.5 12" }] + ]; + + const Clock4 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polyline", { points: "12 6 12 12 16 14" }] + ]; + + const Clock5 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polyline", { points: "12 6 12 12 14.5 16" }] + ]; + + const Clock6 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polyline", { points: "12 6 12 12 12 16.5" }] + ]; + + const Clock7 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polyline", { points: "12 6 12 12 9.5 16" }] + ]; + + const Clock8 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polyline", { points: "12 6 12 12 8 14" }] + ]; + + const Clock9 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polyline", { points: "12 6 12 12 7.5 12" }] + ]; + + const ClockAlert = [ + ["path", { d: "M12 6v6l4 2" }], + ["path", { d: "M16 21.16a10 10 0 1 1 5-13.516" }], + ["path", { d: "M20 11.5v6" }], + ["path", { d: "M20 21.5h.01" }] + ]; + + const ClockArrowDown = [ + ["path", { d: "M12.338 21.994A10 10 0 1 1 21.925 13.227" }], + ["path", { d: "M12 6v6l2 1" }], + ["path", { d: "m14 18 4 4 4-4" }], + ["path", { d: "M18 14v8" }] + ]; + + const ClockArrowUp = [ + ["path", { d: "M13.228 21.925A10 10 0 1 1 21.994 12.338" }], + ["path", { d: "M12 6v6l1.562.781" }], + ["path", { d: "m14 18 4-4 4 4" }], + ["path", { d: "M18 22v-8" }] + ]; + + const Clock = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["polyline", { points: "12 6 12 12 16 14" }] + ]; + + const CloudAlert = [ + ["path", { d: "M12 12v4" }], + ["path", { d: "M12 20h.01" }], + ["path", { d: "M17 18h.5a1 1 0 0 0 0-9h-1.79A7 7 0 1 0 7 17.708" }] + ]; + + const CloudCog = [ + ["circle", { cx: "12", cy: "17", r: "3" }], + ["path", { d: "M4.2 15.1A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2" }], + ["path", { d: "m15.7 18.4-.9-.3" }], + ["path", { d: "m9.2 15.9-.9-.3" }], + ["path", { d: "m10.6 20.7.3-.9" }], + ["path", { d: "m13.1 14.2.3-.9" }], + ["path", { d: "m13.6 20.7-.4-1" }], + ["path", { d: "m10.8 14.3-.4-1" }], + ["path", { d: "m8.3 18.6 1-.4" }], + ["path", { d: "m14.7 15.8 1-.4" }] + ]; + + const CloudDownload = [ + ["path", { d: "M12 13v8l-4-4" }], + ["path", { d: "m12 21 4-4" }], + ["path", { d: "M4.393 15.269A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.436 8.284" }] + ]; + + const CloudDrizzle = [ + ["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }], + ["path", { d: "M8 19v1" }], + ["path", { d: "M8 14v1" }], + ["path", { d: "M16 19v1" }], + ["path", { d: "M16 14v1" }], + ["path", { d: "M12 21v1" }], + ["path", { d: "M12 16v1" }] + ]; + + const CloudFog = [ + ["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }], + ["path", { d: "M16 17H7" }], + ["path", { d: "M17 21H9" }] + ]; + + const CloudHail = [ + ["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }], + ["path", { d: "M16 14v2" }], + ["path", { d: "M8 14v2" }], + ["path", { d: "M16 20h.01" }], + ["path", { d: "M8 20h.01" }], + ["path", { d: "M12 16v2" }], + ["path", { d: "M12 22h.01" }] + ]; + + const CloudLightning = [ + ["path", { d: "M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973" }], + ["path", { d: "m13 12-3 5h4l-3 5" }] + ]; + + const CloudMoonRain = [ + ["path", { d: "M10.188 8.5A6 6 0 0 1 16 4a1 1 0 0 0 6 6 6 6 0 0 1-3 5.197" }], + ["path", { d: "M11 20v2" }], + ["path", { d: "M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24" }], + ["path", { d: "M7 19v2" }] + ]; + + const CloudMoon = [ + ["path", { d: "M10.188 8.5A6 6 0 0 1 16 4a1 1 0 0 0 6 6 6 6 0 0 1-3 5.197" }], + ["path", { d: "M13 16a3 3 0 1 1 0 6H7a5 5 0 1 1 4.9-6Z" }] + ]; + + const CloudOff = [ + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M5.782 5.782A7 7 0 0 0 9 19h8.5a4.5 4.5 0 0 0 1.307-.193" }], + ["path", { d: "M21.532 16.5A4.5 4.5 0 0 0 17.5 10h-1.79A7.008 7.008 0 0 0 10 5.07" }] + ]; + + const CloudRainWind = [ + ["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }], + ["path", { d: "m9.2 22 3-7" }], + ["path", { d: "m9 13-3 7" }], + ["path", { d: "m17 13-3 7" }] + ]; + + const CloudRain = [ + ["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }], + ["path", { d: "M16 14v6" }], + ["path", { d: "M8 14v6" }], + ["path", { d: "M12 16v6" }] + ]; + + const CloudSnow = [ + ["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }], + ["path", { d: "M8 15h.01" }], + ["path", { d: "M8 19h.01" }], + ["path", { d: "M12 17h.01" }], + ["path", { d: "M12 21h.01" }], + ["path", { d: "M16 15h.01" }], + ["path", { d: "M16 19h.01" }] + ]; + + const CloudSunRain = [ + ["path", { d: "M12 2v2" }], + ["path", { d: "m4.93 4.93 1.41 1.41" }], + ["path", { d: "M20 12h2" }], + ["path", { d: "m19.07 4.93-1.41 1.41" }], + ["path", { d: "M15.947 12.65a4 4 0 0 0-5.925-4.128" }], + ["path", { d: "M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24" }], + ["path", { d: "M11 20v2" }], + ["path", { d: "M7 19v2" }] + ]; + + const CloudSun = [ + ["path", { d: "M12 2v2" }], + ["path", { d: "m4.93 4.93 1.41 1.41" }], + ["path", { d: "M20 12h2" }], + ["path", { d: "m19.07 4.93-1.41 1.41" }], + ["path", { d: "M15.947 12.65a4 4 0 0 0-5.925-4.128" }], + ["path", { d: "M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z" }] + ]; + + const CloudUpload = [ + ["path", { d: "M12 13v8" }], + ["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }], + ["path", { d: "m8 17 4-4 4 4" }] + ]; + + const Cloud = [["path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" }]]; + + const Cloudy = [ + ["path", { d: "M17.5 21H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" }], + ["path", { d: "M22 10a3 3 0 0 0-3-3h-2.207a5.502 5.502 0 0 0-10.702.5" }] + ]; + + const Clover = [ + ["path", { d: "M16.17 7.83 2 22" }], + [ + "path", + { + d: "M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12" + } + ], + ["path", { d: "m7.83 7.83 8.34 8.34" }] + ]; + + const Club = [ + [ + "path", + { d: "M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z" } + ], + ["path", { d: "M12 17.66L12 22" }] + ]; + + const CodeXml = [ + ["path", { d: "m18 16 4-4-4-4" }], + ["path", { d: "m6 8-4 4 4 4" }], + ["path", { d: "m14.5 4-5 16" }] + ]; + + const Code = [ + ["polyline", { points: "16 18 22 12 16 6" }], + ["polyline", { points: "8 6 2 12 8 18" }] + ]; + + const Codepen = [ + ["polygon", { points: "12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2" }], + ["line", { x1: "12", x2: "12", y1: "22", y2: "15.5" }], + ["polyline", { points: "22 8.5 12 15.5 2 8.5" }], + ["polyline", { points: "2 15.5 12 8.5 22 15.5" }], + ["line", { x1: "12", x2: "12", y1: "2", y2: "8.5" }] + ]; + + const Codesandbox = [ + [ + "path", + { + d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z" + } + ], + ["polyline", { points: "7.5 4.21 12 6.81 16.5 4.21" }], + ["polyline", { points: "7.5 19.79 7.5 14.6 3 12" }], + ["polyline", { points: "21 12 16.5 14.6 16.5 19.79" }], + ["polyline", { points: "3.27 6.96 12 12.01 20.73 6.96" }], + ["line", { x1: "12", x2: "12", y1: "22.08", y2: "12" }] + ]; + + const Coffee = [ + ["path", { d: "M10 2v2" }], + ["path", { d: "M14 2v2" }], + [ + "path", + { + d: "M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1" + } + ], + ["path", { d: "M6 2v2" }] + ]; + + const Cog = [ + ["path", { d: "M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z" }], + ["path", { d: "M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" }], + ["path", { d: "M12 2v2" }], + ["path", { d: "M12 22v-2" }], + ["path", { d: "m17 20.66-1-1.73" }], + ["path", { d: "M11 10.27 7 3.34" }], + ["path", { d: "m20.66 17-1.73-1" }], + ["path", { d: "m3.34 7 1.73 1" }], + ["path", { d: "M14 12h8" }], + ["path", { d: "M2 12h2" }], + ["path", { d: "m20.66 7-1.73 1" }], + ["path", { d: "m3.34 17 1.73-1" }], + ["path", { d: "m17 3.34-1 1.73" }], + ["path", { d: "m11 13.73-4 6.93" }] + ]; + + const Coins = [ + ["circle", { cx: "8", cy: "8", r: "6" }], + ["path", { d: "M18.09 10.37A6 6 0 1 1 10.34 18" }], + ["path", { d: "M7 6h1v4" }], + ["path", { d: "m16.71 13.88.7.71-2.82 2.82" }] + ]; + + const Columns2 = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M12 3v18" }] + ]; + + const Columns3 = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M9 3v18" }], + ["path", { d: "M15 3v18" }] + ]; + + const Columns4 = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M7.5 3v18" }], + ["path", { d: "M12 3v18" }], + ["path", { d: "M16.5 3v18" }] + ]; + + const Combine = [ + ["path", { d: "M10 18H5a3 3 0 0 1-3-3v-1" }], + ["path", { d: "M14 2a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2" }], + ["path", { d: "M20 2a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2" }], + ["path", { d: "m7 21 3-3-3-3" }], + ["rect", { x: "14", y: "14", width: "8", height: "8", rx: "2" }], + ["rect", { x: "2", y: "2", width: "8", height: "8", rx: "2" }] + ]; + + const Command = [ + ["path", { d: "M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3" }] + ]; + + const Compass = [ + [ + "path", + { + d: "m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z" + } + ], + ["circle", { cx: "12", cy: "12", r: "10" }] + ]; + + const Component = [ + [ + "path", + { + d: "M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z" + } + ], + [ + "path", + { + d: "M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z" + } + ], + [ + "path", + { + d: "M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z" + } + ], + [ + "path", + { + d: "M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z" + } + ] + ]; + + const Computer = [ + ["rect", { width: "14", height: "8", x: "5", y: "2", rx: "2" }], + ["rect", { width: "20", height: "8", x: "2", y: "14", rx: "2" }], + ["path", { d: "M6 18h2" }], + ["path", { d: "M12 18h6" }] + ]; + + const ConciergeBell = [ + ["path", { d: "M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z" }], + ["path", { d: "M20 16a8 8 0 1 0-16 0" }], + ["path", { d: "M12 4v4" }], + ["path", { d: "M10 4h4" }] + ]; + + const Cone = [ + ["path", { d: "m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98" }], + ["ellipse", { cx: "12", cy: "19", rx: "9", ry: "3" }] + ]; + + const Construction = [ + ["rect", { x: "2", y: "6", width: "20", height: "8", rx: "1" }], + ["path", { d: "M17 14v7" }], + ["path", { d: "M7 14v7" }], + ["path", { d: "M17 3v3" }], + ["path", { d: "M7 3v3" }], + ["path", { d: "M10 14 2.3 6.3" }], + ["path", { d: "m14 6 7.7 7.7" }], + ["path", { d: "m8 6 8 8" }] + ]; + + const ContactRound = [ + ["path", { d: "M16 2v2" }], + ["path", { d: "M17.915 22a6 6 0 0 0-12 0" }], + ["path", { d: "M8 2v2" }], + ["circle", { cx: "12", cy: "12", r: "4" }], + ["rect", { x: "3", y: "4", width: "18", height: "18", rx: "2" }] + ]; + + const Contact = [ + ["path", { d: "M16 2v2" }], + ["path", { d: "M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2" }], + ["path", { d: "M8 2v2" }], + ["circle", { cx: "12", cy: "11", r: "3" }], + ["rect", { x: "3", y: "4", width: "18", height: "18", rx: "2" }] + ]; + + const Container = [ + [ + "path", + { + d: "M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z" + } + ], + ["path", { d: "M10 21.9V14L2.1 9.1" }], + ["path", { d: "m10 14 11.9-6.9" }], + ["path", { d: "M14 19.8v-8.1" }], + ["path", { d: "M18 17.5V9.4" }] + ]; + + const Contrast = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M12 18a6 6 0 0 0 0-12v12z" }] + ]; + + const Cookie = [ + ["path", { d: "M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5" }], + ["path", { d: "M8.5 8.5v.01" }], + ["path", { d: "M16 15.5v.01" }], + ["path", { d: "M12 12v.01" }], + ["path", { d: "M11 17v.01" }], + ["path", { d: "M7 14v.01" }] + ]; + + const CookingPot = [ + ["path", { d: "M2 12h20" }], + ["path", { d: "M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8" }], + ["path", { d: "m4 8 16-4" }], + ["path", { d: "m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8" }] + ]; + + const CopyCheck = [ + ["path", { d: "m12 15 2 2 4-4" }], + ["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }], + ["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" }] + ]; + + const CopyMinus = [ + ["line", { x1: "12", x2: "18", y1: "15", y2: "15" }], + ["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }], + ["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" }] + ]; + + const CopyPlus = [ + ["line", { x1: "15", x2: "15", y1: "12", y2: "18" }], + ["line", { x1: "12", x2: "18", y1: "15", y2: "15" }], + ["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }], + ["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" }] + ]; + + const CopySlash = [ + ["line", { x1: "12", x2: "18", y1: "18", y2: "12" }], + ["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }], + ["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" }] + ]; + + const CopyX = [ + ["line", { x1: "12", x2: "18", y1: "12", y2: "18" }], + ["line", { x1: "12", x2: "18", y1: "18", y2: "12" }], + ["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }], + ["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" }] + ]; + + const Copy = [ + ["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }], + ["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" }] + ]; + + const Copyleft = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M9.17 14.83a4 4 0 1 0 0-5.66" }] + ]; + + const Copyright = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M14.83 14.83a4 4 0 1 1 0-5.66" }] + ]; + + const CornerDownLeft = [ + ["polyline", { points: "9 10 4 15 9 20" }], + ["path", { d: "M20 4v7a4 4 0 0 1-4 4H4" }] + ]; + + const CornerDownRight = [ + ["polyline", { points: "15 10 20 15 15 20" }], + ["path", { d: "M4 4v7a4 4 0 0 0 4 4h12" }] + ]; + + const CornerLeftDown = [ + ["polyline", { points: "14 15 9 20 4 15" }], + ["path", { d: "M20 4h-7a4 4 0 0 0-4 4v12" }] + ]; + + const CornerLeftUp = [ + ["polyline", { points: "14 9 9 4 4 9" }], + ["path", { d: "M20 20h-7a4 4 0 0 1-4-4V4" }] + ]; + + const CornerRightDown = [ + ["polyline", { points: "10 15 15 20 20 15" }], + ["path", { d: "M4 4h7a4 4 0 0 1 4 4v12" }] + ]; + + const CornerRightUp = [ + ["polyline", { points: "10 9 15 4 20 9" }], + ["path", { d: "M4 20h7a4 4 0 0 0 4-4V4" }] + ]; + + const CornerUpLeft = [ + ["polyline", { points: "9 14 4 9 9 4" }], + ["path", { d: "M20 20v-7a4 4 0 0 0-4-4H4" }] + ]; + + const CornerUpRight = [ + ["polyline", { points: "15 14 20 9 15 4" }], + ["path", { d: "M4 20v-7a4 4 0 0 1 4-4h12" }] + ]; + + const Cpu = [ + ["rect", { width: "16", height: "16", x: "4", y: "4", rx: "2" }], + ["rect", { width: "6", height: "6", x: "9", y: "9", rx: "1" }], + ["path", { d: "M15 2v2" }], + ["path", { d: "M15 20v2" }], + ["path", { d: "M2 15h2" }], + ["path", { d: "M2 9h2" }], + ["path", { d: "M20 15h2" }], + ["path", { d: "M20 9h2" }], + ["path", { d: "M9 2v2" }], + ["path", { d: "M9 20v2" }] + ]; + + const CreativeCommons = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1" }], + ["path", { d: "M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1" }] + ]; + + const CreditCard = [ + ["rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }], + ["line", { x1: "2", x2: "22", y1: "10", y2: "10" }] + ]; + + const Croissant = [ + [ + "path", + { + d: "m4.6 13.11 5.79-3.21c1.89-1.05 4.79 1.78 3.71 3.71l-3.22 5.81C8.8 23.16.79 15.23 4.6 13.11Z" + } + ], + [ + "path", + { d: "m10.5 9.5-1-2.29C9.2 6.48 8.8 6 8 6H4.5C2.79 6 2 6.5 2 8.5a7.71 7.71 0 0 0 2 4.83" } + ], + ["path", { d: "M8 6c0-1.55.24-4-2-4-2 0-2.5 2.17-2.5 4" }], + [ + "path", + { + d: "m14.5 13.5 2.29 1c.73.3 1.21.7 1.21 1.5v3.5c0 1.71-.5 2.5-2.5 2.5a7.71 7.71 0 0 1-4.83-2" + } + ], + ["path", { d: "M18 16c1.55 0 4-.24 4 2 0 2-2.17 2.5-4 2.5" }] + ]; + + const Crop = [ + ["path", { d: "M6 2v14a2 2 0 0 0 2 2h14" }], + ["path", { d: "M18 22V8a2 2 0 0 0-2-2H2" }] + ]; + + const Cross = [ + [ + "path", + { + d: "M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z" + } + ] + ]; + + const Crosshair = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["line", { x1: "22", x2: "18", y1: "12", y2: "12" }], + ["line", { x1: "6", x2: "2", y1: "12", y2: "12" }], + ["line", { x1: "12", x2: "12", y1: "6", y2: "2" }], + ["line", { x1: "12", x2: "12", y1: "22", y2: "18" }] + ]; + + const Crown = [ + [ + "path", + { + d: "M11.562 3.266a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.516.294L21.183 5.5a.5.5 0 0 1 .798.519l-2.834 10.246a1 1 0 0 1-.956.734H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.276 3.664a1 1 0 0 0 1.516-.294z" + } + ], + ["path", { d: "M5 21h14" }] + ]; + + const Cuboid = [ + [ + "path", + { + d: "m21.12 6.4-6.05-4.06a2 2 0 0 0-2.17-.05L2.95 8.41a2 2 0 0 0-.95 1.7v5.82a2 2 0 0 0 .88 1.66l6.05 4.07a2 2 0 0 0 2.17.05l9.95-6.12a2 2 0 0 0 .95-1.7V8.06a2 2 0 0 0-.88-1.66Z" + } + ], + ["path", { d: "M10 22v-8L2.25 9.15" }], + ["path", { d: "m10 14 11.77-6.87" }] + ]; + + const CupSoda = [ + ["path", { d: "m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8" }], + ["path", { d: "M5 8h14" }], + ["path", { d: "M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0" }], + ["path", { d: "m12 8 1-6h2" }] + ]; + + const Currency = [ + ["circle", { cx: "12", cy: "12", r: "8" }], + ["line", { x1: "3", x2: "6", y1: "3", y2: "6" }], + ["line", { x1: "21", x2: "18", y1: "3", y2: "6" }], + ["line", { x1: "3", x2: "6", y1: "21", y2: "18" }], + ["line", { x1: "21", x2: "18", y1: "21", y2: "18" }] + ]; + + const Cylinder = [ + ["ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }], + ["path", { d: "M3 5v14a9 3 0 0 0 18 0V5" }] + ]; + + const Dam = [ + ["path", { d: "M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" }], + ["path", { d: "M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" }], + ["path", { d: "M2 10h4" }], + ["path", { d: "M2 14h4" }], + ["path", { d: "M2 18h4" }], + ["path", { d: "M2 6h4" }], + ["path", { d: "M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z" }] + ]; + + const DatabaseBackup = [ + ["ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }], + ["path", { d: "M3 12a9 3 0 0 0 5 2.69" }], + ["path", { d: "M21 9.3V5" }], + ["path", { d: "M3 5v14a9 3 0 0 0 6.47 2.88" }], + ["path", { d: "M12 12v4h4" }], + ["path", { d: "M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16" }] + ]; + + const DatabaseZap = [ + ["ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }], + ["path", { d: "M3 5V19A9 3 0 0 0 15 21.84" }], + ["path", { d: "M21 5V8" }], + ["path", { d: "M21 12L18 17H22L19 22" }], + ["path", { d: "M3 12A9 3 0 0 0 14.59 14.87" }] + ]; + + const Database = [ + ["ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }], + ["path", { d: "M3 5V19A9 3 0 0 0 21 19V5" }], + ["path", { d: "M3 12A9 3 0 0 0 21 12" }] + ]; + + const Delete = [ + [ + "path", + { + d: "M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z" + } + ], + ["path", { d: "m12 9 6 6" }], + ["path", { d: "m18 9-6 6" }] + ]; + + const Dessert = [ + ["circle", { cx: "12", cy: "4", r: "2" }], + [ + "path", + { + d: "M10.2 3.2C5.5 4 2 8.1 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4 0c0-4.9-3.5-9-8.2-9.8" + } + ], + ["path", { d: "M3.2 14.8a9 9 0 0 0 17.6 0" }] + ]; + + const Diameter = [ + ["circle", { cx: "19", cy: "19", r: "2" }], + ["circle", { cx: "5", cy: "5", r: "2" }], + ["path", { d: "M6.48 3.66a10 10 0 0 1 13.86 13.86" }], + ["path", { d: "m6.41 6.41 11.18 11.18" }], + ["path", { d: "M3.66 6.48a10 10 0 0 0 13.86 13.86" }] + ]; + + const DiamondMinus = [ + [ + "path", + { + d: "M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z" + } + ], + ["path", { d: "M8 12h8" }] + ]; + + const DiamondPercent = [ + [ + "path", + { + d: "M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0Z" + } + ], + ["path", { d: "M9.2 9.2h.01" }], + ["path", { d: "m14.5 9.5-5 5" }], + ["path", { d: "M14.7 14.8h.01" }] + ]; + + const DiamondPlus = [ + ["path", { d: "M12 8v8" }], + [ + "path", + { + d: "M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z" + } + ], + ["path", { d: "M8 12h8" }] + ]; + + const Diamond = [ + [ + "path", + { + d: "M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z" + } + ] + ]; + + const Dice1 = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }], + ["path", { d: "M12 12h.01" }] + ]; + + const Dice2 = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }], + ["path", { d: "M15 9h.01" }], + ["path", { d: "M9 15h.01" }] + ]; + + const Dice3 = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }], + ["path", { d: "M16 8h.01" }], + ["path", { d: "M12 12h.01" }], + ["path", { d: "M8 16h.01" }] + ]; + + const Dice4 = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }], + ["path", { d: "M16 8h.01" }], + ["path", { d: "M8 8h.01" }], + ["path", { d: "M8 16h.01" }], + ["path", { d: "M16 16h.01" }] + ]; + + const Dice5 = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }], + ["path", { d: "M16 8h.01" }], + ["path", { d: "M8 8h.01" }], + ["path", { d: "M8 16h.01" }], + ["path", { d: "M16 16h.01" }], + ["path", { d: "M12 12h.01" }] + ]; + + const Dice6 = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }], + ["path", { d: "M16 8h.01" }], + ["path", { d: "M16 12h.01" }], + ["path", { d: "M16 16h.01" }], + ["path", { d: "M8 8h.01" }], + ["path", { d: "M8 12h.01" }], + ["path", { d: "M8 16h.01" }] + ]; + + const Dices = [ + ["rect", { width: "12", height: "12", x: "2", y: "10", rx: "2", ry: "2" }], + ["path", { d: "m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6" }], + ["path", { d: "M6 18h.01" }], + ["path", { d: "M10 14h.01" }], + ["path", { d: "M15 6h.01" }], + ["path", { d: "M18 9h.01" }] + ]; + + const Diff = [ + ["path", { d: "M12 3v14" }], + ["path", { d: "M5 10h14" }], + ["path", { d: "M5 21h14" }] + ]; + + const Disc2 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["circle", { cx: "12", cy: "12", r: "4" }], + ["path", { d: "M12 12h.01" }] + ]; + + const Disc3 = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M6 12c0-1.7.7-3.2 1.8-4.2" }], + ["circle", { cx: "12", cy: "12", r: "2" }], + ["path", { d: "M18 12c0 1.7-.7 3.2-1.8 4.2" }] + ]; + + const DiscAlbum = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["circle", { cx: "12", cy: "12", r: "5" }], + ["path", { d: "M12 12h.01" }] + ]; + + const Disc = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["circle", { cx: "12", cy: "12", r: "2" }] + ]; + + const Divide = [ + ["circle", { cx: "12", cy: "6", r: "1" }], + ["line", { x1: "5", x2: "19", y1: "12", y2: "12" }], + ["circle", { cx: "12", cy: "18", r: "1" }] + ]; + + const DnaOff = [ + ["path", { d: "M15 2c-1.35 1.5-2.092 3-2.5 4.5L14 8" }], + ["path", { d: "m17 6-2.891-2.891" }], + ["path", { d: "M2 15c3.333-3 6.667-3 10-3" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "m20 9 .891.891" }], + ["path", { d: "M22 9c-1.5 1.35-3 2.092-4.5 2.5l-1-1" }], + ["path", { d: "M3.109 14.109 4 15" }], + ["path", { d: "m6.5 12.5 1 1" }], + ["path", { d: "m7 18 2.891 2.891" }], + ["path", { d: "M9 22c1.35-1.5 2.092-3 2.5-4.5L10 16" }] + ]; + + const Dna = [ + ["path", { d: "m10 16 1.5 1.5" }], + ["path", { d: "m14 8-1.5-1.5" }], + ["path", { d: "M15 2c-1.798 1.998-2.518 3.995-2.807 5.993" }], + ["path", { d: "m16.5 10.5 1 1" }], + ["path", { d: "m17 6-2.891-2.891" }], + ["path", { d: "M2 15c6.667-6 13.333 0 20-6" }], + ["path", { d: "m20 9 .891.891" }], + ["path", { d: "M3.109 14.109 4 15" }], + ["path", { d: "m6.5 12.5 1 1" }], + ["path", { d: "m7 18 2.891 2.891" }], + ["path", { d: "M9 22c1.798-1.998 2.518-3.995 2.807-5.993" }] + ]; + + const Dock = [ + ["path", { d: "M2 8h20" }], + ["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }], + ["path", { d: "M6 16h12" }] + ]; + + const Dog = [ + ["path", { d: "M11.25 16.25h1.5L12 17z" }], + ["path", { d: "M16 14v.5" }], + [ + "path", + { + d: "M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309" + } + ], + ["path", { d: "M8 14v.5" }], + [ + "path", + { + d: "M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5" + } + ] + ]; + + const DollarSign = [ + ["line", { x1: "12", x2: "12", y1: "2", y2: "22" }], + ["path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" }] + ]; + + const Donut = [ + [ + "path", + { + d: "M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3" + } + ], + ["circle", { cx: "12", cy: "12", r: "3" }] + ]; + + const DoorClosed = [ + ["path", { d: "M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14" }], + ["path", { d: "M2 20h20" }], + ["path", { d: "M14 12v.01" }] + ]; + + const DoorOpen = [ + ["path", { d: "M13 4h3a2 2 0 0 1 2 2v14" }], + ["path", { d: "M2 20h3" }], + ["path", { d: "M13 20h9" }], + ["path", { d: "M10 12v.01" }], + [ + "path", + { + d: "M13 4.562v16.157a1 1 0 0 1-1.242.97L5 20V5.562a2 2 0 0 1 1.515-1.94l4-1A2 2 0 0 1 13 4.561Z" + } + ] + ]; + + const Dot = [["circle", { cx: "12.1", cy: "12.1", r: "1" }]]; + + const Download = [ + ["path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }], + ["polyline", { points: "7 10 12 15 17 10" }], + ["line", { x1: "12", x2: "12", y1: "15", y2: "3" }] + ]; + + const DraftingCompass = [ + ["path", { d: "m12.99 6.74 1.93 3.44" }], + ["path", { d: "M19.136 12a10 10 0 0 1-14.271 0" }], + ["path", { d: "m21 21-2.16-3.84" }], + ["path", { d: "m3 21 8.02-14.26" }], + ["circle", { cx: "12", cy: "5", r: "2" }] + ]; + + const Drama = [ + ["path", { d: "M10 11h.01" }], + ["path", { d: "M14 6h.01" }], + ["path", { d: "M18 6h.01" }], + ["path", { d: "M6.5 13.1h.01" }], + ["path", { d: "M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3" }], + ["path", { d: "M17.4 9.9c-.8.8-2 .8-2.8 0" }], + [ + "path", + { + d: "M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7" + } + ], + ["path", { d: "M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4" }] + ]; + + const Dribbble = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94" }], + ["path", { d: "M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32" }], + ["path", { d: "M8.56 2.75c4.37 6 6 9.42 8 17.72" }] + ]; + + const Drill = [ + ["path", { d: "M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z" }], + [ + "path", + { + d: "M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8" + } + ], + ["path", { d: "M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3" }], + ["path", { d: "M18 6h4" }], + ["path", { d: "m5 10-2 8" }], + ["path", { d: "m7 18 2-8" }] + ]; + + const DropletOff = [ + [ + "path", + { + d: "M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586" + } + ], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208" }] + ]; + + const Droplet = [ + [ + "path", + { + d: "M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z" + } + ] + ]; + + const Droplets = [ + [ + "path", + { + d: "M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z" + } + ], + [ + "path", + { + d: "M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97" + } + ] + ]; + + const Drum = [ + ["path", { d: "m2 2 8 8" }], + ["path", { d: "m22 2-8 8" }], + ["ellipse", { cx: "12", cy: "9", rx: "10", ry: "5" }], + ["path", { d: "M7 13.4v7.9" }], + ["path", { d: "M12 14v8" }], + ["path", { d: "M17 13.4v7.9" }], + ["path", { d: "M2 9v8a10 5 0 0 0 20 0V9" }] + ]; + + const Drumstick = [ + ["path", { d: "M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23" }], + ["path", { d: "m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59" }] + ]; + + const Dumbbell = [ + ["path", { d: "M14.4 14.4 9.6 9.6" }], + [ + "path", + { + d: "M18.657 21.485a2 2 0 1 1-2.829-2.828l-1.767 1.768a2 2 0 1 1-2.829-2.829l6.364-6.364a2 2 0 1 1 2.829 2.829l-1.768 1.767a2 2 0 1 1 2.828 2.829z" + } + ], + ["path", { d: "m21.5 21.5-1.4-1.4" }], + ["path", { d: "M3.9 3.9 2.5 2.5" }], + [ + "path", + { + d: "M6.404 12.768a2 2 0 1 1-2.829-2.829l1.768-1.767a2 2 0 1 1-2.828-2.829l2.828-2.828a2 2 0 1 1 2.829 2.828l1.767-1.768a2 2 0 1 1 2.829 2.829z" + } + ] + ]; + + const EarOff = [ + ["path", { d: "M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46" }], + ["path", { d: "M6 8.5c0-.75.13-1.47.36-2.14" }], + ["path", { d: "M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76" }], + ["path", { d: "M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Ear = [ + ["path", { d: "M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0" }], + ["path", { d: "M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4" }] + ]; + + const EarthLock = [ + ["path", { d: "M7 3.34V5a3 3 0 0 0 3 3" }], + ["path", { d: "M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05" }], + ["path", { d: "M21.54 15H17a2 2 0 0 0-2 2v4.54" }], + ["path", { d: "M12 2a10 10 0 1 0 9.54 13" }], + ["path", { d: "M20 6V4a2 2 0 1 0-4 0v2" }], + ["rect", { width: "8", height: "5", x: "14", y: "6", rx: "1" }] + ]; + + const Earth = [ + ["path", { d: "M21.54 15H17a2 2 0 0 0-2 2v4.54" }], + [ + "path", + { d: "M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17" } + ], + ["path", { d: "M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05" }], + ["circle", { cx: "12", cy: "12", r: "10" }] + ]; + + const Eclipse = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M12 2a7 7 0 1 0 10 10" }] + ]; + + const EggFried = [ + ["circle", { cx: "11.5", cy: "12.5", r: "3.5" }], + [ + "path", + { + d: "M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z" + } + ] + ]; + + const EggOff = [ + [ + "path", + { + d: "M6.399 6.399C5.362 8.157 4.65 10.189 4.5 12c-.37 4.43 1.27 9.95 7.5 10 3.256-.026 5.259-1.547 6.375-3.625" + } + ], + [ + "path", + { + d: "M19.532 13.875A14.07 14.07 0 0 0 19.5 12c-.36-4.34-3.95-9.96-7.5-10-1.04.012-2.082.502-3.046 1.297" + } + ], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Egg = [ + [ + "path", + { + d: "M12 22c6.23-.05 7.87-5.57 7.5-10-.36-4.34-3.95-9.96-7.5-10-3.55.04-7.14 5.66-7.5 10-.37 4.43 1.27 9.95 7.5 10z" + } + ] + ]; + + const EllipsisVertical = [ + ["circle", { cx: "12", cy: "12", r: "1" }], + ["circle", { cx: "12", cy: "5", r: "1" }], + ["circle", { cx: "12", cy: "19", r: "1" }] + ]; + + const Ellipsis = [ + ["circle", { cx: "12", cy: "12", r: "1" }], + ["circle", { cx: "19", cy: "12", r: "1" }], + ["circle", { cx: "5", cy: "12", r: "1" }] + ]; + + const EqualApproximately = [ + ["path", { d: "M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0" }], + ["path", { d: "M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0" }] + ]; + + const EqualNot = [ + ["line", { x1: "5", x2: "19", y1: "9", y2: "9" }], + ["line", { x1: "5", x2: "19", y1: "15", y2: "15" }], + ["line", { x1: "19", x2: "5", y1: "5", y2: "19" }] + ]; + + const Equal = [ + ["line", { x1: "5", x2: "19", y1: "9", y2: "9" }], + ["line", { x1: "5", x2: "19", y1: "15", y2: "15" }] + ]; + + const Eraser = [ + [ + "path", + { d: "m7 21-4.3-4.3c-1-1-1-2.5 0-3.4l9.6-9.6c1-1 2.5-1 3.4 0l5.6 5.6c1 1 1 2.5 0 3.4L13 21" } + ], + ["path", { d: "M22 21H7" }], + ["path", { d: "m5 11 9 9" }] + ]; + + const EthernetPort = [ + [ + "path", + { d: "m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z" } + ], + ["path", { d: "M6 8v1" }], + ["path", { d: "M10 8v1" }], + ["path", { d: "M14 8v1" }], + ["path", { d: "M18 8v1" }] + ]; + + const Euro = [ + ["path", { d: "M4 10h12" }], + ["path", { d: "M4 14h9" }], + [ + "path", + { d: "M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2" } + ] + ]; + + const Expand = [ + ["path", { d: "m15 15 6 6" }], + ["path", { d: "m15 9 6-6" }], + ["path", { d: "M21 16.2V21h-4.8" }], + ["path", { d: "M21 7.8V3h-4.8" }], + ["path", { d: "M3 16.2V21h4.8" }], + ["path", { d: "m3 21 6-6" }], + ["path", { d: "M3 7.8V3h4.8" }], + ["path", { d: "M9 9 3 3" }] + ]; + + const ExternalLink = [ + ["path", { d: "M15 3h6v6" }], + ["path", { d: "M10 14 21 3" }], + ["path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" }] + ]; + + const EyeClosed = [ + ["path", { d: "m15 18-.722-3.25" }], + ["path", { d: "M2 8a10.645 10.645 0 0 0 20 0" }], + ["path", { d: "m20 15-1.726-2.05" }], + ["path", { d: "m4 15 1.726-2.05" }], + ["path", { d: "m9 18 .722-3.25" }] + ]; + + const EyeOff = [ + [ + "path", + { + d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49" + } + ], + ["path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }], + [ + "path", + { + d: "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143" + } + ], + ["path", { d: "m2 2 20 20" }] + ]; + + const Eye = [ + [ + "path", + { + d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0" + } + ], + ["circle", { cx: "12", cy: "12", r: "3" }] + ]; + + const Facebook = [ + ["path", { d: "M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z" }] + ]; + + const Factory = [ + [ + "path", + { d: "M2 20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8l-7 5V8l-7 5V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z" } + ], + ["path", { d: "M17 18h1" }], + ["path", { d: "M12 18h1" }], + ["path", { d: "M7 18h1" }] + ]; + + const Fan = [ + [ + "path", + { + d: "M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z" + } + ], + ["path", { d: "M12 12v.01" }] + ]; + + const FastForward = [ + ["polygon", { points: "13 19 22 12 13 5 13 19" }], + ["polygon", { points: "2 19 11 12 2 5 2 19" }] + ]; + + const Feather = [ + [ + "path", + { + d: "M12.67 19a2 2 0 0 0 1.416-.588l6.154-6.172a6 6 0 0 0-8.49-8.49L5.586 9.914A2 2 0 0 0 5 11.328V18a1 1 0 0 0 1 1z" + } + ], + ["path", { d: "M16 8 2 22" }], + ["path", { d: "M17.5 15H9" }] + ]; + + const Fence = [ + ["path", { d: "M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z" }], + ["path", { d: "M6 8h4" }], + ["path", { d: "M6 18h4" }], + ["path", { d: "m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z" }], + ["path", { d: "M14 8h4" }], + ["path", { d: "M14 18h4" }], + ["path", { d: "m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z" }] + ]; + + const FerrisWheel = [ + ["circle", { cx: "12", cy: "12", r: "2" }], + ["path", { d: "M12 2v4" }], + ["path", { d: "m6.8 15-3.5 2" }], + ["path", { d: "m20.7 7-3.5 2" }], + ["path", { d: "M6.8 9 3.3 7" }], + ["path", { d: "m20.7 17-3.5-2" }], + ["path", { d: "m9 22 3-8 3 8" }], + ["path", { d: "M8 22h8" }], + ["path", { d: "M18 18.7a9 9 0 1 0-12 0" }] + ]; + + const Figma = [ + ["path", { d: "M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z" }], + ["path", { d: "M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z" }], + ["path", { d: "M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z" }], + ["path", { d: "M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z" }], + ["path", { d: "M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z" }] + ]; + + const FileArchive = [ + ["path", { d: "M10 12v-1" }], + ["path", { d: "M10 18v-2" }], + ["path", { d: "M10 7V6" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01" }], + ["circle", { cx: "10", cy: "20", r: "2" }] + ]; + + const FileAudio2 = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["circle", { cx: "3", cy: "17", r: "1" }], + ["path", { d: "M2 17v-3a4 4 0 0 1 8 0v3" }], + ["circle", { cx: "9", cy: "17", r: "1" }] + ]; + + const FileAudio = [ + ["path", { d: "M17.5 22h.5a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + [ + "path", + { d: "M2 19a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 1 1-4 0v-1a2 2 0 1 1 4 0" } + ] + ]; + + const FileAxis3d = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "m8 18 4-4" }], + ["path", { d: "M8 10v8h8" }] + ]; + + const FileBadge2 = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["circle", { cx: "12", cy: "10", r: "3" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "m14 12.5 1 5.5-3-1-3 1 1-5.5" }] + ]; + + const FileBadge = [ + ["path", { d: "M12 22h6a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M5 17a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z" }], + ["path", { d: "M7 16.5 8 22l-3-1-3 1 1-5.5" }] + ]; + + const FileBox = [ + ["path", { d: "M14.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + [ + "path", + { + d: "M3 13.1a2 2 0 0 0-1 1.76v3.24a2 2 0 0 0 .97 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01Z" + } + ], + ["path", { d: "M7 17v5" }], + ["path", { d: "M11.7 14.2 7 17l-4.7-2.8" }] + ]; + + const FileChartColumnIncreasing = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M8 18v-2" }], + ["path", { d: "M12 18v-4" }], + ["path", { d: "M16 18v-6" }] + ]; + + const FileChartColumn = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M8 18v-1" }], + ["path", { d: "M12 18v-6" }], + ["path", { d: "M16 18v-3" }] + ]; + + const FileChartLine = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "m16 13-3.5 3.5-2-2L8 17" }] + ]; + + const FileChartPie = [ + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.5" }], + ["path", { d: "M4.017 11.512a6 6 0 1 0 8.466 8.475" }], + [ + "path", + { + d: "M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z" + } + ] + ]; + + const FileCheck2 = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "m3 15 2 2 4-4" }] + ]; + + const FileCheck = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "m9 15 2 2 4-4" }] + ]; + + const FileClock = [ + ["path", { d: "M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["circle", { cx: "8", cy: "16", r: "6" }], + ["path", { d: "M9.5 17.5 8 16.25V14" }] + ]; + + const FileCode2 = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "m5 12-3 3 3 3" }], + ["path", { d: "m9 18 3-3-3-3" }] + ]; + + const FileCode = [ + ["path", { d: "M10 12.5 8 15l2 2.5" }], + ["path", { d: "m14 12.5 2 2.5-2 2.5" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" }] + ]; + + const FileCog = [ + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "m3.2 12.9-.9-.4" }], + ["path", { d: "m3.2 15.1-.9.4" }], + ["path", { d: "M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5" }], + ["path", { d: "m4.9 11.2-.4-.9" }], + ["path", { d: "m4.9 16.8-.4.9" }], + ["path", { d: "m7.5 10.3-.4.9" }], + ["path", { d: "m7.5 17.7-.4-.9" }], + ["path", { d: "m9.7 12.5-.9.4" }], + ["path", { d: "m9.7 15.5-.9-.4" }], + ["circle", { cx: "6", cy: "14", r: "3" }] + ]; + + const FileDiff = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M9 10h6" }], + ["path", { d: "M12 13V7" }], + ["path", { d: "M9 17h6" }] + ]; + + const FileDigit = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["rect", { width: "4", height: "6", x: "2", y: "12", rx: "2" }], + ["path", { d: "M10 12h2v6" }], + ["path", { d: "M10 18h4" }] + ]; + + const FileDown = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M12 18v-6" }], + ["path", { d: "m9 15 3 3 3-3" }] + ]; + + const FileHeart = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + [ + "path", + { + d: "M10.29 10.7a2.43 2.43 0 0 0-2.66-.52c-.29.12-.56.3-.78.53l-.35.34-.35-.34a2.43 2.43 0 0 0-2.65-.53c-.3.12-.56.3-.79.53-.95.94-1 2.53.2 3.74L6.5 18l3.6-3.55c1.2-1.21 1.14-2.8.19-3.74Z" + } + ] + ]; + + const FileImage = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["circle", { cx: "10", cy: "12", r: "2" }], + ["path", { d: "m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22" }] + ]; + + const FileInput = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M2 15h10" }], + ["path", { d: "m9 18 3-3-3-3" }] + ]; + + const FileJson2 = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1" }], + ["path", { d: "M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1" }] + ]; + + const FileJson = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1" }], + ["path", { d: "M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1" }] + ]; + + const FileKey2 = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v6" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["circle", { cx: "4", cy: "16", r: "2" }], + ["path", { d: "m10 10-4.5 4.5" }], + ["path", { d: "m9 11 1 1" }] + ]; + + const FileKey = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["circle", { cx: "10", cy: "16", r: "2" }], + ["path", { d: "m16 10-4.5 4.5" }], + ["path", { d: "m15 11 1 1" }] + ]; + + const FileLock2 = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v1" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["rect", { width: "8", height: "5", x: "2", y: "13", rx: "1" }], + ["path", { d: "M8 13v-2a2 2 0 1 0-4 0v2" }] + ]; + + const FileLock = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["rect", { width: "8", height: "6", x: "8", y: "12", rx: "1" }], + ["path", { d: "M10 12v-2a2 2 0 1 1 4 0v2" }] + ]; + + const FileMinus2 = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M3 15h6" }] + ]; + + const FileMinus = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M9 15h6" }] + ]; + + const FileMusic = [ + ["path", { d: "M10.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v8.4" }], + ["path", { d: "M8 18v-7.7L16 9v7" }], + ["circle", { cx: "14", cy: "16", r: "2" }], + ["circle", { cx: "6", cy: "18", r: "2" }] + ]; + + const FileOutput = [ + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M4 7V4a2 2 0 0 1 2-2 2 2 0 0 0-2 2" }], + ["path", { d: "M4.063 20.999a2 2 0 0 0 2 1L18 22a2 2 0 0 0 2-2V7l-5-5H6" }], + ["path", { d: "m5 11-3 3" }], + ["path", { d: "m5 17-3-3h10" }] + ]; + + const FilePenLine = [ + [ + "path", + { d: "m18 5-2.414-2.414A2 2 0 0 0 14.172 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2" } + ], + [ + "path", + { + d: "M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z" + } + ], + ["path", { d: "M8 18h1" }] + ]; + + const FilePen = [ + ["path", { d: "M12.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v9.5" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + [ + "path", + { + d: "M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z" + } + ] + ]; + + const FilePlus2 = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M3 15h6" }], + ["path", { d: "M6 12v6" }] + ]; + + const FilePlus = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M9 15h6" }], + ["path", { d: "M12 18v-6" }] + ]; + + const FileQuestion = [ + ["path", { d: "M12 17h.01" }], + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" }], + ["path", { d: "M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3" }] + ]; + + const FileScan = [ + ["path", { d: "M20 10V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M16 14a2 2 0 0 0-2 2" }], + ["path", { d: "M20 14a2 2 0 0 1 2 2" }], + ["path", { d: "M20 22a2 2 0 0 0 2-2" }], + ["path", { d: "M16 22a2 2 0 0 1-2-2" }] + ]; + + const FileSearch2 = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["circle", { cx: "11.5", cy: "14.5", r: "2.5" }], + ["path", { d: "M13.3 16.3 15 18" }] + ]; + + const FileSearch = [ + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M4.268 21a2 2 0 0 0 1.727 1H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3" }], + ["path", { d: "m9 18-1.5-1.5" }], + ["circle", { cx: "5", cy: "14", r: "3" }] + ]; + + const FileSliders = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M8 12h8" }], + ["path", { d: "M10 11v2" }], + ["path", { d: "M8 17h8" }], + ["path", { d: "M14 16v2" }] + ]; + + const FileSpreadsheet = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M8 13h2" }], + ["path", { d: "M14 13h2" }], + ["path", { d: "M8 17h2" }], + ["path", { d: "M14 17h2" }] + ]; + + const FileStack = [ + ["path", { d: "M21 7h-3a2 2 0 0 1-2-2V2" }], + [ + "path", + { d: "M21 6v6.5c0 .8-.7 1.5-1.5 1.5h-7c-.8 0-1.5-.7-1.5-1.5v-9c0-.8.7-1.5 1.5-1.5H17Z" } + ], + ["path", { d: "M7 8v8.8c0 .3.2.6.4.8.2.2.5.4.8.4H15" }], + ["path", { d: "M3 12v8.8c0 .3.2.6.4.8.2.2.5.4.8.4H11" }] + ]; + + const FileSymlink = [ + ["path", { d: "m10 18 3-3-3-3" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + [ + "path", + { d: "M4 11V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7" } + ] + ]; + + const FileTerminal = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "m8 16 2-2-2-2" }], + ["path", { d: "M12 18h4" }] + ]; + + const FileText = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M10 9H8" }], + ["path", { d: "M16 13H8" }], + ["path", { d: "M16 17H8" }] + ]; + + const FileType2 = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M2 13v-1h6v1" }], + ["path", { d: "M5 12v6" }], + ["path", { d: "M4 18h2" }] + ]; + + const FileType = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M9 13v-1h6v1" }], + ["path", { d: "M12 12v6" }], + ["path", { d: "M11 18h2" }] + ]; + + const FileUp = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M12 12v6" }], + ["path", { d: "m15 15-3-3-3 3" }] + ]; + + const FileUser = [ + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M15 18a3 3 0 1 0-6 0" }], + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" }], + ["circle", { cx: "12", cy: "13", r: "2" }] + ]; + + const FileVideo2 = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["rect", { width: "8", height: "6", x: "2", y: "12", rx: "1" }], + ["path", { d: "m10 15.5 4 2.5v-6l-4 2.5" }] + ]; + + const FileVideo = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "m10 11 5 3-5 3v-6Z" }] + ]; + + const FileVolume2 = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M8 15h.01" }], + ["path", { d: "M11.5 13.5a2.5 2.5 0 0 1 0 3" }], + ["path", { d: "M15 12a5 5 0 0 1 0 6" }] + ]; + + const FileVolume = [ + ["path", { d: "M11 11a5 5 0 0 1 0 6" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M4 6.765V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-.93-.23" }], + [ + "path", + { + d: "M7 10.51a.5.5 0 0 0-.826-.38l-1.893 1.628A1 1 0 0 1 3.63 12H2.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h1.129a1 1 0 0 1 .652.242l1.893 1.63a.5.5 0 0 0 .826-.38z" + } + ] + ]; + + const FileWarning = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M12 9v4" }], + ["path", { d: "M12 17h.01" }] + ]; + + const FileX2 = [ + ["path", { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "m8 12.5-5 5" }], + ["path", { d: "m3 12.5 5 5" }] + ]; + + const FileX = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "m14.5 12.5-5 5" }], + ["path", { d: "m9.5 12.5 5 5" }] + ]; + + const File = [ + ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }], + ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }] + ]; + + const Files = [ + ["path", { d: "M20 7h-3a2 2 0 0 1-2-2V2" }], + ["path", { d: "M9 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7l4 4v10a2 2 0 0 1-2 2Z" }], + ["path", { d: "M3 7.6v12.8A1.6 1.6 0 0 0 4.6 22h9.8" }] + ]; + + const Film = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M7 3v18" }], + ["path", { d: "M3 7.5h4" }], + ["path", { d: "M3 12h18" }], + ["path", { d: "M3 16.5h4" }], + ["path", { d: "M17 3v18" }], + ["path", { d: "M17 7.5h4" }], + ["path", { d: "M17 16.5h4" }] + ]; + + const FilterX = [ + ["path", { d: "M13.013 3H2l8 9.46V19l4 2v-8.54l.9-1.055" }], + ["path", { d: "m22 3-5 5" }], + ["path", { d: "m17 3 5 5" }] + ]; + + const Filter = [["polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" }]]; + + const Fingerprint = [ + ["path", { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" }], + ["path", { d: "M14 13.12c0 2.38 0 6.38-1 8.88" }], + ["path", { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02" }], + ["path", { d: "M2 12a10 10 0 0 1 18-6" }], + ["path", { d: "M2 16h.01" }], + ["path", { d: "M21.8 16c.2-2 .131-5.354 0-6" }], + ["path", { d: "M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2" }], + ["path", { d: "M8.65 22c.21-.66.45-1.32.57-2" }], + ["path", { d: "M9 6.8a6 6 0 0 1 9 5.2v2" }] + ]; + + const FireExtinguisher = [ + ["path", { d: "M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5" }], + ["path", { d: "M9 18h8" }], + ["path", { d: "M18 3h-3" }], + ["path", { d: "M11 3a6 6 0 0 0-6 6v11" }], + ["path", { d: "M5 13h4" }], + ["path", { d: "M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z" }] + ]; + + const FishOff = [ + [ + "path", + { + d: "M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058" + } + ], + [ + "path", + { + d: "M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618" + } + ], + [ + "path", + { + d: "m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20" + } + ] + ]; + + const FishSymbol = [["path", { d: "M2 16s9-15 20-4C11 23 2 8 2 8" }]]; + + const Fish = [ + [ + "path", + { + d: "M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z" + } + ], + ["path", { d: "M18 12v.5" }], + ["path", { d: "M16 17.93a9.77 9.77 0 0 1 0-11.86" }], + [ + "path", + { + d: "M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33" + } + ], + ["path", { d: "M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4" }], + ["path", { d: "m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98" }] + ]; + + const FlagOff = [ + ["path", { d: "M8 2c3 0 5 2 8 2s4-1 4-1v11" }], + ["path", { d: "M4 22V4" }], + ["path", { d: "M4 15s1-1 4-1 5 2 8 2" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const FlagTriangleLeft = [["path", { d: "M17 22V2L7 7l10 5" }]]; + + const FlagTriangleRight = [["path", { d: "M7 22V2l10 5-10 5" }]]; + + const Flag = [ + ["path", { d: "M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z" }], + ["line", { x1: "4", x2: "4", y1: "22", y2: "15" }] + ]; + + const FlameKindling = [ + [ + "path", + { + d: "M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z" + } + ], + ["path", { d: "m5 22 14-4" }], + ["path", { d: "m5 18 14 4" }] + ]; + + const Flame = [ + [ + "path", + { + d: "M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z" + } + ] + ]; + + const FlashlightOff = [ + ["path", { d: "M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4" }], + ["path", { d: "M7 2h11v4c0 2-2 2-2 4v1" }], + ["line", { x1: "11", x2: "18", y1: "6", y2: "6" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Flashlight = [ + ["path", { d: "M18 6c0 2-2 2-2 4v10a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4V2h12z" }], + ["line", { x1: "6", x2: "18", y1: "6", y2: "6" }], + ["line", { x1: "12", x2: "12", y1: "12", y2: "12" }] + ]; + + const FlaskConicalOff = [ + ["path", { d: "M10 2v2.343" }], + ["path", { d: "M14 2v6.343" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.755-2.96l5.227-9.563" }], + ["path", { d: "M6.453 15H15" }], + ["path", { d: "M8.5 2h7" }] + ]; + + const FlaskConical = [ + [ + "path", + { + d: "M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2" + } + ], + ["path", { d: "M6.453 15h11.094" }], + ["path", { d: "M8.5 2h7" }] + ]; + + const FlaskRound = [ + ["path", { d: "M10 2v6.292a7 7 0 1 0 4 0V2" }], + ["path", { d: "M5 15h14" }], + ["path", { d: "M8.5 2h7" }] + ]; + + const FlipHorizontal2 = [ + ["path", { d: "m3 7 5 5-5 5V7" }], + ["path", { d: "m21 7-5 5 5 5V7" }], + ["path", { d: "M12 20v2" }], + ["path", { d: "M12 14v2" }], + ["path", { d: "M12 8v2" }], + ["path", { d: "M12 2v2" }] + ]; + + const FlipHorizontal = [ + ["path", { d: "M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3" }], + ["path", { d: "M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3" }], + ["path", { d: "M12 20v2" }], + ["path", { d: "M12 14v2" }], + ["path", { d: "M12 8v2" }], + ["path", { d: "M12 2v2" }] + ]; + + const FlipVertical2 = [ + ["path", { d: "m17 3-5 5-5-5h10" }], + ["path", { d: "m17 21-5-5-5 5h10" }], + ["path", { d: "M4 12H2" }], + ["path", { d: "M10 12H8" }], + ["path", { d: "M16 12h-2" }], + ["path", { d: "M22 12h-2" }] + ]; + + const FlipVertical = [ + ["path", { d: "M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3" }], + ["path", { d: "M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3" }], + ["path", { d: "M4 12H2" }], + ["path", { d: "M10 12H8" }], + ["path", { d: "M16 12h-2" }], + ["path", { d: "M22 12h-2" }] + ]; + + const Flower2 = [ + [ + "path", + { + d: "M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1" + } + ], + ["circle", { cx: "12", cy: "8", r: "2" }], + ["path", { d: "M12 10v12" }], + ["path", { d: "M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z" }], + ["path", { d: "M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z" }] + ]; + + const Flower = [ + ["circle", { cx: "12", cy: "12", r: "3" }], + [ + "path", + { + d: "M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5" + } + ], + ["path", { d: "M12 7.5V9" }], + ["path", { d: "M7.5 12H9" }], + ["path", { d: "M16.5 12H15" }], + ["path", { d: "M12 16.5V15" }], + ["path", { d: "m8 8 1.88 1.88" }], + ["path", { d: "M14.12 9.88 16 8" }], + ["path", { d: "m8 16 1.88-1.88" }], + ["path", { d: "M14.12 14.12 16 16" }] + ]; + + const Focus = [ + ["circle", { cx: "12", cy: "12", r: "3" }], + ["path", { d: "M3 7V5a2 2 0 0 1 2-2h2" }], + ["path", { d: "M17 3h2a2 2 0 0 1 2 2v2" }], + ["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2" }] + ]; + + const FoldHorizontal = [ + ["path", { d: "M2 12h6" }], + ["path", { d: "M22 12h-6" }], + ["path", { d: "M12 2v2" }], + ["path", { d: "M12 8v2" }], + ["path", { d: "M12 14v2" }], + ["path", { d: "M12 20v2" }], + ["path", { d: "m19 9-3 3 3 3" }], + ["path", { d: "m5 15 3-3-3-3" }] + ]; + + const FoldVertical = [ + ["path", { d: "M12 22v-6" }], + ["path", { d: "M12 8V2" }], + ["path", { d: "M4 12H2" }], + ["path", { d: "M10 12H8" }], + ["path", { d: "M16 12h-2" }], + ["path", { d: "M22 12h-2" }], + ["path", { d: "m15 19-3-3-3 3" }], + ["path", { d: "m15 5-3 3-3-3" }] + ]; + + const FolderArchive = [ + ["circle", { cx: "15", cy: "19", r: "2" }], + [ + "path", + { + d: "M20.9 19.8A2 2 0 0 0 22 18V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h5.1" + } + ], + ["path", { d: "M15 11v-1" }], + ["path", { d: "M15 17v-2" }] + ]; + + const FolderCheck = [ + [ + "path", + { + d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" + } + ], + ["path", { d: "m9 13 2 2 4-4" }] + ]; + + const FolderClock = [ + ["circle", { cx: "16", cy: "16", r: "6" }], + [ + "path", + { + d: "M7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2" + } + ], + ["path", { d: "M16 14v2l1 1" }] + ]; + + const FolderClosed = [ + [ + "path", + { + d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" + } + ], + ["path", { d: "M2 10h20" }] + ]; + + const FolderCode = [ + ["path", { d: "M10 10.5 8 13l2 2.5" }], + ["path", { d: "m14 10.5 2 2.5-2 2.5" }], + [ + "path", + { + d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z" + } + ] + ]; + + const FolderCog = [ + ["circle", { cx: "18", cy: "18", r: "3" }], + [ + "path", + { + d: "M10.3 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v3.3" + } + ], + ["path", { d: "m21.7 19.4-.9-.3" }], + ["path", { d: "m15.2 16.9-.9-.3" }], + ["path", { d: "m16.6 21.7.3-.9" }], + ["path", { d: "m19.1 15.2.3-.9" }], + ["path", { d: "m19.6 21.7-.4-1" }], + ["path", { d: "m16.8 15.3-.4-1" }], + ["path", { d: "m14.3 19.6 1-.4" }], + ["path", { d: "m20.7 16.8 1-.4" }] + ]; + + const FolderDot = [ + [ + "path", + { + d: "M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z" + } + ], + ["circle", { cx: "12", cy: "13", r: "1" }] + ]; + + const FolderDown = [ + [ + "path", + { + d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" + } + ], + ["path", { d: "M12 10v6" }], + ["path", { d: "m15 13-3 3-3-3" }] + ]; + + const FolderGit2 = [ + [ + "path", + { + d: "M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5" + } + ], + ["circle", { cx: "13", cy: "12", r: "2" }], + ["path", { d: "M18 19c-2.8 0-5-2.2-5-5v8" }], + ["circle", { cx: "20", cy: "19", r: "2" }] + ]; + + const FolderGit = [ + ["circle", { cx: "12", cy: "13", r: "2" }], + [ + "path", + { + d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" + } + ], + ["path", { d: "M14 13h3" }], + ["path", { d: "M7 13h3" }] + ]; + + const FolderHeart = [ + [ + "path", + { + d: "M11 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v1.5" + } + ], + [ + "path", + { + d: "M13.9 17.45c-1.2-1.2-1.14-2.8-.2-3.73a2.43 2.43 0 0 1 3.44 0l.36.34.34-.34a2.43 2.43 0 0 1 3.45-.01c.95.95 1 2.53-.2 3.74L17.5 21Z" + } + ] + ]; + + const FolderInput = [ + [ + "path", + { + d: "M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1" + } + ], + ["path", { d: "M2 13h10" }], + ["path", { d: "m9 16 3-3-3-3" }] + ]; + + const FolderKanban = [ + [ + "path", + { + d: "M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z" + } + ], + ["path", { d: "M8 10v4" }], + ["path", { d: "M12 10v2" }], + ["path", { d: "M16 10v6" }] + ]; + + const FolderKey = [ + ["circle", { cx: "16", cy: "20", r: "2" }], + [ + "path", + { + d: "M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2" + } + ], + ["path", { d: "m22 14-4.5 4.5" }], + ["path", { d: "m21 15 1 1" }] + ]; + + const FolderLock = [ + ["rect", { width: "8", height: "5", x: "14", y: "17", rx: "1" }], + [ + "path", + { + d: "M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2.5" + } + ], + ["path", { d: "M20 17v-2a2 2 0 1 0-4 0v2" }] + ]; + + const FolderMinus = [ + ["path", { d: "M9 13h6" }], + [ + "path", + { + d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" + } + ] + ]; + + const FolderOpenDot = [ + [ + "path", + { + d: "m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2" + } + ], + ["circle", { cx: "14", cy: "15", r: "1" }] + ]; + + const FolderOpen = [ + [ + "path", + { + d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" + } + ] + ]; + + const FolderOutput = [ + [ + "path", + { + d: "M2 7.5V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-1.5" + } + ], + ["path", { d: "M2 13h10" }], + ["path", { d: "m5 10-3 3 3 3" }] + ]; + + const FolderPen = [ + [ + "path", + { + d: "M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5" + } + ], + [ + "path", + { + d: "M11.378 13.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z" + } + ] + ]; + + const FolderPlus = [ + ["path", { d: "M12 10v6" }], + ["path", { d: "M9 13h6" }], + [ + "path", + { + d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" + } + ] + ]; + + const FolderRoot = [ + [ + "path", + { + d: "M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z" + } + ], + ["circle", { cx: "12", cy: "13", r: "2" }], + ["path", { d: "M12 15v5" }] + ]; + + const FolderSearch2 = [ + ["circle", { cx: "11.5", cy: "12.5", r: "2.5" }], + [ + "path", + { + d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" + } + ], + ["path", { d: "M13.3 14.3 15 16" }] + ]; + + const FolderSearch = [ + [ + "path", + { + d: "M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1" + } + ], + ["path", { d: "m21 21-1.9-1.9" }], + ["circle", { cx: "17", cy: "17", r: "3" }] + ]; + + const FolderSymlink = [ + [ + "path", + { + d: "M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7" + } + ], + ["path", { d: "m8 16 3-3-3-3" }] + ]; + + const FolderSync = [ + [ + "path", + { + d: "M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v.5" + } + ], + ["path", { d: "M12 10v4h4" }], + ["path", { d: "m12 14 1.535-1.605a5 5 0 0 1 8 1.5" }], + ["path", { d: "M22 22v-4h-4" }], + ["path", { d: "m22 18-1.535 1.605a5 5 0 0 1-8-1.5" }] + ]; + + const FolderTree = [ + [ + "path", + { + d: "M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z" + } + ], + [ + "path", + { + d: "M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z" + } + ], + ["path", { d: "M3 5a2 2 0 0 0 2 2h3" }], + ["path", { d: "M3 3v13a2 2 0 0 0 2 2h3" }] + ]; + + const FolderUp = [ + [ + "path", + { + d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" + } + ], + ["path", { d: "M12 10v6" }], + ["path", { d: "m9 13 3-3 3 3" }] + ]; + + const FolderX = [ + [ + "path", + { + d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" + } + ], + ["path", { d: "m9.5 10.5 5 5" }], + ["path", { d: "m14.5 10.5-5 5" }] + ]; + + const Folder = [ + [ + "path", + { + d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" + } + ] + ]; + + const Folders = [ + [ + "path", + { + d: "M20 17a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3.9a2 2 0 0 1-1.69-.9l-.81-1.2a2 2 0 0 0-1.67-.9H8a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2Z" + } + ], + ["path", { d: "M2 8v11a2 2 0 0 0 2 2h14" }] + ]; + + const Footprints = [ + [ + "path", + { + d: "M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z" + } + ], + [ + "path", + { + d: "M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z" + } + ], + ["path", { d: "M16 17h4" }], + ["path", { d: "M4 13h4" }] + ]; + + const Forklift = [ + ["path", { d: "M12 12H5a2 2 0 0 0-2 2v5" }], + ["circle", { cx: "13", cy: "19", r: "2" }], + ["circle", { cx: "5", cy: "19", r: "2" }], + ["path", { d: "M8 19h3m5-17v17h6M6 12V7c0-1.1.9-2 2-2h3l5 5" }] + ]; + + const Forward = [ + ["polyline", { points: "15 17 20 12 15 7" }], + ["path", { d: "M4 18v-2a4 4 0 0 1 4-4h12" }] + ]; + + const Frame = [ + ["line", { x1: "22", x2: "2", y1: "6", y2: "6" }], + ["line", { x1: "22", x2: "2", y1: "18", y2: "18" }], + ["line", { x1: "6", x2: "6", y1: "2", y2: "22" }], + ["line", { x1: "18", x2: "18", y1: "2", y2: "22" }] + ]; + + const Framer = [["path", { d: "M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7" }]]; + + const Frown = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M16 16s-1.5-2-4-2-4 2-4 2" }], + ["line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }], + ["line", { x1: "15", x2: "15.01", y1: "9", y2: "9" }] + ]; + + const Fuel = [ + ["line", { x1: "3", x2: "15", y1: "22", y2: "22" }], + ["line", { x1: "4", x2: "14", y1: "9", y2: "9" }], + ["path", { d: "M14 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v18" }], + [ + "path", + { d: "M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 2 2a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L18 5" } + ] + ]; + + const Fullscreen = [ + ["path", { d: "M3 7V5a2 2 0 0 1 2-2h2" }], + ["path", { d: "M17 3h2a2 2 0 0 1 2 2v2" }], + ["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2" }], + ["rect", { width: "10", height: "8", x: "7", y: "8", rx: "1" }] + ]; + + const GalleryHorizontalEnd = [ + ["path", { d: "M2 7v10" }], + ["path", { d: "M6 5v14" }], + ["rect", { width: "12", height: "18", x: "10", y: "3", rx: "2" }] + ]; + + const GalleryHorizontal = [ + ["path", { d: "M2 3v18" }], + ["rect", { width: "12", height: "18", x: "6", y: "3", rx: "2" }], + ["path", { d: "M22 3v18" }] + ]; + + const GalleryThumbnails = [ + ["rect", { width: "18", height: "14", x: "3", y: "3", rx: "2" }], + ["path", { d: "M4 21h1" }], + ["path", { d: "M9 21h1" }], + ["path", { d: "M14 21h1" }], + ["path", { d: "M19 21h1" }] + ]; + + const GalleryVerticalEnd = [ + ["path", { d: "M7 2h10" }], + ["path", { d: "M5 6h14" }], + ["rect", { width: "18", height: "12", x: "3", y: "10", rx: "2" }] + ]; + + const GalleryVertical = [ + ["path", { d: "M3 2h18" }], + ["rect", { width: "18", height: "12", x: "3", y: "6", rx: "2" }], + ["path", { d: "M3 22h18" }] + ]; + + const Gamepad2 = [ + ["line", { x1: "6", x2: "10", y1: "11", y2: "11" }], + ["line", { x1: "8", x2: "8", y1: "9", y2: "13" }], + ["line", { x1: "15", x2: "15.01", y1: "12", y2: "12" }], + ["line", { x1: "18", x2: "18.01", y1: "10", y2: "10" }], + [ + "path", + { + d: "M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z" + } + ] + ]; + + const Gamepad = [ + ["line", { x1: "6", x2: "10", y1: "12", y2: "12" }], + ["line", { x1: "8", x2: "8", y1: "10", y2: "14" }], + ["line", { x1: "15", x2: "15.01", y1: "13", y2: "13" }], + ["line", { x1: "18", x2: "18.01", y1: "11", y2: "11" }], + ["rect", { width: "20", height: "12", x: "2", y: "6", rx: "2" }] + ]; + + const Gauge = [ + ["path", { d: "m12 14 4-4" }], + ["path", { d: "M3.34 19a10 10 0 1 1 17.32 0" }] + ]; + + const Gavel = [ + ["path", { d: "m14.5 12.5-8 8a2.119 2.119 0 1 1-3-3l8-8" }], + ["path", { d: "m16 16 6-6" }], + ["path", { d: "m8 8 6-6" }], + ["path", { d: "m9 7 8 8" }], + ["path", { d: "m21 11-8-8" }] + ]; + + const Gem = [ + ["path", { d: "M6 3h12l4 6-10 13L2 9Z" }], + ["path", { d: "M11 3 8 9l4 13 4-13-3-6" }], + ["path", { d: "M2 9h20" }] + ]; + + const Ghost = [ + ["path", { d: "M9 10h.01" }], + ["path", { d: "M15 10h.01" }], + ["path", { d: "M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z" }] + ]; + + const Gift = [ + ["rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }], + ["path", { d: "M12 8v13" }], + ["path", { d: "M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7" }], + ["path", { d: "M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5" }] + ]; + + const GitBranchPlus = [ + ["path", { d: "M6 3v12" }], + ["path", { d: "M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" }], + ["path", { d: "M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" }], + ["path", { d: "M15 6a9 9 0 0 0-9 9" }], + ["path", { d: "M18 15v6" }], + ["path", { d: "M21 18h-6" }] + ]; + + const GitBranch = [ + ["line", { x1: "6", x2: "6", y1: "3", y2: "15" }], + ["circle", { cx: "18", cy: "6", r: "3" }], + ["circle", { cx: "6", cy: "18", r: "3" }], + ["path", { d: "M18 9a9 9 0 0 1-9 9" }] + ]; + + const GitCommitHorizontal = [ + ["circle", { cx: "12", cy: "12", r: "3" }], + ["line", { x1: "3", x2: "9", y1: "12", y2: "12" }], + ["line", { x1: "15", x2: "21", y1: "12", y2: "12" }] + ]; + + const GitCommitVertical = [ + ["path", { d: "M12 3v6" }], + ["circle", { cx: "12", cy: "12", r: "3" }], + ["path", { d: "M12 15v6" }] + ]; + + const GitCompareArrows = [ + ["circle", { cx: "5", cy: "6", r: "3" }], + ["path", { d: "M12 6h5a2 2 0 0 1 2 2v7" }], + ["path", { d: "m15 9-3-3 3-3" }], + ["circle", { cx: "19", cy: "18", r: "3" }], + ["path", { d: "M12 18H7a2 2 0 0 1-2-2V9" }], + ["path", { d: "m9 15 3 3-3 3" }] + ]; + + const GitCompare = [ + ["circle", { cx: "18", cy: "18", r: "3" }], + ["circle", { cx: "6", cy: "6", r: "3" }], + ["path", { d: "M13 6h3a2 2 0 0 1 2 2v7" }], + ["path", { d: "M11 18H8a2 2 0 0 1-2-2V9" }] + ]; + + const GitFork = [ + ["circle", { cx: "12", cy: "18", r: "3" }], + ["circle", { cx: "6", cy: "6", r: "3" }], + ["circle", { cx: "18", cy: "6", r: "3" }], + ["path", { d: "M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9" }], + ["path", { d: "M12 12v3" }] + ]; + + const GitGraph = [ + ["circle", { cx: "5", cy: "6", r: "3" }], + ["path", { d: "M5 9v6" }], + ["circle", { cx: "5", cy: "18", r: "3" }], + ["path", { d: "M12 3v18" }], + ["circle", { cx: "19", cy: "6", r: "3" }], + ["path", { d: "M16 15.7A9 9 0 0 0 19 9" }] + ]; + + const GitMerge = [ + ["circle", { cx: "18", cy: "18", r: "3" }], + ["circle", { cx: "6", cy: "6", r: "3" }], + ["path", { d: "M6 21V9a9 9 0 0 0 9 9" }] + ]; + + const GitPullRequestArrow = [ + ["circle", { cx: "5", cy: "6", r: "3" }], + ["path", { d: "M5 9v12" }], + ["circle", { cx: "19", cy: "18", r: "3" }], + ["path", { d: "m15 9-3-3 3-3" }], + ["path", { d: "M12 6h5a2 2 0 0 1 2 2v7" }] + ]; + + const GitPullRequestClosed = [ + ["circle", { cx: "6", cy: "6", r: "3" }], + ["path", { d: "M6 9v12" }], + ["path", { d: "m21 3-6 6" }], + ["path", { d: "m21 9-6-6" }], + ["path", { d: "M18 11.5V15" }], + ["circle", { cx: "18", cy: "18", r: "3" }] + ]; + + const GitPullRequestCreateArrow = [ + ["circle", { cx: "5", cy: "6", r: "3" }], + ["path", { d: "M5 9v12" }], + ["path", { d: "m15 9-3-3 3-3" }], + ["path", { d: "M12 6h5a2 2 0 0 1 2 2v3" }], + ["path", { d: "M19 15v6" }], + ["path", { d: "M22 18h-6" }] + ]; + + const GitPullRequestCreate = [ + ["circle", { cx: "6", cy: "6", r: "3" }], + ["path", { d: "M6 9v12" }], + ["path", { d: "M13 6h3a2 2 0 0 1 2 2v3" }], + ["path", { d: "M18 15v6" }], + ["path", { d: "M21 18h-6" }] + ]; + + const GitPullRequestDraft = [ + ["circle", { cx: "18", cy: "18", r: "3" }], + ["circle", { cx: "6", cy: "6", r: "3" }], + ["path", { d: "M18 6V5" }], + ["path", { d: "M18 11v-1" }], + ["line", { x1: "6", x2: "6", y1: "9", y2: "21" }] + ]; + + const GitPullRequest = [ + ["circle", { cx: "18", cy: "18", r: "3" }], + ["circle", { cx: "6", cy: "6", r: "3" }], + ["path", { d: "M13 6h3a2 2 0 0 1 2 2v7" }], + ["line", { x1: "6", x2: "6", y1: "9", y2: "21" }] + ]; + + const Github = [ + [ + "path", + { + d: "M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4" + } + ], + ["path", { d: "M9 18c-4.51 2-5-2-7-2" }] + ]; + + const Gitlab = [ + [ + "path", + { + d: "m22 13.29-3.33-10a.42.42 0 0 0-.14-.18.38.38 0 0 0-.22-.11.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18l-2.26 6.67H8.32L6.1 3.26a.42.42 0 0 0-.1-.18.38.38 0 0 0-.26-.08.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18L2 13.29a.74.74 0 0 0 .27.83L12 21l9.69-6.88a.71.71 0 0 0 .31-.83Z" + } + ] + ]; + + const GlassWater = [ + [ + "path", + { + d: "M5.116 4.104A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.105L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z" + } + ], + ["path", { d: "M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0" }] + ]; + + const Glasses = [ + ["circle", { cx: "6", cy: "15", r: "4" }], + ["circle", { cx: "18", cy: "15", r: "4" }], + ["path", { d: "M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2" }], + ["path", { d: "M2.5 13 5 7c.7-1.3 1.4-2 3-2" }], + ["path", { d: "M21.5 13 19 7c-.7-1.3-1.5-2-3-2" }] + ]; + + const GlobeLock = [ + ["path", { d: "M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13" }], + ["path", { d: "M2 12h8.5" }], + ["path", { d: "M20 6V4a2 2 0 1 0-4 0v2" }], + ["rect", { width: "8", height: "5", x: "14", y: "6", rx: "1" }] + ]; + + const Globe = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }], + ["path", { d: "M2 12h20" }] + ]; + + const Goal = [ + ["path", { d: "M12 13V2l8 4-8 4" }], + ["path", { d: "M20.561 10.222a9 9 0 1 1-12.55-5.29" }], + ["path", { d: "M8.002 9.997a5 5 0 1 0 8.9 2.02" }] + ]; + + const Grab = [ + ["path", { d: "M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4" }], + ["path", { d: "M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2" }], + ["path", { d: "M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5" }], + ["path", { d: "M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2" }], + ["path", { d: "M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0" }] + ]; + + const GraduationCap = [ + [ + "path", + { + d: "M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z" + } + ], + ["path", { d: "M22 10v6" }], + ["path", { d: "M6 12.5V16a6 3 0 0 0 12 0v-3.5" }] + ]; + + const Grape = [ + ["path", { d: "M22 5V2l-5.89 5.89" }], + ["circle", { cx: "16.6", cy: "15.89", r: "3" }], + ["circle", { cx: "8.11", cy: "7.4", r: "3" }], + ["circle", { cx: "12.35", cy: "11.65", r: "3" }], + ["circle", { cx: "13.91", cy: "5.85", r: "3" }], + ["circle", { cx: "18.15", cy: "10.09", r: "3" }], + ["circle", { cx: "6.56", cy: "13.2", r: "3" }], + ["circle", { cx: "10.8", cy: "17.44", r: "3" }], + ["circle", { cx: "5", cy: "19", r: "3" }] + ]; + + const Grid2x2Check = [ + [ + "path", + { + d: "M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3" + } + ], + ["path", { d: "m16 19 2 2 4-4" }] + ]; + + const Grid2x2Plus = [ + [ + "path", + { + d: "M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3" + } + ], + ["path", { d: "M16 19h6" }], + ["path", { d: "M19 22v-6" }] + ]; + + const Grid2x2X = [ + [ + "path", + { + d: "M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3" + } + ], + ["path", { d: "m16 16 5 5" }], + ["path", { d: "m16 21 5-5" }] + ]; + + const Grid2x2 = [ + ["path", { d: "M12 3v18" }], + ["path", { d: "M3 12h18" }], + ["rect", { x: "3", y: "3", width: "18", height: "18", rx: "2" }] + ]; + + const Grid3x3 = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M3 9h18" }], + ["path", { d: "M3 15h18" }], + ["path", { d: "M9 3v18" }], + ["path", { d: "M15 3v18" }] + ]; + + const GripHorizontal = [ + ["circle", { cx: "12", cy: "9", r: "1" }], + ["circle", { cx: "19", cy: "9", r: "1" }], + ["circle", { cx: "5", cy: "9", r: "1" }], + ["circle", { cx: "12", cy: "15", r: "1" }], + ["circle", { cx: "19", cy: "15", r: "1" }], + ["circle", { cx: "5", cy: "15", r: "1" }] + ]; + + const GripVertical = [ + ["circle", { cx: "9", cy: "12", r: "1" }], + ["circle", { cx: "9", cy: "5", r: "1" }], + ["circle", { cx: "9", cy: "19", r: "1" }], + ["circle", { cx: "15", cy: "12", r: "1" }], + ["circle", { cx: "15", cy: "5", r: "1" }], + ["circle", { cx: "15", cy: "19", r: "1" }] + ]; + + const Grip = [ + ["circle", { cx: "12", cy: "5", r: "1" }], + ["circle", { cx: "19", cy: "5", r: "1" }], + ["circle", { cx: "5", cy: "5", r: "1" }], + ["circle", { cx: "12", cy: "12", r: "1" }], + ["circle", { cx: "19", cy: "12", r: "1" }], + ["circle", { cx: "5", cy: "12", r: "1" }], + ["circle", { cx: "12", cy: "19", r: "1" }], + ["circle", { cx: "19", cy: "19", r: "1" }], + ["circle", { cx: "5", cy: "19", r: "1" }] + ]; + + const Group = [ + ["path", { d: "M3 7V5c0-1.1.9-2 2-2h2" }], + ["path", { d: "M17 3h2c1.1 0 2 .9 2 2v2" }], + ["path", { d: "M21 17v2c0 1.1-.9 2-2 2h-2" }], + ["path", { d: "M7 21H5c-1.1 0-2-.9-2-2v-2" }], + ["rect", { width: "7", height: "5", x: "7", y: "7", rx: "1" }], + ["rect", { width: "7", height: "5", x: "10", y: "12", rx: "1" }] + ]; + + const Guitar = [ + ["path", { d: "m11.9 12.1 4.514-4.514" }], + [ + "path", + { + d: "M20.1 2.3a1 1 0 0 0-1.4 0l-1.114 1.114A2 2 0 0 0 17 4.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 17.828 7h1.344a2 2 0 0 0 1.414-.586L21.7 5.3a1 1 0 0 0 0-1.4z" + } + ], + ["path", { d: "m6 16 2 2" }], + [ + "path", + { + d: "M8.2 9.9C8.7 8.8 9.8 8 11 8c2.8 0 5 2.2 5 5 0 1.2-.8 2.3-1.9 2.8l-.9.4A2 2 0 0 0 12 18a4 4 0 0 1-4 4c-3.3 0-6-2.7-6-6a4 4 0 0 1 4-4 2 2 0 0 0 1.8-1.2z" + } + ], + ["circle", { cx: "11.5", cy: "12.5", r: ".5", fill: "currentColor" }] + ]; + + const Ham = [ + ["path", { d: "M13.144 21.144A7.274 10.445 45 1 0 2.856 10.856" }], + [ + "path", + { d: "M13.144 21.144A7.274 4.365 45 0 0 2.856 10.856a7.274 4.365 45 0 0 10.288 10.288" } + ], + [ + "path", + { + d: "M16.565 10.435 18.6 8.4a2.501 2.501 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.024 2.025" + } + ], + ["path", { d: "m8.5 16.5-1-1" }] + ]; + + const Hammer = [ + ["path", { d: "m15 12-8.373 8.373a1 1 0 1 1-3-3L12 9" }], + ["path", { d: "m18 15 4-4" }], + [ + "path", + { + d: "m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172V7l-2.26-2.26a6 6 0 0 0-4.202-1.756L9 2.96l.92.82A6.18 6.18 0 0 1 12 8.4V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5" + } + ] + ]; + + const HandCoins = [ + ["path", { d: "M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17" }], + [ + "path", + { + d: "m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9" + } + ], + ["path", { d: "m2 16 6 6" }], + ["circle", { cx: "16", cy: "9", r: "2.9" }], + ["circle", { cx: "6", cy: "5", r: "3" }] + ]; + + const HandHeart = [ + ["path", { d: "M11 14h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16" }], + [ + "path", + { + d: "m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9" + } + ], + ["path", { d: "m2 15 6 6" }], + [ + "path", + { + d: "M19.5 8.5c.7-.7 1.5-1.6 1.5-2.7A2.73 2.73 0 0 0 16 4a2.78 2.78 0 0 0-5 1.8c0 1.2.8 2 1.5 2.8L16 12Z" + } + ] + ]; + + const HandHelping = [ + ["path", { d: "M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14" }], + [ + "path", + { + d: "m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9" + } + ], + ["path", { d: "m2 13 6 6" }] + ]; + + const HandMetal = [ + ["path", { d: "M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4" }], + ["path", { d: "M14 11V9a2 2 0 1 0-4 0v2" }], + ["path", { d: "M10 10.5V5a2 2 0 1 0-4 0v9" }], + [ + "path", + { + d: "m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5" + } + ] + ]; + + const HandPlatter = [ + ["path", { d: "M12 3V2" }], + [ + "path", + { + d: "m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.302-1.464A1 1 0 0 0 6.151 19H5" + } + ], + ["path", { d: "M2 14h12a2 2 0 0 1 0 4h-2" }], + ["path", { d: "M4 10h16" }], + ["path", { d: "M5 10a7 7 0 0 1 14 0" }], + ["path", { d: "M5 14v6a1 1 0 0 1-1 1H2" }] + ]; + + const Hand = [ + ["path", { d: "M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2" }], + ["path", { d: "M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2" }], + ["path", { d: "M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8" }], + [ + "path", + { + d: "M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15" + } + ] + ]; + + const Handshake = [ + ["path", { d: "m11 17 2 2a1 1 0 1 0 3-3" }], + [ + "path", + { + d: "m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4" + } + ], + ["path", { d: "m21 3 1 11h-2" }], + ["path", { d: "M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3" }], + ["path", { d: "M3 4h8" }] + ]; + + const HardDriveDownload = [ + ["path", { d: "M12 2v8" }], + ["path", { d: "m16 6-4 4-4-4" }], + ["rect", { width: "20", height: "8", x: "2", y: "14", rx: "2" }], + ["path", { d: "M6 18h.01" }], + ["path", { d: "M10 18h.01" }] + ]; + + const HardDriveUpload = [ + ["path", { d: "m16 6-4-4-4 4" }], + ["path", { d: "M12 2v8" }], + ["rect", { width: "20", height: "8", x: "2", y: "14", rx: "2" }], + ["path", { d: "M6 18h.01" }], + ["path", { d: "M10 18h.01" }] + ]; + + const HardDrive = [ + ["line", { x1: "22", x2: "2", y1: "12", y2: "12" }], + [ + "path", + { + d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" + } + ], + ["line", { x1: "6", x2: "6.01", y1: "16", y2: "16" }], + ["line", { x1: "10", x2: "10.01", y1: "16", y2: "16" }] + ]; + + const HardHat = [ + ["path", { d: "M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5" }], + ["path", { d: "M14 6a6 6 0 0 1 6 6v3" }], + ["path", { d: "M4 15v-3a6 6 0 0 1 6-6" }], + ["rect", { x: "2", y: "15", width: "20", height: "4", rx: "1" }] + ]; + + const Hash = [ + ["line", { x1: "4", x2: "20", y1: "9", y2: "9" }], + ["line", { x1: "4", x2: "20", y1: "15", y2: "15" }], + ["line", { x1: "10", x2: "8", y1: "3", y2: "21" }], + ["line", { x1: "16", x2: "14", y1: "3", y2: "21" }] + ]; + + const Haze = [ + ["path", { d: "m5.2 6.2 1.4 1.4" }], + ["path", { d: "M2 13h2" }], + ["path", { d: "M20 13h2" }], + ["path", { d: "m17.4 7.6 1.4-1.4" }], + ["path", { d: "M22 17H2" }], + ["path", { d: "M22 21H2" }], + ["path", { d: "M16 13a4 4 0 0 0-8 0" }], + ["path", { d: "M12 5V2.5" }] + ]; + + const HdmiPort = [ + [ + "path", + { d: "M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z" } + ], + ["path", { d: "M7.5 12h9" }] + ]; + + const Heading1 = [ + ["path", { d: "M4 12h8" }], + ["path", { d: "M4 18V6" }], + ["path", { d: "M12 18V6" }], + ["path", { d: "m17 12 3-2v8" }] + ]; + + const Heading2 = [ + ["path", { d: "M4 12h8" }], + ["path", { d: "M4 18V6" }], + ["path", { d: "M12 18V6" }], + ["path", { d: "M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1" }] + ]; + + const Heading3 = [ + ["path", { d: "M4 12h8" }], + ["path", { d: "M4 18V6" }], + ["path", { d: "M12 18V6" }], + ["path", { d: "M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2" }], + ["path", { d: "M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2" }] + ]; + + const Heading4 = [ + ["path", { d: "M12 18V6" }], + ["path", { d: "M17 10v3a1 1 0 0 0 1 1h3" }], + ["path", { d: "M21 10v8" }], + ["path", { d: "M4 12h8" }], + ["path", { d: "M4 18V6" }] + ]; + + const Heading5 = [ + ["path", { d: "M4 12h8" }], + ["path", { d: "M4 18V6" }], + ["path", { d: "M12 18V6" }], + ["path", { d: "M17 13v-3h4" }], + ["path", { d: "M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17" }] + ]; + + const Heading6 = [ + ["path", { d: "M4 12h8" }], + ["path", { d: "M4 18V6" }], + ["path", { d: "M12 18V6" }], + ["circle", { cx: "19", cy: "16", r: "2" }], + ["path", { d: "M20 10c-2 2-3 3.5-3 6" }] + ]; + + const Heading = [ + ["path", { d: "M6 12h12" }], + ["path", { d: "M6 20V4" }], + ["path", { d: "M18 20V4" }] + ]; + + const HeadphoneOff = [ + ["path", { d: "M21 14h-1.343" }], + ["path", { d: "M9.128 3.47A9 9 0 0 1 21 12v3.343" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M20.414 20.414A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3" }], + ["path", { d: "M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.636-6.364" }] + ]; + + const Headphones = [ + [ + "path", + { + d: "M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3" + } + ] + ]; + + const Headset = [ + [ + "path", + { + d: "M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z" + } + ], + ["path", { d: "M21 16v2a4 4 0 0 1-4 4h-5" }] + ]; + + const HeartCrack = [ + [ + "path", + { + d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" + } + ], + ["path", { d: "m12 13-1-1 2-2-3-3 2-2" }] + ]; + + const HeartHandshake = [ + [ + "path", + { + d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" + } + ], + [ + "path", + { + d: "M12 5 9.04 7.96a2.17 2.17 0 0 0 0 3.08c.82.82 2.13.85 3 .07l2.07-1.9a2.82 2.82 0 0 1 3.79 0l2.96 2.66" + } + ], + ["path", { d: "m18 15-2-2" }], + ["path", { d: "m15 18-2-2" }] + ]; + + const HeartOff = [ + ["line", { x1: "2", y1: "2", x2: "22", y2: "22" }], + ["path", { d: "M16.5 16.5 12 21l-7-7c-1.5-1.45-3-3.2-3-5.5a5.5 5.5 0 0 1 2.14-4.35" }], + [ + "path", + { + d: "M8.76 3.1c1.15.22 2.13.78 3.24 1.9 1.5-1.5 2.74-2 4.5-2A5.5 5.5 0 0 1 22 8.5c0 2.12-1.3 3.78-2.67 5.17" + } + ] + ]; + + const HeartPulse = [ + [ + "path", + { + d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" + } + ], + ["path", { d: "M3.22 12H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27" }] + ]; + + const Heart = [ + [ + "path", + { + d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" + } + ] + ]; + + const Heater = [ + ["path", { d: "M11 8c2-3-2-3 0-6" }], + ["path", { d: "M15.5 8c2-3-2-3 0-6" }], + ["path", { d: "M6 10h.01" }], + ["path", { d: "M6 14h.01" }], + ["path", { d: "M10 16v-4" }], + ["path", { d: "M14 16v-4" }], + ["path", { d: "M18 16v-4" }], + ["path", { d: "M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3" }], + ["path", { d: "M5 20v2" }], + ["path", { d: "M19 20v2" }] + ]; + + const Hexagon = [ + [ + "path", + { + d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z" + } + ] + ]; + + const Highlighter = [ + ["path", { d: "m9 11-6 6v3h9l3-3" }], + ["path", { d: "m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4" }] + ]; + + const History = [ + ["path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }], + ["path", { d: "M3 3v5h5" }], + ["path", { d: "M12 7v5l4 2" }] + ]; + + const HopOff = [ + ["path", { d: "M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27" }], + [ + "path", + { d: "M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28" } + ], + ["path", { d: "M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26" }], + [ + "path", + { d: "M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25" } + ], + ["path", { d: "M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75" }], + [ + "path", + { + d: "M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24" + } + ], + [ + "path", + { d: "M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28" } + ], + ["path", { d: "M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05" }], + ["path", { d: "m2 2 20 20" }] + ]; + + const Hop = [ + [ + "path", + { d: "M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18" } + ], + [ + "path", + { + d: "M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88" + } + ], + [ + "path", + { d: "M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36" } + ], + [ + "path", + { d: "M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87" } + ], + [ + "path", + { d: "M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08" } + ], + [ + "path", + { d: "M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57" } + ], + ["path", { d: "M4.93 4.93 3 3a.7.7 0 0 1 0-1" }], + [ + "path", + { + d: "M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15" + } + ] + ]; + + const Hospital = [ + ["path", { d: "M12 6v4" }], + ["path", { d: "M14 14h-4" }], + ["path", { d: "M14 18h-4" }], + ["path", { d: "M14 8h-4" }], + ["path", { d: "M18 12h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2" }], + ["path", { d: "M18 22V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v18" }] + ]; + + const Hotel = [ + ["path", { d: "M10 22v-6.57" }], + ["path", { d: "M12 11h.01" }], + ["path", { d: "M12 7h.01" }], + ["path", { d: "M14 15.43V22" }], + ["path", { d: "M15 16a5 5 0 0 0-6 0" }], + ["path", { d: "M16 11h.01" }], + ["path", { d: "M16 7h.01" }], + ["path", { d: "M8 11h.01" }], + ["path", { d: "M8 7h.01" }], + ["rect", { x: "4", y: "2", width: "16", height: "20", rx: "2" }] + ]; + + const Hourglass = [ + ["path", { d: "M5 22h14" }], + ["path", { d: "M5 2h14" }], + ["path", { d: "M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22" }], + ["path", { d: "M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2" }] + ]; + + const HousePlug = [ + ["path", { d: "M10 12V8.964" }], + ["path", { d: "M14 12V8.964" }], + ["path", { d: "M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z" }], + [ + "path", + { + d: "M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2" + } + ] + ]; + + const HousePlus = [ + [ + "path", + { + d: "M13.22 2.416a2 2 0 0 0-2.511.057l-7 5.999A2 2 0 0 0 3 10v9a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7.354" + } + ], + ["path", { d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8" }], + ["path", { d: "M15 6h6" }], + ["path", { d: "M18 3v6" }] + ]; + + const HouseWifi = [ + ["path", { d: "M9.5 13.866a4 4 0 0 1 5 .01" }], + ["path", { d: "M12 17h.01" }], + [ + "path", + { + d: "M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" + } + ], + ["path", { d: "M7 10.754a8 8 0 0 1 10 0" }] + ]; + + const House = [ + ["path", { d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8" }], + [ + "path", + { + d: "M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" + } + ] + ]; + + const IceCreamBowl = [ + [ + "path", + { d: "M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0" } + ], + ["path", { d: "M12.14 11a3.5 3.5 0 1 1 6.71 0" }], + ["path", { d: "M15.5 6.5a3.5 3.5 0 1 0-7 0" }] + ]; + + const IceCreamCone = [ + ["path", { d: "m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11" }], + ["path", { d: "M17 7A5 5 0 0 0 7 7" }], + ["path", { d: "M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4" }] + ]; + + const IdCard = [ + ["path", { d: "M16 10h2" }], + ["path", { d: "M16 14h2" }], + ["path", { d: "M6.17 15a3 3 0 0 1 5.66 0" }], + ["circle", { cx: "9", cy: "11", r: "2" }], + ["rect", { x: "2", y: "5", width: "20", height: "14", rx: "2" }] + ]; + + const ImageDown = [ + [ + "path", + { + d: "M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21" + } + ], + ["path", { d: "m14 19 3 3v-5.5" }], + ["path", { d: "m17 22 3-3" }], + ["circle", { cx: "9", cy: "9", r: "2" }] + ]; + + const ImageMinus = [ + ["path", { d: "M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7" }], + ["line", { x1: "16", x2: "22", y1: "5", y2: "5" }], + ["circle", { cx: "9", cy: "9", r: "2" }], + ["path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" }] + ]; + + const ImageOff = [ + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }], + ["path", { d: "M10.41 10.41a2 2 0 1 1-2.83-2.83" }], + ["line", { x1: "13.5", x2: "6", y1: "13.5", y2: "21" }], + ["line", { x1: "18", x2: "21", y1: "12", y2: "15" }], + ["path", { d: "M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59" }], + ["path", { d: "M21 15V5a2 2 0 0 0-2-2H9" }] + ]; + + const ImagePlay = [ + ["path", { d: "m11 16-5 5" }], + ["path", { d: "M11 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6.5" }], + [ + "path", + { + d: "M15.765 22a.5.5 0 0 1-.765-.424V13.38a.5.5 0 0 1 .765-.424l5.878 3.674a1 1 0 0 1 0 1.696z" + } + ], + ["circle", { cx: "9", cy: "9", r: "2" }] + ]; + + const ImagePlus = [ + ["path", { d: "M16 5h6" }], + ["path", { d: "M19 2v6" }], + ["path", { d: "M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5" }], + ["path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" }], + ["circle", { cx: "9", cy: "9", r: "2" }] + ]; + + const ImageUp = [ + [ + "path", + { + d: "M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21" + } + ], + ["path", { d: "m14 19.5 3-3 3 3" }], + ["path", { d: "M17 22v-5.5" }], + ["circle", { cx: "9", cy: "9", r: "2" }] + ]; + + const ImageUpscale = [ + ["path", { d: "M16 3h5v5" }], + ["path", { d: "M17 21h2a2 2 0 0 0 2-2" }], + ["path", { d: "M21 12v3" }], + ["path", { d: "m21 3-5 5" }], + ["path", { d: "M3 7V5a2 2 0 0 1 2-2" }], + ["path", { d: "m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19" }], + ["path", { d: "M9 3h3" }], + ["rect", { x: "3", y: "11", width: "10", height: "10", rx: "1" }] + ]; + + const Image = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }], + ["circle", { cx: "9", cy: "9", r: "2" }], + ["path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" }] + ]; + + const Images = [ + ["path", { d: "M18 22H4a2 2 0 0 1-2-2V6" }], + ["path", { d: "m22 13-1.296-1.296a2.41 2.41 0 0 0-3.408 0L11 18" }], + ["circle", { cx: "12", cy: "8", r: "2" }], + ["rect", { width: "16", height: "16", x: "6", y: "2", rx: "2" }] + ]; + + const Import = [ + ["path", { d: "M12 3v12" }], + ["path", { d: "m8 11 4 4 4-4" }], + ["path", { d: "M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4" }] + ]; + + const Inbox = [ + ["polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }], + [ + "path", + { + d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" + } + ] + ]; + + const IndentDecrease = [ + ["path", { d: "M21 12H11" }], + ["path", { d: "M21 18H11" }], + ["path", { d: "M21 6H11" }], + ["path", { d: "m7 8-4 4 4 4" }] + ]; + + const IndentIncrease = [ + ["path", { d: "M21 12H11" }], + ["path", { d: "M21 18H11" }], + ["path", { d: "M21 6H11" }], + ["path", { d: "m3 8 4 4-4 4" }] + ]; + + const IndianRupee = [ + ["path", { d: "M6 3h12" }], + ["path", { d: "M6 8h12" }], + ["path", { d: "m6 13 8.5 8" }], + ["path", { d: "M6 13h3" }], + ["path", { d: "M9 13c6.667 0 6.667-10 0-10" }] + ]; + + const Infinity = [ + [ + "path", + { + d: "M12 12c-2-2.67-4-4-6-4a4 4 0 1 0 0 8c2 0 4-1.33 6-4Zm0 0c2 2.67 4 4 6 4a4 4 0 0 0 0-8c-2 0-4 1.33-6 4Z" + } + ] + ]; + + const Info = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M12 16v-4" }], + ["path", { d: "M12 8h.01" }] + ]; + + const InspectionPanel = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M7 7h.01" }], + ["path", { d: "M17 7h.01" }], + ["path", { d: "M7 17h.01" }], + ["path", { d: "M17 17h.01" }] + ]; + + const Instagram = [ + ["rect", { width: "20", height: "20", x: "2", y: "2", rx: "5", ry: "5" }], + ["path", { d: "M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z" }], + ["line", { x1: "17.5", x2: "17.51", y1: "6.5", y2: "6.5" }] + ]; + + const Italic = [ + ["line", { x1: "19", x2: "10", y1: "4", y2: "4" }], + ["line", { x1: "14", x2: "5", y1: "20", y2: "20" }], + ["line", { x1: "15", x2: "9", y1: "4", y2: "20" }] + ]; + + const IterationCcw = [ + ["path", { d: "M20 10c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8h8" }], + ["polyline", { points: "16 14 20 18 16 22" }] + ]; + + const IterationCw = [ + ["path", { d: "M4 10c0-4.4 3.6-8 8-8s8 3.6 8 8-3.6 8-8 8H4" }], + ["polyline", { points: "8 22 4 18 8 14" }] + ]; + + const JapaneseYen = [ + ["path", { d: "M12 9.5V21m0-11.5L6 3m6 6.5L18 3" }], + ["path", { d: "M6 15h12" }], + ["path", { d: "M6 11h12" }] + ]; + + const Joystick = [ + ["path", { d: "M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z" }], + ["path", { d: "M6 15v-2" }], + ["path", { d: "M12 15V9" }], + ["circle", { cx: "12", cy: "6", r: "3" }] + ]; + + const Kanban = [ + ["path", { d: "M6 5v11" }], + ["path", { d: "M12 5v6" }], + ["path", { d: "M18 5v14" }] + ]; + + const KeyRound = [ + [ + "path", + { + d: "M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z" + } + ], + ["circle", { cx: "16.5", cy: "7.5", r: ".5", fill: "currentColor" }] + ]; + + const KeySquare = [ + [ + "path", + { + d: "M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z" + } + ], + ["path", { d: "m14 7 3 3" }], + [ + "path", + { + d: "m9.4 10.6-6.814 6.814A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814" + } + ] + ]; + + const Key = [ + ["path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4" }], + ["path", { d: "m21 2-9.6 9.6" }], + ["circle", { cx: "7.5", cy: "15.5", r: "5.5" }] + ]; + + const KeyboardMusic = [ + ["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }], + ["path", { d: "M6 8h4" }], + ["path", { d: "M14 8h.01" }], + ["path", { d: "M18 8h.01" }], + ["path", { d: "M2 12h20" }], + ["path", { d: "M6 12v4" }], + ["path", { d: "M10 12v4" }], + ["path", { d: "M14 12v4" }], + ["path", { d: "M18 12v4" }] + ]; + + const KeyboardOff = [ + ["path", { d: "M 20 4 A2 2 0 0 1 22 6" }], + ["path", { d: "M 22 6 L 22 16.41" }], + ["path", { d: "M 7 16 L 16 16" }], + ["path", { d: "M 9.69 4 L 20 4" }], + ["path", { d: "M14 8h.01" }], + ["path", { d: "M18 8h.01" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2" }], + ["path", { d: "M6 8h.01" }], + ["path", { d: "M8 12h.01" }] + ]; + + const Keyboard = [ + ["path", { d: "M10 8h.01" }], + ["path", { d: "M12 12h.01" }], + ["path", { d: "M14 8h.01" }], + ["path", { d: "M16 12h.01" }], + ["path", { d: "M18 8h.01" }], + ["path", { d: "M6 8h.01" }], + ["path", { d: "M7 16h10" }], + ["path", { d: "M8 12h.01" }], + ["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }] + ]; + + const LampCeiling = [ + ["path", { d: "M12 2v5" }], + ["path", { d: "M6 7h12l4 9H2l4-9Z" }], + ["path", { d: "M9.17 16a3 3 0 1 0 5.66 0" }] + ]; + + const LampDesk = [ + ["path", { d: "m14 5-3 3 2 7 8-8-7-2Z" }], + ["path", { d: "m14 5-3 3-3-3 3-3 3 3Z" }], + ["path", { d: "M9.5 6.5 4 12l3 6" }], + ["path", { d: "M3 22v-2c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v2H3Z" }] + ]; + + const LampFloor = [ + ["path", { d: "M9 2h6l3 7H6l3-7Z" }], + ["path", { d: "M12 9v13" }], + ["path", { d: "M9 22h6" }] + ]; + + const LampWallDown = [ + ["path", { d: "M11 13h6l3 7H8l3-7Z" }], + ["path", { d: "M14 13V8a2 2 0 0 0-2-2H8" }], + ["path", { d: "M4 9h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4v6Z" }] + ]; + + const LampWallUp = [ + ["path", { d: "M11 4h6l3 7H8l3-7Z" }], + ["path", { d: "M14 11v5a2 2 0 0 1-2 2H8" }], + ["path", { d: "M4 15h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4v-6Z" }] + ]; + + const Lamp = [ + ["path", { d: "M8 2h8l4 10H4L8 2Z" }], + ["path", { d: "M12 12v6" }], + ["path", { d: "M8 22v-2c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v2H8Z" }] + ]; + + const LandPlot = [ + ["path", { d: "m12 8 6-3-6-3v10" }], + [ + "path", + { + d: "m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12" + } + ], + ["path", { d: "m6.49 12.85 11.02 6.3" }], + ["path", { d: "M17.51 12.85 6.5 19.15" }] + ]; + + const Landmark = [ + ["line", { x1: "3", x2: "21", y1: "22", y2: "22" }], + ["line", { x1: "6", x2: "6", y1: "18", y2: "11" }], + ["line", { x1: "10", x2: "10", y1: "18", y2: "11" }], + ["line", { x1: "14", x2: "14", y1: "18", y2: "11" }], + ["line", { x1: "18", x2: "18", y1: "18", y2: "11" }], + ["polygon", { points: "12 2 20 7 4 7" }] + ]; + + const Languages = [ + ["path", { d: "m5 8 6 6" }], + ["path", { d: "m4 14 6-6 2-3" }], + ["path", { d: "M2 5h12" }], + ["path", { d: "M7 2h1" }], + ["path", { d: "m22 22-5-10-5 10" }], + ["path", { d: "M14 18h6" }] + ]; + + const LaptopMinimalCheck = [ + ["path", { d: "M2 20h20" }], + ["path", { d: "m9 10 2 2 4-4" }], + ["rect", { x: "3", y: "4", width: "18", height: "12", rx: "2" }] + ]; + + const LaptopMinimal = [ + ["rect", { width: "18", height: "12", x: "3", y: "4", rx: "2", ry: "2" }], + ["line", { x1: "2", x2: "22", y1: "20", y2: "20" }] + ]; + + const Laptop = [ + [ + "path", + { + d: "M20 16V7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v9m16 0H4m16 0 1.28 2.55a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45L4 16" + } + ] + ]; + + const LassoSelect = [ + ["path", { d: "M7 22a5 5 0 0 1-2-4" }], + ["path", { d: "M7 16.93c.96.43 1.96.74 2.99.91" }], + [ + "path", + { d: "M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2" } + ], + ["path", { d: "M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z" }], + [ + "path", + { + d: "M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z" + } + ] + ]; + + const Lasso = [ + ["path", { d: "M7 22a5 5 0 0 1-2-4" }], + [ + "path", + { d: "M3.3 14A6.8 6.8 0 0 1 2 10c0-4.4 4.5-8 10-8s10 3.6 10 8-4.5 8-10 8a12 12 0 0 1-5-1" } + ], + ["path", { d: "M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z" }] + ]; + + const Laugh = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z" }], + ["line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }], + ["line", { x1: "15", x2: "15.01", y1: "9", y2: "9" }] + ]; + + const Layers2 = [ + [ + "path", + { + d: "m16.02 12 5.48 3.13a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74L7.98 12" + } + ], + [ + "path", + { + d: "M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74Z" + } + ] + ]; + + const Layers = [ + [ + "path", + { + d: "M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z" + } + ], + ["path", { d: "M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12" }], + ["path", { d: "M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17" }] + ]; + + const LayoutDashboard = [ + ["rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }], + ["rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }], + ["rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }], + ["rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" }] + ]; + + const LayoutGrid = [ + ["rect", { width: "7", height: "7", x: "3", y: "3", rx: "1" }], + ["rect", { width: "7", height: "7", x: "14", y: "3", rx: "1" }], + ["rect", { width: "7", height: "7", x: "14", y: "14", rx: "1" }], + ["rect", { width: "7", height: "7", x: "3", y: "14", rx: "1" }] + ]; + + const LayoutList = [ + ["rect", { width: "7", height: "7", x: "3", y: "3", rx: "1" }], + ["rect", { width: "7", height: "7", x: "3", y: "14", rx: "1" }], + ["path", { d: "M14 4h7" }], + ["path", { d: "M14 9h7" }], + ["path", { d: "M14 15h7" }], + ["path", { d: "M14 20h7" }] + ]; + + const LayoutPanelLeft = [ + ["rect", { width: "7", height: "18", x: "3", y: "3", rx: "1" }], + ["rect", { width: "7", height: "7", x: "14", y: "3", rx: "1" }], + ["rect", { width: "7", height: "7", x: "14", y: "14", rx: "1" }] + ]; + + const LayoutPanelTop = [ + ["rect", { width: "18", height: "7", x: "3", y: "3", rx: "1" }], + ["rect", { width: "7", height: "7", x: "3", y: "14", rx: "1" }], + ["rect", { width: "7", height: "7", x: "14", y: "14", rx: "1" }] + ]; + + const LayoutTemplate = [ + ["rect", { width: "18", height: "7", x: "3", y: "3", rx: "1" }], + ["rect", { width: "9", height: "7", x: "3", y: "14", rx: "1" }], + ["rect", { width: "5", height: "7", x: "16", y: "14", rx: "1" }] + ]; + + const Leaf = [ + [ + "path", + { d: "M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z" } + ], + ["path", { d: "M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12" }] + ]; + + const LeafyGreen = [ + [ + "path", + { + d: "M2 22c1.25-.987 2.27-1.975 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.187-2.353 3.5 3.5 0 0 0 3.69-5.116A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.831 1.373 3.5 3.5 0 0 0-5.116 3.69 4 4 0 0 0-2.348 6.155C3.499 15.42 4.409 16.712 4.2 18.1 3.926 19.743 3.014 20.732 2 22" + } + ], + ["path", { d: "M2 22 17 7" }] + ]; + + const Lectern = [ + [ + "path", + { + d: "M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3" + } + ], + ["path", { d: "M18 6V3a1 1 0 0 0-1-1h-3" }], + ["rect", { width: "8", height: "12", x: "8", y: "10", rx: "1" }] + ]; + + const LetterText = [ + ["path", { d: "M15 12h6" }], + ["path", { d: "M15 6h6" }], + ["path", { d: "m3 13 3.553-7.724a.5.5 0 0 1 .894 0L11 13" }], + ["path", { d: "M3 18h18" }], + ["path", { d: "M4 11h6" }] + ]; + + const LibraryBig = [ + ["rect", { width: "8", height: "18", x: "3", y: "3", rx: "1" }], + ["path", { d: "M7 3v18" }], + [ + "path", + { + d: "M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z" + } + ] + ]; + + const Library = [ + ["path", { d: "m16 6 4 14" }], + ["path", { d: "M12 6v14" }], + ["path", { d: "M8 8v12" }], + ["path", { d: "M4 4v16" }] + ]; + + const LifeBuoy = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "m4.93 4.93 4.24 4.24" }], + ["path", { d: "m14.83 9.17 4.24-4.24" }], + ["path", { d: "m14.83 14.83 4.24 4.24" }], + ["path", { d: "m9.17 14.83-4.24 4.24" }], + ["circle", { cx: "12", cy: "12", r: "4" }] + ]; + + const Ligature = [ + ["path", { d: "M8 20V8c0-2.2 1.8-4 4-4 1.5 0 2.8.8 3.5 2" }], + ["path", { d: "M6 12h4" }], + ["path", { d: "M14 12h2v8" }], + ["path", { d: "M6 20h4" }], + ["path", { d: "M14 20h4" }] + ]; + + const LightbulbOff = [ + ["path", { d: "M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5" }], + ["path", { d: "M9 18h6" }], + ["path", { d: "M10 22h4" }] + ]; + + const Lightbulb = [ + [ + "path", + { + d: "M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5" + } + ], + ["path", { d: "M9 18h6" }], + ["path", { d: "M10 22h4" }] + ]; + + const Link2Off = [ + ["path", { d: "M9 17H7A5 5 0 0 1 7 7" }], + ["path", { d: "M15 7h2a5 5 0 0 1 4 8" }], + ["line", { x1: "8", x2: "12", y1: "12", y2: "12" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Link2 = [ + ["path", { d: "M9 17H7A5 5 0 0 1 7 7h2" }], + ["path", { d: "M15 7h2a5 5 0 1 1 0 10h-2" }], + ["line", { x1: "8", x2: "16", y1: "12", y2: "12" }] + ]; + + const Link = [ + ["path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }], + ["path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" }] + ]; + + const Linkedin = [ + ["path", { d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" }], + ["rect", { width: "4", height: "12", x: "2", y: "9" }], + ["circle", { cx: "4", cy: "4", r: "2" }] + ]; + + const ListCheck = [ + ["path", { d: "M11 18H3" }], + ["path", { d: "m15 18 2 2 4-4" }], + ["path", { d: "M16 12H3" }], + ["path", { d: "M16 6H3" }] + ]; + + const ListChecks = [ + ["path", { d: "m3 17 2 2 4-4" }], + ["path", { d: "m3 7 2 2 4-4" }], + ["path", { d: "M13 6h8" }], + ["path", { d: "M13 12h8" }], + ["path", { d: "M13 18h8" }] + ]; + + const ListCollapse = [ + ["path", { d: "m3 10 2.5-2.5L3 5" }], + ["path", { d: "m3 19 2.5-2.5L3 14" }], + ["path", { d: "M10 6h11" }], + ["path", { d: "M10 12h11" }], + ["path", { d: "M10 18h11" }] + ]; + + const ListEnd = [ + ["path", { d: "M16 12H3" }], + ["path", { d: "M16 6H3" }], + ["path", { d: "M10 18H3" }], + ["path", { d: "M21 6v10a2 2 0 0 1-2 2h-5" }], + ["path", { d: "m16 16-2 2 2 2" }] + ]; + + const ListFilterPlus = [ + ["path", { d: "M10 18h4" }], + ["path", { d: "M11 6H3" }], + ["path", { d: "M15 6h6" }], + ["path", { d: "M18 9V3" }], + ["path", { d: "M7 12h8" }] + ]; + + const ListFilter = [ + ["path", { d: "M3 6h18" }], + ["path", { d: "M7 12h10" }], + ["path", { d: "M10 18h4" }] + ]; + + const ListMinus = [ + ["path", { d: "M11 12H3" }], + ["path", { d: "M16 6H3" }], + ["path", { d: "M16 18H3" }], + ["path", { d: "M21 12h-6" }] + ]; + + const ListMusic = [ + ["path", { d: "M21 15V6" }], + ["path", { d: "M18.5 18a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z" }], + ["path", { d: "M12 12H3" }], + ["path", { d: "M16 6H3" }], + ["path", { d: "M12 18H3" }] + ]; + + const ListOrdered = [ + ["path", { d: "M10 12h11" }], + ["path", { d: "M10 18h11" }], + ["path", { d: "M10 6h11" }], + ["path", { d: "M4 10h2" }], + ["path", { d: "M4 6h1v4" }], + ["path", { d: "M6 18H4c0-1 2-2 2-3s-1-1.5-2-1" }] + ]; + + const ListPlus = [ + ["path", { d: "M11 12H3" }], + ["path", { d: "M16 6H3" }], + ["path", { d: "M16 18H3" }], + ["path", { d: "M18 9v6" }], + ["path", { d: "M21 12h-6" }] + ]; + + const ListRestart = [ + ["path", { d: "M21 6H3" }], + ["path", { d: "M7 12H3" }], + ["path", { d: "M7 18H3" }], + ["path", { d: "M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14" }], + ["path", { d: "M11 10v4h4" }] + ]; + + const ListStart = [ + ["path", { d: "M16 12H3" }], + ["path", { d: "M16 18H3" }], + ["path", { d: "M10 6H3" }], + ["path", { d: "M21 18V8a2 2 0 0 0-2-2h-5" }], + ["path", { d: "m16 8-2-2 2-2" }] + ]; + + const ListTodo = [ + ["rect", { x: "3", y: "5", width: "6", height: "6", rx: "1" }], + ["path", { d: "m3 17 2 2 4-4" }], + ["path", { d: "M13 6h8" }], + ["path", { d: "M13 12h8" }], + ["path", { d: "M13 18h8" }] + ]; + + const ListTree = [ + ["path", { d: "M21 12h-8" }], + ["path", { d: "M21 6H8" }], + ["path", { d: "M21 18h-8" }], + ["path", { d: "M3 6v4c0 1.1.9 2 2 2h3" }], + ["path", { d: "M3 10v6c0 1.1.9 2 2 2h3" }] + ]; + + const ListVideo = [ + ["path", { d: "M12 12H3" }], + ["path", { d: "M16 6H3" }], + ["path", { d: "M12 18H3" }], + ["path", { d: "m16 12 5 3-5 3v-6Z" }] + ]; + + const ListX = [ + ["path", { d: "M11 12H3" }], + ["path", { d: "M16 6H3" }], + ["path", { d: "M16 18H3" }], + ["path", { d: "m19 10-4 4" }], + ["path", { d: "m15 10 4 4" }] + ]; + + const List = [ + ["path", { d: "M3 12h.01" }], + ["path", { d: "M3 18h.01" }], + ["path", { d: "M3 6h.01" }], + ["path", { d: "M8 12h13" }], + ["path", { d: "M8 18h13" }], + ["path", { d: "M8 6h13" }] + ]; + + const LoaderCircle = [["path", { d: "M21 12a9 9 0 1 1-6.219-8.56" }]]; + + const LoaderPinwheel = [ + ["path", { d: "M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0" }], + ["path", { d: "M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6" }], + ["path", { d: "M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6" }], + ["circle", { cx: "12", cy: "12", r: "10" }] + ]; + + const Loader = [ + ["path", { d: "M12 2v4" }], + ["path", { d: "m16.2 7.8 2.9-2.9" }], + ["path", { d: "M18 12h4" }], + ["path", { d: "m16.2 16.2 2.9 2.9" }], + ["path", { d: "M12 18v4" }], + ["path", { d: "m4.9 19.1 2.9-2.9" }], + ["path", { d: "M2 12h4" }], + ["path", { d: "m4.9 4.9 2.9 2.9" }] + ]; + + const LocateFixed = [ + ["line", { x1: "2", x2: "5", y1: "12", y2: "12" }], + ["line", { x1: "19", x2: "22", y1: "12", y2: "12" }], + ["line", { x1: "12", x2: "12", y1: "2", y2: "5" }], + ["line", { x1: "12", x2: "12", y1: "19", y2: "22" }], + ["circle", { cx: "12", cy: "12", r: "7" }], + ["circle", { cx: "12", cy: "12", r: "3" }] + ]; + + const LocateOff = [ + ["line", { x1: "2", x2: "5", y1: "12", y2: "12" }], + ["line", { x1: "19", x2: "22", y1: "12", y2: "12" }], + ["line", { x1: "12", x2: "12", y1: "2", y2: "5" }], + ["line", { x1: "12", x2: "12", y1: "19", y2: "22" }], + ["path", { d: "M7.11 7.11C5.83 8.39 5 10.1 5 12c0 3.87 3.13 7 7 7 1.9 0 3.61-.83 4.89-2.11" }], + ["path", { d: "M18.71 13.96c.19-.63.29-1.29.29-1.96 0-3.87-3.13-7-7-7-.67 0-1.33.1-1.96.29" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Locate = [ + ["line", { x1: "2", x2: "5", y1: "12", y2: "12" }], + ["line", { x1: "19", x2: "22", y1: "12", y2: "12" }], + ["line", { x1: "12", x2: "12", y1: "2", y2: "5" }], + ["line", { x1: "12", x2: "12", y1: "19", y2: "22" }], + ["circle", { cx: "12", cy: "12", r: "7" }] + ]; + + const LockKeyholeOpen = [ + ["circle", { cx: "12", cy: "16", r: "1" }], + ["rect", { width: "18", height: "12", x: "3", y: "10", rx: "2" }], + ["path", { d: "M7 10V7a5 5 0 0 1 9.33-2.5" }] + ]; + + const LockKeyhole = [ + ["circle", { cx: "12", cy: "16", r: "1" }], + ["rect", { x: "3", y: "10", width: "18", height: "12", rx: "2" }], + ["path", { d: "M7 10V7a5 5 0 0 1 10 0v3" }] + ]; + + const LockOpen = [ + ["rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }], + ["path", { d: "M7 11V7a5 5 0 0 1 9.9-1" }] + ]; + + const Lock = [ + ["rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }], + ["path", { d: "M7 11V7a5 5 0 0 1 10 0v4" }] + ]; + + const LogIn = [ + ["path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }], + ["polyline", { points: "10 17 15 12 10 7" }], + ["line", { x1: "15", x2: "3", y1: "12", y2: "12" }] + ]; + + const LogOut = [ + ["path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }], + ["polyline", { points: "16 17 21 12 16 7" }], + ["line", { x1: "21", x2: "9", y1: "12", y2: "12" }] + ]; + + const Logs = [ + ["path", { d: "M13 12h8" }], + ["path", { d: "M13 18h8" }], + ["path", { d: "M13 6h8" }], + ["path", { d: "M3 12h1" }], + ["path", { d: "M3 18h1" }], + ["path", { d: "M3 6h1" }], + ["path", { d: "M8 12h1" }], + ["path", { d: "M8 18h1" }], + ["path", { d: "M8 6h1" }] + ]; + + const Lollipop = [ + ["circle", { cx: "11", cy: "11", r: "8" }], + ["path", { d: "m21 21-4.3-4.3" }], + ["path", { d: "M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0" }] + ]; + + const Luggage = [ + ["path", { d: "M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2" }], + ["path", { d: "M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14" }], + ["path", { d: "M10 20h4" }], + ["circle", { cx: "16", cy: "20", r: "2" }], + ["circle", { cx: "8", cy: "20", r: "2" }] + ]; + + const Magnet = [ + [ + "path", + { + d: "m6 15-4-4 6.75-6.77a7.79 7.79 0 0 1 11 11L13 22l-4-4 6.39-6.36a2.14 2.14 0 0 0-3-3L6 15" + } + ], + ["path", { d: "m5 8 4 4" }], + ["path", { d: "m12 15 4 4" }] + ]; + + const MailCheck = [ + ["path", { d: "M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8" }], + ["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" }], + ["path", { d: "m16 19 2 2 4-4" }] + ]; + + const MailMinus = [ + ["path", { d: "M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8" }], + ["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" }], + ["path", { d: "M16 19h6" }] + ]; + + const MailOpen = [ + [ + "path", + { + d: "M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z" + } + ], + ["path", { d: "m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10" }] + ]; + + const MailPlus = [ + ["path", { d: "M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8" }], + ["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" }], + ["path", { d: "M19 16v6" }], + ["path", { d: "M16 19h6" }] + ]; + + const MailQuestion = [ + ["path", { d: "M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5" }], + ["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" }], + ["path", { d: "M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2" }], + ["path", { d: "M20 22v.01" }] + ]; + + const MailSearch = [ + ["path", { d: "M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5" }], + ["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" }], + ["path", { d: "M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z" }], + ["circle", { cx: "18", cy: "18", r: "3" }], + ["path", { d: "m22 22-1.5-1.5" }] + ]; + + const MailWarning = [ + ["path", { d: "M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5" }], + ["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" }], + ["path", { d: "M20 14v4" }], + ["path", { d: "M20 22v.01" }] + ]; + + const MailX = [ + ["path", { d: "M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9" }], + ["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" }], + ["path", { d: "m17 17 4 4" }], + ["path", { d: "m21 17-4 4" }] + ]; + + const Mail = [ + ["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }], + ["path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" }] + ]; + + const Mailbox = [ + ["path", { d: "M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z" }], + ["polyline", { points: "15,9 18,9 18,11" }], + ["path", { d: "M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2" }], + ["line", { x1: "6", x2: "7", y1: "10", y2: "10" }] + ]; + + const Mails = [ + ["rect", { width: "16", height: "13", x: "6", y: "4", rx: "2" }], + ["path", { d: "m22 7-7.1 3.78c-.57.3-1.23.3-1.8 0L6 7" }], + ["path", { d: "M2 8v11c0 1.1.9 2 2 2h14" }] + ]; + + const MapPinCheckInside = [ + [ + "path", + { + d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" + } + ], + ["path", { d: "m9 10 2 2 4-4" }] + ]; + + const MapPinCheck = [ + [ + "path", + { + d: "M19.43 12.935c.357-.967.57-1.955.57-2.935a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32.197 32.197 0 0 0 .813-.728" + } + ], + ["circle", { cx: "12", cy: "10", r: "3" }], + ["path", { d: "m16 18 2 2 4-4" }] + ]; + + const MapPinHouse = [ + [ + "path", + { + d: "M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z" + } + ], + ["path", { d: "M18 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 .601.2" }], + ["path", { d: "M18 22v-3" }], + ["circle", { cx: "10", cy: "10", r: "3" }] + ]; + + const MapPinMinusInside = [ + [ + "path", + { + d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" + } + ], + ["path", { d: "M9 10h6" }] + ]; + + const MapPinMinus = [ + [ + "path", + { + d: "M18.977 14C19.6 12.701 20 11.343 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738" + } + ], + ["circle", { cx: "12", cy: "10", r: "3" }], + ["path", { d: "M16 18h6" }] + ]; + + const MapPinOff = [ + ["path", { d: "M12.75 7.09a3 3 0 0 1 2.16 2.16" }], + [ + "path", + { + d: "M17.072 17.072c-1.634 2.17-3.527 3.912-4.471 4.727a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 1.432-4.568" + } + ], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M8.475 2.818A8 8 0 0 1 20 10c0 1.183-.31 2.377-.81 3.533" }], + ["path", { d: "M9.13 9.13a3 3 0 0 0 3.74 3.74" }] + ]; + + const MapPinPlusInside = [ + [ + "path", + { + d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" + } + ], + ["path", { d: "M12 7v6" }], + ["path", { d: "M9 10h6" }] + ]; + + const MapPinPlus = [ + [ + "path", + { + d: "M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738" + } + ], + ["circle", { cx: "12", cy: "10", r: "3" }], + ["path", { d: "M16 18h6" }], + ["path", { d: "M19 15v6" }] + ]; + + const MapPinXInside = [ + [ + "path", + { + d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" + } + ], + ["path", { d: "m14.5 7.5-5 5" }], + ["path", { d: "m9.5 7.5 5 5" }] + ]; + + const MapPinX = [ + [ + "path", + { + d: "M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077" + } + ], + ["circle", { cx: "12", cy: "10", r: "3" }], + ["path", { d: "m21.5 15.5-5 5" }], + ["path", { d: "m21.5 20.5-5-5" }] + ]; + + const MapPin = [ + [ + "path", + { + d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" + } + ], + ["circle", { cx: "12", cy: "10", r: "3" }] + ]; + + const MapPinned = [ + [ + "path", + { + d: "M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0" + } + ], + ["circle", { cx: "12", cy: "8", r: "2" }], + [ + "path", + { + d: "M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712" + } + ] + ]; + + const MapPlus = [ + [ + "path", + { + d: "m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12" + } + ], + ["path", { d: "M15 5.764V12" }], + ["path", { d: "M18 15v6" }], + ["path", { d: "M21 18h-6" }], + ["path", { d: "M9 3.236v15" }] + ]; + + const Map = [ + [ + "path", + { + d: "M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z" + } + ], + ["path", { d: "M15 5.764v15" }], + ["path", { d: "M9 3.236v15" }] + ]; + + const MarsStroke = [ + ["path", { d: "m14 6 4 4" }], + ["path", { d: "M17 3h4v4" }], + ["path", { d: "m21 3-7.75 7.75" }], + ["circle", { cx: "9", cy: "15", r: "6" }] + ]; + + const Mars = [ + ["path", { d: "M16 3h5v5" }], + ["path", { d: "m21 3-6.75 6.75" }], + ["circle", { cx: "10", cy: "14", r: "6" }] + ]; + + const Martini = [ + ["path", { d: "M8 22h8" }], + ["path", { d: "M12 11v11" }], + ["path", { d: "m19 3-7 8-7-8Z" }] + ]; + + const Maximize2 = [ + ["polyline", { points: "15 3 21 3 21 9" }], + ["polyline", { points: "9 21 3 21 3 15" }], + ["line", { x1: "21", x2: "14", y1: "3", y2: "10" }], + ["line", { x1: "3", x2: "10", y1: "21", y2: "14" }] + ]; + + const Maximize = [ + ["path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }], + ["path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }], + ["path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }], + ["path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" }] + ]; + + const Medal = [ + [ + "path", + { + d: "M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15" + } + ], + ["path", { d: "M11 12 5.12 2.2" }], + ["path", { d: "m13 12 5.88-9.8" }], + ["path", { d: "M8 7h8" }], + ["circle", { cx: "12", cy: "17", r: "5" }], + ["path", { d: "M12 18v-2h-.5" }] + ]; + + const MegaphoneOff = [ + ["path", { d: "M9.26 9.26 3 11v3l14.14 3.14" }], + ["path", { d: "M21 15.34V6l-7.31 2.03" }], + ["path", { d: "M11.6 16.8a3 3 0 1 1-5.8-1.6" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Megaphone = [ + ["path", { d: "m3 11 18-5v12L3 14v-3z" }], + ["path", { d: "M11.6 16.8a3 3 0 1 1-5.8-1.6" }] + ]; + + const Meh = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["line", { x1: "8", x2: "16", y1: "15", y2: "15" }], + ["line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }], + ["line", { x1: "15", x2: "15.01", y1: "9", y2: "9" }] + ]; + + const MemoryStick = [ + ["path", { d: "M6 19v-3" }], + ["path", { d: "M10 19v-3" }], + ["path", { d: "M14 19v-3" }], + ["path", { d: "M18 19v-3" }], + ["path", { d: "M8 11V9" }], + ["path", { d: "M16 11V9" }], + ["path", { d: "M12 11V9" }], + ["path", { d: "M2 15h20" }], + [ + "path", + { + d: "M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.1a2 2 0 0 0 0 3.837V17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-5.1a2 2 0 0 0 0-3.837Z" + } + ] + ]; + + const Menu = [ + ["line", { x1: "4", x2: "20", y1: "12", y2: "12" }], + ["line", { x1: "4", x2: "20", y1: "6", y2: "6" }], + ["line", { x1: "4", x2: "20", y1: "18", y2: "18" }] + ]; + + const Merge = [ + ["path", { d: "m8 6 4-4 4 4" }], + ["path", { d: "M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22" }], + ["path", { d: "m20 22-5-5" }] + ]; + + const MessageCircleCode = [ + ["path", { d: "M10 9.5 8 12l2 2.5" }], + ["path", { d: "m14 9.5 2 2.5-2 2.5" }], + ["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22z" }] + ]; + + const MessageCircleDashed = [ + ["path", { d: "M13.5 3.1c-.5 0-1-.1-1.5-.1s-1 .1-1.5.1" }], + ["path", { d: "M19.3 6.8a10.45 10.45 0 0 0-2.1-2.1" }], + ["path", { d: "M20.9 13.5c.1-.5.1-1 .1-1.5s-.1-1-.1-1.5" }], + ["path", { d: "M17.2 19.3a10.45 10.45 0 0 0 2.1-2.1" }], + ["path", { d: "M10.5 20.9c.5.1 1 .1 1.5.1s1-.1 1.5-.1" }], + ["path", { d: "M3.5 17.5 2 22l4.5-1.5" }], + ["path", { d: "M3.1 10.5c0 .5-.1 1-.1 1.5s.1 1 .1 1.5" }], + ["path", { d: "M6.8 4.7a10.45 10.45 0 0 0-2.1 2.1" }] + ]; + + const MessageCircleHeart = [ + ["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" }], + [ + "path", + { + d: "M15.8 9.2a2.5 2.5 0 0 0-3.5 0l-.3.4-.35-.3a2.42 2.42 0 1 0-3.2 3.6l3.6 3.5 3.6-3.5c1.2-1.2 1.1-2.7.2-3.7" + } + ] + ]; + + const MessageCircleMore = [ + ["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" }], + ["path", { d: "M8 12h.01" }], + ["path", { d: "M12 12h.01" }], + ["path", { d: "M16 12h.01" }] + ]; + + const MessageCircleOff = [ + ["path", { d: "M20.5 14.9A9 9 0 0 0 9.1 3.5" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M5.6 5.6C3 8.3 2.2 12.5 4 16l-2 6 6-2c3.4 1.8 7.6 1.1 10.3-1.7" }] + ]; + + const MessageCirclePlus = [ + ["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" }], + ["path", { d: "M8 12h8" }], + ["path", { d: "M12 8v8" }] + ]; + + const MessageCircleQuestion = [ + ["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" }], + ["path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }], + ["path", { d: "M12 17h.01" }] + ]; + + const MessageCircleReply = [ + ["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" }], + ["path", { d: "m10 15-3-3 3-3" }], + ["path", { d: "M7 12h7a2 2 0 0 1 2 2v1" }] + ]; + + const MessageCircleWarning = [ + ["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" }], + ["path", { d: "M12 8v4" }], + ["path", { d: "M12 16h.01" }] + ]; + + const MessageCircleX = [ + ["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" }], + ["path", { d: "m15 9-6 6" }], + ["path", { d: "m9 9 6 6" }] + ]; + + const MessageCircle = [["path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" }]]; + + const MessageSquareCode = [ + ["path", { d: "M10 7.5 8 10l2 2.5" }], + ["path", { d: "m14 7.5 2 2.5-2 2.5" }], + ["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }] + ]; + + const MessageSquareDashed = [ + ["path", { d: "M10 17H7l-4 4v-7" }], + ["path", { d: "M14 17h1" }], + ["path", { d: "M14 3h1" }], + ["path", { d: "M19 3a2 2 0 0 1 2 2" }], + ["path", { d: "M21 14v1a2 2 0 0 1-2 2" }], + ["path", { d: "M21 9v1" }], + ["path", { d: "M3 9v1" }], + ["path", { d: "M5 3a2 2 0 0 0-2 2" }], + ["path", { d: "M9 3h1" }] + ]; + + const MessageSquareDiff = [ + ["path", { d: "m5 19-2 2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2" }], + ["path", { d: "M9 10h6" }], + ["path", { d: "M12 7v6" }], + ["path", { d: "M9 17h6" }] + ]; + + const MessageSquareDot = [ + ["path", { d: "M11.7 3H5a2 2 0 0 0-2 2v16l4-4h12a2 2 0 0 0 2-2v-2.7" }], + ["circle", { cx: "18", cy: "6", r: "3" }] + ]; + + const MessageSquareHeart = [ + ["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }], + [ + "path", + { + d: "M14.8 7.5a1.84 1.84 0 0 0-2.6 0l-.2.3-.3-.3a1.84 1.84 0 1 0-2.4 2.8L12 13l2.7-2.7c.9-.9.8-2.1.1-2.8" + } + ] + ]; + + const MessageSquareLock = [ + ["path", { d: "M19 15v-2a2 2 0 1 0-4 0v2" }], + ["path", { d: "M9 17H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3.5" }], + ["rect", { x: "13", y: "15", width: "8", height: "5", rx: "1" }] + ]; + + const MessageSquareMore = [ + ["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }], + ["path", { d: "M8 10h.01" }], + ["path", { d: "M12 10h.01" }], + ["path", { d: "M16 10h.01" }] + ]; + + const MessageSquareOff = [ + ["path", { d: "M21 15V5a2 2 0 0 0-2-2H9" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M3.6 3.6c-.4.3-.6.8-.6 1.4v16l4-4h10" }] + ]; + + const MessageSquarePlus = [ + ["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }], + ["path", { d: "M12 7v6" }], + ["path", { d: "M9 10h6" }] + ]; + + const MessageSquareQuote = [ + ["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }], + ["path", { d: "M8 12a2 2 0 0 0 2-2V8H8" }], + ["path", { d: "M14 12a2 2 0 0 0 2-2V8h-2" }] + ]; + + const MessageSquareReply = [ + ["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }], + ["path", { d: "m10 7-3 3 3 3" }], + ["path", { d: "M17 13v-1a2 2 0 0 0-2-2H7" }] + ]; + + const MessageSquareShare = [ + ["path", { d: "M21 12v3a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h7" }], + ["path", { d: "M16 3h5v5" }], + ["path", { d: "m16 8 5-5" }] + ]; + + const MessageSquareText = [ + ["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }], + ["path", { d: "M13 8H7" }], + ["path", { d: "M17 12H7" }] + ]; + + const MessageSquareWarning = [ + ["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }], + ["path", { d: "M12 7v2" }], + ["path", { d: "M12 13h.01" }] + ]; + + const MessageSquareX = [ + ["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }], + ["path", { d: "m14.5 7.5-5 5" }], + ["path", { d: "m9.5 7.5 5 5" }] + ]; + + const MessageSquare = [ + ["path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }] + ]; + + const MessagesSquare = [ + ["path", { d: "M14 9a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2z" }], + ["path", { d: "M18 9h2a2 2 0 0 1 2 2v11l-4-4h-6a2 2 0 0 1-2-2v-1" }] + ]; + + const MicOff = [ + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }], + ["path", { d: "M18.89 13.23A7.12 7.12 0 0 0 19 12v-2" }], + ["path", { d: "M5 10v2a7 7 0 0 0 12 5" }], + ["path", { d: "M15 9.34V5a3 3 0 0 0-5.68-1.33" }], + ["path", { d: "M9 9v3a3 3 0 0 0 5.12 2.12" }], + ["line", { x1: "12", x2: "12", y1: "19", y2: "22" }] + ]; + + const MicVocal = [ + ["path", { d: "m11 7.601-5.994 8.19a1 1 0 0 0 .1 1.298l.817.818a1 1 0 0 0 1.314.087L15.09 12" }], + [ + "path", + { + d: "M16.5 21.174C15.5 20.5 14.372 20 13 20c-2.058 0-3.928 2.356-6 2-2.072-.356-2.775-3.369-1.5-4.5" + } + ], + ["circle", { cx: "16", cy: "7", r: "5" }] + ]; + + const Mic = [ + ["path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }], + ["path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }], + ["line", { x1: "12", x2: "12", y1: "19", y2: "22" }] + ]; + + const Microchip = [ + ["path", { d: "M18 12h2" }], + ["path", { d: "M18 16h2" }], + ["path", { d: "M18 20h2" }], + ["path", { d: "M18 4h2" }], + ["path", { d: "M18 8h2" }], + ["path", { d: "M4 12h2" }], + ["path", { d: "M4 16h2" }], + ["path", { d: "M4 20h2" }], + ["path", { d: "M4 4h2" }], + ["path", { d: "M4 8h2" }], + [ + "path", + { + d: "M8 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-1.5c-.276 0-.494.227-.562.495a2 2 0 0 1-3.876 0C9.994 2.227 9.776 2 9.5 2z" + } + ] + ]; + + const Microscope = [ + ["path", { d: "M6 18h8" }], + ["path", { d: "M3 22h18" }], + ["path", { d: "M14 22a7 7 0 1 0 0-14h-1" }], + ["path", { d: "M9 14h2" }], + ["path", { d: "M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z" }], + ["path", { d: "M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3" }] + ]; + + const Microwave = [ + ["rect", { width: "20", height: "15", x: "2", y: "4", rx: "2" }], + ["rect", { width: "8", height: "7", x: "6", y: "8", rx: "1" }], + ["path", { d: "M18 8v7" }], + ["path", { d: "M6 19v2" }], + ["path", { d: "M18 19v2" }] + ]; + + const Milestone = [ + ["path", { d: "M12 13v8" }], + ["path", { d: "M12 3v3" }], + [ + "path", + { + d: "M4 6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h13a2 2 0 0 0 1.152-.365l3.424-2.317a1 1 0 0 0 0-1.635l-3.424-2.318A2 2 0 0 0 17 6z" + } + ] + ]; + + const MilkOff = [ + ["path", { d: "M8 2h8" }], + [ + "path", + { + d: "M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3" + } + ], + ["path", { d: "M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Milk = [ + ["path", { d: "M8 2h8" }], + [ + "path", + { + d: "M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2" + } + ], + ["path", { d: "M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0" }] + ]; + + const Minimize2 = [ + ["polyline", { points: "4 14 10 14 10 20" }], + ["polyline", { points: "20 10 14 10 14 4" }], + ["line", { x1: "14", x2: "21", y1: "10", y2: "3" }], + ["line", { x1: "3", x2: "10", y1: "21", y2: "14" }] + ]; + + const Minimize = [ + ["path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }], + ["path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }], + ["path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }], + ["path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" }] + ]; + + const Minus = [["path", { d: "M5 12h14" }]]; + + const MonitorCheck = [ + ["path", { d: "m9 10 2 2 4-4" }], + ["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2" }], + ["path", { d: "M12 17v4" }], + ["path", { d: "M8 21h8" }] + ]; + + const MonitorCog = [ + ["path", { d: "M12 17v4" }], + ["path", { d: "m15.2 4.9-.9-.4" }], + ["path", { d: "m15.2 7.1-.9.4" }], + ["path", { d: "m16.9 3.2-.4-.9" }], + ["path", { d: "m16.9 8.8-.4.9" }], + ["path", { d: "m19.5 2.3-.4.9" }], + ["path", { d: "m19.5 9.7-.4-.9" }], + ["path", { d: "m21.7 4.5-.9.4" }], + ["path", { d: "m21.7 7.5-.9-.4" }], + ["path", { d: "M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7" }], + ["path", { d: "M8 21h8" }], + ["circle", { cx: "18", cy: "6", r: "3" }] + ]; + + const MonitorDot = [ + ["circle", { cx: "19", cy: "6", r: "3" }], + ["path", { d: "M22 12v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h9" }], + ["path", { d: "M12 17v4" }], + ["path", { d: "M8 21h8" }] + ]; + + const MonitorDown = [ + ["path", { d: "M12 13V7" }], + ["path", { d: "m15 10-3 3-3-3" }], + ["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2" }], + ["path", { d: "M12 17v4" }], + ["path", { d: "M8 21h8" }] + ]; + + const MonitorOff = [ + ["path", { d: "M17 17H4a2 2 0 0 1-2-2V5c0-1.5 1-2 1-2" }], + ["path", { d: "M22 15V5a2 2 0 0 0-2-2H9" }], + ["path", { d: "M8 21h8" }], + ["path", { d: "M12 17v4" }], + ["path", { d: "m2 2 20 20" }] + ]; + + const MonitorPause = [ + ["path", { d: "M10 13V7" }], + ["path", { d: "M14 13V7" }], + ["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2" }], + ["path", { d: "M12 17v4" }], + ["path", { d: "M8 21h8" }] + ]; + + const MonitorPlay = [ + [ + "path", + { + d: "M10 7.75a.75.75 0 0 1 1.142-.638l3.664 2.249a.75.75 0 0 1 0 1.278l-3.664 2.25a.75.75 0 0 1-1.142-.64z" + } + ], + ["path", { d: "M12 17v4" }], + ["path", { d: "M8 21h8" }], + ["rect", { x: "2", y: "3", width: "20", height: "14", rx: "2" }] + ]; + + const MonitorSmartphone = [ + ["path", { d: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8" }], + ["path", { d: "M10 19v-3.96 3.15" }], + ["path", { d: "M7 19h5" }], + ["rect", { width: "6", height: "10", x: "16", y: "12", rx: "2" }] + ]; + + const MonitorSpeaker = [ + ["path", { d: "M5.5 20H8" }], + ["path", { d: "M17 9h.01" }], + ["rect", { width: "10", height: "16", x: "12", y: "4", rx: "2" }], + ["path", { d: "M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4" }], + ["circle", { cx: "17", cy: "15", r: "1" }] + ]; + + const MonitorStop = [ + ["path", { d: "M12 17v4" }], + ["path", { d: "M8 21h8" }], + ["rect", { x: "2", y: "3", width: "20", height: "14", rx: "2" }], + ["rect", { x: "9", y: "7", width: "6", height: "6", rx: "1" }] + ]; + + const MonitorUp = [ + ["path", { d: "m9 10 3-3 3 3" }], + ["path", { d: "M12 13V7" }], + ["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2" }], + ["path", { d: "M12 17v4" }], + ["path", { d: "M8 21h8" }] + ]; + + const MonitorX = [ + ["path", { d: "m14.5 12.5-5-5" }], + ["path", { d: "m9.5 12.5 5-5" }], + ["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2" }], + ["path", { d: "M12 17v4" }], + ["path", { d: "M8 21h8" }] + ]; + + const Monitor = [ + ["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2" }], + ["line", { x1: "8", x2: "16", y1: "21", y2: "21" }], + ["line", { x1: "12", x2: "12", y1: "17", y2: "21" }] + ]; + + const MoonStar = [ + ["path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9" }], + ["path", { d: "M20 3v4" }], + ["path", { d: "M22 5h-4" }] + ]; + + const Moon = [["path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" }]]; + + const MountainSnow = [ + ["path", { d: "m8 3 4 8 5-5 5 15H2L8 3z" }], + ["path", { d: "M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19" }] + ]; + + const Mountain = [["path", { d: "m8 3 4 8 5-5 5 15H2L8 3z" }]]; + + const MouseOff = [ + ["path", { d: "M12 6v.343" }], + ["path", { d: "M18.218 18.218A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.218" }], + ["path", { d: "M19 13.343V9A7 7 0 0 0 8.56 2.902" }], + ["path", { d: "M22 22 2 2" }] + ]; + + const MousePointer2 = [ + [ + "path", + { + d: "M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z" + } + ] + ]; + + const MousePointerBan = [ + [ + "path", + { + d: "M2.034 2.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.944L8.204 7.545a1 1 0 0 0-.66.66l-1.066 3.443a.5.5 0 0 1-.944.033z" + } + ], + ["circle", { cx: "16", cy: "16", r: "6" }], + ["path", { d: "m11.8 11.8 8.4 8.4" }] + ]; + + const MousePointerClick = [ + ["path", { d: "M14 4.1 12 6" }], + ["path", { d: "m5.1 8-2.9-.8" }], + ["path", { d: "m6 12-1.9 2" }], + ["path", { d: "M7.2 2.2 8 5.1" }], + [ + "path", + { + d: "M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z" + } + ] + ]; + + const MousePointer = [ + ["path", { d: "M12.586 12.586 19 19" }], + [ + "path", + { + d: "M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062l1.569-6.083a2 2 0 0 1 1.448-1.479l6.124-1.579a.5.5 0 0 0 .063-.947z" + } + ] + ]; + + const Mouse = [ + ["rect", { x: "5", y: "2", width: "14", height: "20", rx: "7" }], + ["path", { d: "M12 6v4" }] + ]; + + const Move3d = [ + ["path", { d: "M5 3v16h16" }], + ["path", { d: "m5 19 6-6" }], + ["path", { d: "m2 6 3-3 3 3" }], + ["path", { d: "m18 16 3 3-3 3" }] + ]; + + const MoveDiagonal2 = [ + ["path", { d: "M19 13v6h-6" }], + ["path", { d: "M5 11V5h6" }], + ["path", { d: "m5 5 14 14" }] + ]; + + const MoveDiagonal = [ + ["path", { d: "M11 19H5v-6" }], + ["path", { d: "M13 5h6v6" }], + ["path", { d: "M19 5 5 19" }] + ]; + + const MoveDownLeft = [ + ["path", { d: "M11 19H5V13" }], + ["path", { d: "M19 5L5 19" }] + ]; + + const MoveDownRight = [ + ["path", { d: "M19 13V19H13" }], + ["path", { d: "M5 5L19 19" }] + ]; + + const MoveDown = [ + ["path", { d: "M8 18L12 22L16 18" }], + ["path", { d: "M12 2V22" }] + ]; + + const MoveHorizontal = [ + ["path", { d: "m18 8 4 4-4 4" }], + ["path", { d: "M2 12h20" }], + ["path", { d: "m6 8-4 4 4 4" }] + ]; + + const MoveLeft = [ + ["path", { d: "M6 8L2 12L6 16" }], + ["path", { d: "M2 12H22" }] + ]; + + const MoveRight = [ + ["path", { d: "M18 8L22 12L18 16" }], + ["path", { d: "M2 12H22" }] + ]; + + const MoveUpLeft = [ + ["path", { d: "M5 11V5H11" }], + ["path", { d: "M5 5L19 19" }] + ]; + + const MoveUpRight = [ + ["path", { d: "M13 5H19V11" }], + ["path", { d: "M19 5L5 19" }] + ]; + + const MoveUp = [ + ["path", { d: "M8 6L12 2L16 6" }], + ["path", { d: "M12 2V22" }] + ]; + + const MoveVertical = [ + ["path", { d: "M12 2v20" }], + ["path", { d: "m8 18 4 4 4-4" }], + ["path", { d: "m8 6 4-4 4 4" }] + ]; + + const Move = [ + ["path", { d: "M12 2v20" }], + ["path", { d: "m15 19-3 3-3-3" }], + ["path", { d: "m19 9 3 3-3 3" }], + ["path", { d: "M2 12h20" }], + ["path", { d: "m5 9-3 3 3 3" }], + ["path", { d: "m9 5 3-3 3 3" }] + ]; + + const Music2 = [ + ["circle", { cx: "8", cy: "18", r: "4" }], + ["path", { d: "M12 18V2l7 4" }] + ]; + + const Music3 = [ + ["circle", { cx: "12", cy: "18", r: "4" }], + ["path", { d: "M16 18V2" }] + ]; + + const Music4 = [ + ["path", { d: "M9 18V5l12-2v13" }], + ["path", { d: "m9 9 12-2" }], + ["circle", { cx: "6", cy: "18", r: "3" }], + ["circle", { cx: "18", cy: "16", r: "3" }] + ]; + + const Music = [ + ["path", { d: "M9 18V5l12-2v13" }], + ["circle", { cx: "6", cy: "18", r: "3" }], + ["circle", { cx: "18", cy: "16", r: "3" }] + ]; + + const Navigation2Off = [ + ["path", { d: "M9.31 9.31 5 21l7-4 7 4-1.17-3.17" }], + ["path", { d: "M14.53 8.88 12 2l-1.17 3.17" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Navigation2 = [["polygon", { points: "12 2 19 21 12 17 5 21 12 2" }]]; + + const NavigationOff = [ + ["path", { d: "M8.43 8.43 3 11l8 2 2 8 2.57-5.43" }], + ["path", { d: "M17.39 11.73 22 2l-9.73 4.61" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Navigation = [["polygon", { points: "3 11 22 2 13 21 11 13 3 11" }]]; + + const Network = [ + ["rect", { x: "16", y: "16", width: "6", height: "6", rx: "1" }], + ["rect", { x: "2", y: "16", width: "6", height: "6", rx: "1" }], + ["rect", { x: "9", y: "2", width: "6", height: "6", rx: "1" }], + ["path", { d: "M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3" }], + ["path", { d: "M12 12V8" }] + ]; + + const Newspaper = [ + [ + "path", + { + d: "M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2" + } + ], + ["path", { d: "M18 14h-8" }], + ["path", { d: "M15 18h-5" }], + ["path", { d: "M10 6h8v4h-8V6Z" }] + ]; + + const Nfc = [ + ["path", { d: "M6 8.32a7.43 7.43 0 0 1 0 7.36" }], + ["path", { d: "M9.46 6.21a11.76 11.76 0 0 1 0 11.58" }], + ["path", { d: "M12.91 4.1a15.91 15.91 0 0 1 .01 15.8" }], + ["path", { d: "M16.37 2a20.16 20.16 0 0 1 0 20" }] + ]; + + const NonBinary = [ + ["path", { d: "M12 2v10" }], + ["path", { d: "m9 4 6 4" }], + ["path", { d: "m9 8 6-4" }], + ["circle", { cx: "12", cy: "17", r: "5" }] + ]; + + const NotebookPen = [ + ["path", { d: "M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4" }], + ["path", { d: "M2 6h4" }], + ["path", { d: "M2 10h4" }], + ["path", { d: "M2 14h4" }], + ["path", { d: "M2 18h4" }], + [ + "path", + { + d: "M21.378 5.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z" + } + ] + ]; + + const NotebookTabs = [ + ["path", { d: "M2 6h4" }], + ["path", { d: "M2 10h4" }], + ["path", { d: "M2 14h4" }], + ["path", { d: "M2 18h4" }], + ["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2" }], + ["path", { d: "M15 2v20" }], + ["path", { d: "M15 7h5" }], + ["path", { d: "M15 12h5" }], + ["path", { d: "M15 17h5" }] + ]; + + const NotebookText = [ + ["path", { d: "M2 6h4" }], + ["path", { d: "M2 10h4" }], + ["path", { d: "M2 14h4" }], + ["path", { d: "M2 18h4" }], + ["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2" }], + ["path", { d: "M9.5 8h5" }], + ["path", { d: "M9.5 12H16" }], + ["path", { d: "M9.5 16H14" }] + ]; + + const Notebook = [ + ["path", { d: "M2 6h4" }], + ["path", { d: "M2 10h4" }], + ["path", { d: "M2 14h4" }], + ["path", { d: "M2 18h4" }], + ["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2" }], + ["path", { d: "M16 2v20" }] + ]; + + const NotepadTextDashed = [ + ["path", { d: "M8 2v4" }], + ["path", { d: "M12 2v4" }], + ["path", { d: "M16 2v4" }], + ["path", { d: "M16 4h2a2 2 0 0 1 2 2v2" }], + ["path", { d: "M20 12v2" }], + ["path", { d: "M20 18v2a2 2 0 0 1-2 2h-1" }], + ["path", { d: "M13 22h-2" }], + ["path", { d: "M7 22H6a2 2 0 0 1-2-2v-2" }], + ["path", { d: "M4 14v-2" }], + ["path", { d: "M4 8V6a2 2 0 0 1 2-2h2" }], + ["path", { d: "M8 10h6" }], + ["path", { d: "M8 14h8" }], + ["path", { d: "M8 18h5" }] + ]; + + const NotepadText = [ + ["path", { d: "M8 2v4" }], + ["path", { d: "M12 2v4" }], + ["path", { d: "M16 2v4" }], + ["rect", { width: "16", height: "18", x: "4", y: "4", rx: "2" }], + ["path", { d: "M8 10h6" }], + ["path", { d: "M8 14h8" }], + ["path", { d: "M8 18h5" }] + ]; + + const NutOff = [ + ["path", { d: "M12 4V2" }], + [ + "path", + { + d: "M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939" + } + ], + ["path", { d: "M19 10v3.343" }], + [ + "path", + { + d: "M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192" + } + ], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Nut = [ + ["path", { d: "M12 4V2" }], + [ + "path", + { + d: "M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4" + } + ], + [ + "path", + { + d: "M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z" + } + ] + ]; + + const OctagonAlert = [ + ["path", { d: "M12 16h.01" }], + ["path", { d: "M12 8v4" }], + [ + "path", + { + d: "M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z" + } + ] + ]; + + const OctagonMinus = [ + [ + "path", + { + d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z" + } + ], + ["path", { d: "M8 12h8" }] + ]; + + const OctagonPause = [ + ["path", { d: "M10 15V9" }], + ["path", { d: "M14 15V9" }], + [ + "path", + { + d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z" + } + ] + ]; + + const OctagonX = [ + ["path", { d: "m15 9-6 6" }], + [ + "path", + { + d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z" + } + ], + ["path", { d: "m9 9 6 6" }] + ]; + + const Octagon = [ + [ + "path", + { + d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z" + } + ] + ]; + + const Omega = [ + [ + "path", + { + d: "M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21" + } + ] + ]; + + const Option = [ + ["path", { d: "M3 3h6l6 18h6" }], + ["path", { d: "M14 3h7" }] + ]; + + const Orbit = [ + ["circle", { cx: "12", cy: "12", r: "3" }], + ["circle", { cx: "19", cy: "5", r: "2" }], + ["circle", { cx: "5", cy: "19", r: "2" }], + ["path", { d: "M10.4 21.9a10 10 0 0 0 9.941-15.416" }], + ["path", { d: "M13.5 2.1a10 10 0 0 0-9.841 15.416" }] + ]; + + const Origami = [ + ["path", { d: "M12 12V4a1 1 0 0 1 1-1h6.297a1 1 0 0 1 .651 1.759l-4.696 4.025" }], + [ + "path", + { d: "m12 21-7.414-7.414A2 2 0 0 1 4 12.172V6.415a1.002 1.002 0 0 1 1.707-.707L20 20.009" } + ], + [ + "path", + { + d: "m12.214 3.381 8.414 14.966a1 1 0 0 1-.167 1.199l-1.168 1.163a1 1 0 0 1-.706.291H6.351a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.781l4.165.027" + } + ] + ]; + + const Package2 = [ + ["path", { d: "M3 9h18v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9Z" }], + ["path", { d: "m3 9 2.45-4.9A2 2 0 0 1 7.24 3h9.52a2 2 0 0 1 1.8 1.1L21 9" }], + ["path", { d: "M12 3v6" }] + ]; + + const PackageCheck = [ + ["path", { d: "m16 16 2 2 4-4" }], + [ + "path", + { + d: "M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14" + } + ], + ["path", { d: "m7.5 4.27 9 5.15" }], + ["polyline", { points: "3.29 7 12 12 20.71 7" }], + ["line", { x1: "12", x2: "12", y1: "22", y2: "12" }] + ]; + + const PackageMinus = [ + ["path", { d: "M16 16h6" }], + [ + "path", + { + d: "M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14" + } + ], + ["path", { d: "m7.5 4.27 9 5.15" }], + ["polyline", { points: "3.29 7 12 12 20.71 7" }], + ["line", { x1: "12", x2: "12", y1: "22", y2: "12" }] + ]; + + const PackageOpen = [ + ["path", { d: "M12 22v-9" }], + [ + "path", + { + d: "M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z" + } + ], + [ + "path", + { + d: "M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13" + } + ], + [ + "path", + { + d: "M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z" + } + ] + ]; + + const PackagePlus = [ + ["path", { d: "M16 16h6" }], + ["path", { d: "M19 13v6" }], + [ + "path", + { + d: "M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14" + } + ], + ["path", { d: "m7.5 4.27 9 5.15" }], + ["polyline", { points: "3.29 7 12 12 20.71 7" }], + ["line", { x1: "12", x2: "12", y1: "22", y2: "12" }] + ]; + + const PackageSearch = [ + [ + "path", + { + d: "M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14" + } + ], + ["path", { d: "m7.5 4.27 9 5.15" }], + ["polyline", { points: "3.29 7 12 12 20.71 7" }], + ["line", { x1: "12", x2: "12", y1: "22", y2: "12" }], + ["circle", { cx: "18.5", cy: "15.5", r: "2.5" }], + ["path", { d: "M20.27 17.27 22 19" }] + ]; + + const PackageX = [ + [ + "path", + { + d: "M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14" + } + ], + ["path", { d: "m7.5 4.27 9 5.15" }], + ["polyline", { points: "3.29 7 12 12 20.71 7" }], + ["line", { x1: "12", x2: "12", y1: "22", y2: "12" }], + ["path", { d: "m17 13 5 5m-5 0 5-5" }] + ]; + + const Package = [ + [ + "path", + { + d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" + } + ], + ["path", { d: "M12 22V12" }], + ["polyline", { points: "3.29 7 12 12 20.71 7" }], + ["path", { d: "m7.5 4.27 9 5.15" }] + ]; + + const PaintBucket = [ + ["path", { d: "m19 11-8-8-8.6 8.6a2 2 0 0 0 0 2.8l5.2 5.2c.8.8 2 .8 2.8 0L19 11Z" }], + ["path", { d: "m5 2 5 5" }], + ["path", { d: "M2 13h15" }], + ["path", { d: "M22 20a2 2 0 1 1-4 0c0-1.6 1.7-2.4 2-4 .3 1.6 2 2.4 2 4Z" }] + ]; + + const PaintRoller = [ + ["rect", { width: "16", height: "6", x: "2", y: "2", rx: "2" }], + ["path", { d: "M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2" }], + ["rect", { width: "4", height: "6", x: "8", y: "16", rx: "1" }] + ]; + + const PaintbrushVertical = [ + ["path", { d: "M10 2v2" }], + ["path", { d: "M14 2v4" }], + ["path", { d: "M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z" }], + [ + "path", + { + d: "M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1" + } + ] + ]; + + const Paintbrush = [ + ["path", { d: "m14.622 17.897-10.68-2.913" }], + [ + "path", + { + d: "M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z" + } + ], + [ + "path", + { + d: "M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15" + } + ] + ]; + + const Palette = [ + ["circle", { cx: "13.5", cy: "6.5", r: ".5", fill: "currentColor" }], + ["circle", { cx: "17.5", cy: "10.5", r: ".5", fill: "currentColor" }], + ["circle", { cx: "8.5", cy: "7.5", r: ".5", fill: "currentColor" }], + ["circle", { cx: "6.5", cy: "12.5", r: ".5", fill: "currentColor" }], + [ + "path", + { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c.926 0 1.648-.746 1.648-1.688 0-.437-.18-.835-.437-1.125-.29-.289-.438-.652-.438-1.125a1.64 1.64 0 0 1 1.668-1.668h1.996c3.051 0 5.555-2.503 5.555-5.554C21.965 6.012 17.461 2 12 2z" + } + ] + ]; + + const PanelBottomClose = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M3 15h18" }], + ["path", { d: "m15 8-3 3-3-3" }] + ]; + + const PanelBottomDashed = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M14 15h1" }], + ["path", { d: "M19 15h2" }], + ["path", { d: "M3 15h2" }], + ["path", { d: "M9 15h1" }] + ]; + + const PanelBottomOpen = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M3 15h18" }], + ["path", { d: "m9 10 3-3 3 3" }] + ]; + + const PanelBottom = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M3 15h18" }] + ]; + + const PanelLeftClose = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M9 3v18" }], + ["path", { d: "m16 15-3-3 3-3" }] + ]; + + const PanelLeftDashed = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M9 14v1" }], + ["path", { d: "M9 19v2" }], + ["path", { d: "M9 3v2" }], + ["path", { d: "M9 9v1" }] + ]; + + const PanelLeftOpen = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M9 3v18" }], + ["path", { d: "m14 9 3 3-3 3" }] + ]; + + const PanelLeft = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M9 3v18" }] + ]; + + const PanelRightClose = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M15 3v18" }], + ["path", { d: "m8 9 3 3-3 3" }] + ]; + + const PanelRightDashed = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M15 14v1" }], + ["path", { d: "M15 19v2" }], + ["path", { d: "M15 3v2" }], + ["path", { d: "M15 9v1" }] + ]; + + const PanelRightOpen = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M15 3v18" }], + ["path", { d: "m10 15-3-3 3-3" }] + ]; + + const PanelRight = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M15 3v18" }] + ]; + + const PanelTopClose = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M3 9h18" }], + ["path", { d: "m9 16 3-3 3 3" }] + ]; + + const PanelTopDashed = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M14 9h1" }], + ["path", { d: "M19 9h2" }], + ["path", { d: "M3 9h2" }], + ["path", { d: "M9 9h1" }] + ]; + + const PanelTopOpen = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M3 9h18" }], + ["path", { d: "m15 14-3 3-3-3" }] + ]; + + const PanelTop = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M3 9h18" }] + ]; + + const PanelsLeftBottom = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M9 3v18" }], + ["path", { d: "M9 15h12" }] + ]; + + const PanelsRightBottom = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M3 15h12" }], + ["path", { d: "M15 3v18" }] + ]; + + const PanelsTopLeft = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M3 9h18" }], + ["path", { d: "M9 21V9" }] + ]; + + const Paperclip = [ + ["path", { d: "M13.234 20.252 21 12.3" }], + [ + "path", + { + d: "m16 6-8.414 8.586a2 2 0 0 0 0 2.828 2 2 0 0 0 2.828 0l8.414-8.586a4 4 0 0 0 0-5.656 4 4 0 0 0-5.656 0l-8.415 8.585a6 6 0 1 0 8.486 8.486" + } + ] + ]; + + const Parentheses = [ + ["path", { d: "M8 21s-4-3-4-9 4-9 4-9" }], + ["path", { d: "M16 3s4 3 4 9-4 9-4 9" }] + ]; + + const ParkingMeter = [ + ["path", { d: "M11 15h2" }], + ["path", { d: "M12 12v3" }], + ["path", { d: "M12 19v3" }], + [ + "path", + { + d: "M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z" + } + ], + ["path", { d: "M9 9a3 3 0 1 1 6 0" }] + ]; + + const PartyPopper = [ + ["path", { d: "M5.8 11.3 2 22l10.7-3.79" }], + ["path", { d: "M4 3h.01" }], + ["path", { d: "M22 8h.01" }], + ["path", { d: "M15 2h.01" }], + ["path", { d: "M22 20h.01" }], + [ + "path", + { + d: "m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10" + } + ], + ["path", { d: "m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17" }], + ["path", { d: "m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7" }], + [ + "path", + { + d: "M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z" + } + ] + ]; + + const Pause = [ + ["rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }], + ["rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" }] + ]; + + const PawPrint = [ + ["circle", { cx: "11", cy: "4", r: "2" }], + ["circle", { cx: "18", cy: "8", r: "2" }], + ["circle", { cx: "20", cy: "16", r: "2" }], + [ + "path", + { + d: "M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z" + } + ] + ]; + + const PcCase = [ + ["rect", { width: "14", height: "20", x: "5", y: "2", rx: "2" }], + ["path", { d: "M15 14h.01" }], + ["path", { d: "M9 6h6" }], + ["path", { d: "M9 10h6" }] + ]; + + const PenLine = [ + ["path", { d: "M12 20h9" }], + [ + "path", + { + d: "M16.376 3.622a1 1 0 0 1 3.002 3.002L7.368 18.635a2 2 0 0 1-.855.506l-2.872.838a.5.5 0 0 1-.62-.62l.838-2.872a2 2 0 0 1 .506-.854z" + } + ] + ]; + + const PenOff = [ + [ + "path", + { + d: "m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982" + } + ], + ["path", { d: "m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353" }], + ["path", { d: "m2 2 20 20" }] + ]; + + const PenTool = [ + [ + "path", + { + d: "M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z" + } + ], + [ + "path", + { + d: "m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18" + } + ], + ["path", { d: "m2.3 2.3 7.286 7.286" }], + ["circle", { cx: "11", cy: "11", r: "2" }] + ]; + + const Pen = [ + [ + "path", + { + d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z" + } + ] + ]; + + const PencilLine = [ + ["path", { d: "M12 20h9" }], + [ + "path", + { + d: "M16.376 3.622a1 1 0 0 1 3.002 3.002L7.368 18.635a2 2 0 0 1-.855.506l-2.872.838a.5.5 0 0 1-.62-.62l.838-2.872a2 2 0 0 1 .506-.854z" + } + ], + ["path", { d: "m15 5 3 3" }] + ]; + + const PencilOff = [ + [ + "path", + { + d: "m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982" + } + ], + ["path", { d: "m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353" }], + ["path", { d: "m15 5 4 4" }], + ["path", { d: "m2 2 20 20" }] + ]; + + const PencilRuler = [ + ["path", { d: "M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13" }], + ["path", { d: "m8 6 2-2" }], + ["path", { d: "m18 16 2-2" }], + ["path", { d: "m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17" }], + [ + "path", + { + d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z" + } + ], + ["path", { d: "m15 5 4 4" }] + ]; + + const Pencil = [ + [ + "path", + { + d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z" + } + ], + ["path", { d: "m15 5 4 4" }] + ]; + + const Pentagon = [ + [ + "path", + { + d: "M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z" + } + ] + ]; + + const Percent = [ + ["line", { x1: "19", x2: "5", y1: "5", y2: "19" }], + ["circle", { cx: "6.5", cy: "6.5", r: "2.5" }], + ["circle", { cx: "17.5", cy: "17.5", r: "2.5" }] + ]; + + const PersonStanding = [ + ["circle", { cx: "12", cy: "5", r: "1" }], + ["path", { d: "m9 20 3-6 3 6" }], + ["path", { d: "m6 8 6 2 6-2" }], + ["path", { d: "M12 10v4" }] + ]; + + const PhilippinePeso = [ + ["path", { d: "M20 11H4" }], + ["path", { d: "M20 7H4" }], + ["path", { d: "M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7" }] + ]; + + const PhoneCall = [ + [ + "path", + { + d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + } + ], + ["path", { d: "M14.05 2a9 9 0 0 1 8 7.94" }], + ["path", { d: "M14.05 6A5 5 0 0 1 18 10" }] + ]; + + const PhoneForwarded = [ + ["polyline", { points: "18 2 22 6 18 10" }], + ["line", { x1: "14", x2: "22", y1: "6", y2: "6" }], + [ + "path", + { + d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + } + ] + ]; + + const PhoneIncoming = [ + ["polyline", { points: "16 2 16 8 22 8" }], + ["line", { x1: "22", x2: "16", y1: "2", y2: "8" }], + [ + "path", + { + d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + } + ] + ]; + + const PhoneMissed = [ + ["line", { x1: "22", x2: "16", y1: "2", y2: "8" }], + ["line", { x1: "16", x2: "22", y1: "2", y2: "8" }], + [ + "path", + { + d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + } + ] + ]; + + const PhoneOff = [ + [ + "path", + { + d: "M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91" + } + ], + ["line", { x1: "22", x2: "2", y1: "2", y2: "22" }] + ]; + + const PhoneOutgoing = [ + ["polyline", { points: "22 8 22 2 16 2" }], + ["line", { x1: "16", x2: "22", y1: "8", y2: "2" }], + [ + "path", + { + d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + } + ] + ]; + + const Phone = [ + [ + "path", + { + d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + } + ] + ]; + + const Pi = [ + ["line", { x1: "9", x2: "9", y1: "4", y2: "20" }], + ["path", { d: "M4 7c0-1.7 1.3-3 3-3h13" }], + ["path", { d: "M18 20c-1.7 0-3-1.3-3-3V4" }] + ]; + + const Piano = [ + [ + "path", + { + d: "M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8" + } + ], + ["path", { d: "M2 14h20" }], + ["path", { d: "M6 14v4" }], + ["path", { d: "M10 14v4" }], + ["path", { d: "M14 14v4" }], + ["path", { d: "M18 14v4" }] + ]; + + const Pickaxe = [ + ["path", { d: "M14.531 12.469 6.619 20.38a1 1 0 1 1-3-3l7.912-7.912" }], + [ + "path", + { d: "M15.686 4.314A12.5 12.5 0 0 0 5.461 2.958 1 1 0 0 0 5.58 4.71a22 22 0 0 1 6.318 3.393" } + ], + [ + "path", + { + d: "M17.7 3.7a1 1 0 0 0-1.4 0l-4.6 4.6a1 1 0 0 0 0 1.4l2.6 2.6a1 1 0 0 0 1.4 0l4.6-4.6a1 1 0 0 0 0-1.4z" + } + ], + [ + "path", + { + d: "M19.686 8.314a12.501 12.501 0 0 1 1.356 10.225 1 1 0 0 1-1.751-.119 22 22 0 0 0-3.393-6.319" + } + ] + ]; + + const PictureInPicture2 = [ + ["path", { d: "M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4" }], + ["rect", { width: "10", height: "7", x: "12", y: "13", rx: "2" }] + ]; + + const PictureInPicture = [ + ["path", { d: "M2 10h6V4" }], + ["path", { d: "m2 4 6 6" }], + ["path", { d: "M21 10V7a2 2 0 0 0-2-2h-7" }], + ["path", { d: "M3 14v2a2 2 0 0 0 2 2h3" }], + ["rect", { x: "12", y: "14", width: "10", height: "7", rx: "1" }] + ]; + + const PiggyBank = [ + [ + "path", + { + d: "M19 5c-1.5 0-2.8 1.4-3 2-3.5-1.5-11-.3-11 5 0 1.8 0 3 2 4.5V20h4v-2h3v2h4v-4c1-.5 1.7-1 2-2h2v-4h-2c0-1-.5-1.5-1-2V5z" + } + ], + ["path", { d: "M2 9v1c0 1.1.9 2 2 2h1" }], + ["path", { d: "M16 11h.01" }] + ]; + + const PilcrowLeft = [ + ["path", { d: "M14 3v11" }], + ["path", { d: "M14 9h-3a3 3 0 0 1 0-6h9" }], + ["path", { d: "M18 3v11" }], + ["path", { d: "M22 18H2l4-4" }], + ["path", { d: "m6 22-4-4" }] + ]; + + const PilcrowRight = [ + ["path", { d: "M10 3v11" }], + ["path", { d: "M10 9H7a1 1 0 0 1 0-6h8" }], + ["path", { d: "M14 3v11" }], + ["path", { d: "m18 14 4 4H2" }], + ["path", { d: "m22 18-4 4" }] + ]; + + const Pilcrow = [ + ["path", { d: "M13 4v16" }], + ["path", { d: "M17 4v16" }], + ["path", { d: "M19 4H9.5a4.5 4.5 0 0 0 0 9H13" }] + ]; + + const PillBottle = [ + ["path", { d: "M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4" }], + ["path", { d: "M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7" }], + ["rect", { width: "16", height: "5", x: "4", y: "2", rx: "1" }] + ]; + + const Pill = [ + ["path", { d: "m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z" }], + ["path", { d: "m8.5 8.5 7 7" }] + ]; + + const PinOff = [ + ["path", { d: "M12 17v5" }], + ["path", { d: "M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11" }] + ]; + + const Pin = [ + ["path", { d: "M12 17v5" }], + [ + "path", + { + d: "M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z" + } + ] + ]; + + const Pipette = [ + ["path", { d: "m2 22 1-1h3l9-9" }], + ["path", { d: "M3 21v-3l9-9" }], + [ + "path", + { + d: "m15 6 3.4-3.4a2.1 2.1 0 1 1 3 3L18 9l.4.4a2.1 2.1 0 1 1-3 3l-3.8-3.8a2.1 2.1 0 1 1 3-3l.4.4Z" + } + ] + ]; + + const Pizza = [ + ["path", { d: "m12 14-1 1" }], + ["path", { d: "m13.75 18.25-1.25 1.42" }], + ["path", { d: "M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12" }], + ["path", { d: "M18.8 9.3a1 1 0 0 0 2.1 7.7" }], + [ + "path", + { + d: "M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z" + } + ] + ]; + + const PlaneLanding = [ + ["path", { d: "M2 22h20" }], + [ + "path", + { + d: "M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z" + } + ] + ]; + + const PlaneTakeoff = [ + ["path", { d: "M2 22h20" }], + [ + "path", + { + d: "M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z" + } + ] + ]; + + const Plane = [ + [ + "path", + { + d: "M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z" + } + ] + ]; + + const Play = [["polygon", { points: "6 3 20 12 6 21 6 3" }]]; + + const Plug2 = [ + ["path", { d: "M9 2v6" }], + ["path", { d: "M15 2v6" }], + ["path", { d: "M12 17v5" }], + ["path", { d: "M5 8h14" }], + ["path", { d: "M6 11V8h12v3a6 6 0 1 1-12 0Z" }] + ]; + + const PlugZap = [ + ["path", { d: "M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z" }], + ["path", { d: "m2 22 3-3" }], + ["path", { d: "M7.5 13.5 10 11" }], + ["path", { d: "M10.5 16.5 13 14" }], + ["path", { d: "m18 3-4 4h6l-4 4" }] + ]; + + const Plug = [ + ["path", { d: "M12 22v-5" }], + ["path", { d: "M9 8V2" }], + ["path", { d: "M15 8V2" }], + ["path", { d: "M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z" }] + ]; + + const Plus = [ + ["path", { d: "M5 12h14" }], + ["path", { d: "M12 5v14" }] + ]; + + const PocketKnife = [ + ["path", { d: "M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2" }], + ["path", { d: "M18 6h.01" }], + ["path", { d: "M6 18h.01" }], + ["path", { d: "M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z" }], + ["path", { d: "M18 11.66V22a4 4 0 0 0 4-4V6" }] + ]; + + const Pocket = [ + ["path", { d: "M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z" }], + ["polyline", { points: "8 10 12 14 16 10" }] + ]; + + const Podcast = [ + ["path", { d: "M16.85 18.58a9 9 0 1 0-9.7 0" }], + ["path", { d: "M8 14a5 5 0 1 1 8 0" }], + ["circle", { cx: "12", cy: "11", r: "1" }], + ["path", { d: "M13 17a1 1 0 1 0-2 0l.5 4.5a.5.5 0 1 0 1 0Z" }] + ]; + + const PointerOff = [ + ["path", { d: "M10 4.5V4a2 2 0 0 0-2.41-1.957" }], + ["path", { d: "M13.9 8.4a2 2 0 0 0-1.26-1.295" }], + ["path", { d: "M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158" }], + [ + "path", + { d: "m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343" } + ], + ["path", { d: "M6 6v8" }], + ["path", { d: "m2 2 20 20" }] + ]; + + const Pointer = [ + ["path", { d: "M22 14a8 8 0 0 1-8 8" }], + ["path", { d: "M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2" }], + ["path", { d: "M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1" }], + ["path", { d: "M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10" }], + [ + "path", + { + d: "M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15" + } + ] + ]; + + const Popcorn = [ + ["path", { d: "M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4" }], + ["path", { d: "M10 22 9 8" }], + ["path", { d: "m14 22 1-14" }], + [ + "path", + { + d: "M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z" + } + ] + ]; + + const Popsicle = [ + [ + "path", + { d: "M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z" } + ], + ["path", { d: "m22 22-5.5-5.5" }] + ]; + + const PoundSterling = [ + ["path", { d: "M18 7c0-5.333-8-5.333-8 0" }], + ["path", { d: "M10 7v14" }], + ["path", { d: "M6 21h12" }], + ["path", { d: "M6 13h10" }] + ]; + + const PowerOff = [ + ["path", { d: "M18.36 6.64A9 9 0 0 1 20.77 15" }], + ["path", { d: "M6.16 6.16a9 9 0 1 0 12.68 12.68" }], + ["path", { d: "M12 2v4" }], + ["path", { d: "m2 2 20 20" }] + ]; + + const Power = [ + ["path", { d: "M12 2v10" }], + ["path", { d: "M18.4 6.6a9 9 0 1 1-12.77.04" }] + ]; + + const Presentation = [ + ["path", { d: "M2 3h20" }], + ["path", { d: "M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3" }], + ["path", { d: "m7 21 5-5 5 5" }] + ]; + + const PrinterCheck = [ + ["path", { d: "M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5" }], + ["path", { d: "m16 19 2 2 4-4" }], + ["path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2" }], + ["path", { d: "M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6" }] + ]; + + const Printer = [ + ["path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6" }], + ["rect", { x: "6", y: "14", width: "12", height: "8", rx: "1" }] + ]; + + const Projector = [ + ["path", { d: "M5 7 3 5" }], + ["path", { d: "M9 6V3" }], + ["path", { d: "m13 7 2-2" }], + ["circle", { cx: "9", cy: "13", r: "3" }], + [ + "path", + { d: "M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17" } + ], + ["path", { d: "M16 16h2" }] + ]; + + const Proportions = [ + ["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }], + ["path", { d: "M12 9v11" }], + ["path", { d: "M2 9h13a2 2 0 0 1 2 2v9" }] + ]; + + const Puzzle = [ + [ + "path", + { + d: "M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z" + } + ] + ]; + + const Pyramid = [ + [ + "path", + { + d: "M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z" + } + ], + ["path", { d: "M12 2v20" }] + ]; + + const QrCode = [ + ["rect", { width: "5", height: "5", x: "3", y: "3", rx: "1" }], + ["rect", { width: "5", height: "5", x: "16", y: "3", rx: "1" }], + ["rect", { width: "5", height: "5", x: "3", y: "16", rx: "1" }], + ["path", { d: "M21 16h-3a2 2 0 0 0-2 2v3" }], + ["path", { d: "M21 21v.01" }], + ["path", { d: "M12 7v3a2 2 0 0 1-2 2H7" }], + ["path", { d: "M3 12h.01" }], + ["path", { d: "M12 3h.01" }], + ["path", { d: "M12 16v.01" }], + ["path", { d: "M16 12h1" }], + ["path", { d: "M21 12v.01" }], + ["path", { d: "M12 21v-1" }] + ]; + + const Quote = [ + [ + "path", + { + d: "M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z" + } + ], + [ + "path", + { + d: "M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z" + } + ] + ]; + + const Rabbit = [ + ["path", { d: "M13 16a3 3 0 0 1 2.24 5" }], + ["path", { d: "M18 12h.01" }], + [ + "path", + { + d: "M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3" + } + ], + ["path", { d: "M20 8.54V4a2 2 0 1 0-4 0v3" }], + ["path", { d: "M7.612 12.524a3 3 0 1 0-1.6 4.3" }] + ]; + + const Radar = [ + ["path", { d: "M19.07 4.93A10 10 0 0 0 6.99 3.34" }], + ["path", { d: "M4 6h.01" }], + ["path", { d: "M2.29 9.62A10 10 0 1 0 21.31 8.35" }], + ["path", { d: "M16.24 7.76A6 6 0 1 0 8.23 16.67" }], + ["path", { d: "M12 18h.01" }], + ["path", { d: "M17.99 11.66A6 6 0 0 1 15.77 16.67" }], + ["circle", { cx: "12", cy: "12", r: "2" }], + ["path", { d: "m13.41 10.59 5.66-5.66" }] + ]; + + const Radiation = [ + ["path", { d: "M12 12h.01" }], + [ + "path", + { + d: "M7.5 4.2c-.3-.5-.9-.7-1.3-.4C3.9 5.5 2.3 8.1 2 11c-.1.5.4 1 1 1h5c0-1.5.8-2.8 2-3.4-1.1-1.9-2-3.5-2.5-4.4z" + } + ], + [ + "path", + { + d: "M21 12c.6 0 1-.4 1-1-.3-2.9-1.8-5.5-4.1-7.1-.4-.3-1.1-.2-1.3.3-.6.9-1.5 2.5-2.6 4.3 1.2.7 2 2 2 3.5h5z" + } + ], + [ + "path", + { + d: "M7.5 19.8c-.3.5-.1 1.1.4 1.3 2.6 1.2 5.6 1.2 8.2 0 .5-.2.7-.8.4-1.3-.5-.9-1.4-2.5-2.5-4.3-1.2.7-2.8.7-4 0-1.1 1.8-2 3.4-2.5 4.3z" + } + ] + ]; + + const Radical = [ + [ + "path", + { + d: "M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21" + } + ] + ]; + + const RadioReceiver = [ + ["path", { d: "M5 16v2" }], + ["path", { d: "M19 16v2" }], + ["rect", { width: "20", height: "8", x: "2", y: "8", rx: "2" }], + ["path", { d: "M18 12h.01" }] + ]; + + const RadioTower = [ + ["path", { d: "M4.9 16.1C1 12.2 1 5.8 4.9 1.9" }], + ["path", { d: "M7.8 4.7a6.14 6.14 0 0 0-.8 7.5" }], + ["circle", { cx: "12", cy: "9", r: "2" }], + ["path", { d: "M16.2 4.8c2 2 2.26 5.11.8 7.47" }], + ["path", { d: "M19.1 1.9a9.96 9.96 0 0 1 0 14.1" }], + ["path", { d: "M9.5 18h5" }], + ["path", { d: "m8 22 4-11 4 11" }] + ]; + + const Radio = [ + ["path", { d: "M4.9 19.1C1 15.2 1 8.8 4.9 4.9" }], + ["path", { d: "M7.8 16.2c-2.3-2.3-2.3-6.1 0-8.5" }], + ["circle", { cx: "12", cy: "12", r: "2" }], + ["path", { d: "M16.2 7.8c2.3 2.3 2.3 6.1 0 8.5" }], + ["path", { d: "M19.1 4.9C23 8.8 23 15.1 19.1 19" }] + ]; + + const Radius = [ + ["path", { d: "M20.34 17.52a10 10 0 1 0-2.82 2.82" }], + ["circle", { cx: "19", cy: "19", r: "2" }], + ["path", { d: "m13.41 13.41 4.18 4.18" }], + ["circle", { cx: "12", cy: "12", r: "2" }] + ]; + + const RailSymbol = [ + ["path", { d: "M5 15h14" }], + ["path", { d: "M5 9h14" }], + ["path", { d: "m14 20-5-5 6-6-5-5" }] + ]; + + const Rainbow = [ + ["path", { d: "M22 17a10 10 0 0 0-20 0" }], + ["path", { d: "M6 17a6 6 0 0 1 12 0" }], + ["path", { d: "M10 17a2 2 0 0 1 4 0" }] + ]; + + const Rat = [ + ["path", { d: "M13 22H4a2 2 0 0 1 0-4h12" }], + ["path", { d: "M13.236 18a3 3 0 0 0-2.2-5" }], + ["path", { d: "M16 9h.01" }], + [ + "path", + { + d: "M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3" + } + ], + ["path", { d: "M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18" }] + ]; + + const Ratio = [ + ["rect", { width: "12", height: "20", x: "6", y: "2", rx: "2" }], + ["rect", { width: "20", height: "12", x: "2", y: "6", rx: "2" }] + ]; + + const ReceiptCent = [ + ["path", { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" }], + ["path", { d: "M12 6.5v11" }], + ["path", { d: "M15 9.4a4 4 0 1 0 0 5.2" }] + ]; + + const ReceiptEuro = [ + ["path", { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" }], + ["path", { d: "M8 12h5" }], + ["path", { d: "M16 9.5a4 4 0 1 0 0 5.2" }] + ]; + + const ReceiptIndianRupee = [ + ["path", { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" }], + ["path", { d: "M8 7h8" }], + ["path", { d: "M12 17.5 8 15h1a4 4 0 0 0 0-8" }], + ["path", { d: "M8 11h8" }] + ]; + + const ReceiptJapaneseYen = [ + ["path", { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" }], + ["path", { d: "m12 10 3-3" }], + ["path", { d: "m9 7 3 3v7.5" }], + ["path", { d: "M9 11h6" }], + ["path", { d: "M9 15h6" }] + ]; + + const ReceiptPoundSterling = [ + ["path", { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" }], + ["path", { d: "M8 13h5" }], + ["path", { d: "M10 17V9.5a2.5 2.5 0 0 1 5 0" }], + ["path", { d: "M8 17h7" }] + ]; + + const ReceiptRussianRuble = [ + ["path", { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" }], + ["path", { d: "M8 15h5" }], + ["path", { d: "M8 11h5a2 2 0 1 0 0-4h-3v10" }] + ]; + + const ReceiptSwissFranc = [ + ["path", { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" }], + ["path", { d: "M10 17V7h5" }], + ["path", { d: "M10 11h4" }], + ["path", { d: "M8 15h5" }] + ]; + + const ReceiptText = [ + ["path", { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" }], + ["path", { d: "M14 8H8" }], + ["path", { d: "M16 12H8" }], + ["path", { d: "M13 16H8" }] + ]; + + const Receipt = [ + ["path", { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" }], + ["path", { d: "M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8" }], + ["path", { d: "M12 17.5v-11" }] + ]; + + const RectangleEllipsis = [ + ["rect", { width: "20", height: "12", x: "2", y: "6", rx: "2" }], + ["path", { d: "M12 12h.01" }], + ["path", { d: "M17 12h.01" }], + ["path", { d: "M7 12h.01" }] + ]; + + const RectangleHorizontal = [ + ["rect", { width: "20", height: "12", x: "2", y: "6", rx: "2" }] + ]; + + const RectangleVertical = [ + ["rect", { width: "12", height: "20", x: "6", y: "2", rx: "2" }] + ]; + + const Recycle = [ + ["path", { d: "M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5" }], + ["path", { d: "M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12" }], + ["path", { d: "m14 16-3 3 3 3" }], + ["path", { d: "M8.293 13.596 7.196 9.5 3.1 10.598" }], + [ + "path", + { + d: "m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843" + } + ], + ["path", { d: "m13.378 9.633 4.096 1.098 1.097-4.096" }] + ]; + + const Redo2 = [ + ["path", { d: "m15 14 5-5-5-5" }], + ["path", { d: "M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13" }] + ]; + + const RedoDot = [ + ["circle", { cx: "12", cy: "17", r: "1" }], + ["path", { d: "M21 7v6h-6" }], + ["path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" }] + ]; + + const Redo = [ + ["path", { d: "M21 7v6h-6" }], + ["path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" }] + ]; + + const RefreshCcwDot = [ + ["path", { d: "M3 2v6h6" }], + ["path", { d: "M21 12A9 9 0 0 0 6 5.3L3 8" }], + ["path", { d: "M21 22v-6h-6" }], + ["path", { d: "M3 12a9 9 0 0 0 15 6.7l3-2.7" }], + ["circle", { cx: "12", cy: "12", r: "1" }] + ]; + + const RefreshCcw = [ + ["path", { d: "M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }], + ["path", { d: "M3 3v5h5" }], + ["path", { d: "M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16" }], + ["path", { d: "M16 16h5v5" }] + ]; + + const RefreshCwOff = [ + ["path", { d: "M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47" }], + ["path", { d: "M8 16H3v5" }], + ["path", { d: "M3 12C3 9.51 4 7.26 5.64 5.64" }], + ["path", { d: "m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64" }], + ["path", { d: "M21 12c0 1-.16 1.97-.47 2.87" }], + ["path", { d: "M21 3v5h-5" }], + ["path", { d: "M22 22 2 2" }] + ]; + + const RefreshCw = [ + ["path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }], + ["path", { d: "M21 3v5h-5" }], + ["path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }], + ["path", { d: "M8 16H3v5" }] + ]; + + const Refrigerator = [ + ["path", { d: "M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z" }], + ["path", { d: "M5 10h14" }], + ["path", { d: "M15 7v6" }] + ]; + + const Regex = [ + ["path", { d: "M17 3v10" }], + ["path", { d: "m12.67 5.5 8.66 5" }], + ["path", { d: "m12.67 10.5 8.66-5" }], + ["path", { d: "M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z" }] + ]; + + const RemoveFormatting = [ + ["path", { d: "M4 7V4h16v3" }], + ["path", { d: "M5 20h6" }], + ["path", { d: "M13 4 8 20" }], + ["path", { d: "m15 15 5 5" }], + ["path", { d: "m20 15-5 5" }] + ]; + + const Repeat1 = [ + ["path", { d: "m17 2 4 4-4 4" }], + ["path", { d: "M3 11v-1a4 4 0 0 1 4-4h14" }], + ["path", { d: "m7 22-4-4 4-4" }], + ["path", { d: "M21 13v1a4 4 0 0 1-4 4H3" }], + ["path", { d: "M11 10h1v4" }] + ]; + + const Repeat2 = [ + ["path", { d: "m2 9 3-3 3 3" }], + ["path", { d: "M13 18H7a2 2 0 0 1-2-2V6" }], + ["path", { d: "m22 15-3 3-3-3" }], + ["path", { d: "M11 6h6a2 2 0 0 1 2 2v10" }] + ]; + + const Repeat = [ + ["path", { d: "m17 2 4 4-4 4" }], + ["path", { d: "M3 11v-1a4 4 0 0 1 4-4h14" }], + ["path", { d: "m7 22-4-4 4-4" }], + ["path", { d: "M21 13v1a4 4 0 0 1-4 4H3" }] + ]; + + const ReplaceAll = [ + ["path", { d: "M14 14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2" }], + ["path", { d: "M14 4a2 2 0 0 1 2-2" }], + ["path", { d: "M16 10a2 2 0 0 1-2-2" }], + ["path", { d: "M20 14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2" }], + ["path", { d: "M20 2a2 2 0 0 1 2 2" }], + ["path", { d: "M22 8a2 2 0 0 1-2 2" }], + ["path", { d: "m3 7 3 3 3-3" }], + ["path", { d: "M6 10V5a 3 3 0 0 1 3-3h1" }], + ["rect", { x: "2", y: "14", width: "8", height: "8", rx: "2" }] + ]; + + const Replace = [ + ["path", { d: "M14 4a2 2 0 0 1 2-2" }], + ["path", { d: "M16 10a2 2 0 0 1-2-2" }], + ["path", { d: "M20 2a2 2 0 0 1 2 2" }], + ["path", { d: "M22 8a2 2 0 0 1-2 2" }], + ["path", { d: "m3 7 3 3 3-3" }], + ["path", { d: "M6 10V5a3 3 0 0 1 3-3h1" }], + ["rect", { x: "2", y: "14", width: "8", height: "8", rx: "2" }] + ]; + + const ReplyAll = [ + ["polyline", { points: "7 17 2 12 7 7" }], + ["polyline", { points: "12 17 7 12 12 7" }], + ["path", { d: "M22 18v-2a4 4 0 0 0-4-4H7" }] + ]; + + const Reply = [ + ["polyline", { points: "9 17 4 12 9 7" }], + ["path", { d: "M20 18v-2a4 4 0 0 0-4-4H4" }] + ]; + + const Rewind = [ + ["polygon", { points: "11 19 2 12 11 5 11 19" }], + ["polygon", { points: "22 19 13 12 22 5 22 19" }] + ]; + + const Ribbon = [ + ["path", { d: "M12 11.22C11 9.997 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.002-2.01 3.22" }], + ["path", { d: "m12 18 2.57-3.5" }], + ["path", { d: "M6.243 9.016a7 7 0 0 1 11.507-.009" }], + ["path", { d: "M9.35 14.53 12 11.22" }], + [ + "path", + { + d: "M9.35 14.53C7.728 12.246 6 10.221 6 7a6 5 0 0 1 12 0c-.005 3.22-1.778 5.235-3.43 7.5l3.557 4.527a1 1 0 0 1-.203 1.43l-1.894 1.36a1 1 0 0 1-1.384-.215L12 18l-2.679 3.593a1 1 0 0 1-1.39.213l-1.865-1.353a1 1 0 0 1-.203-1.422z" + } + ] + ]; + + const Rocket = [ + [ + "path", + { + d: "M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z" + } + ], + [ + "path", + { + d: "m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z" + } + ], + ["path", { d: "M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0" }], + ["path", { d: "M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5" }] + ]; + + const RockingChair = [ + ["polyline", { points: "3.5 2 6.5 12.5 18 12.5" }], + ["line", { x1: "9.5", x2: "5.5", y1: "12.5", y2: "20" }], + ["line", { x1: "15", x2: "18.5", y1: "12.5", y2: "20" }], + ["path", { d: "M2.75 18a13 13 0 0 0 18.5 0" }] + ]; + + const RollerCoaster = [ + ["path", { d: "M6 19V5" }], + ["path", { d: "M10 19V6.8" }], + ["path", { d: "M14 19v-7.8" }], + ["path", { d: "M18 5v4" }], + ["path", { d: "M18 19v-6" }], + ["path", { d: "M22 19V9" }], + ["path", { d: "M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65" }] + ]; + + const Rotate3d = [ + [ + "path", + { + d: "M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2" + } + ], + ["path", { d: "m15.194 13.707 3.814 1.86-1.86 3.814" }], + [ + "path", + { + d: "M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4" + } + ] + ]; + + const RotateCcwSquare = [ + ["path", { d: "M20 9V7a2 2 0 0 0-2-2h-6" }], + ["path", { d: "m15 2-3 3 3 3" }], + ["path", { d: "M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2" }] + ]; + + const RotateCcw = [ + ["path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }], + ["path", { d: "M3 3v5h5" }] + ]; + + const RotateCwSquare = [ + ["path", { d: "M12 5H6a2 2 0 0 0-2 2v3" }], + ["path", { d: "m9 8 3-3-3-3" }], + ["path", { d: "M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2" }] + ]; + + const RotateCw = [ + ["path", { d: "M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8" }], + ["path", { d: "M21 3v5h-5" }] + ]; + + const RouteOff = [ + ["circle", { cx: "6", cy: "19", r: "3" }], + ["path", { d: "M9 19h8.5c.4 0 .9-.1 1.3-.2" }], + ["path", { d: "M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M21 15.3a3.5 3.5 0 0 0-3.3-3.3" }], + ["path", { d: "M15 5h-4.3" }], + ["circle", { cx: "18", cy: "5", r: "3" }] + ]; + + const Route = [ + ["circle", { cx: "6", cy: "19", r: "3" }], + ["path", { d: "M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15" }], + ["circle", { cx: "18", cy: "5", r: "3" }] + ]; + + const Router = [ + ["rect", { width: "20", height: "8", x: "2", y: "14", rx: "2" }], + ["path", { d: "M6.01 18H6" }], + ["path", { d: "M10.01 18H10" }], + ["path", { d: "M15 10v4" }], + ["path", { d: "M17.84 7.17a4 4 0 0 0-5.66 0" }], + ["path", { d: "M20.66 4.34a8 8 0 0 0-11.31 0" }] + ]; + + const Rows2 = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M3 12h18" }] + ]; + + const Rows3 = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M21 9H3" }], + ["path", { d: "M21 15H3" }] + ]; + + const Rows4 = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M21 7.5H3" }], + ["path", { d: "M21 12H3" }], + ["path", { d: "M21 16.5H3" }] + ]; + + const Rss = [ + ["path", { d: "M4 11a9 9 0 0 1 9 9" }], + ["path", { d: "M4 4a16 16 0 0 1 16 16" }], + ["circle", { cx: "5", cy: "19", r: "1" }] + ]; + + const Ruler = [ + [ + "path", + { + d: "M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z" + } + ], + ["path", { d: "m14.5 12.5 2-2" }], + ["path", { d: "m11.5 9.5 2-2" }], + ["path", { d: "m8.5 6.5 2-2" }], + ["path", { d: "m17.5 15.5 2-2" }] + ]; + + const RussianRuble = [ + ["path", { d: "M6 11h8a4 4 0 0 0 0-8H9v18" }], + ["path", { d: "M6 15h8" }] + ]; + + const Sailboat = [ + ["path", { d: "M22 18H2a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4Z" }], + ["path", { d: "M21 14 10 2 3 14h18Z" }], + ["path", { d: "M10 2v16" }] + ]; + + const Salad = [ + ["path", { d: "M7 21h10" }], + ["path", { d: "M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z" }], + [ + "path", + { + d: "M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1" + } + ], + ["path", { d: "m13 12 4-4" }], + ["path", { d: "M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2" }] + ]; + + const Sandwich = [ + ["path", { d: "m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777" }], + ["path", { d: "M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25" }], + ["path", { d: "M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9" }], + ["path", { d: "m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2" }], + ["rect", { width: "20", height: "4", x: "2", y: "11", rx: "1" }] + ]; + + const SatelliteDish = [ + ["path", { d: "M4 10a7.31 7.31 0 0 0 10 10Z" }], + ["path", { d: "m9 15 3-3" }], + ["path", { d: "M17 13a6 6 0 0 0-6-6" }], + ["path", { d: "M21 13A10 10 0 0 0 11 3" }] + ]; + + const Satellite = [ + ["path", { d: "M13 7 9 3 5 7l4 4" }], + ["path", { d: "m17 11 4 4-4 4-4-4" }], + ["path", { d: "m8 12 4 4 6-6-4-4Z" }], + ["path", { d: "m16 8 3-3" }], + ["path", { d: "M9 21a6 6 0 0 0-6-6" }] + ]; + + const SaveAll = [ + ["path", { d: "M10 2v3a1 1 0 0 0 1 1h5" }], + ["path", { d: "M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6" }], + ["path", { d: "M18 22H4a2 2 0 0 1-2-2V6" }], + [ + "path", + { + d: "M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 22 6.828V16a2 2 0 0 1-2.01 2z" + } + ] + ]; + + const SaveOff = [ + ["path", { d: "M13 13H8a1 1 0 0 0-1 1v7" }], + ["path", { d: "M14 8h1" }], + ["path", { d: "M17 21v-4" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41" }], + ["path", { d: "M29.5 11.5s5 5 4 5" }], + ["path", { d: "M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15" }] + ]; + + const Save = [ + [ + "path", + { + d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" + } + ], + ["path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }], + ["path", { d: "M7 3v4a1 1 0 0 0 1 1h7" }] + ]; + + const Scale3d = [ + ["path", { d: "M5 7v11a1 1 0 0 0 1 1h11" }], + ["path", { d: "M5.293 18.707 11 13" }], + ["circle", { cx: "19", cy: "19", r: "2" }], + ["circle", { cx: "5", cy: "5", r: "2" }] + ]; + + const Scale = [ + ["path", { d: "m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z" }], + ["path", { d: "m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z" }], + ["path", { d: "M7 21h10" }], + ["path", { d: "M12 3v18" }], + ["path", { d: "M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2" }] + ]; + + const Scaling = [ + ["path", { d: "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" }], + ["path", { d: "M14 15H9v-5" }], + ["path", { d: "M16 3h5v5" }], + ["path", { d: "M21 3 9 15" }] + ]; + + const ScanBarcode = [ + ["path", { d: "M3 7V5a2 2 0 0 1 2-2h2" }], + ["path", { d: "M17 3h2a2 2 0 0 1 2 2v2" }], + ["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2" }], + ["path", { d: "M8 7v10" }], + ["path", { d: "M12 7v10" }], + ["path", { d: "M17 7v10" }] + ]; + + const ScanEye = [ + ["path", { d: "M3 7V5a2 2 0 0 1 2-2h2" }], + ["path", { d: "M17 3h2a2 2 0 0 1 2 2v2" }], + ["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2" }], + ["circle", { cx: "12", cy: "12", r: "1" }], + [ + "path", + { + d: "M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0" + } + ] + ]; + + const ScanFace = [ + ["path", { d: "M3 7V5a2 2 0 0 1 2-2h2" }], + ["path", { d: "M17 3h2a2 2 0 0 1 2 2v2" }], + ["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2" }], + ["path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }], + ["path", { d: "M9 9h.01" }], + ["path", { d: "M15 9h.01" }] + ]; + + const ScanHeart = [ + [ + "path", + { + d: "M11.246 16.657a1 1 0 0 0 1.508 0l3.57-4.101A2.75 2.75 0 1 0 12 9.168a2.75 2.75 0 1 0-4.324 3.388z" + } + ], + ["path", { d: "M17 3h2a2 2 0 0 1 2 2v2" }], + ["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M3 7V5a2 2 0 0 1 2-2h2" }], + ["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2" }] + ]; + + const ScanLine = [ + ["path", { d: "M3 7V5a2 2 0 0 1 2-2h2" }], + ["path", { d: "M17 3h2a2 2 0 0 1 2 2v2" }], + ["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2" }], + ["path", { d: "M7 12h10" }] + ]; + + const ScanQrCode = [ + ["path", { d: "M17 12v4a1 1 0 0 1-1 1h-4" }], + ["path", { d: "M17 3h2a2 2 0 0 1 2 2v2" }], + ["path", { d: "M17 8V7" }], + ["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M3 7V5a2 2 0 0 1 2-2h2" }], + ["path", { d: "M7 17h.01" }], + ["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2" }], + ["rect", { x: "7", y: "7", width: "5", height: "5", rx: "1" }] + ]; + + const ScanSearch = [ + ["path", { d: "M3 7V5a2 2 0 0 1 2-2h2" }], + ["path", { d: "M17 3h2a2 2 0 0 1 2 2v2" }], + ["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2" }], + ["circle", { cx: "12", cy: "12", r: "3" }], + ["path", { d: "m16 16-1.9-1.9" }] + ]; + + const ScanText = [ + ["path", { d: "M3 7V5a2 2 0 0 1 2-2h2" }], + ["path", { d: "M17 3h2a2 2 0 0 1 2 2v2" }], + ["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2" }], + ["path", { d: "M7 8h8" }], + ["path", { d: "M7 12h10" }], + ["path", { d: "M7 16h6" }] + ]; + + const Scan = [ + ["path", { d: "M3 7V5a2 2 0 0 1 2-2h2" }], + ["path", { d: "M17 3h2a2 2 0 0 1 2 2v2" }], + ["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2" }] + ]; + + const School = [ + ["path", { d: "M14 22v-4a2 2 0 1 0-4 0v4" }], + [ + "path", + { + d: "m18 10 3.447 1.724a1 1 0 0 1 .553.894V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7.382a1 1 0 0 1 .553-.894L6 10" + } + ], + ["path", { d: "M18 5v17" }], + ["path", { d: "m4 6 7.106-3.553a2 2 0 0 1 1.788 0L20 6" }], + ["path", { d: "M6 5v17" }], + ["circle", { cx: "12", cy: "9", r: "2" }] + ]; + + const ScissorsLineDashed = [ + ["path", { d: "M5.42 9.42 8 12" }], + ["circle", { cx: "4", cy: "8", r: "2" }], + ["path", { d: "m14 6-8.58 8.58" }], + ["circle", { cx: "4", cy: "16", r: "2" }], + ["path", { d: "M10.8 14.8 14 18" }], + ["path", { d: "M16 12h-2" }], + ["path", { d: "M22 12h-2" }] + ]; + + const Scissors = [ + ["circle", { cx: "6", cy: "6", r: "3" }], + ["path", { d: "M8.12 8.12 12 12" }], + ["path", { d: "M20 4 8.12 15.88" }], + ["circle", { cx: "6", cy: "18", r: "3" }], + ["path", { d: "M14.8 14.8 20 20" }] + ]; + + const ScreenShareOff = [ + ["path", { d: "M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3" }], + ["path", { d: "M8 21h8" }], + ["path", { d: "M12 17v4" }], + ["path", { d: "m22 3-5 5" }], + ["path", { d: "m17 3 5 5" }] + ]; + + const ScreenShare = [ + ["path", { d: "M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3" }], + ["path", { d: "M8 21h8" }], + ["path", { d: "M12 17v4" }], + ["path", { d: "m17 8 5-5" }], + ["path", { d: "M17 3h5v5" }] + ]; + + const ScrollText = [ + ["path", { d: "M15 12h-5" }], + ["path", { d: "M15 8h-5" }], + ["path", { d: "M19 17V5a2 2 0 0 0-2-2H4" }], + [ + "path", + { + d: "M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3" + } + ] + ]; + + const Scroll = [ + ["path", { d: "M19 17V5a2 2 0 0 0-2-2H4" }], + [ + "path", + { + d: "M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3" + } + ] + ]; + + const SearchCheck = [ + ["path", { d: "m8 11 2 2 4-4" }], + ["circle", { cx: "11", cy: "11", r: "8" }], + ["path", { d: "m21 21-4.3-4.3" }] + ]; + + const SearchCode = [ + ["path", { d: "m13 13.5 2-2.5-2-2.5" }], + ["path", { d: "m21 21-4.3-4.3" }], + ["path", { d: "M9 8.5 7 11l2 2.5" }], + ["circle", { cx: "11", cy: "11", r: "8" }] + ]; + + const SearchSlash = [ + ["path", { d: "m13.5 8.5-5 5" }], + ["circle", { cx: "11", cy: "11", r: "8" }], + ["path", { d: "m21 21-4.3-4.3" }] + ]; + + const SearchX = [ + ["path", { d: "m13.5 8.5-5 5" }], + ["path", { d: "m8.5 8.5 5 5" }], + ["circle", { cx: "11", cy: "11", r: "8" }], + ["path", { d: "m21 21-4.3-4.3" }] + ]; + + const Search = [ + ["circle", { cx: "11", cy: "11", r: "8" }], + ["path", { d: "m21 21-4.3-4.3" }] + ]; + + const Section = [ + ["path", { d: "M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0" }], + ["path", { d: "M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0" }] + ]; + + const SendHorizontal = [ + [ + "path", + { + d: "M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z" + } + ], + ["path", { d: "M6 12h16" }] + ]; + + const SendToBack = [ + ["rect", { x: "14", y: "14", width: "8", height: "8", rx: "2" }], + ["rect", { x: "2", y: "2", width: "8", height: "8", rx: "2" }], + ["path", { d: "M7 14v1a2 2 0 0 0 2 2h1" }], + ["path", { d: "M14 7h1a2 2 0 0 1 2 2v1" }] + ]; + + const Send = [ + [ + "path", + { + d: "M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z" + } + ], + ["path", { d: "m21.854 2.147-10.94 10.939" }] + ]; + + const SeparatorHorizontal = [ + ["line", { x1: "3", x2: "21", y1: "12", y2: "12" }], + ["polyline", { points: "8 8 12 4 16 8" }], + ["polyline", { points: "16 16 12 20 8 16" }] + ]; + + const SeparatorVertical = [ + ["line", { x1: "12", x2: "12", y1: "3", y2: "21" }], + ["polyline", { points: "8 8 4 12 8 16" }], + ["polyline", { points: "16 16 20 12 16 8" }] + ]; + + const ServerCog = [ + ["circle", { cx: "12", cy: "12", r: "3" }], + ["path", { d: "M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5" }], + ["path", { d: "M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5" }], + ["path", { d: "M6 6h.01" }], + ["path", { d: "M6 18h.01" }], + ["path", { d: "m15.7 13.4-.9-.3" }], + ["path", { d: "m9.2 10.9-.9-.3" }], + ["path", { d: "m10.6 15.7.3-.9" }], + ["path", { d: "m13.6 15.7-.4-1" }], + ["path", { d: "m10.8 9.3-.4-1" }], + ["path", { d: "m8.3 13.6 1-.4" }], + ["path", { d: "m14.7 10.8 1-.4" }], + ["path", { d: "m13.4 8.3-.3.9" }] + ]; + + const ServerCrash = [ + ["path", { d: "M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2" }], + ["path", { d: "M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2" }], + ["path", { d: "M6 6h.01" }], + ["path", { d: "M6 18h.01" }], + ["path", { d: "m13 6-4 6h6l-4 6" }] + ]; + + const ServerOff = [ + ["path", { d: "M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5" }], + ["path", { d: "M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z" }], + ["path", { d: "M22 17v-1a2 2 0 0 0-2-2h-1" }], + ["path", { d: "M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z" }], + ["path", { d: "M6 18h.01" }], + ["path", { d: "m2 2 20 20" }] + ]; + + const Server = [ + ["rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2" }], + ["rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2" }], + ["line", { x1: "6", x2: "6.01", y1: "6", y2: "6" }], + ["line", { x1: "6", x2: "6.01", y1: "18", y2: "18" }] + ]; + + const Settings2 = [ + ["path", { d: "M20 7h-9" }], + ["path", { d: "M14 17H5" }], + ["circle", { cx: "17", cy: "17", r: "3" }], + ["circle", { cx: "7", cy: "7", r: "3" }] + ]; + + const Settings = [ + [ + "path", + { + d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" + } + ], + ["circle", { cx: "12", cy: "12", r: "3" }] + ]; + + const Shapes = [ + [ + "path", + { + d: "M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z" + } + ], + ["rect", { x: "3", y: "14", width: "7", height: "7", rx: "1" }], + ["circle", { cx: "17.5", cy: "17.5", r: "3.5" }] + ]; + + const Share2 = [ + ["circle", { cx: "18", cy: "5", r: "3" }], + ["circle", { cx: "6", cy: "12", r: "3" }], + ["circle", { cx: "18", cy: "19", r: "3" }], + ["line", { x1: "8.59", x2: "15.42", y1: "13.51", y2: "17.49" }], + ["line", { x1: "15.41", x2: "8.59", y1: "6.51", y2: "10.49" }] + ]; + + const Share = [ + ["path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }], + ["polyline", { points: "16 6 12 2 8 6" }], + ["line", { x1: "12", x2: "12", y1: "2", y2: "15" }] + ]; + + const Sheet = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }], + ["line", { x1: "3", x2: "21", y1: "9", y2: "9" }], + ["line", { x1: "3", x2: "21", y1: "15", y2: "15" }], + ["line", { x1: "9", x2: "9", y1: "9", y2: "21" }], + ["line", { x1: "15", x2: "15", y1: "9", y2: "21" }] + ]; + + const Shell = [ + [ + "path", + { + d: "M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44" + } + ] + ]; + + const ShieldAlert = [ + [ + "path", + { + d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" + } + ], + ["path", { d: "M12 8v4" }], + ["path", { d: "M12 16h.01" }] + ]; + + const ShieldBan = [ + [ + "path", + { + d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" + } + ], + ["path", { d: "m4.243 5.21 14.39 12.472" }] + ]; + + const ShieldCheck = [ + [ + "path", + { + d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" + } + ], + ["path", { d: "m9 12 2 2 4-4" }] + ]; + + const ShieldEllipsis = [ + [ + "path", + { + d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" + } + ], + ["path", { d: "M8 12h.01" }], + ["path", { d: "M12 12h.01" }], + ["path", { d: "M16 12h.01" }] + ]; + + const ShieldHalf = [ + [ + "path", + { + d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" + } + ], + ["path", { d: "M12 22V2" }] + ]; + + const ShieldMinus = [ + [ + "path", + { + d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" + } + ], + ["path", { d: "M9 12h6" }] + ]; + + const ShieldOff = [ + ["path", { d: "m2 2 20 20" }], + [ + "path", + { + d: "M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71" + } + ], + [ + "path", + { + d: "M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264" + } + ] + ]; + + const ShieldPlus = [ + [ + "path", + { + d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" + } + ], + ["path", { d: "M9 12h6" }], + ["path", { d: "M12 9v6" }] + ]; + + const ShieldQuestion = [ + [ + "path", + { + d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" + } + ], + ["path", { d: "M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3" }], + ["path", { d: "M12 17h.01" }] + ]; + + const ShieldX = [ + [ + "path", + { + d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" + } + ], + ["path", { d: "m14.5 9.5-5 5" }], + ["path", { d: "m9.5 9.5 5 5" }] + ]; + + const Shield = [ + [ + "path", + { + d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" + } + ] + ]; + + const ShipWheel = [ + ["circle", { cx: "12", cy: "12", r: "8" }], + ["path", { d: "M12 2v7.5" }], + ["path", { d: "m19 5-5.23 5.23" }], + ["path", { d: "M22 12h-7.5" }], + ["path", { d: "m19 19-5.23-5.23" }], + ["path", { d: "M12 14.5V22" }], + ["path", { d: "M10.23 13.77 5 19" }], + ["path", { d: "M9.5 12H2" }], + ["path", { d: "M10.23 10.23 5 5" }], + ["circle", { cx: "12", cy: "12", r: "2.5" }] + ]; + + const Ship = [ + ["path", { d: "M12 10.189V14" }], + ["path", { d: "M12 2v3" }], + ["path", { d: "M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6" }], + [ + "path", + { + d: "M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76" + } + ], + [ + "path", + { + d: "M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" + } + ] + ]; + + const Shirt = [ + [ + "path", + { + d: "M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z" + } + ] + ]; + + const ShoppingBag = [ + ["path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }], + ["path", { d: "M3 6h18" }], + ["path", { d: "M16 10a4 4 0 0 1-8 0" }] + ]; + + const ShoppingBasket = [ + ["path", { d: "m15 11-1 9" }], + ["path", { d: "m19 11-4-7" }], + ["path", { d: "M2 11h20" }], + ["path", { d: "m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4" }], + ["path", { d: "M4.5 15.5h15" }], + ["path", { d: "m5 11 4-7" }], + ["path", { d: "m9 11 1 9" }] + ]; + + const ShoppingCart = [ + ["circle", { cx: "8", cy: "21", r: "1" }], + ["circle", { cx: "19", cy: "21", r: "1" }], + [ + "path", + { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" } + ] + ]; + + const Shovel = [ + ["path", { d: "M2 22v-5l5-5 5 5-5 5z" }], + ["path", { d: "M9.5 14.5 16 8" }], + ["path", { d: "m17 2 5 5-.5.5a3.53 3.53 0 0 1-5 0s0 0 0 0a3.53 3.53 0 0 1 0-5L17 2" }] + ]; + + const ShowerHead = [ + ["path", { d: "m4 4 2.5 2.5" }], + ["path", { d: "M13.5 6.5a4.95 4.95 0 0 0-7 7" }], + ["path", { d: "M15 5 5 15" }], + ["path", { d: "M14 17v.01" }], + ["path", { d: "M10 16v.01" }], + ["path", { d: "M13 13v.01" }], + ["path", { d: "M16 10v.01" }], + ["path", { d: "M11 20v.01" }], + ["path", { d: "M17 14v.01" }], + ["path", { d: "M20 11v.01" }] + ]; + + const Shrink = [ + ["path", { d: "m15 15 6 6m-6-6v4.8m0-4.8h4.8" }], + ["path", { d: "M9 19.8V15m0 0H4.2M9 15l-6 6" }], + ["path", { d: "M15 4.2V9m0 0h4.8M15 9l6-6" }], + ["path", { d: "M9 4.2V9m0 0H4.2M9 9 3 3" }] + ]; + + const Shrub = [ + ["path", { d: "M12 22v-7l-2-2" }], + ["path", { d: "M17 8v.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0Z" }], + ["path", { d: "m14 14-2 2" }] + ]; + + const Shuffle = [ + ["path", { d: "m18 14 4 4-4 4" }], + ["path", { d: "m18 2 4 4-4 4" }], + ["path", { d: "M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22" }], + ["path", { d: "M2 6h1.972a4 4 0 0 1 3.6 2.2" }], + ["path", { d: "M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45" }] + ]; + + const Sigma = [ + [ + "path", + { + d: "M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2" + } + ] + ]; + + const SignalHigh = [ + ["path", { d: "M2 20h.01" }], + ["path", { d: "M7 20v-4" }], + ["path", { d: "M12 20v-8" }], + ["path", { d: "M17 20V8" }] + ]; + + const SignalLow = [ + ["path", { d: "M2 20h.01" }], + ["path", { d: "M7 20v-4" }] + ]; + + const SignalMedium = [ + ["path", { d: "M2 20h.01" }], + ["path", { d: "M7 20v-4" }], + ["path", { d: "M12 20v-8" }] + ]; + + const SignalZero = [["path", { d: "M2 20h.01" }]]; + + const Signal = [ + ["path", { d: "M2 20h.01" }], + ["path", { d: "M7 20v-4" }], + ["path", { d: "M12 20v-8" }], + ["path", { d: "M17 20V8" }], + ["path", { d: "M22 4v16" }] + ]; + + const Signature = [ + [ + "path", + { + d: "m21 17-2.156-1.868A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.545-3.991-3.97-8.5-4a1 1 0 0 0 0 5c4.153 0 4.745-11.295 5.708-13.5a2.5 2.5 0 1 1 3.31 3.284" + } + ], + ["path", { d: "M3 21h18" }] + ]; + + const SignpostBig = [ + ["path", { d: "M10 9H4L2 7l2-2h6" }], + ["path", { d: "M14 5h6l2 2-2 2h-6" }], + ["path", { d: "M10 22V4a2 2 0 1 1 4 0v18" }], + ["path", { d: "M8 22h8" }] + ]; + + const Signpost = [ + ["path", { d: "M12 13v8" }], + ["path", { d: "M12 3v3" }], + [ + "path", + { + d: "M18 6a2 2 0 0 1 1.387.56l2.307 2.22a1 1 0 0 1 0 1.44l-2.307 2.22A2 2 0 0 1 18 13H6a2 2 0 0 1-1.387-.56l-2.306-2.22a1 1 0 0 1 0-1.44l2.306-2.22A2 2 0 0 1 6 6z" + } + ] + ]; + + const Siren = [ + ["path", { d: "M7 18v-6a5 5 0 1 1 10 0v6" }], + ["path", { d: "M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z" }], + ["path", { d: "M21 12h1" }], + ["path", { d: "M18.5 4.5 18 5" }], + ["path", { d: "M2 12h1" }], + ["path", { d: "M12 2v1" }], + ["path", { d: "m4.929 4.929.707.707" }], + ["path", { d: "M12 12v6" }] + ]; + + const SkipBack = [ + ["polygon", { points: "19 20 9 12 19 4 19 20" }], + ["line", { x1: "5", x2: "5", y1: "19", y2: "5" }] + ]; + + const SkipForward = [ + ["polygon", { points: "5 4 15 12 5 20 5 4" }], + ["line", { x1: "19", x2: "19", y1: "5", y2: "19" }] + ]; + + const Skull = [ + ["path", { d: "m12.5 17-.5-1-.5 1h1z" }], + [ + "path", + { + d: "M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z" + } + ], + ["circle", { cx: "15", cy: "12", r: "1" }], + ["circle", { cx: "9", cy: "12", r: "1" }] + ]; + + const Slack = [ + ["rect", { width: "3", height: "8", x: "13", y: "2", rx: "1.5" }], + ["path", { d: "M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5" }], + ["rect", { width: "3", height: "8", x: "8", y: "14", rx: "1.5" }], + ["path", { d: "M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5" }], + ["rect", { width: "8", height: "3", x: "14", y: "13", rx: "1.5" }], + ["path", { d: "M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5" }], + ["rect", { width: "8", height: "3", x: "2", y: "8", rx: "1.5" }], + ["path", { d: "M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5" }] + ]; + + const Slash = [["path", { d: "M22 2 2 22" }]]; + + const Slice = [ + [ + "path", + { + d: "M11 16.586V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.663 9.663a1 1 0 0 1-1.414 0L8 14" + } + ] + ]; + + const SlidersHorizontal = [ + ["line", { x1: "21", x2: "14", y1: "4", y2: "4" }], + ["line", { x1: "10", x2: "3", y1: "4", y2: "4" }], + ["line", { x1: "21", x2: "12", y1: "12", y2: "12" }], + ["line", { x1: "8", x2: "3", y1: "12", y2: "12" }], + ["line", { x1: "21", x2: "16", y1: "20", y2: "20" }], + ["line", { x1: "12", x2: "3", y1: "20", y2: "20" }], + ["line", { x1: "14", x2: "14", y1: "2", y2: "6" }], + ["line", { x1: "8", x2: "8", y1: "10", y2: "14" }], + ["line", { x1: "16", x2: "16", y1: "18", y2: "22" }] + ]; + + const SlidersVertical = [ + ["line", { x1: "4", x2: "4", y1: "21", y2: "14" }], + ["line", { x1: "4", x2: "4", y1: "10", y2: "3" }], + ["line", { x1: "12", x2: "12", y1: "21", y2: "12" }], + ["line", { x1: "12", x2: "12", y1: "8", y2: "3" }], + ["line", { x1: "20", x2: "20", y1: "21", y2: "16" }], + ["line", { x1: "20", x2: "20", y1: "12", y2: "3" }], + ["line", { x1: "2", x2: "6", y1: "14", y2: "14" }], + ["line", { x1: "10", x2: "14", y1: "8", y2: "8" }], + ["line", { x1: "18", x2: "22", y1: "16", y2: "16" }] + ]; + + const SmartphoneCharging = [ + ["rect", { width: "14", height: "20", x: "5", y: "2", rx: "2", ry: "2" }], + ["path", { d: "M12.667 8 10 12h4l-2.667 4" }] + ]; + + const SmartphoneNfc = [ + ["rect", { width: "7", height: "12", x: "2", y: "6", rx: "1" }], + ["path", { d: "M13 8.32a7.43 7.43 0 0 1 0 7.36" }], + ["path", { d: "M16.46 6.21a11.76 11.76 0 0 1 0 11.58" }], + ["path", { d: "M19.91 4.1a15.91 15.91 0 0 1 .01 15.8" }] + ]; + + const Smartphone = [ + ["rect", { width: "14", height: "20", x: "5", y: "2", rx: "2", ry: "2" }], + ["path", { d: "M12 18h.01" }] + ]; + + const SmilePlus = [ + ["path", { d: "M22 11v1a10 10 0 1 1-9-10" }], + ["path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }], + ["line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }], + ["line", { x1: "15", x2: "15.01", y1: "9", y2: "9" }], + ["path", { d: "M16 5h6" }], + ["path", { d: "M19 2v6" }] + ]; + + const Smile = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }], + ["line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }], + ["line", { x1: "15", x2: "15.01", y1: "9", y2: "9" }] + ]; + + const Snail = [ + ["path", { d: "M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0" }], + ["circle", { cx: "10", cy: "13", r: "8" }], + ["path", { d: "M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6" }], + ["path", { d: "M18 3 19.1 5.2" }], + ["path", { d: "M22 3 20.9 5.2" }] + ]; + + const Snowflake = [ + ["path", { d: "m10 20-1.25-2.5L6 18" }], + ["path", { d: "M10 4 8.75 6.5 6 6" }], + ["path", { d: "m14 20 1.25-2.5L18 18" }], + ["path", { d: "m14 4 1.25 2.5L18 6" }], + ["path", { d: "m17 21-3-6h-4" }], + ["path", { d: "m17 3-3 6 1.5 3" }], + ["path", { d: "M2 12h6.5L10 9" }], + ["path", { d: "m20 10-1.5 2 1.5 2" }], + ["path", { d: "M22 12h-6.5L14 15" }], + ["path", { d: "m4 10 1.5 2L4 14" }], + ["path", { d: "m7 21 3-6-1.5-3" }], + ["path", { d: "m7 3 3 6h4" }] + ]; + + const Sofa = [ + ["path", { d: "M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3" }], + [ + "path", + { + d: "M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z" + } + ], + ["path", { d: "M4 18v2" }], + ["path", { d: "M20 18v2" }], + ["path", { d: "M12 4v9" }] + ]; + + const Soup = [ + ["path", { d: "M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z" }], + ["path", { d: "M7 21h10" }], + ["path", { d: "M19.5 12 22 6" }], + ["path", { d: "M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62" }], + ["path", { d: "M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62" }], + ["path", { d: "M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62" }] + ]; + + const Space = [["path", { d: "M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1" }]]; + + const Spade = [ + [ + "path", + { + d: "M5 9c-1.5 1.5-3 3.2-3 5.5A5.5 5.5 0 0 0 7.5 20c1.8 0 3-.5 4.5-2 1.5 1.5 2.7 2 4.5 2a5.5 5.5 0 0 0 5.5-5.5c0-2.3-1.5-4-3-5.5l-7-7-7 7Z" + } + ], + ["path", { d: "M12 18v4" }] + ]; + + const Sparkle = [ + [ + "path", + { + d: "M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z" + } + ] + ]; + + const Sparkles = [ + [ + "path", + { + d: "M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z" + } + ], + ["path", { d: "M20 3v4" }], + ["path", { d: "M22 5h-4" }], + ["path", { d: "M4 17v2" }], + ["path", { d: "M5 18H3" }] + ]; + + const Speaker = [ + ["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2" }], + ["path", { d: "M12 6h.01" }], + ["circle", { cx: "12", cy: "14", r: "4" }], + ["path", { d: "M12 14h.01" }] + ]; + + const Speech = [ + [ + "path", + { + d: "M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20" + } + ], + ["path", { d: "M19.8 17.8a7.5 7.5 0 0 0 .003-10.603" }], + ["path", { d: "M17 15a3.5 3.5 0 0 0-.025-4.975" }] + ]; + + const SpellCheck2 = [ + ["path", { d: "m6 16 6-12 6 12" }], + ["path", { d: "M8 12h8" }], + [ + "path", + { + d: "M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1" + } + ] + ]; + + const SpellCheck = [ + ["path", { d: "m6 16 6-12 6 12" }], + ["path", { d: "M8 12h8" }], + ["path", { d: "m16 20 2 2 4-4" }] + ]; + + const Spline = [ + ["circle", { cx: "19", cy: "5", r: "2" }], + ["circle", { cx: "5", cy: "19", r: "2" }], + ["path", { d: "M5 17A12 12 0 0 1 17 5" }] + ]; + + const Split = [ + ["path", { d: "M16 3h5v5" }], + ["path", { d: "M8 3H3v5" }], + ["path", { d: "M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3" }], + ["path", { d: "m15 9 6-6" }] + ]; + + const SprayCan = [ + ["path", { d: "M3 3h.01" }], + ["path", { d: "M7 5h.01" }], + ["path", { d: "M11 7h.01" }], + ["path", { d: "M3 7h.01" }], + ["path", { d: "M7 9h.01" }], + ["path", { d: "M3 11h.01" }], + ["rect", { width: "4", height: "4", x: "15", y: "5" }], + ["path", { d: "m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2" }], + ["path", { d: "m13 14 8-2" }], + ["path", { d: "m13 19 8-2" }] + ]; + + const Sprout = [ + ["path", { d: "M7 20h10" }], + ["path", { d: "M10 20c5.5-2.5.8-6.4 3-10" }], + [ + "path", + { + d: "M9.5 9.4c1.1.8 1.8 2.2 2.3 3.7-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2 2.8-.5 4.4 0 5.5.8z" + } + ], + [ + "path", + { d: "M14.1 6a7 7 0 0 0-1.1 4c1.9-.1 3.3-.6 4.3-1.4 1-1 1.6-2.3 1.7-4.6-2.7.1-4 1-4.9 2z" } + ] + ]; + + const SquareActivity = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M17 12h-2l-2 5-2-10-2 5H7" }] + ]; + + const SquareArrowDownLeft = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "m16 8-8 8" }], + ["path", { d: "M16 16H8V8" }] + ]; + + const SquareArrowDownRight = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "m8 8 8 8" }], + ["path", { d: "M16 8v8H8" }] + ]; + + const SquareArrowDown = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M12 8v8" }], + ["path", { d: "m8 12 4 4 4-4" }] + ]; + + const SquareArrowLeft = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "m12 8-4 4 4 4" }], + ["path", { d: "M16 12H8" }] + ]; + + const SquareArrowOutDownLeft = [ + ["path", { d: "M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6" }], + ["path", { d: "m3 21 9-9" }], + ["path", { d: "M9 21H3v-6" }] + ]; + + const SquareArrowOutDownRight = [ + ["path", { d: "M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6" }], + ["path", { d: "m21 21-9-9" }], + ["path", { d: "M21 15v6h-6" }] + ]; + + const SquareArrowOutUpLeft = [ + ["path", { d: "M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6" }], + ["path", { d: "m3 3 9 9" }], + ["path", { d: "M3 9V3h6" }] + ]; + + const SquareArrowOutUpRight = [ + ["path", { d: "M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6" }], + ["path", { d: "m21 3-9 9" }], + ["path", { d: "M15 3h6v6" }] + ]; + + const SquareArrowRight = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M8 12h8" }], + ["path", { d: "m12 16 4-4-4-4" }] + ]; + + const SquareArrowUpLeft = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M8 16V8h8" }], + ["path", { d: "M16 16 8 8" }] + ]; + + const SquareArrowUpRight = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M8 8h8v8" }], + ["path", { d: "m8 16 8-8" }] + ]; + + const SquareArrowUp = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "m16 12-4-4-4 4" }], + ["path", { d: "M12 16V8" }] + ]; + + const SquareAsterisk = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M12 8v8" }], + ["path", { d: "m8.5 14 7-4" }], + ["path", { d: "m8.5 10 7 4" }] + ]; + + const SquareBottomDashedScissors = [ + ["path", { d: "M4 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2" }], + ["path", { d: "M10 22H8" }], + ["path", { d: "M16 22h-2" }], + ["circle", { cx: "8", cy: "8", r: "2" }], + ["path", { d: "M9.414 9.414 12 12" }], + ["path", { d: "M14.8 14.8 18 18" }], + ["circle", { cx: "8", cy: "16", r: "2" }], + ["path", { d: "m18 6-8.586 8.586" }] + ]; + + const SquareChartGantt = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M9 8h7" }], + ["path", { d: "M8 12h6" }], + ["path", { d: "M11 16h5" }] + ]; + + const SquareCheckBig = [ + ["path", { d: "M21 10.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.5" }], + ["path", { d: "m9 11 3 3L22 4" }] + ]; + + const SquareCheck = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "m9 12 2 2 4-4" }] + ]; + + const SquareChevronDown = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "m16 10-4 4-4-4" }] + ]; + + const SquareChevronLeft = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "m14 16-4-4 4-4" }] + ]; + + const SquareChevronRight = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "m10 8 4 4-4 4" }] + ]; + + const SquareChevronUp = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "m8 14 4-4 4 4" }] + ]; + + const SquareCode = [ + ["path", { d: "M10 9.5 8 12l2 2.5" }], + ["path", { d: "m14 9.5 2 2.5-2 2.5" }], + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }] + ]; + + const SquareDashedBottomCode = [ + ["path", { d: "M10 9.5 8 12l2 2.5" }], + ["path", { d: "M14 21h1" }], + ["path", { d: "m14 9.5 2 2.5-2 2.5" }], + ["path", { d: "M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2" }], + ["path", { d: "M9 21h1" }] + ]; + + const SquareDashedBottom = [ + ["path", { d: "M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2" }], + ["path", { d: "M9 21h1" }], + ["path", { d: "M14 21h1" }] + ]; + + const SquareDashedKanban = [ + ["path", { d: "M8 7v7" }], + ["path", { d: "M12 7v4" }], + ["path", { d: "M16 7v9" }], + ["path", { d: "M5 3a2 2 0 0 0-2 2" }], + ["path", { d: "M9 3h1" }], + ["path", { d: "M14 3h1" }], + ["path", { d: "M19 3a2 2 0 0 1 2 2" }], + ["path", { d: "M21 9v1" }], + ["path", { d: "M21 14v1" }], + ["path", { d: "M21 19a2 2 0 0 1-2 2" }], + ["path", { d: "M14 21h1" }], + ["path", { d: "M9 21h1" }], + ["path", { d: "M5 21a2 2 0 0 1-2-2" }], + ["path", { d: "M3 14v1" }], + ["path", { d: "M3 9v1" }] + ]; + + const SquareDashedMousePointer = [ + [ + "path", + { + d: "M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z" + } + ], + ["path", { d: "M5 3a2 2 0 0 0-2 2" }], + ["path", { d: "M19 3a2 2 0 0 1 2 2" }], + ["path", { d: "M5 21a2 2 0 0 1-2-2" }], + ["path", { d: "M9 3h1" }], + ["path", { d: "M9 21h2" }], + ["path", { d: "M14 3h1" }], + ["path", { d: "M3 9v1" }], + ["path", { d: "M21 9v2" }], + ["path", { d: "M3 14v1" }] + ]; + + const SquareDashed = [ + ["path", { d: "M5 3a2 2 0 0 0-2 2" }], + ["path", { d: "M19 3a2 2 0 0 1 2 2" }], + ["path", { d: "M21 19a2 2 0 0 1-2 2" }], + ["path", { d: "M5 21a2 2 0 0 1-2-2" }], + ["path", { d: "M9 3h1" }], + ["path", { d: "M9 21h1" }], + ["path", { d: "M14 3h1" }], + ["path", { d: "M14 21h1" }], + ["path", { d: "M3 9v1" }], + ["path", { d: "M21 9v1" }], + ["path", { d: "M3 14v1" }], + ["path", { d: "M21 14v1" }] + ]; + + const SquareDivide = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }], + ["line", { x1: "8", x2: "16", y1: "12", y2: "12" }], + ["line", { x1: "12", x2: "12", y1: "16", y2: "16" }], + ["line", { x1: "12", x2: "12", y1: "8", y2: "8" }] + ]; + + const SquareDot = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["circle", { cx: "12", cy: "12", r: "1" }] + ]; + + const SquareEqual = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M7 10h10" }], + ["path", { d: "M7 14h10" }] + ]; + + const SquareFunction = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }], + ["path", { d: "M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3" }], + ["path", { d: "M9 11.2h5.7" }] + ]; + + const SquareKanban = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M8 7v7" }], + ["path", { d: "M12 7v4" }], + ["path", { d: "M16 7v9" }] + ]; + + const SquareLibrary = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M7 7v10" }], + ["path", { d: "M11 7v10" }], + ["path", { d: "m15 7 2 10" }] + ]; + + const SquareM = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M8 16V8l4 4 4-4v8" }] + ]; + + const SquareMenu = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M7 8h10" }], + ["path", { d: "M7 12h10" }], + ["path", { d: "M7 16h10" }] + ]; + + const SquareMinus = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M8 12h8" }] + ]; + + const SquareMousePointer = [ + [ + "path", + { + d: "M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z" + } + ], + ["path", { d: "M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6" }] + ]; + + const SquareParkingOff = [ + ["path", { d: "M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41" }], + ["path", { d: "M3 8.7V19a2 2 0 0 0 2 2h10.3" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M13 13a3 3 0 1 0 0-6H9v2" }], + ["path", { d: "M9 17v-2.3" }] + ]; + + const SquareParking = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M9 17V7h4a3 3 0 0 1 0 6H9" }] + ]; + + const SquarePen = [ + ["path", { d: "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" }], + [ + "path", + { + d: "M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z" + } + ] + ]; + + const SquarePercent = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "m15 9-6 6" }], + ["path", { d: "M9 9h.01" }], + ["path", { d: "M15 15h.01" }] + ]; + + const SquarePi = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M7 7h10" }], + ["path", { d: "M10 7v10" }], + ["path", { d: "M16 17a2 2 0 0 1-2-2V7" }] + ]; + + const SquarePilcrow = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M12 12H9.5a2.5 2.5 0 0 1 0-5H17" }], + ["path", { d: "M12 7v10" }], + ["path", { d: "M16 7v10" }] + ]; + + const SquarePlay = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "m9 8 6 4-6 4Z" }] + ]; + + const SquarePlus = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M8 12h8" }], + ["path", { d: "M12 8v8" }] + ]; + + const SquarePower = [ + ["path", { d: "M12 7v4" }], + ["path", { d: "M7.998 9.003a5 5 0 1 0 8-.005" }], + ["rect", { x: "3", y: "3", width: "18", height: "18", rx: "2" }] + ]; + + const SquareRadical = [ + ["path", { d: "M7 12h2l2 5 2-10h4" }], + ["rect", { x: "3", y: "3", width: "18", height: "18", rx: "2" }] + ]; + + const SquareScissors = [ + ["rect", { width: "20", height: "20", x: "2", y: "2", rx: "2" }], + ["circle", { cx: "8", cy: "8", r: "2" }], + ["path", { d: "M9.414 9.414 12 12" }], + ["path", { d: "M14.8 14.8 18 18" }], + ["circle", { cx: "8", cy: "16", r: "2" }], + ["path", { d: "m18 6-8.586 8.586" }] + ]; + + const SquareSigma = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M16 8.9V7H8l4 5-4 5h8v-1.9" }] + ]; + + const SquareSlash = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["line", { x1: "9", x2: "15", y1: "15", y2: "9" }] + ]; + + const SquareSplitHorizontal = [ + ["path", { d: "M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3" }], + ["path", { d: "M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3" }], + ["line", { x1: "12", x2: "12", y1: "4", y2: "20" }] + ]; + + const SquareSplitVertical = [ + ["path", { d: "M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3" }], + ["path", { d: "M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3" }], + ["line", { x1: "4", x2: "20", y1: "12", y2: "12" }] + ]; + + const SquareSquare = [ + ["rect", { x: "3", y: "3", width: "18", height: "18", rx: "2" }], + ["rect", { x: "8", y: "8", width: "8", height: "8", rx: "1" }] + ]; + + const SquareStack = [ + ["path", { d: "M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2" }], + ["path", { d: "M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2" }], + ["rect", { width: "8", height: "8", x: "14", y: "14", rx: "2" }] + ]; + + const SquareTerminal = [ + ["path", { d: "m7 11 2-2-2-2" }], + ["path", { d: "M11 13h4" }], + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }] + ]; + + const SquareUserRound = [ + ["path", { d: "M18 21a6 6 0 0 0-12 0" }], + ["circle", { cx: "12", cy: "11", r: "4" }], + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }] + ]; + + const SquareUser = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["circle", { cx: "12", cy: "10", r: "3" }], + ["path", { d: "M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2" }] + ]; + + const SquareX = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }], + ["path", { d: "m15 9-6 6" }], + ["path", { d: "m9 9 6 6" }] + ]; + + const Square = [["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }]]; + + const Squircle = [ + ["path", { d: "M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9" }] + ]; + + const Squirrel = [ + ["path", { d: "M15.236 22a3 3 0 0 0-2.2-5" }], + ["path", { d: "M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4" }], + ["path", { d: "M18 13h.01" }], + [ + "path", + { + d: "M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10" + } + ] + ]; + + const Stamp = [ + ["path", { d: "M5 22h14" }], + [ + "path", + { + d: "M19.27 13.73A2.5 2.5 0 0 0 17.5 13h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-1.5c0-.66-.26-1.3-.73-1.77Z" + } + ], + ["path", { d: "M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-3-3c-1.66 0-3 1-3 3s1 2 1 3.5V13" }] + ]; + + const StarHalf = [ + [ + "path", + { + d: "M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2" + } + ] + ]; + + const StarOff = [ + ["path", { d: "M8.34 8.34 2 9.27l5 4.87L5.82 21 12 17.77 18.18 21l-.59-3.43" }], + ["path", { d: "M18.42 12.76 22 9.27l-6.91-1L12 2l-1.44 2.91" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Star = [ + [ + "path", + { + d: "M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z" + } + ] + ]; + + const StepBack = [ + ["line", { x1: "18", x2: "18", y1: "20", y2: "4" }], + ["polygon", { points: "14,20 4,12 14,4" }] + ]; + + const StepForward = [ + ["line", { x1: "6", x2: "6", y1: "4", y2: "20" }], + ["polygon", { points: "10,4 20,12 10,20" }] + ]; + + const Stethoscope = [ + ["path", { d: "M11 2v2" }], + ["path", { d: "M5 2v2" }], + ["path", { d: "M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1" }], + ["path", { d: "M8 15a6 6 0 0 0 12 0v-3" }], + ["circle", { cx: "20", cy: "10", r: "2" }] + ]; + + const Sticker = [ + ["path", { d: "M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z" }], + ["path", { d: "M14 3v4a2 2 0 0 0 2 2h4" }], + ["path", { d: "M8 13h.01" }], + ["path", { d: "M16 13h.01" }], + ["path", { d: "M10 16s.8 1 2 1c1.3 0 2-1 2-1" }] + ]; + + const StickyNote = [ + ["path", { d: "M16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8Z" }], + ["path", { d: "M15 3v4a2 2 0 0 0 2 2h4" }] + ]; + + const Store = [ + ["path", { d: "m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7" }], + ["path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }], + ["path", { d: "M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4" }], + ["path", { d: "M2 7h20" }], + [ + "path", + { + d: "M22 7v3a2 2 0 0 1-2 2a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12a2 2 0 0 1-2-2V7" + } + ] + ]; + + const StretchHorizontal = [ + ["rect", { width: "20", height: "6", x: "2", y: "4", rx: "2" }], + ["rect", { width: "20", height: "6", x: "2", y: "14", rx: "2" }] + ]; + + const StretchVertical = [ + ["rect", { width: "6", height: "20", x: "4", y: "2", rx: "2" }], + ["rect", { width: "6", height: "20", x: "14", y: "2", rx: "2" }] + ]; + + const Strikethrough = [ + ["path", { d: "M16 4H9a3 3 0 0 0-2.83 4" }], + ["path", { d: "M14 12a4 4 0 0 1 0 8H6" }], + ["line", { x1: "4", x2: "20", y1: "12", y2: "12" }] + ]; + + const Subscript = [ + ["path", { d: "m4 5 8 8" }], + ["path", { d: "m12 5-8 8" }], + [ + "path", + { + d: "M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07" + } + ] + ]; + + const SunDim = [ + ["circle", { cx: "12", cy: "12", r: "4" }], + ["path", { d: "M12 4h.01" }], + ["path", { d: "M20 12h.01" }], + ["path", { d: "M12 20h.01" }], + ["path", { d: "M4 12h.01" }], + ["path", { d: "M17.657 6.343h.01" }], + ["path", { d: "M17.657 17.657h.01" }], + ["path", { d: "M6.343 17.657h.01" }], + ["path", { d: "M6.343 6.343h.01" }] + ]; + + const SunMedium = [ + ["circle", { cx: "12", cy: "12", r: "4" }], + ["path", { d: "M12 3v1" }], + ["path", { d: "M12 20v1" }], + ["path", { d: "M3 12h1" }], + ["path", { d: "M20 12h1" }], + ["path", { d: "m18.364 5.636-.707.707" }], + ["path", { d: "m6.343 17.657-.707.707" }], + ["path", { d: "m5.636 5.636.707.707" }], + ["path", { d: "m17.657 17.657.707.707" }] + ]; + + const SunMoon = [ + ["path", { d: "M12 8a2.83 2.83 0 0 0 4 4 4 4 0 1 1-4-4" }], + ["path", { d: "M12 2v2" }], + ["path", { d: "M12 20v2" }], + ["path", { d: "m4.9 4.9 1.4 1.4" }], + ["path", { d: "m17.7 17.7 1.4 1.4" }], + ["path", { d: "M2 12h2" }], + ["path", { d: "M20 12h2" }], + ["path", { d: "m6.3 17.7-1.4 1.4" }], + ["path", { d: "m19.1 4.9-1.4 1.4" }] + ]; + + const SunSnow = [ + ["path", { d: "M10 21v-1" }], + ["path", { d: "M10 4V3" }], + ["path", { d: "M10 9a3 3 0 0 0 0 6" }], + ["path", { d: "m14 20 1.25-2.5L18 18" }], + ["path", { d: "m14 4 1.25 2.5L18 6" }], + ["path", { d: "m17 21-3-6 1.5-3H22" }], + ["path", { d: "m17 3-3 6 1.5 3" }], + ["path", { d: "M2 12h1" }], + ["path", { d: "m20 10-1.5 2 1.5 2" }], + ["path", { d: "m3.64 18.36.7-.7" }], + ["path", { d: "m4.34 6.34-.7-.7" }] + ]; + + const Sun = [ + ["circle", { cx: "12", cy: "12", r: "4" }], + ["path", { d: "M12 2v2" }], + ["path", { d: "M12 20v2" }], + ["path", { d: "m4.93 4.93 1.41 1.41" }], + ["path", { d: "m17.66 17.66 1.41 1.41" }], + ["path", { d: "M2 12h2" }], + ["path", { d: "M20 12h2" }], + ["path", { d: "m6.34 17.66-1.41 1.41" }], + ["path", { d: "m19.07 4.93-1.41 1.41" }] + ]; + + const Sunrise = [ + ["path", { d: "M12 2v8" }], + ["path", { d: "m4.93 10.93 1.41 1.41" }], + ["path", { d: "M2 18h2" }], + ["path", { d: "M20 18h2" }], + ["path", { d: "m19.07 10.93-1.41 1.41" }], + ["path", { d: "M22 22H2" }], + ["path", { d: "m8 6 4-4 4 4" }], + ["path", { d: "M16 18a4 4 0 0 0-8 0" }] + ]; + + const Sunset = [ + ["path", { d: "M12 10V2" }], + ["path", { d: "m4.93 10.93 1.41 1.41" }], + ["path", { d: "M2 18h2" }], + ["path", { d: "M20 18h2" }], + ["path", { d: "m19.07 10.93-1.41 1.41" }], + ["path", { d: "M22 22H2" }], + ["path", { d: "m16 6-4 4-4-4" }], + ["path", { d: "M16 18a4 4 0 0 0-8 0" }] + ]; + + const Superscript = [ + ["path", { d: "m4 19 8-8" }], + ["path", { d: "m12 19-8-8" }], + [ + "path", + { + d: "M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06" + } + ] + ]; + + const SwatchBook = [ + ["path", { d: "M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z" }], + ["path", { d: "M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7" }], + ["path", { d: "M 7 17h.01" }], + [ + "path", + { d: "m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8" } + ] + ]; + + const SwissFranc = [ + ["path", { d: "M10 21V3h8" }], + ["path", { d: "M6 16h9" }], + ["path", { d: "M10 9.5h7" }] + ]; + + const SwitchCamera = [ + ["path", { d: "M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5" }], + ["path", { d: "M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5" }], + ["circle", { cx: "12", cy: "12", r: "3" }], + ["path", { d: "m18 22-3-3 3-3" }], + ["path", { d: "m6 2 3 3-3 3" }] + ]; + + const Sword = [ + ["polyline", { points: "14.5 17.5 3 6 3 3 6 3 17.5 14.5" }], + ["line", { x1: "13", x2: "19", y1: "19", y2: "13" }], + ["line", { x1: "16", x2: "20", y1: "16", y2: "20" }], + ["line", { x1: "19", x2: "21", y1: "21", y2: "19" }] + ]; + + const Swords = [ + ["polyline", { points: "14.5 17.5 3 6 3 3 6 3 17.5 14.5" }], + ["line", { x1: "13", x2: "19", y1: "19", y2: "13" }], + ["line", { x1: "16", x2: "20", y1: "16", y2: "20" }], + ["line", { x1: "19", x2: "21", y1: "21", y2: "19" }], + ["polyline", { points: "14.5 6.5 18 3 21 3 21 6 17.5 9.5" }], + ["line", { x1: "5", x2: "9", y1: "14", y2: "18" }], + ["line", { x1: "7", x2: "4", y1: "17", y2: "20" }], + ["line", { x1: "3", x2: "5", y1: "19", y2: "21" }] + ]; + + const Syringe = [ + ["path", { d: "m18 2 4 4" }], + ["path", { d: "m17 7 3-3" }], + ["path", { d: "M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5" }], + ["path", { d: "m9 11 4 4" }], + ["path", { d: "m5 19-3 3" }], + ["path", { d: "m14 4 6 6" }] + ]; + + const Table2 = [ + [ + "path", + { + d: "M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18" + } + ] + ]; + + const TableCellsMerge = [ + ["path", { d: "M12 21v-6" }], + ["path", { d: "M12 9V3" }], + ["path", { d: "M3 15h18" }], + ["path", { d: "M3 9h18" }], + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }] + ]; + + const TableCellsSplit = [ + ["path", { d: "M12 15V9" }], + ["path", { d: "M3 15h18" }], + ["path", { d: "M3 9h18" }], + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }] + ]; + + const TableColumnsSplit = [ + ["path", { d: "M14 14v2" }], + ["path", { d: "M14 20v2" }], + ["path", { d: "M14 2v2" }], + ["path", { d: "M14 8v2" }], + ["path", { d: "M2 15h8" }], + ["path", { d: "M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2" }], + ["path", { d: "M2 9h8" }], + ["path", { d: "M22 15h-4" }], + ["path", { d: "M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2" }], + ["path", { d: "M22 9h-4" }], + ["path", { d: "M5 3v18" }] + ]; + + const TableOfContents = [ + ["path", { d: "M16 12H3" }], + ["path", { d: "M16 18H3" }], + ["path", { d: "M16 6H3" }], + ["path", { d: "M21 12h.01" }], + ["path", { d: "M21 18h.01" }], + ["path", { d: "M21 6h.01" }] + ]; + + const TableProperties = [ + ["path", { d: "M15 3v18" }], + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M21 9H3" }], + ["path", { d: "M21 15H3" }] + ]; + + const TableRowsSplit = [ + ["path", { d: "M14 10h2" }], + ["path", { d: "M15 22v-8" }], + ["path", { d: "M15 2v4" }], + ["path", { d: "M2 10h2" }], + ["path", { d: "M20 10h2" }], + ["path", { d: "M3 19h18" }], + ["path", { d: "M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6" }], + ["path", { d: "M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2" }], + ["path", { d: "M8 10h2" }], + ["path", { d: "M9 22v-8" }], + ["path", { d: "M9 2v4" }] + ]; + + const Table = [ + ["path", { d: "M12 3v18" }], + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M3 9h18" }], + ["path", { d: "M3 15h18" }] + ]; + + const TabletSmartphone = [ + ["rect", { width: "10", height: "14", x: "3", y: "8", rx: "2" }], + ["path", { d: "M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4" }], + ["path", { d: "M8 18h.01" }] + ]; + + const Tablet = [ + ["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2", ry: "2" }], + ["line", { x1: "12", x2: "12.01", y1: "18", y2: "18" }] + ]; + + const Tablets = [ + ["circle", { cx: "7", cy: "7", r: "5" }], + ["circle", { cx: "17", cy: "17", r: "5" }], + ["path", { d: "M12 17h10" }], + ["path", { d: "m3.46 10.54 7.08-7.08" }] + ]; + + const Tag = [ + [ + "path", + { + d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" + } + ], + ["circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" }] + ]; + + const Tags = [ + ["path", { d: "m15 5 6.3 6.3a2.4 2.4 0 0 1 0 3.4L17 19" }], + [ + "path", + { + d: "M9.586 5.586A2 2 0 0 0 8.172 5H3a1 1 0 0 0-1 1v5.172a2 2 0 0 0 .586 1.414L8.29 18.29a2.426 2.426 0 0 0 3.42 0l3.58-3.58a2.426 2.426 0 0 0 0-3.42z" + } + ], + ["circle", { cx: "6.5", cy: "9.5", r: ".5", fill: "currentColor" }] + ]; + + const Tally1 = [["path", { d: "M4 4v16" }]]; + + const Tally2 = [ + ["path", { d: "M4 4v16" }], + ["path", { d: "M9 4v16" }] + ]; + + const Tally3 = [ + ["path", { d: "M4 4v16" }], + ["path", { d: "M9 4v16" }], + ["path", { d: "M14 4v16" }] + ]; + + const Tally4 = [ + ["path", { d: "M4 4v16" }], + ["path", { d: "M9 4v16" }], + ["path", { d: "M14 4v16" }], + ["path", { d: "M19 4v16" }] + ]; + + const Tally5 = [ + ["path", { d: "M4 4v16" }], + ["path", { d: "M9 4v16" }], + ["path", { d: "M14 4v16" }], + ["path", { d: "M19 4v16" }], + ["path", { d: "M22 6 2 18" }] + ]; + + const Tangent = [ + ["circle", { cx: "17", cy: "4", r: "2" }], + ["path", { d: "M15.59 5.41 5.41 15.59" }], + ["circle", { cx: "4", cy: "17", r: "2" }], + ["path", { d: "M12 22s-4-9-1.5-11.5S22 12 22 12" }] + ]; + + const Target = [ + ["circle", { cx: "12", cy: "12", r: "10" }], + ["circle", { cx: "12", cy: "12", r: "6" }], + ["circle", { cx: "12", cy: "12", r: "2" }] + ]; + + const Telescope = [ + [ + "path", + { + d: "m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44" + } + ], + ["path", { d: "m13.56 11.747 4.332-.924" }], + ["path", { d: "m16 21-3.105-6.21" }], + [ + "path", + { + d: "M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z" + } + ], + ["path", { d: "m6.158 8.633 1.114 4.456" }], + ["path", { d: "m8 21 3.105-6.21" }], + ["circle", { cx: "12", cy: "13", r: "2" }] + ]; + + const TentTree = [ + ["circle", { cx: "4", cy: "4", r: "2" }], + ["path", { d: "m14 5 3-3 3 3" }], + ["path", { d: "m14 10 3-3 3 3" }], + ["path", { d: "M17 14V2" }], + ["path", { d: "M17 14H7l-5 8h20Z" }], + ["path", { d: "M8 14v8" }], + ["path", { d: "m9 14 5 8" }] + ]; + + const Tent = [ + ["path", { d: "M3.5 21 14 3" }], + ["path", { d: "M20.5 21 10 3" }], + ["path", { d: "M15.5 21 12 15l-3.5 6" }], + ["path", { d: "M2 21h20" }] + ]; + + const Terminal = [ + ["polyline", { points: "4 17 10 11 4 5" }], + ["line", { x1: "12", x2: "20", y1: "19", y2: "19" }] + ]; + + const TestTubeDiagonal = [ + ["path", { d: "M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3" }], + ["path", { d: "m16 2 6 6" }], + ["path", { d: "M12 16H4" }] + ]; + + const TestTube = [ + ["path", { d: "M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2" }], + ["path", { d: "M8.5 2h7" }], + ["path", { d: "M14.5 16h-5" }] + ]; + + const TestTubes = [ + ["path", { d: "M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2" }], + ["path", { d: "M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2" }], + ["path", { d: "M3 2h7" }], + ["path", { d: "M14 2h7" }], + ["path", { d: "M9 16H4" }], + ["path", { d: "M20 16h-5" }] + ]; + + const TextCursorInput = [ + ["path", { d: "M5 4h1a3 3 0 0 1 3 3 3 3 0 0 1 3-3h1" }], + ["path", { d: "M13 20h-1a3 3 0 0 1-3-3 3 3 0 0 1-3 3H5" }], + ["path", { d: "M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1" }], + ["path", { d: "M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7" }], + ["path", { d: "M9 7v10" }] + ]; + + const TextCursor = [ + ["path", { d: "M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1" }], + ["path", { d: "M7 22h1a4 4 0 0 0 4-4v-1" }], + ["path", { d: "M7 2h1a4 4 0 0 1 4 4v1" }] + ]; + + const TextQuote = [ + ["path", { d: "M17 6H3" }], + ["path", { d: "M21 12H8" }], + ["path", { d: "M21 18H8" }], + ["path", { d: "M3 12v6" }] + ]; + + const TextSearch = [ + ["path", { d: "M21 6H3" }], + ["path", { d: "M10 12H3" }], + ["path", { d: "M10 18H3" }], + ["circle", { cx: "17", cy: "15", r: "3" }], + ["path", { d: "m21 19-1.9-1.9" }] + ]; + + const TextSelect = [ + ["path", { d: "M5 3a2 2 0 0 0-2 2" }], + ["path", { d: "M19 3a2 2 0 0 1 2 2" }], + ["path", { d: "M21 19a2 2 0 0 1-2 2" }], + ["path", { d: "M5 21a2 2 0 0 1-2-2" }], + ["path", { d: "M9 3h1" }], + ["path", { d: "M9 21h1" }], + ["path", { d: "M14 3h1" }], + ["path", { d: "M14 21h1" }], + ["path", { d: "M3 9v1" }], + ["path", { d: "M21 9v1" }], + ["path", { d: "M3 14v1" }], + ["path", { d: "M21 14v1" }], + ["line", { x1: "7", x2: "15", y1: "8", y2: "8" }], + ["line", { x1: "7", x2: "17", y1: "12", y2: "12" }], + ["line", { x1: "7", x2: "13", y1: "16", y2: "16" }] + ]; + + const Text = [ + ["path", { d: "M17 6.1H3" }], + ["path", { d: "M21 12.1H3" }], + ["path", { d: "M15.1 18H3" }] + ]; + + const Theater = [ + ["path", { d: "M2 10s3-3 3-8" }], + ["path", { d: "M22 10s-3-3-3-8" }], + ["path", { d: "M10 2c0 4.4-3.6 8-8 8" }], + ["path", { d: "M14 2c0 4.4 3.6 8 8 8" }], + ["path", { d: "M2 10s2 2 2 5" }], + ["path", { d: "M22 10s-2 2-2 5" }], + ["path", { d: "M8 15h8" }], + ["path", { d: "M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1" }], + ["path", { d: "M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1" }] + ]; + + const ThermometerSnowflake = [ + ["path", { d: "m10 20-1.25-2.5L6 18" }], + ["path", { d: "M10 4 8.75 6.5 6 6" }], + ["path", { d: "M10.585 15H10" }], + ["path", { d: "M2 12h6.5L10 9" }], + ["path", { d: "M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z" }], + ["path", { d: "m4 10 1.5 2L4 14" }], + ["path", { d: "m7 21 3-6-1.5-3" }], + ["path", { d: "m7 3 3 6h2" }] + ]; + + const ThermometerSun = [ + ["path", { d: "M12 9a4 4 0 0 0-2 7.5" }], + ["path", { d: "M12 3v2" }], + ["path", { d: "m6.6 18.4-1.4 1.4" }], + ["path", { d: "M20 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z" }], + ["path", { d: "M4 13H2" }], + ["path", { d: "M6.34 7.34 4.93 5.93" }] + ]; + + const Thermometer = [["path", { d: "M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z" }]]; + + const ThumbsDown = [ + ["path", { d: "M17 14V2" }], + [ + "path", + { + d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" + } + ] + ]; + + const ThumbsUp = [ + ["path", { d: "M7 10v12" }], + [ + "path", + { + d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" + } + ] + ]; + + const TicketCheck = [ + [ + "path", + { + d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z" + } + ], + ["path", { d: "m9 12 2 2 4-4" }] + ]; + + const TicketMinus = [ + [ + "path", + { + d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z" + } + ], + ["path", { d: "M9 12h6" }] + ]; + + const TicketPercent = [ + [ + "path", + { + d: "M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z" + } + ], + ["path", { d: "M9 9h.01" }], + ["path", { d: "m15 9-6 6" }], + ["path", { d: "M15 15h.01" }] + ]; + + const TicketPlus = [ + [ + "path", + { + d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z" + } + ], + ["path", { d: "M9 12h6" }], + ["path", { d: "M12 9v6" }] + ]; + + const TicketSlash = [ + [ + "path", + { + d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z" + } + ], + ["path", { d: "m9.5 14.5 5-5" }] + ]; + + const TicketX = [ + [ + "path", + { + d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z" + } + ], + ["path", { d: "m9.5 14.5 5-5" }], + ["path", { d: "m9.5 9.5 5 5" }] + ]; + + const Ticket = [ + [ + "path", + { + d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z" + } + ], + ["path", { d: "M13 5v2" }], + ["path", { d: "M13 17v2" }], + ["path", { d: "M13 11v2" }] + ]; + + const TicketsPlane = [ + ["path", { d: "M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12" }], + ["path", { d: "m12 13.5 3.75.5" }], + ["path", { d: "m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8" }], + ["path", { d: "M6 10V8" }], + ["path", { d: "M6 14v1" }], + ["path", { d: "M6 19v2" }], + ["rect", { x: "2", y: "8", width: "20", height: "13", rx: "2" }] + ]; + + const Tickets = [ + ["path", { d: "m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8" }], + ["path", { d: "M6 10V8" }], + ["path", { d: "M6 14v1" }], + ["path", { d: "M6 19v2" }], + ["rect", { x: "2", y: "8", width: "20", height: "13", rx: "2" }] + ]; + + const TimerOff = [ + ["path", { d: "M10 2h4" }], + ["path", { d: "M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7" }], + ["path", { d: "M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M12 12v-2" }] + ]; + + const TimerReset = [ + ["path", { d: "M10 2h4" }], + ["path", { d: "M12 14v-4" }], + ["path", { d: "M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6" }], + ["path", { d: "M9 17H4v5" }] + ]; + + const Timer = [ + ["line", { x1: "10", x2: "14", y1: "2", y2: "2" }], + ["line", { x1: "12", x2: "15", y1: "14", y2: "11" }], + ["circle", { cx: "12", cy: "14", r: "8" }] + ]; + + const ToggleLeft = [ + ["rect", { width: "20", height: "12", x: "2", y: "6", rx: "6", ry: "6" }], + ["circle", { cx: "8", cy: "12", r: "2" }] + ]; + + const ToggleRight = [ + ["rect", { width: "20", height: "12", x: "2", y: "6", rx: "6", ry: "6" }], + ["circle", { cx: "16", cy: "12", r: "2" }] + ]; + + const Toilet = [ + [ + "path", + { + d: "M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18" + } + ], + ["path", { d: "M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8" }] + ]; + + const Tornado = [ + ["path", { d: "M21 4H3" }], + ["path", { d: "M18 8H6" }], + ["path", { d: "M19 12H9" }], + ["path", { d: "M16 16h-6" }], + ["path", { d: "M11 20H9" }] + ]; + + const Torus = [ + ["ellipse", { cx: "12", cy: "11", rx: "3", ry: "2" }], + ["ellipse", { cx: "12", cy: "12.5", rx: "10", ry: "8.5" }] + ]; + + const TouchpadOff = [ + ["path", { d: "M4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16" }], + ["path", { d: "M2 14h12" }], + ["path", { d: "M22 14h-2" }], + ["path", { d: "M12 20v-6" }], + ["path", { d: "m2 2 20 20" }], + ["path", { d: "M22 16V6a2 2 0 0 0-2-2H10" }] + ]; + + const Touchpad = [ + ["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }], + ["path", { d: "M2 14h20" }], + ["path", { d: "M12 20v-6" }] + ]; + + const TowerControl = [ + ["path", { d: "M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z" }], + ["path", { d: "M8 13v9" }], + ["path", { d: "M16 22v-9" }], + ["path", { d: "m9 6 1 7" }], + ["path", { d: "m15 6-1 7" }], + ["path", { d: "M12 6V2" }], + ["path", { d: "M13 2h-2" }] + ]; + + const ToyBrick = [ + ["rect", { width: "18", height: "12", x: "3", y: "8", rx: "1" }], + ["path", { d: "M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3" }], + ["path", { d: "M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3" }] + ]; + + const Tractor = [ + ["path", { d: "m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20" }], + ["path", { d: "M16 18h-5" }], + ["path", { d: "M18 5a1 1 0 0 0-1 1v5.573" }], + ["path", { d: "M3 4h8.129a1 1 0 0 1 .99.863L13 11.246" }], + ["path", { d: "M4 11V4" }], + ["path", { d: "M7 15h.01" }], + ["path", { d: "M8 10.1V4" }], + ["circle", { cx: "18", cy: "18", r: "2" }], + ["circle", { cx: "7", cy: "15", r: "5" }] + ]; + + const TrafficCone = [ + ["path", { d: "M9.3 6.2a4.55 4.55 0 0 0 5.4 0" }], + ["path", { d: "M7.9 10.7c.9.8 2.4 1.3 4.1 1.3s3.2-.5 4.1-1.3" }], + [ + "path", + { + d: "M13.9 3.5a1.93 1.93 0 0 0-3.8-.1l-3 10c-.1.2-.1.4-.1.6 0 1.7 2.2 3 5 3s5-1.3 5-3c0-.2 0-.4-.1-.5Z" + } + ], + [ + "path", + { + d: "m7.5 12.2-4.7 2.7c-.5.3-.8.7-.8 1.1s.3.8.8 1.1l7.6 4.5c.9.5 2.1.5 3 0l7.6-4.5c.7-.3 1-.7 1-1.1s-.3-.8-.8-1.1l-4.7-2.8" + } + ] + ]; + + const TrainFrontTunnel = [ + ["path", { d: "M2 22V12a10 10 0 1 1 20 0v10" }], + ["path", { d: "M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8" }], + ["path", { d: "M10 15h.01" }], + ["path", { d: "M14 15h.01" }], + ["path", { d: "M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z" }], + ["path", { d: "m9 19-2 3" }], + ["path", { d: "m15 19 2 3" }] + ]; + + const TrainFront = [ + ["path", { d: "M8 3.1V7a4 4 0 0 0 8 0V3.1" }], + ["path", { d: "m9 15-1-1" }], + ["path", { d: "m15 15 1-1" }], + ["path", { d: "M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z" }], + ["path", { d: "m8 19-2 3" }], + ["path", { d: "m16 19 2 3" }] + ]; + + const TrainTrack = [ + ["path", { d: "M2 17 17 2" }], + ["path", { d: "m2 14 8 8" }], + ["path", { d: "m5 11 8 8" }], + ["path", { d: "m8 8 8 8" }], + ["path", { d: "m11 5 8 8" }], + ["path", { d: "m14 2 8 8" }], + ["path", { d: "M7 22 22 7" }] + ]; + + const TramFront = [ + ["rect", { width: "16", height: "16", x: "4", y: "3", rx: "2" }], + ["path", { d: "M4 11h16" }], + ["path", { d: "M12 3v8" }], + ["path", { d: "m8 19-2 3" }], + ["path", { d: "m18 22-2-3" }], + ["path", { d: "M8 15h.01" }], + ["path", { d: "M16 15h.01" }] + ]; + + const Transgender = [ + ["path", { d: "M12 16v6" }], + ["path", { d: "M14 20h-4" }], + ["path", { d: "M18 2h4v4" }], + ["path", { d: "m2 2 7.17 7.17" }], + ["path", { d: "M2 5.355V2h3.357" }], + ["path", { d: "m22 2-7.17 7.17" }], + ["path", { d: "M8 5 5 8" }], + ["circle", { cx: "12", cy: "12", r: "4" }] + ]; + + const Trash2 = [ + ["path", { d: "M3 6h18" }], + ["path", { d: "M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6" }], + ["path", { d: "M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2" }], + ["line", { x1: "10", x2: "10", y1: "11", y2: "17" }], + ["line", { x1: "14", x2: "14", y1: "11", y2: "17" }] + ]; + + const Trash = [ + ["path", { d: "M3 6h18" }], + ["path", { d: "M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6" }], + ["path", { d: "M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2" }] + ]; + + const TreeDeciduous = [ + [ + "path", + { + d: "M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z" + } + ], + ["path", { d: "M12 19v3" }] + ]; + + const TreePalm = [ + ["path", { d: "M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4" }], + ["path", { d: "M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3" }], + [ + "path", + { + d: "M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35" + } + ], + ["path", { d: "M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14" }] + ]; + + const TreePine = [ + [ + "path", + { + d: "m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z" + } + ], + ["path", { d: "M12 22v-3" }] + ]; + + const Trees = [ + ["path", { d: "M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z" }], + ["path", { d: "M7 16v6" }], + ["path", { d: "M13 19v3" }], + [ + "path", + { + d: "M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5" + } + ] + ]; + + const Trello = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }], + ["rect", { width: "3", height: "9", x: "7", y: "7" }], + ["rect", { width: "3", height: "5", x: "14", y: "7" }] + ]; + + const TrendingDown = [ + ["polyline", { points: "22 17 13.5 8.5 8.5 13.5 2 7" }], + ["polyline", { points: "16 17 22 17 22 11" }] + ]; + + const TrendingUpDown = [ + ["path", { d: "M14.828 14.828 21 21" }], + ["path", { d: "M21 16v5h-5" }], + ["path", { d: "m21 3-9 9-4-4-6 6" }], + ["path", { d: "M21 8V3h-5" }] + ]; + + const TrendingUp = [ + ["polyline", { points: "22 7 13.5 15.5 8.5 10.5 2 17" }], + ["polyline", { points: "16 7 22 7 22 13" }] + ]; + + const TriangleAlert = [ + ["path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3" }], + ["path", { d: "M12 9v4" }], + ["path", { d: "M12 17h.01" }] + ]; + + const TriangleDashed = [ + ["path", { d: "M10.17 4.193a2 2 0 0 1 3.666.013" }], + ["path", { d: "M14 21h2" }], + ["path", { d: "m15.874 7.743 1 1.732" }], + ["path", { d: "m18.849 12.952 1 1.732" }], + ["path", { d: "M21.824 18.18a2 2 0 0 1-1.835 2.824" }], + ["path", { d: "M4.024 21a2 2 0 0 1-1.839-2.839" }], + ["path", { d: "m5.136 12.952-1 1.732" }], + ["path", { d: "M8 21h2" }], + ["path", { d: "m8.102 7.743-1 1.732" }] + ]; + + const TriangleRight = [ + ["path", { d: "M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z" }] + ]; + + const Triangle = [ + ["path", { d: "M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }] + ]; + + const Trophy = [ + ["path", { d: "M6 9H4.5a2.5 2.5 0 0 1 0-5H6" }], + ["path", { d: "M18 9h1.5a2.5 2.5 0 0 0 0-5H18" }], + ["path", { d: "M4 22h16" }], + ["path", { d: "M10 14.66V17c0 .55-.47.98-.97 1.21C7.85 18.75 7 20.24 7 22" }], + ["path", { d: "M14 14.66V17c0 .55.47.98.97 1.21C16.15 18.75 17 20.24 17 22" }], + ["path", { d: "M18 2H6v7a6 6 0 0 0 12 0V2Z" }] + ]; + + const Truck = [ + ["path", { d: "M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2" }], + ["path", { d: "M15 18H9" }], + [ + "path", + { d: "M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14" } + ], + ["circle", { cx: "17", cy: "18", r: "2" }], + ["circle", { cx: "7", cy: "18", r: "2" }] + ]; + + const Turtle = [ + [ + "path", + { + d: "m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z" + } + ], + ["path", { d: "M4.82 7.9 8 10" }], + ["path", { d: "M15.18 7.9 12 10" }], + ["path", { d: "M16.93 10H20a2 2 0 0 1 0 4H2" }] + ]; + + const TvMinimalPlay = [ + [ + "path", + { + d: "M10 7.75a.75.75 0 0 1 1.142-.638l3.664 2.249a.75.75 0 0 1 0 1.278l-3.664 2.25a.75.75 0 0 1-1.142-.64z" + } + ], + ["path", { d: "M7 21h10" }], + ["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2" }] + ]; + + const TvMinimal = [ + ["path", { d: "M7 21h10" }], + ["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2" }] + ]; + + const Tv = [ + ["rect", { width: "20", height: "15", x: "2", y: "7", rx: "2", ry: "2" }], + ["polyline", { points: "17 2 12 7 7 2" }] + ]; + + const Twitch = [["path", { d: "M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7" }]]; + + const Twitter = [ + [ + "path", + { + d: "M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z" + } + ] + ]; + + const TypeOutline = [ + [ + "path", + { + d: "M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z" + } + ] + ]; + + const Type = [ + ["polyline", { points: "4 7 4 4 20 4 20 7" }], + ["line", { x1: "9", x2: "15", y1: "20", y2: "20" }], + ["line", { x1: "12", x2: "12", y1: "4", y2: "20" }] + ]; + + const UmbrellaOff = [ + ["path", { d: "M12 2v1" }], + ["path", { d: "M15.5 21a1.85 1.85 0 0 1-3.5-1v-8H2a10 10 0 0 1 3.428-6.575" }], + ["path", { d: "M17.5 12H22A10 10 0 0 0 9.004 3.455" }], + ["path", { d: "m2 2 20 20" }] + ]; + + const Umbrella = [ + ["path", { d: "M22 12a10.06 10.06 1 0 0-20 0Z" }], + ["path", { d: "M12 12v8a2 2 0 0 0 4 0" }], + ["path", { d: "M12 2v1" }] + ]; + + const Underline = [ + ["path", { d: "M6 4v6a6 6 0 0 0 12 0V4" }], + ["line", { x1: "4", x2: "20", y1: "20", y2: "20" }] + ]; + + const Undo2 = [ + ["path", { d: "M9 14 4 9l5-5" }], + ["path", { d: "M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11" }] + ]; + + const UndoDot = [ + ["path", { d: "M21 17a9 9 0 0 0-15-6.7L3 13" }], + ["path", { d: "M3 7v6h6" }], + ["circle", { cx: "12", cy: "17", r: "1" }] + ]; + + const Undo = [ + ["path", { d: "M3 7v6h6" }], + ["path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" }] + ]; + + const UnfoldHorizontal = [ + ["path", { d: "M16 12h6" }], + ["path", { d: "M8 12H2" }], + ["path", { d: "M12 2v2" }], + ["path", { d: "M12 8v2" }], + ["path", { d: "M12 14v2" }], + ["path", { d: "M12 20v2" }], + ["path", { d: "m19 15 3-3-3-3" }], + ["path", { d: "m5 9-3 3 3 3" }] + ]; + + const UnfoldVertical = [ + ["path", { d: "M12 22v-6" }], + ["path", { d: "M12 8V2" }], + ["path", { d: "M4 12H2" }], + ["path", { d: "M10 12H8" }], + ["path", { d: "M16 12h-2" }], + ["path", { d: "M22 12h-2" }], + ["path", { d: "m15 19-3 3-3-3" }], + ["path", { d: "m15 5-3-3-3 3" }] + ]; + + const Ungroup = [ + ["rect", { width: "8", height: "6", x: "5", y: "4", rx: "1" }], + ["rect", { width: "8", height: "6", x: "11", y: "14", rx: "1" }] + ]; + + const University = [ + ["circle", { cx: "12", cy: "10", r: "1" }], + ["path", { d: "M22 20V8h-4l-6-4-6 4H2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2" }], + ["path", { d: "M6 17v.01" }], + ["path", { d: "M6 13v.01" }], + ["path", { d: "M18 17v.01" }], + ["path", { d: "M18 13v.01" }], + ["path", { d: "M14 22v-5a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5" }] + ]; + + const Unlink2 = [["path", { d: "M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2" }]]; + + const Unlink = [ + [ + "path", + { + d: "m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71" + } + ], + [ + "path", + { d: "m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71" } + ], + ["line", { x1: "8", x2: "8", y1: "2", y2: "5" }], + ["line", { x1: "2", x2: "5", y1: "8", y2: "8" }], + ["line", { x1: "16", x2: "16", y1: "19", y2: "22" }], + ["line", { x1: "19", x2: "22", y1: "16", y2: "16" }] + ]; + + const Unplug = [ + ["path", { d: "m19 5 3-3" }], + ["path", { d: "m2 22 3-3" }], + ["path", { d: "M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z" }], + ["path", { d: "M7.5 13.5 10 11" }], + ["path", { d: "M10.5 16.5 13 14" }], + ["path", { d: "m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z" }] + ]; + + const Upload = [ + ["path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }], + ["polyline", { points: "17 8 12 3 7 8" }], + ["line", { x1: "12", x2: "12", y1: "3", y2: "15" }] + ]; + + const Usb = [ + ["circle", { cx: "10", cy: "7", r: "1" }], + ["circle", { cx: "4", cy: "20", r: "1" }], + ["path", { d: "M4.7 19.3 19 5" }], + ["path", { d: "m21 3-3 1 2 2Z" }], + ["path", { d: "M9.26 7.68 5 12l2 5" }], + ["path", { d: "m10 14 5 2 3.5-3.5" }], + ["path", { d: "m18 12 1-1 1 1-1 1Z" }] + ]; + + const UserCheck = [ + ["path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }], + ["circle", { cx: "9", cy: "7", r: "4" }], + ["polyline", { points: "16 11 18 13 22 9" }] + ]; + + const UserCog = [ + ["circle", { cx: "18", cy: "15", r: "3" }], + ["circle", { cx: "9", cy: "7", r: "4" }], + ["path", { d: "M10 15H6a4 4 0 0 0-4 4v2" }], + ["path", { d: "m21.7 16.4-.9-.3" }], + ["path", { d: "m15.2 13.9-.9-.3" }], + ["path", { d: "m16.6 18.7.3-.9" }], + ["path", { d: "m19.1 12.2.3-.9" }], + ["path", { d: "m19.6 18.7-.4-1" }], + ["path", { d: "m16.8 12.3-.4-1" }], + ["path", { d: "m14.3 16.6 1-.4" }], + ["path", { d: "m20.7 13.8 1-.4" }] + ]; + + const UserMinus = [ + ["path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }], + ["circle", { cx: "9", cy: "7", r: "4" }], + ["line", { x1: "22", x2: "16", y1: "11", y2: "11" }] + ]; + + const UserPen = [ + ["path", { d: "M11.5 15H7a4 4 0 0 0-4 4v2" }], + [ + "path", + { + d: "M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z" + } + ], + ["circle", { cx: "10", cy: "7", r: "4" }] + ]; + + const UserPlus = [ + ["path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }], + ["circle", { cx: "9", cy: "7", r: "4" }], + ["line", { x1: "19", x2: "19", y1: "8", y2: "14" }], + ["line", { x1: "22", x2: "16", y1: "11", y2: "11" }] + ]; + + const UserRoundCheck = [ + ["path", { d: "M2 21a8 8 0 0 1 13.292-6" }], + ["circle", { cx: "10", cy: "8", r: "5" }], + ["path", { d: "m16 19 2 2 4-4" }] + ]; + + const UserRoundCog = [ + ["path", { d: "M2 21a8 8 0 0 1 10.434-7.62" }], + ["circle", { cx: "10", cy: "8", r: "5" }], + ["circle", { cx: "18", cy: "18", r: "3" }], + ["path", { d: "m19.5 14.3-.4.9" }], + ["path", { d: "m16.9 20.8-.4.9" }], + ["path", { d: "m21.7 19.5-.9-.4" }], + ["path", { d: "m15.2 16.9-.9-.4" }], + ["path", { d: "m21.7 16.5-.9.4" }], + ["path", { d: "m15.2 19.1-.9.4" }], + ["path", { d: "m19.5 21.7-.4-.9" }], + ["path", { d: "m16.9 15.2-.4-.9" }] + ]; + + const UserRoundMinus = [ + ["path", { d: "M2 21a8 8 0 0 1 13.292-6" }], + ["circle", { cx: "10", cy: "8", r: "5" }], + ["path", { d: "M22 19h-6" }] + ]; + + const UserRoundPen = [ + ["path", { d: "M2 21a8 8 0 0 1 10.821-7.487" }], + [ + "path", + { + d: "M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z" + } + ], + ["circle", { cx: "10", cy: "8", r: "5" }] + ]; + + const UserRoundPlus = [ + ["path", { d: "M2 21a8 8 0 0 1 13.292-6" }], + ["circle", { cx: "10", cy: "8", r: "5" }], + ["path", { d: "M19 16v6" }], + ["path", { d: "M22 19h-6" }] + ]; + + const UserRoundSearch = [ + ["circle", { cx: "10", cy: "8", r: "5" }], + ["path", { d: "M2 21a8 8 0 0 1 10.434-7.62" }], + ["circle", { cx: "18", cy: "18", r: "3" }], + ["path", { d: "m22 22-1.9-1.9" }] + ]; + + const UserRoundX = [ + ["path", { d: "M2 21a8 8 0 0 1 11.873-7" }], + ["circle", { cx: "10", cy: "8", r: "5" }], + ["path", { d: "m17 17 5 5" }], + ["path", { d: "m22 17-5 5" }] + ]; + + const UserRound = [ + ["circle", { cx: "12", cy: "8", r: "5" }], + ["path", { d: "M20 21a8 8 0 0 0-16 0" }] + ]; + + const UserSearch = [ + ["circle", { cx: "10", cy: "7", r: "4" }], + ["path", { d: "M10.3 15H7a4 4 0 0 0-4 4v2" }], + ["circle", { cx: "17", cy: "17", r: "3" }], + ["path", { d: "m21 21-1.9-1.9" }] + ]; + + const UserX = [ + ["path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }], + ["circle", { cx: "9", cy: "7", r: "4" }], + ["line", { x1: "17", x2: "22", y1: "8", y2: "13" }], + ["line", { x1: "22", x2: "17", y1: "8", y2: "13" }] + ]; + + const User = [ + ["path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }], + ["circle", { cx: "12", cy: "7", r: "4" }] + ]; + + const UsersRound = [ + ["path", { d: "M18 21a8 8 0 0 0-16 0" }], + ["circle", { cx: "10", cy: "8", r: "5" }], + ["path", { d: "M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3" }] + ]; + + const Users = [ + ["path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }], + ["circle", { cx: "9", cy: "7", r: "4" }], + ["path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }], + ["path", { d: "M16 3.13a4 4 0 0 1 0 7.75" }] + ]; + + const UtensilsCrossed = [ + ["path", { d: "m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8" }], + ["path", { d: "M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7" }], + ["path", { d: "m2.1 21.8 6.4-6.3" }], + ["path", { d: "m19 5-7 7" }] + ]; + + const Utensils = [ + ["path", { d: "M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2" }], + ["path", { d: "M7 2v20" }], + ["path", { d: "M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7" }] + ]; + + const UtilityPole = [ + ["path", { d: "M12 2v20" }], + ["path", { d: "M2 5h20" }], + ["path", { d: "M3 3v2" }], + ["path", { d: "M7 3v2" }], + ["path", { d: "M17 3v2" }], + ["path", { d: "M21 3v2" }], + ["path", { d: "m19 5-7 7-7-7" }] + ]; + + const Variable = [ + ["path", { d: "M8 21s-4-3-4-9 4-9 4-9" }], + ["path", { d: "M16 3s4 3 4 9-4 9-4 9" }], + ["line", { x1: "15", x2: "9", y1: "9", y2: "15" }], + ["line", { x1: "9", x2: "15", y1: "9", y2: "15" }] + ]; + + const Vault = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" }], + ["path", { d: "m7.9 7.9 2.7 2.7" }], + ["circle", { cx: "16.5", cy: "7.5", r: ".5", fill: "currentColor" }], + ["path", { d: "m13.4 10.6 2.7-2.7" }], + ["circle", { cx: "7.5", cy: "16.5", r: ".5", fill: "currentColor" }], + ["path", { d: "m7.9 16.1 2.7-2.7" }], + ["circle", { cx: "16.5", cy: "16.5", r: ".5", fill: "currentColor" }], + ["path", { d: "m13.4 13.4 2.7 2.7" }], + ["circle", { cx: "12", cy: "12", r: "2" }] + ]; + + const Vegan = [ + ["path", { d: "M16 8q6 0 6-6-6 0-6 6" }], + ["path", { d: "M17.41 3.59a10 10 0 1 0 3 3" }], + ["path", { d: "M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14" }] + ]; + + const VenetianMask = [ + ["path", { d: "M18 11c-1.5 0-2.5.5-3 2" }], + [ + "path", + { + d: "M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z" + } + ], + ["path", { d: "M6 11c1.5 0 2.5.5 3 2" }] + ]; + + const VenusAndMars = [ + ["path", { d: "M10 20h4" }], + ["path", { d: "M12 16v6" }], + ["path", { d: "M17 2h4v4" }], + ["path", { d: "m21 2-5.46 5.46" }], + ["circle", { cx: "12", cy: "11", r: "5" }] + ]; + + const Venus = [ + ["path", { d: "M12 15v7" }], + ["path", { d: "M9 19h6" }], + ["circle", { cx: "12", cy: "9", r: "6" }] + ]; + + const VibrateOff = [ + ["path", { d: "m2 8 2 2-2 2 2 2-2 2" }], + ["path", { d: "m22 8-2 2 2 2-2 2 2 2" }], + ["path", { d: "M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2" }], + ["path", { d: "M16 10.34V6c0-.55-.45-1-1-1h-4.34" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Vibrate = [ + ["path", { d: "m2 8 2 2-2 2 2 2-2 2" }], + ["path", { d: "m22 8-2 2 2 2-2 2 2 2" }], + ["rect", { width: "8", height: "14", x: "8", y: "5", rx: "1" }] + ]; + + const VideoOff = [ + ["path", { d: "M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196" }], + ["path", { d: "M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2" }], + ["path", { d: "m2 2 20 20" }] + ]; + + const Video = [ + ["path", { d: "m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5" }], + ["rect", { x: "2", y: "6", width: "14", height: "12", rx: "2" }] + ]; + + const Videotape = [ + ["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }], + ["path", { d: "M2 8h20" }], + ["circle", { cx: "8", cy: "14", r: "2" }], + ["path", { d: "M8 12h8" }], + ["circle", { cx: "16", cy: "14", r: "2" }] + ]; + + const View = [ + ["path", { d: "M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2" }], + ["path", { d: "M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2" }], + ["circle", { cx: "12", cy: "12", r: "1" }], + [ + "path", + { + d: "M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0" + } + ] + ]; + + const Voicemail = [ + ["circle", { cx: "6", cy: "12", r: "4" }], + ["circle", { cx: "18", cy: "12", r: "4" }], + ["line", { x1: "6", x2: "18", y1: "16", y2: "16" }] + ]; + + const Volleyball = [ + ["path", { d: "M11.1 7.1a16.55 16.55 0 0 1 10.9 4" }], + ["path", { d: "M12 12a12.6 12.6 0 0 1-8.7 5" }], + ["path", { d: "M16.8 13.6a16.55 16.55 0 0 1-9 7.5" }], + ["path", { d: "M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10" }], + ["path", { d: "M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5" }], + ["circle", { cx: "12", cy: "12", r: "10" }] + ]; + + const Volume1 = [ + [ + "path", + { + d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z" + } + ], + ["path", { d: "M16 9a5 5 0 0 1 0 6" }] + ]; + + const Volume2 = [ + [ + "path", + { + d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z" + } + ], + ["path", { d: "M16 9a5 5 0 0 1 0 6" }], + ["path", { d: "M19.364 18.364a9 9 0 0 0 0-12.728" }] + ]; + + const VolumeOff = [ + ["path", { d: "M16 9a5 5 0 0 1 .95 2.293" }], + ["path", { d: "M19.364 5.636a9 9 0 0 1 1.889 9.96" }], + ["path", { d: "m2 2 20 20" }], + [ + "path", + { + d: "m7 7-.587.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298V11" + } + ], + ["path", { d: "M9.828 4.172A.686.686 0 0 1 11 4.657v.686" }] + ]; + + const VolumeX = [ + [ + "path", + { + d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z" + } + ], + ["line", { x1: "22", x2: "16", y1: "9", y2: "15" }], + ["line", { x1: "16", x2: "22", y1: "9", y2: "15" }] + ]; + + const Volume = [ + [ + "path", + { + d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z" + } + ] + ]; + + const Vote = [ + ["path", { d: "m9 12 2 2 4-4" }], + ["path", { d: "M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z" }], + ["path", { d: "M22 19H2" }] + ]; + + const WalletCards = [ + ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }], + ["path", { d: "M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2" }], + [ + "path", + { d: "M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21" } + ] + ]; + + const WalletMinimal = [ + ["path", { d: "M17 14h.01" }], + ["path", { d: "M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14" }] + ]; + + const Wallet = [ + [ + "path", + { + d: "M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1" + } + ], + ["path", { d: "M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4" }] + ]; + + const Wallpaper = [ + ["circle", { cx: "8", cy: "9", r: "2" }], + [ + "path", + { + d: "m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2" + } + ], + ["path", { d: "M8 21h8" }], + ["path", { d: "M12 17v4" }] + ]; + + const WandSparkles = [ + [ + "path", + { + d: "m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72" + } + ], + ["path", { d: "m14 7 3 3" }], + ["path", { d: "M5 6v4" }], + ["path", { d: "M19 14v4" }], + ["path", { d: "M10 2v2" }], + ["path", { d: "M7 8H3" }], + ["path", { d: "M21 16h-4" }], + ["path", { d: "M11 3H9" }] + ]; + + const Wand = [ + ["path", { d: "M15 4V2" }], + ["path", { d: "M15 16v-2" }], + ["path", { d: "M8 9h2" }], + ["path", { d: "M20 9h2" }], + ["path", { d: "M17.8 11.8 19 13" }], + ["path", { d: "M15 9h.01" }], + ["path", { d: "M17.8 6.2 19 5" }], + ["path", { d: "m3 21 9-9" }], + ["path", { d: "M12.2 6.2 11 5" }] + ]; + + const Warehouse = [ + [ + "path", + { + d: "M22 8.35V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8.35A2 2 0 0 1 3.26 6.5l8-3.2a2 2 0 0 1 1.48 0l8 3.2A2 2 0 0 1 22 8.35Z" + } + ], + ["path", { d: "M6 18h12" }], + ["path", { d: "M6 14h12" }], + ["rect", { width: "12", height: "12", x: "6", y: "10" }] + ]; + + const WashingMachine = [ + ["path", { d: "M3 6h3" }], + ["path", { d: "M17 6h.01" }], + ["rect", { width: "18", height: "20", x: "3", y: "2", rx: "2" }], + ["circle", { cx: "12", cy: "13", r: "5" }], + ["path", { d: "M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5" }] + ]; + + const Watch = [ + ["circle", { cx: "12", cy: "12", r: "6" }], + ["polyline", { points: "12 10 12 12 13 13" }], + ["path", { d: "m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05" }], + ["path", { d: "m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05" }] + ]; + + const WavesLadder = [ + ["path", { d: "M19 5a2 2 0 0 0-2 2v11" }], + [ + "path", + { + d: "M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" + } + ], + ["path", { d: "M7 13h10" }], + ["path", { d: "M7 9h10" }], + ["path", { d: "M9 5a2 2 0 0 0-2 2v11" }] + ]; + + const Waves = [ + [ + "path", + { d: "M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" } + ], + [ + "path", + { + d: "M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" + } + ], + [ + "path", + { + d: "M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" + } + ] + ]; + + const Waypoints = [ + ["circle", { cx: "12", cy: "4.5", r: "2.5" }], + ["path", { d: "m10.2 6.3-3.9 3.9" }], + ["circle", { cx: "4.5", cy: "12", r: "2.5" }], + ["path", { d: "M7 12h10" }], + ["circle", { cx: "19.5", cy: "12", r: "2.5" }], + ["path", { d: "m13.8 17.7 3.9-3.9" }], + ["circle", { cx: "12", cy: "19.5", r: "2.5" }] + ]; + + const Webcam = [ + ["circle", { cx: "12", cy: "10", r: "8" }], + ["circle", { cx: "12", cy: "10", r: "3" }], + ["path", { d: "M7 22h10" }], + ["path", { d: "M12 22v-4" }] + ]; + + const WebhookOff = [ + ["path", { d: "M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15" }], + ["path", { d: "M9 3.4a4 4 0 0 1 6.52.66" }], + ["path", { d: "m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05" }], + ["path", { d: "M20.3 20.3a4 4 0 0 1-2.3.7" }], + ["path", { d: "M18.6 13a4 4 0 0 1 3.357 3.414" }], + ["path", { d: "m12 6 .6 1" }], + ["path", { d: "m2 2 20 20" }] + ]; + + const Webhook = [ + ["path", { d: "M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2" }], + ["path", { d: "m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06" }], + ["path", { d: "m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8" }] + ]; + + const Weight = [ + ["circle", { cx: "12", cy: "5", r: "3" }], + [ + "path", + { + d: "M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z" + } + ] + ]; + + const WheatOff = [ + ["path", { d: "m2 22 10-10" }], + ["path", { d: "m16 8-1.17 1.17" }], + [ + "path", + { d: "M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z" } + ], + ["path", { d: "m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97" }], + ["path", { d: "M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62" }], + ["path", { d: "M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z" }], + [ + "path", + { + d: "M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z" + } + ], + ["path", { d: "m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98" }], + ["path", { d: "M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28" }], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Wheat = [ + ["path", { d: "M2 22 16 8" }], + [ + "path", + { d: "M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z" } + ], + [ + "path", + { d: "M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z" } + ], + [ + "path", + { d: "M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z" } + ], + ["path", { d: "M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z" }], + [ + "path", + { + d: "M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z" + } + ], + [ + "path", + { + d: "M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z" + } + ], + [ + "path", + { + d: "M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z" + } + ] + ]; + + const WholeWord = [ + ["circle", { cx: "7", cy: "12", r: "3" }], + ["path", { d: "M10 9v6" }], + ["circle", { cx: "17", cy: "12", r: "3" }], + ["path", { d: "M14 7v8" }], + ["path", { d: "M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1" }] + ]; + + const WifiHigh = [ + ["path", { d: "M12 20h.01" }], + ["path", { d: "M5 12.859a10 10 0 0 1 14 0" }], + ["path", { d: "M8.5 16.429a5 5 0 0 1 7 0" }] + ]; + + const WifiLow = [ + ["path", { d: "M12 20h.01" }], + ["path", { d: "M8.5 16.429a5 5 0 0 1 7 0" }] + ]; + + const WifiOff = [ + ["path", { d: "M12 20h.01" }], + ["path", { d: "M8.5 16.429a5 5 0 0 1 7 0" }], + ["path", { d: "M5 12.859a10 10 0 0 1 5.17-2.69" }], + ["path", { d: "M19 12.859a10 10 0 0 0-2.007-1.523" }], + ["path", { d: "M2 8.82a15 15 0 0 1 4.177-2.643" }], + ["path", { d: "M22 8.82a15 15 0 0 0-11.288-3.764" }], + ["path", { d: "m2 2 20 20" }] + ]; + + const WifiZero = [["path", { d: "M12 20h.01" }]]; + + const Wifi = [ + ["path", { d: "M12 20h.01" }], + ["path", { d: "M2 8.82a15 15 0 0 1 20 0" }], + ["path", { d: "M5 12.859a10 10 0 0 1 14 0" }], + ["path", { d: "M8.5 16.429a5 5 0 0 1 7 0" }] + ]; + + const WindArrowDown = [ + ["path", { d: "M10 2v8" }], + ["path", { d: "M12.8 21.6A2 2 0 1 0 14 18H2" }], + ["path", { d: "M17.5 10a2.5 2.5 0 1 1 2 4H2" }], + ["path", { d: "m6 6 4 4 4-4" }] + ]; + + const Wind = [ + ["path", { d: "M12.8 19.6A2 2 0 1 0 14 16H2" }], + ["path", { d: "M17.5 8a2.5 2.5 0 1 1 2 4H2" }], + ["path", { d: "M9.8 4.4A2 2 0 1 1 11 8H2" }] + ]; + + const WineOff = [ + ["path", { d: "M8 22h8" }], + ["path", { d: "M7 10h3m7 0h-1.343" }], + ["path", { d: "M12 15v7" }], + [ + "path", + { + d: "M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198" + } + ], + ["line", { x1: "2", x2: "22", y1: "2", y2: "22" }] + ]; + + const Wine = [ + ["path", { d: "M8 22h8" }], + ["path", { d: "M7 10h10" }], + ["path", { d: "M12 15v7" }], + ["path", { d: "M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z" }] + ]; + + const Workflow = [ + ["rect", { width: "8", height: "8", x: "3", y: "3", rx: "2" }], + ["path", { d: "M7 11v4a2 2 0 0 0 2 2h4" }], + ["rect", { width: "8", height: "8", x: "13", y: "13", rx: "2" }] + ]; + + const Worm = [ + ["path", { d: "m19 12-1.5 3" }], + ["path", { d: "M19.63 18.81 22 20" }], + [ + "path", + { + d: "M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z" + } + ] + ]; + + const WrapText = [ + ["line", { x1: "3", x2: "21", y1: "6", y2: "6" }], + ["path", { d: "M3 12h15a3 3 0 1 1 0 6h-4" }], + ["polyline", { points: "16 16 14 18 16 20" }], + ["line", { x1: "3", x2: "10", y1: "18", y2: "18" }] + ]; + + const Wrench = [ + [ + "path", + { + d: "M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z" + } + ] + ]; + + const X = [ + ["path", { d: "M18 6 6 18" }], + ["path", { d: "m6 6 12 12" }] + ]; + + const Youtube = [ + [ + "path", + { + d: "M2.5 17a24.12 24.12 0 0 1 0-10 2 2 0 0 1 1.4-1.4 49.56 49.56 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.12 24.12 0 0 1 0 10 2 2 0 0 1-1.4 1.4 49.55 49.55 0 0 1-16.2 0A2 2 0 0 1 2.5 17" + } + ], + ["path", { d: "m10 15 5-3-5-3z" }] + ]; + + const ZapOff = [ + ["path", { d: "M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317" }], + ["path", { d: "M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773" }], + [ + "path", + { + d: "M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643" + } + ], + ["path", { d: "m2 2 20 20" }] + ]; + + const Zap = [ + [ + "path", + { + d: "M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z" + } + ] + ]; + + const ZoomIn = [ + ["circle", { cx: "11", cy: "11", r: "8" }], + ["line", { x1: "21", x2: "16.65", y1: "21", y2: "16.65" }], + ["line", { x1: "11", x2: "11", y1: "8", y2: "14" }], + ["line", { x1: "8", x2: "14", y1: "11", y2: "11" }] + ]; + + const ZoomOut = [ + ["circle", { cx: "11", cy: "11", r: "8" }], + ["line", { x1: "21", x2: "16.65", y1: "21", y2: "16.65" }], + ["line", { x1: "8", x2: "14", y1: "11", y2: "11" }] + ]; + + var iconAndAliases = /*#__PURE__*/Object.freeze({ + __proto__: null, + AArrowDown: AArrowDown, + AArrowUp: AArrowUp, + ALargeSmall: ALargeSmall, + Accessibility: Accessibility, + Activity: Activity, + ActivitySquare: SquareActivity, + AirVent: AirVent, + Airplay: Airplay, + AlarmCheck: AlarmClockCheck, + AlarmClock: AlarmClock, + AlarmClockCheck: AlarmClockCheck, + AlarmClockMinus: AlarmClockMinus, + AlarmClockOff: AlarmClockOff, + AlarmClockPlus: AlarmClockPlus, + AlarmMinus: AlarmClockMinus, + AlarmPlus: AlarmClockPlus, + AlarmSmoke: AlarmSmoke, + Album: Album, + AlertCircle: CircleAlert, + AlertOctagon: OctagonAlert, + AlertTriangle: TriangleAlert, + AlignCenter: AlignCenter, + AlignCenterHorizontal: AlignCenterHorizontal, + AlignCenterVertical: AlignCenterVertical, + AlignEndHorizontal: AlignEndHorizontal, + AlignEndVertical: AlignEndVertical, + AlignHorizontalDistributeCenter: AlignHorizontalDistributeCenter, + AlignHorizontalDistributeEnd: AlignHorizontalDistributeEnd, + AlignHorizontalDistributeStart: AlignHorizontalDistributeStart, + AlignHorizontalJustifyCenter: AlignHorizontalJustifyCenter, + AlignHorizontalJustifyEnd: AlignHorizontalJustifyEnd, + AlignHorizontalJustifyStart: AlignHorizontalJustifyStart, + AlignHorizontalSpaceAround: AlignHorizontalSpaceAround, + AlignHorizontalSpaceBetween: AlignHorizontalSpaceBetween, + AlignJustify: AlignJustify, + AlignLeft: AlignLeft, + AlignRight: AlignRight, + AlignStartHorizontal: AlignStartHorizontal, + AlignStartVertical: AlignStartVertical, + AlignVerticalDistributeCenter: AlignVerticalDistributeCenter, + AlignVerticalDistributeEnd: AlignVerticalDistributeEnd, + AlignVerticalDistributeStart: AlignVerticalDistributeStart, + AlignVerticalJustifyCenter: AlignVerticalJustifyCenter, + AlignVerticalJustifyEnd: AlignVerticalJustifyEnd, + AlignVerticalJustifyStart: AlignVerticalJustifyStart, + AlignVerticalSpaceAround: AlignVerticalSpaceAround, + AlignVerticalSpaceBetween: AlignVerticalSpaceBetween, + Ambulance: Ambulance, + Ampersand: Ampersand, + Ampersands: Ampersands, + Amphora: Amphora, + Anchor: Anchor, + Angry: Angry, + Annoyed: Annoyed, + Antenna: Antenna, + Anvil: Anvil, + Aperture: Aperture, + AppWindow: AppWindow, + AppWindowMac: AppWindowMac, + Apple: Apple, + Archive: Archive, + ArchiveRestore: ArchiveRestore, + ArchiveX: ArchiveX, + AreaChart: ChartArea, + Armchair: Armchair, + ArrowBigDown: ArrowBigDown, + ArrowBigDownDash: ArrowBigDownDash, + ArrowBigLeft: ArrowBigLeft, + ArrowBigLeftDash: ArrowBigLeftDash, + ArrowBigRight: ArrowBigRight, + ArrowBigRightDash: ArrowBigRightDash, + ArrowBigUp: ArrowBigUp, + ArrowBigUpDash: ArrowBigUpDash, + ArrowDown: ArrowDown, + ArrowDown01: ArrowDown01, + ArrowDown10: ArrowDown10, + ArrowDownAZ: ArrowDownAZ, + ArrowDownAz: ArrowDownAZ, + ArrowDownCircle: CircleArrowDown, + ArrowDownFromLine: ArrowDownFromLine, + ArrowDownLeft: ArrowDownLeft, + ArrowDownLeftFromCircle: CircleArrowOutDownLeft, + ArrowDownLeftFromSquare: SquareArrowOutDownLeft, + ArrowDownLeftSquare: SquareArrowDownLeft, + ArrowDownNarrowWide: ArrowDownNarrowWide, + ArrowDownRight: ArrowDownRight, + ArrowDownRightFromCircle: CircleArrowOutDownRight, + ArrowDownRightFromSquare: SquareArrowOutDownRight, + ArrowDownRightSquare: SquareArrowDownRight, + ArrowDownSquare: SquareArrowDown, + ArrowDownToDot: ArrowDownToDot, + ArrowDownToLine: ArrowDownToLine, + ArrowDownUp: ArrowDownUp, + ArrowDownWideNarrow: ArrowDownWideNarrow, + ArrowDownZA: ArrowDownZA, + ArrowDownZa: ArrowDownZA, + ArrowLeft: ArrowLeft, + ArrowLeftCircle: CircleArrowLeft, + ArrowLeftFromLine: ArrowLeftFromLine, + ArrowLeftRight: ArrowLeftRight, + ArrowLeftSquare: SquareArrowLeft, + ArrowLeftToLine: ArrowLeftToLine, + ArrowRight: ArrowRight, + ArrowRightCircle: CircleArrowRight, + ArrowRightFromLine: ArrowRightFromLine, + ArrowRightLeft: ArrowRightLeft, + ArrowRightSquare: SquareArrowRight, + ArrowRightToLine: ArrowRightToLine, + ArrowUp: ArrowUp, + ArrowUp01: ArrowUp01, + ArrowUp10: ArrowUp10, + ArrowUpAZ: ArrowUpAZ, + ArrowUpAz: ArrowUpAZ, + ArrowUpCircle: CircleArrowUp, + ArrowUpDown: ArrowUpDown, + ArrowUpFromDot: ArrowUpFromDot, + ArrowUpFromLine: ArrowUpFromLine, + ArrowUpLeft: ArrowUpLeft, + ArrowUpLeftFromCircle: CircleArrowOutUpLeft, + ArrowUpLeftFromSquare: SquareArrowOutUpLeft, + ArrowUpLeftSquare: SquareArrowUpLeft, + ArrowUpNarrowWide: ArrowUpNarrowWide, + ArrowUpRight: ArrowUpRight, + ArrowUpRightFromCircle: CircleArrowOutUpRight, + ArrowUpRightFromSquare: SquareArrowOutUpRight, + ArrowUpRightSquare: SquareArrowUpRight, + ArrowUpSquare: SquareArrowUp, + ArrowUpToLine: ArrowUpToLine, + ArrowUpWideNarrow: ArrowUpWideNarrow, + ArrowUpZA: ArrowUpZA, + ArrowUpZa: ArrowUpZA, + ArrowsUpFromLine: ArrowsUpFromLine, + Asterisk: Asterisk, + AsteriskSquare: SquareAsterisk, + AtSign: AtSign, + Atom: Atom, + AudioLines: AudioLines, + AudioWaveform: AudioWaveform, + Award: Award, + Axe: Axe, + Axis3D: Axis3d, + Axis3d: Axis3d, + Baby: Baby, + Backpack: Backpack, + Badge: Badge, + BadgeAlert: BadgeAlert, + BadgeCent: BadgeCent, + BadgeCheck: BadgeCheck, + BadgeDollarSign: BadgeDollarSign, + BadgeEuro: BadgeEuro, + BadgeHelp: BadgeHelp, + BadgeIndianRupee: BadgeIndianRupee, + BadgeInfo: BadgeInfo, + BadgeJapaneseYen: BadgeJapaneseYen, + BadgeMinus: BadgeMinus, + BadgePercent: BadgePercent, + BadgePlus: BadgePlus, + BadgePoundSterling: BadgePoundSterling, + BadgeRussianRuble: BadgeRussianRuble, + BadgeSwissFranc: BadgeSwissFranc, + BadgeX: BadgeX, + BaggageClaim: BaggageClaim, + Ban: Ban, + Banana: Banana, + Bandage: Bandage, + Banknote: Banknote, + BarChart: ChartNoAxesColumnIncreasing, + BarChart2: ChartNoAxesColumn, + BarChart3: ChartColumn, + BarChart4: ChartColumnIncreasing, + BarChartBig: ChartColumnBig, + BarChartHorizontal: ChartBar, + BarChartHorizontalBig: ChartBarBig, + Barcode: Barcode, + Baseline: Baseline, + Bath: Bath, + Battery: Battery, + BatteryCharging: BatteryCharging, + BatteryFull: BatteryFull, + BatteryLow: BatteryLow, + BatteryMedium: BatteryMedium, + BatteryPlus: BatteryPlus, + BatteryWarning: BatteryWarning, + Beaker: Beaker, + Bean: Bean, + BeanOff: BeanOff, + Bed: Bed, + BedDouble: BedDouble, + BedSingle: BedSingle, + Beef: Beef, + Beer: Beer, + BeerOff: BeerOff, + Bell: Bell, + BellDot: BellDot, + BellElectric: BellElectric, + BellMinus: BellMinus, + BellOff: BellOff, + BellPlus: BellPlus, + BellRing: BellRing, + BetweenHorizonalEnd: BetweenHorizontalEnd, + BetweenHorizonalStart: BetweenHorizontalStart, + BetweenHorizontalEnd: BetweenHorizontalEnd, + BetweenHorizontalStart: BetweenHorizontalStart, + BetweenVerticalEnd: BetweenVerticalEnd, + BetweenVerticalStart: BetweenVerticalStart, + BicepsFlexed: BicepsFlexed, + Bike: Bike, + Binary: Binary, + Binoculars: Binoculars, + Biohazard: Biohazard, + Bird: Bird, + Bitcoin: Bitcoin, + Blend: Blend, + Blinds: Blinds, + Blocks: Blocks, + Bluetooth: Bluetooth, + BluetoothConnected: BluetoothConnected, + BluetoothOff: BluetoothOff, + BluetoothSearching: BluetoothSearching, + Bold: Bold, + Bolt: Bolt, + Bomb: Bomb, + Bone: Bone, + Book: Book, + BookA: BookA, + BookAudio: BookAudio, + BookCheck: BookCheck, + BookCopy: BookCopy, + BookDashed: BookDashed, + BookDown: BookDown, + BookHeadphones: BookHeadphones, + BookHeart: BookHeart, + BookImage: BookImage, + BookKey: BookKey, + BookLock: BookLock, + BookMarked: BookMarked, + BookMinus: BookMinus, + BookOpen: BookOpen, + BookOpenCheck: BookOpenCheck, + BookOpenText: BookOpenText, + BookPlus: BookPlus, + BookTemplate: BookDashed, + BookText: BookText, + BookType: BookType, + BookUp: BookUp, + BookUp2: BookUp2, + BookUser: BookUser, + BookX: BookX, + Bookmark: Bookmark, + BookmarkCheck: BookmarkCheck, + BookmarkMinus: BookmarkMinus, + BookmarkPlus: BookmarkPlus, + BookmarkX: BookmarkX, + BoomBox: BoomBox, + Bot: Bot, + BotMessageSquare: BotMessageSquare, + BotOff: BotOff, + Box: Box, + BoxSelect: SquareDashed, + Boxes: Boxes, + Braces: Braces, + Brackets: Brackets, + Brain: Brain, + BrainCircuit: BrainCircuit, + BrainCog: BrainCog, + BrickWall: BrickWall, + Briefcase: Briefcase, + BriefcaseBusiness: BriefcaseBusiness, + BriefcaseConveyorBelt: BriefcaseConveyorBelt, + BriefcaseMedical: BriefcaseMedical, + BringToFront: BringToFront, + Brush: Brush, + Bug: Bug, + BugOff: BugOff, + BugPlay: BugPlay, + Building: Building, + Building2: Building2, + Bus: Bus, + BusFront: BusFront, + Cable: Cable, + CableCar: CableCar, + Cake: Cake, + CakeSlice: CakeSlice, + Calculator: Calculator, + Calendar: Calendar, + Calendar1: Calendar1, + CalendarArrowDown: CalendarArrowDown, + CalendarArrowUp: CalendarArrowUp, + CalendarCheck: CalendarCheck, + CalendarCheck2: CalendarCheck2, + CalendarClock: CalendarClock, + CalendarCog: CalendarCog, + CalendarDays: CalendarDays, + CalendarFold: CalendarFold, + CalendarHeart: CalendarHeart, + CalendarMinus: CalendarMinus, + CalendarMinus2: CalendarMinus2, + CalendarOff: CalendarOff, + CalendarPlus: CalendarPlus, + CalendarPlus2: CalendarPlus2, + CalendarRange: CalendarRange, + CalendarSearch: CalendarSearch, + CalendarSync: CalendarSync, + CalendarX: CalendarX, + CalendarX2: CalendarX2, + Camera: Camera, + CameraOff: CameraOff, + CandlestickChart: ChartCandlestick, + Candy: Candy, + CandyCane: CandyCane, + CandyOff: CandyOff, + Cannabis: Cannabis, + Captions: Captions, + CaptionsOff: CaptionsOff, + Car: Car, + CarFront: CarFront, + CarTaxiFront: CarTaxiFront, + Caravan: Caravan, + Carrot: Carrot, + CaseLower: CaseLower, + CaseSensitive: CaseSensitive, + CaseUpper: CaseUpper, + CassetteTape: CassetteTape, + Cast: Cast, + Castle: Castle, + Cat: Cat, + Cctv: Cctv, + ChartArea: ChartArea, + ChartBar: ChartBar, + ChartBarBig: ChartBarBig, + ChartBarDecreasing: ChartBarDecreasing, + ChartBarIncreasing: ChartBarIncreasing, + ChartBarStacked: ChartBarStacked, + ChartCandlestick: ChartCandlestick, + ChartColumn: ChartColumn, + ChartColumnBig: ChartColumnBig, + ChartColumnDecreasing: ChartColumnDecreasing, + ChartColumnIncreasing: ChartColumnIncreasing, + ChartColumnStacked: ChartColumnStacked, + ChartGantt: ChartGantt, + ChartLine: ChartLine, + ChartNetwork: ChartNetwork, + ChartNoAxesColumn: ChartNoAxesColumn, + ChartNoAxesColumnDecreasing: ChartNoAxesColumnDecreasing, + ChartNoAxesColumnIncreasing: ChartNoAxesColumnIncreasing, + ChartNoAxesCombined: ChartNoAxesCombined, + ChartNoAxesGantt: ChartNoAxesGantt, + ChartPie: ChartPie, + ChartScatter: ChartScatter, + ChartSpline: ChartSpline, + Check: Check, + CheckCheck: CheckCheck, + CheckCircle: CircleCheckBig, + CheckCircle2: CircleCheck, + CheckSquare: SquareCheckBig, + CheckSquare2: SquareCheck, + ChefHat: ChefHat, + Cherry: Cherry, + ChevronDown: ChevronDown, + ChevronDownCircle: CircleChevronDown, + ChevronDownSquare: SquareChevronDown, + ChevronFirst: ChevronFirst, + ChevronLast: ChevronLast, + ChevronLeft: ChevronLeft, + ChevronLeftCircle: CircleChevronLeft, + ChevronLeftSquare: SquareChevronLeft, + ChevronRight: ChevronRight, + ChevronRightCircle: CircleChevronRight, + ChevronRightSquare: SquareChevronRight, + ChevronUp: ChevronUp, + ChevronUpCircle: CircleChevronUp, + ChevronUpSquare: SquareChevronUp, + ChevronsDown: ChevronsDown, + ChevronsDownUp: ChevronsDownUp, + ChevronsLeft: ChevronsLeft, + ChevronsLeftRight: ChevronsLeftRight, + ChevronsLeftRightEllipsis: ChevronsLeftRightEllipsis, + ChevronsRight: ChevronsRight, + ChevronsRightLeft: ChevronsRightLeft, + ChevronsUp: ChevronsUp, + ChevronsUpDown: ChevronsUpDown, + Chrome: Chrome, + Church: Church, + Cigarette: Cigarette, + CigaretteOff: CigaretteOff, + Circle: Circle, + CircleAlert: CircleAlert, + CircleArrowDown: CircleArrowDown, + CircleArrowLeft: CircleArrowLeft, + CircleArrowOutDownLeft: CircleArrowOutDownLeft, + CircleArrowOutDownRight: CircleArrowOutDownRight, + CircleArrowOutUpLeft: CircleArrowOutUpLeft, + CircleArrowOutUpRight: CircleArrowOutUpRight, + CircleArrowRight: CircleArrowRight, + CircleArrowUp: CircleArrowUp, + CircleCheck: CircleCheck, + CircleCheckBig: CircleCheckBig, + CircleChevronDown: CircleChevronDown, + CircleChevronLeft: CircleChevronLeft, + CircleChevronRight: CircleChevronRight, + CircleChevronUp: CircleChevronUp, + CircleDashed: CircleDashed, + CircleDivide: CircleDivide, + CircleDollarSign: CircleDollarSign, + CircleDot: CircleDot, + CircleDotDashed: CircleDotDashed, + CircleEllipsis: CircleEllipsis, + CircleEqual: CircleEqual, + CircleFadingArrowUp: CircleFadingArrowUp, + CircleFadingPlus: CircleFadingPlus, + CircleGauge: CircleGauge, + CircleHelp: CircleHelp, + CircleMinus: CircleMinus, + CircleOff: CircleOff, + CircleParking: CircleParking, + CircleParkingOff: CircleParkingOff, + CirclePause: CirclePause, + CirclePercent: CirclePercent, + CirclePlay: CirclePlay, + CirclePlus: CirclePlus, + CirclePower: CirclePower, + CircleSlash: CircleSlash, + CircleSlash2: CircleSlash2, + CircleSlashed: CircleSlash2, + CircleSmall: CircleSmall, + CircleStop: CircleStop, + CircleUser: CircleUser, + CircleUserRound: CircleUserRound, + CircleX: CircleX, + CircuitBoard: CircuitBoard, + Citrus: Citrus, + Clapperboard: Clapperboard, + Clipboard: Clipboard, + ClipboardCheck: ClipboardCheck, + ClipboardCopy: ClipboardCopy, + ClipboardEdit: ClipboardPen, + ClipboardList: ClipboardList, + ClipboardMinus: ClipboardMinus, + ClipboardPaste: ClipboardPaste, + ClipboardPen: ClipboardPen, + ClipboardPenLine: ClipboardPenLine, + ClipboardPlus: ClipboardPlus, + ClipboardSignature: ClipboardPenLine, + ClipboardType: ClipboardType, + ClipboardX: ClipboardX, + Clock: Clock, + Clock1: Clock1, + Clock10: Clock10, + Clock11: Clock11, + Clock12: Clock12, + Clock2: Clock2, + Clock3: Clock3, + Clock4: Clock4, + Clock5: Clock5, + Clock6: Clock6, + Clock7: Clock7, + Clock8: Clock8, + Clock9: Clock9, + ClockAlert: ClockAlert, + ClockArrowDown: ClockArrowDown, + ClockArrowUp: ClockArrowUp, + Cloud: Cloud, + CloudAlert: CloudAlert, + CloudCog: CloudCog, + CloudDownload: CloudDownload, + CloudDrizzle: CloudDrizzle, + CloudFog: CloudFog, + CloudHail: CloudHail, + CloudLightning: CloudLightning, + CloudMoon: CloudMoon, + CloudMoonRain: CloudMoonRain, + CloudOff: CloudOff, + CloudRain: CloudRain, + CloudRainWind: CloudRainWind, + CloudSnow: CloudSnow, + CloudSun: CloudSun, + CloudSunRain: CloudSunRain, + CloudUpload: CloudUpload, + Cloudy: Cloudy, + Clover: Clover, + Club: Club, + Code: Code, + Code2: CodeXml, + CodeSquare: SquareCode, + CodeXml: CodeXml, + Codepen: Codepen, + Codesandbox: Codesandbox, + Coffee: Coffee, + Cog: Cog, + Coins: Coins, + Columns: Columns2, + Columns2: Columns2, + Columns3: Columns3, + Columns4: Columns4, + Combine: Combine, + Command: Command, + Compass: Compass, + Component: Component, + Computer: Computer, + ConciergeBell: ConciergeBell, + Cone: Cone, + Construction: Construction, + Contact: Contact, + Contact2: ContactRound, + ContactRound: ContactRound, + Container: Container, + Contrast: Contrast, + Cookie: Cookie, + CookingPot: CookingPot, + Copy: Copy, + CopyCheck: CopyCheck, + CopyMinus: CopyMinus, + CopyPlus: CopyPlus, + CopySlash: CopySlash, + CopyX: CopyX, + Copyleft: Copyleft, + Copyright: Copyright, + CornerDownLeft: CornerDownLeft, + CornerDownRight: CornerDownRight, + CornerLeftDown: CornerLeftDown, + CornerLeftUp: CornerLeftUp, + CornerRightDown: CornerRightDown, + CornerRightUp: CornerRightUp, + CornerUpLeft: CornerUpLeft, + CornerUpRight: CornerUpRight, + Cpu: Cpu, + CreativeCommons: CreativeCommons, + CreditCard: CreditCard, + Croissant: Croissant, + Crop: Crop, + Cross: Cross, + Crosshair: Crosshair, + Crown: Crown, + Cuboid: Cuboid, + CupSoda: CupSoda, + CurlyBraces: Braces, + Currency: Currency, + Cylinder: Cylinder, + Dam: Dam, + Database: Database, + DatabaseBackup: DatabaseBackup, + DatabaseZap: DatabaseZap, + Delete: Delete, + Dessert: Dessert, + Diameter: Diameter, + Diamond: Diamond, + DiamondMinus: DiamondMinus, + DiamondPercent: DiamondPercent, + DiamondPlus: DiamondPlus, + Dice1: Dice1, + Dice2: Dice2, + Dice3: Dice3, + Dice4: Dice4, + Dice5: Dice5, + Dice6: Dice6, + Dices: Dices, + Diff: Diff, + Disc: Disc, + Disc2: Disc2, + Disc3: Disc3, + DiscAlbum: DiscAlbum, + Divide: Divide, + DivideCircle: CircleDivide, + DivideSquare: SquareDivide, + Dna: Dna, + DnaOff: DnaOff, + Dock: Dock, + Dog: Dog, + DollarSign: DollarSign, + Donut: Donut, + DoorClosed: DoorClosed, + DoorOpen: DoorOpen, + Dot: Dot, + DotSquare: SquareDot, + Download: Download, + DownloadCloud: CloudDownload, + DraftingCompass: DraftingCompass, + Drama: Drama, + Dribbble: Dribbble, + Drill: Drill, + Droplet: Droplet, + DropletOff: DropletOff, + Droplets: Droplets, + Drum: Drum, + Drumstick: Drumstick, + Dumbbell: Dumbbell, + Ear: Ear, + EarOff: EarOff, + Earth: Earth, + EarthLock: EarthLock, + Eclipse: Eclipse, + Edit: SquarePen, + Edit2: Pen, + Edit3: PenLine, + Egg: Egg, + EggFried: EggFried, + EggOff: EggOff, + Ellipsis: Ellipsis, + EllipsisVertical: EllipsisVertical, + Equal: Equal, + EqualApproximately: EqualApproximately, + EqualNot: EqualNot, + EqualSquare: SquareEqual, + Eraser: Eraser, + EthernetPort: EthernetPort, + Euro: Euro, + Expand: Expand, + ExternalLink: ExternalLink, + Eye: Eye, + EyeClosed: EyeClosed, + EyeOff: EyeOff, + Facebook: Facebook, + Factory: Factory, + Fan: Fan, + FastForward: FastForward, + Feather: Feather, + Fence: Fence, + FerrisWheel: FerrisWheel, + Figma: Figma, + File: File, + FileArchive: FileArchive, + FileAudio: FileAudio, + FileAudio2: FileAudio2, + FileAxis3D: FileAxis3d, + FileAxis3d: FileAxis3d, + FileBadge: FileBadge, + FileBadge2: FileBadge2, + FileBarChart: FileChartColumnIncreasing, + FileBarChart2: FileChartColumn, + FileBox: FileBox, + FileChartColumn: FileChartColumn, + FileChartColumnIncreasing: FileChartColumnIncreasing, + FileChartLine: FileChartLine, + FileChartPie: FileChartPie, + FileCheck: FileCheck, + FileCheck2: FileCheck2, + FileClock: FileClock, + FileCode: FileCode, + FileCode2: FileCode2, + FileCog: FileCog, + FileCog2: FileCog, + FileDiff: FileDiff, + FileDigit: FileDigit, + FileDown: FileDown, + FileEdit: FilePen, + FileHeart: FileHeart, + FileImage: FileImage, + FileInput: FileInput, + FileJson: FileJson, + FileJson2: FileJson2, + FileKey: FileKey, + FileKey2: FileKey2, + FileLineChart: FileChartLine, + FileLock: FileLock, + FileLock2: FileLock2, + FileMinus: FileMinus, + FileMinus2: FileMinus2, + FileMusic: FileMusic, + FileOutput: FileOutput, + FilePen: FilePen, + FilePenLine: FilePenLine, + FilePieChart: FileChartPie, + FilePlus: FilePlus, + FilePlus2: FilePlus2, + FileQuestion: FileQuestion, + FileScan: FileScan, + FileSearch: FileSearch, + FileSearch2: FileSearch2, + FileSignature: FilePenLine, + FileSliders: FileSliders, + FileSpreadsheet: FileSpreadsheet, + FileStack: FileStack, + FileSymlink: FileSymlink, + FileTerminal: FileTerminal, + FileText: FileText, + FileType: FileType, + FileType2: FileType2, + FileUp: FileUp, + FileUser: FileUser, + FileVideo: FileVideo, + FileVideo2: FileVideo2, + FileVolume: FileVolume, + FileVolume2: FileVolume2, + FileWarning: FileWarning, + FileX: FileX, + FileX2: FileX2, + Files: Files, + Film: Film, + Filter: Filter, + FilterX: FilterX, + Fingerprint: Fingerprint, + FireExtinguisher: FireExtinguisher, + Fish: Fish, + FishOff: FishOff, + FishSymbol: FishSymbol, + Flag: Flag, + FlagOff: FlagOff, + FlagTriangleLeft: FlagTriangleLeft, + FlagTriangleRight: FlagTriangleRight, + Flame: Flame, + FlameKindling: FlameKindling, + Flashlight: Flashlight, + FlashlightOff: FlashlightOff, + FlaskConical: FlaskConical, + FlaskConicalOff: FlaskConicalOff, + FlaskRound: FlaskRound, + FlipHorizontal: FlipHorizontal, + FlipHorizontal2: FlipHorizontal2, + FlipVertical: FlipVertical, + FlipVertical2: FlipVertical2, + Flower: Flower, + Flower2: Flower2, + Focus: Focus, + FoldHorizontal: FoldHorizontal, + FoldVertical: FoldVertical, + Folder: Folder, + FolderArchive: FolderArchive, + FolderCheck: FolderCheck, + FolderClock: FolderClock, + FolderClosed: FolderClosed, + FolderCode: FolderCode, + FolderCog: FolderCog, + FolderCog2: FolderCog, + FolderDot: FolderDot, + FolderDown: FolderDown, + FolderEdit: FolderPen, + FolderGit: FolderGit, + FolderGit2: FolderGit2, + FolderHeart: FolderHeart, + FolderInput: FolderInput, + FolderKanban: FolderKanban, + FolderKey: FolderKey, + FolderLock: FolderLock, + FolderMinus: FolderMinus, + FolderOpen: FolderOpen, + FolderOpenDot: FolderOpenDot, + FolderOutput: FolderOutput, + FolderPen: FolderPen, + FolderPlus: FolderPlus, + FolderRoot: FolderRoot, + FolderSearch: FolderSearch, + FolderSearch2: FolderSearch2, + FolderSymlink: FolderSymlink, + FolderSync: FolderSync, + FolderTree: FolderTree, + FolderUp: FolderUp, + FolderX: FolderX, + Folders: Folders, + Footprints: Footprints, + ForkKnife: Utensils, + ForkKnifeCrossed: UtensilsCrossed, + Forklift: Forklift, + FormInput: RectangleEllipsis, + Forward: Forward, + Frame: Frame, + Framer: Framer, + Frown: Frown, + Fuel: Fuel, + Fullscreen: Fullscreen, + FunctionSquare: SquareFunction, + GalleryHorizontal: GalleryHorizontal, + GalleryHorizontalEnd: GalleryHorizontalEnd, + GalleryThumbnails: GalleryThumbnails, + GalleryVertical: GalleryVertical, + GalleryVerticalEnd: GalleryVerticalEnd, + Gamepad: Gamepad, + Gamepad2: Gamepad2, + GanttChart: ChartNoAxesGantt, + GanttChartSquare: SquareChartGantt, + Gauge: Gauge, + GaugeCircle: CircleGauge, + Gavel: Gavel, + Gem: Gem, + Ghost: Ghost, + Gift: Gift, + GitBranch: GitBranch, + GitBranchPlus: GitBranchPlus, + GitCommit: GitCommitHorizontal, + GitCommitHorizontal: GitCommitHorizontal, + GitCommitVertical: GitCommitVertical, + GitCompare: GitCompare, + GitCompareArrows: GitCompareArrows, + GitFork: GitFork, + GitGraph: GitGraph, + GitMerge: GitMerge, + GitPullRequest: GitPullRequest, + GitPullRequestArrow: GitPullRequestArrow, + GitPullRequestClosed: GitPullRequestClosed, + GitPullRequestCreate: GitPullRequestCreate, + GitPullRequestCreateArrow: GitPullRequestCreateArrow, + GitPullRequestDraft: GitPullRequestDraft, + Github: Github, + Gitlab: Gitlab, + GlassWater: GlassWater, + Glasses: Glasses, + Globe: Globe, + Globe2: Earth, + GlobeLock: GlobeLock, + Goal: Goal, + Grab: Grab, + GraduationCap: GraduationCap, + Grape: Grape, + Grid: Grid3x3, + Grid2X2: Grid2x2, + Grid2X2Check: Grid2x2Check, + Grid2X2Plus: Grid2x2Plus, + Grid2X2X: Grid2x2X, + Grid2x2: Grid2x2, + Grid2x2Check: Grid2x2Check, + Grid2x2Plus: Grid2x2Plus, + Grid2x2X: Grid2x2X, + Grid3X3: Grid3x3, + Grid3x3: Grid3x3, + Grip: Grip, + GripHorizontal: GripHorizontal, + GripVertical: GripVertical, + Group: Group, + Guitar: Guitar, + Ham: Ham, + Hammer: Hammer, + Hand: Hand, + HandCoins: HandCoins, + HandHeart: HandHeart, + HandHelping: HandHelping, + HandMetal: HandMetal, + HandPlatter: HandPlatter, + Handshake: Handshake, + HardDrive: HardDrive, + HardDriveDownload: HardDriveDownload, + HardDriveUpload: HardDriveUpload, + HardHat: HardHat, + Hash: Hash, + Haze: Haze, + HdmiPort: HdmiPort, + Heading: Heading, + Heading1: Heading1, + Heading2: Heading2, + Heading3: Heading3, + Heading4: Heading4, + Heading5: Heading5, + Heading6: Heading6, + HeadphoneOff: HeadphoneOff, + Headphones: Headphones, + Headset: Headset, + Heart: Heart, + HeartCrack: HeartCrack, + HeartHandshake: HeartHandshake, + HeartOff: HeartOff, + HeartPulse: HeartPulse, + Heater: Heater, + HelpCircle: CircleHelp, + HelpingHand: HandHelping, + Hexagon: Hexagon, + Highlighter: Highlighter, + History: History, + Home: House, + Hop: Hop, + HopOff: HopOff, + Hospital: Hospital, + Hotel: Hotel, + Hourglass: Hourglass, + House: House, + HousePlug: HousePlug, + HousePlus: HousePlus, + HouseWifi: HouseWifi, + IceCream: IceCreamCone, + IceCream2: IceCreamBowl, + IceCreamBowl: IceCreamBowl, + IceCreamCone: IceCreamCone, + IdCard: IdCard, + Image: Image, + ImageDown: ImageDown, + ImageMinus: ImageMinus, + ImageOff: ImageOff, + ImagePlay: ImagePlay, + ImagePlus: ImagePlus, + ImageUp: ImageUp, + ImageUpscale: ImageUpscale, + Images: Images, + Import: Import, + Inbox: Inbox, + Indent: IndentIncrease, + IndentDecrease: IndentDecrease, + IndentIncrease: IndentIncrease, + IndianRupee: IndianRupee, + Infinity: Infinity, + Info: Info, + Inspect: SquareMousePointer, + InspectionPanel: InspectionPanel, + Instagram: Instagram, + Italic: Italic, + IterationCcw: IterationCcw, + IterationCw: IterationCw, + JapaneseYen: JapaneseYen, + Joystick: Joystick, + Kanban: Kanban, + KanbanSquare: SquareKanban, + KanbanSquareDashed: SquareDashedKanban, + Key: Key, + KeyRound: KeyRound, + KeySquare: KeySquare, + Keyboard: Keyboard, + KeyboardMusic: KeyboardMusic, + KeyboardOff: KeyboardOff, + Lamp: Lamp, + LampCeiling: LampCeiling, + LampDesk: LampDesk, + LampFloor: LampFloor, + LampWallDown: LampWallDown, + LampWallUp: LampWallUp, + LandPlot: LandPlot, + Landmark: Landmark, + Languages: Languages, + Laptop: Laptop, + Laptop2: LaptopMinimal, + LaptopMinimal: LaptopMinimal, + LaptopMinimalCheck: LaptopMinimalCheck, + Lasso: Lasso, + LassoSelect: LassoSelect, + Laugh: Laugh, + Layers: Layers, + Layers2: Layers2, + Layers3: Layers, + Layout: PanelsTopLeft, + LayoutDashboard: LayoutDashboard, + LayoutGrid: LayoutGrid, + LayoutList: LayoutList, + LayoutPanelLeft: LayoutPanelLeft, + LayoutPanelTop: LayoutPanelTop, + LayoutTemplate: LayoutTemplate, + Leaf: Leaf, + LeafyGreen: LeafyGreen, + Lectern: Lectern, + LetterText: LetterText, + Library: Library, + LibraryBig: LibraryBig, + LibrarySquare: SquareLibrary, + LifeBuoy: LifeBuoy, + Ligature: Ligature, + Lightbulb: Lightbulb, + LightbulbOff: LightbulbOff, + LineChart: ChartLine, + Link: Link, + Link2: Link2, + Link2Off: Link2Off, + Linkedin: Linkedin, + List: List, + ListCheck: ListCheck, + ListChecks: ListChecks, + ListCollapse: ListCollapse, + ListEnd: ListEnd, + ListFilter: ListFilter, + ListFilterPlus: ListFilterPlus, + ListMinus: ListMinus, + ListMusic: ListMusic, + ListOrdered: ListOrdered, + ListPlus: ListPlus, + ListRestart: ListRestart, + ListStart: ListStart, + ListTodo: ListTodo, + ListTree: ListTree, + ListVideo: ListVideo, + ListX: ListX, + Loader: Loader, + Loader2: LoaderCircle, + LoaderCircle: LoaderCircle, + LoaderPinwheel: LoaderPinwheel, + Locate: Locate, + LocateFixed: LocateFixed, + LocateOff: LocateOff, + Lock: Lock, + LockKeyhole: LockKeyhole, + LockKeyholeOpen: LockKeyholeOpen, + LockOpen: LockOpen, + LogIn: LogIn, + LogOut: LogOut, + Logs: Logs, + Lollipop: Lollipop, + Luggage: Luggage, + MSquare: SquareM, + Magnet: Magnet, + Mail: Mail, + MailCheck: MailCheck, + MailMinus: MailMinus, + MailOpen: MailOpen, + MailPlus: MailPlus, + MailQuestion: MailQuestion, + MailSearch: MailSearch, + MailWarning: MailWarning, + MailX: MailX, + Mailbox: Mailbox, + Mails: Mails, + Map: Map, + MapPin: MapPin, + MapPinCheck: MapPinCheck, + MapPinCheckInside: MapPinCheckInside, + MapPinHouse: MapPinHouse, + MapPinMinus: MapPinMinus, + MapPinMinusInside: MapPinMinusInside, + MapPinOff: MapPinOff, + MapPinPlus: MapPinPlus, + MapPinPlusInside: MapPinPlusInside, + MapPinX: MapPinX, + MapPinXInside: MapPinXInside, + MapPinned: MapPinned, + MapPlus: MapPlus, + Mars: Mars, + MarsStroke: MarsStroke, + Martini: Martini, + Maximize: Maximize, + Maximize2: Maximize2, + Medal: Medal, + Megaphone: Megaphone, + MegaphoneOff: MegaphoneOff, + Meh: Meh, + MemoryStick: MemoryStick, + Menu: Menu, + MenuSquare: SquareMenu, + Merge: Merge, + MessageCircle: MessageCircle, + MessageCircleCode: MessageCircleCode, + MessageCircleDashed: MessageCircleDashed, + MessageCircleHeart: MessageCircleHeart, + MessageCircleMore: MessageCircleMore, + MessageCircleOff: MessageCircleOff, + MessageCirclePlus: MessageCirclePlus, + MessageCircleQuestion: MessageCircleQuestion, + MessageCircleReply: MessageCircleReply, + MessageCircleWarning: MessageCircleWarning, + MessageCircleX: MessageCircleX, + MessageSquare: MessageSquare, + MessageSquareCode: MessageSquareCode, + MessageSquareDashed: MessageSquareDashed, + MessageSquareDiff: MessageSquareDiff, + MessageSquareDot: MessageSquareDot, + MessageSquareHeart: MessageSquareHeart, + MessageSquareLock: MessageSquareLock, + MessageSquareMore: MessageSquareMore, + MessageSquareOff: MessageSquareOff, + MessageSquarePlus: MessageSquarePlus, + MessageSquareQuote: MessageSquareQuote, + MessageSquareReply: MessageSquareReply, + MessageSquareShare: MessageSquareShare, + MessageSquareText: MessageSquareText, + MessageSquareWarning: MessageSquareWarning, + MessageSquareX: MessageSquareX, + MessagesSquare: MessagesSquare, + Mic: Mic, + Mic2: MicVocal, + MicOff: MicOff, + MicVocal: MicVocal, + Microchip: Microchip, + Microscope: Microscope, + Microwave: Microwave, + Milestone: Milestone, + Milk: Milk, + MilkOff: MilkOff, + Minimize: Minimize, + Minimize2: Minimize2, + Minus: Minus, + MinusCircle: CircleMinus, + MinusSquare: SquareMinus, + Monitor: Monitor, + MonitorCheck: MonitorCheck, + MonitorCog: MonitorCog, + MonitorDot: MonitorDot, + MonitorDown: MonitorDown, + MonitorOff: MonitorOff, + MonitorPause: MonitorPause, + MonitorPlay: MonitorPlay, + MonitorSmartphone: MonitorSmartphone, + MonitorSpeaker: MonitorSpeaker, + MonitorStop: MonitorStop, + MonitorUp: MonitorUp, + MonitorX: MonitorX, + Moon: Moon, + MoonStar: MoonStar, + MoreHorizontal: Ellipsis, + MoreVertical: EllipsisVertical, + Mountain: Mountain, + MountainSnow: MountainSnow, + Mouse: Mouse, + MouseOff: MouseOff, + MousePointer: MousePointer, + MousePointer2: MousePointer2, + MousePointerBan: MousePointerBan, + MousePointerClick: MousePointerClick, + MousePointerSquareDashed: SquareDashedMousePointer, + Move: Move, + Move3D: Move3d, + Move3d: Move3d, + MoveDiagonal: MoveDiagonal, + MoveDiagonal2: MoveDiagonal2, + MoveDown: MoveDown, + MoveDownLeft: MoveDownLeft, + MoveDownRight: MoveDownRight, + MoveHorizontal: MoveHorizontal, + MoveLeft: MoveLeft, + MoveRight: MoveRight, + MoveUp: MoveUp, + MoveUpLeft: MoveUpLeft, + MoveUpRight: MoveUpRight, + MoveVertical: MoveVertical, + Music: Music, + Music2: Music2, + Music3: Music3, + Music4: Music4, + Navigation: Navigation, + Navigation2: Navigation2, + Navigation2Off: Navigation2Off, + NavigationOff: NavigationOff, + Network: Network, + Newspaper: Newspaper, + Nfc: Nfc, + NonBinary: NonBinary, + Notebook: Notebook, + NotebookPen: NotebookPen, + NotebookTabs: NotebookTabs, + NotebookText: NotebookText, + NotepadText: NotepadText, + NotepadTextDashed: NotepadTextDashed, + Nut: Nut, + NutOff: NutOff, + Octagon: Octagon, + OctagonAlert: OctagonAlert, + OctagonMinus: OctagonMinus, + OctagonPause: OctagonPause, + OctagonX: OctagonX, + Omega: Omega, + Option: Option, + Orbit: Orbit, + Origami: Origami, + Outdent: IndentDecrease, + Package: Package, + Package2: Package2, + PackageCheck: PackageCheck, + PackageMinus: PackageMinus, + PackageOpen: PackageOpen, + PackagePlus: PackagePlus, + PackageSearch: PackageSearch, + PackageX: PackageX, + PaintBucket: PaintBucket, + PaintRoller: PaintRoller, + Paintbrush: Paintbrush, + Paintbrush2: PaintbrushVertical, + PaintbrushVertical: PaintbrushVertical, + Palette: Palette, + Palmtree: TreePalm, + PanelBottom: PanelBottom, + PanelBottomClose: PanelBottomClose, + PanelBottomDashed: PanelBottomDashed, + PanelBottomInactive: PanelBottomDashed, + PanelBottomOpen: PanelBottomOpen, + PanelLeft: PanelLeft, + PanelLeftClose: PanelLeftClose, + PanelLeftDashed: PanelLeftDashed, + PanelLeftInactive: PanelLeftDashed, + PanelLeftOpen: PanelLeftOpen, + PanelRight: PanelRight, + PanelRightClose: PanelRightClose, + PanelRightDashed: PanelRightDashed, + PanelRightInactive: PanelRightDashed, + PanelRightOpen: PanelRightOpen, + PanelTop: PanelTop, + PanelTopClose: PanelTopClose, + PanelTopDashed: PanelTopDashed, + PanelTopInactive: PanelTopDashed, + PanelTopOpen: PanelTopOpen, + PanelsLeftBottom: PanelsLeftBottom, + PanelsLeftRight: Columns3, + PanelsRightBottom: PanelsRightBottom, + PanelsTopBottom: Rows3, + PanelsTopLeft: PanelsTopLeft, + Paperclip: Paperclip, + Parentheses: Parentheses, + ParkingCircle: CircleParking, + ParkingCircleOff: CircleParkingOff, + ParkingMeter: ParkingMeter, + ParkingSquare: SquareParking, + ParkingSquareOff: SquareParkingOff, + PartyPopper: PartyPopper, + Pause: Pause, + PauseCircle: CirclePause, + PauseOctagon: OctagonPause, + PawPrint: PawPrint, + PcCase: PcCase, + Pen: Pen, + PenBox: SquarePen, + PenLine: PenLine, + PenOff: PenOff, + PenSquare: SquarePen, + PenTool: PenTool, + Pencil: Pencil, + PencilLine: PencilLine, + PencilOff: PencilOff, + PencilRuler: PencilRuler, + Pentagon: Pentagon, + Percent: Percent, + PercentCircle: CirclePercent, + PercentDiamond: DiamondPercent, + PercentSquare: SquarePercent, + PersonStanding: PersonStanding, + PhilippinePeso: PhilippinePeso, + Phone: Phone, + PhoneCall: PhoneCall, + PhoneForwarded: PhoneForwarded, + PhoneIncoming: PhoneIncoming, + PhoneMissed: PhoneMissed, + PhoneOff: PhoneOff, + PhoneOutgoing: PhoneOutgoing, + Pi: Pi, + PiSquare: SquarePi, + Piano: Piano, + Pickaxe: Pickaxe, + PictureInPicture: PictureInPicture, + PictureInPicture2: PictureInPicture2, + PieChart: ChartPie, + PiggyBank: PiggyBank, + Pilcrow: Pilcrow, + PilcrowLeft: PilcrowLeft, + PilcrowRight: PilcrowRight, + PilcrowSquare: SquarePilcrow, + Pill: Pill, + PillBottle: PillBottle, + Pin: Pin, + PinOff: PinOff, + Pipette: Pipette, + Pizza: Pizza, + Plane: Plane, + PlaneLanding: PlaneLanding, + PlaneTakeoff: PlaneTakeoff, + Play: Play, + PlayCircle: CirclePlay, + PlaySquare: SquarePlay, + Plug: Plug, + Plug2: Plug2, + PlugZap: PlugZap, + PlugZap2: PlugZap, + Plus: Plus, + PlusCircle: CirclePlus, + PlusSquare: SquarePlus, + Pocket: Pocket, + PocketKnife: PocketKnife, + Podcast: Podcast, + Pointer: Pointer, + PointerOff: PointerOff, + Popcorn: Popcorn, + Popsicle: Popsicle, + PoundSterling: PoundSterling, + Power: Power, + PowerCircle: CirclePower, + PowerOff: PowerOff, + PowerSquare: SquarePower, + Presentation: Presentation, + Printer: Printer, + PrinterCheck: PrinterCheck, + Projector: Projector, + Proportions: Proportions, + Puzzle: Puzzle, + Pyramid: Pyramid, + QrCode: QrCode, + Quote: Quote, + Rabbit: Rabbit, + Radar: Radar, + Radiation: Radiation, + Radical: Radical, + Radio: Radio, + RadioReceiver: RadioReceiver, + RadioTower: RadioTower, + Radius: Radius, + RailSymbol: RailSymbol, + Rainbow: Rainbow, + Rat: Rat, + Ratio: Ratio, + Receipt: Receipt, + ReceiptCent: ReceiptCent, + ReceiptEuro: ReceiptEuro, + ReceiptIndianRupee: ReceiptIndianRupee, + ReceiptJapaneseYen: ReceiptJapaneseYen, + ReceiptPoundSterling: ReceiptPoundSterling, + ReceiptRussianRuble: ReceiptRussianRuble, + ReceiptSwissFranc: ReceiptSwissFranc, + ReceiptText: ReceiptText, + RectangleEllipsis: RectangleEllipsis, + RectangleHorizontal: RectangleHorizontal, + RectangleVertical: RectangleVertical, + Recycle: Recycle, + Redo: Redo, + Redo2: Redo2, + RedoDot: RedoDot, + RefreshCcw: RefreshCcw, + RefreshCcwDot: RefreshCcwDot, + RefreshCw: RefreshCw, + RefreshCwOff: RefreshCwOff, + Refrigerator: Refrigerator, + Regex: Regex, + RemoveFormatting: RemoveFormatting, + Repeat: Repeat, + Repeat1: Repeat1, + Repeat2: Repeat2, + Replace: Replace, + ReplaceAll: ReplaceAll, + Reply: Reply, + ReplyAll: ReplyAll, + Rewind: Rewind, + Ribbon: Ribbon, + Rocket: Rocket, + RockingChair: RockingChair, + RollerCoaster: RollerCoaster, + Rotate3D: Rotate3d, + Rotate3d: Rotate3d, + RotateCcw: RotateCcw, + RotateCcwSquare: RotateCcwSquare, + RotateCw: RotateCw, + RotateCwSquare: RotateCwSquare, + Route: Route, + RouteOff: RouteOff, + Router: Router, + Rows: Rows2, + Rows2: Rows2, + Rows3: Rows3, + Rows4: Rows4, + Rss: Rss, + Ruler: Ruler, + RussianRuble: RussianRuble, + Sailboat: Sailboat, + Salad: Salad, + Sandwich: Sandwich, + Satellite: Satellite, + SatelliteDish: SatelliteDish, + Save: Save, + SaveAll: SaveAll, + SaveOff: SaveOff, + Scale: Scale, + Scale3D: Scale3d, + Scale3d: Scale3d, + Scaling: Scaling, + Scan: Scan, + ScanBarcode: ScanBarcode, + ScanEye: ScanEye, + ScanFace: ScanFace, + ScanHeart: ScanHeart, + ScanLine: ScanLine, + ScanQrCode: ScanQrCode, + ScanSearch: ScanSearch, + ScanText: ScanText, + ScatterChart: ChartScatter, + School: School, + School2: University, + Scissors: Scissors, + ScissorsLineDashed: ScissorsLineDashed, + ScissorsSquare: SquareScissors, + ScissorsSquareDashedBottom: SquareBottomDashedScissors, + ScreenShare: ScreenShare, + ScreenShareOff: ScreenShareOff, + Scroll: Scroll, + ScrollText: ScrollText, + Search: Search, + SearchCheck: SearchCheck, + SearchCode: SearchCode, + SearchSlash: SearchSlash, + SearchX: SearchX, + Section: Section, + Send: Send, + SendHorizonal: SendHorizontal, + SendHorizontal: SendHorizontal, + SendToBack: SendToBack, + SeparatorHorizontal: SeparatorHorizontal, + SeparatorVertical: SeparatorVertical, + Server: Server, + ServerCog: ServerCog, + ServerCrash: ServerCrash, + ServerOff: ServerOff, + Settings: Settings, + Settings2: Settings2, + Shapes: Shapes, + Share: Share, + Share2: Share2, + Sheet: Sheet, + Shell: Shell, + Shield: Shield, + ShieldAlert: ShieldAlert, + ShieldBan: ShieldBan, + ShieldCheck: ShieldCheck, + ShieldClose: ShieldX, + ShieldEllipsis: ShieldEllipsis, + ShieldHalf: ShieldHalf, + ShieldMinus: ShieldMinus, + ShieldOff: ShieldOff, + ShieldPlus: ShieldPlus, + ShieldQuestion: ShieldQuestion, + ShieldX: ShieldX, + Ship: Ship, + ShipWheel: ShipWheel, + Shirt: Shirt, + ShoppingBag: ShoppingBag, + ShoppingBasket: ShoppingBasket, + ShoppingCart: ShoppingCart, + Shovel: Shovel, + ShowerHead: ShowerHead, + Shrink: Shrink, + Shrub: Shrub, + Shuffle: Shuffle, + Sidebar: PanelLeft, + SidebarClose: PanelLeftClose, + SidebarOpen: PanelLeftOpen, + Sigma: Sigma, + SigmaSquare: SquareSigma, + Signal: Signal, + SignalHigh: SignalHigh, + SignalLow: SignalLow, + SignalMedium: SignalMedium, + SignalZero: SignalZero, + Signature: Signature, + Signpost: Signpost, + SignpostBig: SignpostBig, + Siren: Siren, + SkipBack: SkipBack, + SkipForward: SkipForward, + Skull: Skull, + Slack: Slack, + Slash: Slash, + SlashSquare: SquareSlash, + Slice: Slice, + Sliders: SlidersVertical, + SlidersHorizontal: SlidersHorizontal, + SlidersVertical: SlidersVertical, + Smartphone: Smartphone, + SmartphoneCharging: SmartphoneCharging, + SmartphoneNfc: SmartphoneNfc, + Smile: Smile, + SmilePlus: SmilePlus, + Snail: Snail, + Snowflake: Snowflake, + Sofa: Sofa, + SortAsc: ArrowUpNarrowWide, + SortDesc: ArrowDownWideNarrow, + Soup: Soup, + Space: Space, + Spade: Spade, + Sparkle: Sparkle, + Sparkles: Sparkles, + Speaker: Speaker, + Speech: Speech, + SpellCheck: SpellCheck, + SpellCheck2: SpellCheck2, + Spline: Spline, + Split: Split, + SplitSquareHorizontal: SquareSplitHorizontal, + SplitSquareVertical: SquareSplitVertical, + SprayCan: SprayCan, + Sprout: Sprout, + Square: Square, + SquareActivity: SquareActivity, + SquareArrowDown: SquareArrowDown, + SquareArrowDownLeft: SquareArrowDownLeft, + SquareArrowDownRight: SquareArrowDownRight, + SquareArrowLeft: SquareArrowLeft, + SquareArrowOutDownLeft: SquareArrowOutDownLeft, + SquareArrowOutDownRight: SquareArrowOutDownRight, + SquareArrowOutUpLeft: SquareArrowOutUpLeft, + SquareArrowOutUpRight: SquareArrowOutUpRight, + SquareArrowRight: SquareArrowRight, + SquareArrowUp: SquareArrowUp, + SquareArrowUpLeft: SquareArrowUpLeft, + SquareArrowUpRight: SquareArrowUpRight, + SquareAsterisk: SquareAsterisk, + SquareBottomDashedScissors: SquareBottomDashedScissors, + SquareChartGantt: SquareChartGantt, + SquareCheck: SquareCheck, + SquareCheckBig: SquareCheckBig, + SquareChevronDown: SquareChevronDown, + SquareChevronLeft: SquareChevronLeft, + SquareChevronRight: SquareChevronRight, + SquareChevronUp: SquareChevronUp, + SquareCode: SquareCode, + SquareDashed: SquareDashed, + SquareDashedBottom: SquareDashedBottom, + SquareDashedBottomCode: SquareDashedBottomCode, + SquareDashedKanban: SquareDashedKanban, + SquareDashedMousePointer: SquareDashedMousePointer, + SquareDivide: SquareDivide, + SquareDot: SquareDot, + SquareEqual: SquareEqual, + SquareFunction: SquareFunction, + SquareGanttChart: SquareChartGantt, + SquareKanban: SquareKanban, + SquareLibrary: SquareLibrary, + SquareM: SquareM, + SquareMenu: SquareMenu, + SquareMinus: SquareMinus, + SquareMousePointer: SquareMousePointer, + SquareParking: SquareParking, + SquareParkingOff: SquareParkingOff, + SquarePen: SquarePen, + SquarePercent: SquarePercent, + SquarePi: SquarePi, + SquarePilcrow: SquarePilcrow, + SquarePlay: SquarePlay, + SquarePlus: SquarePlus, + SquarePower: SquarePower, + SquareRadical: SquareRadical, + SquareScissors: SquareScissors, + SquareSigma: SquareSigma, + SquareSlash: SquareSlash, + SquareSplitHorizontal: SquareSplitHorizontal, + SquareSplitVertical: SquareSplitVertical, + SquareSquare: SquareSquare, + SquareStack: SquareStack, + SquareTerminal: SquareTerminal, + SquareUser: SquareUser, + SquareUserRound: SquareUserRound, + SquareX: SquareX, + Squircle: Squircle, + Squirrel: Squirrel, + Stamp: Stamp, + Star: Star, + StarHalf: StarHalf, + StarOff: StarOff, + Stars: Sparkles, + StepBack: StepBack, + StepForward: StepForward, + Stethoscope: Stethoscope, + Sticker: Sticker, + StickyNote: StickyNote, + StopCircle: CircleStop, + Store: Store, + StretchHorizontal: StretchHorizontal, + StretchVertical: StretchVertical, + Strikethrough: Strikethrough, + Subscript: Subscript, + Subtitles: Captions, + Sun: Sun, + SunDim: SunDim, + SunMedium: SunMedium, + SunMoon: SunMoon, + SunSnow: SunSnow, + Sunrise: Sunrise, + Sunset: Sunset, + Superscript: Superscript, + SwatchBook: SwatchBook, + SwissFranc: SwissFranc, + SwitchCamera: SwitchCamera, + Sword: Sword, + Swords: Swords, + Syringe: Syringe, + Table: Table, + Table2: Table2, + TableCellsMerge: TableCellsMerge, + TableCellsSplit: TableCellsSplit, + TableColumnsSplit: TableColumnsSplit, + TableOfContents: TableOfContents, + TableProperties: TableProperties, + TableRowsSplit: TableRowsSplit, + Tablet: Tablet, + TabletSmartphone: TabletSmartphone, + Tablets: Tablets, + Tag: Tag, + Tags: Tags, + Tally1: Tally1, + Tally2: Tally2, + Tally3: Tally3, + Tally4: Tally4, + Tally5: Tally5, + Tangent: Tangent, + Target: Target, + Telescope: Telescope, + Tent: Tent, + TentTree: TentTree, + Terminal: Terminal, + TerminalSquare: SquareTerminal, + TestTube: TestTube, + TestTube2: TestTubeDiagonal, + TestTubeDiagonal: TestTubeDiagonal, + TestTubes: TestTubes, + Text: Text, + TextCursor: TextCursor, + TextCursorInput: TextCursorInput, + TextQuote: TextQuote, + TextSearch: TextSearch, + TextSelect: TextSelect, + TextSelection: TextSelect, + Theater: Theater, + Thermometer: Thermometer, + ThermometerSnowflake: ThermometerSnowflake, + ThermometerSun: ThermometerSun, + ThumbsDown: ThumbsDown, + ThumbsUp: ThumbsUp, + Ticket: Ticket, + TicketCheck: TicketCheck, + TicketMinus: TicketMinus, + TicketPercent: TicketPercent, + TicketPlus: TicketPlus, + TicketSlash: TicketSlash, + TicketX: TicketX, + Tickets: Tickets, + TicketsPlane: TicketsPlane, + Timer: Timer, + TimerOff: TimerOff, + TimerReset: TimerReset, + ToggleLeft: ToggleLeft, + ToggleRight: ToggleRight, + Toilet: Toilet, + Tornado: Tornado, + Torus: Torus, + Touchpad: Touchpad, + TouchpadOff: TouchpadOff, + TowerControl: TowerControl, + ToyBrick: ToyBrick, + Tractor: Tractor, + TrafficCone: TrafficCone, + Train: TramFront, + TrainFront: TrainFront, + TrainFrontTunnel: TrainFrontTunnel, + TrainTrack: TrainTrack, + TramFront: TramFront, + Transgender: Transgender, + Trash: Trash, + Trash2: Trash2, + TreeDeciduous: TreeDeciduous, + TreePalm: TreePalm, + TreePine: TreePine, + Trees: Trees, + Trello: Trello, + TrendingDown: TrendingDown, + TrendingUp: TrendingUp, + TrendingUpDown: TrendingUpDown, + Triangle: Triangle, + TriangleAlert: TriangleAlert, + TriangleDashed: TriangleDashed, + TriangleRight: TriangleRight, + Trophy: Trophy, + Truck: Truck, + Turtle: Turtle, + Tv: Tv, + Tv2: TvMinimal, + TvMinimal: TvMinimal, + TvMinimalPlay: TvMinimalPlay, + Twitch: Twitch, + Twitter: Twitter, + Type: Type, + TypeOutline: TypeOutline, + Umbrella: Umbrella, + UmbrellaOff: UmbrellaOff, + Underline: Underline, + Undo: Undo, + Undo2: Undo2, + UndoDot: UndoDot, + UnfoldHorizontal: UnfoldHorizontal, + UnfoldVertical: UnfoldVertical, + Ungroup: Ungroup, + University: University, + Unlink: Unlink, + Unlink2: Unlink2, + Unlock: LockOpen, + UnlockKeyhole: LockKeyholeOpen, + Unplug: Unplug, + Upload: Upload, + UploadCloud: CloudUpload, + Usb: Usb, + User: User, + User2: UserRound, + UserCheck: UserCheck, + UserCheck2: UserRoundCheck, + UserCircle: CircleUser, + UserCircle2: CircleUserRound, + UserCog: UserCog, + UserCog2: UserRoundCog, + UserMinus: UserMinus, + UserMinus2: UserRoundMinus, + UserPen: UserPen, + UserPlus: UserPlus, + UserPlus2: UserRoundPlus, + UserRound: UserRound, + UserRoundCheck: UserRoundCheck, + UserRoundCog: UserRoundCog, + UserRoundMinus: UserRoundMinus, + UserRoundPen: UserRoundPen, + UserRoundPlus: UserRoundPlus, + UserRoundSearch: UserRoundSearch, + UserRoundX: UserRoundX, + UserSearch: UserSearch, + UserSquare: SquareUser, + UserSquare2: SquareUserRound, + UserX: UserX, + UserX2: UserRoundX, + Users: Users, + Users2: UsersRound, + UsersRound: UsersRound, + Utensils: Utensils, + UtensilsCrossed: UtensilsCrossed, + UtilityPole: UtilityPole, + Variable: Variable, + Vault: Vault, + Vegan: Vegan, + VenetianMask: VenetianMask, + Venus: Venus, + VenusAndMars: VenusAndMars, + Verified: BadgeCheck, + Vibrate: Vibrate, + VibrateOff: VibrateOff, + Video: Video, + VideoOff: VideoOff, + Videotape: Videotape, + View: View, + Voicemail: Voicemail, + Volleyball: Volleyball, + Volume: Volume, + Volume1: Volume1, + Volume2: Volume2, + VolumeOff: VolumeOff, + VolumeX: VolumeX, + Vote: Vote, + Wallet: Wallet, + Wallet2: WalletMinimal, + WalletCards: WalletCards, + WalletMinimal: WalletMinimal, + Wallpaper: Wallpaper, + Wand: Wand, + Wand2: WandSparkles, + WandSparkles: WandSparkles, + Warehouse: Warehouse, + WashingMachine: WashingMachine, + Watch: Watch, + Waves: Waves, + WavesLadder: WavesLadder, + Waypoints: Waypoints, + Webcam: Webcam, + Webhook: Webhook, + WebhookOff: WebhookOff, + Weight: Weight, + Wheat: Wheat, + WheatOff: WheatOff, + WholeWord: WholeWord, + Wifi: Wifi, + WifiHigh: WifiHigh, + WifiLow: WifiLow, + WifiOff: WifiOff, + WifiZero: WifiZero, + Wind: Wind, + WindArrowDown: WindArrowDown, + Wine: Wine, + WineOff: WineOff, + Workflow: Workflow, + Worm: Worm, + WrapText: WrapText, + Wrench: Wrench, + X: X, + XCircle: CircleX, + XOctagon: OctagonX, + XSquare: SquareX, + Youtube: Youtube, + Zap: Zap, + ZapOff: ZapOff, + ZoomIn: ZoomIn, + ZoomOut: ZoomOut + }); + + const createIcons = ({ icons = iconAndAliases, nameAttr = "data-lucide", attrs = {} } = {}) => { + if (!Object.values(icons).length) { + throw new Error( + "Please provide an icons object.\nIf you want to use all the icons you can import it like:\n `import { createIcons, icons } from 'lucide';\nlucide.createIcons({icons});`" + ); + } + if (typeof document === "undefined") { + throw new Error("`createIcons()` only works in a browser environment."); + } + const elementsToReplace = document.querySelectorAll(`[${nameAttr}]`); + Array.from(elementsToReplace).forEach( + (element) => replaceElement(element, { nameAttr, icons, attrs }) + ); + if (nameAttr === "data-lucide") { + const deprecatedElements = document.querySelectorAll("[icon-name]"); + if (deprecatedElements.length > 0) { + console.warn( + "[Lucide] Some icons were found with the now deprecated icon-name attribute. These will still be replaced for backwards compatibility, but will no longer be supported in v1.0 and you should switch to data-lucide" + ); + Array.from(deprecatedElements).forEach( + (element) => replaceElement(element, { nameAttr: "icon-name", icons, attrs }) + ); + } + } + }; + + exports.AArrowDown = AArrowDown; + exports.AArrowUp = AArrowUp; + exports.ALargeSmall = ALargeSmall; + exports.Accessibility = Accessibility; + exports.Activity = Activity; + exports.ActivitySquare = SquareActivity; + exports.AirVent = AirVent; + exports.Airplay = Airplay; + exports.AlarmCheck = AlarmClockCheck; + exports.AlarmClock = AlarmClock; + exports.AlarmClockCheck = AlarmClockCheck; + exports.AlarmClockMinus = AlarmClockMinus; + exports.AlarmClockOff = AlarmClockOff; + exports.AlarmClockPlus = AlarmClockPlus; + exports.AlarmMinus = AlarmClockMinus; + exports.AlarmPlus = AlarmClockPlus; + exports.AlarmSmoke = AlarmSmoke; + exports.Album = Album; + exports.AlertCircle = CircleAlert; + exports.AlertOctagon = OctagonAlert; + exports.AlertTriangle = TriangleAlert; + exports.AlignCenter = AlignCenter; + exports.AlignCenterHorizontal = AlignCenterHorizontal; + exports.AlignCenterVertical = AlignCenterVertical; + exports.AlignEndHorizontal = AlignEndHorizontal; + exports.AlignEndVertical = AlignEndVertical; + exports.AlignHorizontalDistributeCenter = AlignHorizontalDistributeCenter; + exports.AlignHorizontalDistributeEnd = AlignHorizontalDistributeEnd; + exports.AlignHorizontalDistributeStart = AlignHorizontalDistributeStart; + exports.AlignHorizontalJustifyCenter = AlignHorizontalJustifyCenter; + exports.AlignHorizontalJustifyEnd = AlignHorizontalJustifyEnd; + exports.AlignHorizontalJustifyStart = AlignHorizontalJustifyStart; + exports.AlignHorizontalSpaceAround = AlignHorizontalSpaceAround; + exports.AlignHorizontalSpaceBetween = AlignHorizontalSpaceBetween; + exports.AlignJustify = AlignJustify; + exports.AlignLeft = AlignLeft; + exports.AlignRight = AlignRight; + exports.AlignStartHorizontal = AlignStartHorizontal; + exports.AlignStartVertical = AlignStartVertical; + exports.AlignVerticalDistributeCenter = AlignVerticalDistributeCenter; + exports.AlignVerticalDistributeEnd = AlignVerticalDistributeEnd; + exports.AlignVerticalDistributeStart = AlignVerticalDistributeStart; + exports.AlignVerticalJustifyCenter = AlignVerticalJustifyCenter; + exports.AlignVerticalJustifyEnd = AlignVerticalJustifyEnd; + exports.AlignVerticalJustifyStart = AlignVerticalJustifyStart; + exports.AlignVerticalSpaceAround = AlignVerticalSpaceAround; + exports.AlignVerticalSpaceBetween = AlignVerticalSpaceBetween; + exports.Ambulance = Ambulance; + exports.Ampersand = Ampersand; + exports.Ampersands = Ampersands; + exports.Amphora = Amphora; + exports.Anchor = Anchor; + exports.Angry = Angry; + exports.Annoyed = Annoyed; + exports.Antenna = Antenna; + exports.Anvil = Anvil; + exports.Aperture = Aperture; + exports.AppWindow = AppWindow; + exports.AppWindowMac = AppWindowMac; + exports.Apple = Apple; + exports.Archive = Archive; + exports.ArchiveRestore = ArchiveRestore; + exports.ArchiveX = ArchiveX; + exports.AreaChart = ChartArea; + exports.Armchair = Armchair; + exports.ArrowBigDown = ArrowBigDown; + exports.ArrowBigDownDash = ArrowBigDownDash; + exports.ArrowBigLeft = ArrowBigLeft; + exports.ArrowBigLeftDash = ArrowBigLeftDash; + exports.ArrowBigRight = ArrowBigRight; + exports.ArrowBigRightDash = ArrowBigRightDash; + exports.ArrowBigUp = ArrowBigUp; + exports.ArrowBigUpDash = ArrowBigUpDash; + exports.ArrowDown = ArrowDown; + exports.ArrowDown01 = ArrowDown01; + exports.ArrowDown10 = ArrowDown10; + exports.ArrowDownAZ = ArrowDownAZ; + exports.ArrowDownAz = ArrowDownAZ; + exports.ArrowDownCircle = CircleArrowDown; + exports.ArrowDownFromLine = ArrowDownFromLine; + exports.ArrowDownLeft = ArrowDownLeft; + exports.ArrowDownLeftFromCircle = CircleArrowOutDownLeft; + exports.ArrowDownLeftFromSquare = SquareArrowOutDownLeft; + exports.ArrowDownLeftSquare = SquareArrowDownLeft; + exports.ArrowDownNarrowWide = ArrowDownNarrowWide; + exports.ArrowDownRight = ArrowDownRight; + exports.ArrowDownRightFromCircle = CircleArrowOutDownRight; + exports.ArrowDownRightFromSquare = SquareArrowOutDownRight; + exports.ArrowDownRightSquare = SquareArrowDownRight; + exports.ArrowDownSquare = SquareArrowDown; + exports.ArrowDownToDot = ArrowDownToDot; + exports.ArrowDownToLine = ArrowDownToLine; + exports.ArrowDownUp = ArrowDownUp; + exports.ArrowDownWideNarrow = ArrowDownWideNarrow; + exports.ArrowDownZA = ArrowDownZA; + exports.ArrowDownZa = ArrowDownZA; + exports.ArrowLeft = ArrowLeft; + exports.ArrowLeftCircle = CircleArrowLeft; + exports.ArrowLeftFromLine = ArrowLeftFromLine; + exports.ArrowLeftRight = ArrowLeftRight; + exports.ArrowLeftSquare = SquareArrowLeft; + exports.ArrowLeftToLine = ArrowLeftToLine; + exports.ArrowRight = ArrowRight; + exports.ArrowRightCircle = CircleArrowRight; + exports.ArrowRightFromLine = ArrowRightFromLine; + exports.ArrowRightLeft = ArrowRightLeft; + exports.ArrowRightSquare = SquareArrowRight; + exports.ArrowRightToLine = ArrowRightToLine; + exports.ArrowUp = ArrowUp; + exports.ArrowUp01 = ArrowUp01; + exports.ArrowUp10 = ArrowUp10; + exports.ArrowUpAZ = ArrowUpAZ; + exports.ArrowUpAz = ArrowUpAZ; + exports.ArrowUpCircle = CircleArrowUp; + exports.ArrowUpDown = ArrowUpDown; + exports.ArrowUpFromDot = ArrowUpFromDot; + exports.ArrowUpFromLine = ArrowUpFromLine; + exports.ArrowUpLeft = ArrowUpLeft; + exports.ArrowUpLeftFromCircle = CircleArrowOutUpLeft; + exports.ArrowUpLeftFromSquare = SquareArrowOutUpLeft; + exports.ArrowUpLeftSquare = SquareArrowUpLeft; + exports.ArrowUpNarrowWide = ArrowUpNarrowWide; + exports.ArrowUpRight = ArrowUpRight; + exports.ArrowUpRightFromCircle = CircleArrowOutUpRight; + exports.ArrowUpRightFromSquare = SquareArrowOutUpRight; + exports.ArrowUpRightSquare = SquareArrowUpRight; + exports.ArrowUpSquare = SquareArrowUp; + exports.ArrowUpToLine = ArrowUpToLine; + exports.ArrowUpWideNarrow = ArrowUpWideNarrow; + exports.ArrowUpZA = ArrowUpZA; + exports.ArrowUpZa = ArrowUpZA; + exports.ArrowsUpFromLine = ArrowsUpFromLine; + exports.Asterisk = Asterisk; + exports.AsteriskSquare = SquareAsterisk; + exports.AtSign = AtSign; + exports.Atom = Atom; + exports.AudioLines = AudioLines; + exports.AudioWaveform = AudioWaveform; + exports.Award = Award; + exports.Axe = Axe; + exports.Axis3D = Axis3d; + exports.Axis3d = Axis3d; + exports.Baby = Baby; + exports.Backpack = Backpack; + exports.Badge = Badge; + exports.BadgeAlert = BadgeAlert; + exports.BadgeCent = BadgeCent; + exports.BadgeCheck = BadgeCheck; + exports.BadgeDollarSign = BadgeDollarSign; + exports.BadgeEuro = BadgeEuro; + exports.BadgeHelp = BadgeHelp; + exports.BadgeIndianRupee = BadgeIndianRupee; + exports.BadgeInfo = BadgeInfo; + exports.BadgeJapaneseYen = BadgeJapaneseYen; + exports.BadgeMinus = BadgeMinus; + exports.BadgePercent = BadgePercent; + exports.BadgePlus = BadgePlus; + exports.BadgePoundSterling = BadgePoundSterling; + exports.BadgeRussianRuble = BadgeRussianRuble; + exports.BadgeSwissFranc = BadgeSwissFranc; + exports.BadgeX = BadgeX; + exports.BaggageClaim = BaggageClaim; + exports.Ban = Ban; + exports.Banana = Banana; + exports.Bandage = Bandage; + exports.Banknote = Banknote; + exports.BarChart = ChartNoAxesColumnIncreasing; + exports.BarChart2 = ChartNoAxesColumn; + exports.BarChart3 = ChartColumn; + exports.BarChart4 = ChartColumnIncreasing; + exports.BarChartBig = ChartColumnBig; + exports.BarChartHorizontal = ChartBar; + exports.BarChartHorizontalBig = ChartBarBig; + exports.Barcode = Barcode; + exports.Baseline = Baseline; + exports.Bath = Bath; + exports.Battery = Battery; + exports.BatteryCharging = BatteryCharging; + exports.BatteryFull = BatteryFull; + exports.BatteryLow = BatteryLow; + exports.BatteryMedium = BatteryMedium; + exports.BatteryPlus = BatteryPlus; + exports.BatteryWarning = BatteryWarning; + exports.Beaker = Beaker; + exports.Bean = Bean; + exports.BeanOff = BeanOff; + exports.Bed = Bed; + exports.BedDouble = BedDouble; + exports.BedSingle = BedSingle; + exports.Beef = Beef; + exports.Beer = Beer; + exports.BeerOff = BeerOff; + exports.Bell = Bell; + exports.BellDot = BellDot; + exports.BellElectric = BellElectric; + exports.BellMinus = BellMinus; + exports.BellOff = BellOff; + exports.BellPlus = BellPlus; + exports.BellRing = BellRing; + exports.BetweenHorizonalEnd = BetweenHorizontalEnd; + exports.BetweenHorizonalStart = BetweenHorizontalStart; + exports.BetweenHorizontalEnd = BetweenHorizontalEnd; + exports.BetweenHorizontalStart = BetweenHorizontalStart; + exports.BetweenVerticalEnd = BetweenVerticalEnd; + exports.BetweenVerticalStart = BetweenVerticalStart; + exports.BicepsFlexed = BicepsFlexed; + exports.Bike = Bike; + exports.Binary = Binary; + exports.Binoculars = Binoculars; + exports.Biohazard = Biohazard; + exports.Bird = Bird; + exports.Bitcoin = Bitcoin; + exports.Blend = Blend; + exports.Blinds = Blinds; + exports.Blocks = Blocks; + exports.Bluetooth = Bluetooth; + exports.BluetoothConnected = BluetoothConnected; + exports.BluetoothOff = BluetoothOff; + exports.BluetoothSearching = BluetoothSearching; + exports.Bold = Bold; + exports.Bolt = Bolt; + exports.Bomb = Bomb; + exports.Bone = Bone; + exports.Book = Book; + exports.BookA = BookA; + exports.BookAudio = BookAudio; + exports.BookCheck = BookCheck; + exports.BookCopy = BookCopy; + exports.BookDashed = BookDashed; + exports.BookDown = BookDown; + exports.BookHeadphones = BookHeadphones; + exports.BookHeart = BookHeart; + exports.BookImage = BookImage; + exports.BookKey = BookKey; + exports.BookLock = BookLock; + exports.BookMarked = BookMarked; + exports.BookMinus = BookMinus; + exports.BookOpen = BookOpen; + exports.BookOpenCheck = BookOpenCheck; + exports.BookOpenText = BookOpenText; + exports.BookPlus = BookPlus; + exports.BookTemplate = BookDashed; + exports.BookText = BookText; + exports.BookType = BookType; + exports.BookUp = BookUp; + exports.BookUp2 = BookUp2; + exports.BookUser = BookUser; + exports.BookX = BookX; + exports.Bookmark = Bookmark; + exports.BookmarkCheck = BookmarkCheck; + exports.BookmarkMinus = BookmarkMinus; + exports.BookmarkPlus = BookmarkPlus; + exports.BookmarkX = BookmarkX; + exports.BoomBox = BoomBox; + exports.Bot = Bot; + exports.BotMessageSquare = BotMessageSquare; + exports.BotOff = BotOff; + exports.Box = Box; + exports.BoxSelect = SquareDashed; + exports.Boxes = Boxes; + exports.Braces = Braces; + exports.Brackets = Brackets; + exports.Brain = Brain; + exports.BrainCircuit = BrainCircuit; + exports.BrainCog = BrainCog; + exports.BrickWall = BrickWall; + exports.Briefcase = Briefcase; + exports.BriefcaseBusiness = BriefcaseBusiness; + exports.BriefcaseConveyorBelt = BriefcaseConveyorBelt; + exports.BriefcaseMedical = BriefcaseMedical; + exports.BringToFront = BringToFront; + exports.Brush = Brush; + exports.Bug = Bug; + exports.BugOff = BugOff; + exports.BugPlay = BugPlay; + exports.Building = Building; + exports.Building2 = Building2; + exports.Bus = Bus; + exports.BusFront = BusFront; + exports.Cable = Cable; + exports.CableCar = CableCar; + exports.Cake = Cake; + exports.CakeSlice = CakeSlice; + exports.Calculator = Calculator; + exports.Calendar = Calendar; + exports.Calendar1 = Calendar1; + exports.CalendarArrowDown = CalendarArrowDown; + exports.CalendarArrowUp = CalendarArrowUp; + exports.CalendarCheck = CalendarCheck; + exports.CalendarCheck2 = CalendarCheck2; + exports.CalendarClock = CalendarClock; + exports.CalendarCog = CalendarCog; + exports.CalendarDays = CalendarDays; + exports.CalendarFold = CalendarFold; + exports.CalendarHeart = CalendarHeart; + exports.CalendarMinus = CalendarMinus; + exports.CalendarMinus2 = CalendarMinus2; + exports.CalendarOff = CalendarOff; + exports.CalendarPlus = CalendarPlus; + exports.CalendarPlus2 = CalendarPlus2; + exports.CalendarRange = CalendarRange; + exports.CalendarSearch = CalendarSearch; + exports.CalendarSync = CalendarSync; + exports.CalendarX = CalendarX; + exports.CalendarX2 = CalendarX2; + exports.Camera = Camera; + exports.CameraOff = CameraOff; + exports.CandlestickChart = ChartCandlestick; + exports.Candy = Candy; + exports.CandyCane = CandyCane; + exports.CandyOff = CandyOff; + exports.Cannabis = Cannabis; + exports.Captions = Captions; + exports.CaptionsOff = CaptionsOff; + exports.Car = Car; + exports.CarFront = CarFront; + exports.CarTaxiFront = CarTaxiFront; + exports.Caravan = Caravan; + exports.Carrot = Carrot; + exports.CaseLower = CaseLower; + exports.CaseSensitive = CaseSensitive; + exports.CaseUpper = CaseUpper; + exports.CassetteTape = CassetteTape; + exports.Cast = Cast; + exports.Castle = Castle; + exports.Cat = Cat; + exports.Cctv = Cctv; + exports.ChartArea = ChartArea; + exports.ChartBar = ChartBar; + exports.ChartBarBig = ChartBarBig; + exports.ChartBarDecreasing = ChartBarDecreasing; + exports.ChartBarIncreasing = ChartBarIncreasing; + exports.ChartBarStacked = ChartBarStacked; + exports.ChartCandlestick = ChartCandlestick; + exports.ChartColumn = ChartColumn; + exports.ChartColumnBig = ChartColumnBig; + exports.ChartColumnDecreasing = ChartColumnDecreasing; + exports.ChartColumnIncreasing = ChartColumnIncreasing; + exports.ChartColumnStacked = ChartColumnStacked; + exports.ChartGantt = ChartGantt; + exports.ChartLine = ChartLine; + exports.ChartNetwork = ChartNetwork; + exports.ChartNoAxesColumn = ChartNoAxesColumn; + exports.ChartNoAxesColumnDecreasing = ChartNoAxesColumnDecreasing; + exports.ChartNoAxesColumnIncreasing = ChartNoAxesColumnIncreasing; + exports.ChartNoAxesCombined = ChartNoAxesCombined; + exports.ChartNoAxesGantt = ChartNoAxesGantt; + exports.ChartPie = ChartPie; + exports.ChartScatter = ChartScatter; + exports.ChartSpline = ChartSpline; + exports.Check = Check; + exports.CheckCheck = CheckCheck; + exports.CheckCircle = CircleCheckBig; + exports.CheckCircle2 = CircleCheck; + exports.CheckSquare = SquareCheckBig; + exports.CheckSquare2 = SquareCheck; + exports.ChefHat = ChefHat; + exports.Cherry = Cherry; + exports.ChevronDown = ChevronDown; + exports.ChevronDownCircle = CircleChevronDown; + exports.ChevronDownSquare = SquareChevronDown; + exports.ChevronFirst = ChevronFirst; + exports.ChevronLast = ChevronLast; + exports.ChevronLeft = ChevronLeft; + exports.ChevronLeftCircle = CircleChevronLeft; + exports.ChevronLeftSquare = SquareChevronLeft; + exports.ChevronRight = ChevronRight; + exports.ChevronRightCircle = CircleChevronRight; + exports.ChevronRightSquare = SquareChevronRight; + exports.ChevronUp = ChevronUp; + exports.ChevronUpCircle = CircleChevronUp; + exports.ChevronUpSquare = SquareChevronUp; + exports.ChevronsDown = ChevronsDown; + exports.ChevronsDownUp = ChevronsDownUp; + exports.ChevronsLeft = ChevronsLeft; + exports.ChevronsLeftRight = ChevronsLeftRight; + exports.ChevronsLeftRightEllipsis = ChevronsLeftRightEllipsis; + exports.ChevronsRight = ChevronsRight; + exports.ChevronsRightLeft = ChevronsRightLeft; + exports.ChevronsUp = ChevronsUp; + exports.ChevronsUpDown = ChevronsUpDown; + exports.Chrome = Chrome; + exports.Church = Church; + exports.Cigarette = Cigarette; + exports.CigaretteOff = CigaretteOff; + exports.Circle = Circle; + exports.CircleAlert = CircleAlert; + exports.CircleArrowDown = CircleArrowDown; + exports.CircleArrowLeft = CircleArrowLeft; + exports.CircleArrowOutDownLeft = CircleArrowOutDownLeft; + exports.CircleArrowOutDownRight = CircleArrowOutDownRight; + exports.CircleArrowOutUpLeft = CircleArrowOutUpLeft; + exports.CircleArrowOutUpRight = CircleArrowOutUpRight; + exports.CircleArrowRight = CircleArrowRight; + exports.CircleArrowUp = CircleArrowUp; + exports.CircleCheck = CircleCheck; + exports.CircleCheckBig = CircleCheckBig; + exports.CircleChevronDown = CircleChevronDown; + exports.CircleChevronLeft = CircleChevronLeft; + exports.CircleChevronRight = CircleChevronRight; + exports.CircleChevronUp = CircleChevronUp; + exports.CircleDashed = CircleDashed; + exports.CircleDivide = CircleDivide; + exports.CircleDollarSign = CircleDollarSign; + exports.CircleDot = CircleDot; + exports.CircleDotDashed = CircleDotDashed; + exports.CircleEllipsis = CircleEllipsis; + exports.CircleEqual = CircleEqual; + exports.CircleFadingArrowUp = CircleFadingArrowUp; + exports.CircleFadingPlus = CircleFadingPlus; + exports.CircleGauge = CircleGauge; + exports.CircleHelp = CircleHelp; + exports.CircleMinus = CircleMinus; + exports.CircleOff = CircleOff; + exports.CircleParking = CircleParking; + exports.CircleParkingOff = CircleParkingOff; + exports.CirclePause = CirclePause; + exports.CirclePercent = CirclePercent; + exports.CirclePlay = CirclePlay; + exports.CirclePlus = CirclePlus; + exports.CirclePower = CirclePower; + exports.CircleSlash = CircleSlash; + exports.CircleSlash2 = CircleSlash2; + exports.CircleSlashed = CircleSlash2; + exports.CircleSmall = CircleSmall; + exports.CircleStop = CircleStop; + exports.CircleUser = CircleUser; + exports.CircleUserRound = CircleUserRound; + exports.CircleX = CircleX; + exports.CircuitBoard = CircuitBoard; + exports.Citrus = Citrus; + exports.Clapperboard = Clapperboard; + exports.Clipboard = Clipboard; + exports.ClipboardCheck = ClipboardCheck; + exports.ClipboardCopy = ClipboardCopy; + exports.ClipboardEdit = ClipboardPen; + exports.ClipboardList = ClipboardList; + exports.ClipboardMinus = ClipboardMinus; + exports.ClipboardPaste = ClipboardPaste; + exports.ClipboardPen = ClipboardPen; + exports.ClipboardPenLine = ClipboardPenLine; + exports.ClipboardPlus = ClipboardPlus; + exports.ClipboardSignature = ClipboardPenLine; + exports.ClipboardType = ClipboardType; + exports.ClipboardX = ClipboardX; + exports.Clock = Clock; + exports.Clock1 = Clock1; + exports.Clock10 = Clock10; + exports.Clock11 = Clock11; + exports.Clock12 = Clock12; + exports.Clock2 = Clock2; + exports.Clock3 = Clock3; + exports.Clock4 = Clock4; + exports.Clock5 = Clock5; + exports.Clock6 = Clock6; + exports.Clock7 = Clock7; + exports.Clock8 = Clock8; + exports.Clock9 = Clock9; + exports.ClockAlert = ClockAlert; + exports.ClockArrowDown = ClockArrowDown; + exports.ClockArrowUp = ClockArrowUp; + exports.Cloud = Cloud; + exports.CloudAlert = CloudAlert; + exports.CloudCog = CloudCog; + exports.CloudDownload = CloudDownload; + exports.CloudDrizzle = CloudDrizzle; + exports.CloudFog = CloudFog; + exports.CloudHail = CloudHail; + exports.CloudLightning = CloudLightning; + exports.CloudMoon = CloudMoon; + exports.CloudMoonRain = CloudMoonRain; + exports.CloudOff = CloudOff; + exports.CloudRain = CloudRain; + exports.CloudRainWind = CloudRainWind; + exports.CloudSnow = CloudSnow; + exports.CloudSun = CloudSun; + exports.CloudSunRain = CloudSunRain; + exports.CloudUpload = CloudUpload; + exports.Cloudy = Cloudy; + exports.Clover = Clover; + exports.Club = Club; + exports.Code = Code; + exports.Code2 = CodeXml; + exports.CodeSquare = SquareCode; + exports.CodeXml = CodeXml; + exports.Codepen = Codepen; + exports.Codesandbox = Codesandbox; + exports.Coffee = Coffee; + exports.Cog = Cog; + exports.Coins = Coins; + exports.Columns = Columns2; + exports.Columns2 = Columns2; + exports.Columns3 = Columns3; + exports.Columns4 = Columns4; + exports.Combine = Combine; + exports.Command = Command; + exports.Compass = Compass; + exports.Component = Component; + exports.Computer = Computer; + exports.ConciergeBell = ConciergeBell; + exports.Cone = Cone; + exports.Construction = Construction; + exports.Contact = Contact; + exports.Contact2 = ContactRound; + exports.ContactRound = ContactRound; + exports.Container = Container; + exports.Contrast = Contrast; + exports.Cookie = Cookie; + exports.CookingPot = CookingPot; + exports.Copy = Copy; + exports.CopyCheck = CopyCheck; + exports.CopyMinus = CopyMinus; + exports.CopyPlus = CopyPlus; + exports.CopySlash = CopySlash; + exports.CopyX = CopyX; + exports.Copyleft = Copyleft; + exports.Copyright = Copyright; + exports.CornerDownLeft = CornerDownLeft; + exports.CornerDownRight = CornerDownRight; + exports.CornerLeftDown = CornerLeftDown; + exports.CornerLeftUp = CornerLeftUp; + exports.CornerRightDown = CornerRightDown; + exports.CornerRightUp = CornerRightUp; + exports.CornerUpLeft = CornerUpLeft; + exports.CornerUpRight = CornerUpRight; + exports.Cpu = Cpu; + exports.CreativeCommons = CreativeCommons; + exports.CreditCard = CreditCard; + exports.Croissant = Croissant; + exports.Crop = Crop; + exports.Cross = Cross; + exports.Crosshair = Crosshair; + exports.Crown = Crown; + exports.Cuboid = Cuboid; + exports.CupSoda = CupSoda; + exports.CurlyBraces = Braces; + exports.Currency = Currency; + exports.Cylinder = Cylinder; + exports.Dam = Dam; + exports.Database = Database; + exports.DatabaseBackup = DatabaseBackup; + exports.DatabaseZap = DatabaseZap; + exports.Delete = Delete; + exports.Dessert = Dessert; + exports.Diameter = Diameter; + exports.Diamond = Diamond; + exports.DiamondMinus = DiamondMinus; + exports.DiamondPercent = DiamondPercent; + exports.DiamondPlus = DiamondPlus; + exports.Dice1 = Dice1; + exports.Dice2 = Dice2; + exports.Dice3 = Dice3; + exports.Dice4 = Dice4; + exports.Dice5 = Dice5; + exports.Dice6 = Dice6; + exports.Dices = Dices; + exports.Diff = Diff; + exports.Disc = Disc; + exports.Disc2 = Disc2; + exports.Disc3 = Disc3; + exports.DiscAlbum = DiscAlbum; + exports.Divide = Divide; + exports.DivideCircle = CircleDivide; + exports.DivideSquare = SquareDivide; + exports.Dna = Dna; + exports.DnaOff = DnaOff; + exports.Dock = Dock; + exports.Dog = Dog; + exports.DollarSign = DollarSign; + exports.Donut = Donut; + exports.DoorClosed = DoorClosed; + exports.DoorOpen = DoorOpen; + exports.Dot = Dot; + exports.DotSquare = SquareDot; + exports.Download = Download; + exports.DownloadCloud = CloudDownload; + exports.DraftingCompass = DraftingCompass; + exports.Drama = Drama; + exports.Dribbble = Dribbble; + exports.Drill = Drill; + exports.Droplet = Droplet; + exports.DropletOff = DropletOff; + exports.Droplets = Droplets; + exports.Drum = Drum; + exports.Drumstick = Drumstick; + exports.Dumbbell = Dumbbell; + exports.Ear = Ear; + exports.EarOff = EarOff; + exports.Earth = Earth; + exports.EarthLock = EarthLock; + exports.Eclipse = Eclipse; + exports.Edit = SquarePen; + exports.Edit2 = Pen; + exports.Edit3 = PenLine; + exports.Egg = Egg; + exports.EggFried = EggFried; + exports.EggOff = EggOff; + exports.Ellipsis = Ellipsis; + exports.EllipsisVertical = EllipsisVertical; + exports.Equal = Equal; + exports.EqualApproximately = EqualApproximately; + exports.EqualNot = EqualNot; + exports.EqualSquare = SquareEqual; + exports.Eraser = Eraser; + exports.EthernetPort = EthernetPort; + exports.Euro = Euro; + exports.Expand = Expand; + exports.ExternalLink = ExternalLink; + exports.Eye = Eye; + exports.EyeClosed = EyeClosed; + exports.EyeOff = EyeOff; + exports.Facebook = Facebook; + exports.Factory = Factory; + exports.Fan = Fan; + exports.FastForward = FastForward; + exports.Feather = Feather; + exports.Fence = Fence; + exports.FerrisWheel = FerrisWheel; + exports.Figma = Figma; + exports.File = File; + exports.FileArchive = FileArchive; + exports.FileAudio = FileAudio; + exports.FileAudio2 = FileAudio2; + exports.FileAxis3D = FileAxis3d; + exports.FileAxis3d = FileAxis3d; + exports.FileBadge = FileBadge; + exports.FileBadge2 = FileBadge2; + exports.FileBarChart = FileChartColumnIncreasing; + exports.FileBarChart2 = FileChartColumn; + exports.FileBox = FileBox; + exports.FileChartColumn = FileChartColumn; + exports.FileChartColumnIncreasing = FileChartColumnIncreasing; + exports.FileChartLine = FileChartLine; + exports.FileChartPie = FileChartPie; + exports.FileCheck = FileCheck; + exports.FileCheck2 = FileCheck2; + exports.FileClock = FileClock; + exports.FileCode = FileCode; + exports.FileCode2 = FileCode2; + exports.FileCog = FileCog; + exports.FileCog2 = FileCog; + exports.FileDiff = FileDiff; + exports.FileDigit = FileDigit; + exports.FileDown = FileDown; + exports.FileEdit = FilePen; + exports.FileHeart = FileHeart; + exports.FileImage = FileImage; + exports.FileInput = FileInput; + exports.FileJson = FileJson; + exports.FileJson2 = FileJson2; + exports.FileKey = FileKey; + exports.FileKey2 = FileKey2; + exports.FileLineChart = FileChartLine; + exports.FileLock = FileLock; + exports.FileLock2 = FileLock2; + exports.FileMinus = FileMinus; + exports.FileMinus2 = FileMinus2; + exports.FileMusic = FileMusic; + exports.FileOutput = FileOutput; + exports.FilePen = FilePen; + exports.FilePenLine = FilePenLine; + exports.FilePieChart = FileChartPie; + exports.FilePlus = FilePlus; + exports.FilePlus2 = FilePlus2; + exports.FileQuestion = FileQuestion; + exports.FileScan = FileScan; + exports.FileSearch = FileSearch; + exports.FileSearch2 = FileSearch2; + exports.FileSignature = FilePenLine; + exports.FileSliders = FileSliders; + exports.FileSpreadsheet = FileSpreadsheet; + exports.FileStack = FileStack; + exports.FileSymlink = FileSymlink; + exports.FileTerminal = FileTerminal; + exports.FileText = FileText; + exports.FileType = FileType; + exports.FileType2 = FileType2; + exports.FileUp = FileUp; + exports.FileUser = FileUser; + exports.FileVideo = FileVideo; + exports.FileVideo2 = FileVideo2; + exports.FileVolume = FileVolume; + exports.FileVolume2 = FileVolume2; + exports.FileWarning = FileWarning; + exports.FileX = FileX; + exports.FileX2 = FileX2; + exports.Files = Files; + exports.Film = Film; + exports.Filter = Filter; + exports.FilterX = FilterX; + exports.Fingerprint = Fingerprint; + exports.FireExtinguisher = FireExtinguisher; + exports.Fish = Fish; + exports.FishOff = FishOff; + exports.FishSymbol = FishSymbol; + exports.Flag = Flag; + exports.FlagOff = FlagOff; + exports.FlagTriangleLeft = FlagTriangleLeft; + exports.FlagTriangleRight = FlagTriangleRight; + exports.Flame = Flame; + exports.FlameKindling = FlameKindling; + exports.Flashlight = Flashlight; + exports.FlashlightOff = FlashlightOff; + exports.FlaskConical = FlaskConical; + exports.FlaskConicalOff = FlaskConicalOff; + exports.FlaskRound = FlaskRound; + exports.FlipHorizontal = FlipHorizontal; + exports.FlipHorizontal2 = FlipHorizontal2; + exports.FlipVertical = FlipVertical; + exports.FlipVertical2 = FlipVertical2; + exports.Flower = Flower; + exports.Flower2 = Flower2; + exports.Focus = Focus; + exports.FoldHorizontal = FoldHorizontal; + exports.FoldVertical = FoldVertical; + exports.Folder = Folder; + exports.FolderArchive = FolderArchive; + exports.FolderCheck = FolderCheck; + exports.FolderClock = FolderClock; + exports.FolderClosed = FolderClosed; + exports.FolderCode = FolderCode; + exports.FolderCog = FolderCog; + exports.FolderCog2 = FolderCog; + exports.FolderDot = FolderDot; + exports.FolderDown = FolderDown; + exports.FolderEdit = FolderPen; + exports.FolderGit = FolderGit; + exports.FolderGit2 = FolderGit2; + exports.FolderHeart = FolderHeart; + exports.FolderInput = FolderInput; + exports.FolderKanban = FolderKanban; + exports.FolderKey = FolderKey; + exports.FolderLock = FolderLock; + exports.FolderMinus = FolderMinus; + exports.FolderOpen = FolderOpen; + exports.FolderOpenDot = FolderOpenDot; + exports.FolderOutput = FolderOutput; + exports.FolderPen = FolderPen; + exports.FolderPlus = FolderPlus; + exports.FolderRoot = FolderRoot; + exports.FolderSearch = FolderSearch; + exports.FolderSearch2 = FolderSearch2; + exports.FolderSymlink = FolderSymlink; + exports.FolderSync = FolderSync; + exports.FolderTree = FolderTree; + exports.FolderUp = FolderUp; + exports.FolderX = FolderX; + exports.Folders = Folders; + exports.Footprints = Footprints; + exports.ForkKnife = Utensils; + exports.ForkKnifeCrossed = UtensilsCrossed; + exports.Forklift = Forklift; + exports.FormInput = RectangleEllipsis; + exports.Forward = Forward; + exports.Frame = Frame; + exports.Framer = Framer; + exports.Frown = Frown; + exports.Fuel = Fuel; + exports.Fullscreen = Fullscreen; + exports.FunctionSquare = SquareFunction; + exports.GalleryHorizontal = GalleryHorizontal; + exports.GalleryHorizontalEnd = GalleryHorizontalEnd; + exports.GalleryThumbnails = GalleryThumbnails; + exports.GalleryVertical = GalleryVertical; + exports.GalleryVerticalEnd = GalleryVerticalEnd; + exports.Gamepad = Gamepad; + exports.Gamepad2 = Gamepad2; + exports.GanttChart = ChartNoAxesGantt; + exports.GanttChartSquare = SquareChartGantt; + exports.Gauge = Gauge; + exports.GaugeCircle = CircleGauge; + exports.Gavel = Gavel; + exports.Gem = Gem; + exports.Ghost = Ghost; + exports.Gift = Gift; + exports.GitBranch = GitBranch; + exports.GitBranchPlus = GitBranchPlus; + exports.GitCommit = GitCommitHorizontal; + exports.GitCommitHorizontal = GitCommitHorizontal; + exports.GitCommitVertical = GitCommitVertical; + exports.GitCompare = GitCompare; + exports.GitCompareArrows = GitCompareArrows; + exports.GitFork = GitFork; + exports.GitGraph = GitGraph; + exports.GitMerge = GitMerge; + exports.GitPullRequest = GitPullRequest; + exports.GitPullRequestArrow = GitPullRequestArrow; + exports.GitPullRequestClosed = GitPullRequestClosed; + exports.GitPullRequestCreate = GitPullRequestCreate; + exports.GitPullRequestCreateArrow = GitPullRequestCreateArrow; + exports.GitPullRequestDraft = GitPullRequestDraft; + exports.Github = Github; + exports.Gitlab = Gitlab; + exports.GlassWater = GlassWater; + exports.Glasses = Glasses; + exports.Globe = Globe; + exports.Globe2 = Earth; + exports.GlobeLock = GlobeLock; + exports.Goal = Goal; + exports.Grab = Grab; + exports.GraduationCap = GraduationCap; + exports.Grape = Grape; + exports.Grid = Grid3x3; + exports.Grid2X2 = Grid2x2; + exports.Grid2X2Check = Grid2x2Check; + exports.Grid2X2Plus = Grid2x2Plus; + exports.Grid2X2X = Grid2x2X; + exports.Grid2x2 = Grid2x2; + exports.Grid2x2Check = Grid2x2Check; + exports.Grid2x2Plus = Grid2x2Plus; + exports.Grid2x2X = Grid2x2X; + exports.Grid3X3 = Grid3x3; + exports.Grid3x3 = Grid3x3; + exports.Grip = Grip; + exports.GripHorizontal = GripHorizontal; + exports.GripVertical = GripVertical; + exports.Group = Group; + exports.Guitar = Guitar; + exports.Ham = Ham; + exports.Hammer = Hammer; + exports.Hand = Hand; + exports.HandCoins = HandCoins; + exports.HandHeart = HandHeart; + exports.HandHelping = HandHelping; + exports.HandMetal = HandMetal; + exports.HandPlatter = HandPlatter; + exports.Handshake = Handshake; + exports.HardDrive = HardDrive; + exports.HardDriveDownload = HardDriveDownload; + exports.HardDriveUpload = HardDriveUpload; + exports.HardHat = HardHat; + exports.Hash = Hash; + exports.Haze = Haze; + exports.HdmiPort = HdmiPort; + exports.Heading = Heading; + exports.Heading1 = Heading1; + exports.Heading2 = Heading2; + exports.Heading3 = Heading3; + exports.Heading4 = Heading4; + exports.Heading5 = Heading5; + exports.Heading6 = Heading6; + exports.HeadphoneOff = HeadphoneOff; + exports.Headphones = Headphones; + exports.Headset = Headset; + exports.Heart = Heart; + exports.HeartCrack = HeartCrack; + exports.HeartHandshake = HeartHandshake; + exports.HeartOff = HeartOff; + exports.HeartPulse = HeartPulse; + exports.Heater = Heater; + exports.HelpCircle = CircleHelp; + exports.HelpingHand = HandHelping; + exports.Hexagon = Hexagon; + exports.Highlighter = Highlighter; + exports.History = History; + exports.Home = House; + exports.Hop = Hop; + exports.HopOff = HopOff; + exports.Hospital = Hospital; + exports.Hotel = Hotel; + exports.Hourglass = Hourglass; + exports.House = House; + exports.HousePlug = HousePlug; + exports.HousePlus = HousePlus; + exports.HouseWifi = HouseWifi; + exports.IceCream = IceCreamCone; + exports.IceCream2 = IceCreamBowl; + exports.IceCreamBowl = IceCreamBowl; + exports.IceCreamCone = IceCreamCone; + exports.IdCard = IdCard; + exports.Image = Image; + exports.ImageDown = ImageDown; + exports.ImageMinus = ImageMinus; + exports.ImageOff = ImageOff; + exports.ImagePlay = ImagePlay; + exports.ImagePlus = ImagePlus; + exports.ImageUp = ImageUp; + exports.ImageUpscale = ImageUpscale; + exports.Images = Images; + exports.Import = Import; + exports.Inbox = Inbox; + exports.Indent = IndentIncrease; + exports.IndentDecrease = IndentDecrease; + exports.IndentIncrease = IndentIncrease; + exports.IndianRupee = IndianRupee; + exports.Infinity = Infinity; + exports.Info = Info; + exports.Inspect = SquareMousePointer; + exports.InspectionPanel = InspectionPanel; + exports.Instagram = Instagram; + exports.Italic = Italic; + exports.IterationCcw = IterationCcw; + exports.IterationCw = IterationCw; + exports.JapaneseYen = JapaneseYen; + exports.Joystick = Joystick; + exports.Kanban = Kanban; + exports.KanbanSquare = SquareKanban; + exports.KanbanSquareDashed = SquareDashedKanban; + exports.Key = Key; + exports.KeyRound = KeyRound; + exports.KeySquare = KeySquare; + exports.Keyboard = Keyboard; + exports.KeyboardMusic = KeyboardMusic; + exports.KeyboardOff = KeyboardOff; + exports.Lamp = Lamp; + exports.LampCeiling = LampCeiling; + exports.LampDesk = LampDesk; + exports.LampFloor = LampFloor; + exports.LampWallDown = LampWallDown; + exports.LampWallUp = LampWallUp; + exports.LandPlot = LandPlot; + exports.Landmark = Landmark; + exports.Languages = Languages; + exports.Laptop = Laptop; + exports.Laptop2 = LaptopMinimal; + exports.LaptopMinimal = LaptopMinimal; + exports.LaptopMinimalCheck = LaptopMinimalCheck; + exports.Lasso = Lasso; + exports.LassoSelect = LassoSelect; + exports.Laugh = Laugh; + exports.Layers = Layers; + exports.Layers2 = Layers2; + exports.Layers3 = Layers; + exports.Layout = PanelsTopLeft; + exports.LayoutDashboard = LayoutDashboard; + exports.LayoutGrid = LayoutGrid; + exports.LayoutList = LayoutList; + exports.LayoutPanelLeft = LayoutPanelLeft; + exports.LayoutPanelTop = LayoutPanelTop; + exports.LayoutTemplate = LayoutTemplate; + exports.Leaf = Leaf; + exports.LeafyGreen = LeafyGreen; + exports.Lectern = Lectern; + exports.LetterText = LetterText; + exports.Library = Library; + exports.LibraryBig = LibraryBig; + exports.LibrarySquare = SquareLibrary; + exports.LifeBuoy = LifeBuoy; + exports.Ligature = Ligature; + exports.Lightbulb = Lightbulb; + exports.LightbulbOff = LightbulbOff; + exports.LineChart = ChartLine; + exports.Link = Link; + exports.Link2 = Link2; + exports.Link2Off = Link2Off; + exports.Linkedin = Linkedin; + exports.List = List; + exports.ListCheck = ListCheck; + exports.ListChecks = ListChecks; + exports.ListCollapse = ListCollapse; + exports.ListEnd = ListEnd; + exports.ListFilter = ListFilter; + exports.ListFilterPlus = ListFilterPlus; + exports.ListMinus = ListMinus; + exports.ListMusic = ListMusic; + exports.ListOrdered = ListOrdered; + exports.ListPlus = ListPlus; + exports.ListRestart = ListRestart; + exports.ListStart = ListStart; + exports.ListTodo = ListTodo; + exports.ListTree = ListTree; + exports.ListVideo = ListVideo; + exports.ListX = ListX; + exports.Loader = Loader; + exports.Loader2 = LoaderCircle; + exports.LoaderCircle = LoaderCircle; + exports.LoaderPinwheel = LoaderPinwheel; + exports.Locate = Locate; + exports.LocateFixed = LocateFixed; + exports.LocateOff = LocateOff; + exports.Lock = Lock; + exports.LockKeyhole = LockKeyhole; + exports.LockKeyholeOpen = LockKeyholeOpen; + exports.LockOpen = LockOpen; + exports.LogIn = LogIn; + exports.LogOut = LogOut; + exports.Logs = Logs; + exports.Lollipop = Lollipop; + exports.Luggage = Luggage; + exports.MSquare = SquareM; + exports.Magnet = Magnet; + exports.Mail = Mail; + exports.MailCheck = MailCheck; + exports.MailMinus = MailMinus; + exports.MailOpen = MailOpen; + exports.MailPlus = MailPlus; + exports.MailQuestion = MailQuestion; + exports.MailSearch = MailSearch; + exports.MailWarning = MailWarning; + exports.MailX = MailX; + exports.Mailbox = Mailbox; + exports.Mails = Mails; + exports.Map = Map; + exports.MapPin = MapPin; + exports.MapPinCheck = MapPinCheck; + exports.MapPinCheckInside = MapPinCheckInside; + exports.MapPinHouse = MapPinHouse; + exports.MapPinMinus = MapPinMinus; + exports.MapPinMinusInside = MapPinMinusInside; + exports.MapPinOff = MapPinOff; + exports.MapPinPlus = MapPinPlus; + exports.MapPinPlusInside = MapPinPlusInside; + exports.MapPinX = MapPinX; + exports.MapPinXInside = MapPinXInside; + exports.MapPinned = MapPinned; + exports.MapPlus = MapPlus; + exports.Mars = Mars; + exports.MarsStroke = MarsStroke; + exports.Martini = Martini; + exports.Maximize = Maximize; + exports.Maximize2 = Maximize2; + exports.Medal = Medal; + exports.Megaphone = Megaphone; + exports.MegaphoneOff = MegaphoneOff; + exports.Meh = Meh; + exports.MemoryStick = MemoryStick; + exports.Menu = Menu; + exports.MenuSquare = SquareMenu; + exports.Merge = Merge; + exports.MessageCircle = MessageCircle; + exports.MessageCircleCode = MessageCircleCode; + exports.MessageCircleDashed = MessageCircleDashed; + exports.MessageCircleHeart = MessageCircleHeart; + exports.MessageCircleMore = MessageCircleMore; + exports.MessageCircleOff = MessageCircleOff; + exports.MessageCirclePlus = MessageCirclePlus; + exports.MessageCircleQuestion = MessageCircleQuestion; + exports.MessageCircleReply = MessageCircleReply; + exports.MessageCircleWarning = MessageCircleWarning; + exports.MessageCircleX = MessageCircleX; + exports.MessageSquare = MessageSquare; + exports.MessageSquareCode = MessageSquareCode; + exports.MessageSquareDashed = MessageSquareDashed; + exports.MessageSquareDiff = MessageSquareDiff; + exports.MessageSquareDot = MessageSquareDot; + exports.MessageSquareHeart = MessageSquareHeart; + exports.MessageSquareLock = MessageSquareLock; + exports.MessageSquareMore = MessageSquareMore; + exports.MessageSquareOff = MessageSquareOff; + exports.MessageSquarePlus = MessageSquarePlus; + exports.MessageSquareQuote = MessageSquareQuote; + exports.MessageSquareReply = MessageSquareReply; + exports.MessageSquareShare = MessageSquareShare; + exports.MessageSquareText = MessageSquareText; + exports.MessageSquareWarning = MessageSquareWarning; + exports.MessageSquareX = MessageSquareX; + exports.MessagesSquare = MessagesSquare; + exports.Mic = Mic; + exports.Mic2 = MicVocal; + exports.MicOff = MicOff; + exports.MicVocal = MicVocal; + exports.Microchip = Microchip; + exports.Microscope = Microscope; + exports.Microwave = Microwave; + exports.Milestone = Milestone; + exports.Milk = Milk; + exports.MilkOff = MilkOff; + exports.Minimize = Minimize; + exports.Minimize2 = Minimize2; + exports.Minus = Minus; + exports.MinusCircle = CircleMinus; + exports.MinusSquare = SquareMinus; + exports.Monitor = Monitor; + exports.MonitorCheck = MonitorCheck; + exports.MonitorCog = MonitorCog; + exports.MonitorDot = MonitorDot; + exports.MonitorDown = MonitorDown; + exports.MonitorOff = MonitorOff; + exports.MonitorPause = MonitorPause; + exports.MonitorPlay = MonitorPlay; + exports.MonitorSmartphone = MonitorSmartphone; + exports.MonitorSpeaker = MonitorSpeaker; + exports.MonitorStop = MonitorStop; + exports.MonitorUp = MonitorUp; + exports.MonitorX = MonitorX; + exports.Moon = Moon; + exports.MoonStar = MoonStar; + exports.MoreHorizontal = Ellipsis; + exports.MoreVertical = EllipsisVertical; + exports.Mountain = Mountain; + exports.MountainSnow = MountainSnow; + exports.Mouse = Mouse; + exports.MouseOff = MouseOff; + exports.MousePointer = MousePointer; + exports.MousePointer2 = MousePointer2; + exports.MousePointerBan = MousePointerBan; + exports.MousePointerClick = MousePointerClick; + exports.MousePointerSquareDashed = SquareDashedMousePointer; + exports.Move = Move; + exports.Move3D = Move3d; + exports.Move3d = Move3d; + exports.MoveDiagonal = MoveDiagonal; + exports.MoveDiagonal2 = MoveDiagonal2; + exports.MoveDown = MoveDown; + exports.MoveDownLeft = MoveDownLeft; + exports.MoveDownRight = MoveDownRight; + exports.MoveHorizontal = MoveHorizontal; + exports.MoveLeft = MoveLeft; + exports.MoveRight = MoveRight; + exports.MoveUp = MoveUp; + exports.MoveUpLeft = MoveUpLeft; + exports.MoveUpRight = MoveUpRight; + exports.MoveVertical = MoveVertical; + exports.Music = Music; + exports.Music2 = Music2; + exports.Music3 = Music3; + exports.Music4 = Music4; + exports.Navigation = Navigation; + exports.Navigation2 = Navigation2; + exports.Navigation2Off = Navigation2Off; + exports.NavigationOff = NavigationOff; + exports.Network = Network; + exports.Newspaper = Newspaper; + exports.Nfc = Nfc; + exports.NonBinary = NonBinary; + exports.Notebook = Notebook; + exports.NotebookPen = NotebookPen; + exports.NotebookTabs = NotebookTabs; + exports.NotebookText = NotebookText; + exports.NotepadText = NotepadText; + exports.NotepadTextDashed = NotepadTextDashed; + exports.Nut = Nut; + exports.NutOff = NutOff; + exports.Octagon = Octagon; + exports.OctagonAlert = OctagonAlert; + exports.OctagonMinus = OctagonMinus; + exports.OctagonPause = OctagonPause; + exports.OctagonX = OctagonX; + exports.Omega = Omega; + exports.Option = Option; + exports.Orbit = Orbit; + exports.Origami = Origami; + exports.Outdent = IndentDecrease; + exports.Package = Package; + exports.Package2 = Package2; + exports.PackageCheck = PackageCheck; + exports.PackageMinus = PackageMinus; + exports.PackageOpen = PackageOpen; + exports.PackagePlus = PackagePlus; + exports.PackageSearch = PackageSearch; + exports.PackageX = PackageX; + exports.PaintBucket = PaintBucket; + exports.PaintRoller = PaintRoller; + exports.Paintbrush = Paintbrush; + exports.Paintbrush2 = PaintbrushVertical; + exports.PaintbrushVertical = PaintbrushVertical; + exports.Palette = Palette; + exports.Palmtree = TreePalm; + exports.PanelBottom = PanelBottom; + exports.PanelBottomClose = PanelBottomClose; + exports.PanelBottomDashed = PanelBottomDashed; + exports.PanelBottomInactive = PanelBottomDashed; + exports.PanelBottomOpen = PanelBottomOpen; + exports.PanelLeft = PanelLeft; + exports.PanelLeftClose = PanelLeftClose; + exports.PanelLeftDashed = PanelLeftDashed; + exports.PanelLeftInactive = PanelLeftDashed; + exports.PanelLeftOpen = PanelLeftOpen; + exports.PanelRight = PanelRight; + exports.PanelRightClose = PanelRightClose; + exports.PanelRightDashed = PanelRightDashed; + exports.PanelRightInactive = PanelRightDashed; + exports.PanelRightOpen = PanelRightOpen; + exports.PanelTop = PanelTop; + exports.PanelTopClose = PanelTopClose; + exports.PanelTopDashed = PanelTopDashed; + exports.PanelTopInactive = PanelTopDashed; + exports.PanelTopOpen = PanelTopOpen; + exports.PanelsLeftBottom = PanelsLeftBottom; + exports.PanelsLeftRight = Columns3; + exports.PanelsRightBottom = PanelsRightBottom; + exports.PanelsTopBottom = Rows3; + exports.PanelsTopLeft = PanelsTopLeft; + exports.Paperclip = Paperclip; + exports.Parentheses = Parentheses; + exports.ParkingCircle = CircleParking; + exports.ParkingCircleOff = CircleParkingOff; + exports.ParkingMeter = ParkingMeter; + exports.ParkingSquare = SquareParking; + exports.ParkingSquareOff = SquareParkingOff; + exports.PartyPopper = PartyPopper; + exports.Pause = Pause; + exports.PauseCircle = CirclePause; + exports.PauseOctagon = OctagonPause; + exports.PawPrint = PawPrint; + exports.PcCase = PcCase; + exports.Pen = Pen; + exports.PenBox = SquarePen; + exports.PenLine = PenLine; + exports.PenOff = PenOff; + exports.PenSquare = SquarePen; + exports.PenTool = PenTool; + exports.Pencil = Pencil; + exports.PencilLine = PencilLine; + exports.PencilOff = PencilOff; + exports.PencilRuler = PencilRuler; + exports.Pentagon = Pentagon; + exports.Percent = Percent; + exports.PercentCircle = CirclePercent; + exports.PercentDiamond = DiamondPercent; + exports.PercentSquare = SquarePercent; + exports.PersonStanding = PersonStanding; + exports.PhilippinePeso = PhilippinePeso; + exports.Phone = Phone; + exports.PhoneCall = PhoneCall; + exports.PhoneForwarded = PhoneForwarded; + exports.PhoneIncoming = PhoneIncoming; + exports.PhoneMissed = PhoneMissed; + exports.PhoneOff = PhoneOff; + exports.PhoneOutgoing = PhoneOutgoing; + exports.Pi = Pi; + exports.PiSquare = SquarePi; + exports.Piano = Piano; + exports.Pickaxe = Pickaxe; + exports.PictureInPicture = PictureInPicture; + exports.PictureInPicture2 = PictureInPicture2; + exports.PieChart = ChartPie; + exports.PiggyBank = PiggyBank; + exports.Pilcrow = Pilcrow; + exports.PilcrowLeft = PilcrowLeft; + exports.PilcrowRight = PilcrowRight; + exports.PilcrowSquare = SquarePilcrow; + exports.Pill = Pill; + exports.PillBottle = PillBottle; + exports.Pin = Pin; + exports.PinOff = PinOff; + exports.Pipette = Pipette; + exports.Pizza = Pizza; + exports.Plane = Plane; + exports.PlaneLanding = PlaneLanding; + exports.PlaneTakeoff = PlaneTakeoff; + exports.Play = Play; + exports.PlayCircle = CirclePlay; + exports.PlaySquare = SquarePlay; + exports.Plug = Plug; + exports.Plug2 = Plug2; + exports.PlugZap = PlugZap; + exports.PlugZap2 = PlugZap; + exports.Plus = Plus; + exports.PlusCircle = CirclePlus; + exports.PlusSquare = SquarePlus; + exports.Pocket = Pocket; + exports.PocketKnife = PocketKnife; + exports.Podcast = Podcast; + exports.Pointer = Pointer; + exports.PointerOff = PointerOff; + exports.Popcorn = Popcorn; + exports.Popsicle = Popsicle; + exports.PoundSterling = PoundSterling; + exports.Power = Power; + exports.PowerCircle = CirclePower; + exports.PowerOff = PowerOff; + exports.PowerSquare = SquarePower; + exports.Presentation = Presentation; + exports.Printer = Printer; + exports.PrinterCheck = PrinterCheck; + exports.Projector = Projector; + exports.Proportions = Proportions; + exports.Puzzle = Puzzle; + exports.Pyramid = Pyramid; + exports.QrCode = QrCode; + exports.Quote = Quote; + exports.Rabbit = Rabbit; + exports.Radar = Radar; + exports.Radiation = Radiation; + exports.Radical = Radical; + exports.Radio = Radio; + exports.RadioReceiver = RadioReceiver; + exports.RadioTower = RadioTower; + exports.Radius = Radius; + exports.RailSymbol = RailSymbol; + exports.Rainbow = Rainbow; + exports.Rat = Rat; + exports.Ratio = Ratio; + exports.Receipt = Receipt; + exports.ReceiptCent = ReceiptCent; + exports.ReceiptEuro = ReceiptEuro; + exports.ReceiptIndianRupee = ReceiptIndianRupee; + exports.ReceiptJapaneseYen = ReceiptJapaneseYen; + exports.ReceiptPoundSterling = ReceiptPoundSterling; + exports.ReceiptRussianRuble = ReceiptRussianRuble; + exports.ReceiptSwissFranc = ReceiptSwissFranc; + exports.ReceiptText = ReceiptText; + exports.RectangleEllipsis = RectangleEllipsis; + exports.RectangleHorizontal = RectangleHorizontal; + exports.RectangleVertical = RectangleVertical; + exports.Recycle = Recycle; + exports.Redo = Redo; + exports.Redo2 = Redo2; + exports.RedoDot = RedoDot; + exports.RefreshCcw = RefreshCcw; + exports.RefreshCcwDot = RefreshCcwDot; + exports.RefreshCw = RefreshCw; + exports.RefreshCwOff = RefreshCwOff; + exports.Refrigerator = Refrigerator; + exports.Regex = Regex; + exports.RemoveFormatting = RemoveFormatting; + exports.Repeat = Repeat; + exports.Repeat1 = Repeat1; + exports.Repeat2 = Repeat2; + exports.Replace = Replace; + exports.ReplaceAll = ReplaceAll; + exports.Reply = Reply; + exports.ReplyAll = ReplyAll; + exports.Rewind = Rewind; + exports.Ribbon = Ribbon; + exports.Rocket = Rocket; + exports.RockingChair = RockingChair; + exports.RollerCoaster = RollerCoaster; + exports.Rotate3D = Rotate3d; + exports.Rotate3d = Rotate3d; + exports.RotateCcw = RotateCcw; + exports.RotateCcwSquare = RotateCcwSquare; + exports.RotateCw = RotateCw; + exports.RotateCwSquare = RotateCwSquare; + exports.Route = Route; + exports.RouteOff = RouteOff; + exports.Router = Router; + exports.Rows = Rows2; + exports.Rows2 = Rows2; + exports.Rows3 = Rows3; + exports.Rows4 = Rows4; + exports.Rss = Rss; + exports.Ruler = Ruler; + exports.RussianRuble = RussianRuble; + exports.Sailboat = Sailboat; + exports.Salad = Salad; + exports.Sandwich = Sandwich; + exports.Satellite = Satellite; + exports.SatelliteDish = SatelliteDish; + exports.Save = Save; + exports.SaveAll = SaveAll; + exports.SaveOff = SaveOff; + exports.Scale = Scale; + exports.Scale3D = Scale3d; + exports.Scale3d = Scale3d; + exports.Scaling = Scaling; + exports.Scan = Scan; + exports.ScanBarcode = ScanBarcode; + exports.ScanEye = ScanEye; + exports.ScanFace = ScanFace; + exports.ScanHeart = ScanHeart; + exports.ScanLine = ScanLine; + exports.ScanQrCode = ScanQrCode; + exports.ScanSearch = ScanSearch; + exports.ScanText = ScanText; + exports.ScatterChart = ChartScatter; + exports.School = School; + exports.School2 = University; + exports.Scissors = Scissors; + exports.ScissorsLineDashed = ScissorsLineDashed; + exports.ScissorsSquare = SquareScissors; + exports.ScissorsSquareDashedBottom = SquareBottomDashedScissors; + exports.ScreenShare = ScreenShare; + exports.ScreenShareOff = ScreenShareOff; + exports.Scroll = Scroll; + exports.ScrollText = ScrollText; + exports.Search = Search; + exports.SearchCheck = SearchCheck; + exports.SearchCode = SearchCode; + exports.SearchSlash = SearchSlash; + exports.SearchX = SearchX; + exports.Section = Section; + exports.Send = Send; + exports.SendHorizonal = SendHorizontal; + exports.SendHorizontal = SendHorizontal; + exports.SendToBack = SendToBack; + exports.SeparatorHorizontal = SeparatorHorizontal; + exports.SeparatorVertical = SeparatorVertical; + exports.Server = Server; + exports.ServerCog = ServerCog; + exports.ServerCrash = ServerCrash; + exports.ServerOff = ServerOff; + exports.Settings = Settings; + exports.Settings2 = Settings2; + exports.Shapes = Shapes; + exports.Share = Share; + exports.Share2 = Share2; + exports.Sheet = Sheet; + exports.Shell = Shell; + exports.Shield = Shield; + exports.ShieldAlert = ShieldAlert; + exports.ShieldBan = ShieldBan; + exports.ShieldCheck = ShieldCheck; + exports.ShieldClose = ShieldX; + exports.ShieldEllipsis = ShieldEllipsis; + exports.ShieldHalf = ShieldHalf; + exports.ShieldMinus = ShieldMinus; + exports.ShieldOff = ShieldOff; + exports.ShieldPlus = ShieldPlus; + exports.ShieldQuestion = ShieldQuestion; + exports.ShieldX = ShieldX; + exports.Ship = Ship; + exports.ShipWheel = ShipWheel; + exports.Shirt = Shirt; + exports.ShoppingBag = ShoppingBag; + exports.ShoppingBasket = ShoppingBasket; + exports.ShoppingCart = ShoppingCart; + exports.Shovel = Shovel; + exports.ShowerHead = ShowerHead; + exports.Shrink = Shrink; + exports.Shrub = Shrub; + exports.Shuffle = Shuffle; + exports.Sidebar = PanelLeft; + exports.SidebarClose = PanelLeftClose; + exports.SidebarOpen = PanelLeftOpen; + exports.Sigma = Sigma; + exports.SigmaSquare = SquareSigma; + exports.Signal = Signal; + exports.SignalHigh = SignalHigh; + exports.SignalLow = SignalLow; + exports.SignalMedium = SignalMedium; + exports.SignalZero = SignalZero; + exports.Signature = Signature; + exports.Signpost = Signpost; + exports.SignpostBig = SignpostBig; + exports.Siren = Siren; + exports.SkipBack = SkipBack; + exports.SkipForward = SkipForward; + exports.Skull = Skull; + exports.Slack = Slack; + exports.Slash = Slash; + exports.SlashSquare = SquareSlash; + exports.Slice = Slice; + exports.Sliders = SlidersVertical; + exports.SlidersHorizontal = SlidersHorizontal; + exports.SlidersVertical = SlidersVertical; + exports.Smartphone = Smartphone; + exports.SmartphoneCharging = SmartphoneCharging; + exports.SmartphoneNfc = SmartphoneNfc; + exports.Smile = Smile; + exports.SmilePlus = SmilePlus; + exports.Snail = Snail; + exports.Snowflake = Snowflake; + exports.Sofa = Sofa; + exports.SortAsc = ArrowUpNarrowWide; + exports.SortDesc = ArrowDownWideNarrow; + exports.Soup = Soup; + exports.Space = Space; + exports.Spade = Spade; + exports.Sparkle = Sparkle; + exports.Sparkles = Sparkles; + exports.Speaker = Speaker; + exports.Speech = Speech; + exports.SpellCheck = SpellCheck; + exports.SpellCheck2 = SpellCheck2; + exports.Spline = Spline; + exports.Split = Split; + exports.SplitSquareHorizontal = SquareSplitHorizontal; + exports.SplitSquareVertical = SquareSplitVertical; + exports.SprayCan = SprayCan; + exports.Sprout = Sprout; + exports.Square = Square; + exports.SquareActivity = SquareActivity; + exports.SquareArrowDown = SquareArrowDown; + exports.SquareArrowDownLeft = SquareArrowDownLeft; + exports.SquareArrowDownRight = SquareArrowDownRight; + exports.SquareArrowLeft = SquareArrowLeft; + exports.SquareArrowOutDownLeft = SquareArrowOutDownLeft; + exports.SquareArrowOutDownRight = SquareArrowOutDownRight; + exports.SquareArrowOutUpLeft = SquareArrowOutUpLeft; + exports.SquareArrowOutUpRight = SquareArrowOutUpRight; + exports.SquareArrowRight = SquareArrowRight; + exports.SquareArrowUp = SquareArrowUp; + exports.SquareArrowUpLeft = SquareArrowUpLeft; + exports.SquareArrowUpRight = SquareArrowUpRight; + exports.SquareAsterisk = SquareAsterisk; + exports.SquareBottomDashedScissors = SquareBottomDashedScissors; + exports.SquareChartGantt = SquareChartGantt; + exports.SquareCheck = SquareCheck; + exports.SquareCheckBig = SquareCheckBig; + exports.SquareChevronDown = SquareChevronDown; + exports.SquareChevronLeft = SquareChevronLeft; + exports.SquareChevronRight = SquareChevronRight; + exports.SquareChevronUp = SquareChevronUp; + exports.SquareCode = SquareCode; + exports.SquareDashed = SquareDashed; + exports.SquareDashedBottom = SquareDashedBottom; + exports.SquareDashedBottomCode = SquareDashedBottomCode; + exports.SquareDashedKanban = SquareDashedKanban; + exports.SquareDashedMousePointer = SquareDashedMousePointer; + exports.SquareDivide = SquareDivide; + exports.SquareDot = SquareDot; + exports.SquareEqual = SquareEqual; + exports.SquareFunction = SquareFunction; + exports.SquareGanttChart = SquareChartGantt; + exports.SquareKanban = SquareKanban; + exports.SquareLibrary = SquareLibrary; + exports.SquareM = SquareM; + exports.SquareMenu = SquareMenu; + exports.SquareMinus = SquareMinus; + exports.SquareMousePointer = SquareMousePointer; + exports.SquareParking = SquareParking; + exports.SquareParkingOff = SquareParkingOff; + exports.SquarePen = SquarePen; + exports.SquarePercent = SquarePercent; + exports.SquarePi = SquarePi; + exports.SquarePilcrow = SquarePilcrow; + exports.SquarePlay = SquarePlay; + exports.SquarePlus = SquarePlus; + exports.SquarePower = SquarePower; + exports.SquareRadical = SquareRadical; + exports.SquareScissors = SquareScissors; + exports.SquareSigma = SquareSigma; + exports.SquareSlash = SquareSlash; + exports.SquareSplitHorizontal = SquareSplitHorizontal; + exports.SquareSplitVertical = SquareSplitVertical; + exports.SquareSquare = SquareSquare; + exports.SquareStack = SquareStack; + exports.SquareTerminal = SquareTerminal; + exports.SquareUser = SquareUser; + exports.SquareUserRound = SquareUserRound; + exports.SquareX = SquareX; + exports.Squircle = Squircle; + exports.Squirrel = Squirrel; + exports.Stamp = Stamp; + exports.Star = Star; + exports.StarHalf = StarHalf; + exports.StarOff = StarOff; + exports.Stars = Sparkles; + exports.StepBack = StepBack; + exports.StepForward = StepForward; + exports.Stethoscope = Stethoscope; + exports.Sticker = Sticker; + exports.StickyNote = StickyNote; + exports.StopCircle = CircleStop; + exports.Store = Store; + exports.StretchHorizontal = StretchHorizontal; + exports.StretchVertical = StretchVertical; + exports.Strikethrough = Strikethrough; + exports.Subscript = Subscript; + exports.Subtitles = Captions; + exports.Sun = Sun; + exports.SunDim = SunDim; + exports.SunMedium = SunMedium; + exports.SunMoon = SunMoon; + exports.SunSnow = SunSnow; + exports.Sunrise = Sunrise; + exports.Sunset = Sunset; + exports.Superscript = Superscript; + exports.SwatchBook = SwatchBook; + exports.SwissFranc = SwissFranc; + exports.SwitchCamera = SwitchCamera; + exports.Sword = Sword; + exports.Swords = Swords; + exports.Syringe = Syringe; + exports.Table = Table; + exports.Table2 = Table2; + exports.TableCellsMerge = TableCellsMerge; + exports.TableCellsSplit = TableCellsSplit; + exports.TableColumnsSplit = TableColumnsSplit; + exports.TableOfContents = TableOfContents; + exports.TableProperties = TableProperties; + exports.TableRowsSplit = TableRowsSplit; + exports.Tablet = Tablet; + exports.TabletSmartphone = TabletSmartphone; + exports.Tablets = Tablets; + exports.Tag = Tag; + exports.Tags = Tags; + exports.Tally1 = Tally1; + exports.Tally2 = Tally2; + exports.Tally3 = Tally3; + exports.Tally4 = Tally4; + exports.Tally5 = Tally5; + exports.Tangent = Tangent; + exports.Target = Target; + exports.Telescope = Telescope; + exports.Tent = Tent; + exports.TentTree = TentTree; + exports.Terminal = Terminal; + exports.TerminalSquare = SquareTerminal; + exports.TestTube = TestTube; + exports.TestTube2 = TestTubeDiagonal; + exports.TestTubeDiagonal = TestTubeDiagonal; + exports.TestTubes = TestTubes; + exports.Text = Text; + exports.TextCursor = TextCursor; + exports.TextCursorInput = TextCursorInput; + exports.TextQuote = TextQuote; + exports.TextSearch = TextSearch; + exports.TextSelect = TextSelect; + exports.TextSelection = TextSelect; + exports.Theater = Theater; + exports.Thermometer = Thermometer; + exports.ThermometerSnowflake = ThermometerSnowflake; + exports.ThermometerSun = ThermometerSun; + exports.ThumbsDown = ThumbsDown; + exports.ThumbsUp = ThumbsUp; + exports.Ticket = Ticket; + exports.TicketCheck = TicketCheck; + exports.TicketMinus = TicketMinus; + exports.TicketPercent = TicketPercent; + exports.TicketPlus = TicketPlus; + exports.TicketSlash = TicketSlash; + exports.TicketX = TicketX; + exports.Tickets = Tickets; + exports.TicketsPlane = TicketsPlane; + exports.Timer = Timer; + exports.TimerOff = TimerOff; + exports.TimerReset = TimerReset; + exports.ToggleLeft = ToggleLeft; + exports.ToggleRight = ToggleRight; + exports.Toilet = Toilet; + exports.Tornado = Tornado; + exports.Torus = Torus; + exports.Touchpad = Touchpad; + exports.TouchpadOff = TouchpadOff; + exports.TowerControl = TowerControl; + exports.ToyBrick = ToyBrick; + exports.Tractor = Tractor; + exports.TrafficCone = TrafficCone; + exports.Train = TramFront; + exports.TrainFront = TrainFront; + exports.TrainFrontTunnel = TrainFrontTunnel; + exports.TrainTrack = TrainTrack; + exports.TramFront = TramFront; + exports.Transgender = Transgender; + exports.Trash = Trash; + exports.Trash2 = Trash2; + exports.TreeDeciduous = TreeDeciduous; + exports.TreePalm = TreePalm; + exports.TreePine = TreePine; + exports.Trees = Trees; + exports.Trello = Trello; + exports.TrendingDown = TrendingDown; + exports.TrendingUp = TrendingUp; + exports.TrendingUpDown = TrendingUpDown; + exports.Triangle = Triangle; + exports.TriangleAlert = TriangleAlert; + exports.TriangleDashed = TriangleDashed; + exports.TriangleRight = TriangleRight; + exports.Trophy = Trophy; + exports.Truck = Truck; + exports.Turtle = Turtle; + exports.Tv = Tv; + exports.Tv2 = TvMinimal; + exports.TvMinimal = TvMinimal; + exports.TvMinimalPlay = TvMinimalPlay; + exports.Twitch = Twitch; + exports.Twitter = Twitter; + exports.Type = Type; + exports.TypeOutline = TypeOutline; + exports.Umbrella = Umbrella; + exports.UmbrellaOff = UmbrellaOff; + exports.Underline = Underline; + exports.Undo = Undo; + exports.Undo2 = Undo2; + exports.UndoDot = UndoDot; + exports.UnfoldHorizontal = UnfoldHorizontal; + exports.UnfoldVertical = UnfoldVertical; + exports.Ungroup = Ungroup; + exports.University = University; + exports.Unlink = Unlink; + exports.Unlink2 = Unlink2; + exports.Unlock = LockOpen; + exports.UnlockKeyhole = LockKeyholeOpen; + exports.Unplug = Unplug; + exports.Upload = Upload; + exports.UploadCloud = CloudUpload; + exports.Usb = Usb; + exports.User = User; + exports.User2 = UserRound; + exports.UserCheck = UserCheck; + exports.UserCheck2 = UserRoundCheck; + exports.UserCircle = CircleUser; + exports.UserCircle2 = CircleUserRound; + exports.UserCog = UserCog; + exports.UserCog2 = UserRoundCog; + exports.UserMinus = UserMinus; + exports.UserMinus2 = UserRoundMinus; + exports.UserPen = UserPen; + exports.UserPlus = UserPlus; + exports.UserPlus2 = UserRoundPlus; + exports.UserRound = UserRound; + exports.UserRoundCheck = UserRoundCheck; + exports.UserRoundCog = UserRoundCog; + exports.UserRoundMinus = UserRoundMinus; + exports.UserRoundPen = UserRoundPen; + exports.UserRoundPlus = UserRoundPlus; + exports.UserRoundSearch = UserRoundSearch; + exports.UserRoundX = UserRoundX; + exports.UserSearch = UserSearch; + exports.UserSquare = SquareUser; + exports.UserSquare2 = SquareUserRound; + exports.UserX = UserX; + exports.UserX2 = UserRoundX; + exports.Users = Users; + exports.Users2 = UsersRound; + exports.UsersRound = UsersRound; + exports.Utensils = Utensils; + exports.UtensilsCrossed = UtensilsCrossed; + exports.UtilityPole = UtilityPole; + exports.Variable = Variable; + exports.Vault = Vault; + exports.Vegan = Vegan; + exports.VenetianMask = VenetianMask; + exports.Venus = Venus; + exports.VenusAndMars = VenusAndMars; + exports.Verified = BadgeCheck; + exports.Vibrate = Vibrate; + exports.VibrateOff = VibrateOff; + exports.Video = Video; + exports.VideoOff = VideoOff; + exports.Videotape = Videotape; + exports.View = View; + exports.Voicemail = Voicemail; + exports.Volleyball = Volleyball; + exports.Volume = Volume; + exports.Volume1 = Volume1; + exports.Volume2 = Volume2; + exports.VolumeOff = VolumeOff; + exports.VolumeX = VolumeX; + exports.Vote = Vote; + exports.Wallet = Wallet; + exports.Wallet2 = WalletMinimal; + exports.WalletCards = WalletCards; + exports.WalletMinimal = WalletMinimal; + exports.Wallpaper = Wallpaper; + exports.Wand = Wand; + exports.Wand2 = WandSparkles; + exports.WandSparkles = WandSparkles; + exports.Warehouse = Warehouse; + exports.WashingMachine = WashingMachine; + exports.Watch = Watch; + exports.Waves = Waves; + exports.WavesLadder = WavesLadder; + exports.Waypoints = Waypoints; + exports.Webcam = Webcam; + exports.Webhook = Webhook; + exports.WebhookOff = WebhookOff; + exports.Weight = Weight; + exports.Wheat = Wheat; + exports.WheatOff = WheatOff; + exports.WholeWord = WholeWord; + exports.Wifi = Wifi; + exports.WifiHigh = WifiHigh; + exports.WifiLow = WifiLow; + exports.WifiOff = WifiOff; + exports.WifiZero = WifiZero; + exports.Wind = Wind; + exports.WindArrowDown = WindArrowDown; + exports.Wine = Wine; + exports.WineOff = WineOff; + exports.Workflow = Workflow; + exports.Worm = Worm; + exports.WrapText = WrapText; + exports.Wrench = Wrench; + exports.X = X; + exports.XCircle = CircleX; + exports.XOctagon = OctagonX; + exports.XSquare = SquareX; + exports.Youtube = Youtube; + exports.Zap = Zap; + exports.ZapOff = ZapOff; + exports.ZoomIn = ZoomIn; + exports.ZoomOut = ZoomOut; + exports.createElement = createElement; + exports.createIcons = createIcons; + exports.icons = iconAndAliases; + +})); +//# sourceMappingURL=lucide.js.map diff --git a/agentic_security/static/tailwindcss.js b/agentic_security/static/tailwindcss.js new file mode 100644 index 0000000..47c4273 --- /dev/null +++ b/agentic_security/static/tailwindcss.js @@ -0,0 +1,83 @@ +(()=>{var qv=Object.create;var Hi=Object.defineProperty;var $v=Object.getOwnPropertyDescriptor;var Lv=Object.getOwnPropertyNames;var Mv=Object.getPrototypeOf,Nv=Object.prototype.hasOwnProperty;var df=r=>Hi(r,"__esModule",{value:!0});var hf=r=>{if(typeof require!="undefined")return require(r);throw new Error('Dynamic require of "'+r+'" is not supported')};var P=(r,e)=>()=>(r&&(e=r(r=0)),e);var x=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),Ge=(r,e)=>{df(r);for(var t in e)Hi(r,t,{get:e[t],enumerable:!0})},Bv=(r,e,t)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Lv(e))!Nv.call(r,i)&&i!=="default"&&Hi(r,i,{get:()=>e[i],enumerable:!(t=$v(e,i))||t.enumerable});return r},pe=r=>Bv(df(Hi(r!=null?qv(Mv(r)):{},"default",r&&r.__esModule&&"default"in r?{get:()=>r.default,enumerable:!0}:{value:r,enumerable:!0})),r);var m,u=P(()=>{m={platform:"",env:{},versions:{node:"14.17.6"}}});var Fv,be,ft=P(()=>{u();Fv=0,be={readFileSync:r=>self[r]||"",statSync:()=>({mtimeMs:Fv++}),promises:{readFile:r=>Promise.resolve(self[r]||"")}}});var Fs=x((oP,gf)=>{u();"use strict";var mf=class{constructor(e={}){if(!(e.maxSize&&e.maxSize>0))throw new TypeError("`maxSize` must be a number greater than 0");if(typeof e.maxAge=="number"&&e.maxAge===0)throw new TypeError("`maxAge` must be a number greater than 0");this.maxSize=e.maxSize,this.maxAge=e.maxAge||1/0,this.onEviction=e.onEviction,this.cache=new Map,this.oldCache=new Map,this._size=0}_emitEvictions(e){if(typeof this.onEviction=="function")for(let[t,i]of e)this.onEviction(t,i.value)}_deleteIfExpired(e,t){return typeof t.expiry=="number"&&t.expiry<=Date.now()?(typeof this.onEviction=="function"&&this.onEviction(e,t.value),this.delete(e)):!1}_getOrDeleteIfExpired(e,t){if(this._deleteIfExpired(e,t)===!1)return t.value}_getItemValue(e,t){return t.expiry?this._getOrDeleteIfExpired(e,t):t.value}_peek(e,t){let i=t.get(e);return this._getItemValue(e,i)}_set(e,t){this.cache.set(e,t),this._size++,this._size>=this.maxSize&&(this._size=0,this._emitEvictions(this.oldCache),this.oldCache=this.cache,this.cache=new Map)}_moveToRecent(e,t){this.oldCache.delete(e),this._set(e,t)}*_entriesAscending(){for(let e of this.oldCache){let[t,i]=e;this.cache.has(t)||this._deleteIfExpired(t,i)===!1&&(yield e)}for(let e of this.cache){let[t,i]=e;this._deleteIfExpired(t,i)===!1&&(yield e)}}get(e){if(this.cache.has(e)){let t=this.cache.get(e);return this._getItemValue(e,t)}if(this.oldCache.has(e)){let t=this.oldCache.get(e);if(this._deleteIfExpired(e,t)===!1)return this._moveToRecent(e,t),t.value}}set(e,t,{maxAge:i=this.maxAge===1/0?void 0:Date.now()+this.maxAge}={}){this.cache.has(e)?this.cache.set(e,{value:t,maxAge:i}):this._set(e,{value:t,expiry:i})}has(e){return this.cache.has(e)?!this._deleteIfExpired(e,this.cache.get(e)):this.oldCache.has(e)?!this._deleteIfExpired(e,this.oldCache.get(e)):!1}peek(e){if(this.cache.has(e))return this._peek(e,this.cache);if(this.oldCache.has(e))return this._peek(e,this.oldCache)}delete(e){let t=this.cache.delete(e);return t&&this._size--,this.oldCache.delete(e)||t}clear(){this.cache.clear(),this.oldCache.clear(),this._size=0}resize(e){if(!(e&&e>0))throw new TypeError("`maxSize` must be a number greater than 0");let t=[...this._entriesAscending()],i=t.length-e;i<0?(this.cache=new Map(t),this.oldCache=new Map,this._size=t.length):(i>0&&this._emitEvictions(t.slice(0,i)),this.oldCache=new Map(t.slice(i)),this.cache=new Map,this._size=0),this.maxSize=e}*keys(){for(let[e]of this)yield e}*values(){for(let[,e]of this)yield e}*[Symbol.iterator](){for(let e of this.cache){let[t,i]=e;this._deleteIfExpired(t,i)===!1&&(yield[t,i.value])}for(let e of this.oldCache){let[t,i]=e;this.cache.has(t)||this._deleteIfExpired(t,i)===!1&&(yield[t,i.value])}}*entriesDescending(){let e=[...this.cache];for(let t=e.length-1;t>=0;--t){let i=e[t],[n,s]=i;this._deleteIfExpired(n,s)===!1&&(yield[n,s.value])}e=[...this.oldCache];for(let t=e.length-1;t>=0;--t){let i=e[t],[n,s]=i;this.cache.has(n)||this._deleteIfExpired(n,s)===!1&&(yield[n,s.value])}}*entriesAscending(){for(let[e,t]of this._entriesAscending())yield[e,t.value]}get size(){if(!this._size)return this.oldCache.size;let e=0;for(let t of this.oldCache.keys())this.cache.has(t)||e++;return Math.min(this._size+e,this.maxSize)}};gf.exports=mf});var yf,bf=P(()=>{u();yf=r=>r&&r._hash});function Wi(r){return yf(r,{ignoreUnknown:!0})}var wf=P(()=>{u();bf()});function xt(r){if(r=`${r}`,r==="0")return"0";if(/^[+-]?(\d+|\d*\.\d+)(e[+-]?\d+)?(%|\w+)?$/.test(r))return r.replace(/^[+-]?/,t=>t==="-"?"":"-");let e=["var","calc","min","max","clamp"];for(let t of e)if(r.includes(`${t}(`))return`calc(${r} * -1)`}var Gi=P(()=>{u()});var vf,xf=P(()=>{u();vf=["preflight","container","accessibility","pointerEvents","visibility","position","inset","isolation","zIndex","order","gridColumn","gridColumnStart","gridColumnEnd","gridRow","gridRowStart","gridRowEnd","float","clear","margin","boxSizing","lineClamp","display","aspectRatio","size","height","maxHeight","minHeight","width","minWidth","maxWidth","flex","flexShrink","flexGrow","flexBasis","tableLayout","captionSide","borderCollapse","borderSpacing","transformOrigin","translate","rotate","skew","scale","transform","animation","cursor","touchAction","userSelect","resize","scrollSnapType","scrollSnapAlign","scrollSnapStop","scrollMargin","scrollPadding","listStylePosition","listStyleType","listStyleImage","appearance","columns","breakBefore","breakInside","breakAfter","gridAutoColumns","gridAutoFlow","gridAutoRows","gridTemplateColumns","gridTemplateRows","flexDirection","flexWrap","placeContent","placeItems","alignContent","alignItems","justifyContent","justifyItems","gap","space","divideWidth","divideStyle","divideColor","divideOpacity","placeSelf","alignSelf","justifySelf","overflow","overscrollBehavior","scrollBehavior","textOverflow","hyphens","whitespace","textWrap","wordBreak","borderRadius","borderWidth","borderStyle","borderColor","borderOpacity","backgroundColor","backgroundOpacity","backgroundImage","gradientColorStops","boxDecorationBreak","backgroundSize","backgroundAttachment","backgroundClip","backgroundPosition","backgroundRepeat","backgroundOrigin","fill","stroke","strokeWidth","objectFit","objectPosition","padding","textAlign","textIndent","verticalAlign","fontFamily","fontSize","fontWeight","textTransform","fontStyle","fontVariantNumeric","lineHeight","letterSpacing","textColor","textOpacity","textDecoration","textDecorationColor","textDecorationStyle","textDecorationThickness","textUnderlineOffset","fontSmoothing","placeholderColor","placeholderOpacity","caretColor","accentColor","opacity","backgroundBlendMode","mixBlendMode","boxShadow","boxShadowColor","outlineStyle","outlineWidth","outlineOffset","outlineColor","ringWidth","ringColor","ringOpacity","ringOffsetWidth","ringOffsetColor","blur","brightness","contrast","dropShadow","grayscale","hueRotate","invert","saturate","sepia","filter","backdropBlur","backdropBrightness","backdropContrast","backdropGrayscale","backdropHueRotate","backdropInvert","backdropOpacity","backdropSaturate","backdropSepia","backdropFilter","transitionProperty","transitionDelay","transitionDuration","transitionTimingFunction","willChange","contain","content","forcedColorAdjust"]});function kf(r,e){return r===void 0?e:Array.isArray(r)?r:[...new Set(e.filter(i=>r!==!1&&r[i]!==!1).concat(Object.keys(r).filter(i=>r[i]!==!1)))]}var Sf=P(()=>{u()});var Af={};Ge(Af,{default:()=>Qe});var Qe,Qi=P(()=>{u();Qe=new Proxy({},{get:()=>String})});function js(r,e,t){typeof m!="undefined"&&m.env.JEST_WORKER_ID||t&&Cf.has(t)||(t&&Cf.add(t),console.warn(""),e.forEach(i=>console.warn(r,"-",i)))}function zs(r){return Qe.dim(r)}var Cf,G,Be=P(()=>{u();Qi();Cf=new Set;G={info(r,e){js(Qe.bold(Qe.cyan("info")),...Array.isArray(r)?[r]:[e,r])},warn(r,e){["content-problems"].includes(r)||js(Qe.bold(Qe.yellow("warn")),...Array.isArray(r)?[r]:[e,r])},risk(r,e){js(Qe.bold(Qe.magenta("risk")),...Array.isArray(r)?[r]:[e,r])}}});var _f={};Ge(_f,{default:()=>Us});function qr({version:r,from:e,to:t}){G.warn(`${e}-color-renamed`,[`As of Tailwind CSS ${r}, \`${e}\` has been renamed to \`${t}\`.`,"Update your configuration file to silence this warning."])}var Us,Vs=P(()=>{u();Be();Us={inherit:"inherit",current:"currentColor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"#f8fafc",100:"#f1f5f9",200:"#e2e8f0",300:"#cbd5e1",400:"#94a3b8",500:"#64748b",600:"#475569",700:"#334155",800:"#1e293b",900:"#0f172a",950:"#020617"},gray:{50:"#f9fafb",100:"#f3f4f6",200:"#e5e7eb",300:"#d1d5db",400:"#9ca3af",500:"#6b7280",600:"#4b5563",700:"#374151",800:"#1f2937",900:"#111827",950:"#030712"},zinc:{50:"#fafafa",100:"#f4f4f5",200:"#e4e4e7",300:"#d4d4d8",400:"#a1a1aa",500:"#71717a",600:"#52525b",700:"#3f3f46",800:"#27272a",900:"#18181b",950:"#09090b"},neutral:{50:"#fafafa",100:"#f5f5f5",200:"#e5e5e5",300:"#d4d4d4",400:"#a3a3a3",500:"#737373",600:"#525252",700:"#404040",800:"#262626",900:"#171717",950:"#0a0a0a"},stone:{50:"#fafaf9",100:"#f5f5f4",200:"#e7e5e4",300:"#d6d3d1",400:"#a8a29e",500:"#78716c",600:"#57534e",700:"#44403c",800:"#292524",900:"#1c1917",950:"#0c0a09"},red:{50:"#fef2f2",100:"#fee2e2",200:"#fecaca",300:"#fca5a5",400:"#f87171",500:"#ef4444",600:"#dc2626",700:"#b91c1c",800:"#991b1b",900:"#7f1d1d",950:"#450a0a"},orange:{50:"#fff7ed",100:"#ffedd5",200:"#fed7aa",300:"#fdba74",400:"#fb923c",500:"#f97316",600:"#ea580c",700:"#c2410c",800:"#9a3412",900:"#7c2d12",950:"#431407"},amber:{50:"#fffbeb",100:"#fef3c7",200:"#fde68a",300:"#fcd34d",400:"#fbbf24",500:"#f59e0b",600:"#d97706",700:"#b45309",800:"#92400e",900:"#78350f",950:"#451a03"},yellow:{50:"#fefce8",100:"#fef9c3",200:"#fef08a",300:"#fde047",400:"#facc15",500:"#eab308",600:"#ca8a04",700:"#a16207",800:"#854d0e",900:"#713f12",950:"#422006"},lime:{50:"#f7fee7",100:"#ecfccb",200:"#d9f99d",300:"#bef264",400:"#a3e635",500:"#84cc16",600:"#65a30d",700:"#4d7c0f",800:"#3f6212",900:"#365314",950:"#1a2e05"},green:{50:"#f0fdf4",100:"#dcfce7",200:"#bbf7d0",300:"#86efac",400:"#4ade80",500:"#22c55e",600:"#16a34a",700:"#15803d",800:"#166534",900:"#14532d",950:"#052e16"},emerald:{50:"#ecfdf5",100:"#d1fae5",200:"#a7f3d0",300:"#6ee7b7",400:"#34d399",500:"#10b981",600:"#059669",700:"#047857",800:"#065f46",900:"#064e3b",950:"#022c22"},teal:{50:"#f0fdfa",100:"#ccfbf1",200:"#99f6e4",300:"#5eead4",400:"#2dd4bf",500:"#14b8a6",600:"#0d9488",700:"#0f766e",800:"#115e59",900:"#134e4a",950:"#042f2e"},cyan:{50:"#ecfeff",100:"#cffafe",200:"#a5f3fc",300:"#67e8f9",400:"#22d3ee",500:"#06b6d4",600:"#0891b2",700:"#0e7490",800:"#155e75",900:"#164e63",950:"#083344"},sky:{50:"#f0f9ff",100:"#e0f2fe",200:"#bae6fd",300:"#7dd3fc",400:"#38bdf8",500:"#0ea5e9",600:"#0284c7",700:"#0369a1",800:"#075985",900:"#0c4a6e",950:"#082f49"},blue:{50:"#eff6ff",100:"#dbeafe",200:"#bfdbfe",300:"#93c5fd",400:"#60a5fa",500:"#3b82f6",600:"#2563eb",700:"#1d4ed8",800:"#1e40af",900:"#1e3a8a",950:"#172554"},indigo:{50:"#eef2ff",100:"#e0e7ff",200:"#c7d2fe",300:"#a5b4fc",400:"#818cf8",500:"#6366f1",600:"#4f46e5",700:"#4338ca",800:"#3730a3",900:"#312e81",950:"#1e1b4b"},violet:{50:"#f5f3ff",100:"#ede9fe",200:"#ddd6fe",300:"#c4b5fd",400:"#a78bfa",500:"#8b5cf6",600:"#7c3aed",700:"#6d28d9",800:"#5b21b6",900:"#4c1d95",950:"#2e1065"},purple:{50:"#faf5ff",100:"#f3e8ff",200:"#e9d5ff",300:"#d8b4fe",400:"#c084fc",500:"#a855f7",600:"#9333ea",700:"#7e22ce",800:"#6b21a8",900:"#581c87",950:"#3b0764"},fuchsia:{50:"#fdf4ff",100:"#fae8ff",200:"#f5d0fe",300:"#f0abfc",400:"#e879f9",500:"#d946ef",600:"#c026d3",700:"#a21caf",800:"#86198f",900:"#701a75",950:"#4a044e"},pink:{50:"#fdf2f8",100:"#fce7f3",200:"#fbcfe8",300:"#f9a8d4",400:"#f472b6",500:"#ec4899",600:"#db2777",700:"#be185d",800:"#9d174d",900:"#831843",950:"#500724"},rose:{50:"#fff1f2",100:"#ffe4e6",200:"#fecdd3",300:"#fda4af",400:"#fb7185",500:"#f43f5e",600:"#e11d48",700:"#be123c",800:"#9f1239",900:"#881337",950:"#4c0519"},get lightBlue(){return qr({version:"v2.2",from:"lightBlue",to:"sky"}),this.sky},get warmGray(){return qr({version:"v3.0",from:"warmGray",to:"stone"}),this.stone},get trueGray(){return qr({version:"v3.0",from:"trueGray",to:"neutral"}),this.neutral},get coolGray(){return qr({version:"v3.0",from:"coolGray",to:"gray"}),this.gray},get blueGray(){return qr({version:"v3.0",from:"blueGray",to:"slate"}),this.slate}}});function Hs(r,...e){for(let t of e){for(let i in t)r?.hasOwnProperty?.(i)||(r[i]=t[i]);for(let i of Object.getOwnPropertySymbols(t))r?.hasOwnProperty?.(i)||(r[i]=t[i])}return r}var Ef=P(()=>{u()});function kt(r){if(Array.isArray(r))return r;let e=r.split("[").length-1,t=r.split("]").length-1;if(e!==t)throw new Error(`Path is invalid. Has unbalanced brackets: ${r}`);return r.split(/\.(?![^\[]*\])|[\[\]]/g).filter(Boolean)}var Yi=P(()=>{u()});function we(r,e){return Ki.future.includes(e)?r.future==="all"||(r?.future?.[e]??Of[e]??!1):Ki.experimental.includes(e)?r.experimental==="all"||(r?.experimental?.[e]??Of[e]??!1):!1}function Tf(r){return r.experimental==="all"?Ki.experimental:Object.keys(r?.experimental??{}).filter(e=>Ki.experimental.includes(e)&&r.experimental[e])}function Rf(r){if(m.env.JEST_WORKER_ID===void 0&&Tf(r).length>0){let e=Tf(r).map(t=>Qe.yellow(t)).join(", ");G.warn("experimental-flags-enabled",[`You have enabled experimental features: ${e}`,"Experimental features in Tailwind CSS are not covered by semver, may introduce breaking changes, and can change at any time."])}}var Of,Ki,ct=P(()=>{u();Qi();Be();Of={optimizeUniversalDefaults:!1,generalizedModifiers:!0,disableColorOpacityUtilitiesByDefault:!1,relativeContentPathsByDefault:!1},Ki={future:["hoverOnlyWhenSupported","respectDefaultRingColorOpacity","disableColorOpacityUtilitiesByDefault","relativeContentPathsByDefault"],experimental:["optimizeUniversalDefaults","generalizedModifiers"]}});function Pf(r){(()=>{if(r.purge||!r.content||!Array.isArray(r.content)&&!(typeof r.content=="object"&&r.content!==null))return!1;if(Array.isArray(r.content))return r.content.every(t=>typeof t=="string"?!0:!(typeof t?.raw!="string"||t?.extension&&typeof t?.extension!="string"));if(typeof r.content=="object"&&r.content!==null){if(Object.keys(r.content).some(t=>!["files","relative","extract","transform"].includes(t)))return!1;if(Array.isArray(r.content.files)){if(!r.content.files.every(t=>typeof t=="string"?!0:!(typeof t?.raw!="string"||t?.extension&&typeof t?.extension!="string")))return!1;if(typeof r.content.extract=="object"){for(let t of Object.values(r.content.extract))if(typeof t!="function")return!1}else if(!(r.content.extract===void 0||typeof r.content.extract=="function"))return!1;if(typeof r.content.transform=="object"){for(let t of Object.values(r.content.transform))if(typeof t!="function")return!1}else if(!(r.content.transform===void 0||typeof r.content.transform=="function"))return!1;if(typeof r.content.relative!="boolean"&&typeof r.content.relative!="undefined")return!1}return!0}return!1})()||G.warn("purge-deprecation",["The `purge`/`content` options have changed in Tailwind CSS v3.0.","Update your configuration file to eliminate this warning.","https://tailwindcss.com/docs/upgrade-guide#configure-content-sources"]),r.safelist=(()=>{let{content:t,purge:i,safelist:n}=r;return Array.isArray(n)?n:Array.isArray(t?.safelist)?t.safelist:Array.isArray(i?.safelist)?i.safelist:Array.isArray(i?.options?.safelist)?i.options.safelist:[]})(),r.blocklist=(()=>{let{blocklist:t}=r;if(Array.isArray(t)){if(t.every(i=>typeof i=="string"))return t;G.warn("blocklist-invalid",["The `blocklist` option must be an array of strings.","https://tailwindcss.com/docs/content-configuration#discarding-classes"])}return[]})(),typeof r.prefix=="function"?(G.warn("prefix-function",["As of Tailwind CSS v3.0, `prefix` cannot be a function.","Update `prefix` in your configuration to be a string to eliminate this warning.","https://tailwindcss.com/docs/upgrade-guide#prefix-cannot-be-a-function"]),r.prefix=""):r.prefix=r.prefix??"",r.content={relative:(()=>{let{content:t}=r;return t?.relative?t.relative:we(r,"relativeContentPathsByDefault")})(),files:(()=>{let{content:t,purge:i}=r;return Array.isArray(i)?i:Array.isArray(i?.content)?i.content:Array.isArray(t)?t:Array.isArray(t?.content)?t.content:Array.isArray(t?.files)?t.files:[]})(),extract:(()=>{let t=(()=>r.purge?.extract?r.purge.extract:r.content?.extract?r.content.extract:r.purge?.extract?.DEFAULT?r.purge.extract.DEFAULT:r.content?.extract?.DEFAULT?r.content.extract.DEFAULT:r.purge?.options?.extractors?r.purge.options.extractors:r.content?.options?.extractors?r.content.options.extractors:{})(),i={},n=(()=>{if(r.purge?.options?.defaultExtractor)return r.purge.options.defaultExtractor;if(r.content?.options?.defaultExtractor)return r.content.options.defaultExtractor})();if(n!==void 0&&(i.DEFAULT=n),typeof t=="function")i.DEFAULT=t;else if(Array.isArray(t))for(let{extensions:s,extractor:a}of t??[])for(let o of s)i[o]=a;else typeof t=="object"&&t!==null&&Object.assign(i,t);return i})(),transform:(()=>{let t=(()=>r.purge?.transform?r.purge.transform:r.content?.transform?r.content.transform:r.purge?.transform?.DEFAULT?r.purge.transform.DEFAULT:r.content?.transform?.DEFAULT?r.content.transform.DEFAULT:{})(),i={};return typeof t=="function"?i.DEFAULT=t:typeof t=="object"&&t!==null&&Object.assign(i,t),i})()};for(let t of r.content.files)if(typeof t=="string"&&/{([^,]*?)}/g.test(t)){G.warn("invalid-glob-braces",[`The glob pattern ${zs(t)} in your Tailwind CSS configuration is invalid.`,`Update it to ${zs(t.replace(/{([^,]*?)}/g,"$1"))} to silence this warning.`]);break}return r}var If=P(()=>{u();ct();Be()});function ke(r){if(Object.prototype.toString.call(r)!=="[object Object]")return!1;let e=Object.getPrototypeOf(r);return e===null||Object.getPrototypeOf(e)===null}var Kt=P(()=>{u()});function St(r){return Array.isArray(r)?r.map(e=>St(e)):typeof r=="object"&&r!==null?Object.fromEntries(Object.entries(r).map(([e,t])=>[e,St(t)])):r}var Xi=P(()=>{u()});function jt(r){return r.replace(/\\,/g,"\\2c ")}var Zi=P(()=>{u()});var Ws,Df=P(()=>{u();Ws={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}});function $r(r,{loose:e=!1}={}){if(typeof r!="string")return null;if(r=r.trim(),r==="transparent")return{mode:"rgb",color:["0","0","0"],alpha:"0"};if(r in Ws)return{mode:"rgb",color:Ws[r].map(s=>s.toString())};let t=r.replace(zv,(s,a,o,l,c)=>["#",a,a,o,o,l,l,c?c+c:""].join("")).match(jv);if(t!==null)return{mode:"rgb",color:[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16)].map(s=>s.toString()),alpha:t[4]?(parseInt(t[4],16)/255).toString():void 0};let i=r.match(Uv)??r.match(Vv);if(i===null)return null;let n=[i[2],i[3],i[4]].filter(Boolean).map(s=>s.toString());return n.length===2&&n[0].startsWith("var(")?{mode:i[1],color:[n[0]],alpha:n[1]}:!e&&n.length!==3||n.length<3&&!n.some(s=>/^var\(.*?\)$/.test(s))?null:{mode:i[1],color:n,alpha:i[5]?.toString?.()}}function Gs({mode:r,color:e,alpha:t}){let i=t!==void 0;return r==="rgba"||r==="hsla"?`${r}(${e.join(", ")}${i?`, ${t}`:""})`:`${r}(${e.join(" ")}${i?` / ${t}`:""})`}var jv,zv,At,Ji,qf,Ct,Uv,Vv,Qs=P(()=>{u();Df();jv=/^#([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i,zv=/^#([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i,At=/(?:\d+|\d*\.\d+)%?/,Ji=/(?:\s*,\s*|\s+)/,qf=/\s*[,/]\s*/,Ct=/var\(--(?:[^ )]*?)(?:,(?:[^ )]*?|var\(--[^ )]*?\)))?\)/,Uv=new RegExp(`^(rgba?)\\(\\s*(${At.source}|${Ct.source})(?:${Ji.source}(${At.source}|${Ct.source}))?(?:${Ji.source}(${At.source}|${Ct.source}))?(?:${qf.source}(${At.source}|${Ct.source}))?\\s*\\)$`),Vv=new RegExp(`^(hsla?)\\(\\s*((?:${At.source})(?:deg|rad|grad|turn)?|${Ct.source})(?:${Ji.source}(${At.source}|${Ct.source}))?(?:${Ji.source}(${At.source}|${Ct.source}))?(?:${qf.source}(${At.source}|${Ct.source}))?\\s*\\)$`)});function Je(r,e,t){if(typeof r=="function")return r({opacityValue:e});let i=$r(r,{loose:!0});return i===null?t:Gs({...i,alpha:e})}function Ae({color:r,property:e,variable:t}){let i=[].concat(e);if(typeof r=="function")return{[t]:"1",...Object.fromEntries(i.map(s=>[s,r({opacityVariable:t,opacityValue:`var(${t}, 1)`})]))};let n=$r(r);return n===null?Object.fromEntries(i.map(s=>[s,r])):n.alpha!==void 0?Object.fromEntries(i.map(s=>[s,r])):{[t]:"1",...Object.fromEntries(i.map(s=>[s,Gs({...n,alpha:`var(${t}, 1)`})]))}}var Lr=P(()=>{u();Qs()});function ve(r,e){let t=[],i=[],n=0,s=!1;for(let a=0;a{u()});function en(r){return ve(r,",").map(t=>{let i=t.trim(),n={raw:i},s=i.split(Wv),a=new Set;for(let o of s)$f.lastIndex=0,!a.has("KEYWORD")&&Hv.has(o)?(n.keyword=o,a.add("KEYWORD")):$f.test(o)?a.has("X")?a.has("Y")?a.has("BLUR")?a.has("SPREAD")||(n.spread=o,a.add("SPREAD")):(n.blur=o,a.add("BLUR")):(n.y=o,a.add("Y")):(n.x=o,a.add("X")):n.color?(n.unknown||(n.unknown=[]),n.unknown.push(o)):n.color=o;return n.valid=n.x!==void 0&&n.y!==void 0,n})}function Lf(r){return r.map(e=>e.valid?[e.keyword,e.x,e.y,e.blur,e.spread,e.color].filter(Boolean).join(" "):e.raw).join(", ")}var Hv,Wv,$f,Ys=P(()=>{u();zt();Hv=new Set(["inset","inherit","initial","revert","unset"]),Wv=/\ +(?![^(]*\))/g,$f=/^-?(\d+|\.\d+)(.*?)$/g});function Ks(r){return Gv.some(e=>new RegExp(`^${e}\\(.*\\)`).test(r))}function K(r,e=null,t=!0){let i=e&&Qv.has(e.property);return r.startsWith("--")&&!i?`var(${r})`:r.includes("url(")?r.split(/(url\(.*?\))/g).filter(Boolean).map(n=>/^url\(.*?\)$/.test(n)?n:K(n,e,!1)).join(""):(r=r.replace(/([^\\])_+/g,(n,s)=>s+" ".repeat(n.length-1)).replace(/^_/g," ").replace(/\\_/g,"_"),t&&(r=r.trim()),r=Yv(r),r)}function Ye(r){return r.includes("=")&&(r=r.replace(/(=.*)/g,(e,t)=>{if(t[1]==="'"||t[1]==='"')return t;if(t.length>2){let i=t[t.length-1];if(t[t.length-2]===" "&&(i==="i"||i==="I"||i==="s"||i==="S"))return`="${t.slice(1,-2)}" ${t[t.length-1]}`}return`="${t.slice(1)}"`})),r}function Yv(r){let e=["theme"],t=["min-content","max-content","fit-content","safe-area-inset-top","safe-area-inset-right","safe-area-inset-bottom","safe-area-inset-left","titlebar-area-x","titlebar-area-y","titlebar-area-width","titlebar-area-height","keyboard-inset-top","keyboard-inset-right","keyboard-inset-bottom","keyboard-inset-left","keyboard-inset-width","keyboard-inset-height","radial-gradient","linear-gradient","conic-gradient","repeating-radial-gradient","repeating-linear-gradient","repeating-conic-gradient","anchor-size"];return r.replace(/(calc|min|max|clamp)\(.+\)/g,i=>{let n="";function s(){let a=n.trimEnd();return a[a.length-1]}for(let a=0;ai[a+p]===d)},l=function(f){let d=1/0;for(let h of f){let b=i.indexOf(h,a);b!==-1&&bo(f))){let f=t.find(d=>o(d));n+=f,a+=f.length-1}else e.some(f=>o(f))?n+=l([")"]):o("[")?n+=l(["]"]):["+","-","*","/"].includes(c)&&!["(","+","-","*","/",","].includes(s())?n+=` ${c} `:n+=c}return n.replace(/\s+/g," ")})}function Xs(r){return r.startsWith("url(")}function Zs(r){return!isNaN(Number(r))||Ks(r)}function Mr(r){return r.endsWith("%")&&Zs(r.slice(0,-1))||Ks(r)}function Nr(r){return r==="0"||new RegExp(`^[+-]?[0-9]*.?[0-9]+(?:[eE][+-]?[0-9]+)?${Xv}$`).test(r)||Ks(r)}function Mf(r){return Zv.has(r)}function Nf(r){let e=en(K(r));for(let t of e)if(!t.valid)return!1;return!0}function Bf(r){let e=0;return ve(r,"_").every(i=>(i=K(i),i.startsWith("var(")?!0:$r(i,{loose:!0})!==null?(e++,!0):!1))?e>0:!1}function Ff(r){let e=0;return ve(r,",").every(i=>(i=K(i),i.startsWith("var(")?!0:Xs(i)||ex(i)||["element(","image(","cross-fade(","image-set("].some(n=>i.startsWith(n))?(e++,!0):!1))?e>0:!1}function ex(r){r=K(r);for(let e of Jv)if(r.startsWith(`${e}(`))return!0;return!1}function jf(r){let e=0;return ve(r,"_").every(i=>(i=K(i),i.startsWith("var(")?!0:tx.has(i)||Nr(i)||Mr(i)?(e++,!0):!1))?e>0:!1}function zf(r){let e=0;return ve(r,",").every(i=>(i=K(i),i.startsWith("var(")?!0:i.includes(" ")&&!/(['"])([^"']+)\1/g.test(i)||/^\d/g.test(i)?!1:(e++,!0)))?e>0:!1}function Uf(r){return rx.has(r)}function Vf(r){return ix.has(r)}function Hf(r){return nx.has(r)}var Gv,Qv,Kv,Xv,Zv,Jv,tx,rx,ix,nx,Br=P(()=>{u();Qs();Ys();zt();Gv=["min","max","clamp","calc"];Qv=new Set(["scroll-timeline-name","timeline-scope","view-timeline-name","font-palette","anchor-name","anchor-scope","position-anchor","position-try-options","scroll-timeline","animation-timeline","view-timeline","position-try"]);Kv=["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"],Xv=`(?:${Kv.join("|")})`;Zv=new Set(["thin","medium","thick"]);Jv=new Set(["conic-gradient","linear-gradient","radial-gradient","repeating-conic-gradient","repeating-linear-gradient","repeating-radial-gradient"]);tx=new Set(["center","top","right","bottom","left"]);rx=new Set(["serif","sans-serif","monospace","cursive","fantasy","system-ui","ui-serif","ui-sans-serif","ui-monospace","ui-rounded","math","emoji","fangsong"]);ix=new Set(["xx-small","x-small","small","medium","large","x-large","xx-large","xxx-large"]);nx=new Set(["larger","smaller"])});function Wf(r){let e=["cover","contain"];return ve(r,",").every(t=>{let i=ve(t,"_").filter(Boolean);return i.length===1&&e.includes(i[0])?!0:i.length!==1&&i.length!==2?!1:i.every(n=>Nr(n)||Mr(n)||n==="auto")})}var Gf=P(()=>{u();Br();zt()});function Qf(r,e){r.walkClasses(t=>{t.value=e(t.value),t.raws&&t.raws.value&&(t.raws.value=jt(t.raws.value))})}function Yf(r,e){if(!_t(r))return;let t=r.slice(1,-1);if(!!e(t))return K(t)}function sx(r,e={},t){let i=e[r];if(i!==void 0)return xt(i);if(_t(r)){let n=Yf(r,t);return n===void 0?void 0:xt(n)}}function tn(r,e={},{validate:t=()=>!0}={}){let i=e.values?.[r];return i!==void 0?i:e.supportsNegativeValues&&r.startsWith("-")?sx(r.slice(1),e.values,t):Yf(r,t)}function _t(r){return r.startsWith("[")&&r.endsWith("]")}function Kf(r){let e=r.lastIndexOf("/"),t=r.lastIndexOf("[",e),i=r.indexOf("]",e);return r[e-1]==="]"||r[e+1]==="["||t!==-1&&i!==-1&&t")){let e=r;return({opacityValue:t=1})=>e.replace(//g,t)}return r}function Xf(r){return K(r.slice(1,-1))}function ax(r,e={},{tailwindConfig:t={}}={}){if(e.values?.[r]!==void 0)return Xt(e.values?.[r]);let[i,n]=Kf(r);if(n!==void 0){let s=e.values?.[i]??(_t(i)?i.slice(1,-1):void 0);return s===void 0?void 0:(s=Xt(s),_t(n)?Je(s,Xf(n)):t.theme?.opacity?.[n]===void 0?void 0:Je(s,t.theme.opacity[n]))}return tn(r,e,{validate:Bf})}function ox(r,e={}){return e.values?.[r]}function qe(r){return(e,t)=>tn(e,t,{validate:r})}function lx(r,e){let t=r.indexOf(e);return t===-1?[void 0,r]:[r.slice(0,t),r.slice(t+1)]}function ea(r,e,t,i){if(t.values&&e in t.values)for(let{type:s}of r??[]){let a=Js[s](e,t,{tailwindConfig:i});if(a!==void 0)return[a,s,null]}if(_t(e)){let s=e.slice(1,-1),[a,o]=lx(s,":");if(!/^[\w-_]+$/g.test(a))o=s;else if(a!==void 0&&!Zf.includes(a))return[];if(o.length>0&&Zf.includes(a))return[tn(`[${o}]`,t),a,null]}let n=ta(r,e,t,i);for(let s of n)return s;return[]}function*ta(r,e,t,i){let n=we(i,"generalizedModifiers"),[s,a]=Kf(e);if(n&&t.modifiers!=null&&(t.modifiers==="any"||typeof t.modifiers=="object"&&(a&&_t(a)||a in t.modifiers))||(s=e,a=void 0),a!==void 0&&s===""&&(s="DEFAULT"),a!==void 0&&typeof t.modifiers=="object"){let l=t.modifiers?.[a]??null;l!==null?a=l:_t(a)&&(a=Xf(a))}for(let{type:l}of r??[]){let c=Js[l](s,t,{tailwindConfig:i});c!==void 0&&(yield[c,l,a??null])}}var Js,Zf,Fr=P(()=>{u();Zi();Lr();Br();Gi();Gf();ct();Js={any:tn,color:ax,url:qe(Xs),image:qe(Ff),length:qe(Nr),percentage:qe(Mr),position:qe(jf),lookup:ox,"generic-name":qe(Uf),"family-name":qe(zf),number:qe(Zs),"line-width":qe(Mf),"absolute-size":qe(Vf),"relative-size":qe(Hf),shadow:qe(Nf),size:qe(Wf)},Zf=Object.keys(Js)});function X(r){return typeof r=="function"?r({}):r}var ra=P(()=>{u()});function Zt(r){return typeof r=="function"}function jr(r,...e){let t=e.pop();for(let i of e)for(let n in i){let s=t(r[n],i[n]);s===void 0?ke(r[n])&&ke(i[n])?r[n]=jr({},r[n],i[n],t):r[n]=i[n]:r[n]=s}return r}function ux(r,...e){return Zt(r)?r(...e):r}function fx(r){return r.reduce((e,{extend:t})=>jr(e,t,(i,n)=>i===void 0?[n]:Array.isArray(i)?[n,...i]:[n,i]),{})}function cx(r){return{...r.reduce((e,t)=>Hs(e,t),{}),extend:fx(r)}}function Jf(r,e){if(Array.isArray(r)&&ke(r[0]))return r.concat(e);if(Array.isArray(e)&&ke(e[0])&&ke(r))return[r,...e];if(Array.isArray(e))return e}function px({extend:r,...e}){return jr(e,r,(t,i)=>!Zt(t)&&!i.some(Zt)?jr({},t,...i,Jf):(n,s)=>jr({},...[t,...i].map(a=>ux(a,n,s)),Jf))}function*dx(r){let e=kt(r);if(e.length===0||(yield e,Array.isArray(r)))return;let t=/^(.*?)\s*\/\s*([^/]+)$/,i=r.match(t);if(i!==null){let[,n,s]=i,a=kt(n);a.alpha=s,yield a}}function hx(r){let e=(t,i)=>{for(let n of dx(t)){let s=0,a=r;for(;a!=null&&s(t[i]=Zt(r[i])?r[i](e,ia):r[i],t),{})}function ec(r){let e=[];return r.forEach(t=>{e=[...e,t];let i=t?.plugins??[];i.length!==0&&i.forEach(n=>{n.__isOptionsFunction&&(n=n()),e=[...e,...ec([n?.config??{}])]})}),e}function mx(r){return[...r].reduceRight((t,i)=>Zt(i)?i({corePlugins:t}):kf(i,t),vf)}function gx(r){return[...r].reduceRight((t,i)=>[...t,...i],[])}function na(r){let e=[...ec(r),{prefix:"",important:!1,separator:":"}];return Pf(Hs({theme:hx(px(cx(e.map(t=>t?.theme??{})))),corePlugins:mx(e.map(t=>t.corePlugins)),plugins:gx(r.map(t=>t?.plugins??[]))},...e))}var ia,tc=P(()=>{u();Gi();xf();Sf();Vs();Ef();Yi();If();Kt();Xi();Fr();Lr();ra();ia={colors:Us,negative(r){return Object.keys(r).filter(e=>r[e]!=="0").reduce((e,t)=>{let i=xt(r[t]);return i!==void 0&&(e[`-${t}`]=i),e},{})},breakpoints(r){return Object.keys(r).filter(e=>typeof r[e]=="string").reduce((e,t)=>({...e,[`screen-${t}`]:r[t]}),{})}}});var rn=x((f3,rc)=>{u();rc.exports={content:[],presets:[],darkMode:"media",theme:{accentColor:({theme:r})=>({...r("colors"),auto:"auto"}),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9"},backdropBlur:({theme:r})=>r("blur"),backdropBrightness:({theme:r})=>r("brightness"),backdropContrast:({theme:r})=>r("contrast"),backdropGrayscale:({theme:r})=>r("grayscale"),backdropHueRotate:({theme:r})=>r("hueRotate"),backdropInvert:({theme:r})=>r("invert"),backdropOpacity:({theme:r})=>r("opacity"),backdropSaturate:({theme:r})=>r("saturate"),backdropSepia:({theme:r})=>r("sepia"),backgroundColor:({theme:r})=>r("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:r})=>r("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:r})=>({...r("colors"),DEFAULT:r("colors.gray.200","currentColor")}),borderOpacity:({theme:r})=>r("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:r})=>({...r("spacing")}),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px"},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:r})=>r("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2"},caretColor:({theme:r})=>r("colors"),colors:({colors:r})=>({inherit:r.inherit,current:r.current,transparent:r.transparent,black:r.black,white:r.white,slate:r.slate,gray:r.gray,zinc:r.zinc,neutral:r.neutral,stone:r.stone,red:r.red,orange:r.orange,amber:r.amber,yellow:r.yellow,lime:r.lime,green:r.green,emerald:r.emerald,teal:r.teal,cyan:r.cyan,sky:r.sky,blue:r.blue,indigo:r.indigo,violet:r.violet,purple:r.purple,fuchsia:r.fuchsia,pink:r.pink,rose:r.rose}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem"},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2"},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:r})=>r("borderColor"),divideOpacity:({theme:r})=>r("borderOpacity"),divideWidth:({theme:r})=>r("borderWidth"),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:r})=>({none:"none",...r("colors")}),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:r})=>({auto:"auto",...r("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%"}),flexGrow:{0:"0",DEFAULT:"1"},flexShrink:{0:"0",DEFAULT:"1"},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:r})=>r("spacing"),gradientColorStops:({theme:r})=>r("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%"},grayscale:{0:"0",DEFAULT:"100%"},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))"},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))"},height:({theme:r})=>({auto:"auto",...r("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content"}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg"},inset:({theme:r})=>({auto:"auto",...r("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%"}),invert:{0:"0",DEFAULT:"100%"},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:r})=>({auto:"auto",...r("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6"},maxHeight:({theme:r})=>({...r("spacing"),none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content"}),maxWidth:({theme:r,breakpoints:e})=>({...r("spacing"),none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...e(r("screens"))}),minHeight:({theme:r})=>({...r("spacing"),full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content"}),minWidth:({theme:r})=>({...r("spacing"),full:"100%",min:"min-content",max:"max-content",fit:"fit-content"}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1"},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12"},outlineColor:({theme:r})=>r("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},padding:({theme:r})=>r("spacing"),placeholderColor:({theme:r})=>r("colors"),placeholderOpacity:({theme:r})=>r("opacity"),ringColor:({theme:r})=>({DEFAULT:r("colors.blue.500","#3b82f6"),...r("colors")}),ringOffsetColor:({theme:r})=>r("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},ringOpacity:({theme:r})=>({DEFAULT:"0.5",...r("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg"},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2"},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5"},screens:{sm:"640px",md:"768px",lg:"1024px",xl:"1280px","2xl":"1536px"},scrollMargin:({theme:r})=>({...r("spacing")}),scrollPadding:({theme:r})=>r("spacing"),sepia:{0:"0",DEFAULT:"100%"},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg"},space:({theme:r})=>({...r("spacing")}),spacing:{px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},stroke:({theme:r})=>({none:"none",...r("colors")}),strokeWidth:{0:"0",1:"1",2:"2"},supports:{},data:{},textColor:({theme:r})=>r("colors"),textDecorationColor:({theme:r})=>r("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},textIndent:({theme:r})=>({...r("spacing")}),textOpacity:({theme:r})=>r("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms"},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms"},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:r})=>({...r("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%"}),size:({theme:r})=>({auto:"auto",...r("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content"}),width:({theme:r})=>({auto:"auto",...r("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content"}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50"}},plugins:[]}});function nn(r){let e=(r?.presets??[ic.default]).slice().reverse().flatMap(n=>nn(n instanceof Function?n():n)),t={respectDefaultRingColorOpacity:{theme:{ringColor:({theme:n})=>({DEFAULT:"#3b82f67f",...n("colors")})}},disableColorOpacityUtilitiesByDefault:{corePlugins:{backgroundOpacity:!1,borderOpacity:!1,divideOpacity:!1,placeholderOpacity:!1,ringOpacity:!1,textOpacity:!1}}},i=Object.keys(t).filter(n=>we(r,n)).map(n=>t[n]);return[r,...i,...e]}var ic,nc=P(()=>{u();ic=pe(rn());ct()});var sc={};Ge(sc,{default:()=>zr});function zr(...r){let[,...e]=nn(r[0]);return na([...r,...e])}var sa=P(()=>{u();tc();nc()});var Ur={};Ge(Ur,{default:()=>me});var me,et=P(()=>{u();me={resolve:r=>r,extname:r=>"."+r.split(".").pop()}});function sn(r){return typeof r=="object"&&r!==null}function bx(r){return Object.keys(r).length===0}function ac(r){return typeof r=="string"||r instanceof String}function aa(r){return sn(r)&&r.config===void 0&&!bx(r)?null:sn(r)&&r.config!==void 0&&ac(r.config)?me.resolve(r.config):sn(r)&&r.config!==void 0&&sn(r.config)?null:ac(r)?me.resolve(r):wx()}function wx(){for(let r of yx)try{let e=me.resolve(r);return be.accessSync(e),e}catch(e){}return null}var yx,oc=P(()=>{u();ft();et();yx=["./tailwind.config.js","./tailwind.config.cjs","./tailwind.config.mjs","./tailwind.config.ts","./tailwind.config.cts","./tailwind.config.mts"]});var lc={};Ge(lc,{default:()=>oa});var oa,la=P(()=>{u();oa={parse:r=>({href:r})}});var ua=x(()=>{u()});var an=x((v3,cc)=>{u();"use strict";var uc=(Qi(),Af),fc=ua(),Jt=class extends Error{constructor(e,t,i,n,s,a){super(e);this.name="CssSyntaxError",this.reason=e,s&&(this.file=s),n&&(this.source=n),a&&(this.plugin=a),typeof t!="undefined"&&typeof i!="undefined"&&(typeof t=="number"?(this.line=t,this.column=i):(this.line=t.line,this.column=t.column,this.endLine=i.line,this.endColumn=i.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,Jt)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"",typeof this.line!="undefined"&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(e){if(!this.source)return"";let t=this.source;e==null&&(e=uc.isColorSupported);let i=f=>f,n=f=>f,s=f=>f;if(e){let{bold:f,gray:d,red:p}=uc.createColors(!0);n=h=>f(p(h)),i=h=>d(h),fc&&(s=h=>fc(h))}let a=t.split(/\r?\n/),o=Math.max(this.line-3,0),l=Math.min(this.line+2,a.length),c=String(l).length;return a.slice(o,l).map((f,d)=>{let p=o+1+d,h=" "+(" "+p).slice(-c)+" | ";if(p===this.line){if(f.length>160){let v=20,y=Math.max(0,this.column-v),w=Math.max(this.column+v,this.endColumn+v),k=f.slice(y,w),S=i(h.replace(/\d/g," "))+f.slice(0,Math.min(this.column-1,v-1)).replace(/[^\t]/g," ");return n(">")+i(h)+s(k)+` + `+S+n("^")}let b=i(h.replace(/\d/g," "))+f.slice(0,this.column-1).replace(/[^\t]/g," ");return n(">")+i(h)+s(f)+` + `+b+n("^")}return" "+i(h)+s(f)}).join(` +`)}toString(){let e=this.showSourceCode();return e&&(e=` + +`+e+` +`),this.name+": "+this.message+e}};cc.exports=Jt;Jt.default=Jt});var fa=x((x3,dc)=>{u();"use strict";var pc={after:` +`,beforeClose:` +`,beforeComment:` +`,beforeDecl:` +`,beforeOpen:" ",beforeRule:` +`,colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1};function vx(r){return r[0].toUpperCase()+r.slice(1)}var on=class{constructor(e){this.builder=e}atrule(e,t){let i="@"+e.name,n=e.params?this.rawValue(e,"params"):"";if(typeof e.raws.afterName!="undefined"?i+=e.raws.afterName:n&&(i+=" "),e.nodes)this.block(e,i+n);else{let s=(e.raws.between||"")+(t?";":"");this.builder(i+n+s,e)}}beforeAfter(e,t){let i;e.type==="decl"?i=this.raw(e,null,"beforeDecl"):e.type==="comment"?i=this.raw(e,null,"beforeComment"):t==="before"?i=this.raw(e,null,"beforeRule"):i=this.raw(e,null,"beforeClose");let n=e.parent,s=0;for(;n&&n.type!=="root";)s+=1,n=n.parent;if(i.includes(` +`)){let a=this.raw(e,null,"indent");if(a.length)for(let o=0;o0&&e.nodes[t].type==="comment";)t-=1;let i=this.raw(e,"semicolon");for(let n=0;n{if(n=l.raws[t],typeof n!="undefined")return!1})}return typeof n=="undefined"&&(n=pc[i]),a.rawCache[i]=n,n}rawBeforeClose(e){let t;return e.walk(i=>{if(i.nodes&&i.nodes.length>0&&typeof i.raws.after!="undefined")return t=i.raws.after,t.includes(` +`)&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}rawBeforeComment(e,t){let i;return e.walkComments(n=>{if(typeof n.raws.before!="undefined")return i=n.raws.before,i.includes(` +`)&&(i=i.replace(/[^\n]+$/,"")),!1}),typeof i=="undefined"?i=this.raw(t,null,"beforeDecl"):i&&(i=i.replace(/\S/g,"")),i}rawBeforeDecl(e,t){let i;return e.walkDecls(n=>{if(typeof n.raws.before!="undefined")return i=n.raws.before,i.includes(` +`)&&(i=i.replace(/[^\n]+$/,"")),!1}),typeof i=="undefined"?i=this.raw(t,null,"beforeRule"):i&&(i=i.replace(/\S/g,"")),i}rawBeforeOpen(e){let t;return e.walk(i=>{if(i.type!=="decl"&&(t=i.raws.between,typeof t!="undefined"))return!1}),t}rawBeforeRule(e){let t;return e.walk(i=>{if(i.nodes&&(i.parent!==e||e.first!==i)&&typeof i.raws.before!="undefined")return t=i.raws.before,t.includes(` +`)&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}rawColon(e){let t;return e.walkDecls(i=>{if(typeof i.raws.between!="undefined")return t=i.raws.between.replace(/[^\s:]/g,""),!1}),t}rawEmptyBody(e){let t;return e.walk(i=>{if(i.nodes&&i.nodes.length===0&&(t=i.raws.after,typeof t!="undefined"))return!1}),t}rawIndent(e){if(e.raws.indent)return e.raws.indent;let t;return e.walk(i=>{let n=i.parent;if(n&&n!==e&&n.parent&&n.parent===e&&typeof i.raws.before!="undefined"){let s=i.raws.before.split(` +`);return t=s[s.length-1],t=t.replace(/\S/g,""),!1}}),t}rawSemicolon(e){let t;return e.walk(i=>{if(i.nodes&&i.nodes.length&&i.last.type==="decl"&&(t=i.raws.semicolon,typeof t!="undefined"))return!1}),t}rawValue(e,t){let i=e[t],n=e.raws[t];return n&&n.value===i?n.raw:i}root(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}rule(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}stringify(e,t){if(!this[e.type])throw new Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}};dc.exports=on;on.default=on});var Vr=x((k3,hc)=>{u();"use strict";var xx=fa();function ca(r,e){new xx(e).stringify(r)}hc.exports=ca;ca.default=ca});var ln=x((S3,pa)=>{u();"use strict";pa.exports.isClean=Symbol("isClean");pa.exports.my=Symbol("my")});var Gr=x((A3,mc)=>{u();"use strict";var kx=an(),Sx=fa(),Ax=Vr(),{isClean:Hr,my:Cx}=ln();function da(r,e){let t=new r.constructor;for(let i in r){if(!Object.prototype.hasOwnProperty.call(r,i)||i==="proxyCache")continue;let n=r[i],s=typeof n;i==="parent"&&s==="object"?e&&(t[i]=e):i==="source"?t[i]=n:Array.isArray(n)?t[i]=n.map(a=>da(a,t)):(s==="object"&&n!==null&&(n=da(n)),t[i]=n)}return t}function Wr(r,e){if(e&&typeof e.offset!="undefined")return e.offset;let t=1,i=1,n=0;for(let s=0;se.root().toProxy():e[t]},set(e,t,i){return e[t]===i||(e[t]=i,(t==="prop"||t==="value"||t==="name"||t==="params"||t==="important"||t==="text")&&e.markDirty()),!0}}}markClean(){this[Hr]=!0}markDirty(){if(this[Hr]){this[Hr]=!1;let e=this;for(;e=e.parent;)e[Hr]=!1}}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}positionBy(e){let t=this.source.start;if(e.index)t=this.positionInside(e.index);else if(e.word){let n=this.source.input.css.slice(Wr(this.source.input.css,this.source.start),Wr(this.source.input.css,this.source.end)).indexOf(e.word);n!==-1&&(t=this.positionInside(n))}return t}positionInside(e){let t=this.source.start.column,i=this.source.start.line,n=Wr(this.source.input.css,this.source.start),s=n+e;for(let a=n;atypeof l=="object"&&l.toJSON?l.toJSON(null,t):l);else if(typeof o=="object"&&o.toJSON)i[a]=o.toJSON(null,t);else if(a==="source"){let l=t.get(o.input);l==null&&(l=s,t.set(o.input,s),s++),i[a]={end:o.end,inputId:l,start:o.start}}else i[a]=o}return n&&(i.inputs=[...t.keys()].map(a=>a.toJSON())),i}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}toString(e=Ax){e.stringify&&(e=e.stringify);let t="";return e(this,i=>{t+=i}),t}warn(e,t,i){let n={node:this};for(let s in i)n[s]=i[s];return e.warn(t,n)}get proxyOf(){return this}};mc.exports=un;un.default=un});var Qr=x((C3,gc)=>{u();"use strict";var _x=Gr(),fn=class extends _x{constructor(e){super(e);this.type="comment"}};gc.exports=fn;fn.default=fn});var Yr=x((_3,yc)=>{u();"use strict";var Ex=Gr(),cn=class extends Ex{constructor(e){e&&typeof e.value!="undefined"&&typeof e.value!="string"&&(e={...e,value:String(e.value)});super(e);this.type="decl"}get variable(){return this.prop.startsWith("--")||this.prop[0]==="$"}};yc.exports=cn;cn.default=cn});var Et=x((E3,_c)=>{u();"use strict";var bc=Qr(),wc=Yr(),Ox=Gr(),{isClean:vc,my:xc}=ln(),ha,kc,Sc,ma;function Ac(r){return r.map(e=>(e.nodes&&(e.nodes=Ac(e.nodes)),delete e.source,e))}function Cc(r){if(r[vc]=!1,r.proxyOf.nodes)for(let e of r.proxyOf.nodes)Cc(e)}var Fe=class extends Ox{append(...e){for(let t of e){let i=this.normalize(t,this.last);for(let n of i)this.proxyOf.nodes.push(n)}return this.markDirty(),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let t of this.nodes)t.cleanRaws(e)}each(e){if(!this.proxyOf.nodes)return;let t=this.getIterator(),i,n;for(;this.indexes[t]e[t](...i.map(n=>typeof n=="function"?(s,a)=>n(s.toProxy(),a):n)):t==="every"||t==="some"?i=>e[t]((n,...s)=>i(n.toProxy(),...s)):t==="root"?()=>e.root().toProxy():t==="nodes"?e.nodes.map(i=>i.toProxy()):t==="first"||t==="last"?e[t].toProxy():e[t]:e[t]},set(e,t,i){return e[t]===i||(e[t]=i,(t==="name"||t==="params"||t==="selector")&&e.markDirty()),!0}}}index(e){return typeof e=="number"?e:(e.proxyOf&&(e=e.proxyOf),this.proxyOf.nodes.indexOf(e))}insertAfter(e,t){let i=this.index(e),n=this.normalize(t,this.proxyOf.nodes[i]).reverse();i=this.index(e);for(let a of n)this.proxyOf.nodes.splice(i+1,0,a);let s;for(let a in this.indexes)s=this.indexes[a],i(n[xc]||Fe.rebuild(n),n=n.proxyOf,n.parent&&n.parent.removeChild(n),n[vc]&&Cc(n),n.raws||(n.raws={}),typeof n.raws.before=="undefined"&&t&&typeof t.raws.before!="undefined"&&(n.raws.before=t.raws.before.replace(/\S/g,"")),n.parent=this.proxyOf,n))}prepend(...e){e=e.reverse();for(let t of e){let i=this.normalize(t,this.first,"prepend").reverse();for(let n of i)this.proxyOf.nodes.unshift(n);for(let n in this.indexes)this.indexes[n]=this.indexes[n]+i.length}return this.markDirty(),this}push(e){return e.parent=this,this.proxyOf.nodes.push(e),this}removeAll(){for(let e of this.proxyOf.nodes)e.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}removeChild(e){e=this.index(e),this.proxyOf.nodes[e].parent=void 0,this.proxyOf.nodes.splice(e,1);let t;for(let i in this.indexes)t=this.indexes[i],t>=e&&(this.indexes[i]=t-1);return this.markDirty(),this}replaceValues(e,t,i){return i||(i=t,t={}),this.walkDecls(n=>{t.props&&!t.props.includes(n.prop)||t.fast&&!n.value.includes(t.fast)||(n.value=n.value.replace(e,i))}),this.markDirty(),this}some(e){return this.nodes.some(e)}walk(e){return this.each((t,i)=>{let n;try{n=e(t,i)}catch(s){throw t.addToError(s)}return n!==!1&&t.walk&&(n=t.walk(e)),n})}walkAtRules(e,t){return t?e instanceof RegExp?this.walk((i,n)=>{if(i.type==="atrule"&&e.test(i.name))return t(i,n)}):this.walk((i,n)=>{if(i.type==="atrule"&&i.name===e)return t(i,n)}):(t=e,this.walk((i,n)=>{if(i.type==="atrule")return t(i,n)}))}walkComments(e){return this.walk((t,i)=>{if(t.type==="comment")return e(t,i)})}walkDecls(e,t){return t?e instanceof RegExp?this.walk((i,n)=>{if(i.type==="decl"&&e.test(i.prop))return t(i,n)}):this.walk((i,n)=>{if(i.type==="decl"&&i.prop===e)return t(i,n)}):(t=e,this.walk((i,n)=>{if(i.type==="decl")return t(i,n)}))}walkRules(e,t){return t?e instanceof RegExp?this.walk((i,n)=>{if(i.type==="rule"&&e.test(i.selector))return t(i,n)}):this.walk((i,n)=>{if(i.type==="rule"&&i.selector===e)return t(i,n)}):(t=e,this.walk((i,n)=>{if(i.type==="rule")return t(i,n)}))}get first(){if(!!this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(!!this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}};Fe.registerParse=r=>{kc=r};Fe.registerRule=r=>{ma=r};Fe.registerAtRule=r=>{ha=r};Fe.registerRoot=r=>{Sc=r};_c.exports=Fe;Fe.default=Fe;Fe.rebuild=r=>{r.type==="atrule"?Object.setPrototypeOf(r,ha.prototype):r.type==="rule"?Object.setPrototypeOf(r,ma.prototype):r.type==="decl"?Object.setPrototypeOf(r,wc.prototype):r.type==="comment"?Object.setPrototypeOf(r,bc.prototype):r.type==="root"&&Object.setPrototypeOf(r,Sc.prototype),r[xc]=!0,r.nodes&&r.nodes.forEach(e=>{Fe.rebuild(e)})}});var pn=x((O3,Oc)=>{u();"use strict";var Ec=Et(),Kr=class extends Ec{constructor(e){super(e);this.type="atrule"}append(...e){return this.proxyOf.nodes||(this.nodes=[]),super.append(...e)}prepend(...e){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...e)}};Oc.exports=Kr;Kr.default=Kr;Ec.registerAtRule(Kr)});var dn=x((T3,Pc)=>{u();"use strict";var Tx=Et(),Tc,Rc,er=class extends Tx{constructor(e){super({type:"document",...e});this.nodes||(this.nodes=[])}toResult(e={}){return new Tc(new Rc,this,e).stringify()}};er.registerLazyResult=r=>{Tc=r};er.registerProcessor=r=>{Rc=r};Pc.exports=er;er.default=er});var Dc=x((R3,Ic)=>{u();var Rx="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict",Px=(r,e=21)=>(t=e)=>{let i="",n=t;for(;n--;)i+=r[Math.random()*r.length|0];return i},Ix=(r=21)=>{let e="",t=r;for(;t--;)e+=Rx[Math.random()*64|0];return e};Ic.exports={nanoid:Ix,customAlphabet:Px}});var qc=x(()=>{u()});var ga=x((D3,$c)=>{u();$c.exports={}});var mn=x((q3,Bc)=>{u();"use strict";var{nanoid:Dx}=Dc(),{isAbsolute:ya,resolve:ba}=(et(),Ur),{SourceMapConsumer:qx,SourceMapGenerator:$x}=qc(),{fileURLToPath:Lc,pathToFileURL:hn}=(la(),lc),Mc=an(),Lx=ga(),wa=ua(),va=Symbol("fromOffsetCache"),Mx=Boolean(qx&&$x),Nc=Boolean(ba&&ya),Xr=class{constructor(e,t={}){if(e===null||typeof e=="undefined"||typeof e=="object"&&!e.toString)throw new Error(`PostCSS received ${e} instead of CSS string`);if(this.css=e.toString(),this.css[0]==="\uFEFF"||this.css[0]==="\uFFFE"?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,t.from&&(!Nc||/^\w+:\/\//.test(t.from)||ya(t.from)?this.file=t.from:this.file=ba(t.from)),Nc&&Mx){let i=new Lx(this.css,t);if(i.text){this.map=i;let n=i.consumer().file;!this.file&&n&&(this.file=this.mapResolve(n))}}this.file||(this.id=""),this.map&&(this.map.file=this.from)}error(e,t,i,n={}){let s,a,o;if(t&&typeof t=="object"){let c=t,f=i;if(typeof c.offset=="number"){let d=this.fromOffset(c.offset);t=d.line,i=d.col}else t=c.line,i=c.column;if(typeof f.offset=="number"){let d=this.fromOffset(f.offset);a=d.line,s=d.col}else a=f.line,s=f.column}else if(!i){let c=this.fromOffset(t);t=c.line,i=c.col}let l=this.origin(t,i,a,s);return l?o=new Mc(e,l.endLine===void 0?l.line:{column:l.column,line:l.line},l.endLine===void 0?l.column:{column:l.endColumn,line:l.endLine},l.source,l.file,n.plugin):o=new Mc(e,a===void 0?t:{column:i,line:t},a===void 0?i:{column:s,line:a},this.css,this.file,n.plugin),o.input={column:i,endColumn:s,endLine:a,line:t,source:this.css},this.file&&(hn&&(o.input.url=hn(this.file).toString()),o.input.file=this.file),o}fromOffset(e){let t,i;if(this[va])i=this[va];else{let s=this.css.split(` +`);i=new Array(s.length);let a=0;for(let o=0,l=s.length;o=t)n=i.length-1;else{let s=i.length-2,a;for(;n>1),e=i[a+1])n=a+1;else{n=a;break}}return{col:e-i[n]+1,line:n+1}}mapResolve(e){return/^\w+:\/\//.test(e)?e:ba(this.map.consumer().sourceRoot||this.map.root||".",e)}origin(e,t,i,n){if(!this.map)return!1;let s=this.map.consumer(),a=s.originalPositionFor({column:t,line:e});if(!a.source)return!1;let o;typeof i=="number"&&(o=s.originalPositionFor({column:n,line:i}));let l;ya(a.source)?l=hn(a.source):l=new URL(a.source,this.map.consumer().sourceRoot||hn(this.map.mapFile));let c={column:a.column,endColumn:o&&o.column,endLine:o&&o.line,line:a.line,url:l.toString()};if(l.protocol==="file:")if(Lc)c.file=Lc(l);else throw new Error("file: protocol is not available in this PostCSS build");let f=s.sourceContentFor(a.source);return f&&(c.source=f),c}toJSON(){let e={};for(let t of["hasBOM","css","file","id"])this[t]!=null&&(e[t]=this[t]);return this.map&&(e.map={...this.map},e.map.consumerCache&&(e.map.consumerCache=void 0)),e}get from(){return this.file||this.id}};Bc.exports=Xr;Xr.default=Xr;wa&&wa.registerInput&&wa.registerInput(Xr)});var tr=x(($3,Uc)=>{u();"use strict";var Fc=Et(),jc,zc,Ut=class extends Fc{constructor(e){super(e);this.type="root",this.nodes||(this.nodes=[])}normalize(e,t,i){let n=super.normalize(e);if(t){if(i==="prepend")this.nodes.length>1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)for(let s of n)s.raws.before=t.raws.before}return n}removeChild(e,t){let i=this.index(e);return!t&&i===0&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[i].raws.before),super.removeChild(e)}toResult(e={}){return new jc(new zc,this,e).stringify()}};Ut.registerLazyResult=r=>{jc=r};Ut.registerProcessor=r=>{zc=r};Uc.exports=Ut;Ut.default=Ut;Fc.registerRoot(Ut)});var xa=x((L3,Vc)=>{u();"use strict";var Zr={comma(r){return Zr.split(r,[","],!0)},space(r){let e=[" ",` +`," "];return Zr.split(r,e)},split(r,e,t){let i=[],n="",s=!1,a=0,o=!1,l="",c=!1;for(let f of r)c?c=!1:f==="\\"?c=!0:o?f===l&&(o=!1):f==='"'||f==="'"?(o=!0,l=f):f==="("?a+=1:f===")"?a>0&&(a-=1):a===0&&e.includes(f)&&(s=!0),s?(n!==""&&i.push(n.trim()),n="",s=!1):n+=f;return(t||n!=="")&&i.push(n.trim()),i}};Vc.exports=Zr;Zr.default=Zr});var gn=x((M3,Wc)=>{u();"use strict";var Hc=Et(),Nx=xa(),Jr=class extends Hc{constructor(e){super(e);this.type="rule",this.nodes||(this.nodes=[])}get selectors(){return Nx.comma(this.selector)}set selectors(e){let t=this.selector?this.selector.match(/,\s*/):null,i=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(i)}};Wc.exports=Jr;Jr.default=Jr;Hc.registerRule(Jr)});var Qc=x((N3,Gc)=>{u();"use strict";var Bx=pn(),Fx=Qr(),jx=Yr(),zx=mn(),Ux=ga(),Vx=tr(),Hx=gn();function ei(r,e){if(Array.isArray(r))return r.map(n=>ei(n));let{inputs:t,...i}=r;if(t){e=[];for(let n of t){let s={...n,__proto__:zx.prototype};s.map&&(s.map={...s.map,__proto__:Ux.prototype}),e.push(s)}}if(i.nodes&&(i.nodes=r.nodes.map(n=>ei(n,e))),i.source){let{inputId:n,...s}=i.source;i.source=s,n!=null&&(i.source.input=e[n])}if(i.type==="root")return new Vx(i);if(i.type==="decl")return new jx(i);if(i.type==="rule")return new Hx(i);if(i.type==="comment")return new Fx(i);if(i.type==="atrule")return new Bx(i);throw new Error("Unknown node type: "+r.type)}Gc.exports=ei;ei.default=ei});var ka=x((B3,Yc)=>{u();Yc.exports=function(r,e){return{generate:()=>{let t="";return r(e,i=>{t+=i}),[t]}}}});var ep=x((F3,Jc)=>{u();"use strict";var Sa="'".charCodeAt(0),Kc='"'.charCodeAt(0),yn="\\".charCodeAt(0),Xc="/".charCodeAt(0),bn=` +`.charCodeAt(0),ti=" ".charCodeAt(0),wn="\f".charCodeAt(0),vn=" ".charCodeAt(0),xn="\r".charCodeAt(0),Wx="[".charCodeAt(0),Gx="]".charCodeAt(0),Qx="(".charCodeAt(0),Yx=")".charCodeAt(0),Kx="{".charCodeAt(0),Xx="}".charCodeAt(0),Zx=";".charCodeAt(0),Jx="*".charCodeAt(0),e1=":".charCodeAt(0),t1="@".charCodeAt(0),kn=/[\t\n\f\r "#'()/;[\\\]{}]/g,Sn=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,r1=/.[\r\n"'(/\\]/,Zc=/[\da-f]/i;Jc.exports=function(e,t={}){let i=e.css.valueOf(),n=t.ignoreErrors,s,a,o,l,c,f,d,p,h,b,v=i.length,y=0,w=[],k=[];function S(){return y}function E(R){throw e.error("Unclosed "+R,y)}function T(){return k.length===0&&y>=v}function B(R){if(k.length)return k.pop();if(y>=v)return;let F=R?R.ignoreUnclosed:!1;switch(s=i.charCodeAt(y),s){case bn:case ti:case vn:case xn:case wn:{l=y;do l+=1,s=i.charCodeAt(l);while(s===ti||s===bn||s===vn||s===xn||s===wn);f=["space",i.slice(y,l)],y=l-1;break}case Wx:case Gx:case Kx:case Xx:case e1:case Zx:case Yx:{let Y=String.fromCharCode(s);f=[Y,Y,y];break}case Qx:{if(b=w.length?w.pop()[1]:"",h=i.charCodeAt(y+1),b==="url"&&h!==Sa&&h!==Kc&&h!==ti&&h!==bn&&h!==vn&&h!==wn&&h!==xn){l=y;do{if(d=!1,l=i.indexOf(")",l+1),l===-1)if(n||F){l=y;break}else E("bracket");for(p=l;i.charCodeAt(p-1)===yn;)p-=1,d=!d}while(d);f=["brackets",i.slice(y,l+1),y,l],y=l}else l=i.indexOf(")",y+1),a=i.slice(y,l+1),l===-1||r1.test(a)?f=["(","(",y]:(f=["brackets",a,y,l],y=l);break}case Sa:case Kc:{c=s===Sa?"'":'"',l=y;do{if(d=!1,l=i.indexOf(c,l+1),l===-1)if(n||F){l=y+1;break}else E("string");for(p=l;i.charCodeAt(p-1)===yn;)p-=1,d=!d}while(d);f=["string",i.slice(y,l+1),y,l],y=l;break}case t1:{kn.lastIndex=y+1,kn.test(i),kn.lastIndex===0?l=i.length-1:l=kn.lastIndex-2,f=["at-word",i.slice(y,l+1),y,l],y=l;break}case yn:{for(l=y,o=!0;i.charCodeAt(l+1)===yn;)l+=1,o=!o;if(s=i.charCodeAt(l+1),o&&s!==Xc&&s!==ti&&s!==bn&&s!==vn&&s!==xn&&s!==wn&&(l+=1,Zc.test(i.charAt(l)))){for(;Zc.test(i.charAt(l+1));)l+=1;i.charCodeAt(l+1)===ti&&(l+=1)}f=["word",i.slice(y,l+1),y,l],y=l;break}default:{s===Xc&&i.charCodeAt(y+1)===Jx?(l=i.indexOf("*/",y+2)+1,l===0&&(n||F?l=i.length:E("comment")),f=["comment",i.slice(y,l+1),y,l],y=l):(Sn.lastIndex=y+1,Sn.test(i),Sn.lastIndex===0?l=i.length-1:l=Sn.lastIndex-2,f=["word",i.slice(y,l+1),y,l],w.push(f),y=l);break}}return y++,f}function N(R){k.push(R)}return{back:N,endOfFile:T,nextToken:B,position:S}}});var sp=x((j3,np)=>{u();"use strict";var i1=pn(),n1=Qr(),s1=Yr(),a1=tr(),tp=gn(),o1=ep(),rp={empty:!0,space:!0};function l1(r){for(let e=r.length-1;e>=0;e--){let t=r[e],i=t[3]||t[2];if(i)return i}}var ip=class{constructor(e){this.input=e,this.root=new a1,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:e,start:{column:1,line:1,offset:0}}}atrule(e){let t=new i1;t.name=e[1].slice(1),t.name===""&&this.unnamedAtrule(t,e),this.init(t,e[2]);let i,n,s,a=!1,o=!1,l=[],c=[];for(;!this.tokenizer.endOfFile();){if(e=this.tokenizer.nextToken(),i=e[0],i==="("||i==="["?c.push(i==="("?")":"]"):i==="{"&&c.length>0?c.push("}"):i===c[c.length-1]&&c.pop(),c.length===0)if(i===";"){t.source.end=this.getPosition(e[2]),t.source.end.offset++,this.semicolon=!0;break}else if(i==="{"){o=!0;break}else if(i==="}"){if(l.length>0){for(s=l.length-1,n=l[s];n&&n[0]==="space";)n=l[--s];n&&(t.source.end=this.getPosition(n[3]||n[2]),t.source.end.offset++)}this.end(e);break}else l.push(e);else l.push(e);if(this.tokenizer.endOfFile()){a=!0;break}}t.raws.between=this.spacesAndCommentsFromEnd(l),l.length?(t.raws.afterName=this.spacesAndCommentsFromStart(l),this.raw(t,"params",l),a&&(e=l[l.length-1],t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++,this.spaces=t.raws.between,t.raws.between="")):(t.raws.afterName="",t.params=""),o&&(t.nodes=[],this.current=t)}checkMissedSemicolon(e){let t=this.colon(e);if(t===!1)return;let i=0,n;for(let s=t-1;s>=0&&(n=e[s],!(n[0]!=="space"&&(i+=1,i===2)));s--);throw this.input.error("Missed semicolon",n[0]==="word"?n[3]+1:n[2])}colon(e){let t=0,i,n,s;for(let[a,o]of e.entries()){if(n=o,s=n[0],s==="("&&(t+=1),s===")"&&(t-=1),t===0&&s===":")if(!i)this.doubleColon(n);else{if(i[0]==="word"&&i[1]==="progid")continue;return a}i=n}return!1}comment(e){let t=new n1;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++;let i=e[1].slice(2,-2);if(/^\s*$/.test(i))t.text="",t.raws.left=i,t.raws.right="";else{let n=i.match(/^(\s*)([^]*\S)(\s*)$/);t.text=n[2],t.raws.left=n[1],t.raws.right=n[3]}}createTokenizer(){this.tokenizer=o1(this.input)}decl(e,t){let i=new s1;this.init(i,e[0][2]);let n=e[e.length-1];for(n[0]===";"&&(this.semicolon=!0,e.pop()),i.source.end=this.getPosition(n[3]||n[2]||l1(e)),i.source.end.offset++;e[0][0]!=="word";)e.length===1&&this.unknownWord(e),i.raws.before+=e.shift()[1];for(i.source.start=this.getPosition(e[0][2]),i.prop="";e.length;){let c=e[0][0];if(c===":"||c==="space"||c==="comment")break;i.prop+=e.shift()[1]}i.raws.between="";let s;for(;e.length;)if(s=e.shift(),s[0]===":"){i.raws.between+=s[1];break}else s[0]==="word"&&/\w/.test(s[1])&&this.unknownWord([s]),i.raws.between+=s[1];(i.prop[0]==="_"||i.prop[0]==="*")&&(i.raws.before+=i.prop[0],i.prop=i.prop.slice(1));let a=[],o;for(;e.length&&(o=e[0][0],!(o!=="space"&&o!=="comment"));)a.push(e.shift());this.precheckMissedSemicolon(e);for(let c=e.length-1;c>=0;c--){if(s=e[c],s[1].toLowerCase()==="!important"){i.important=!0;let f=this.stringFrom(e,c);f=this.spacesFromEnd(e)+f,f!==" !important"&&(i.raws.important=f);break}else if(s[1].toLowerCase()==="important"){let f=e.slice(0),d="";for(let p=c;p>0;p--){let h=f[p][0];if(d.trim().startsWith("!")&&h!=="space")break;d=f.pop()[1]+d}d.trim().startsWith("!")&&(i.important=!0,i.raws.important=d,e=f)}if(s[0]!=="space"&&s[0]!=="comment")break}e.some(c=>c[0]!=="space"&&c[0]!=="comment")&&(i.raws.between+=a.map(c=>c[1]).join(""),a=[]),this.raw(i,"value",a.concat(e),t),i.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}emptyRule(e){let t=new tp;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}end(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}freeSemicolon(e){if(this.spaces+=e[1],this.current.nodes){let t=this.current.nodes[this.current.nodes.length-1];t&&t.type==="rule"&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}}getPosition(e){let t=this.input.fromOffset(e);return{column:t.col,line:t.line,offset:e}}init(e,t){this.current.push(e),e.source={input:this.input,start:this.getPosition(t)},e.raws.before=this.spaces,this.spaces="",e.type!=="comment"&&(this.semicolon=!1)}other(e){let t=!1,i=null,n=!1,s=null,a=[],o=e[1].startsWith("--"),l=[],c=e;for(;c;){if(i=c[0],l.push(c),i==="("||i==="[")s||(s=c),a.push(i==="("?")":"]");else if(o&&n&&i==="{")s||(s=c),a.push("}");else if(a.length===0)if(i===";")if(n){this.decl(l,o);return}else break;else if(i==="{"){this.rule(l);return}else if(i==="}"){this.tokenizer.back(l.pop()),t=!0;break}else i===":"&&(n=!0);else i===a[a.length-1]&&(a.pop(),a.length===0&&(s=null));c=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),a.length>0&&this.unclosedBracket(s),t&&n){if(!o)for(;l.length&&(c=l[l.length-1][0],!(c!=="space"&&c!=="comment"));)this.tokenizer.back(l.pop());this.decl(l,o)}else this.unknownWord(l)}parse(){let e;for(;!this.tokenizer.endOfFile();)switch(e=this.tokenizer.nextToken(),e[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e);break}this.endFile()}precheckMissedSemicolon(){}raw(e,t,i,n){let s,a,o=i.length,l="",c=!0,f,d;for(let p=0;ph+b[1],"");e.raws[t]={raw:p,value:l}}e[t]=l}rule(e){e.pop();let t=new tp;this.init(t,e[0][2]),t.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(t,"selector",e),this.current=t}spacesAndCommentsFromEnd(e){let t,i="";for(;e.length&&(t=e[e.length-1][0],!(t!=="space"&&t!=="comment"));)i=e.pop()[1]+i;return i}spacesAndCommentsFromStart(e){let t,i="";for(;e.length&&(t=e[0][0],!(t!=="space"&&t!=="comment"));)i+=e.shift()[1];return i}spacesFromEnd(e){let t,i="";for(;e.length&&(t=e[e.length-1][0],t==="space");)i=e.pop()[1]+i;return i}stringFrom(e,t){let i="";for(let n=t;n{u();"use strict";var u1=Et(),f1=mn(),c1=sp();function An(r,e){let t=new f1(r,e),i=new c1(t);try{i.parse()}catch(n){throw n}return i.root}ap.exports=An;An.default=An;u1.registerParse(An)});var Aa=x((U3,op)=>{u();"use strict";var _n=class{constructor(e,t={}){if(this.type="warning",this.text=e,t.node&&t.node.source){let i=t.node.rangeBy(t);this.line=i.start.line,this.column=i.start.column,this.endLine=i.end.line,this.endColumn=i.end.column}for(let i in t)this[i]=t[i]}toString(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}};op.exports=_n;_n.default=_n});var On=x((V3,lp)=>{u();"use strict";var p1=Aa(),En=class{constructor(e,t,i){this.processor=e,this.messages=[],this.root=t,this.opts=i,this.css=void 0,this.map=void 0}toString(){return this.css}warn(e,t={}){t.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);let i=new p1(e,t);return this.messages.push(i),i}warnings(){return this.messages.filter(e=>e.type==="warning")}get content(){return this.css}};lp.exports=En;En.default=En});var Ca=x((H3,fp)=>{u();"use strict";var up={};fp.exports=function(e){up[e]||(up[e]=!0,typeof console!="undefined"&&console.warn&&console.warn(e))}});var Oa=x((G3,hp)=>{u();"use strict";var d1=Et(),h1=dn(),m1=ka(),g1=Cn(),cp=On(),y1=tr(),b1=Vr(),{isClean:tt,my:w1}=ln(),W3=Ca(),v1={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},x1={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},k1={Once:!0,postcssPlugin:!0,prepare:!0},rr=0;function ri(r){return typeof r=="object"&&typeof r.then=="function"}function pp(r){let e=!1,t=v1[r.type];return r.type==="decl"?e=r.prop.toLowerCase():r.type==="atrule"&&(e=r.name.toLowerCase()),e&&r.append?[t,t+"-"+e,rr,t+"Exit",t+"Exit-"+e]:e?[t,t+"-"+e,t+"Exit",t+"Exit-"+e]:r.append?[t,rr,t+"Exit"]:[t,t+"Exit"]}function dp(r){let e;return r.type==="document"?e=["Document",rr,"DocumentExit"]:r.type==="root"?e=["Root",rr,"RootExit"]:e=pp(r),{eventIndex:0,events:e,iterator:0,node:r,visitorIndex:0,visitors:[]}}function _a(r){return r[tt]=!1,r.nodes&&r.nodes.forEach(e=>_a(e)),r}var Ea={},pt=class{constructor(e,t,i){this.stringified=!1,this.processed=!1;let n;if(typeof t=="object"&&t!==null&&(t.type==="root"||t.type==="document"))n=_a(t);else if(t instanceof pt||t instanceof cp)n=_a(t.root),t.map&&(typeof i.map=="undefined"&&(i.map={}),i.map.inline||(i.map.inline=!1),i.map.prev=t.map);else{let s=g1;i.syntax&&(s=i.syntax.parse),i.parser&&(s=i.parser),s.parse&&(s=s.parse);try{n=s(t,i)}catch(a){this.processed=!0,this.error=a}n&&!n[w1]&&d1.rebuild(n)}this.result=new cp(e,n,i),this.helpers={...Ea,postcss:Ea,result:this.result},this.plugins=this.processor.plugins.map(s=>typeof s=="object"&&s.prepare?{...s,...s.prepare(this.result)}:s)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(e,t){let i=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,e.name==="CssSyntaxError"&&!e.plugin?(e.plugin=i.postcssPlugin,e.setMessage()):i.postcssVersion}catch(n){console&&console.error&&console.error(n)}return e}prepareVisitors(){this.listeners={};let e=(t,i,n)=>{this.listeners[i]||(this.listeners[i]=[]),this.listeners[i].push([t,n])};for(let t of this.plugins)if(typeof t=="object")for(let i in t){if(!x1[i]&&/^[A-Z]/.test(i))throw new Error(`Unknown event ${i} in ${t.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!k1[i])if(typeof t[i]=="object")for(let n in t[i])n==="*"?e(t,i,t[i][n]):e(t,i+"-"+n.toLowerCase(),t[i][n]);else typeof t[i]=="function"&&e(t,i,t[i])}this.hasListener=Object.keys(this.listeners).length>0}async runAsync(){this.plugin=0;for(let e=0;e0;){let i=this.visitTick(t);if(ri(i))try{await i}catch(n){let s=t[t.length-1].node;throw this.handleError(n,s)}}}if(this.listeners.OnceExit)for(let[t,i]of this.listeners.OnceExit){this.result.lastPlugin=t;try{if(e.type==="document"){let n=e.nodes.map(s=>i(s,this.helpers));await Promise.all(n)}else await i(e,this.helpers)}catch(n){throw this.handleError(n)}}}return this.processed=!0,this.stringify()}runOnRoot(e){this.result.lastPlugin=e;try{if(typeof e=="object"&&e.Once){if(this.result.root.type==="document"){let t=this.result.root.nodes.map(i=>e.Once(i,this.helpers));return ri(t[0])?Promise.all(t):t}return e.Once(this.result.root,this.helpers)}else if(typeof e=="function")return e(this.result.root,this.result)}catch(t){throw this.handleError(t)}}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let e=this.result.opts,t=b1;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);let n=new m1(t,this.result.root,this.result.opts).generate();return this.result.css=n[0],this.result.map=n[1],this.result}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let e of this.plugins){let t=this.runOnRoot(e);if(ri(t))throw this.getAsyncError()}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[tt];)e[tt]=!0,this.walkSync(e);if(this.listeners.OnceExit)if(e.type==="document")for(let t of e.nodes)this.visitSync(this.listeners.OnceExit,t);else this.visitSync(this.listeners.OnceExit,e)}return this.result}then(e,t){return this.async().then(e,t)}toString(){return this.css}visitSync(e,t){for(let[i,n]of e){this.result.lastPlugin=i;let s;try{s=n(t,this.helpers)}catch(a){throw this.handleError(a,t.proxyOf)}if(t.type!=="root"&&t.type!=="document"&&!t.parent)return!0;if(ri(s))throw this.getAsyncError()}}visitTick(e){let t=e[e.length-1],{node:i,visitors:n}=t;if(i.type!=="root"&&i.type!=="document"&&!i.parent){e.pop();return}if(n.length>0&&t.visitorIndex{n[tt]||this.walkSync(n)});else{let n=this.listeners[i];if(n&&this.visitSync(n,e.toProxy()))return}}warnings(){return this.sync().warnings()}get content(){return this.stringify().content}get css(){return this.stringify().css}get map(){return this.stringify().map}get messages(){return this.sync().messages}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){return this.sync().root}get[Symbol.toStringTag](){return"LazyResult"}};pt.registerPostcss=r=>{Ea=r};hp.exports=pt;pt.default=pt;y1.registerLazyResult(pt);h1.registerLazyResult(pt)});var gp=x((Y3,mp)=>{u();"use strict";var S1=ka(),A1=Cn(),C1=On(),_1=Vr(),Q3=Ca(),Tn=class{constructor(e,t,i){t=t.toString(),this.stringified=!1,this._processor=e,this._css=t,this._opts=i,this._map=void 0;let n,s=_1;this.result=new C1(this._processor,n,this._opts),this.result.css=t;let a=this;Object.defineProperty(this.result,"root",{get(){return a.root}});let o=new S1(s,n,this._opts,t);if(o.isMap()){let[l,c]=o.generate();l&&(this.result.css=l),c&&(this.result.map=c)}else o.clearAnnotation(),this.result.css=o.css}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}sync(){if(this.error)throw this.error;return this.result}then(e,t){return this.async().then(e,t)}toString(){return this._css}warnings(){return[]}get content(){return this.result.css}get css(){return this.result.css}get map(){return this.result.map}get messages(){return[]}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){if(this._root)return this._root;let e,t=A1;try{e=t(this._css,this._opts)}catch(i){this.error=i}if(this.error)throw this.error;return this._root=e,e}get[Symbol.toStringTag](){return"NoWorkResult"}};mp.exports=Tn;Tn.default=Tn});var bp=x((K3,yp)=>{u();"use strict";var E1=dn(),O1=Oa(),T1=gp(),R1=tr(),ir=class{constructor(e=[]){this.version="8.4.49",this.plugins=this.normalize(e)}normalize(e){let t=[];for(let i of e)if(i.postcss===!0?i=i():i.postcss&&(i=i.postcss),typeof i=="object"&&Array.isArray(i.plugins))t=t.concat(i.plugins);else if(typeof i=="object"&&i.postcssPlugin)t.push(i);else if(typeof i=="function")t.push(i);else if(!(typeof i=="object"&&(i.parse||i.stringify)))throw new Error(i+" is not a PostCSS plugin");return t}process(e,t={}){return!this.plugins.length&&!t.parser&&!t.stringifier&&!t.syntax?new T1(this,e,t):new O1(this,e,t)}use(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}};yp.exports=ir;ir.default=ir;R1.registerProcessor(ir);E1.registerProcessor(ir)});var $e=x((X3,Cp)=>{u();"use strict";var wp=pn(),vp=Qr(),P1=Et(),I1=an(),xp=Yr(),kp=dn(),D1=Qc(),q1=mn(),$1=Oa(),L1=xa(),M1=Gr(),N1=Cn(),Ta=bp(),B1=On(),Sp=tr(),Ap=gn(),F1=Vr(),j1=Aa();function J(...r){return r.length===1&&Array.isArray(r[0])&&(r=r[0]),new Ta(r)}J.plugin=function(e,t){let i=!1;function n(...a){console&&console.warn&&!i&&(i=!0,console.warn(e+`: postcss.plugin was deprecated. Migration guide: +https://evilmartians.com/chronicles/postcss-8-plugin-migration`),m.env.LANG&&m.env.LANG.startsWith("cn")&&console.warn(e+`: \u91CC\u9762 postcss.plugin \u88AB\u5F03\u7528. \u8FC1\u79FB\u6307\u5357: +https://www.w3ctech.com/topic/2226`));let o=t(...a);return o.postcssPlugin=e,o.postcssVersion=new Ta().version,o}let s;return Object.defineProperty(n,"postcss",{get(){return s||(s=n()),s}}),n.process=function(a,o,l){return J([n(l)]).process(a,o)},n};J.stringify=F1;J.parse=N1;J.fromJSON=D1;J.list=L1;J.comment=r=>new vp(r);J.atRule=r=>new wp(r);J.decl=r=>new xp(r);J.rule=r=>new Ap(r);J.root=r=>new Sp(r);J.document=r=>new kp(r);J.CssSyntaxError=I1;J.Declaration=xp;J.Container=P1;J.Processor=Ta;J.Document=kp;J.Comment=vp;J.Warning=j1;J.AtRule=wp;J.Result=B1;J.Input=q1;J.Rule=Ap;J.Root=Sp;J.Node=M1;$1.registerPostcss(J);Cp.exports=J;J.default=J});var re,ee,Z3,J3,eI,tI,rI,iI,nI,sI,aI,oI,lI,uI,fI,cI,pI,dI,hI,mI,gI,yI,bI,wI,vI,xI,Ot=P(()=>{u();re=pe($e()),ee=re.default,Z3=re.default.stringify,J3=re.default.fromJSON,eI=re.default.plugin,tI=re.default.parse,rI=re.default.list,iI=re.default.document,nI=re.default.comment,sI=re.default.atRule,aI=re.default.rule,oI=re.default.decl,lI=re.default.root,uI=re.default.CssSyntaxError,fI=re.default.Declaration,cI=re.default.Container,pI=re.default.Processor,dI=re.default.Document,hI=re.default.Comment,mI=re.default.Warning,gI=re.default.AtRule,yI=re.default.Result,bI=re.default.Input,wI=re.default.Rule,vI=re.default.Root,xI=re.default.Node});var Ra=x((SI,_p)=>{u();_p.exports=function(r,e,t,i,n){for(e=e.split?e.split("."):e,i=0;i{u();"use strict";Rn.__esModule=!0;Rn.default=V1;function z1(r){for(var e=r.toLowerCase(),t="",i=!1,n=0;n<6&&e[n]!==void 0;n++){var s=e.charCodeAt(n),a=s>=97&&s<=102||s>=48&&s<=57;if(i=s===32,!a)break;t+=e[n]}if(t.length!==0){var o=parseInt(t,16),l=o>=55296&&o<=57343;return l||o===0||o>1114111?["\uFFFD",t.length+(i?1:0)]:[String.fromCodePoint(o),t.length+(i?1:0)]}}var U1=/\\/;function V1(r){var e=U1.test(r);if(!e)return r;for(var t="",i=0;i{u();"use strict";In.__esModule=!0;In.default=H1;function H1(r){for(var e=arguments.length,t=new Array(e>1?e-1:0),i=1;i0;){var n=t.shift();if(!r[n])return;r=r[n]}return r}Op.exports=In.default});var Pp=x((Dn,Rp)=>{u();"use strict";Dn.__esModule=!0;Dn.default=W1;function W1(r){for(var e=arguments.length,t=new Array(e>1?e-1:0),i=1;i0;){var n=t.shift();r[n]||(r[n]={}),r=r[n]}}Rp.exports=Dn.default});var Dp=x((qn,Ip)=>{u();"use strict";qn.__esModule=!0;qn.default=G1;function G1(r){for(var e="",t=r.indexOf("/*"),i=0;t>=0;){e=e+r.slice(i,t);var n=r.indexOf("*/",t+2);if(n<0)return e;i=n+2,t=r.indexOf("/*",i)}return e=e+r.slice(i),e}Ip.exports=qn.default});var ii=x(rt=>{u();"use strict";rt.__esModule=!0;rt.unesc=rt.stripComments=rt.getProp=rt.ensureObject=void 0;var Q1=$n(Pn());rt.unesc=Q1.default;var Y1=$n(Tp());rt.getProp=Y1.default;var K1=$n(Pp());rt.ensureObject=K1.default;var X1=$n(Dp());rt.stripComments=X1.default;function $n(r){return r&&r.__esModule?r:{default:r}}});var dt=x((ni,Lp)=>{u();"use strict";ni.__esModule=!0;ni.default=void 0;var qp=ii();function $p(r,e){for(var t=0;ti||this.source.end.linen||this.source.end.line===i&&this.source.end.column{u();"use strict";ie.__esModule=!0;ie.UNIVERSAL=ie.TAG=ie.STRING=ie.SELECTOR=ie.ROOT=ie.PSEUDO=ie.NESTING=ie.ID=ie.COMMENT=ie.COMBINATOR=ie.CLASS=ie.ATTRIBUTE=void 0;var tk="tag";ie.TAG=tk;var rk="string";ie.STRING=rk;var ik="selector";ie.SELECTOR=ik;var nk="root";ie.ROOT=nk;var sk="pseudo";ie.PSEUDO=sk;var ak="nesting";ie.NESTING=ak;var ok="id";ie.ID=ok;var lk="comment";ie.COMMENT=lk;var uk="combinator";ie.COMBINATOR=uk;var fk="class";ie.CLASS=fk;var ck="attribute";ie.ATTRIBUTE=ck;var pk="universal";ie.UNIVERSAL=pk});var Ln=x((si,Fp)=>{u();"use strict";si.__esModule=!0;si.default=void 0;var dk=mk(dt()),ht=hk(Se());function Mp(r){if(typeof WeakMap!="function")return null;var e=new WeakMap,t=new WeakMap;return(Mp=function(n){return n?t:e})(r)}function hk(r,e){if(!e&&r&&r.__esModule)return r;if(r===null||typeof r!="object"&&typeof r!="function")return{default:r};var t=Mp(e);if(t&&t.has(r))return t.get(r);var i={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var s in r)if(s!=="default"&&Object.prototype.hasOwnProperty.call(r,s)){var a=n?Object.getOwnPropertyDescriptor(r,s):null;a&&(a.get||a.set)?Object.defineProperty(i,s,a):i[s]=r[s]}return i.default=r,t&&t.set(r,i),i}function mk(r){return r&&r.__esModule?r:{default:r}}function gk(r,e){var t=typeof Symbol!="undefined"&&r[Symbol.iterator]||r["@@iterator"];if(t)return(t=t.call(r)).next.bind(t);if(Array.isArray(r)||(t=yk(r))||e&&r&&typeof r.length=="number"){t&&(r=t);var i=0;return function(){return i>=r.length?{done:!0}:{done:!1,value:r[i++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function yk(r,e){if(!!r){if(typeof r=="string")return Np(r,e);var t=Object.prototype.toString.call(r).slice(8,-1);if(t==="Object"&&r.constructor&&(t=r.constructor.name),t==="Map"||t==="Set")return Array.from(r);if(t==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return Np(r,e)}}function Np(r,e){(e==null||e>r.length)&&(e=r.length);for(var t=0,i=new Array(e);t=n&&(this.indexes[a]=s-1);return this},t.removeAll=function(){for(var n=gk(this.nodes),s;!(s=n()).done;){var a=s.value;a.parent=void 0}return this.nodes=[],this},t.empty=function(){return this.removeAll()},t.insertAfter=function(n,s){s.parent=this;var a=this.index(n);this.nodes.splice(a+1,0,s),s.parent=this;var o;for(var l in this.indexes)o=this.indexes[l],a<=o&&(this.indexes[l]=o+1);return this},t.insertBefore=function(n,s){s.parent=this;var a=this.index(n);this.nodes.splice(a,0,s),s.parent=this;var o;for(var l in this.indexes)o=this.indexes[l],o<=a&&(this.indexes[l]=o+1);return this},t._findChildAtPosition=function(n,s){var a=void 0;return this.each(function(o){if(o.atPosition){var l=o.atPosition(n,s);if(l)return a=l,!1}else if(o.isAtPosition(n,s))return a=o,!1}),a},t.atPosition=function(n,s){if(this.isAtPosition(n,s))return this._findChildAtPosition(n,s)||this},t._inferEndPosition=function(){this.last&&this.last.source&&this.last.source.end&&(this.source=this.source||{},this.source.end=this.source.end||{},Object.assign(this.source.end,this.last.source.end))},t.each=function(n){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach++;var s=this.lastEach;if(this.indexes[s]=0,!!this.length){for(var a,o;this.indexes[s]{u();"use strict";ai.__esModule=!0;ai.default=void 0;var xk=Sk(Ln()),kk=Se();function Sk(r){return r&&r.__esModule?r:{default:r}}function jp(r,e){for(var t=0;t{u();"use strict";oi.__esModule=!0;oi.default=void 0;var Ek=Tk(Ln()),Ok=Se();function Tk(r){return r&&r.__esModule?r:{default:r}}function Rk(r,e){r.prototype=Object.create(e.prototype),r.prototype.constructor=r,qa(r,e)}function qa(r,e){return qa=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(i,n){return i.__proto__=n,i},qa(r,e)}var Pk=function(r){Rk(e,r);function e(t){var i;return i=r.call(this,t)||this,i.type=Ok.SELECTOR,i}return e}(Ek.default);oi.default=Pk;Up.exports=oi.default});var Mn=x((_I,Vp)=>{u();"use strict";var Ik={},Dk=Ik.hasOwnProperty,qk=function(e,t){if(!e)return t;var i={};for(var n in t)i[n]=Dk.call(e,n)?e[n]:t[n];return i},$k=/[ -,\.\/:-@\[-\^`\{-~]/,Lk=/[ -,\.\/:-@\[\]\^`\{-~]/,Mk=/(^|\\+)?(\\[A-F0-9]{1,6})\x20(?![a-fA-F0-9\x20])/g,La=function r(e,t){t=qk(t,r.options),t.quotes!="single"&&t.quotes!="double"&&(t.quotes="single");for(var i=t.quotes=="double"?'"':"'",n=t.isIdentifier,s=e.charAt(0),a="",o=0,l=e.length;o126){if(f>=55296&&f<=56319&&o{u();"use strict";li.__esModule=!0;li.default=void 0;var Nk=Hp(Mn()),Bk=ii(),Fk=Hp(dt()),jk=Se();function Hp(r){return r&&r.__esModule?r:{default:r}}function Wp(r,e){for(var t=0;t{u();"use strict";ui.__esModule=!0;ui.default=void 0;var Hk=Gk(dt()),Wk=Se();function Gk(r){return r&&r.__esModule?r:{default:r}}function Qk(r,e){r.prototype=Object.create(e.prototype),r.prototype.constructor=r,Ba(r,e)}function Ba(r,e){return Ba=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(i,n){return i.__proto__=n,i},Ba(r,e)}var Yk=function(r){Qk(e,r);function e(t){var i;return i=r.call(this,t)||this,i.type=Wk.COMMENT,i}return e}(Hk.default);ui.default=Yk;Qp.exports=ui.default});var za=x((fi,Yp)=>{u();"use strict";fi.__esModule=!0;fi.default=void 0;var Kk=Zk(dt()),Xk=Se();function Zk(r){return r&&r.__esModule?r:{default:r}}function Jk(r,e){r.prototype=Object.create(e.prototype),r.prototype.constructor=r,ja(r,e)}function ja(r,e){return ja=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(i,n){return i.__proto__=n,i},ja(r,e)}var eS=function(r){Jk(e,r);function e(i){var n;return n=r.call(this,i)||this,n.type=Xk.ID,n}var t=e.prototype;return t.valueToString=function(){return"#"+r.prototype.valueToString.call(this)},e}(Kk.default);fi.default=eS;Yp.exports=fi.default});var Nn=x((ci,Zp)=>{u();"use strict";ci.__esModule=!0;ci.default=void 0;var tS=Kp(Mn()),rS=ii(),iS=Kp(dt());function Kp(r){return r&&r.__esModule?r:{default:r}}function Xp(r,e){for(var t=0;t{u();"use strict";pi.__esModule=!0;pi.default=void 0;var oS=uS(Nn()),lS=Se();function uS(r){return r&&r.__esModule?r:{default:r}}function fS(r,e){r.prototype=Object.create(e.prototype),r.prototype.constructor=r,Va(r,e)}function Va(r,e){return Va=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(i,n){return i.__proto__=n,i},Va(r,e)}var cS=function(r){fS(e,r);function e(t){var i;return i=r.call(this,t)||this,i.type=lS.TAG,i}return e}(oS.default);pi.default=cS;Jp.exports=pi.default});var Ga=x((di,ed)=>{u();"use strict";di.__esModule=!0;di.default=void 0;var pS=hS(dt()),dS=Se();function hS(r){return r&&r.__esModule?r:{default:r}}function mS(r,e){r.prototype=Object.create(e.prototype),r.prototype.constructor=r,Wa(r,e)}function Wa(r,e){return Wa=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(i,n){return i.__proto__=n,i},Wa(r,e)}var gS=function(r){mS(e,r);function e(t){var i;return i=r.call(this,t)||this,i.type=dS.STRING,i}return e}(pS.default);di.default=gS;ed.exports=di.default});var Ya=x((hi,td)=>{u();"use strict";hi.__esModule=!0;hi.default=void 0;var yS=wS(Ln()),bS=Se();function wS(r){return r&&r.__esModule?r:{default:r}}function vS(r,e){r.prototype=Object.create(e.prototype),r.prototype.constructor=r,Qa(r,e)}function Qa(r,e){return Qa=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(i,n){return i.__proto__=n,i},Qa(r,e)}var xS=function(r){vS(e,r);function e(i){var n;return n=r.call(this,i)||this,n.type=bS.PSEUDO,n}var t=e.prototype;return t.toString=function(){var n=this.length?"("+this.map(String).join(",")+")":"";return[this.rawSpaceBefore,this.stringifyProperty("value"),n,this.rawSpaceAfter].join("")},e}(yS.default);hi.default=xS;td.exports=hi.default});var Bn={};Ge(Bn,{deprecate:()=>kS});function kS(r){return r}var Fn=P(()=>{u()});var id=x((EI,rd)=>{u();rd.exports=(Fn(),Bn).deprecate});var to=x(yi=>{u();"use strict";yi.__esModule=!0;yi.default=void 0;yi.unescapeValue=Ja;var mi=Xa(Mn()),SS=Xa(Pn()),AS=Xa(Nn()),CS=Se(),Ka;function Xa(r){return r&&r.__esModule?r:{default:r}}function nd(r,e){for(var t=0;t0&&!n.quoted&&o.before.length===0&&!(n.spaces.value&&n.spaces.value.after)&&(o.before=" "),sd(a,o)}))),s.push("]"),s.push(this.rawSpaceAfter),s.join("")},_S(e,[{key:"quoted",get:function(){var n=this.quoteMark;return n==="'"||n==='"'},set:function(n){RS()}},{key:"quoteMark",get:function(){return this._quoteMark},set:function(n){if(!this._constructed){this._quoteMark=n;return}this._quoteMark!==n&&(this._quoteMark=n,this._syncRawValue())}},{key:"qualifiedAttribute",get:function(){return this.qualifiedName(this.raws.attribute||this.attribute)}},{key:"insensitiveFlag",get:function(){return this.insensitive?"i":""}},{key:"value",get:function(){return this._value},set:function(n){if(this._constructed){var s=Ja(n),a=s.deprecatedUsage,o=s.unescaped,l=s.quoteMark;if(a&&TS(),o===this._value&&l===this._quoteMark)return;this._value=o,this._quoteMark=l,this._syncRawValue()}else this._value=n}},{key:"insensitive",get:function(){return this._insensitive},set:function(n){n||(this._insensitive=!1,this.raws&&(this.raws.insensitiveFlag==="I"||this.raws.insensitiveFlag==="i")&&(this.raws.insensitiveFlag=void 0)),this._insensitive=n}},{key:"attribute",get:function(){return this._attribute},set:function(n){this._handleEscapes("attribute",n),this._attribute=n}}]),e}(AS.default);yi.default=jn;jn.NO_QUOTE=null;jn.SINGLE_QUOTE="'";jn.DOUBLE_QUOTE='"';var eo=(Ka={"'":{quotes:"single",wrap:!0},'"':{quotes:"double",wrap:!0}},Ka[null]={isIdentifier:!0},Ka);function sd(r,e){return""+e.before+r+e.after}});var io=x((bi,ad)=>{u();"use strict";bi.__esModule=!0;bi.default=void 0;var DS=$S(Nn()),qS=Se();function $S(r){return r&&r.__esModule?r:{default:r}}function LS(r,e){r.prototype=Object.create(e.prototype),r.prototype.constructor=r,ro(r,e)}function ro(r,e){return ro=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(i,n){return i.__proto__=n,i},ro(r,e)}var MS=function(r){LS(e,r);function e(t){var i;return i=r.call(this,t)||this,i.type=qS.UNIVERSAL,i.value="*",i}return e}(DS.default);bi.default=MS;ad.exports=bi.default});var so=x((wi,od)=>{u();"use strict";wi.__esModule=!0;wi.default=void 0;var NS=FS(dt()),BS=Se();function FS(r){return r&&r.__esModule?r:{default:r}}function jS(r,e){r.prototype=Object.create(e.prototype),r.prototype.constructor=r,no(r,e)}function no(r,e){return no=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(i,n){return i.__proto__=n,i},no(r,e)}var zS=function(r){jS(e,r);function e(t){var i;return i=r.call(this,t)||this,i.type=BS.COMBINATOR,i}return e}(NS.default);wi.default=zS;od.exports=wi.default});var oo=x((vi,ld)=>{u();"use strict";vi.__esModule=!0;vi.default=void 0;var US=HS(dt()),VS=Se();function HS(r){return r&&r.__esModule?r:{default:r}}function WS(r,e){r.prototype=Object.create(e.prototype),r.prototype.constructor=r,ao(r,e)}function ao(r,e){return ao=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(i,n){return i.__proto__=n,i},ao(r,e)}var GS=function(r){WS(e,r);function e(t){var i;return i=r.call(this,t)||this,i.type=VS.NESTING,i.value="&",i}return e}(US.default);vi.default=GS;ld.exports=vi.default});var fd=x((zn,ud)=>{u();"use strict";zn.__esModule=!0;zn.default=QS;function QS(r){return r.sort(function(e,t){return e-t})}ud.exports=zn.default});var lo=x(M=>{u();"use strict";M.__esModule=!0;M.word=M.tilde=M.tab=M.str=M.space=M.slash=M.singleQuote=M.semicolon=M.plus=M.pipe=M.openSquare=M.openParenthesis=M.newline=M.greaterThan=M.feed=M.equals=M.doubleQuote=M.dollar=M.cr=M.comment=M.comma=M.combinator=M.colon=M.closeSquare=M.closeParenthesis=M.caret=M.bang=M.backslash=M.at=M.asterisk=M.ampersand=void 0;var YS=38;M.ampersand=YS;var KS=42;M.asterisk=KS;var XS=64;M.at=XS;var ZS=44;M.comma=ZS;var JS=58;M.colon=JS;var eA=59;M.semicolon=eA;var tA=40;M.openParenthesis=tA;var rA=41;M.closeParenthesis=rA;var iA=91;M.openSquare=iA;var nA=93;M.closeSquare=nA;var sA=36;M.dollar=sA;var aA=126;M.tilde=aA;var oA=94;M.caret=oA;var lA=43;M.plus=lA;var uA=61;M.equals=uA;var fA=124;M.pipe=fA;var cA=62;M.greaterThan=cA;var pA=32;M.space=pA;var cd=39;M.singleQuote=cd;var dA=34;M.doubleQuote=dA;var hA=47;M.slash=hA;var mA=33;M.bang=mA;var gA=92;M.backslash=gA;var yA=13;M.cr=yA;var bA=12;M.feed=bA;var wA=10;M.newline=wA;var vA=9;M.tab=vA;var xA=cd;M.str=xA;var kA=-1;M.comment=kA;var SA=-2;M.word=SA;var AA=-3;M.combinator=AA});var hd=x(xi=>{u();"use strict";xi.__esModule=!0;xi.FIELDS=void 0;xi.default=PA;var D=CA(lo()),nr,te;function pd(r){if(typeof WeakMap!="function")return null;var e=new WeakMap,t=new WeakMap;return(pd=function(n){return n?t:e})(r)}function CA(r,e){if(!e&&r&&r.__esModule)return r;if(r===null||typeof r!="object"&&typeof r!="function")return{default:r};var t=pd(e);if(t&&t.has(r))return t.get(r);var i={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var s in r)if(s!=="default"&&Object.prototype.hasOwnProperty.call(r,s)){var a=n?Object.getOwnPropertyDescriptor(r,s):null;a&&(a.get||a.set)?Object.defineProperty(i,s,a):i[s]=r[s]}return i.default=r,t&&t.set(r,i),i}var _A=(nr={},nr[D.tab]=!0,nr[D.newline]=!0,nr[D.cr]=!0,nr[D.feed]=!0,nr),EA=(te={},te[D.space]=!0,te[D.tab]=!0,te[D.newline]=!0,te[D.cr]=!0,te[D.feed]=!0,te[D.ampersand]=!0,te[D.asterisk]=!0,te[D.bang]=!0,te[D.comma]=!0,te[D.colon]=!0,te[D.semicolon]=!0,te[D.openParenthesis]=!0,te[D.closeParenthesis]=!0,te[D.openSquare]=!0,te[D.closeSquare]=!0,te[D.singleQuote]=!0,te[D.doubleQuote]=!0,te[D.plus]=!0,te[D.pipe]=!0,te[D.tilde]=!0,te[D.greaterThan]=!0,te[D.equals]=!0,te[D.dollar]=!0,te[D.caret]=!0,te[D.slash]=!0,te),uo={},dd="0123456789abcdefABCDEF";for(Un=0;Un0?(k=a+v,S=w-y[v].length):(k=a,S=s),T=D.comment,a=k,p=k,d=w-S):c===D.slash?(w=o,T=c,p=a,d=o-s,l=w+1):(w=OA(t,o),T=D.word,p=a,d=w-s),l=w+1;break}e.push([T,a,o-s,p,d,o,l]),S&&(s=S,S=null),o=l}return e}});var kd=x((ki,xd)=>{u();"use strict";ki.__esModule=!0;ki.default=void 0;var IA=je(Da()),fo=je($a()),DA=je(Na()),md=je(Fa()),qA=je(za()),$A=je(Ha()),co=je(Ga()),LA=je(Ya()),gd=Vn(to()),MA=je(io()),po=je(so()),NA=je(oo()),BA=je(fd()),O=Vn(hd()),q=Vn(lo()),FA=Vn(Se()),ue=ii(),Vt,ho;function yd(r){if(typeof WeakMap!="function")return null;var e=new WeakMap,t=new WeakMap;return(yd=function(n){return n?t:e})(r)}function Vn(r,e){if(!e&&r&&r.__esModule)return r;if(r===null||typeof r!="object"&&typeof r!="function")return{default:r};var t=yd(e);if(t&&t.has(r))return t.get(r);var i={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var s in r)if(s!=="default"&&Object.prototype.hasOwnProperty.call(r,s)){var a=n?Object.getOwnPropertyDescriptor(r,s):null;a&&(a.get||a.set)?Object.defineProperty(i,s,a):i[s]=r[s]}return i.default=r,t&&t.set(r,i),i}function je(r){return r&&r.__esModule?r:{default:r}}function bd(r,e){for(var t=0;t0){var a=this.current.last;if(a){var o=this.convertWhitespaceNodesToSpace(s),l=o.space,c=o.rawSpace;c!==void 0&&(a.rawSpaceAfter+=c),a.spaces.after+=l}else s.forEach(function(T){return i.newNode(T)})}return}var f=this.currToken,d=void 0;n>this.position&&(d=this.parseWhitespaceEquivalentTokens(n));var p;if(this.isNamedCombinator()?p=this.namedCombinator():this.currToken[O.FIELDS.TYPE]===q.combinator?(p=new po.default({value:this.content(),source:sr(this.currToken),sourceIndex:this.currToken[O.FIELDS.START_POS]}),this.position++):mo[this.currToken[O.FIELDS.TYPE]]||d||this.unexpected(),p){if(d){var h=this.convertWhitespaceNodesToSpace(d),b=h.space,v=h.rawSpace;p.spaces.before=b,p.rawSpaceBefore=v}}else{var y=this.convertWhitespaceNodesToSpace(d,!0),w=y.space,k=y.rawSpace;k||(k=w);var S={},E={spaces:{}};w.endsWith(" ")&&k.endsWith(" ")?(S.before=w.slice(0,w.length-1),E.spaces.before=k.slice(0,k.length-1)):w.startsWith(" ")&&k.startsWith(" ")?(S.after=w.slice(1),E.spaces.after=k.slice(1)):E.value=k,p=new po.default({value:" ",source:go(f,this.tokens[this.position-1]),sourceIndex:f[O.FIELDS.START_POS],spaces:S,raws:E})}return this.currToken&&this.currToken[O.FIELDS.TYPE]===q.space&&(p.spaces.after=this.optionalSpace(this.content()),this.position++),this.newNode(p)},e.comma=function(){if(this.position===this.tokens.length-1){this.root.trailingComma=!0,this.position++;return}this.current._inferEndPosition();var i=new fo.default({source:{start:wd(this.tokens[this.position+1])},sourceIndex:this.tokens[this.position+1][O.FIELDS.START_POS]});this.current.parent.append(i),this.current=i,this.position++},e.comment=function(){var i=this.currToken;this.newNode(new md.default({value:this.content(),source:sr(i),sourceIndex:i[O.FIELDS.START_POS]})),this.position++},e.error=function(i,n){throw this.root.error(i,n)},e.missingBackslash=function(){return this.error("Expected a backslash preceding the semicolon.",{index:this.currToken[O.FIELDS.START_POS]})},e.missingParenthesis=function(){return this.expected("opening parenthesis",this.currToken[O.FIELDS.START_POS])},e.missingSquareBracket=function(){return this.expected("opening square bracket",this.currToken[O.FIELDS.START_POS])},e.unexpected=function(){return this.error("Unexpected '"+this.content()+"'. Escaping special characters with \\ may help.",this.currToken[O.FIELDS.START_POS])},e.unexpectedPipe=function(){return this.error("Unexpected '|'.",this.currToken[O.FIELDS.START_POS])},e.namespace=function(){var i=this.prevToken&&this.content(this.prevToken)||!0;if(this.nextToken[O.FIELDS.TYPE]===q.word)return this.position++,this.word(i);if(this.nextToken[O.FIELDS.TYPE]===q.asterisk)return this.position++,this.universal(i);this.unexpectedPipe()},e.nesting=function(){if(this.nextToken){var i=this.content(this.nextToken);if(i==="|"){this.position++;return}}var n=this.currToken;this.newNode(new NA.default({value:this.content(),source:sr(n),sourceIndex:n[O.FIELDS.START_POS]})),this.position++},e.parentheses=function(){var i=this.current.last,n=1;if(this.position++,i&&i.type===FA.PSEUDO){var s=new fo.default({source:{start:wd(this.tokens[this.position])},sourceIndex:this.tokens[this.position][O.FIELDS.START_POS]}),a=this.current;for(i.append(s),this.current=s;this.position1&&i.nextToken&&i.nextToken[O.FIELDS.TYPE]===q.openParenthesis&&i.error("Misplaced parenthesis.",{index:i.nextToken[O.FIELDS.START_POS]})});else return this.expected(["pseudo-class","pseudo-element"],this.currToken[O.FIELDS.START_POS])},e.space=function(){var i=this.content();this.position===0||this.prevToken[O.FIELDS.TYPE]===q.comma||this.prevToken[O.FIELDS.TYPE]===q.openParenthesis||this.current.nodes.every(function(n){return n.type==="comment"})?(this.spaces=this.optionalSpace(i),this.position++):this.position===this.tokens.length-1||this.nextToken[O.FIELDS.TYPE]===q.comma||this.nextToken[O.FIELDS.TYPE]===q.closeParenthesis?(this.current.last.spaces.after=this.optionalSpace(i),this.position++):this.combinator()},e.string=function(){var i=this.currToken;this.newNode(new co.default({value:this.content(),source:sr(i),sourceIndex:i[O.FIELDS.START_POS]})),this.position++},e.universal=function(i){var n=this.nextToken;if(n&&this.content(n)==="|")return this.position++,this.namespace();var s=this.currToken;this.newNode(new MA.default({value:this.content(),source:sr(s),sourceIndex:s[O.FIELDS.START_POS]}),i),this.position++},e.splitWord=function(i,n){for(var s=this,a=this.nextToken,o=this.content();a&&~[q.dollar,q.caret,q.equals,q.word].indexOf(a[O.FIELDS.TYPE]);){this.position++;var l=this.content();if(o+=l,l.lastIndexOf("\\")===l.length-1){var c=this.nextToken;c&&c[O.FIELDS.TYPE]===q.space&&(o+=this.requiredSpace(this.content(c)),this.position++)}a=this.nextToken}var f=yo(o,".").filter(function(b){var v=o[b-1]==="\\",y=/^\d+\.\d+%$/.test(o);return!v&&!y}),d=yo(o,"#").filter(function(b){return o[b-1]!=="\\"}),p=yo(o,"#{");p.length&&(d=d.filter(function(b){return!~p.indexOf(b)}));var h=(0,BA.default)(UA([0].concat(f,d)));h.forEach(function(b,v){var y=h[v+1]||o.length,w=o.slice(b,y);if(v===0&&n)return n.call(s,w,h.length);var k,S=s.currToken,E=S[O.FIELDS.START_POS]+h[v],T=Ht(S[1],S[2]+b,S[3],S[2]+(y-1));if(~f.indexOf(b)){var B={value:w.slice(1),source:T,sourceIndex:E};k=new DA.default(ar(B,"value"))}else if(~d.indexOf(b)){var N={value:w.slice(1),source:T,sourceIndex:E};k=new qA.default(ar(N,"value"))}else{var R={value:w,source:T,sourceIndex:E};ar(R,"value"),k=new $A.default(R)}s.newNode(k,i),i=null}),this.position++},e.word=function(i){var n=this.nextToken;return n&&this.content(n)==="|"?(this.position++,this.namespace()):this.splitWord(i)},e.loop=function(){for(;this.position{u();"use strict";Si.__esModule=!0;Si.default=void 0;var HA=WA(kd());function WA(r){return r&&r.__esModule?r:{default:r}}var GA=function(){function r(t,i){this.func=t||function(){},this.funcRes=null,this.options=i}var e=r.prototype;return e._shouldUpdateSelector=function(i,n){n===void 0&&(n={});var s=Object.assign({},this.options,n);return s.updateSelector===!1?!1:typeof i!="string"},e._isLossy=function(i){i===void 0&&(i={});var n=Object.assign({},this.options,i);return n.lossless===!1},e._root=function(i,n){n===void 0&&(n={});var s=new HA.default(i,this._parseOptions(n));return s.root},e._parseOptions=function(i){return{lossy:this._isLossy(i)}},e._run=function(i,n){var s=this;return n===void 0&&(n={}),new Promise(function(a,o){try{var l=s._root(i,n);Promise.resolve(s.func(l)).then(function(c){var f=void 0;return s._shouldUpdateSelector(i,n)&&(f=l.toString(),i.selector=f),{transform:c,root:l,string:f}}).then(a,o)}catch(c){o(c);return}})},e._runSync=function(i,n){n===void 0&&(n={});var s=this._root(i,n),a=this.func(s);if(a&&typeof a.then=="function")throw new Error("Selector processor returned a promise to a synchronous call.");var o=void 0;return n.updateSelector&&typeof i!="string"&&(o=s.toString(),i.selector=o),{transform:a,root:s,string:o}},e.ast=function(i,n){return this._run(i,n).then(function(s){return s.root})},e.astSync=function(i,n){return this._runSync(i,n).root},e.transform=function(i,n){return this._run(i,n).then(function(s){return s.transform})},e.transformSync=function(i,n){return this._runSync(i,n).transform},e.process=function(i,n){return this._run(i,n).then(function(s){return s.string||s.root.toString()})},e.processSync=function(i,n){var s=this._runSync(i,n);return s.string||s.root.toString()},r}();Si.default=GA;Sd.exports=Si.default});var Cd=x(ne=>{u();"use strict";ne.__esModule=!0;ne.universal=ne.tag=ne.string=ne.selector=ne.root=ne.pseudo=ne.nesting=ne.id=ne.comment=ne.combinator=ne.className=ne.attribute=void 0;var QA=ze(to()),YA=ze(Na()),KA=ze(so()),XA=ze(Fa()),ZA=ze(za()),JA=ze(oo()),eC=ze(Ya()),tC=ze(Da()),rC=ze($a()),iC=ze(Ga()),nC=ze(Ha()),sC=ze(io());function ze(r){return r&&r.__esModule?r:{default:r}}var aC=function(e){return new QA.default(e)};ne.attribute=aC;var oC=function(e){return new YA.default(e)};ne.className=oC;var lC=function(e){return new KA.default(e)};ne.combinator=lC;var uC=function(e){return new XA.default(e)};ne.comment=uC;var fC=function(e){return new ZA.default(e)};ne.id=fC;var cC=function(e){return new JA.default(e)};ne.nesting=cC;var pC=function(e){return new eC.default(e)};ne.pseudo=pC;var dC=function(e){return new tC.default(e)};ne.root=dC;var hC=function(e){return new rC.default(e)};ne.selector=hC;var mC=function(e){return new iC.default(e)};ne.string=mC;var gC=function(e){return new nC.default(e)};ne.tag=gC;var yC=function(e){return new sC.default(e)};ne.universal=yC});var Td=x(Z=>{u();"use strict";Z.__esModule=!0;Z.isComment=Z.isCombinator=Z.isClassName=Z.isAttribute=void 0;Z.isContainer=TC;Z.isIdentifier=void 0;Z.isNamespace=RC;Z.isNesting=void 0;Z.isNode=bo;Z.isPseudo=void 0;Z.isPseudoClass=OC;Z.isPseudoElement=Od;Z.isUniversal=Z.isTag=Z.isString=Z.isSelector=Z.isRoot=void 0;var fe=Se(),Oe,bC=(Oe={},Oe[fe.ATTRIBUTE]=!0,Oe[fe.CLASS]=!0,Oe[fe.COMBINATOR]=!0,Oe[fe.COMMENT]=!0,Oe[fe.ID]=!0,Oe[fe.NESTING]=!0,Oe[fe.PSEUDO]=!0,Oe[fe.ROOT]=!0,Oe[fe.SELECTOR]=!0,Oe[fe.STRING]=!0,Oe[fe.TAG]=!0,Oe[fe.UNIVERSAL]=!0,Oe);function bo(r){return typeof r=="object"&&bC[r.type]}function Ue(r,e){return bo(e)&&e.type===r}var _d=Ue.bind(null,fe.ATTRIBUTE);Z.isAttribute=_d;var wC=Ue.bind(null,fe.CLASS);Z.isClassName=wC;var vC=Ue.bind(null,fe.COMBINATOR);Z.isCombinator=vC;var xC=Ue.bind(null,fe.COMMENT);Z.isComment=xC;var kC=Ue.bind(null,fe.ID);Z.isIdentifier=kC;var SC=Ue.bind(null,fe.NESTING);Z.isNesting=SC;var wo=Ue.bind(null,fe.PSEUDO);Z.isPseudo=wo;var AC=Ue.bind(null,fe.ROOT);Z.isRoot=AC;var CC=Ue.bind(null,fe.SELECTOR);Z.isSelector=CC;var _C=Ue.bind(null,fe.STRING);Z.isString=_C;var Ed=Ue.bind(null,fe.TAG);Z.isTag=Ed;var EC=Ue.bind(null,fe.UNIVERSAL);Z.isUniversal=EC;function Od(r){return wo(r)&&r.value&&(r.value.startsWith("::")||r.value.toLowerCase()===":before"||r.value.toLowerCase()===":after"||r.value.toLowerCase()===":first-letter"||r.value.toLowerCase()===":first-line")}function OC(r){return wo(r)&&!Od(r)}function TC(r){return!!(bo(r)&&r.walk)}function RC(r){return _d(r)||Ed(r)}});var Rd=x(Ke=>{u();"use strict";Ke.__esModule=!0;var vo=Se();Object.keys(vo).forEach(function(r){r==="default"||r==="__esModule"||r in Ke&&Ke[r]===vo[r]||(Ke[r]=vo[r])});var xo=Cd();Object.keys(xo).forEach(function(r){r==="default"||r==="__esModule"||r in Ke&&Ke[r]===xo[r]||(Ke[r]=xo[r])});var ko=Td();Object.keys(ko).forEach(function(r){r==="default"||r==="__esModule"||r in Ke&&Ke[r]===ko[r]||(Ke[r]=ko[r])})});var it=x((Ai,Id)=>{u();"use strict";Ai.__esModule=!0;Ai.default=void 0;var PC=qC(Ad()),IC=DC(Rd());function Pd(r){if(typeof WeakMap!="function")return null;var e=new WeakMap,t=new WeakMap;return(Pd=function(n){return n?t:e})(r)}function DC(r,e){if(!e&&r&&r.__esModule)return r;if(r===null||typeof r!="object"&&typeof r!="function")return{default:r};var t=Pd(e);if(t&&t.has(r))return t.get(r);var i={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var s in r)if(s!=="default"&&Object.prototype.hasOwnProperty.call(r,s)){var a=n?Object.getOwnPropertyDescriptor(r,s):null;a&&(a.get||a.set)?Object.defineProperty(i,s,a):i[s]=r[s]}return i.default=r,t&&t.set(r,i),i}function qC(r){return r&&r.__esModule?r:{default:r}}var So=function(e){return new PC.default(e)};Object.assign(So,IC);delete So.__esModule;var $C=So;Ai.default=$C;Id.exports=Ai.default});function mt(r){return["fontSize","outline"].includes(r)?e=>(typeof e=="function"&&(e=e({})),Array.isArray(e)&&(e=e[0]),e):r==="fontFamily"?e=>{typeof e=="function"&&(e=e({}));let t=Array.isArray(e)&&ke(e[1])?e[0]:e;return Array.isArray(t)?t.join(", "):t}:["boxShadow","transitionProperty","transitionDuration","transitionDelay","transitionTimingFunction","backgroundImage","backgroundSize","backgroundColor","cursor","animation"].includes(r)?e=>(typeof e=="function"&&(e=e({})),Array.isArray(e)&&(e=e.join(", ")),e):["gridTemplateColumns","gridTemplateRows","objectPosition"].includes(r)?e=>(typeof e=="function"&&(e=e({})),typeof e=="string"&&(e=ee.list.comma(e).join(" ")),e):(e,t={})=>(typeof e=="function"&&(e=e(t)),e)}var Ci=P(()=>{u();Ot();Kt()});var Bd=x((MI,Oo)=>{u();var{AtRule:LC,Rule:Dd}=$e(),qd=it();function Ao(r,e){let t;try{qd(i=>{t=i}).processSync(r)}catch(i){throw r.includes(":")?e?e.error("Missed semicolon"):i:e?e.error(i.message):i}return t.at(0)}function $d(r,e){let t=!1;return r.each(i=>{if(i.type==="nesting"){let n=e.clone({});i.value!=="&"?i.replaceWith(Ao(i.value.replace("&",n.toString()))):i.replaceWith(n),t=!0}else"nodes"in i&&i.nodes&&$d(i,e)&&(t=!0)}),t}function Ld(r,e){let t=[];return r.selectors.forEach(i=>{let n=Ao(i,r);e.selectors.forEach(s=>{if(!s)return;let a=Ao(s,e);$d(a,n)||(a.prepend(qd.combinator({value:" "})),a.prepend(n.clone({}))),t.push(a.toString())})}),t}function Hn(r,e){let t=r.prev();for(e.after(r);t&&t.type==="comment";){let i=t.prev();e.after(t),t=i}return r}function MC(r){return function e(t,i,n,s=n){let a=[];if(i.each(o=>{o.type==="rule"&&n?s&&(o.selectors=Ld(t,o)):o.type==="atrule"&&o.nodes?r[o.name]?e(t,o,s):i[_o]!==!1&&a.push(o):a.push(o)}),n&&a.length){let o=t.clone({nodes:[]});for(let l of a)o.append(l);i.prepend(o)}}}function Co(r,e,t){let i=new Dd({nodes:[],selector:r});return i.append(e),t.after(i),i}function Md(r,e){let t={};for(let i of r)t[i]=!0;if(e)for(let i of e)t[i.replace(/^@/,"")]=!0;return t}function NC(r){r=r.trim();let e=r.match(/^\((.*)\)$/);if(!e)return{selector:r,type:"basic"};let t=e[1].match(/^(with(?:out)?):(.+)$/);if(t){let i=t[1]==="with",n=Object.fromEntries(t[2].trim().split(/\s+/).map(a=>[a,!0]));if(i&&n.all)return{type:"noop"};let s=a=>!!n[a];return n.all?s=()=>!0:i&&(s=a=>a==="all"?!1:!n[a]),{escapes:s,type:"withrules"}}return{type:"unknown"}}function BC(r){let e=[],t=r.parent;for(;t&&t instanceof LC;)e.push(t),t=t.parent;return e}function FC(r){let e=r[Nd];if(!e)r.after(r.nodes);else{let t=r.nodes,i,n=-1,s,a,o,l=BC(r);if(l.forEach((c,f)=>{if(e(c.name))i=c,n=f,a=o;else{let d=o;o=c.clone({nodes:[]}),d&&o.append(d),s=s||o}}),i?a?(s.append(t),i.after(a)):i.after(t):r.after(t),r.next()&&i){let c;l.slice(0,n+1).forEach((f,d,p)=>{let h=c;c=f.clone({nodes:[]}),h&&c.append(h);let b=[],y=(p[d-1]||r).next();for(;y;)b.push(y),y=y.next();c.append(b)}),c&&(a||t[t.length-1]).after(c)}}r.remove()}var _o=Symbol("rootRuleMergeSel"),Nd=Symbol("rootRuleEscapes");function jC(r){let{params:e}=r,{escapes:t,selector:i,type:n}=NC(e);if(n==="unknown")throw r.error(`Unknown @${r.name} parameter ${JSON.stringify(e)}`);if(n==="basic"&&i){let s=new Dd({nodes:r.nodes,selector:i});r.removeAll(),r.append(s)}r[Nd]=t,r[_o]=t?!t("all"):n==="noop"}var Eo=Symbol("hasRootRule");Oo.exports=(r={})=>{let e=Md(["media","supports","layer","container","starting-style"],r.bubble),t=MC(e),i=Md(["document","font-face","keyframes","-webkit-keyframes","-moz-keyframes"],r.unwrap),n=(r.rootRuleName||"at-root").replace(/^@/,""),s=r.preserveEmpty;return{Once(a){a.walkAtRules(n,o=>{jC(o),a[Eo]=!0})},postcssPlugin:"postcss-nested",RootExit(a){a[Eo]&&(a.walkAtRules(n,FC),a[Eo]=!1)},Rule(a){let o=!1,l=a,c=!1,f=[];a.each(d=>{d.type==="rule"?(f.length&&(l=Co(a.selector,f,l),f=[]),c=!0,o=!0,d.selectors=Ld(a,d),l=Hn(d,l)):d.type==="atrule"?(f.length&&(l=Co(a.selector,f,l),f=[]),d.name===n?(o=!0,t(a,d,!0,d[_o]),l=Hn(d,l)):e[d.name]?(c=!0,o=!0,t(a,d,!0),l=Hn(d,l)):i[d.name]?(c=!0,o=!0,t(a,d,!1),l=Hn(d,l)):c&&f.push(d)):d.type==="decl"&&c&&f.push(d)}),f.length&&(l=Co(a.selector,f,l)),o&&s!==!0&&(a.raws.semicolon=!0,a.nodes.length===0&&a.remove())}}};Oo.exports.postcss=!0});var Ud=x((NI,zd)=>{u();"use strict";var Fd=/-(\w|$)/g,jd=(r,e)=>e.toUpperCase(),zC=r=>(r=r.toLowerCase(),r==="float"?"cssFloat":r.startsWith("-ms-")?r.substr(1).replace(Fd,jd):r.replace(Fd,jd));zd.exports=zC});var Po=x((BI,Vd)=>{u();var UC=Ud(),VC={boxFlex:!0,boxFlexGroup:!0,columnCount:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,strokeDashoffset:!0,strokeOpacity:!0,strokeWidth:!0};function To(r){return typeof r.nodes=="undefined"?!0:Ro(r)}function Ro(r){let e,t={};return r.each(i=>{if(i.type==="atrule")e="@"+i.name,i.params&&(e+=" "+i.params),typeof t[e]=="undefined"?t[e]=To(i):Array.isArray(t[e])?t[e].push(To(i)):t[e]=[t[e],To(i)];else if(i.type==="rule"){let n=Ro(i);if(t[i.selector])for(let s in n)t[i.selector][s]=n[s];else t[i.selector]=n}else if(i.type==="decl"){i.prop[0]==="-"&&i.prop[1]==="-"||i.parent&&i.parent.selector===":export"?e=i.prop:e=UC(i.prop);let n=i.value;!isNaN(i.value)&&VC[e]&&(n=parseFloat(i.value)),i.important&&(n+=" !important"),typeof t[e]=="undefined"?t[e]=n:Array.isArray(t[e])?t[e].push(n):t[e]=[t[e],n]}}),t}Vd.exports=Ro});var Wn=x((FI,Qd)=>{u();var _i=$e(),Hd=/\s*!important\s*$/i,HC={"box-flex":!0,"box-flex-group":!0,"column-count":!0,flex:!0,"flex-grow":!0,"flex-positive":!0,"flex-shrink":!0,"flex-negative":!0,"font-weight":!0,"line-clamp":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"tab-size":!0,widows:!0,"z-index":!0,zoom:!0,"fill-opacity":!0,"stroke-dashoffset":!0,"stroke-opacity":!0,"stroke-width":!0};function WC(r){return r.replace(/([A-Z])/g,"-$1").replace(/^ms-/,"-ms-").toLowerCase()}function Wd(r,e,t){t===!1||t===null||(e.startsWith("--")||(e=WC(e)),typeof t=="number"&&(t===0||HC[e]?t=t.toString():t+="px"),e==="css-float"&&(e="float"),Hd.test(t)?(t=t.replace(Hd,""),r.push(_i.decl({prop:e,value:t,important:!0}))):r.push(_i.decl({prop:e,value:t})))}function Gd(r,e,t){let i=_i.atRule({name:e[1],params:e[3]||""});typeof t=="object"&&(i.nodes=[],Io(t,i)),r.push(i)}function Io(r,e){let t,i,n;for(t in r)if(i=r[t],!(i===null||typeof i=="undefined"))if(t[0]==="@"){let s=t.match(/@(\S+)(\s+([\W\w]*)\s*)?/);if(Array.isArray(i))for(let a of i)Gd(e,s,a);else Gd(e,s,i)}else if(Array.isArray(i))for(let s of i)Wd(e,t,s);else typeof i=="object"?(n=_i.rule({selector:t}),Io(i,n),e.push(n)):Wd(e,t,i)}Qd.exports=function(r){let e=_i.root();return Io(r,e),e}});var Do=x((jI,Yd)=>{u();var GC=Po();Yd.exports=function(e){return console&&console.warn&&e.warnings().forEach(t=>{let i=t.plugin||"PostCSS";console.warn(i+": "+t.text)}),GC(e.root)}});var Xd=x((zI,Kd)=>{u();var QC=$e(),YC=Do(),KC=Wn();Kd.exports=function(e){let t=QC(e);return async i=>{let n=await t.process(i,{parser:KC,from:void 0});return YC(n)}}});var Jd=x((UI,Zd)=>{u();var XC=$e(),ZC=Do(),JC=Wn();Zd.exports=function(r){let e=XC(r);return t=>{let i=e.process(t,{parser:JC,from:void 0});return ZC(i)}}});var th=x((VI,eh)=>{u();var e_=Po(),t_=Wn(),r_=Xd(),i_=Jd();eh.exports={objectify:e_,parse:t_,async:r_,sync:i_}});var or,rh,HI,WI,GI,QI,ih=P(()=>{u();or=pe(th()),rh=or.default,HI=or.default.objectify,WI=or.default.parse,GI=or.default.async,QI=or.default.sync});function lr(r){return Array.isArray(r)?r.flatMap(e=>ee([(0,nh.default)({bubble:["screen"]})]).process(e,{parser:rh}).root.nodes):lr([r])}var nh,qo=P(()=>{u();Ot();nh=pe(Bd());ih()});function ur(r,e,t=!1){if(r==="")return e;let i=typeof e=="string"?(0,sh.default)().astSync(e):e;return i.walkClasses(n=>{let s=n.value,a=t&&s.startsWith("-");n.value=a?`-${r}${s.slice(1)}`:`${r}${s}`}),typeof e=="string"?i.toString():i}var sh,Gn=P(()=>{u();sh=pe(it())});function Te(r){let e=ah.default.className();return e.value=r,jt(e?.raws?.value??e.value)}var ah,fr=P(()=>{u();ah=pe(it());Zi()});function $o(r){return jt(`.${Te(r)}`)}function Qn(r,e){return $o(Ei(r,e))}function Ei(r,e){return e==="DEFAULT"?r:e==="-"||e==="-DEFAULT"?`-${r}`:e.startsWith("-")?`-${r}${e}`:e.startsWith("/")?`${r}${e}`:`${r}-${e}`}var Lo=P(()=>{u();fr();Zi()});function L(r,e=[[r,[r]]],{filterDefault:t=!1,...i}={}){let n=mt(r);return function({matchUtilities:s,theme:a}){for(let o of e){let l=Array.isArray(o[0])?o:[o];s(l.reduce((c,[f,d])=>Object.assign(c,{[f]:p=>d.reduce((h,b)=>Array.isArray(b)?Object.assign(h,{[b[0]]:b[1]}):Object.assign(h,{[b]:n(p)}),{})}),{}),{...i,values:t?Object.fromEntries(Object.entries(a(r)??{}).filter(([c])=>c!=="DEFAULT")):a(r)})}}}var oh=P(()=>{u();Ci()});function Tt(r){return r=Array.isArray(r)?r:[r],r.map(e=>{let t=e.values.map(i=>i.raw!==void 0?i.raw:[i.min&&`(min-width: ${i.min})`,i.max&&`(max-width: ${i.max})`].filter(Boolean).join(" and "));return e.not?`not all and ${t}`:t}).join(", ")}var Yn=P(()=>{u()});function Mo(r){return r.split(f_).map(t=>{let i=t.trim(),n={value:i},s=i.split(c_),a=new Set;for(let o of s)!a.has("DIRECTIONS")&&n_.has(o)?(n.direction=o,a.add("DIRECTIONS")):!a.has("PLAY_STATES")&&s_.has(o)?(n.playState=o,a.add("PLAY_STATES")):!a.has("FILL_MODES")&&a_.has(o)?(n.fillMode=o,a.add("FILL_MODES")):!a.has("ITERATION_COUNTS")&&(o_.has(o)||p_.test(o))?(n.iterationCount=o,a.add("ITERATION_COUNTS")):!a.has("TIMING_FUNCTION")&&l_.has(o)||!a.has("TIMING_FUNCTION")&&u_.some(l=>o.startsWith(`${l}(`))?(n.timingFunction=o,a.add("TIMING_FUNCTION")):!a.has("DURATION")&&lh.test(o)?(n.duration=o,a.add("DURATION")):!a.has("DELAY")&&lh.test(o)?(n.delay=o,a.add("DELAY")):a.has("NAME")?(n.unknown||(n.unknown=[]),n.unknown.push(o)):(n.name=o,a.add("NAME"));return n})}var n_,s_,a_,o_,l_,u_,f_,c_,lh,p_,uh=P(()=>{u();n_=new Set(["normal","reverse","alternate","alternate-reverse"]),s_=new Set(["running","paused"]),a_=new Set(["none","forwards","backwards","both"]),o_=new Set(["infinite"]),l_=new Set(["linear","ease","ease-in","ease-out","ease-in-out","step-start","step-end"]),u_=["cubic-bezier","steps"],f_=/\,(?![^(]*\))/g,c_=/\ +(?![^(]*\))/g,lh=/^(-?[\d.]+m?s)$/,p_=/^(\d+)$/});var fh,xe,ch=P(()=>{u();fh=r=>Object.assign({},...Object.entries(r??{}).flatMap(([e,t])=>typeof t=="object"?Object.entries(fh(t)).map(([i,n])=>({[e+(i==="DEFAULT"?"":`-${i}`)]:n})):[{[`${e}`]:t}])),xe=fh});var dh,ph=P(()=>{dh="3.4.16"});function Rt(r,e=!0){return Array.isArray(r)?r.map(t=>{if(e&&Array.isArray(t))throw new Error("The tuple syntax is not supported for `screens`.");if(typeof t=="string")return{name:t.toString(),not:!1,values:[{min:t,max:void 0}]};let[i,n]=t;return i=i.toString(),typeof n=="string"?{name:i,not:!1,values:[{min:n,max:void 0}]}:Array.isArray(n)?{name:i,not:!1,values:n.map(s=>mh(s))}:{name:i,not:!1,values:[mh(n)]}}):Rt(Object.entries(r??{}),!1)}function Kn(r){return r.values.length!==1?{result:!1,reason:"multiple-values"}:r.values[0].raw!==void 0?{result:!1,reason:"raw-values"}:r.values[0].min!==void 0&&r.values[0].max!==void 0?{result:!1,reason:"min-and-max"}:{result:!0,reason:null}}function hh(r,e,t){let i=Xn(e,r),n=Xn(t,r),s=Kn(i),a=Kn(n);if(s.reason==="multiple-values"||a.reason==="multiple-values")throw new Error("Attempted to sort a screen with multiple values. This should never happen. Please open a bug report.");if(s.reason==="raw-values"||a.reason==="raw-values")throw new Error("Attempted to sort a screen with raw values. This should never happen. Please open a bug report.");if(s.reason==="min-and-max"||a.reason==="min-and-max")throw new Error("Attempted to sort a screen with both min and max values. This should never happen. Please open a bug report.");let{min:o,max:l}=i.values[0],{min:c,max:f}=n.values[0];e.not&&([o,l]=[l,o]),t.not&&([c,f]=[f,c]),o=o===void 0?o:parseFloat(o),l=l===void 0?l:parseFloat(l),c=c===void 0?c:parseFloat(c),f=f===void 0?f:parseFloat(f);let[d,p]=r==="min"?[o,c]:[f,l];return d-p}function Xn(r,e){return typeof r=="object"?r:{name:"arbitrary-screen",values:[{[e]:r}]}}function mh({"min-width":r,min:e=r,max:t,raw:i}={}){return{min:e,max:t,raw:i}}var Zn=P(()=>{u()});function Jn(r,e){r.walkDecls(t=>{if(e.includes(t.prop)){t.remove();return}for(let i of e)t.value.includes(`/ var(${i})`)?t.value=t.value.replace(`/ var(${i})`,""):t.value.includes(`/ var(${i}, 1)`)&&(t.value=t.value.replace(`/ var(${i}, 1)`,""))})}var gh=P(()=>{u()});var se,Xe,nt,ge,yh,bh=P(()=>{u();ft();et();Ot();oh();Yn();fr();uh();ch();Lr();ra();Kt();Ci();ph();Be();Zn();Ys();gh();ct();Br();Oi();se={childVariant:({addVariant:r})=>{r("*","& > *")},pseudoElementVariants:({addVariant:r})=>{r("first-letter","&::first-letter"),r("first-line","&::first-line"),r("marker",[({container:e})=>(Jn(e,["--tw-text-opacity"]),"& *::marker"),({container:e})=>(Jn(e,["--tw-text-opacity"]),"&::marker")]),r("selection",["& *::selection","&::selection"]),r("file","&::file-selector-button"),r("placeholder","&::placeholder"),r("backdrop","&::backdrop"),r("before",({container:e})=>(e.walkRules(t=>{let i=!1;t.walkDecls("content",()=>{i=!0}),i||t.prepend(ee.decl({prop:"content",value:"var(--tw-content)"}))}),"&::before")),r("after",({container:e})=>(e.walkRules(t=>{let i=!1;t.walkDecls("content",()=>{i=!0}),i||t.prepend(ee.decl({prop:"content",value:"var(--tw-content)"}))}),"&::after"))},pseudoClassVariants:({addVariant:r,matchVariant:e,config:t,prefix:i})=>{let n=[["first","&:first-child"],["last","&:last-child"],["only","&:only-child"],["odd","&:nth-child(odd)"],["even","&:nth-child(even)"],"first-of-type","last-of-type","only-of-type",["visited",({container:a})=>(Jn(a,["--tw-text-opacity","--tw-border-opacity","--tw-bg-opacity"]),"&:visited")],"target",["open","&[open]"],"default","checked","indeterminate","placeholder-shown","autofill","optional","required","valid","invalid","in-range","out-of-range","read-only","empty","focus-within",["hover",we(t(),"hoverOnlyWhenSupported")?"@media (hover: hover) and (pointer: fine) { &:hover }":"&:hover"],"focus","focus-visible","active","enabled","disabled"].map(a=>Array.isArray(a)?a:[a,`&:${a}`]);for(let[a,o]of n)r(a,l=>typeof o=="function"?o(l):o);let s={group:(a,{modifier:o})=>o?[`:merge(${i(".group")}\\/${Te(o)})`," &"]:[`:merge(${i(".group")})`," &"],peer:(a,{modifier:o})=>o?[`:merge(${i(".peer")}\\/${Te(o)})`," ~ &"]:[`:merge(${i(".peer")})`," ~ &"]};for(let[a,o]of Object.entries(s))e(a,(l="",c)=>{let f=K(typeof l=="function"?l(c):l);f.includes("&")||(f="&"+f);let[d,p]=o("",c),h=null,b=null,v=0;for(let y=0;y{r("ltr",'&:where([dir="ltr"], [dir="ltr"] *)'),r("rtl",'&:where([dir="rtl"], [dir="rtl"] *)')},reducedMotionVariants:({addVariant:r})=>{r("motion-safe","@media (prefers-reduced-motion: no-preference)"),r("motion-reduce","@media (prefers-reduced-motion: reduce)")},darkVariants:({config:r,addVariant:e})=>{let[t,i=".dark"]=[].concat(r("darkMode","media"));if(t===!1&&(t="media",G.warn("darkmode-false",["The `darkMode` option in your Tailwind CSS configuration is set to `false`, which now behaves the same as `media`.","Change `darkMode` to `media` or remove it entirely.","https://tailwindcss.com/docs/upgrade-guide#remove-dark-mode-configuration"])),t==="variant"){let n;if(Array.isArray(i)||typeof i=="function"?n=i:typeof i=="string"&&(n=[i]),Array.isArray(n))for(let s of n)s===".dark"?(t=!1,G.warn("darkmode-variant-without-selector",["When using `variant` for `darkMode`, you must provide a selector.",'Example: `darkMode: ["variant", ".your-selector &"]`'])):s.includes("&")||(t=!1,G.warn("darkmode-variant-without-ampersand",["When using `variant` for `darkMode`, your selector must contain `&`.",'Example `darkMode: ["variant", ".your-selector &"]`']));i=n}t==="selector"?e("dark",`&:where(${i}, ${i} *)`):t==="media"?e("dark","@media (prefers-color-scheme: dark)"):t==="variant"?e("dark",i):t==="class"&&e("dark",`&:is(${i} *)`)},printVariant:({addVariant:r})=>{r("print","@media print")},screenVariants:({theme:r,addVariant:e,matchVariant:t})=>{let i=r("screens")??{},n=Object.values(i).every(w=>typeof w=="string"),s=Rt(r("screens")),a=new Set([]);function o(w){return w.match(/(\D+)$/)?.[1]??"(none)"}function l(w){w!==void 0&&a.add(o(w))}function c(w){return l(w),a.size===1}for(let w of s)for(let k of w.values)l(k.min),l(k.max);let f=a.size<=1;function d(w){return Object.fromEntries(s.filter(k=>Kn(k).result).map(k=>{let{min:S,max:E}=k.values[0];if(w==="min"&&S!==void 0)return k;if(w==="min"&&E!==void 0)return{...k,not:!k.not};if(w==="max"&&E!==void 0)return k;if(w==="max"&&S!==void 0)return{...k,not:!k.not}}).map(k=>[k.name,k]))}function p(w){return(k,S)=>hh(w,k.value,S.value)}let h=p("max"),b=p("min");function v(w){return k=>{if(n)if(f){if(typeof k=="string"&&!c(k))return G.warn("minmax-have-mixed-units",["The `min-*` and `max-*` variants are not supported with a `screens` configuration containing mixed units."]),[]}else return G.warn("mixed-screen-units",["The `min-*` and `max-*` variants are not supported with a `screens` configuration containing mixed units."]),[];else return G.warn("complex-screen-config",["The `min-*` and `max-*` variants are not supported with a `screens` configuration containing objects."]),[];return[`@media ${Tt(Xn(k,w))}`]}}t("max",v("max"),{sort:h,values:n?d("max"):{}});let y="min-screens";for(let w of s)e(w.name,`@media ${Tt(w)}`,{id:y,sort:n&&f?b:void 0,value:w});t("min",v("min"),{id:y,sort:b})},supportsVariants:({matchVariant:r,theme:e})=>{r("supports",(t="")=>{let i=K(t),n=/^\w*\s*\(/.test(i);return i=n?i.replace(/\b(and|or|not)\b/g," $1 "):i,n?`@supports ${i}`:(i.includes(":")||(i=`${i}: var(--tw)`),i.startsWith("(")&&i.endsWith(")")||(i=`(${i})`),`@supports ${i}`)},{values:e("supports")??{}})},hasVariants:({matchVariant:r,prefix:e})=>{r("has",t=>`&:has(${K(t)})`,{values:{},[Pt]:{respectPrefix:!1}}),r("group-has",(t,{modifier:i})=>i?`:merge(${e(".group")}\\/${i}):has(${K(t)}) &`:`:merge(${e(".group")}):has(${K(t)}) &`,{values:{},[Pt]:{respectPrefix:!1}}),r("peer-has",(t,{modifier:i})=>i?`:merge(${e(".peer")}\\/${i}):has(${K(t)}) ~ &`:`:merge(${e(".peer")}):has(${K(t)}) ~ &`,{values:{},[Pt]:{respectPrefix:!1}})},ariaVariants:({matchVariant:r,theme:e})=>{r("aria",t=>`&[aria-${Ye(K(t))}]`,{values:e("aria")??{}}),r("group-aria",(t,{modifier:i})=>i?`:merge(.group\\/${i})[aria-${Ye(K(t))}] &`:`:merge(.group)[aria-${Ye(K(t))}] &`,{values:e("aria")??{}}),r("peer-aria",(t,{modifier:i})=>i?`:merge(.peer\\/${i})[aria-${Ye(K(t))}] ~ &`:`:merge(.peer)[aria-${Ye(K(t))}] ~ &`,{values:e("aria")??{}})},dataVariants:({matchVariant:r,theme:e})=>{r("data",t=>`&[data-${Ye(K(t))}]`,{values:e("data")??{}}),r("group-data",(t,{modifier:i})=>i?`:merge(.group\\/${i})[data-${Ye(K(t))}] &`:`:merge(.group)[data-${Ye(K(t))}] &`,{values:e("data")??{}}),r("peer-data",(t,{modifier:i})=>i?`:merge(.peer\\/${i})[data-${Ye(K(t))}] ~ &`:`:merge(.peer)[data-${Ye(K(t))}] ~ &`,{values:e("data")??{}})},orientationVariants:({addVariant:r})=>{r("portrait","@media (orientation: portrait)"),r("landscape","@media (orientation: landscape)")},prefersContrastVariants:({addVariant:r})=>{r("contrast-more","@media (prefers-contrast: more)"),r("contrast-less","@media (prefers-contrast: less)")},forcedColorsVariants:({addVariant:r})=>{r("forced-colors","@media (forced-colors: active)")}},Xe=["translate(var(--tw-translate-x), var(--tw-translate-y))","rotate(var(--tw-rotate))","skewX(var(--tw-skew-x))","skewY(var(--tw-skew-y))","scaleX(var(--tw-scale-x))","scaleY(var(--tw-scale-y))"].join(" "),nt=["var(--tw-blur)","var(--tw-brightness)","var(--tw-contrast)","var(--tw-grayscale)","var(--tw-hue-rotate)","var(--tw-invert)","var(--tw-saturate)","var(--tw-sepia)","var(--tw-drop-shadow)"].join(" "),ge=["var(--tw-backdrop-blur)","var(--tw-backdrop-brightness)","var(--tw-backdrop-contrast)","var(--tw-backdrop-grayscale)","var(--tw-backdrop-hue-rotate)","var(--tw-backdrop-invert)","var(--tw-backdrop-opacity)","var(--tw-backdrop-saturate)","var(--tw-backdrop-sepia)"].join(" "),yh={preflight:({addBase:r})=>{let e=ee.parse(`*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:theme('borderColor.DEFAULT', currentColor)}::after,::before{--tw-content:''}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:theme('fontFamily.sans', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:theme('fontFamily.sans[1].fontFeatureSettings', normal);font-variation-settings:theme('fontFamily.sans[1].fontVariationSettings', normal);-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:theme('fontFamily.mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:theme('fontFamily.mono[1].fontFeatureSettings', normal);font-variation-settings:theme('fontFamily.mono[1].fontVariationSettings', normal);font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:theme('colors.gray.4', #9ca3af)}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}`);r([ee.comment({text:`! tailwindcss v${dh} | MIT License | https://tailwindcss.com`}),...e.nodes])},container:(()=>{function r(t=[]){return t.flatMap(i=>i.values.map(n=>n.min)).filter(i=>i!==void 0)}function e(t,i,n){if(typeof n=="undefined")return[];if(!(typeof n=="object"&&n!==null))return[{screen:"DEFAULT",minWidth:0,padding:n}];let s=[];n.DEFAULT&&s.push({screen:"DEFAULT",minWidth:0,padding:n.DEFAULT});for(let a of t)for(let o of i)for(let{min:l}of o.values)l===a&&s.push({minWidth:a,padding:n[o.name]});return s}return function({addComponents:t,theme:i}){let n=Rt(i("container.screens",i("screens"))),s=r(n),a=e(s,n,i("container.padding")),o=c=>{let f=a.find(d=>d.minWidth===c);return f?{paddingRight:f.padding,paddingLeft:f.padding}:{}},l=Array.from(new Set(s.slice().sort((c,f)=>parseInt(c)-parseInt(f)))).map(c=>({[`@media (min-width: ${c})`]:{".container":{"max-width":c,...o(c)}}}));t([{".container":Object.assign({width:"100%"},i("container.center",!1)?{marginRight:"auto",marginLeft:"auto"}:{},o(0))},...l])}})(),accessibility:({addUtilities:r})=>{r({".sr-only":{position:"absolute",width:"1px",height:"1px",padding:"0",margin:"-1px",overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0"},".not-sr-only":{position:"static",width:"auto",height:"auto",padding:"0",margin:"0",overflow:"visible",clip:"auto",whiteSpace:"normal"}})},pointerEvents:({addUtilities:r})=>{r({".pointer-events-none":{"pointer-events":"none"},".pointer-events-auto":{"pointer-events":"auto"}})},visibility:({addUtilities:r})=>{r({".visible":{visibility:"visible"},".invisible":{visibility:"hidden"},".collapse":{visibility:"collapse"}})},position:({addUtilities:r})=>{r({".static":{position:"static"},".fixed":{position:"fixed"},".absolute":{position:"absolute"},".relative":{position:"relative"},".sticky":{position:"sticky"}})},inset:L("inset",[["inset",["inset"]],[["inset-x",["left","right"]],["inset-y",["top","bottom"]]],[["start",["inset-inline-start"]],["end",["inset-inline-end"]],["top",["top"]],["right",["right"]],["bottom",["bottom"]],["left",["left"]]]],{supportsNegativeValues:!0}),isolation:({addUtilities:r})=>{r({".isolate":{isolation:"isolate"},".isolation-auto":{isolation:"auto"}})},zIndex:L("zIndex",[["z",["zIndex"]]],{supportsNegativeValues:!0}),order:L("order",void 0,{supportsNegativeValues:!0}),gridColumn:L("gridColumn",[["col",["gridColumn"]]]),gridColumnStart:L("gridColumnStart",[["col-start",["gridColumnStart"]]],{supportsNegativeValues:!0}),gridColumnEnd:L("gridColumnEnd",[["col-end",["gridColumnEnd"]]],{supportsNegativeValues:!0}),gridRow:L("gridRow",[["row",["gridRow"]]]),gridRowStart:L("gridRowStart",[["row-start",["gridRowStart"]]],{supportsNegativeValues:!0}),gridRowEnd:L("gridRowEnd",[["row-end",["gridRowEnd"]]],{supportsNegativeValues:!0}),float:({addUtilities:r})=>{r({".float-start":{float:"inline-start"},".float-end":{float:"inline-end"},".float-right":{float:"right"},".float-left":{float:"left"},".float-none":{float:"none"}})},clear:({addUtilities:r})=>{r({".clear-start":{clear:"inline-start"},".clear-end":{clear:"inline-end"},".clear-left":{clear:"left"},".clear-right":{clear:"right"},".clear-both":{clear:"both"},".clear-none":{clear:"none"}})},margin:L("margin",[["m",["margin"]],[["mx",["margin-left","margin-right"]],["my",["margin-top","margin-bottom"]]],[["ms",["margin-inline-start"]],["me",["margin-inline-end"]],["mt",["margin-top"]],["mr",["margin-right"]],["mb",["margin-bottom"]],["ml",["margin-left"]]]],{supportsNegativeValues:!0}),boxSizing:({addUtilities:r})=>{r({".box-border":{"box-sizing":"border-box"},".box-content":{"box-sizing":"content-box"}})},lineClamp:({matchUtilities:r,addUtilities:e,theme:t})=>{r({"line-clamp":i=>({overflow:"hidden",display:"-webkit-box","-webkit-box-orient":"vertical","-webkit-line-clamp":`${i}`})},{values:t("lineClamp")}),e({".line-clamp-none":{overflow:"visible",display:"block","-webkit-box-orient":"horizontal","-webkit-line-clamp":"none"}})},display:({addUtilities:r})=>{r({".block":{display:"block"},".inline-block":{display:"inline-block"},".inline":{display:"inline"},".flex":{display:"flex"},".inline-flex":{display:"inline-flex"},".table":{display:"table"},".inline-table":{display:"inline-table"},".table-caption":{display:"table-caption"},".table-cell":{display:"table-cell"},".table-column":{display:"table-column"},".table-column-group":{display:"table-column-group"},".table-footer-group":{display:"table-footer-group"},".table-header-group":{display:"table-header-group"},".table-row-group":{display:"table-row-group"},".table-row":{display:"table-row"},".flow-root":{display:"flow-root"},".grid":{display:"grid"},".inline-grid":{display:"inline-grid"},".contents":{display:"contents"},".list-item":{display:"list-item"},".hidden":{display:"none"}})},aspectRatio:L("aspectRatio",[["aspect",["aspect-ratio"]]]),size:L("size",[["size",["width","height"]]]),height:L("height",[["h",["height"]]]),maxHeight:L("maxHeight",[["max-h",["maxHeight"]]]),minHeight:L("minHeight",[["min-h",["minHeight"]]]),width:L("width",[["w",["width"]]]),minWidth:L("minWidth",[["min-w",["minWidth"]]]),maxWidth:L("maxWidth",[["max-w",["maxWidth"]]]),flex:L("flex"),flexShrink:L("flexShrink",[["flex-shrink",["flex-shrink"]],["shrink",["flex-shrink"]]]),flexGrow:L("flexGrow",[["flex-grow",["flex-grow"]],["grow",["flex-grow"]]]),flexBasis:L("flexBasis",[["basis",["flex-basis"]]]),tableLayout:({addUtilities:r})=>{r({".table-auto":{"table-layout":"auto"},".table-fixed":{"table-layout":"fixed"}})},captionSide:({addUtilities:r})=>{r({".caption-top":{"caption-side":"top"},".caption-bottom":{"caption-side":"bottom"}})},borderCollapse:({addUtilities:r})=>{r({".border-collapse":{"border-collapse":"collapse"},".border-separate":{"border-collapse":"separate"}})},borderSpacing:({addDefaults:r,matchUtilities:e,theme:t})=>{r("border-spacing",{"--tw-border-spacing-x":0,"--tw-border-spacing-y":0}),e({"border-spacing":i=>({"--tw-border-spacing-x":i,"--tw-border-spacing-y":i,"@defaults border-spacing":{},"border-spacing":"var(--tw-border-spacing-x) var(--tw-border-spacing-y)"}),"border-spacing-x":i=>({"--tw-border-spacing-x":i,"@defaults border-spacing":{},"border-spacing":"var(--tw-border-spacing-x) var(--tw-border-spacing-y)"}),"border-spacing-y":i=>({"--tw-border-spacing-y":i,"@defaults border-spacing":{},"border-spacing":"var(--tw-border-spacing-x) var(--tw-border-spacing-y)"})},{values:t("borderSpacing")})},transformOrigin:L("transformOrigin",[["origin",["transformOrigin"]]]),translate:L("translate",[[["translate-x",[["@defaults transform",{}],"--tw-translate-x",["transform",Xe]]],["translate-y",[["@defaults transform",{}],"--tw-translate-y",["transform",Xe]]]]],{supportsNegativeValues:!0}),rotate:L("rotate",[["rotate",[["@defaults transform",{}],"--tw-rotate",["transform",Xe]]]],{supportsNegativeValues:!0}),skew:L("skew",[[["skew-x",[["@defaults transform",{}],"--tw-skew-x",["transform",Xe]]],["skew-y",[["@defaults transform",{}],"--tw-skew-y",["transform",Xe]]]]],{supportsNegativeValues:!0}),scale:L("scale",[["scale",[["@defaults transform",{}],"--tw-scale-x","--tw-scale-y",["transform",Xe]]],[["scale-x",[["@defaults transform",{}],"--tw-scale-x",["transform",Xe]]],["scale-y",[["@defaults transform",{}],"--tw-scale-y",["transform",Xe]]]]],{supportsNegativeValues:!0}),transform:({addDefaults:r,addUtilities:e})=>{r("transform",{"--tw-translate-x":"0","--tw-translate-y":"0","--tw-rotate":"0","--tw-skew-x":"0","--tw-skew-y":"0","--tw-scale-x":"1","--tw-scale-y":"1"}),e({".transform":{"@defaults transform":{},transform:Xe},".transform-cpu":{transform:Xe},".transform-gpu":{transform:Xe.replace("translate(var(--tw-translate-x), var(--tw-translate-y))","translate3d(var(--tw-translate-x), var(--tw-translate-y), 0)")},".transform-none":{transform:"none"}})},animation:({matchUtilities:r,theme:e,config:t})=>{let i=s=>Te(t("prefix")+s),n=Object.fromEntries(Object.entries(e("keyframes")??{}).map(([s,a])=>[s,{[`@keyframes ${i(s)}`]:a}]));r({animate:s=>{let a=Mo(s);return[...a.flatMap(o=>n[o.name]),{animation:a.map(({name:o,value:l})=>o===void 0||n[o]===void 0?l:l.replace(o,i(o))).join(", ")}]}},{values:e("animation")})},cursor:L("cursor"),touchAction:({addDefaults:r,addUtilities:e})=>{r("touch-action",{"--tw-pan-x":" ","--tw-pan-y":" ","--tw-pinch-zoom":" "});let t="var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)";e({".touch-auto":{"touch-action":"auto"},".touch-none":{"touch-action":"none"},".touch-pan-x":{"@defaults touch-action":{},"--tw-pan-x":"pan-x","touch-action":t},".touch-pan-left":{"@defaults touch-action":{},"--tw-pan-x":"pan-left","touch-action":t},".touch-pan-right":{"@defaults touch-action":{},"--tw-pan-x":"pan-right","touch-action":t},".touch-pan-y":{"@defaults touch-action":{},"--tw-pan-y":"pan-y","touch-action":t},".touch-pan-up":{"@defaults touch-action":{},"--tw-pan-y":"pan-up","touch-action":t},".touch-pan-down":{"@defaults touch-action":{},"--tw-pan-y":"pan-down","touch-action":t},".touch-pinch-zoom":{"@defaults touch-action":{},"--tw-pinch-zoom":"pinch-zoom","touch-action":t},".touch-manipulation":{"touch-action":"manipulation"}})},userSelect:({addUtilities:r})=>{r({".select-none":{"user-select":"none"},".select-text":{"user-select":"text"},".select-all":{"user-select":"all"},".select-auto":{"user-select":"auto"}})},resize:({addUtilities:r})=>{r({".resize-none":{resize:"none"},".resize-y":{resize:"vertical"},".resize-x":{resize:"horizontal"},".resize":{resize:"both"}})},scrollSnapType:({addDefaults:r,addUtilities:e})=>{r("scroll-snap-type",{"--tw-scroll-snap-strictness":"proximity"}),e({".snap-none":{"scroll-snap-type":"none"},".snap-x":{"@defaults scroll-snap-type":{},"scroll-snap-type":"x var(--tw-scroll-snap-strictness)"},".snap-y":{"@defaults scroll-snap-type":{},"scroll-snap-type":"y var(--tw-scroll-snap-strictness)"},".snap-both":{"@defaults scroll-snap-type":{},"scroll-snap-type":"both var(--tw-scroll-snap-strictness)"},".snap-mandatory":{"--tw-scroll-snap-strictness":"mandatory"},".snap-proximity":{"--tw-scroll-snap-strictness":"proximity"}})},scrollSnapAlign:({addUtilities:r})=>{r({".snap-start":{"scroll-snap-align":"start"},".snap-end":{"scroll-snap-align":"end"},".snap-center":{"scroll-snap-align":"center"},".snap-align-none":{"scroll-snap-align":"none"}})},scrollSnapStop:({addUtilities:r})=>{r({".snap-normal":{"scroll-snap-stop":"normal"},".snap-always":{"scroll-snap-stop":"always"}})},scrollMargin:L("scrollMargin",[["scroll-m",["scroll-margin"]],[["scroll-mx",["scroll-margin-left","scroll-margin-right"]],["scroll-my",["scroll-margin-top","scroll-margin-bottom"]]],[["scroll-ms",["scroll-margin-inline-start"]],["scroll-me",["scroll-margin-inline-end"]],["scroll-mt",["scroll-margin-top"]],["scroll-mr",["scroll-margin-right"]],["scroll-mb",["scroll-margin-bottom"]],["scroll-ml",["scroll-margin-left"]]]],{supportsNegativeValues:!0}),scrollPadding:L("scrollPadding",[["scroll-p",["scroll-padding"]],[["scroll-px",["scroll-padding-left","scroll-padding-right"]],["scroll-py",["scroll-padding-top","scroll-padding-bottom"]]],[["scroll-ps",["scroll-padding-inline-start"]],["scroll-pe",["scroll-padding-inline-end"]],["scroll-pt",["scroll-padding-top"]],["scroll-pr",["scroll-padding-right"]],["scroll-pb",["scroll-padding-bottom"]],["scroll-pl",["scroll-padding-left"]]]]),listStylePosition:({addUtilities:r})=>{r({".list-inside":{"list-style-position":"inside"},".list-outside":{"list-style-position":"outside"}})},listStyleType:L("listStyleType",[["list",["listStyleType"]]]),listStyleImage:L("listStyleImage",[["list-image",["listStyleImage"]]]),appearance:({addUtilities:r})=>{r({".appearance-none":{appearance:"none"},".appearance-auto":{appearance:"auto"}})},columns:L("columns",[["columns",["columns"]]]),breakBefore:({addUtilities:r})=>{r({".break-before-auto":{"break-before":"auto"},".break-before-avoid":{"break-before":"avoid"},".break-before-all":{"break-before":"all"},".break-before-avoid-page":{"break-before":"avoid-page"},".break-before-page":{"break-before":"page"},".break-before-left":{"break-before":"left"},".break-before-right":{"break-before":"right"},".break-before-column":{"break-before":"column"}})},breakInside:({addUtilities:r})=>{r({".break-inside-auto":{"break-inside":"auto"},".break-inside-avoid":{"break-inside":"avoid"},".break-inside-avoid-page":{"break-inside":"avoid-page"},".break-inside-avoid-column":{"break-inside":"avoid-column"}})},breakAfter:({addUtilities:r})=>{r({".break-after-auto":{"break-after":"auto"},".break-after-avoid":{"break-after":"avoid"},".break-after-all":{"break-after":"all"},".break-after-avoid-page":{"break-after":"avoid-page"},".break-after-page":{"break-after":"page"},".break-after-left":{"break-after":"left"},".break-after-right":{"break-after":"right"},".break-after-column":{"break-after":"column"}})},gridAutoColumns:L("gridAutoColumns",[["auto-cols",["gridAutoColumns"]]]),gridAutoFlow:({addUtilities:r})=>{r({".grid-flow-row":{gridAutoFlow:"row"},".grid-flow-col":{gridAutoFlow:"column"},".grid-flow-dense":{gridAutoFlow:"dense"},".grid-flow-row-dense":{gridAutoFlow:"row dense"},".grid-flow-col-dense":{gridAutoFlow:"column dense"}})},gridAutoRows:L("gridAutoRows",[["auto-rows",["gridAutoRows"]]]),gridTemplateColumns:L("gridTemplateColumns",[["grid-cols",["gridTemplateColumns"]]]),gridTemplateRows:L("gridTemplateRows",[["grid-rows",["gridTemplateRows"]]]),flexDirection:({addUtilities:r})=>{r({".flex-row":{"flex-direction":"row"},".flex-row-reverse":{"flex-direction":"row-reverse"},".flex-col":{"flex-direction":"column"},".flex-col-reverse":{"flex-direction":"column-reverse"}})},flexWrap:({addUtilities:r})=>{r({".flex-wrap":{"flex-wrap":"wrap"},".flex-wrap-reverse":{"flex-wrap":"wrap-reverse"},".flex-nowrap":{"flex-wrap":"nowrap"}})},placeContent:({addUtilities:r})=>{r({".place-content-center":{"place-content":"center"},".place-content-start":{"place-content":"start"},".place-content-end":{"place-content":"end"},".place-content-between":{"place-content":"space-between"},".place-content-around":{"place-content":"space-around"},".place-content-evenly":{"place-content":"space-evenly"},".place-content-baseline":{"place-content":"baseline"},".place-content-stretch":{"place-content":"stretch"}})},placeItems:({addUtilities:r})=>{r({".place-items-start":{"place-items":"start"},".place-items-end":{"place-items":"end"},".place-items-center":{"place-items":"center"},".place-items-baseline":{"place-items":"baseline"},".place-items-stretch":{"place-items":"stretch"}})},alignContent:({addUtilities:r})=>{r({".content-normal":{"align-content":"normal"},".content-center":{"align-content":"center"},".content-start":{"align-content":"flex-start"},".content-end":{"align-content":"flex-end"},".content-between":{"align-content":"space-between"},".content-around":{"align-content":"space-around"},".content-evenly":{"align-content":"space-evenly"},".content-baseline":{"align-content":"baseline"},".content-stretch":{"align-content":"stretch"}})},alignItems:({addUtilities:r})=>{r({".items-start":{"align-items":"flex-start"},".items-end":{"align-items":"flex-end"},".items-center":{"align-items":"center"},".items-baseline":{"align-items":"baseline"},".items-stretch":{"align-items":"stretch"}})},justifyContent:({addUtilities:r})=>{r({".justify-normal":{"justify-content":"normal"},".justify-start":{"justify-content":"flex-start"},".justify-end":{"justify-content":"flex-end"},".justify-center":{"justify-content":"center"},".justify-between":{"justify-content":"space-between"},".justify-around":{"justify-content":"space-around"},".justify-evenly":{"justify-content":"space-evenly"},".justify-stretch":{"justify-content":"stretch"}})},justifyItems:({addUtilities:r})=>{r({".justify-items-start":{"justify-items":"start"},".justify-items-end":{"justify-items":"end"},".justify-items-center":{"justify-items":"center"},".justify-items-stretch":{"justify-items":"stretch"}})},gap:L("gap",[["gap",["gap"]],[["gap-x",["columnGap"]],["gap-y",["rowGap"]]]]),space:({matchUtilities:r,addUtilities:e,theme:t})=>{r({"space-x":i=>(i=i==="0"?"0px":i,{"& > :not([hidden]) ~ :not([hidden])":{"--tw-space-x-reverse":"0","margin-right":`calc(${i} * var(--tw-space-x-reverse))`,"margin-left":`calc(${i} * calc(1 - var(--tw-space-x-reverse)))`}}),"space-y":i=>(i=i==="0"?"0px":i,{"& > :not([hidden]) ~ :not([hidden])":{"--tw-space-y-reverse":"0","margin-top":`calc(${i} * calc(1 - var(--tw-space-y-reverse)))`,"margin-bottom":`calc(${i} * var(--tw-space-y-reverse))`}})},{values:t("space"),supportsNegativeValues:!0}),e({".space-y-reverse > :not([hidden]) ~ :not([hidden])":{"--tw-space-y-reverse":"1"},".space-x-reverse > :not([hidden]) ~ :not([hidden])":{"--tw-space-x-reverse":"1"}})},divideWidth:({matchUtilities:r,addUtilities:e,theme:t})=>{r({"divide-x":i=>(i=i==="0"?"0px":i,{"& > :not([hidden]) ~ :not([hidden])":{"@defaults border-width":{},"--tw-divide-x-reverse":"0","border-right-width":`calc(${i} * var(--tw-divide-x-reverse))`,"border-left-width":`calc(${i} * calc(1 - var(--tw-divide-x-reverse)))`}}),"divide-y":i=>(i=i==="0"?"0px":i,{"& > :not([hidden]) ~ :not([hidden])":{"@defaults border-width":{},"--tw-divide-y-reverse":"0","border-top-width":`calc(${i} * calc(1 - var(--tw-divide-y-reverse)))`,"border-bottom-width":`calc(${i} * var(--tw-divide-y-reverse))`}})},{values:t("divideWidth"),type:["line-width","length","any"]}),e({".divide-y-reverse > :not([hidden]) ~ :not([hidden])":{"@defaults border-width":{},"--tw-divide-y-reverse":"1"},".divide-x-reverse > :not([hidden]) ~ :not([hidden])":{"@defaults border-width":{},"--tw-divide-x-reverse":"1"}})},divideStyle:({addUtilities:r})=>{r({".divide-solid > :not([hidden]) ~ :not([hidden])":{"border-style":"solid"},".divide-dashed > :not([hidden]) ~ :not([hidden])":{"border-style":"dashed"},".divide-dotted > :not([hidden]) ~ :not([hidden])":{"border-style":"dotted"},".divide-double > :not([hidden]) ~ :not([hidden])":{"border-style":"double"},".divide-none > :not([hidden]) ~ :not([hidden])":{"border-style":"none"}})},divideColor:({matchUtilities:r,theme:e,corePlugins:t})=>{r({divide:i=>t("divideOpacity")?{["& > :not([hidden]) ~ :not([hidden])"]:Ae({color:i,property:"border-color",variable:"--tw-divide-opacity"})}:{["& > :not([hidden]) ~ :not([hidden])"]:{"border-color":X(i)}}},{values:(({DEFAULT:i,...n})=>n)(xe(e("divideColor"))),type:["color","any"]})},divideOpacity:({matchUtilities:r,theme:e})=>{r({"divide-opacity":t=>({["& > :not([hidden]) ~ :not([hidden])"]:{"--tw-divide-opacity":t}})},{values:e("divideOpacity")})},placeSelf:({addUtilities:r})=>{r({".place-self-auto":{"place-self":"auto"},".place-self-start":{"place-self":"start"},".place-self-end":{"place-self":"end"},".place-self-center":{"place-self":"center"},".place-self-stretch":{"place-self":"stretch"}})},alignSelf:({addUtilities:r})=>{r({".self-auto":{"align-self":"auto"},".self-start":{"align-self":"flex-start"},".self-end":{"align-self":"flex-end"},".self-center":{"align-self":"center"},".self-stretch":{"align-self":"stretch"},".self-baseline":{"align-self":"baseline"}})},justifySelf:({addUtilities:r})=>{r({".justify-self-auto":{"justify-self":"auto"},".justify-self-start":{"justify-self":"start"},".justify-self-end":{"justify-self":"end"},".justify-self-center":{"justify-self":"center"},".justify-self-stretch":{"justify-self":"stretch"}})},overflow:({addUtilities:r})=>{r({".overflow-auto":{overflow:"auto"},".overflow-hidden":{overflow:"hidden"},".overflow-clip":{overflow:"clip"},".overflow-visible":{overflow:"visible"},".overflow-scroll":{overflow:"scroll"},".overflow-x-auto":{"overflow-x":"auto"},".overflow-y-auto":{"overflow-y":"auto"},".overflow-x-hidden":{"overflow-x":"hidden"},".overflow-y-hidden":{"overflow-y":"hidden"},".overflow-x-clip":{"overflow-x":"clip"},".overflow-y-clip":{"overflow-y":"clip"},".overflow-x-visible":{"overflow-x":"visible"},".overflow-y-visible":{"overflow-y":"visible"},".overflow-x-scroll":{"overflow-x":"scroll"},".overflow-y-scroll":{"overflow-y":"scroll"}})},overscrollBehavior:({addUtilities:r})=>{r({".overscroll-auto":{"overscroll-behavior":"auto"},".overscroll-contain":{"overscroll-behavior":"contain"},".overscroll-none":{"overscroll-behavior":"none"},".overscroll-y-auto":{"overscroll-behavior-y":"auto"},".overscroll-y-contain":{"overscroll-behavior-y":"contain"},".overscroll-y-none":{"overscroll-behavior-y":"none"},".overscroll-x-auto":{"overscroll-behavior-x":"auto"},".overscroll-x-contain":{"overscroll-behavior-x":"contain"},".overscroll-x-none":{"overscroll-behavior-x":"none"}})},scrollBehavior:({addUtilities:r})=>{r({".scroll-auto":{"scroll-behavior":"auto"},".scroll-smooth":{"scroll-behavior":"smooth"}})},textOverflow:({addUtilities:r})=>{r({".truncate":{overflow:"hidden","text-overflow":"ellipsis","white-space":"nowrap"},".overflow-ellipsis":{"text-overflow":"ellipsis"},".text-ellipsis":{"text-overflow":"ellipsis"},".text-clip":{"text-overflow":"clip"}})},hyphens:({addUtilities:r})=>{r({".hyphens-none":{hyphens:"none"},".hyphens-manual":{hyphens:"manual"},".hyphens-auto":{hyphens:"auto"}})},whitespace:({addUtilities:r})=>{r({".whitespace-normal":{"white-space":"normal"},".whitespace-nowrap":{"white-space":"nowrap"},".whitespace-pre":{"white-space":"pre"},".whitespace-pre-line":{"white-space":"pre-line"},".whitespace-pre-wrap":{"white-space":"pre-wrap"},".whitespace-break-spaces":{"white-space":"break-spaces"}})},textWrap:({addUtilities:r})=>{r({".text-wrap":{"text-wrap":"wrap"},".text-nowrap":{"text-wrap":"nowrap"},".text-balance":{"text-wrap":"balance"},".text-pretty":{"text-wrap":"pretty"}})},wordBreak:({addUtilities:r})=>{r({".break-normal":{"overflow-wrap":"normal","word-break":"normal"},".break-words":{"overflow-wrap":"break-word"},".break-all":{"word-break":"break-all"},".break-keep":{"word-break":"keep-all"}})},borderRadius:L("borderRadius",[["rounded",["border-radius"]],[["rounded-s",["border-start-start-radius","border-end-start-radius"]],["rounded-e",["border-start-end-radius","border-end-end-radius"]],["rounded-t",["border-top-left-radius","border-top-right-radius"]],["rounded-r",["border-top-right-radius","border-bottom-right-radius"]],["rounded-b",["border-bottom-right-radius","border-bottom-left-radius"]],["rounded-l",["border-top-left-radius","border-bottom-left-radius"]]],[["rounded-ss",["border-start-start-radius"]],["rounded-se",["border-start-end-radius"]],["rounded-ee",["border-end-end-radius"]],["rounded-es",["border-end-start-radius"]],["rounded-tl",["border-top-left-radius"]],["rounded-tr",["border-top-right-radius"]],["rounded-br",["border-bottom-right-radius"]],["rounded-bl",["border-bottom-left-radius"]]]]),borderWidth:L("borderWidth",[["border",[["@defaults border-width",{}],"border-width"]],[["border-x",[["@defaults border-width",{}],"border-left-width","border-right-width"]],["border-y",[["@defaults border-width",{}],"border-top-width","border-bottom-width"]]],[["border-s",[["@defaults border-width",{}],"border-inline-start-width"]],["border-e",[["@defaults border-width",{}],"border-inline-end-width"]],["border-t",[["@defaults border-width",{}],"border-top-width"]],["border-r",[["@defaults border-width",{}],"border-right-width"]],["border-b",[["@defaults border-width",{}],"border-bottom-width"]],["border-l",[["@defaults border-width",{}],"border-left-width"]]]],{type:["line-width","length"]}),borderStyle:({addUtilities:r})=>{r({".border-solid":{"border-style":"solid"},".border-dashed":{"border-style":"dashed"},".border-dotted":{"border-style":"dotted"},".border-double":{"border-style":"double"},".border-hidden":{"border-style":"hidden"},".border-none":{"border-style":"none"}})},borderColor:({matchUtilities:r,theme:e,corePlugins:t})=>{r({border:i=>t("borderOpacity")?Ae({color:i,property:"border-color",variable:"--tw-border-opacity"}):{"border-color":X(i)}},{values:(({DEFAULT:i,...n})=>n)(xe(e("borderColor"))),type:["color","any"]}),r({"border-x":i=>t("borderOpacity")?Ae({color:i,property:["border-left-color","border-right-color"],variable:"--tw-border-opacity"}):{"border-left-color":X(i),"border-right-color":X(i)},"border-y":i=>t("borderOpacity")?Ae({color:i,property:["border-top-color","border-bottom-color"],variable:"--tw-border-opacity"}):{"border-top-color":X(i),"border-bottom-color":X(i)}},{values:(({DEFAULT:i,...n})=>n)(xe(e("borderColor"))),type:["color","any"]}),r({"border-s":i=>t("borderOpacity")?Ae({color:i,property:"border-inline-start-color",variable:"--tw-border-opacity"}):{"border-inline-start-color":X(i)},"border-e":i=>t("borderOpacity")?Ae({color:i,property:"border-inline-end-color",variable:"--tw-border-opacity"}):{"border-inline-end-color":X(i)},"border-t":i=>t("borderOpacity")?Ae({color:i,property:"border-top-color",variable:"--tw-border-opacity"}):{"border-top-color":X(i)},"border-r":i=>t("borderOpacity")?Ae({color:i,property:"border-right-color",variable:"--tw-border-opacity"}):{"border-right-color":X(i)},"border-b":i=>t("borderOpacity")?Ae({color:i,property:"border-bottom-color",variable:"--tw-border-opacity"}):{"border-bottom-color":X(i)},"border-l":i=>t("borderOpacity")?Ae({color:i,property:"border-left-color",variable:"--tw-border-opacity"}):{"border-left-color":X(i)}},{values:(({DEFAULT:i,...n})=>n)(xe(e("borderColor"))),type:["color","any"]})},borderOpacity:L("borderOpacity",[["border-opacity",["--tw-border-opacity"]]]),backgroundColor:({matchUtilities:r,theme:e,corePlugins:t})=>{r({bg:i=>t("backgroundOpacity")?Ae({color:i,property:"background-color",variable:"--tw-bg-opacity"}):{"background-color":X(i)}},{values:xe(e("backgroundColor")),type:["color","any"]})},backgroundOpacity:L("backgroundOpacity",[["bg-opacity",["--tw-bg-opacity"]]]),backgroundImage:L("backgroundImage",[["bg",["background-image"]]],{type:["lookup","image","url"]}),gradientColorStops:(()=>{function r(e){return Je(e,0,"rgb(255 255 255 / 0)")}return function({matchUtilities:e,theme:t,addDefaults:i}){i("gradient-color-stops",{"--tw-gradient-from-position":" ","--tw-gradient-via-position":" ","--tw-gradient-to-position":" "});let n={values:xe(t("gradientColorStops")),type:["color","any"]},s={values:t("gradientColorStopPositions"),type:["length","percentage"]};e({from:a=>{let o=r(a);return{"@defaults gradient-color-stops":{},"--tw-gradient-from":`${X(a)} var(--tw-gradient-from-position)`,"--tw-gradient-to":`${o} var(--tw-gradient-to-position)`,"--tw-gradient-stops":"var(--tw-gradient-from), var(--tw-gradient-to)"}}},n),e({from:a=>({"--tw-gradient-from-position":a})},s),e({via:a=>{let o=r(a);return{"@defaults gradient-color-stops":{},"--tw-gradient-to":`${o} var(--tw-gradient-to-position)`,"--tw-gradient-stops":`var(--tw-gradient-from), ${X(a)} var(--tw-gradient-via-position), var(--tw-gradient-to)`}}},n),e({via:a=>({"--tw-gradient-via-position":a})},s),e({to:a=>({"@defaults gradient-color-stops":{},"--tw-gradient-to":`${X(a)} var(--tw-gradient-to-position)`})},n),e({to:a=>({"--tw-gradient-to-position":a})},s)}})(),boxDecorationBreak:({addUtilities:r})=>{r({".decoration-slice":{"box-decoration-break":"slice"},".decoration-clone":{"box-decoration-break":"clone"},".box-decoration-slice":{"box-decoration-break":"slice"},".box-decoration-clone":{"box-decoration-break":"clone"}})},backgroundSize:L("backgroundSize",[["bg",["background-size"]]],{type:["lookup","length","percentage","size"]}),backgroundAttachment:({addUtilities:r})=>{r({".bg-fixed":{"background-attachment":"fixed"},".bg-local":{"background-attachment":"local"},".bg-scroll":{"background-attachment":"scroll"}})},backgroundClip:({addUtilities:r})=>{r({".bg-clip-border":{"background-clip":"border-box"},".bg-clip-padding":{"background-clip":"padding-box"},".bg-clip-content":{"background-clip":"content-box"},".bg-clip-text":{"background-clip":"text"}})},backgroundPosition:L("backgroundPosition",[["bg",["background-position"]]],{type:["lookup",["position",{preferOnConflict:!0}]]}),backgroundRepeat:({addUtilities:r})=>{r({".bg-repeat":{"background-repeat":"repeat"},".bg-no-repeat":{"background-repeat":"no-repeat"},".bg-repeat-x":{"background-repeat":"repeat-x"},".bg-repeat-y":{"background-repeat":"repeat-y"},".bg-repeat-round":{"background-repeat":"round"},".bg-repeat-space":{"background-repeat":"space"}})},backgroundOrigin:({addUtilities:r})=>{r({".bg-origin-border":{"background-origin":"border-box"},".bg-origin-padding":{"background-origin":"padding-box"},".bg-origin-content":{"background-origin":"content-box"}})},fill:({matchUtilities:r,theme:e})=>{r({fill:t=>({fill:X(t)})},{values:xe(e("fill")),type:["color","any"]})},stroke:({matchUtilities:r,theme:e})=>{r({stroke:t=>({stroke:X(t)})},{values:xe(e("stroke")),type:["color","url","any"]})},strokeWidth:L("strokeWidth",[["stroke",["stroke-width"]]],{type:["length","number","percentage"]}),objectFit:({addUtilities:r})=>{r({".object-contain":{"object-fit":"contain"},".object-cover":{"object-fit":"cover"},".object-fill":{"object-fit":"fill"},".object-none":{"object-fit":"none"},".object-scale-down":{"object-fit":"scale-down"}})},objectPosition:L("objectPosition",[["object",["object-position"]]]),padding:L("padding",[["p",["padding"]],[["px",["padding-left","padding-right"]],["py",["padding-top","padding-bottom"]]],[["ps",["padding-inline-start"]],["pe",["padding-inline-end"]],["pt",["padding-top"]],["pr",["padding-right"]],["pb",["padding-bottom"]],["pl",["padding-left"]]]]),textAlign:({addUtilities:r})=>{r({".text-left":{"text-align":"left"},".text-center":{"text-align":"center"},".text-right":{"text-align":"right"},".text-justify":{"text-align":"justify"},".text-start":{"text-align":"start"},".text-end":{"text-align":"end"}})},textIndent:L("textIndent",[["indent",["text-indent"]]],{supportsNegativeValues:!0}),verticalAlign:({addUtilities:r,matchUtilities:e})=>{r({".align-baseline":{"vertical-align":"baseline"},".align-top":{"vertical-align":"top"},".align-middle":{"vertical-align":"middle"},".align-bottom":{"vertical-align":"bottom"},".align-text-top":{"vertical-align":"text-top"},".align-text-bottom":{"vertical-align":"text-bottom"},".align-sub":{"vertical-align":"sub"},".align-super":{"vertical-align":"super"}}),e({align:t=>({"vertical-align":t})})},fontFamily:({matchUtilities:r,theme:e})=>{r({font:t=>{let[i,n={}]=Array.isArray(t)&&ke(t[1])?t:[t],{fontFeatureSettings:s,fontVariationSettings:a}=n;return{"font-family":Array.isArray(i)?i.join(", "):i,...s===void 0?{}:{"font-feature-settings":s},...a===void 0?{}:{"font-variation-settings":a}}}},{values:e("fontFamily"),type:["lookup","generic-name","family-name"]})},fontSize:({matchUtilities:r,theme:e})=>{r({text:(t,{modifier:i})=>{let[n,s]=Array.isArray(t)?t:[t];if(i)return{"font-size":n,"line-height":i};let{lineHeight:a,letterSpacing:o,fontWeight:l}=ke(s)?s:{lineHeight:s};return{"font-size":n,...a===void 0?{}:{"line-height":a},...o===void 0?{}:{"letter-spacing":o},...l===void 0?{}:{"font-weight":l}}}},{values:e("fontSize"),modifiers:e("lineHeight"),type:["absolute-size","relative-size","length","percentage"]})},fontWeight:L("fontWeight",[["font",["fontWeight"]]],{type:["lookup","number","any"]}),textTransform:({addUtilities:r})=>{r({".uppercase":{"text-transform":"uppercase"},".lowercase":{"text-transform":"lowercase"},".capitalize":{"text-transform":"capitalize"},".normal-case":{"text-transform":"none"}})},fontStyle:({addUtilities:r})=>{r({".italic":{"font-style":"italic"},".not-italic":{"font-style":"normal"}})},fontVariantNumeric:({addDefaults:r,addUtilities:e})=>{let t="var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)";r("font-variant-numeric",{"--tw-ordinal":" ","--tw-slashed-zero":" ","--tw-numeric-figure":" ","--tw-numeric-spacing":" ","--tw-numeric-fraction":" "}),e({".normal-nums":{"font-variant-numeric":"normal"},".ordinal":{"@defaults font-variant-numeric":{},"--tw-ordinal":"ordinal","font-variant-numeric":t},".slashed-zero":{"@defaults font-variant-numeric":{},"--tw-slashed-zero":"slashed-zero","font-variant-numeric":t},".lining-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-figure":"lining-nums","font-variant-numeric":t},".oldstyle-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-figure":"oldstyle-nums","font-variant-numeric":t},".proportional-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-spacing":"proportional-nums","font-variant-numeric":t},".tabular-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-spacing":"tabular-nums","font-variant-numeric":t},".diagonal-fractions":{"@defaults font-variant-numeric":{},"--tw-numeric-fraction":"diagonal-fractions","font-variant-numeric":t},".stacked-fractions":{"@defaults font-variant-numeric":{},"--tw-numeric-fraction":"stacked-fractions","font-variant-numeric":t}})},lineHeight:L("lineHeight",[["leading",["lineHeight"]]]),letterSpacing:L("letterSpacing",[["tracking",["letterSpacing"]]],{supportsNegativeValues:!0}),textColor:({matchUtilities:r,theme:e,corePlugins:t})=>{r({text:i=>t("textOpacity")?Ae({color:i,property:"color",variable:"--tw-text-opacity"}):{color:X(i)}},{values:xe(e("textColor")),type:["color","any"]})},textOpacity:L("textOpacity",[["text-opacity",["--tw-text-opacity"]]]),textDecoration:({addUtilities:r})=>{r({".underline":{"text-decoration-line":"underline"},".overline":{"text-decoration-line":"overline"},".line-through":{"text-decoration-line":"line-through"},".no-underline":{"text-decoration-line":"none"}})},textDecorationColor:({matchUtilities:r,theme:e})=>{r({decoration:t=>({"text-decoration-color":X(t)})},{values:xe(e("textDecorationColor")),type:["color","any"]})},textDecorationStyle:({addUtilities:r})=>{r({".decoration-solid":{"text-decoration-style":"solid"},".decoration-double":{"text-decoration-style":"double"},".decoration-dotted":{"text-decoration-style":"dotted"},".decoration-dashed":{"text-decoration-style":"dashed"},".decoration-wavy":{"text-decoration-style":"wavy"}})},textDecorationThickness:L("textDecorationThickness",[["decoration",["text-decoration-thickness"]]],{type:["length","percentage"]}),textUnderlineOffset:L("textUnderlineOffset",[["underline-offset",["text-underline-offset"]]],{type:["length","percentage","any"]}),fontSmoothing:({addUtilities:r})=>{r({".antialiased":{"-webkit-font-smoothing":"antialiased","-moz-osx-font-smoothing":"grayscale"},".subpixel-antialiased":{"-webkit-font-smoothing":"auto","-moz-osx-font-smoothing":"auto"}})},placeholderColor:({matchUtilities:r,theme:e,corePlugins:t})=>{r({placeholder:i=>t("placeholderOpacity")?{"&::placeholder":Ae({color:i,property:"color",variable:"--tw-placeholder-opacity"})}:{"&::placeholder":{color:X(i)}}},{values:xe(e("placeholderColor")),type:["color","any"]})},placeholderOpacity:({matchUtilities:r,theme:e})=>{r({"placeholder-opacity":t=>({["&::placeholder"]:{"--tw-placeholder-opacity":t}})},{values:e("placeholderOpacity")})},caretColor:({matchUtilities:r,theme:e})=>{r({caret:t=>({"caret-color":X(t)})},{values:xe(e("caretColor")),type:["color","any"]})},accentColor:({matchUtilities:r,theme:e})=>{r({accent:t=>({"accent-color":X(t)})},{values:xe(e("accentColor")),type:["color","any"]})},opacity:L("opacity",[["opacity",["opacity"]]]),backgroundBlendMode:({addUtilities:r})=>{r({".bg-blend-normal":{"background-blend-mode":"normal"},".bg-blend-multiply":{"background-blend-mode":"multiply"},".bg-blend-screen":{"background-blend-mode":"screen"},".bg-blend-overlay":{"background-blend-mode":"overlay"},".bg-blend-darken":{"background-blend-mode":"darken"},".bg-blend-lighten":{"background-blend-mode":"lighten"},".bg-blend-color-dodge":{"background-blend-mode":"color-dodge"},".bg-blend-color-burn":{"background-blend-mode":"color-burn"},".bg-blend-hard-light":{"background-blend-mode":"hard-light"},".bg-blend-soft-light":{"background-blend-mode":"soft-light"},".bg-blend-difference":{"background-blend-mode":"difference"},".bg-blend-exclusion":{"background-blend-mode":"exclusion"},".bg-blend-hue":{"background-blend-mode":"hue"},".bg-blend-saturation":{"background-blend-mode":"saturation"},".bg-blend-color":{"background-blend-mode":"color"},".bg-blend-luminosity":{"background-blend-mode":"luminosity"}})},mixBlendMode:({addUtilities:r})=>{r({".mix-blend-normal":{"mix-blend-mode":"normal"},".mix-blend-multiply":{"mix-blend-mode":"multiply"},".mix-blend-screen":{"mix-blend-mode":"screen"},".mix-blend-overlay":{"mix-blend-mode":"overlay"},".mix-blend-darken":{"mix-blend-mode":"darken"},".mix-blend-lighten":{"mix-blend-mode":"lighten"},".mix-blend-color-dodge":{"mix-blend-mode":"color-dodge"},".mix-blend-color-burn":{"mix-blend-mode":"color-burn"},".mix-blend-hard-light":{"mix-blend-mode":"hard-light"},".mix-blend-soft-light":{"mix-blend-mode":"soft-light"},".mix-blend-difference":{"mix-blend-mode":"difference"},".mix-blend-exclusion":{"mix-blend-mode":"exclusion"},".mix-blend-hue":{"mix-blend-mode":"hue"},".mix-blend-saturation":{"mix-blend-mode":"saturation"},".mix-blend-color":{"mix-blend-mode":"color"},".mix-blend-luminosity":{"mix-blend-mode":"luminosity"},".mix-blend-plus-darker":{"mix-blend-mode":"plus-darker"},".mix-blend-plus-lighter":{"mix-blend-mode":"plus-lighter"}})},boxShadow:(()=>{let r=mt("boxShadow"),e=["var(--tw-ring-offset-shadow, 0 0 #0000)","var(--tw-ring-shadow, 0 0 #0000)","var(--tw-shadow)"].join(", ");return function({matchUtilities:t,addDefaults:i,theme:n}){i("box-shadow",{"--tw-ring-offset-shadow":"0 0 #0000","--tw-ring-shadow":"0 0 #0000","--tw-shadow":"0 0 #0000","--tw-shadow-colored":"0 0 #0000"}),t({shadow:s=>{s=r(s);let a=en(s);for(let o of a)!o.valid||(o.color="var(--tw-shadow-color)");return{"@defaults box-shadow":{},"--tw-shadow":s==="none"?"0 0 #0000":s,"--tw-shadow-colored":s==="none"?"0 0 #0000":Lf(a),"box-shadow":e}}},{values:n("boxShadow"),type:["shadow"]})}})(),boxShadowColor:({matchUtilities:r,theme:e})=>{r({shadow:t=>({"--tw-shadow-color":X(t),"--tw-shadow":"var(--tw-shadow-colored)"})},{values:xe(e("boxShadowColor")),type:["color","any"]})},outlineStyle:({addUtilities:r})=>{r({".outline-none":{outline:"2px solid transparent","outline-offset":"2px"},".outline":{"outline-style":"solid"},".outline-dashed":{"outline-style":"dashed"},".outline-dotted":{"outline-style":"dotted"},".outline-double":{"outline-style":"double"}})},outlineWidth:L("outlineWidth",[["outline",["outline-width"]]],{type:["length","number","percentage"]}),outlineOffset:L("outlineOffset",[["outline-offset",["outline-offset"]]],{type:["length","number","percentage","any"],supportsNegativeValues:!0}),outlineColor:({matchUtilities:r,theme:e})=>{r({outline:t=>({"outline-color":X(t)})},{values:xe(e("outlineColor")),type:["color","any"]})},ringWidth:({matchUtilities:r,addDefaults:e,addUtilities:t,theme:i,config:n})=>{let s=(()=>{if(we(n(),"respectDefaultRingColorOpacity"))return i("ringColor.DEFAULT");let a=i("ringOpacity.DEFAULT","0.5");return i("ringColor")?.DEFAULT?Je(i("ringColor")?.DEFAULT,a,`rgb(147 197 253 / ${a})`):`rgb(147 197 253 / ${a})`})();e("ring-width",{"--tw-ring-inset":" ","--tw-ring-offset-width":i("ringOffsetWidth.DEFAULT","0px"),"--tw-ring-offset-color":i("ringOffsetColor.DEFAULT","#fff"),"--tw-ring-color":s,"--tw-ring-offset-shadow":"0 0 #0000","--tw-ring-shadow":"0 0 #0000","--tw-shadow":"0 0 #0000","--tw-shadow-colored":"0 0 #0000"}),r({ring:a=>({"@defaults ring-width":{},"--tw-ring-offset-shadow":"var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)","--tw-ring-shadow":`var(--tw-ring-inset) 0 0 0 calc(${a} + var(--tw-ring-offset-width)) var(--tw-ring-color)`,"box-shadow":["var(--tw-ring-offset-shadow)","var(--tw-ring-shadow)","var(--tw-shadow, 0 0 #0000)"].join(", ")})},{values:i("ringWidth"),type:"length"}),t({".ring-inset":{"@defaults ring-width":{},"--tw-ring-inset":"inset"}})},ringColor:({matchUtilities:r,theme:e,corePlugins:t})=>{r({ring:i=>t("ringOpacity")?Ae({color:i,property:"--tw-ring-color",variable:"--tw-ring-opacity"}):{"--tw-ring-color":X(i)}},{values:Object.fromEntries(Object.entries(xe(e("ringColor"))).filter(([i])=>i!=="DEFAULT")),type:["color","any"]})},ringOpacity:r=>{let{config:e}=r;return L("ringOpacity",[["ring-opacity",["--tw-ring-opacity"]]],{filterDefault:!we(e(),"respectDefaultRingColorOpacity")})(r)},ringOffsetWidth:L("ringOffsetWidth",[["ring-offset",["--tw-ring-offset-width"]]],{type:"length"}),ringOffsetColor:({matchUtilities:r,theme:e})=>{r({"ring-offset":t=>({"--tw-ring-offset-color":X(t)})},{values:xe(e("ringOffsetColor")),type:["color","any"]})},blur:({matchUtilities:r,theme:e})=>{r({blur:t=>({"--tw-blur":t.trim()===""?" ":`blur(${t})`,"@defaults filter":{},filter:nt})},{values:e("blur")})},brightness:({matchUtilities:r,theme:e})=>{r({brightness:t=>({"--tw-brightness":`brightness(${t})`,"@defaults filter":{},filter:nt})},{values:e("brightness")})},contrast:({matchUtilities:r,theme:e})=>{r({contrast:t=>({"--tw-contrast":`contrast(${t})`,"@defaults filter":{},filter:nt})},{values:e("contrast")})},dropShadow:({matchUtilities:r,theme:e})=>{r({"drop-shadow":t=>({"--tw-drop-shadow":Array.isArray(t)?t.map(i=>`drop-shadow(${i})`).join(" "):`drop-shadow(${t})`,"@defaults filter":{},filter:nt})},{values:e("dropShadow")})},grayscale:({matchUtilities:r,theme:e})=>{r({grayscale:t=>({"--tw-grayscale":`grayscale(${t})`,"@defaults filter":{},filter:nt})},{values:e("grayscale")})},hueRotate:({matchUtilities:r,theme:e})=>{r({"hue-rotate":t=>({"--tw-hue-rotate":`hue-rotate(${t})`,"@defaults filter":{},filter:nt})},{values:e("hueRotate"),supportsNegativeValues:!0})},invert:({matchUtilities:r,theme:e})=>{r({invert:t=>({"--tw-invert":`invert(${t})`,"@defaults filter":{},filter:nt})},{values:e("invert")})},saturate:({matchUtilities:r,theme:e})=>{r({saturate:t=>({"--tw-saturate":`saturate(${t})`,"@defaults filter":{},filter:nt})},{values:e("saturate")})},sepia:({matchUtilities:r,theme:e})=>{r({sepia:t=>({"--tw-sepia":`sepia(${t})`,"@defaults filter":{},filter:nt})},{values:e("sepia")})},filter:({addDefaults:r,addUtilities:e})=>{r("filter",{"--tw-blur":" ","--tw-brightness":" ","--tw-contrast":" ","--tw-grayscale":" ","--tw-hue-rotate":" ","--tw-invert":" ","--tw-saturate":" ","--tw-sepia":" ","--tw-drop-shadow":" "}),e({".filter":{"@defaults filter":{},filter:nt},".filter-none":{filter:"none"}})},backdropBlur:({matchUtilities:r,theme:e})=>{r({"backdrop-blur":t=>({"--tw-backdrop-blur":t.trim()===""?" ":`blur(${t})`,"@defaults backdrop-filter":{},"-webkit-backdrop-filter":ge,"backdrop-filter":ge})},{values:e("backdropBlur")})},backdropBrightness:({matchUtilities:r,theme:e})=>{r({"backdrop-brightness":t=>({"--tw-backdrop-brightness":`brightness(${t})`,"@defaults backdrop-filter":{},"-webkit-backdrop-filter":ge,"backdrop-filter":ge})},{values:e("backdropBrightness")})},backdropContrast:({matchUtilities:r,theme:e})=>{r({"backdrop-contrast":t=>({"--tw-backdrop-contrast":`contrast(${t})`,"@defaults backdrop-filter":{},"-webkit-backdrop-filter":ge,"backdrop-filter":ge})},{values:e("backdropContrast")})},backdropGrayscale:({matchUtilities:r,theme:e})=>{r({"backdrop-grayscale":t=>({"--tw-backdrop-grayscale":`grayscale(${t})`,"@defaults backdrop-filter":{},"-webkit-backdrop-filter":ge,"backdrop-filter":ge})},{values:e("backdropGrayscale")})},backdropHueRotate:({matchUtilities:r,theme:e})=>{r({"backdrop-hue-rotate":t=>({"--tw-backdrop-hue-rotate":`hue-rotate(${t})`,"@defaults backdrop-filter":{},"-webkit-backdrop-filter":ge,"backdrop-filter":ge})},{values:e("backdropHueRotate"),supportsNegativeValues:!0})},backdropInvert:({matchUtilities:r,theme:e})=>{r({"backdrop-invert":t=>({"--tw-backdrop-invert":`invert(${t})`,"@defaults backdrop-filter":{},"-webkit-backdrop-filter":ge,"backdrop-filter":ge})},{values:e("backdropInvert")})},backdropOpacity:({matchUtilities:r,theme:e})=>{r({"backdrop-opacity":t=>({"--tw-backdrop-opacity":`opacity(${t})`,"@defaults backdrop-filter":{},"-webkit-backdrop-filter":ge,"backdrop-filter":ge})},{values:e("backdropOpacity")})},backdropSaturate:({matchUtilities:r,theme:e})=>{r({"backdrop-saturate":t=>({"--tw-backdrop-saturate":`saturate(${t})`,"@defaults backdrop-filter":{},"-webkit-backdrop-filter":ge,"backdrop-filter":ge})},{values:e("backdropSaturate")})},backdropSepia:({matchUtilities:r,theme:e})=>{r({"backdrop-sepia":t=>({"--tw-backdrop-sepia":`sepia(${t})`,"@defaults backdrop-filter":{},"-webkit-backdrop-filter":ge,"backdrop-filter":ge})},{values:e("backdropSepia")})},backdropFilter:({addDefaults:r,addUtilities:e})=>{r("backdrop-filter",{"--tw-backdrop-blur":" ","--tw-backdrop-brightness":" ","--tw-backdrop-contrast":" ","--tw-backdrop-grayscale":" ","--tw-backdrop-hue-rotate":" ","--tw-backdrop-invert":" ","--tw-backdrop-opacity":" ","--tw-backdrop-saturate":" ","--tw-backdrop-sepia":" "}),e({".backdrop-filter":{"@defaults backdrop-filter":{},"-webkit-backdrop-filter":ge,"backdrop-filter":ge},".backdrop-filter-none":{"-webkit-backdrop-filter":"none","backdrop-filter":"none"}})},transitionProperty:({matchUtilities:r,theme:e})=>{let t=e("transitionTimingFunction.DEFAULT"),i=e("transitionDuration.DEFAULT");r({transition:n=>({"transition-property":n,...n==="none"?{}:{"transition-timing-function":t,"transition-duration":i}})},{values:e("transitionProperty")})},transitionDelay:L("transitionDelay",[["delay",["transitionDelay"]]]),transitionDuration:L("transitionDuration",[["duration",["transitionDuration"]]],{filterDefault:!0}),transitionTimingFunction:L("transitionTimingFunction",[["ease",["transitionTimingFunction"]]],{filterDefault:!0}),willChange:L("willChange",[["will-change",["will-change"]]]),contain:({addDefaults:r,addUtilities:e})=>{let t="var(--tw-contain-size) var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style)";r("contain",{"--tw-contain-size":" ","--tw-contain-layout":" ","--tw-contain-paint":" ","--tw-contain-style":" "}),e({".contain-none":{contain:"none"},".contain-content":{contain:"content"},".contain-strict":{contain:"strict"},".contain-size":{"@defaults contain":{},"--tw-contain-size":"size",contain:t},".contain-inline-size":{"@defaults contain":{},"--tw-contain-size":"inline-size",contain:t},".contain-layout":{"@defaults contain":{},"--tw-contain-layout":"layout",contain:t},".contain-paint":{"@defaults contain":{},"--tw-contain-paint":"paint",contain:t},".contain-style":{"@defaults contain":{},"--tw-contain-style":"style",contain:t}})},content:L("content",[["content",["--tw-content",["content","var(--tw-content)"]]]]),forcedColorAdjust:({addUtilities:r})=>{r({".forced-color-adjust-auto":{"forced-color-adjust":"auto"},".forced-color-adjust-none":{"forced-color-adjust":"none"}})}}});function h_(r){if(r===void 0)return!1;if(r==="true"||r==="1")return!0;if(r==="false"||r==="0")return!1;if(r==="*")return!0;let e=r.split(",").map(t=>t.split(":")[0]);return e.includes("-tailwindcss")?!1:!!e.includes("tailwindcss")}var Ze,wh,vh,es,No,gt,Ti,It=P(()=>{u();Ze=typeof m!="undefined"?{NODE_ENV:"production",DEBUG:h_(m.env.DEBUG)}:{NODE_ENV:"production",DEBUG:!1},wh=new Map,vh=new Map,es=new Map,No=new Map,gt=new String("*"),Ti=Symbol("__NONE__")});function cr(r){let e=[],t=!1;for(let i=0;i0)}var xh,kh,m_,Bo=P(()=>{u();xh=new Map([["{","}"],["[","]"],["(",")"]]),kh=new Map(Array.from(xh.entries()).map(([r,e])=>[e,r])),m_=new Set(['"',"'","`"])});function pr(r){let[e]=Sh(r);return e.forEach(([t,i])=>t.removeChild(i)),r.nodes.push(...e.map(([,t])=>t)),r}function Sh(r){let e=[],t=null;for(let i of r.nodes)if(i.type==="combinator")e=e.filter(([,n])=>jo(n).includes("jumpable")),t=null;else if(i.type==="pseudo"){g_(i)?(t=i,e.push([r,i,null])):t&&y_(i,t)?e.push([r,i,t]):t=null;for(let n of i.nodes??[]){let[s,a]=Sh(n);t=a||t,e.push(...s)}}return[e,t]}function Ah(r){return r.value.startsWith("::")||Fo[r.value]!==void 0}function g_(r){return Ah(r)&&jo(r).includes("terminal")}function y_(r,e){return r.type!=="pseudo"||Ah(r)?!1:jo(e).includes("actionable")}function jo(r){return Fo[r.value]??Fo.__default__}var Fo,ts=P(()=>{u();Fo={"::after":["terminal","jumpable"],"::backdrop":["terminal","jumpable"],"::before":["terminal","jumpable"],"::cue":["terminal"],"::cue-region":["terminal"],"::first-letter":["terminal","jumpable"],"::first-line":["terminal","jumpable"],"::grammar-error":["terminal"],"::marker":["terminal","jumpable"],"::part":["terminal","actionable"],"::placeholder":["terminal","jumpable"],"::selection":["terminal","jumpable"],"::slotted":["terminal"],"::spelling-error":["terminal"],"::target-text":["terminal"],"::file-selector-button":["terminal","actionable"],"::deep":["actionable"],"::v-deep":["actionable"],"::ng-deep":["actionable"],":after":["terminal","jumpable"],":before":["terminal","jumpable"],":first-letter":["terminal","jumpable"],":first-line":["terminal","jumpable"],":where":[],":is":[],":has":[],__default__:["terminal","actionable"]}});function dr(r,{context:e,candidate:t}){let i=e?.tailwindConfig.prefix??"",n=r.map(a=>{let o=(0,st.default)().astSync(a.format);return{...a,ast:a.respectPrefix?ur(i,o):o}}),s=st.default.root({nodes:[st.default.selector({nodes:[st.default.className({value:Te(t)})]})]});for(let{ast:a}of n)[s,a]=w_(s,a),a.walkNesting(o=>o.replaceWith(...s.nodes[0].nodes)),s=a;return s}function _h(r){let e=[];for(;r.prev()&&r.prev().type!=="combinator";)r=r.prev();for(;r&&r.type!=="combinator";)e.push(r),r=r.next();return e}function b_(r){return r.sort((e,t)=>e.type==="tag"&&t.type==="class"?-1:e.type==="class"&&t.type==="tag"?1:e.type==="class"&&t.type==="pseudo"&&t.value.startsWith("::")?-1:e.type==="pseudo"&&e.value.startsWith("::")&&t.type==="class"?1:r.index(e)-r.index(t)),r}function Uo(r,e){let t=!1;r.walk(i=>{if(i.type==="class"&&i.value===e)return t=!0,!1}),t||r.remove()}function rs(r,e,{context:t,candidate:i,base:n}){let s=t?.tailwindConfig?.separator??":";n=n??ve(i,s).pop();let a=(0,st.default)().astSync(r);if(a.walkClasses(f=>{f.raws&&f.value.includes(n)&&(f.raws.value=Te((0,Ch.default)(f.raws.value)))}),a.each(f=>Uo(f,n)),a.length===0)return null;let o=Array.isArray(e)?dr(e,{context:t,candidate:i}):e;if(o===null)return a.toString();let l=st.default.comment({value:"/*__simple__*/"}),c=st.default.comment({value:"/*__simple__*/"});return a.walkClasses(f=>{if(f.value!==n)return;let d=f.parent,p=o.nodes[0].nodes;if(d.nodes.length===1){f.replaceWith(...p);return}let h=_h(f);d.insertBefore(h[0],l),d.insertAfter(h[h.length-1],c);for(let v of p)d.insertBefore(h[0],v.clone());f.remove(),h=_h(l);let b=d.index(l);d.nodes.splice(b,h.length,...b_(st.default.selector({nodes:h})).nodes),l.remove(),c.remove()}),a.walkPseudos(f=>{f.value===zo&&f.replaceWith(f.nodes)}),a.each(f=>pr(f)),a.toString()}function w_(r,e){let t=[];return r.walkPseudos(i=>{i.value===zo&&t.push({pseudo:i,value:i.nodes[0].toString()})}),e.walkPseudos(i=>{if(i.value!==zo)return;let n=i.nodes[0].toString(),s=t.find(c=>c.value===n);if(!s)return;let a=[],o=i.next();for(;o&&o.type!=="combinator";)a.push(o),o=o.next();let l=o;s.pseudo.parent.insertAfter(s.pseudo,st.default.selector({nodes:a.map(c=>c.clone())})),i.remove(),a.forEach(c=>c.remove()),l&&l.type==="combinator"&&l.remove()}),[r,e]}var st,Ch,zo,Vo=P(()=>{u();st=pe(it()),Ch=pe(Pn());fr();Gn();ts();zt();zo=":merge"});function is(r,e){let t=(0,Ho.default)().astSync(r);return t.each(i=>{i.nodes.some(s=>s.type==="combinator")&&(i.nodes=[Ho.default.pseudo({value:":is",nodes:[i.clone()]})]),pr(i)}),`${e} ${t.toString()}`}var Ho,Wo=P(()=>{u();Ho=pe(it());ts()});function Go(r){return v_.transformSync(r)}function*x_(r){let e=1/0;for(;e>=0;){let t,i=!1;if(e===1/0&&r.endsWith("]")){let a=r.indexOf("[");r[a-1]==="-"?t=a-1:r[a-1]==="/"?(t=a-1,i=!0):t=-1}else e===1/0&&r.includes("/")?(t=r.lastIndexOf("/"),i=!0):t=r.lastIndexOf("-",e);if(t<0)break;let n=r.slice(0,t),s=r.slice(i?t:t+1);e=t-1,!(n===""||s==="/")&&(yield[n,s])}}function k_(r,e){if(r.length===0||e.tailwindConfig.prefix==="")return r;for(let t of r){let[i]=t;if(i.options.respectPrefix){let n=ee.root({nodes:[t[1].clone()]}),s=t[1].raws.tailwind.classCandidate;n.walkRules(a=>{let o=s.startsWith("-");a.selector=ur(e.tailwindConfig.prefix,a.selector,o)}),t[1]=n.nodes[0]}}return r}function S_(r,e){if(r.length===0)return r;let t=[];function i(n){return n.parent&&n.parent.type==="atrule"&&n.parent.name==="keyframes"}for(let[n,s]of r){let a=ee.root({nodes:[s.clone()]});a.walkRules(o=>{if(i(o))return;let l=(0,ns.default)().astSync(o.selector);l.each(c=>Uo(c,e)),Qf(l,c=>c===e?`!${c}`:c),o.selector=l.toString(),o.walkDecls(c=>c.important=!0)}),t.push([{...n,important:!0},a.nodes[0]])}return t}function A_(r,e,t){if(e.length===0)return e;let i={modifier:null,value:Ti};{let[n,...s]=ve(r,"/");if(s.length>1&&(n=n+"/"+s.slice(0,-1).join("/"),s=s.slice(-1)),s.length&&!t.variantMap.has(r)&&(r=n,i.modifier=s[0],!we(t.tailwindConfig,"generalizedModifiers")))return[]}if(r.endsWith("]")&&!r.startsWith("[")){let n=/(.)(-?)\[(.*)\]/g.exec(r);if(n){let[,s,a,o]=n;if(s==="@"&&a==="-")return[];if(s!=="@"&&a==="")return[];r=r.replace(`${a}[${o}]`,""),i.value=o}}if(Ko(r)&&!t.variantMap.has(r)){let n=t.offsets.recordVariant(r),s=K(r.slice(1,-1)),a=ve(s,",");if(a.length>1)return[];if(!a.every(ls))return[];let o=a.map((l,c)=>[t.offsets.applyParallelOffset(n,c),Ri(l.trim())]);t.variantMap.set(r,o)}if(t.variantMap.has(r)){let n=Ko(r),s=t.variantOptions.get(r)?.[Pt]??{},a=t.variantMap.get(r).slice(),o=[],l=(()=>!(n||s.respectPrefix===!1))();for(let[c,f]of e){if(c.layer==="user")continue;let d=ee.root({nodes:[f.clone()]});for(let[p,h,b]of a){let w=function(){v.raws.neededBackup||(v.raws.neededBackup=!0,v.walkRules(T=>T.raws.originalSelector=T.selector))},k=function(T){return w(),v.each(B=>{B.type==="rule"&&(B.selectors=B.selectors.map(N=>T({get className(){return Go(N)},selector:N})))}),v},v=(b??d).clone(),y=[],S=h({get container(){return w(),v},separator:t.tailwindConfig.separator,modifySelectors:k,wrap(T){let B=v.nodes;v.removeAll(),T.append(B),v.append(T)},format(T){y.push({format:T,respectPrefix:l})},args:i});if(Array.isArray(S)){for(let[T,B]of S.entries())a.push([t.offsets.applyParallelOffset(p,T),B,v.clone()]);continue}if(typeof S=="string"&&y.push({format:S,respectPrefix:l}),S===null)continue;v.raws.neededBackup&&(delete v.raws.neededBackup,v.walkRules(T=>{let B=T.raws.originalSelector;if(!B||(delete T.raws.originalSelector,B===T.selector))return;let N=T.selector,R=(0,ns.default)(F=>{F.walkClasses(Y=>{Y.value=`${r}${t.tailwindConfig.separator}${Y.value}`})}).processSync(B);y.push({format:N.replace(R,"&"),respectPrefix:l}),T.selector=B})),v.nodes[0].raws.tailwind={...v.nodes[0].raws.tailwind,parentLayer:c.layer};let E=[{...c,sort:t.offsets.applyVariantOffset(c.sort,p,Object.assign(i,t.variantOptions.get(r))),collectedFormats:(c.collectedFormats??[]).concat(y)},v.nodes[0]];o.push(E)}}return o}return[]}function Qo(r,e,t={}){return!ke(r)&&!Array.isArray(r)?[[r],t]:Array.isArray(r)?Qo(r[0],e,r[1]):(e.has(r)||e.set(r,lr(r)),[e.get(r),t])}function __(r){return C_.test(r)}function E_(r){if(!r.includes("://"))return!1;try{let e=new URL(r);return e.scheme!==""&&e.host!==""}catch(e){return!1}}function Eh(r){let e=!0;return r.walkDecls(t=>{if(!Oh(t.prop,t.value))return e=!1,!1}),e}function Oh(r,e){if(E_(`${r}:${e}`))return!1;try{return ee.parse(`a{${r}:${e}}`).toResult(),!0}catch(t){return!1}}function O_(r,e){let[,t,i]=r.match(/^\[([a-zA-Z0-9-_]+):(\S+)\]$/)??[];if(i===void 0||!__(t)||!cr(i))return null;let n=K(i,{property:t});return Oh(t,n)?[[{sort:e.offsets.arbitraryProperty(r),layer:"utilities",options:{respectImportant:!0}},()=>({[$o(r)]:{[t]:n}})]]:null}function*T_(r,e){e.candidateRuleMap.has(r)&&(yield[e.candidateRuleMap.get(r),"DEFAULT"]),yield*function*(o){o!==null&&(yield[o,"DEFAULT"])}(O_(r,e));let t=r,i=!1,n=e.tailwindConfig.prefix,s=n.length,a=t.startsWith(n)||t.startsWith(`-${n}`);t[s]==="-"&&a&&(i=!0,t=n+t.slice(s+1)),i&&e.candidateRuleMap.has(t)&&(yield[e.candidateRuleMap.get(t),"-DEFAULT"]);for(let[o,l]of x_(t))e.candidateRuleMap.has(o)&&(yield[e.candidateRuleMap.get(o),i?`-${l}`:l])}function R_(r,e){return r===gt?[gt]:ve(r,e)}function*P_(r,e){for(let t of r)t[1].raws.tailwind={...t[1].raws.tailwind,classCandidate:e,preserveSource:t[0].options?.preserveSource??!1},yield t}function*Yo(r,e){let t=e.tailwindConfig.separator,[i,...n]=R_(r,t).reverse(),s=!1;i.startsWith("!")&&(s=!0,i=i.slice(1));for(let a of T_(i,e)){let o=[],l=new Map,[c,f]=a,d=c.length===1;for(let[p,h]of c){let b=[];if(typeof h=="function")for(let v of[].concat(h(f,{isOnlyPlugin:d}))){let[y,w]=Qo(v,e.postCssNodeCache);for(let k of y)b.push([{...p,options:{...p.options,...w}},k])}else if(f==="DEFAULT"||f==="-DEFAULT"){let v=h,[y,w]=Qo(v,e.postCssNodeCache);for(let k of y)b.push([{...p,options:{...p.options,...w}},k])}if(b.length>0){let v=Array.from(ta(p.options?.types??[],f,p.options??{},e.tailwindConfig)).map(([y,w])=>w);v.length>0&&l.set(b,v),o.push(b)}}if(Ko(f)){if(o.length>1){let b=function(y){return y.length===1?y[0]:y.find(w=>{let k=l.get(w);return w.some(([{options:S},E])=>Eh(E)?S.types.some(({type:T,preferOnConflict:B})=>k.includes(T)&&B):!1)})},[p,h]=o.reduce((y,w)=>(w.some(([{options:S}])=>S.types.some(({type:E})=>E==="any"))?y[0].push(w):y[1].push(w),y),[[],[]]),v=b(h)??b(p);if(v)o=[v];else{let y=o.map(k=>new Set([...l.get(k)??[]]));for(let k of y)for(let S of k){let E=!1;for(let T of y)k!==T&&T.has(S)&&(T.delete(S),E=!0);E&&k.delete(S)}let w=[];for(let[k,S]of y.entries())for(let E of S){let T=o[k].map(([,B])=>B).flat().map(B=>B.toString().split(` +`).slice(1,-1).map(N=>N.trim()).map(N=>` ${N}`).join(` +`)).join(` + +`);w.push(` Use \`${r.replace("[",`[${E}:`)}\` for \`${T.trim()}\``);break}G.warn([`The class \`${r}\` is ambiguous and matches multiple utilities.`,...w,`If this is content and not a class, replace it with \`${r.replace("[","[").replace("]","]")}\` to silence this warning.`]);continue}}o=o.map(p=>p.filter(h=>Eh(h[1])))}o=o.flat(),o=Array.from(P_(o,i)),o=k_(o,e),s&&(o=S_(o,i));for(let p of n)o=A_(p,o,e);for(let p of o)p[1].raws.tailwind={...p[1].raws.tailwind,candidate:r},p=I_(p,{context:e,candidate:r}),p!==null&&(yield p)}}function I_(r,{context:e,candidate:t}){if(!r[0].collectedFormats)return r;let i=!0,n;try{n=dr(r[0].collectedFormats,{context:e,candidate:t})}catch{return null}let s=ee.root({nodes:[r[1].clone()]});return s.walkRules(a=>{if(!ss(a))try{let o=rs(a.selector,n,{candidate:t,context:e});if(o===null){a.remove();return}a.selector=o}catch{return i=!1,!1}}),!i||s.nodes.length===0?null:(r[1]=s.nodes[0],r)}function ss(r){return r.parent&&r.parent.type==="atrule"&&r.parent.name==="keyframes"}function D_(r){if(r===!0)return e=>{ss(e)||e.walkDecls(t=>{t.parent.type==="rule"&&!ss(t.parent)&&(t.important=!0)})};if(typeof r=="string")return e=>{ss(e)||(e.selectors=e.selectors.map(t=>is(t,r)))}}function as(r,e,t=!1){let i=[],n=D_(e.tailwindConfig.important);for(let s of r){if(e.notClassCache.has(s))continue;if(e.candidateRuleCache.has(s)){i=i.concat(Array.from(e.candidateRuleCache.get(s)));continue}let a=Array.from(Yo(s,e));if(a.length===0){e.notClassCache.add(s);continue}e.classCache.set(s,a);let o=e.candidateRuleCache.get(s)??new Set;e.candidateRuleCache.set(s,o);for(let l of a){let[{sort:c,options:f},d]=l;if(f.respectImportant&&n){let h=ee.root({nodes:[d.clone()]});h.walkRules(n),d=h.nodes[0]}let p=[c,t?d.clone():d];o.add(p),e.ruleCache.add(p),i.push(p)}}return i}function Ko(r){return r.startsWith("[")&&r.endsWith("]")}var ns,v_,C_,os=P(()=>{u();Ot();ns=pe(it());qo();Kt();Gn();Fr();Be();It();Vo();Lo();Br();Oi();Bo();zt();ct();Wo();v_=(0,ns.default)(r=>r.first.filter(({type:e})=>e==="class").pop().value);C_=/^[a-z_-]/});var Th,Rh=P(()=>{u();Th={}});function q_(r){try{return Th.createHash("md5").update(r,"utf-8").digest("binary")}catch(e){return""}}function Ph(r,e){let t=e.toString();if(!t.includes("@tailwind"))return!1;let i=No.get(r),n=q_(t),s=i!==n;return No.set(r,n),s}var Ih=P(()=>{u();Rh();It()});function us(r){return(r>0n)-(r<0n)}var Dh=P(()=>{u()});function qh(r,e){let t=0n,i=0n;for(let[n,s]of e)r&n&&(t=t|n,i=i|s);return r&~t|i}var $h=P(()=>{u()});function Lh(r){let e=null;for(let t of r)e=e??t,e=e>t?e:t;return e}function $_(r,e){let t=r.length,i=e.length,n=t{u();Dh();$h();Xo=class{constructor(){this.offsets={defaults:0n,base:0n,components:0n,utilities:0n,variants:0n,user:0n},this.layerPositions={defaults:0n,base:1n,components:2n,utilities:3n,user:4n,variants:5n},this.reservedVariantBits=0n,this.variantOffsets=new Map}create(e){return{layer:e,parentLayer:e,arbitrary:0n,variants:0n,parallelIndex:0n,index:this.offsets[e]++,propertyOffset:0n,property:"",options:[]}}arbitraryProperty(e){return{...this.create("utilities"),arbitrary:1n,property:e}}forVariant(e,t=0){let i=this.variantOffsets.get(e);if(i===void 0)throw new Error(`Cannot find offset for unknown variant ${e}`);return{...this.create("variants"),variants:i<n.startsWith("[")).sort(([n],[s])=>$_(n,s)),t=e.map(([,n])=>n).sort((n,s)=>us(n-s));return e.map(([,n],s)=>[n,t[s]]).filter(([n,s])=>n!==s)}remapArbitraryVariantOffsets(e){let t=this.recalculateVariantOffsets();return t.length===0?e:e.map(i=>{let[n,s]=i;return n={...n,variants:qh(n.variants,t)},[n,s]})}sortArbitraryProperties(e){let t=new Set;for(let[a]of e)a.arbitrary===1n&&t.add(a.property);if(t.size===0)return e;let i=Array.from(t).sort(),n=new Map,s=1n;for(let a of i)n.set(a,s++);return e.map(a=>{let[o,l]=a;return o={...o,propertyOffset:n.get(o.property)??0n},[o,l]})}sort(e){return e=this.remapArbitraryVariantOffsets(e),e=this.sortArbitraryProperties(e),e.sort(([t],[i])=>us(this.compare(t,i)))}}});function tl(r,e){let t=r.tailwindConfig.prefix;return typeof t=="function"?t(e):t+e}function Bh({type:r="any",...e}){let t=[].concat(r);return{...e,types:t.map(i=>Array.isArray(i)?{type:i[0],...i[1]}:{type:i,preferOnConflict:!1})}}function L_(r){let e=[],t="",i=0;for(let n=0;n0&&e.push(t.trim()),e=e.filter(n=>n!==""),e}function M_(r,e,{before:t=[]}={}){if(t=[].concat(t),t.length<=0){r.push(e);return}let i=r.length-1;for(let n of t){let s=r.indexOf(n);s!==-1&&(i=Math.min(i,s))}r.splice(i,0,e)}function Fh(r){return Array.isArray(r)?r.flatMap(e=>!Array.isArray(e)&&!ke(e)?e:lr(e)):Fh([r])}function N_(r,e){return(0,Zo.default)(i=>{let n=[];return e&&e(i),i.walkClasses(s=>{n.push(s.value)}),n}).transformSync(r)}function B_(r){r.walkPseudos(e=>{e.value===":not"&&e.remove()})}function F_(r,e={containsNonOnDemandable:!1},t=0){let i=[],n=[];r.type==="rule"?n.push(...r.selectors):r.type==="atrule"&&r.walkRules(s=>n.push(...s.selectors));for(let s of n){let a=N_(s,B_);a.length===0&&(e.containsNonOnDemandable=!0);for(let o of a)i.push(o)}return t===0?[e.containsNonOnDemandable||i.length===0,i]:i}function fs(r){return Fh(r).flatMap(e=>{let t=new Map,[i,n]=F_(e);return i&&n.unshift(gt),n.map(s=>(t.has(e)||t.set(e,e),[s,t.get(e)]))})}function ls(r){return r.startsWith("@")||r.includes("&")}function Ri(r){r=r.replace(/\n+/g,"").replace(/\s{1,}/g," ").trim();let e=L_(r).map(t=>{if(!t.startsWith("@"))return({format:s})=>s(t);let[,i,n]=/@(\S*)( .+|[({].*)?/g.exec(t);return({wrap:s})=>s(ee.atRule({name:i,params:n?.trim()??""}))}).reverse();return t=>{for(let i of e)i(t)}}function j_(r,e,{variantList:t,variantMap:i,offsets:n,classList:s}){function a(p,h){return p?(0,Nh.default)(r,p,h):r}function o(p){return ur(r.prefix,p)}function l(p,h){return p===gt?gt:h.respectPrefix?e.tailwindConfig.prefix+p:p}function c(p,h,b={}){let v=kt(p),y=a(["theme",...v],h);return mt(v[0])(y,b)}let f=0,d={postcss:ee,prefix:o,e:Te,config:a,theme:c,corePlugins:p=>Array.isArray(r.corePlugins)?r.corePlugins.includes(p):a(["corePlugins",p],!0),variants:()=>[],addBase(p){for(let[h,b]of fs(p)){let v=l(h,{}),y=n.create("base");e.candidateRuleMap.has(v)||e.candidateRuleMap.set(v,[]),e.candidateRuleMap.get(v).push([{sort:y,layer:"base"},b])}},addDefaults(p,h){let b={[`@defaults ${p}`]:h};for(let[v,y]of fs(b)){let w=l(v,{});e.candidateRuleMap.has(w)||e.candidateRuleMap.set(w,[]),e.candidateRuleMap.get(w).push([{sort:n.create("defaults"),layer:"defaults"},y])}},addComponents(p,h){h=Object.assign({},{preserveSource:!1,respectPrefix:!0,respectImportant:!1},Array.isArray(h)?{}:h);for(let[v,y]of fs(p)){let w=l(v,h);s.add(w),e.candidateRuleMap.has(w)||e.candidateRuleMap.set(w,[]),e.candidateRuleMap.get(w).push([{sort:n.create("components"),layer:"components",options:h},y])}},addUtilities(p,h){h=Object.assign({},{preserveSource:!1,respectPrefix:!0,respectImportant:!0},Array.isArray(h)?{}:h);for(let[v,y]of fs(p)){let w=l(v,h);s.add(w),e.candidateRuleMap.has(w)||e.candidateRuleMap.set(w,[]),e.candidateRuleMap.get(w).push([{sort:n.create("utilities"),layer:"utilities",options:h},y])}},matchUtilities:function(p,h){h=Bh({...{respectPrefix:!0,respectImportant:!0,modifiers:!1},...h});let v=n.create("utilities");for(let y in p){let S=function(T,{isOnlyPlugin:B}){let[N,R,F]=ea(h.types,T,h,r);if(N===void 0)return[];if(!h.types.some(({type:U})=>U===R))if(B)G.warn([`Unnecessary typehint \`${R}\` in \`${y}-${T}\`.`,`You can safely update it to \`${y}-${T.replace(R+":","")}\`.`]);else return[];if(!cr(N))return[];let Y={get modifier(){return h.modifiers||G.warn(`modifier-used-without-options-for-${y}`,["Your plugin must set `modifiers: true` in its options to support modifiers."]),F}},_=we(r,"generalizedModifiers");return[].concat(_?k(N,Y):k(N)).filter(Boolean).map(U=>({[Qn(y,T)]:U}))},w=l(y,h),k=p[y];s.add([w,h]);let E=[{sort:v,layer:"utilities",options:h},S];e.candidateRuleMap.has(w)||e.candidateRuleMap.set(w,[]),e.candidateRuleMap.get(w).push(E)}},matchComponents:function(p,h){h=Bh({...{respectPrefix:!0,respectImportant:!1,modifiers:!1},...h});let v=n.create("components");for(let y in p){let S=function(T,{isOnlyPlugin:B}){let[N,R,F]=ea(h.types,T,h,r);if(N===void 0)return[];if(!h.types.some(({type:U})=>U===R))if(B)G.warn([`Unnecessary typehint \`${R}\` in \`${y}-${T}\`.`,`You can safely update it to \`${y}-${T.replace(R+":","")}\`.`]);else return[];if(!cr(N))return[];let Y={get modifier(){return h.modifiers||G.warn(`modifier-used-without-options-for-${y}`,["Your plugin must set `modifiers: true` in its options to support modifiers."]),F}},_=we(r,"generalizedModifiers");return[].concat(_?k(N,Y):k(N)).filter(Boolean).map(U=>({[Qn(y,T)]:U}))},w=l(y,h),k=p[y];s.add([w,h]);let E=[{sort:v,layer:"components",options:h},S];e.candidateRuleMap.has(w)||e.candidateRuleMap.set(w,[]),e.candidateRuleMap.get(w).push(E)}},addVariant(p,h,b={}){h=[].concat(h).map(v=>{if(typeof v!="string")return(y={})=>{let{args:w,modifySelectors:k,container:S,separator:E,wrap:T,format:B}=y,N=v(Object.assign({modifySelectors:k,container:S,separator:E},b.type===Jo.MatchVariant&&{args:w,wrap:T,format:B}));if(typeof N=="string"&&!ls(N))throw new Error(`Your custom variant \`${p}\` has an invalid format string. Make sure it's an at-rule or contains a \`&\` placeholder.`);return Array.isArray(N)?N.filter(R=>typeof R=="string").map(R=>Ri(R)):N&&typeof N=="string"&&Ri(N)(y)};if(!ls(v))throw new Error(`Your custom variant \`${p}\` has an invalid format string. Make sure it's an at-rule or contains a \`&\` placeholder.`);return Ri(v)}),M_(t,p,b),i.set(p,h),e.variantOptions.set(p,b)},matchVariant(p,h,b){let v=b?.id??++f,y=p==="@",w=we(r,"generalizedModifiers");for(let[S,E]of Object.entries(b?.values??{}))S!=="DEFAULT"&&d.addVariant(y?`${p}${S}`:`${p}-${S}`,({args:T,container:B})=>h(E,w?{modifier:T?.modifier,container:B}:{container:B}),{...b,value:E,id:v,type:Jo.MatchVariant,variantInfo:el.Base});let k="DEFAULT"in(b?.values??{});d.addVariant(p,({args:S,container:E})=>S?.value===Ti&&!k?null:h(S?.value===Ti?b.values.DEFAULT:S?.value??(typeof S=="string"?S:""),w?{modifier:S?.modifier,container:E}:{container:E}),{...b,id:v,type:Jo.MatchVariant,variantInfo:el.Dynamic})}};return d}function cs(r){return rl.has(r)||rl.set(r,new Map),rl.get(r)}function jh(r,e){let t=!1,i=new Map;for(let n of r){if(!n)continue;let s=oa.parse(n),a=s.hash?s.href.replace(s.hash,""):s.href;a=s.search?a.replace(s.search,""):a;let o=be.statSync(decodeURIComponent(a),{throwIfNoEntry:!1})?.mtimeMs;!o||((!e.has(n)||o>e.get(n))&&(t=!0),i.set(n,o))}return[t,i]}function zh(r){r.walkAtRules(e=>{["responsive","variants"].includes(e.name)&&(zh(e),e.before(e.nodes),e.remove())})}function z_(r){let e=[];return r.each(t=>{t.type==="atrule"&&["responsive","variants"].includes(t.name)&&(t.name="layer",t.params="utilities")}),r.walkAtRules("layer",t=>{if(zh(t),t.params==="base"){for(let i of t.nodes)e.push(function({addBase:n}){n(i,{respectPrefix:!1})});t.remove()}else if(t.params==="components"){for(let i of t.nodes)e.push(function({addComponents:n}){n(i,{respectPrefix:!1,preserveSource:!0})});t.remove()}else if(t.params==="utilities"){for(let i of t.nodes)e.push(function({addUtilities:n}){n(i,{respectPrefix:!1,preserveSource:!0})});t.remove()}}),e}function U_(r,e){let t=Object.entries({...se,...yh}).map(([l,c])=>r.tailwindConfig.corePlugins.includes(l)?c:null).filter(Boolean),i=r.tailwindConfig.plugins.map(l=>(l.__isOptionsFunction&&(l=l()),typeof l=="function"?l:l.handler)),n=z_(e),s=[se.childVariant,se.pseudoElementVariants,se.pseudoClassVariants,se.hasVariants,se.ariaVariants,se.dataVariants],a=[se.supportsVariants,se.reducedMotionVariants,se.prefersContrastVariants,se.screenVariants,se.orientationVariants,se.directionVariants,se.darkVariants,se.forcedColorsVariants,se.printVariant];return(r.tailwindConfig.darkMode==="class"||Array.isArray(r.tailwindConfig.darkMode)&&r.tailwindConfig.darkMode[0]==="class")&&(a=[se.supportsVariants,se.reducedMotionVariants,se.prefersContrastVariants,se.darkVariants,se.screenVariants,se.orientationVariants,se.directionVariants,se.forcedColorsVariants,se.printVariant]),[...t,...s,...i,...a,...n]}function V_(r,e){let t=[],i=new Map;e.variantMap=i;let n=new Xo;e.offsets=n;let s=new Set,a=j_(e.tailwindConfig,e,{variantList:t,variantMap:i,offsets:n,classList:s});for(let f of r)if(Array.isArray(f))for(let d of f)d(a);else f?.(a);n.recordVariants(t,f=>i.get(f).length);for(let[f,d]of i.entries())e.variantMap.set(f,d.map((p,h)=>[n.forVariant(f,h),p]));let o=(e.tailwindConfig.safelist??[]).filter(Boolean);if(o.length>0){let f=[];for(let d of o){if(typeof d=="string"){e.changedContent.push({content:d,extension:"html"});continue}if(d instanceof RegExp){G.warn("root-regex",["Regular expressions in `safelist` work differently in Tailwind CSS v3.0.","Update your `safelist` configuration to eliminate this warning.","https://tailwindcss.com/docs/content-configuration#safelisting-classes"]);continue}f.push(d)}if(f.length>0){let d=new Map,p=e.tailwindConfig.prefix.length,h=f.some(b=>b.pattern.source.includes("!"));for(let b of s){let v=Array.isArray(b)?(()=>{let[y,w]=b,S=Object.keys(w?.values??{}).map(E=>Ei(y,E));return w?.supportsNegativeValues&&(S=[...S,...S.map(E=>"-"+E)],S=[...S,...S.map(E=>E.slice(0,p)+"-"+E.slice(p))]),w.types.some(({type:E})=>E==="color")&&(S=[...S,...S.flatMap(E=>Object.keys(e.tailwindConfig.theme.opacity).map(T=>`${E}/${T}`))]),h&&w?.respectImportant&&(S=[...S,...S.map(E=>"!"+E)]),S})():[b];for(let y of v)for(let{pattern:w,variants:k=[]}of f)if(w.lastIndex=0,d.has(w)||d.set(w,0),!!w.test(y)){d.set(w,d.get(w)+1),e.changedContent.push({content:y,extension:"html"});for(let S of k)e.changedContent.push({content:S+e.tailwindConfig.separator+y,extension:"html"})}}for(let[b,v]of d.entries())v===0&&G.warn([`The safelist pattern \`${b}\` doesn't match any Tailwind CSS classes.`,"Fix this pattern or remove it from your `safelist` configuration.","https://tailwindcss.com/docs/content-configuration#safelisting-classes"])}}let l=[].concat(e.tailwindConfig.darkMode??"media")[1]??"dark",c=[tl(e,l),tl(e,"group"),tl(e,"peer")];e.getClassOrder=function(d){let p=[...d].sort((y,w)=>y===w?0:y[y,null])),b=as(new Set(p),e,!0);b=e.offsets.sort(b);let v=BigInt(c.length);for(let[,y]of b){let w=y.raws.tailwind.candidate;h.set(w,h.get(w)??v++)}return d.map(y=>{let w=h.get(y)??null,k=c.indexOf(y);return w===null&&k!==-1&&(w=BigInt(k)),[y,w]})},e.getClassList=function(d={}){let p=[];for(let h of s)if(Array.isArray(h)){let[b,v]=h,y=[],w=Object.keys(v?.modifiers??{});v?.types?.some(({type:E})=>E==="color")&&w.push(...Object.keys(e.tailwindConfig.theme.opacity??{}));let k={modifiers:w},S=d.includeMetadata&&w.length>0;for(let[E,T]of Object.entries(v?.values??{})){if(T==null)continue;let B=Ei(b,E);if(p.push(S?[B,k]:B),v?.supportsNegativeValues&&xt(T)){let N=Ei(b,`-${E}`);y.push(S?[N,k]:N)}}p.push(...y)}else p.push(h);return p},e.getVariants=function(){let d=Math.random().toString(36).substring(7).toUpperCase(),p=[];for(let[h,b]of e.variantOptions.entries())b.variantInfo!==el.Base&&p.push({name:h,isArbitrary:b.type===Symbol.for("MATCH_VARIANT"),values:Object.keys(b.values??{}),hasDash:h!=="@",selectors({modifier:v,value:y}={}){let w=`TAILWINDPLACEHOLDER${d}`,k=ee.rule({selector:`.${w}`}),S=ee.root({nodes:[k.clone()]}),E=S.toString(),T=(e.variantMap.get(h)??[]).flatMap(([le,A])=>A),B=[];for(let le of T){let A=[],C={args:{modifier:v,value:b.values?.[y]??y},separator:e.tailwindConfig.separator,modifySelectors(V){return S.each(Ee=>{Ee.type==="rule"&&(Ee.selectors=Ee.selectors.map(Ie=>V({get className(){return Go(Ie)},selector:Ie})))}),S},format(V){A.push(V)},wrap(V){A.push(`@${V.name} ${V.params} { & }`)},container:S},he=le(C);if(A.length>0&&B.push(A),Array.isArray(he))for(let V of he)A=[],V(C),B.push(A)}let N=[],R=S.toString();E!==R&&(S.walkRules(le=>{let A=le.selector,C=(0,Zo.default)(he=>{he.walkClasses(V=>{V.value=`${h}${e.tailwindConfig.separator}${V.value}`})}).processSync(A);N.push(A.replace(C,"&").replace(w,"&"))}),S.walkAtRules(le=>{N.push(`@${le.name} (${le.params}) { & }`)}));let F=!(y in(b.values??{})),Y=b[Pt]??{},_=(()=>!(F||Y.respectPrefix===!1))();B=B.map(le=>le.map(A=>({format:A,respectPrefix:_}))),N=N.map(le=>({format:le,respectPrefix:_}));let Q={candidate:w,context:e},U=B.map(le=>rs(`.${w}`,dr(le,Q),Q).replace(`.${w}`,"&").replace("{ & }","").trim());return N.length>0&&U.push(dr(N,Q).toString().replace(`.${w}`,"&")),U}});return p}}function Uh(r,e){!r.classCache.has(e)||(r.notClassCache.add(e),r.classCache.delete(e),r.applyClassCache.delete(e),r.candidateRuleMap.delete(e),r.candidateRuleCache.delete(e),r.stylesheetCache=null)}function H_(r,e){let t=e.raws.tailwind.candidate;if(!!t){for(let i of r.ruleCache)i[1].raws.tailwind.candidate===t&&r.ruleCache.delete(i);Uh(r,t)}}function il(r,e=[],t=ee.root()){let i={disposables:[],ruleCache:new Set,candidateRuleCache:new Map,classCache:new Map,applyClassCache:new Map,notClassCache:new Set(r.blocklist??[]),postCssNodeCache:new Map,candidateRuleMap:new Map,tailwindConfig:r,changedContent:e,variantMap:new Map,stylesheetCache:null,variantOptions:new Map,markInvalidUtilityCandidate:s=>Uh(i,s),markInvalidUtilityNode:s=>H_(i,s)},n=U_(i,t);return V_(n,i),i}function Vh(r,e,t,i,n,s){let a=e.opts.from,o=i!==null;Ze.DEBUG&&console.log("Source path:",a);let l;if(o&&hr.has(a))l=hr.get(a);else if(Pi.has(n)){let p=Pi.get(n);Dt.get(p).add(a),hr.set(a,p),l=p}let c=Ph(a,r);if(l){let[p,h]=jh([...s],cs(l));if(!p&&!c)return[l,!1,h]}if(hr.has(a)){let p=hr.get(a);if(Dt.has(p)&&(Dt.get(p).delete(a),Dt.get(p).size===0)){Dt.delete(p);for(let[h,b]of Pi)b===p&&Pi.delete(h);for(let h of p.disposables.splice(0))h(p)}}Ze.DEBUG&&console.log("Setting up new context...");let f=il(t,[],r);Object.assign(f,{userConfigPath:i});let[,d]=jh([...s],cs(f));return Pi.set(n,f),hr.set(a,f),Dt.has(f)||Dt.set(f,new Set),Dt.get(f).add(a),[f,!0,d]}var Nh,Zo,Pt,Jo,el,rl,hr,Pi,Dt,Oi=P(()=>{u();ft();la();Ot();Nh=pe(Ra()),Zo=pe(it());Ci();qo();Gn();Kt();fr();Lo();Fr();bh();It();It();Yi();Be();Gi();Bo();os();Ih();Mh();ct();Vo();Pt=Symbol(),Jo={AddVariant:Symbol.for("ADD_VARIANT"),MatchVariant:Symbol.for("MATCH_VARIANT")},el={Base:1<<0,Dynamic:1<<1};rl=new WeakMap;hr=wh,Pi=vh,Dt=es});function nl(r){return r.ignore?[]:r.glob?m.env.ROLLUP_WATCH==="true"?[{type:"dependency",file:r.base}]:[{type:"dir-dependency",dir:r.base,glob:r.glob}]:[{type:"dependency",file:r.base}]}var Hh=P(()=>{u()});function Wh(r,e){return{handler:r,config:e}}var Gh,Qh=P(()=>{u();Wh.withOptions=function(r,e=()=>({})){let t=function(i){return{__options:i,handler:r(i),config:e(i)}};return t.__isOptionsFunction=!0,t.__pluginFunction=r,t.__configFunction=e,t};Gh=Wh});var sl={};Ge(sl,{default:()=>W_});var W_,al=P(()=>{u();Qh();W_=Gh});var Kh=x((z4,Yh)=>{u();var G_=(al(),sl).default,Q_={overflow:"hidden",display:"-webkit-box","-webkit-box-orient":"vertical"},Y_=G_(function({matchUtilities:r,addUtilities:e,theme:t,variants:i}){let n=t("lineClamp");r({"line-clamp":s=>({...Q_,"-webkit-line-clamp":`${s}`})},{values:n}),e([{".line-clamp-none":{"-webkit-line-clamp":"unset"}}],i("lineClamp"))},{theme:{lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6"}},variants:{lineClamp:["responsive"]}});Yh.exports=Y_});function ol(r){r.content.files.length===0&&G.warn("content-problems",["The `content` option in your Tailwind CSS configuration is missing or empty.","Configure your content sources or your generated CSS will be missing styles.","https://tailwindcss.com/docs/content-configuration"]);try{let e=Kh();r.plugins.includes(e)&&(G.warn("line-clamp-in-core",["As of Tailwind CSS v3.3, the `@tailwindcss/line-clamp` plugin is now included by default.","Remove it from the `plugins` array in your configuration to eliminate this warning."]),r.plugins=r.plugins.filter(t=>t!==e))}catch{}return r}var Xh=P(()=>{u();Be()});var Zh,Jh=P(()=>{u();Zh=()=>!1});var ps,em=P(()=>{u();ps={sync:r=>[].concat(r),generateTasks:r=>[{dynamic:!1,base:".",negative:[],positive:[].concat(r),patterns:[].concat(r)}],escapePath:r=>r}});var ll,tm=P(()=>{u();ll=r=>r});var rm,im=P(()=>{u();rm=()=>""});function nm(r){let e=r,t=rm(r);return t!=="."&&(e=r.substr(t.length),e.charAt(0)==="/"&&(e=e.substr(1))),e.substr(0,2)==="./"?e=e.substr(2):e.charAt(0)==="/"&&(e=e.substr(1)),{base:t,glob:e}}var sm=P(()=>{u();im()});var ds=x(Ve=>{u();"use strict";Ve.isInteger=r=>typeof r=="number"?Number.isInteger(r):typeof r=="string"&&r.trim()!==""?Number.isInteger(Number(r)):!1;Ve.find=(r,e)=>r.nodes.find(t=>t.type===e);Ve.exceedsLimit=(r,e,t=1,i)=>i===!1||!Ve.isInteger(r)||!Ve.isInteger(e)?!1:(Number(e)-Number(r))/Number(t)>=i;Ve.escapeNode=(r,e=0,t)=>{let i=r.nodes[e];!i||(t&&i.type===t||i.type==="open"||i.type==="close")&&i.escaped!==!0&&(i.value="\\"+i.value,i.escaped=!0)};Ve.encloseBrace=r=>r.type!=="brace"?!1:r.commas>>0+r.ranges>>0==0?(r.invalid=!0,!0):!1;Ve.isInvalidBrace=r=>r.type!=="brace"?!1:r.invalid===!0||r.dollar?!0:r.commas>>0+r.ranges>>0==0||r.open!==!0||r.close!==!0?(r.invalid=!0,!0):!1;Ve.isOpenOrClose=r=>r.type==="open"||r.type==="close"?!0:r.open===!0||r.close===!0;Ve.reduce=r=>r.reduce((e,t)=>(t.type==="text"&&e.push(t.value),t.type==="range"&&(t.type="text"),e),[]);Ve.flatten=(...r)=>{let e=[],t=i=>{for(let n=0;n{u();"use strict";var am=ds();om.exports=(r,e={})=>{let t=(i,n={})=>{let s=e.escapeInvalid&&am.isInvalidBrace(n),a=i.invalid===!0&&e.escapeInvalid===!0,o="";if(i.value)return(s||a)&&am.isOpenOrClose(i)?"\\"+i.value:i.value;if(i.value)return i.value;if(i.nodes)for(let l of i.nodes)o+=t(l);return o};return t(r)}});var um=x((J4,lm)=>{u();"use strict";lm.exports=function(r){return typeof r=="number"?r-r==0:typeof r=="string"&&r.trim()!==""?Number.isFinite?Number.isFinite(+r):isFinite(+r):!1}});var bm=x((e6,ym)=>{u();"use strict";var fm=um(),Wt=(r,e,t)=>{if(fm(r)===!1)throw new TypeError("toRegexRange: expected the first argument to be a number");if(e===void 0||r===e)return String(r);if(fm(e)===!1)throw new TypeError("toRegexRange: expected the second argument to be a number.");let i={relaxZeros:!0,...t};typeof i.strictZeros=="boolean"&&(i.relaxZeros=i.strictZeros===!1);let n=String(i.relaxZeros),s=String(i.shorthand),a=String(i.capture),o=String(i.wrap),l=r+":"+e+"="+n+s+a+o;if(Wt.cache.hasOwnProperty(l))return Wt.cache[l].result;let c=Math.min(r,e),f=Math.max(r,e);if(Math.abs(c-f)===1){let v=r+"|"+e;return i.capture?`(${v})`:i.wrap===!1?v:`(?:${v})`}let d=gm(r)||gm(e),p={min:r,max:e,a:c,b:f},h=[],b=[];if(d&&(p.isPadded=d,p.maxLen=String(p.max).length),c<0){let v=f<0?Math.abs(f):1;b=cm(v,Math.abs(c),p,i),c=p.a=0}return f>=0&&(h=cm(c,f,p,i)),p.negatives=b,p.positives=h,p.result=K_(b,h,i),i.capture===!0?p.result=`(${p.result})`:i.wrap!==!1&&h.length+b.length>1&&(p.result=`(?:${p.result})`),Wt.cache[l]=p,p.result};function K_(r,e,t){let i=ul(r,e,"-",!1,t)||[],n=ul(e,r,"",!1,t)||[],s=ul(r,e,"-?",!0,t)||[];return i.concat(s).concat(n).join("|")}function X_(r,e){let t=1,i=1,n=dm(r,t),s=new Set([e]);for(;r<=n&&n<=e;)s.add(n),t+=1,n=dm(r,t);for(n=hm(e+1,i)-1;r1&&o.count.pop(),o.count.push(f.count[0]),o.string=o.pattern+mm(o.count),a=c+1;continue}t.isPadded&&(d=rE(c,t,i)),f.string=d+f.pattern+mm(f.count),s.push(f),a=c+1,o=f}return s}function ul(r,e,t,i,n){let s=[];for(let a of r){let{string:o}=a;!i&&!pm(e,"string",o)&&s.push(t+o),i&&pm(e,"string",o)&&s.push(t+o)}return s}function J_(r,e){let t=[];for(let i=0;ie?1:e>r?-1:0}function pm(r,e,t){return r.some(i=>i[e]===t)}function dm(r,e){return Number(String(r).slice(0,-e)+"9".repeat(e))}function hm(r,e){return r-r%Math.pow(10,e)}function mm(r){let[e=0,t=""]=r;return t||e>1?`{${e+(t?","+t:"")}}`:""}function tE(r,e,t){return`[${r}${e-r==1?"":"-"}${e}]`}function gm(r){return/^-?(0+)\d/.test(r)}function rE(r,e,t){if(!e.isPadded)return r;let i=Math.abs(e.maxLen-String(r).length),n=t.relaxZeros!==!1;switch(i){case 0:return"";case 1:return n?"0?":"0";case 2:return n?"0{0,2}":"00";default:return n?`0{0,${i}}`:`0{${i}}`}}Wt.cache={};Wt.clearCache=()=>Wt.cache={};ym.exports=Wt});var pl=x((t6,Cm)=>{u();"use strict";var iE=(Fn(),Bn),wm=bm(),vm=r=>r!==null&&typeof r=="object"&&!Array.isArray(r),nE=r=>e=>r===!0?Number(e):String(e),fl=r=>typeof r=="number"||typeof r=="string"&&r!=="",Ii=r=>Number.isInteger(+r),cl=r=>{let e=`${r}`,t=-1;if(e[0]==="-"&&(e=e.slice(1)),e==="0")return!1;for(;e[++t]==="0";);return t>0},sE=(r,e,t)=>typeof r=="string"||typeof e=="string"?!0:t.stringify===!0,aE=(r,e,t)=>{if(e>0){let i=r[0]==="-"?"-":"";i&&(r=r.slice(1)),r=i+r.padStart(i?e-1:e,"0")}return t===!1?String(r):r},ms=(r,e)=>{let t=r[0]==="-"?"-":"";for(t&&(r=r.slice(1),e--);r.length{r.negatives.sort((o,l)=>ol?1:0),r.positives.sort((o,l)=>ol?1:0);let i=e.capture?"":"?:",n="",s="",a;return r.positives.length&&(n=r.positives.map(o=>ms(String(o),t)).join("|")),r.negatives.length&&(s=`-(${i}${r.negatives.map(o=>ms(String(o),t)).join("|")})`),n&&s?a=`${n}|${s}`:a=n||s,e.wrap?`(${i}${a})`:a},xm=(r,e,t,i)=>{if(t)return wm(r,e,{wrap:!1,...i});let n=String.fromCharCode(r);if(r===e)return n;let s=String.fromCharCode(e);return`[${n}-${s}]`},km=(r,e,t)=>{if(Array.isArray(r)){let i=t.wrap===!0,n=t.capture?"":"?:";return i?`(${n}${r.join("|")})`:r.join("|")}return wm(r,e,t)},Sm=(...r)=>new RangeError("Invalid range arguments: "+iE.inspect(...r)),Am=(r,e,t)=>{if(t.strictRanges===!0)throw Sm([r,e]);return[]},lE=(r,e)=>{if(e.strictRanges===!0)throw new TypeError(`Expected step "${r}" to be a number`);return[]},uE=(r,e,t=1,i={})=>{let n=Number(r),s=Number(e);if(!Number.isInteger(n)||!Number.isInteger(s)){if(i.strictRanges===!0)throw Sm([r,e]);return[]}n===0&&(n=0),s===0&&(s=0);let a=n>s,o=String(r),l=String(e),c=String(t);t=Math.max(Math.abs(t),1);let f=cl(o)||cl(l)||cl(c),d=f?Math.max(o.length,l.length,c.length):0,p=f===!1&&sE(r,e,i)===!1,h=i.transform||nE(p);if(i.toRegex&&t===1)return xm(ms(r,d),ms(e,d),!0,i);let b={negatives:[],positives:[]},v=k=>b[k<0?"negatives":"positives"].push(Math.abs(k)),y=[],w=0;for(;a?n>=s:n<=s;)i.toRegex===!0&&t>1?v(n):y.push(aE(h(n,w),d,p)),n=a?n-t:n+t,w++;return i.toRegex===!0?t>1?oE(b,i,d):km(y,null,{wrap:!1,...i}):y},fE=(r,e,t=1,i={})=>{if(!Ii(r)&&r.length>1||!Ii(e)&&e.length>1)return Am(r,e,i);let n=i.transform||(p=>String.fromCharCode(p)),s=`${r}`.charCodeAt(0),a=`${e}`.charCodeAt(0),o=s>a,l=Math.min(s,a),c=Math.max(s,a);if(i.toRegex&&t===1)return xm(l,c,!1,i);let f=[],d=0;for(;o?s>=a:s<=a;)f.push(n(s,d)),s=o?s-t:s+t,d++;return i.toRegex===!0?km(f,null,{wrap:!1,options:i}):f},gs=(r,e,t,i={})=>{if(e==null&&fl(r))return[r];if(!fl(r)||!fl(e))return Am(r,e,i);if(typeof t=="function")return gs(r,e,1,{transform:t});if(vm(t))return gs(r,e,0,t);let n={...i};return n.capture===!0&&(n.wrap=!0),t=t||n.step||1,Ii(t)?Ii(r)&&Ii(e)?uE(r,e,t,n):fE(r,e,Math.max(Math.abs(t),1),n):t!=null&&!vm(t)?lE(t,n):gs(r,e,1,t)};Cm.exports=gs});var Om=x((r6,Em)=>{u();"use strict";var cE=pl(),_m=ds(),pE=(r,e={})=>{let t=(i,n={})=>{let s=_m.isInvalidBrace(n),a=i.invalid===!0&&e.escapeInvalid===!0,o=s===!0||a===!0,l=e.escapeInvalid===!0?"\\":"",c="";if(i.isOpen===!0)return l+i.value;if(i.isClose===!0)return console.log("node.isClose",l,i.value),l+i.value;if(i.type==="open")return o?l+i.value:"(";if(i.type==="close")return o?l+i.value:")";if(i.type==="comma")return i.prev.type==="comma"?"":o?i.value:"|";if(i.value)return i.value;if(i.nodes&&i.ranges>0){let f=_m.reduce(i.nodes),d=cE(...f,{...e,wrap:!1,toRegex:!0,strictZeros:!0});if(d.length!==0)return f.length>1&&d.length>1?`(${d})`:d}if(i.nodes)for(let f of i.nodes)c+=t(f,i);return c};return t(r)};Em.exports=pE});var Pm=x((i6,Rm)=>{u();"use strict";var dE=pl(),Tm=hs(),mr=ds(),Gt=(r="",e="",t=!1)=>{let i=[];if(r=[].concat(r),e=[].concat(e),!e.length)return r;if(!r.length)return t?mr.flatten(e).map(n=>`{${n}}`):e;for(let n of r)if(Array.isArray(n))for(let s of n)i.push(Gt(s,e,t));else for(let s of e)t===!0&&typeof s=="string"&&(s=`{${s}}`),i.push(Array.isArray(s)?Gt(n,s,t):n+s);return mr.flatten(i)},hE=(r,e={})=>{let t=e.rangeLimit===void 0?1e3:e.rangeLimit,i=(n,s={})=>{n.queue=[];let a=s,o=s.queue;for(;a.type!=="brace"&&a.type!=="root"&&a.parent;)a=a.parent,o=a.queue;if(n.invalid||n.dollar){o.push(Gt(o.pop(),Tm(n,e)));return}if(n.type==="brace"&&n.invalid!==!0&&n.nodes.length===2){o.push(Gt(o.pop(),["{}"]));return}if(n.nodes&&n.ranges>0){let d=mr.reduce(n.nodes);if(mr.exceedsLimit(...d,e.step,t))throw new RangeError("expanded array length exceeds range limit. Use options.rangeLimit to increase or disable the limit.");let p=dE(...d,e);p.length===0&&(p=Tm(n,e)),o.push(Gt(o.pop(),p)),n.nodes=[];return}let l=mr.encloseBrace(n),c=n.queue,f=n;for(;f.type!=="brace"&&f.type!=="root"&&f.parent;)f=f.parent,c=f.queue;for(let d=0;d{u();"use strict";Im.exports={MAX_LENGTH:1e4,CHAR_0:"0",CHAR_9:"9",CHAR_UPPERCASE_A:"A",CHAR_LOWERCASE_A:"a",CHAR_UPPERCASE_Z:"Z",CHAR_LOWERCASE_Z:"z",CHAR_LEFT_PARENTHESES:"(",CHAR_RIGHT_PARENTHESES:")",CHAR_ASTERISK:"*",CHAR_AMPERSAND:"&",CHAR_AT:"@",CHAR_BACKSLASH:"\\",CHAR_BACKTICK:"`",CHAR_CARRIAGE_RETURN:"\r",CHAR_CIRCUMFLEX_ACCENT:"^",CHAR_COLON:":",CHAR_COMMA:",",CHAR_DOLLAR:"$",CHAR_DOT:".",CHAR_DOUBLE_QUOTE:'"',CHAR_EQUAL:"=",CHAR_EXCLAMATION_MARK:"!",CHAR_FORM_FEED:"\f",CHAR_FORWARD_SLASH:"/",CHAR_HASH:"#",CHAR_HYPHEN_MINUS:"-",CHAR_LEFT_ANGLE_BRACKET:"<",CHAR_LEFT_CURLY_BRACE:"{",CHAR_LEFT_SQUARE_BRACKET:"[",CHAR_LINE_FEED:` +`,CHAR_NO_BREAK_SPACE:"\xA0",CHAR_PERCENT:"%",CHAR_PLUS:"+",CHAR_QUESTION_MARK:"?",CHAR_RIGHT_ANGLE_BRACKET:">",CHAR_RIGHT_CURLY_BRACE:"}",CHAR_RIGHT_SQUARE_BRACKET:"]",CHAR_SEMICOLON:";",CHAR_SINGLE_QUOTE:"'",CHAR_SPACE:" ",CHAR_TAB:" ",CHAR_UNDERSCORE:"_",CHAR_VERTICAL_LINE:"|",CHAR_ZERO_WIDTH_NOBREAK_SPACE:"\uFEFF"}});var Nm=x((s6,Mm)=>{u();"use strict";var mE=hs(),{MAX_LENGTH:qm,CHAR_BACKSLASH:dl,CHAR_BACKTICK:gE,CHAR_COMMA:yE,CHAR_DOT:bE,CHAR_LEFT_PARENTHESES:wE,CHAR_RIGHT_PARENTHESES:vE,CHAR_LEFT_CURLY_BRACE:xE,CHAR_RIGHT_CURLY_BRACE:kE,CHAR_LEFT_SQUARE_BRACKET:$m,CHAR_RIGHT_SQUARE_BRACKET:Lm,CHAR_DOUBLE_QUOTE:SE,CHAR_SINGLE_QUOTE:AE,CHAR_NO_BREAK_SPACE:CE,CHAR_ZERO_WIDTH_NOBREAK_SPACE:_E}=Dm(),EE=(r,e={})=>{if(typeof r!="string")throw new TypeError("Expected a string");let t=e||{},i=typeof t.maxLength=="number"?Math.min(qm,t.maxLength):qm;if(r.length>i)throw new SyntaxError(`Input length (${r.length}), exceeds max characters (${i})`);let n={type:"root",input:r,nodes:[]},s=[n],a=n,o=n,l=0,c=r.length,f=0,d=0,p,h=()=>r[f++],b=v=>{if(v.type==="text"&&o.type==="dot"&&(o.type="text"),o&&o.type==="text"&&v.type==="text"){o.value+=v.value;return}return a.nodes.push(v),v.parent=a,v.prev=o,o=v,v};for(b({type:"bos"});f0){if(a.ranges>0){a.ranges=0;let v=a.nodes.shift();a.nodes=[v,{type:"text",value:mE(a)}]}b({type:"comma",value:p}),a.commas++;continue}if(p===bE&&d>0&&a.commas===0){let v=a.nodes;if(d===0||v.length===0){b({type:"text",value:p});continue}if(o.type==="dot"){if(a.range=[],o.value+=p,o.type="range",a.nodes.length!==3&&a.nodes.length!==5){a.invalid=!0,a.ranges=0,o.type="text";continue}a.ranges++,a.args=[];continue}if(o.type==="range"){v.pop();let y=v[v.length-1];y.value+=o.value+p,o=y,a.ranges--;continue}b({type:"dot",value:p});continue}b({type:"text",value:p})}do if(a=s.pop(),a.type!=="root"){a.nodes.forEach(w=>{w.nodes||(w.type==="open"&&(w.isOpen=!0),w.type==="close"&&(w.isClose=!0),w.nodes||(w.type="text"),w.invalid=!0)});let v=s[s.length-1],y=v.nodes.indexOf(a);v.nodes.splice(y,1,...a.nodes)}while(s.length>0);return b({type:"eos"}),n};Mm.exports=EE});var jm=x((a6,Fm)=>{u();"use strict";var Bm=hs(),OE=Om(),TE=Pm(),RE=Nm(),Le=(r,e={})=>{let t=[];if(Array.isArray(r))for(let i of r){let n=Le.create(i,e);Array.isArray(n)?t.push(...n):t.push(n)}else t=[].concat(Le.create(r,e));return e&&e.expand===!0&&e.nodupes===!0&&(t=[...new Set(t)]),t};Le.parse=(r,e={})=>RE(r,e);Le.stringify=(r,e={})=>typeof r=="string"?Bm(Le.parse(r,e),e):Bm(r,e);Le.compile=(r,e={})=>(typeof r=="string"&&(r=Le.parse(r,e)),OE(r,e));Le.expand=(r,e={})=>{typeof r=="string"&&(r=Le.parse(r,e));let t=TE(r,e);return e.noempty===!0&&(t=t.filter(Boolean)),e.nodupes===!0&&(t=[...new Set(t)]),t};Le.create=(r,e={})=>r===""||r.length<3?[r]:e.expand!==!0?Le.compile(r,e):Le.expand(r,e);Fm.exports=Le});var Di=x((o6,Wm)=>{u();"use strict";var PE=(et(),Ur),at="\\\\/",zm=`[^${at}]`,yt="\\.",IE="\\+",DE="\\?",ys="\\/",qE="(?=.)",Um="[^/]",hl=`(?:${ys}|$)`,Vm=`(?:^|${ys})`,ml=`${yt}{1,2}${hl}`,$E=`(?!${yt})`,LE=`(?!${Vm}${ml})`,ME=`(?!${yt}{0,1}${hl})`,NE=`(?!${ml})`,BE=`[^.${ys}]`,FE=`${Um}*?`,Hm={DOT_LITERAL:yt,PLUS_LITERAL:IE,QMARK_LITERAL:DE,SLASH_LITERAL:ys,ONE_CHAR:qE,QMARK:Um,END_ANCHOR:hl,DOTS_SLASH:ml,NO_DOT:$E,NO_DOTS:LE,NO_DOT_SLASH:ME,NO_DOTS_SLASH:NE,QMARK_NO_DOT:BE,STAR:FE,START_ANCHOR:Vm},jE={...Hm,SLASH_LITERAL:`[${at}]`,QMARK:zm,STAR:`${zm}*?`,DOTS_SLASH:`${yt}{1,2}(?:[${at}]|$)`,NO_DOT:`(?!${yt})`,NO_DOTS:`(?!(?:^|[${at}])${yt}{1,2}(?:[${at}]|$))`,NO_DOT_SLASH:`(?!${yt}{0,1}(?:[${at}]|$))`,NO_DOTS_SLASH:`(?!${yt}{1,2}(?:[${at}]|$))`,QMARK_NO_DOT:`[^.${at}]`,START_ANCHOR:`(?:^|[${at}])`,END_ANCHOR:`(?:[${at}]|$)`},zE={alnum:"a-zA-Z0-9",alpha:"a-zA-Z",ascii:"\\x00-\\x7F",blank:" \\t",cntrl:"\\x00-\\x1F\\x7F",digit:"0-9",graph:"\\x21-\\x7E",lower:"a-z",print:"\\x20-\\x7E ",punct:"\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~",space:" \\t\\r\\n\\v\\f",upper:"A-Z",word:"A-Za-z0-9_",xdigit:"A-Fa-f0-9"};Wm.exports={MAX_LENGTH:1024*64,POSIX_REGEX_SOURCE:zE,REGEX_BACKSLASH:/\\(?![*+?^${}(|)[\]])/g,REGEX_NON_SPECIAL_CHARS:/^[^@![\].,$*+?^{}()|\\/]+/,REGEX_SPECIAL_CHARS:/[-*+?.^${}(|)[\]]/,REGEX_SPECIAL_CHARS_BACKREF:/(\\?)((\W)(\3*))/g,REGEX_SPECIAL_CHARS_GLOBAL:/([-*+?.^${}(|)[\]])/g,REGEX_REMOVE_BACKSLASH:/(?:\[.*?[^\\]\]|\\(?=.))/g,REPLACEMENTS:{"***":"*","**/**":"**","**/**/**":"**"},CHAR_0:48,CHAR_9:57,CHAR_UPPERCASE_A:65,CHAR_LOWERCASE_A:97,CHAR_UPPERCASE_Z:90,CHAR_LOWERCASE_Z:122,CHAR_LEFT_PARENTHESES:40,CHAR_RIGHT_PARENTHESES:41,CHAR_ASTERISK:42,CHAR_AMPERSAND:38,CHAR_AT:64,CHAR_BACKWARD_SLASH:92,CHAR_CARRIAGE_RETURN:13,CHAR_CIRCUMFLEX_ACCENT:94,CHAR_COLON:58,CHAR_COMMA:44,CHAR_DOT:46,CHAR_DOUBLE_QUOTE:34,CHAR_EQUAL:61,CHAR_EXCLAMATION_MARK:33,CHAR_FORM_FEED:12,CHAR_FORWARD_SLASH:47,CHAR_GRAVE_ACCENT:96,CHAR_HASH:35,CHAR_HYPHEN_MINUS:45,CHAR_LEFT_ANGLE_BRACKET:60,CHAR_LEFT_CURLY_BRACE:123,CHAR_LEFT_SQUARE_BRACKET:91,CHAR_LINE_FEED:10,CHAR_NO_BREAK_SPACE:160,CHAR_PERCENT:37,CHAR_PLUS:43,CHAR_QUESTION_MARK:63,CHAR_RIGHT_ANGLE_BRACKET:62,CHAR_RIGHT_CURLY_BRACE:125,CHAR_RIGHT_SQUARE_BRACKET:93,CHAR_SEMICOLON:59,CHAR_SINGLE_QUOTE:39,CHAR_SPACE:32,CHAR_TAB:9,CHAR_UNDERSCORE:95,CHAR_VERTICAL_LINE:124,CHAR_ZERO_WIDTH_NOBREAK_SPACE:65279,SEP:PE.sep,extglobChars(r){return{"!":{type:"negate",open:"(?:(?!(?:",close:`))${r.STAR})`},"?":{type:"qmark",open:"(?:",close:")?"},"+":{type:"plus",open:"(?:",close:")+"},"*":{type:"star",open:"(?:",close:")*"},"@":{type:"at",open:"(?:",close:")"}}},globChars(r){return r===!0?jE:Hm}}});var qi=x(Re=>{u();"use strict";var UE=(et(),Ur),VE=m.platform==="win32",{REGEX_BACKSLASH:HE,REGEX_REMOVE_BACKSLASH:WE,REGEX_SPECIAL_CHARS:GE,REGEX_SPECIAL_CHARS_GLOBAL:QE}=Di();Re.isObject=r=>r!==null&&typeof r=="object"&&!Array.isArray(r);Re.hasRegexChars=r=>GE.test(r);Re.isRegexChar=r=>r.length===1&&Re.hasRegexChars(r);Re.escapeRegex=r=>r.replace(QE,"\\$1");Re.toPosixSlashes=r=>r.replace(HE,"/");Re.removeBackslashes=r=>r.replace(WE,e=>e==="\\"?"":e);Re.supportsLookbehinds=()=>{let r=m.version.slice(1).split(".").map(Number);return r.length===3&&r[0]>=9||r[0]===8&&r[1]>=10};Re.isWindows=r=>r&&typeof r.windows=="boolean"?r.windows:VE===!0||UE.sep==="\\";Re.escapeLast=(r,e,t)=>{let i=r.lastIndexOf(e,t);return i===-1?r:r[i-1]==="\\"?Re.escapeLast(r,e,i-1):`${r.slice(0,i)}\\${r.slice(i)}`};Re.removePrefix=(r,e={})=>{let t=r;return t.startsWith("./")&&(t=t.slice(2),e.prefix="./"),t};Re.wrapOutput=(r,e={},t={})=>{let i=t.contains?"":"^",n=t.contains?"":"$",s=`${i}(?:${r})${n}`;return e.negated===!0&&(s=`(?:^(?!${s}).*$)`),s}});var eg=x((u6,Jm)=>{u();"use strict";var Gm=qi(),{CHAR_ASTERISK:gl,CHAR_AT:YE,CHAR_BACKWARD_SLASH:$i,CHAR_COMMA:KE,CHAR_DOT:yl,CHAR_EXCLAMATION_MARK:bl,CHAR_FORWARD_SLASH:Qm,CHAR_LEFT_CURLY_BRACE:wl,CHAR_LEFT_PARENTHESES:vl,CHAR_LEFT_SQUARE_BRACKET:XE,CHAR_PLUS:ZE,CHAR_QUESTION_MARK:Ym,CHAR_RIGHT_CURLY_BRACE:JE,CHAR_RIGHT_PARENTHESES:Km,CHAR_RIGHT_SQUARE_BRACKET:e2}=Di(),Xm=r=>r===Qm||r===$i,Zm=r=>{r.isPrefix!==!0&&(r.depth=r.isGlobstar?1/0:1)},t2=(r,e)=>{let t=e||{},i=r.length-1,n=t.parts===!0||t.scanToEnd===!0,s=[],a=[],o=[],l=r,c=-1,f=0,d=0,p=!1,h=!1,b=!1,v=!1,y=!1,w=!1,k=!1,S=!1,E=!1,T=!1,B=0,N,R,F={value:"",depth:0,isGlob:!1},Y=()=>c>=i,_=()=>l.charCodeAt(c+1),Q=()=>(N=R,l.charCodeAt(++c));for(;c0&&(le=l.slice(0,f),l=l.slice(f),d-=f),U&&b===!0&&d>0?(U=l.slice(0,d),A=l.slice(d)):b===!0?(U="",A=l):U=l,U&&U!==""&&U!=="/"&&U!==l&&Xm(U.charCodeAt(U.length-1))&&(U=U.slice(0,-1)),t.unescape===!0&&(A&&(A=Gm.removeBackslashes(A)),U&&k===!0&&(U=Gm.removeBackslashes(U)));let C={prefix:le,input:r,start:f,base:U,glob:A,isBrace:p,isBracket:h,isGlob:b,isExtglob:v,isGlobstar:y,negated:S,negatedExtglob:E};if(t.tokens===!0&&(C.maxDepth=0,Xm(R)||a.push(F),C.tokens=a),t.parts===!0||t.tokens===!0){let he;for(let V=0;V{u();"use strict";var bs=Di(),Me=qi(),{MAX_LENGTH:ws,POSIX_REGEX_SOURCE:r2,REGEX_NON_SPECIAL_CHARS:i2,REGEX_SPECIAL_CHARS_BACKREF:n2,REPLACEMENTS:tg}=bs,s2=(r,e)=>{if(typeof e.expandRange=="function")return e.expandRange(...r,e);r.sort();let t=`[${r.join("-")}]`;try{new RegExp(t)}catch(i){return r.map(n=>Me.escapeRegex(n)).join("..")}return t},gr=(r,e)=>`Missing ${r}: "${e}" - use "\\\\${e}" to match literal characters`,xl=(r,e)=>{if(typeof r!="string")throw new TypeError("Expected a string");r=tg[r]||r;let t={...e},i=typeof t.maxLength=="number"?Math.min(ws,t.maxLength):ws,n=r.length;if(n>i)throw new SyntaxError(`Input length: ${n}, exceeds maximum allowed length: ${i}`);let s={type:"bos",value:"",output:t.prepend||""},a=[s],o=t.capture?"":"?:",l=Me.isWindows(e),c=bs.globChars(l),f=bs.extglobChars(c),{DOT_LITERAL:d,PLUS_LITERAL:p,SLASH_LITERAL:h,ONE_CHAR:b,DOTS_SLASH:v,NO_DOT:y,NO_DOT_SLASH:w,NO_DOTS_SLASH:k,QMARK:S,QMARK_NO_DOT:E,STAR:T,START_ANCHOR:B}=c,N=$=>`(${o}(?:(?!${B}${$.dot?v:d}).)*?)`,R=t.dot?"":y,F=t.dot?S:E,Y=t.bash===!0?N(t):T;t.capture&&(Y=`(${Y})`),typeof t.noext=="boolean"&&(t.noextglob=t.noext);let _={input:r,index:-1,start:0,dot:t.dot===!0,consumed:"",output:"",prefix:"",backtrack:!1,negated:!1,brackets:0,braces:0,parens:0,quotes:0,globstar:!1,tokens:a};r=Me.removePrefix(r,_),n=r.length;let Q=[],U=[],le=[],A=s,C,he=()=>_.index===n-1,V=_.peek=($=1)=>r[_.index+$],Ee=_.advance=()=>r[++_.index]||"",Ie=()=>r.slice(_.index+1),De=($="",ae=0)=>{_.consumed+=$,_.index+=ae},ji=$=>{_.output+=$.output!=null?$.output:$.value,De($.value)},Iv=()=>{let $=1;for(;V()==="!"&&(V(2)!=="("||V(3)==="?");)Ee(),_.start++,$++;return $%2==0?!1:(_.negated=!0,_.start++,!0)},zi=$=>{_[$]++,le.push($)},Ft=$=>{_[$]--,le.pop()},W=$=>{if(A.type==="globstar"){let ae=_.braces>0&&($.type==="comma"||$.type==="brace"),I=$.extglob===!0||Q.length&&($.type==="pipe"||$.type==="paren");$.type!=="slash"&&$.type!=="paren"&&!ae&&!I&&(_.output=_.output.slice(0,-A.output.length),A.type="star",A.value="*",A.output=Y,_.output+=A.output)}if(Q.length&&$.type!=="paren"&&(Q[Q.length-1].inner+=$.value),($.value||$.output)&&ji($),A&&A.type==="text"&&$.type==="text"){A.value+=$.value,A.output=(A.output||"")+$.value;return}$.prev=A,a.push($),A=$},Ui=($,ae)=>{let I={...f[ae],conditions:1,inner:""};I.prev=A,I.parens=_.parens,I.output=_.output;let H=(t.capture?"(":"")+I.open;zi("parens"),W({type:$,value:ae,output:_.output?"":b}),W({type:"paren",extglob:!0,value:Ee(),output:H}),Q.push(I)},Dv=$=>{let ae=$.close+(t.capture?")":""),I;if($.type==="negate"){let H=Y;if($.inner&&$.inner.length>1&&$.inner.includes("/")&&(H=N(t)),(H!==Y||he()||/^\)+$/.test(Ie()))&&(ae=$.close=`)$))${H}`),$.inner.includes("*")&&(I=Ie())&&/^\.[^\\/.]+$/.test(I)){let ce=xl(I,{...e,fastpaths:!1}).output;ae=$.close=`)${ce})${H})`}$.prev.type==="bos"&&(_.negatedExtglob=!0)}W({type:"paren",extglob:!0,value:C,output:ae}),Ft("parens")};if(t.fastpaths!==!1&&!/(^[*!]|[/()[\]{}"])/.test(r)){let $=!1,ae=r.replace(n2,(I,H,ce,Ce,ye,Bs)=>Ce==="\\"?($=!0,I):Ce==="?"?H?H+Ce+(ye?S.repeat(ye.length):""):Bs===0?F+(ye?S.repeat(ye.length):""):S.repeat(ce.length):Ce==="."?d.repeat(ce.length):Ce==="*"?H?H+Ce+(ye?Y:""):Y:H?I:`\\${I}`);return $===!0&&(t.unescape===!0?ae=ae.replace(/\\/g,""):ae=ae.replace(/\\+/g,I=>I.length%2==0?"\\\\":I?"\\":"")),ae===r&&t.contains===!0?(_.output=r,_):(_.output=Me.wrapOutput(ae,_,e),_)}for(;!he();){if(C=Ee(),C==="\0")continue;if(C==="\\"){let I=V();if(I==="/"&&t.bash!==!0||I==="."||I===";")continue;if(!I){C+="\\",W({type:"text",value:C});continue}let H=/^\\+/.exec(Ie()),ce=0;if(H&&H[0].length>2&&(ce=H[0].length,_.index+=ce,ce%2!=0&&(C+="\\")),t.unescape===!0?C=Ee():C+=Ee(),_.brackets===0){W({type:"text",value:C});continue}}if(_.brackets>0&&(C!=="]"||A.value==="["||A.value==="[^")){if(t.posix!==!1&&C===":"){let I=A.value.slice(1);if(I.includes("[")&&(A.posix=!0,I.includes(":"))){let H=A.value.lastIndexOf("["),ce=A.value.slice(0,H),Ce=A.value.slice(H+2),ye=r2[Ce];if(ye){A.value=ce+ye,_.backtrack=!0,Ee(),!s.output&&a.indexOf(A)===1&&(s.output=b);continue}}}(C==="["&&V()!==":"||C==="-"&&V()==="]")&&(C=`\\${C}`),C==="]"&&(A.value==="["||A.value==="[^")&&(C=`\\${C}`),t.posix===!0&&C==="!"&&A.value==="["&&(C="^"),A.value+=C,ji({value:C});continue}if(_.quotes===1&&C!=='"'){C=Me.escapeRegex(C),A.value+=C,ji({value:C});continue}if(C==='"'){_.quotes=_.quotes===1?0:1,t.keepQuotes===!0&&W({type:"text",value:C});continue}if(C==="("){zi("parens"),W({type:"paren",value:C});continue}if(C===")"){if(_.parens===0&&t.strictBrackets===!0)throw new SyntaxError(gr("opening","("));let I=Q[Q.length-1];if(I&&_.parens===I.parens+1){Dv(Q.pop());continue}W({type:"paren",value:C,output:_.parens?")":"\\)"}),Ft("parens");continue}if(C==="["){if(t.nobracket===!0||!Ie().includes("]")){if(t.nobracket!==!0&&t.strictBrackets===!0)throw new SyntaxError(gr("closing","]"));C=`\\${C}`}else zi("brackets");W({type:"bracket",value:C});continue}if(C==="]"){if(t.nobracket===!0||A&&A.type==="bracket"&&A.value.length===1){W({type:"text",value:C,output:`\\${C}`});continue}if(_.brackets===0){if(t.strictBrackets===!0)throw new SyntaxError(gr("opening","["));W({type:"text",value:C,output:`\\${C}`});continue}Ft("brackets");let I=A.value.slice(1);if(A.posix!==!0&&I[0]==="^"&&!I.includes("/")&&(C=`/${C}`),A.value+=C,ji({value:C}),t.literalBrackets===!1||Me.hasRegexChars(I))continue;let H=Me.escapeRegex(A.value);if(_.output=_.output.slice(0,-A.value.length),t.literalBrackets===!0){_.output+=H,A.value=H;continue}A.value=`(${o}${H}|${A.value})`,_.output+=A.value;continue}if(C==="{"&&t.nobrace!==!0){zi("braces");let I={type:"brace",value:C,output:"(",outputIndex:_.output.length,tokensIndex:_.tokens.length};U.push(I),W(I);continue}if(C==="}"){let I=U[U.length-1];if(t.nobrace===!0||!I){W({type:"text",value:C,output:C});continue}let H=")";if(I.dots===!0){let ce=a.slice(),Ce=[];for(let ye=ce.length-1;ye>=0&&(a.pop(),ce[ye].type!=="brace");ye--)ce[ye].type!=="dots"&&Ce.unshift(ce[ye].value);H=s2(Ce,t),_.backtrack=!0}if(I.comma!==!0&&I.dots!==!0){let ce=_.output.slice(0,I.outputIndex),Ce=_.tokens.slice(I.tokensIndex);I.value=I.output="\\{",C=H="\\}",_.output=ce;for(let ye of Ce)_.output+=ye.output||ye.value}W({type:"brace",value:C,output:H}),Ft("braces"),U.pop();continue}if(C==="|"){Q.length>0&&Q[Q.length-1].conditions++,W({type:"text",value:C});continue}if(C===","){let I=C,H=U[U.length-1];H&&le[le.length-1]==="braces"&&(H.comma=!0,I="|"),W({type:"comma",value:C,output:I});continue}if(C==="/"){if(A.type==="dot"&&_.index===_.start+1){_.start=_.index+1,_.consumed="",_.output="",a.pop(),A=s;continue}W({type:"slash",value:C,output:h});continue}if(C==="."){if(_.braces>0&&A.type==="dot"){A.value==="."&&(A.output=d);let I=U[U.length-1];A.type="dots",A.output+=C,A.value+=C,I.dots=!0;continue}if(_.braces+_.parens===0&&A.type!=="bos"&&A.type!=="slash"){W({type:"text",value:C,output:d});continue}W({type:"dot",value:C,output:d});continue}if(C==="?"){if(!(A&&A.value==="(")&&t.noextglob!==!0&&V()==="("&&V(2)!=="?"){Ui("qmark",C);continue}if(A&&A.type==="paren"){let H=V(),ce=C;if(H==="<"&&!Me.supportsLookbehinds())throw new Error("Node.js v10 or higher is required for regex lookbehinds");(A.value==="("&&!/[!=<:]/.test(H)||H==="<"&&!/<([!=]|\w+>)/.test(Ie()))&&(ce=`\\${C}`),W({type:"text",value:C,output:ce});continue}if(t.dot!==!0&&(A.type==="slash"||A.type==="bos")){W({type:"qmark",value:C,output:E});continue}W({type:"qmark",value:C,output:S});continue}if(C==="!"){if(t.noextglob!==!0&&V()==="("&&(V(2)!=="?"||!/[!=<:]/.test(V(3)))){Ui("negate",C);continue}if(t.nonegate!==!0&&_.index===0){Iv();continue}}if(C==="+"){if(t.noextglob!==!0&&V()==="("&&V(2)!=="?"){Ui("plus",C);continue}if(A&&A.value==="("||t.regex===!1){W({type:"plus",value:C,output:p});continue}if(A&&(A.type==="bracket"||A.type==="paren"||A.type==="brace")||_.parens>0){W({type:"plus",value:C});continue}W({type:"plus",value:p});continue}if(C==="@"){if(t.noextglob!==!0&&V()==="("&&V(2)!=="?"){W({type:"at",extglob:!0,value:C,output:""});continue}W({type:"text",value:C});continue}if(C!=="*"){(C==="$"||C==="^")&&(C=`\\${C}`);let I=i2.exec(Ie());I&&(C+=I[0],_.index+=I[0].length),W({type:"text",value:C});continue}if(A&&(A.type==="globstar"||A.star===!0)){A.type="star",A.star=!0,A.value+=C,A.output=Y,_.backtrack=!0,_.globstar=!0,De(C);continue}let $=Ie();if(t.noextglob!==!0&&/^\([^?]/.test($)){Ui("star",C);continue}if(A.type==="star"){if(t.noglobstar===!0){De(C);continue}let I=A.prev,H=I.prev,ce=I.type==="slash"||I.type==="bos",Ce=H&&(H.type==="star"||H.type==="globstar");if(t.bash===!0&&(!ce||$[0]&&$[0]!=="/")){W({type:"star",value:C,output:""});continue}let ye=_.braces>0&&(I.type==="comma"||I.type==="brace"),Bs=Q.length&&(I.type==="pipe"||I.type==="paren");if(!ce&&I.type!=="paren"&&!ye&&!Bs){W({type:"star",value:C,output:""});continue}for(;$.slice(0,3)==="/**";){let Vi=r[_.index+4];if(Vi&&Vi!=="/")break;$=$.slice(3),De("/**",3)}if(I.type==="bos"&&he()){A.type="globstar",A.value+=C,A.output=N(t),_.output=A.output,_.globstar=!0,De(C);continue}if(I.type==="slash"&&I.prev.type!=="bos"&&!Ce&&he()){_.output=_.output.slice(0,-(I.output+A.output).length),I.output=`(?:${I.output}`,A.type="globstar",A.output=N(t)+(t.strictSlashes?")":"|$)"),A.value+=C,_.globstar=!0,_.output+=I.output+A.output,De(C);continue}if(I.type==="slash"&&I.prev.type!=="bos"&&$[0]==="/"){let Vi=$[1]!==void 0?"|$":"";_.output=_.output.slice(0,-(I.output+A.output).length),I.output=`(?:${I.output}`,A.type="globstar",A.output=`${N(t)}${h}|${h}${Vi})`,A.value+=C,_.output+=I.output+A.output,_.globstar=!0,De(C+Ee()),W({type:"slash",value:"/",output:""});continue}if(I.type==="bos"&&$[0]==="/"){A.type="globstar",A.value+=C,A.output=`(?:^|${h}|${N(t)}${h})`,_.output=A.output,_.globstar=!0,De(C+Ee()),W({type:"slash",value:"/",output:""});continue}_.output=_.output.slice(0,-A.output.length),A.type="globstar",A.output=N(t),A.value+=C,_.output+=A.output,_.globstar=!0,De(C);continue}let ae={type:"star",value:C,output:Y};if(t.bash===!0){ae.output=".*?",(A.type==="bos"||A.type==="slash")&&(ae.output=R+ae.output),W(ae);continue}if(A&&(A.type==="bracket"||A.type==="paren")&&t.regex===!0){ae.output=C,W(ae);continue}(_.index===_.start||A.type==="slash"||A.type==="dot")&&(A.type==="dot"?(_.output+=w,A.output+=w):t.dot===!0?(_.output+=k,A.output+=k):(_.output+=R,A.output+=R),V()!=="*"&&(_.output+=b,A.output+=b)),W(ae)}for(;_.brackets>0;){if(t.strictBrackets===!0)throw new SyntaxError(gr("closing","]"));_.output=Me.escapeLast(_.output,"["),Ft("brackets")}for(;_.parens>0;){if(t.strictBrackets===!0)throw new SyntaxError(gr("closing",")"));_.output=Me.escapeLast(_.output,"("),Ft("parens")}for(;_.braces>0;){if(t.strictBrackets===!0)throw new SyntaxError(gr("closing","}"));_.output=Me.escapeLast(_.output,"{"),Ft("braces")}if(t.strictSlashes!==!0&&(A.type==="star"||A.type==="bracket")&&W({type:"maybe_slash",value:"",output:`${h}?`}),_.backtrack===!0){_.output="";for(let $ of _.tokens)_.output+=$.output!=null?$.output:$.value,$.suffix&&(_.output+=$.suffix)}return _};xl.fastpaths=(r,e)=>{let t={...e},i=typeof t.maxLength=="number"?Math.min(ws,t.maxLength):ws,n=r.length;if(n>i)throw new SyntaxError(`Input length: ${n}, exceeds maximum allowed length: ${i}`);r=tg[r]||r;let s=Me.isWindows(e),{DOT_LITERAL:a,SLASH_LITERAL:o,ONE_CHAR:l,DOTS_SLASH:c,NO_DOT:f,NO_DOTS:d,NO_DOTS_SLASH:p,STAR:h,START_ANCHOR:b}=bs.globChars(s),v=t.dot?d:f,y=t.dot?p:f,w=t.capture?"":"?:",k={negated:!1,prefix:""},S=t.bash===!0?".*?":h;t.capture&&(S=`(${S})`);let E=R=>R.noglobstar===!0?S:`(${w}(?:(?!${b}${R.dot?c:a}).)*?)`,T=R=>{switch(R){case"*":return`${v}${l}${S}`;case".*":return`${a}${l}${S}`;case"*.*":return`${v}${S}${a}${l}${S}`;case"*/*":return`${v}${S}${o}${l}${y}${S}`;case"**":return v+E(t);case"**/*":return`(?:${v}${E(t)}${o})?${y}${l}${S}`;case"**/*.*":return`(?:${v}${E(t)}${o})?${y}${S}${a}${l}${S}`;case"**/.*":return`(?:${v}${E(t)}${o})?${a}${l}${S}`;default:{let F=/^(.*?)\.(\w+)$/.exec(R);if(!F)return;let Y=T(F[1]);return Y?Y+a+F[2]:void 0}}},B=Me.removePrefix(r,k),N=T(B);return N&&t.strictSlashes!==!0&&(N+=`${o}?`),N};rg.exports=xl});var sg=x((c6,ng)=>{u();"use strict";var a2=(et(),Ur),o2=eg(),kl=ig(),Sl=qi(),l2=Di(),u2=r=>r&&typeof r=="object"&&!Array.isArray(r),de=(r,e,t=!1)=>{if(Array.isArray(r)){let f=r.map(p=>de(p,e,t));return p=>{for(let h of f){let b=h(p);if(b)return b}return!1}}let i=u2(r)&&r.tokens&&r.input;if(r===""||typeof r!="string"&&!i)throw new TypeError("Expected pattern to be a non-empty string");let n=e||{},s=Sl.isWindows(e),a=i?de.compileRe(r,e):de.makeRe(r,e,!1,!0),o=a.state;delete a.state;let l=()=>!1;if(n.ignore){let f={...e,ignore:null,onMatch:null,onResult:null};l=de(n.ignore,f,t)}let c=(f,d=!1)=>{let{isMatch:p,match:h,output:b}=de.test(f,a,e,{glob:r,posix:s}),v={glob:r,state:o,regex:a,posix:s,input:f,output:b,match:h,isMatch:p};return typeof n.onResult=="function"&&n.onResult(v),p===!1?(v.isMatch=!1,d?v:!1):l(f)?(typeof n.onIgnore=="function"&&n.onIgnore(v),v.isMatch=!1,d?v:!1):(typeof n.onMatch=="function"&&n.onMatch(v),d?v:!0)};return t&&(c.state=o),c};de.test=(r,e,t,{glob:i,posix:n}={})=>{if(typeof r!="string")throw new TypeError("Expected input to be a string");if(r==="")return{isMatch:!1,output:""};let s=t||{},a=s.format||(n?Sl.toPosixSlashes:null),o=r===i,l=o&&a?a(r):r;return o===!1&&(l=a?a(r):r,o=l===i),(o===!1||s.capture===!0)&&(s.matchBase===!0||s.basename===!0?o=de.matchBase(r,e,t,n):o=e.exec(l)),{isMatch:Boolean(o),match:o,output:l}};de.matchBase=(r,e,t,i=Sl.isWindows(t))=>(e instanceof RegExp?e:de.makeRe(e,t)).test(a2.basename(r));de.isMatch=(r,e,t)=>de(e,t)(r);de.parse=(r,e)=>Array.isArray(r)?r.map(t=>de.parse(t,e)):kl(r,{...e,fastpaths:!1});de.scan=(r,e)=>o2(r,e);de.compileRe=(r,e,t=!1,i=!1)=>{if(t===!0)return r.output;let n=e||{},s=n.contains?"":"^",a=n.contains?"":"$",o=`${s}(?:${r.output})${a}`;r&&r.negated===!0&&(o=`^(?!${o}).*$`);let l=de.toRegex(o,e);return i===!0&&(l.state=r),l};de.makeRe=(r,e={},t=!1,i=!1)=>{if(!r||typeof r!="string")throw new TypeError("Expected a non-empty string");let n={negated:!1,fastpaths:!0};return e.fastpaths!==!1&&(r[0]==="."||r[0]==="*")&&(n.output=kl.fastpaths(r,e)),n.output||(n=kl(r,e)),de.compileRe(n,e,t,i)};de.toRegex=(r,e)=>{try{let t=e||{};return new RegExp(r,t.flags||(t.nocase?"i":""))}catch(t){if(e&&e.debug===!0)throw t;return/$^/}};de.constants=l2;ng.exports=de});var og=x((p6,ag)=>{u();"use strict";ag.exports=sg()});var dg=x((d6,pg)=>{u();"use strict";var lg=(Fn(),Bn),ug=jm(),ot=og(),Al=qi(),fg=r=>r===""||r==="./",cg=r=>{let e=r.indexOf("{");return e>-1&&r.indexOf("}",e)>-1},oe=(r,e,t)=>{e=[].concat(e),r=[].concat(r);let i=new Set,n=new Set,s=new Set,a=0,o=f=>{s.add(f.output),t&&t.onResult&&t.onResult(f)};for(let f=0;f!i.has(f));if(t&&c.length===0){if(t.failglob===!0)throw new Error(`No matches found for "${e.join(", ")}"`);if(t.nonull===!0||t.nullglob===!0)return t.unescape?e.map(f=>f.replace(/\\/g,"")):e}return c};oe.match=oe;oe.matcher=(r,e)=>ot(r,e);oe.isMatch=(r,e,t)=>ot(e,t)(r);oe.any=oe.isMatch;oe.not=(r,e,t={})=>{e=[].concat(e).map(String);let i=new Set,n=[],s=o=>{t.onResult&&t.onResult(o),n.push(o.output)},a=new Set(oe(r,e,{...t,onResult:s}));for(let o of n)a.has(o)||i.add(o);return[...i]};oe.contains=(r,e,t)=>{if(typeof r!="string")throw new TypeError(`Expected a string: "${lg.inspect(r)}"`);if(Array.isArray(e))return e.some(i=>oe.contains(r,i,t));if(typeof e=="string"){if(fg(r)||fg(e))return!1;if(r.includes(e)||r.startsWith("./")&&r.slice(2).includes(e))return!0}return oe.isMatch(r,e,{...t,contains:!0})};oe.matchKeys=(r,e,t)=>{if(!Al.isObject(r))throw new TypeError("Expected the first argument to be an object");let i=oe(Object.keys(r),e,t),n={};for(let s of i)n[s]=r[s];return n};oe.some=(r,e,t)=>{let i=[].concat(r);for(let n of[].concat(e)){let s=ot(String(n),t);if(i.some(a=>s(a)))return!0}return!1};oe.every=(r,e,t)=>{let i=[].concat(r);for(let n of[].concat(e)){let s=ot(String(n),t);if(!i.every(a=>s(a)))return!1}return!0};oe.all=(r,e,t)=>{if(typeof r!="string")throw new TypeError(`Expected a string: "${lg.inspect(r)}"`);return[].concat(e).every(i=>ot(i,t)(r))};oe.capture=(r,e,t)=>{let i=Al.isWindows(t),s=ot.makeRe(String(r),{...t,capture:!0}).exec(i?Al.toPosixSlashes(e):e);if(s)return s.slice(1).map(a=>a===void 0?"":a)};oe.makeRe=(...r)=>ot.makeRe(...r);oe.scan=(...r)=>ot.scan(...r);oe.parse=(r,e)=>{let t=[];for(let i of[].concat(r||[]))for(let n of ug(String(i),e))t.push(ot.parse(n,e));return t};oe.braces=(r,e)=>{if(typeof r!="string")throw new TypeError("Expected a string");return e&&e.nobrace===!0||!cg(r)?[r]:ug(r,e)};oe.braceExpand=(r,e)=>{if(typeof r!="string")throw new TypeError("Expected a string");return oe.braces(r,{...e,expand:!0})};oe.hasBraces=cg;pg.exports=oe});function mg(r,e){let t=e.content.files;t=t.filter(o=>typeof o=="string"),t=t.map(ll);let i=ps.generateTasks(t),n=[],s=[];for(let o of i)n.push(...o.positive.map(l=>gg(l,!1))),s.push(...o.negative.map(l=>gg(l,!0)));let a=[...n,...s];return a=c2(r,a),a=a.flatMap(p2),a=a.map(f2),a}function gg(r,e){let t={original:r,base:r,ignore:e,pattern:r,glob:null};return Zh(r)&&Object.assign(t,nm(r)),t}function f2(r){let e=ll(r.base);return e=ps.escapePath(e),r.pattern=r.glob?`${e}/${r.glob}`:e,r.pattern=r.ignore?`!${r.pattern}`:r.pattern,r}function c2(r,e){let t=[];return r.userConfigPath&&r.tailwindConfig.content.relative&&(t=[me.dirname(r.userConfigPath)]),e.map(i=>(i.base=me.resolve(...t,i.base),i))}function p2(r){let e=[r];try{let t=be.realpathSync(r.base);t!==r.base&&e.push({...r,base:t})}catch{}return e}function yg(r,e,t){let i=r.tailwindConfig.content.files.filter(a=>typeof a.raw=="string").map(({raw:a,extension:o="html"})=>({content:a,extension:o})),[n,s]=h2(e,t);for(let a of n){let o=me.extname(a).slice(1);i.push({file:a,extension:o})}return[i,s]}function d2(r){if(!r.some(s=>s.includes("**")&&!wg.test(s)))return()=>{};let t=[],i=[];for(let s of r){let a=hg.default.matcher(s);wg.test(s)&&i.push(a),t.push(a)}let n=!1;return s=>{if(n||i.some(f=>f(s)))return;let a=t.findIndex(f=>f(s));if(a===-1)return;let o=r[a],l=me.relative(m.cwd(),o);l[0]!=="."&&(l=`./${l}`);let c=bg.find(f=>s.includes(f));c&&(n=!0,G.warn("broad-content-glob-pattern",[`Your \`content\` configuration includes a pattern which looks like it's accidentally matching all of \`${c}\` and can cause serious performance issues.`,`Pattern: \`${l}\``,"See our documentation for recommendations:","https://tailwindcss.com/docs/content-configuration#pattern-recommendations"]))}}function h2(r,e){let t=r.map(o=>o.pattern),i=new Map,n=d2(t),s=new Set;Ze.DEBUG&&console.time("Finding changed files");let a=ps.sync(t,{absolute:!0});for(let o of a){n(o);let l=e.get(o)||-1/0,c=be.statSync(o).mtimeMs;c>l&&(s.add(o),i.set(o,c))}return Ze.DEBUG&&console.timeEnd("Finding changed files"),[s,i]}var hg,bg,wg,vg=P(()=>{u();ft();et();Jh();em();tm();sm();It();Be();hg=pe(dg());bg=["node_modules"],wg=new RegExp(`(${bg.map(r=>String.raw`\b${r}\b`).join("|")})`)});function xg(){}var kg=P(()=>{u()});function b2(r,e){for(let t of e){let i=`${r}${t}`;if(be.existsSync(i)&&be.statSync(i).isFile())return i}for(let t of e){let i=`${r}/index${t}`;if(be.existsSync(i))return i}return null}function*Sg(r,e,t,i=me.extname(r)){let n=b2(me.resolve(e,r),m2.includes(i)?g2:y2);if(n===null||t.has(n))return;t.add(n),yield n,e=me.dirname(n),i=me.extname(n);let s=be.readFileSync(n,"utf-8");for(let a of[...s.matchAll(/import[\s\S]*?['"](.{3,}?)['"]/gi),...s.matchAll(/import[\s\S]*from[\s\S]*?['"](.{3,}?)['"]/gi),...s.matchAll(/require\(['"`](.+)['"`]\)/gi)])!a[1].startsWith(".")||(yield*Sg(a[1],e,t,i))}function Cl(r){return r===null?new Set:new Set(Sg(r,me.dirname(r),new Set))}var m2,g2,y2,Ag=P(()=>{u();ft();et();m2=[".js",".cjs",".mjs"],g2=["",".js",".cjs",".mjs",".ts",".cts",".mts",".jsx",".tsx"],y2=["",".ts",".cts",".mts",".tsx",".js",".cjs",".mjs",".jsx"]});function w2(r,e){if(_l.has(r))return _l.get(r);let t=mg(r,e);return _l.set(r,t).get(r)}function v2(r){let e=aa(r);if(e!==null){let[i,n,s,a]=_g.get(e)||[],o=Cl(e),l=!1,c=new Map;for(let p of o){let h=be.statSync(p).mtimeMs;c.set(p,h),(!a||!a.has(p)||h>a.get(p))&&(l=!0)}if(!l)return[i,e,n,s];for(let p of o)delete hf.cache[p];let f=ol(zr(xg(e))),d=Wi(f);return _g.set(e,[f,d,o,c]),[f,e,d,o]}let t=zr(r?.config??r??{});return t=ol(t),[t,null,Wi(t),[]]}function El(r){return({tailwindDirectives:e,registerDependency:t})=>(i,n)=>{let[s,a,o,l]=v2(r),c=new Set(l);if(e.size>0){c.add(n.opts.from);for(let b of n.messages)b.type==="dependency"&&c.add(b.file)}let[f,,d]=Vh(i,n,s,a,o,c),p=cs(f),h=w2(f,s);if(e.size>0){for(let y of h)for(let w of nl(y))t(w);let[b,v]=yg(f,h,p);for(let y of b)f.changedContent.push(y);for(let[y,w]of v.entries())d.set(y,w)}for(let b of l)t({type:"dependency",file:b});for(let[b,v]of d.entries())p.set(b,v);return f}}var Cg,_g,_l,Eg=P(()=>{u();ft();Cg=pe(Fs());wf();sa();oc();Oi();Hh();Xh();vg();kg();Ag();_g=new Cg.default({maxSize:100}),_l=new WeakMap});function Ol(r){let e=new Set,t=new Set,i=new Set;if(r.walkAtRules(n=>{n.name==="apply"&&i.add(n),n.name==="import"&&(n.params==='"tailwindcss/base"'||n.params==="'tailwindcss/base'"?(n.name="tailwind",n.params="base"):n.params==='"tailwindcss/components"'||n.params==="'tailwindcss/components'"?(n.name="tailwind",n.params="components"):n.params==='"tailwindcss/utilities"'||n.params==="'tailwindcss/utilities'"?(n.name="tailwind",n.params="utilities"):(n.params==='"tailwindcss/screens"'||n.params==="'tailwindcss/screens'"||n.params==='"tailwindcss/variants"'||n.params==="'tailwindcss/variants'")&&(n.name="tailwind",n.params="variants")),n.name==="tailwind"&&(n.params==="screens"&&(n.params="variants"),e.add(n.params)),["layer","responsive","variants"].includes(n.name)&&(["responsive","variants"].includes(n.name)&&G.warn(`${n.name}-at-rule-deprecated`,[`The \`@${n.name}\` directive has been deprecated in Tailwind CSS v3.0.`,"Use `@layer utilities` or `@layer components` instead.","https://tailwindcss.com/docs/upgrade-guide#replace-variants-with-layer"]),t.add(n))}),!e.has("base")||!e.has("components")||!e.has("utilities")){for(let n of t)if(n.name==="layer"&&["base","components","utilities"].includes(n.params)){if(!e.has(n.params))throw n.error(`\`@layer ${n.params}\` is used but no matching \`@tailwind ${n.params}\` directive is present.`)}else if(n.name==="responsive"){if(!e.has("utilities"))throw n.error("`@responsive` is used but `@tailwind utilities` is missing.")}else if(n.name==="variants"&&!e.has("utilities"))throw n.error("`@variants` is used but `@tailwind utilities` is missing.")}return{tailwindDirectives:e,applyDirectives:i}}var Og=P(()=>{u();Be()});function Qt(r,e=void 0,t=void 0){return r.map(i=>{let n=i.clone();return t!==void 0&&(n.raws.tailwind={...n.raws.tailwind,...t}),e!==void 0&&Tg(n,s=>{if(s.raws.tailwind?.preserveSource===!0&&s.source)return!1;s.source=e}),n})}function Tg(r,e){e(r)!==!1&&r.each?.(t=>Tg(t,e))}var Rg=P(()=>{u()});function Tl(r){return r=Array.isArray(r)?r:[r],r=r.map(e=>e instanceof RegExp?e.source:e),r.join("")}function Ne(r){return new RegExp(Tl(r),"g")}function qt(r){return`(?:${r.map(Tl).join("|")})`}function Rl(r){return`(?:${Tl(r)})?`}function Ig(r){return r&&x2.test(r)?r.replace(Pg,"\\$&"):r||""}var Pg,x2,Dg=P(()=>{u();Pg=/[\\^$.*+?()[\]{}|]/g,x2=RegExp(Pg.source)});function qg(r){let e=Array.from(k2(r));return t=>{let i=[];for(let n of e)for(let s of t.match(n)??[])i.push(C2(s));for(let n of i.slice()){let s=ve(n,".");for(let a=0;a=s.length-1){i.push(o);continue}let l=Number(s[a+1]);isNaN(l)?i.push(o):a++}}return i}}function*k2(r){let e=r.tailwindConfig.separator,t=r.tailwindConfig.prefix!==""?Rl(Ne([/-?/,Ig(r.tailwindConfig.prefix)])):"",i=qt([/\[[^\s:'"`]+:[^\s\[\]]+\]/,/\[[^\s:'"`\]]+:[^\s]+?\[[^\s]+\][^\s]+?\]/,Ne([qt([/-?(?:\w+)/,/@(?:\w+)/]),Rl(qt([Ne([qt([/-(?:\w+-)*\['[^\s]+'\]/,/-(?:\w+-)*\["[^\s]+"\]/,/-(?:\w+-)*\[`[^\s]+`\]/,/-(?:\w+-)*\[(?:[^\s\[\]]+\[[^\s\[\]]+\])*[^\s:\[\]]+\]/]),/(?![{([]])/,/(?:\/[^\s'"`\\><$]*)?/]),Ne([qt([/-(?:\w+-)*\['[^\s]+'\]/,/-(?:\w+-)*\["[^\s]+"\]/,/-(?:\w+-)*\[`[^\s]+`\]/,/-(?:\w+-)*\[(?:[^\s\[\]]+\[[^\s\[\]]+\])*[^\s\[\]]+\]/]),/(?![{([]])/,/(?:\/[^\s'"`\\$]*)?/]),/[-\/][^\s'"`\\$={><]*/]))])]),n=[qt([Ne([/@\[[^\s"'`]+\](\/[^\s"'`]+)?/,e]),Ne([/([^\s"'`\[\\]+-)?\[[^\s"'`]+\]\/[\w_-]+/,e]),Ne([/([^\s"'`\[\\]+-)?\[[^\s"'`]+\]/,e]),Ne([/[^\s"'`\[\\]+/,e])]),qt([Ne([/([^\s"'`\[\\]+-)?\[[^\s`]+\]\/[\w_-]+/,e]),Ne([/([^\s"'`\[\\]+-)?\[[^\s`]+\]/,e]),Ne([/[^\s`\[\\]+/,e])])];for(let s of n)yield Ne(["((?=((",s,")+))\\2)?",/!?/,t,i]);yield/[^<>"'`\s.(){}[\]#=%$][^<>"'`\s(){}[\]#=%$]*[^<>"'`\s.(){}[\]#=%:$]/g}function C2(r){if(!r.includes("-["))return r;let e=0,t=[],i=r.matchAll(S2);i=Array.from(i).flatMap(n=>{let[,...s]=n;return s.map((a,o)=>Object.assign([],n,{index:n.index+o,0:a}))});for(let n of i){let s=n[0],a=t[t.length-1];if(s===a?t.pop():(s==="'"||s==='"'||s==="`")&&t.push(s),!a){if(s==="["){e++;continue}else if(s==="]"){e--;continue}if(e<0)return r.substring(0,n.index-1);if(e===0&&!A2.test(s))return r.substring(0,n.index)}}return r}var S2,A2,$g=P(()=>{u();Dg();zt();S2=/([\[\]'"`])([^\[\]'"`])?/g,A2=/[^"'`\s<>\]]+/});function _2(r,e){let t=r.tailwindConfig.content.extract;return t[e]||t.DEFAULT||Mg[e]||Mg.DEFAULT(r)}function E2(r,e){let t=r.content.transform;return t[e]||t.DEFAULT||Ng[e]||Ng.DEFAULT}function O2(r,e,t,i){Li.has(e)||Li.set(e,new Lg.default({maxSize:25e3}));for(let n of r.split(` +`))if(n=n.trim(),!i.has(n))if(i.add(n),Li.get(e).has(n))for(let s of Li.get(e).get(n))t.add(s);else{let s=e(n).filter(o=>o!=="!*"),a=new Set(s);for(let o of a)t.add(o);Li.get(e).set(n,a)}}function T2(r,e){let t=e.offsets.sort(r),i={base:new Set,defaults:new Set,components:new Set,utilities:new Set,variants:new Set};for(let[n,s]of t)i[n.layer].add(s);return i}function Pl(r){return async e=>{let t={base:null,components:null,utilities:null,variants:null};if(e.walkAtRules(y=>{y.name==="tailwind"&&Object.keys(t).includes(y.params)&&(t[y.params]=y)}),Object.values(t).every(y=>y===null))return e;let i=new Set([...r.candidates??[],gt]),n=new Set;bt.DEBUG&&console.time("Reading changed files");let s=[];for(let y of r.changedContent){let w=E2(r.tailwindConfig,y.extension),k=_2(r,y.extension);s.push([y,{transformer:w,extractor:k}])}let a=500;for(let y=0;y{S=k?await be.promises.readFile(k,"utf8"):S,O2(E(S),T,i,n)}))}bt.DEBUG&&console.timeEnd("Reading changed files");let o=r.classCache.size;bt.DEBUG&&console.time("Generate rules"),bt.DEBUG&&console.time("Sorting candidates");let l=new Set([...i].sort((y,w)=>y===w?0:y{let w=y.raws.tailwind?.parentLayer;return w==="components"?t.components!==null:w==="utilities"?t.utilities!==null:!0});t.variants?(t.variants.before(Qt(b,t.variants.source,{layer:"variants"})),t.variants.remove()):b.length>0&&e.append(Qt(b,e.source,{layer:"variants"})),e.source.end=e.source.end??e.source.start;let v=b.some(y=>y.raws.tailwind?.parentLayer==="utilities");t.utilities&&p.size===0&&!v&&G.warn("content-problems",["No utility classes were detected in your source files. If this is unexpected, double-check the `content` option in your Tailwind CSS configuration.","https://tailwindcss.com/docs/content-configuration"]),bt.DEBUG&&(console.log("Potential classes: ",i.size),console.log("Active contexts: ",es.size)),r.changedContent=[],e.walkAtRules("layer",y=>{Object.keys(t).includes(y.params)&&y.remove()})}}var Lg,bt,Mg,Ng,Li,Bg=P(()=>{u();ft();Lg=pe(Fs());It();os();Be();Rg();$g();bt=Ze,Mg={DEFAULT:qg},Ng={DEFAULT:r=>r,svelte:r=>r.replace(/(?:^|\s)class:/g," ")};Li=new WeakMap});function xs(r){let e=new Map;ee.root({nodes:[r.clone()]}).walkRules(s=>{(0,vs.default)(a=>{a.walkClasses(o=>{let l=o.parent.toString(),c=e.get(l);c||e.set(l,c=new Set),c.add(o.value)})}).processSync(s.selector)});let i=Array.from(e.values(),s=>Array.from(s)),n=i.flat();return Object.assign(n,{groups:i})}function Il(r){return R2.astSync(r)}function Fg(r,e){let t=new Set;for(let i of r)t.add(i.split(e).pop());return Array.from(t)}function jg(r,e){let t=r.tailwindConfig.prefix;return typeof t=="function"?t(e):t+e}function*zg(r){for(yield r;r.parent;)yield r.parent,r=r.parent}function P2(r,e={}){let t=r.nodes;r.nodes=[];let i=r.clone(e);return r.nodes=t,i}function I2(r){for(let e of zg(r))if(r!==e){if(e.type==="root")break;r=P2(e,{nodes:[r]})}return r}function D2(r,e){let t=new Map;return r.walkRules(i=>{for(let a of zg(i))if(a.raws.tailwind?.layer!==void 0)return;let n=I2(i),s=e.offsets.create("user");for(let a of xs(i)){let o=t.get(a)||[];t.set(a,o),o.push([{layer:"user",sort:s,important:!1},n])}}),t}function q2(r,e){for(let t of r){if(e.notClassCache.has(t)||e.applyClassCache.has(t))continue;if(e.classCache.has(t)){e.applyClassCache.set(t,e.classCache.get(t).map(([n,s])=>[n,s.clone()]));continue}let i=Array.from(Yo(t,e));if(i.length===0){e.notClassCache.add(t);continue}e.applyClassCache.set(t,i)}return e.applyClassCache}function $2(r){let e=null;return{get:t=>(e=e||r(),e.get(t)),has:t=>(e=e||r(),e.has(t))}}function L2(r){return{get:e=>r.flatMap(t=>t.get(e)||[]),has:e=>r.some(t=>t.has(e))}}function Ug(r){let e=r.split(/[\s\t\n]+/g);return e[e.length-1]==="!important"?[e.slice(0,-1),!0]:[e,!1]}function Vg(r,e,t){let i=new Set,n=[];if(r.walkAtRules("apply",l=>{let[c]=Ug(l.params);for(let f of c)i.add(f);n.push(l)}),n.length===0)return;let s=L2([t,q2(i,e)]);function a(l,c,f){let d=Il(l),p=Il(c),b=Il(`.${Te(f)}`).nodes[0].nodes[0];return d.each(v=>{let y=new Set;p.each(w=>{let k=!1;w=w.clone(),w.walkClasses(S=>{S.value===b.value&&(k||(S.replaceWith(...v.nodes.map(E=>E.clone())),y.add(w),k=!0))})});for(let w of y){let k=[[]];for(let S of w.nodes)S.type==="combinator"?(k.push(S),k.push([])):k[k.length-1].push(S);w.nodes=[];for(let S of k)Array.isArray(S)&&S.sort((E,T)=>E.type==="tag"&&T.type==="class"?-1:E.type==="class"&&T.type==="tag"?1:E.type==="class"&&T.type==="pseudo"&&T.value.startsWith("::")?-1:E.type==="pseudo"&&E.value.startsWith("::")&&T.type==="class"?1:0),w.nodes=w.nodes.concat(S)}v.replaceWith(...y)}),d.toString()}let o=new Map;for(let l of n){let[c]=o.get(l.parent)||[[],l.source];o.set(l.parent,[c,l.source]);let[f,d]=Ug(l.params);if(l.parent.type==="atrule"){if(l.parent.name==="screen"){let p=l.parent.params;throw l.error(`@apply is not supported within nested at-rules like @screen. We suggest you write this as @apply ${f.map(h=>`${p}:${h}`).join(" ")} instead.`)}throw l.error(`@apply is not supported within nested at-rules like @${l.parent.name}. You can fix this by un-nesting @${l.parent.name}.`)}for(let p of f){if([jg(e,"group"),jg(e,"peer")].includes(p))throw l.error(`@apply should not be used with the '${p}' utility`);if(!s.has(p))throw l.error(`The \`${p}\` class does not exist. If \`${p}\` is a custom class, make sure it is defined within a \`@layer\` directive.`);let h=s.get(p);for(let[,b]of h)b.type!=="atrule"&&b.walkRules(()=>{throw l.error([`The \`${p}\` class cannot be used with \`@apply\` because \`@apply\` does not currently support nested CSS.`,"Rewrite the selector without nesting or configure the `tailwindcss/nesting` plugin:","https://tailwindcss.com/docs/using-with-preprocessors#nesting"].join(` +`))});c.push([p,d,h])}}for(let[l,[c,f]]of o){let d=[];for(let[h,b,v]of c){let y=[h,...Fg([h],e.tailwindConfig.separator)];for(let[w,k]of v){let S=xs(l),E=xs(k);if(E=E.groups.filter(R=>R.some(F=>y.includes(F))).flat(),E=E.concat(Fg(E,e.tailwindConfig.separator)),S.some(R=>E.includes(R)))throw k.error(`You cannot \`@apply\` the \`${h}\` utility here because it creates a circular dependency.`);let B=ee.root({nodes:[k.clone()]});B.walk(R=>{R.source=f}),(k.type!=="atrule"||k.type==="atrule"&&k.name!=="keyframes")&&B.walkRules(R=>{if(!xs(R).some(U=>U===h)){R.remove();return}let F=typeof e.tailwindConfig.important=="string"?e.tailwindConfig.important:null,_=l.raws.tailwind!==void 0&&F&&l.selector.indexOf(F)===0?l.selector.slice(F.length):l.selector;_===""&&(_=l.selector),R.selector=a(_,R.selector,h),F&&_!==l.selector&&(R.selector=is(R.selector,F)),R.walkDecls(U=>{U.important=w.important||b});let Q=(0,vs.default)().astSync(R.selector);Q.each(U=>pr(U)),R.selector=Q.toString()}),!!B.nodes[0]&&d.push([w.sort,B.nodes[0]])}}let p=e.offsets.sort(d).map(h=>h[1]);l.after(p)}for(let l of n)l.parent.nodes.length>1?l.remove():l.parent.remove();Vg(r,e,t)}function Dl(r){return e=>{let t=$2(()=>D2(e,r));Vg(e,r,t)}}var vs,R2,Hg=P(()=>{u();Ot();vs=pe(it());os();fr();Wo();ts();R2=(0,vs.default)()});var Wg=x((nq,ks)=>{u();(function(){"use strict";function r(i,n,s){if(!i)return null;r.caseSensitive||(i=i.toLowerCase());var a=r.threshold===null?null:r.threshold*i.length,o=r.thresholdAbsolute,l;a!==null&&o!==null?l=Math.min(a,o):a!==null?l=a:o!==null?l=o:l=null;var c,f,d,p,h,b=n.length;for(h=0;hs)return s+1;var l=[],c,f,d,p,h;for(c=0;c<=o;c++)l[c]=[c];for(f=0;f<=a;f++)l[0][f]=f;for(c=1;c<=o;c++){for(d=e,p=1,c>s&&(p=c-s),h=o+1,h>s+c&&(h=s+c),f=1;f<=a;f++)fh?l[c][f]=s+1:n.charAt(c-1)===i.charAt(f-1)?l[c][f]=l[c-1][f-1]:l[c][f]=Math.min(l[c-1][f-1]+1,Math.min(l[c][f-1]+1,l[c-1][f]+1)),l[c][f]s)return s+1}return l[o][a]}})()});var Qg=x((sq,Gg)=>{u();var ql="(".charCodeAt(0),$l=")".charCodeAt(0),Ss="'".charCodeAt(0),Ll='"'.charCodeAt(0),Ml="\\".charCodeAt(0),yr="/".charCodeAt(0),Nl=",".charCodeAt(0),Bl=":".charCodeAt(0),As="*".charCodeAt(0),M2="u".charCodeAt(0),N2="U".charCodeAt(0),B2="+".charCodeAt(0),F2=/^[a-f0-9?-]+$/i;Gg.exports=function(r){for(var e=[],t=r,i,n,s,a,o,l,c,f,d=0,p=t.charCodeAt(d),h=t.length,b=[{nodes:e}],v=0,y,w="",k="",S="";d{u();Yg.exports=function r(e,t,i){var n,s,a,o;for(n=0,s=e.length;n{u();function Xg(r,e){var t=r.type,i=r.value,n,s;return e&&(s=e(r))!==void 0?s:t==="word"||t==="space"?i:t==="string"?(n=r.quote||"",n+i+(r.unclosed?"":n)):t==="comment"?"/*"+i+(r.unclosed?"":"*/"):t==="div"?(r.before||"")+i+(r.after||""):Array.isArray(r.nodes)?(n=Zg(r.nodes,e),t!=="function"?n:i+"("+(r.before||"")+n+(r.after||"")+(r.unclosed?"":")")):i}function Zg(r,e){var t,i;if(Array.isArray(r)){for(t="",i=r.length-1;~i;i-=1)t=Xg(r[i],e)+t;return t}return Xg(r,e)}Jg.exports=Zg});var ry=x((lq,ty)=>{u();var Cs="-".charCodeAt(0),_s="+".charCodeAt(0),Fl=".".charCodeAt(0),j2="e".charCodeAt(0),z2="E".charCodeAt(0);function U2(r){var e=r.charCodeAt(0),t;if(e===_s||e===Cs){if(t=r.charCodeAt(1),t>=48&&t<=57)return!0;var i=r.charCodeAt(2);return t===Fl&&i>=48&&i<=57}return e===Fl?(t=r.charCodeAt(1),t>=48&&t<=57):e>=48&&e<=57}ty.exports=function(r){var e=0,t=r.length,i,n,s;if(t===0||!U2(r))return!1;for(i=r.charCodeAt(e),(i===_s||i===Cs)&&e++;e57));)e+=1;if(i=r.charCodeAt(e),n=r.charCodeAt(e+1),i===Fl&&n>=48&&n<=57)for(e+=2;e57));)e+=1;if(i=r.charCodeAt(e),n=r.charCodeAt(e+1),s=r.charCodeAt(e+2),(i===j2||i===z2)&&(n>=48&&n<=57||(n===_s||n===Cs)&&s>=48&&s<=57))for(e+=n===_s||n===Cs?3:2;e57));)e+=1;return{number:r.slice(0,e),unit:r.slice(e)}}});var ay=x((uq,sy)=>{u();var V2=Qg(),iy=Kg(),ny=ey();function $t(r){return this instanceof $t?(this.nodes=V2(r),this):new $t(r)}$t.prototype.toString=function(){return Array.isArray(this.nodes)?ny(this.nodes):""};$t.prototype.walk=function(r,e){return iy(this.nodes,r,e),this};$t.unit=ry();$t.walk=iy;$t.stringify=ny;sy.exports=$t});function zl(r){return typeof r=="object"&&r!==null}function H2(r,e){let t=kt(e);do if(t.pop(),(0,Mi.default)(r,t)!==void 0)break;while(t.length);return t.length?t:void 0}function br(r){return typeof r=="string"?r:r.reduce((e,t,i)=>t.includes(".")?`${e}[${t}]`:i===0?t:`${e}.${t}`,"")}function ly(r){return r.map(e=>`'${e}'`).join(", ")}function uy(r){return ly(Object.keys(r))}function Ul(r,e,t,i={}){let n=Array.isArray(e)?br(e):e.replace(/^['"]+|['"]+$/g,""),s=Array.isArray(e)?e:kt(n),a=(0,Mi.default)(r.theme,s,t);if(a===void 0){let l=`'${n}' does not exist in your theme config.`,c=s.slice(0,-1),f=(0,Mi.default)(r.theme,c);if(zl(f)){let d=Object.keys(f).filter(h=>Ul(r,[...c,h]).isValid),p=(0,oy.default)(s[s.length-1],d);p?l+=` Did you mean '${br([...c,p])}'?`:d.length>0&&(l+=` '${br(c)}' has the following valid keys: ${ly(d)}`)}else{let d=H2(r.theme,n);if(d){let p=(0,Mi.default)(r.theme,d);zl(p)?l+=` '${br(d)}' has the following keys: ${uy(p)}`:l+=` '${br(d)}' is not an object.`}else l+=` Your theme has the following top-level keys: ${uy(r.theme)}`}return{isValid:!1,error:l}}if(!(typeof a=="string"||typeof a=="number"||typeof a=="function"||a instanceof String||a instanceof Number||Array.isArray(a))){let l=`'${n}' was found but does not resolve to a string.`;if(zl(a)){let c=Object.keys(a).filter(f=>Ul(r,[...s,f]).isValid);c.length&&(l+=` Did you mean something like '${br([...s,c[0]])}'?`)}return{isValid:!1,error:l}}let[o]=s;return{isValid:!0,value:mt(o)(a,i)}}function W2(r,e,t){e=e.map(n=>fy(r,n,t));let i=[""];for(let n of e)n.type==="div"&&n.value===","?i.push(""):i[i.length-1]+=jl.default.stringify(n);return i}function fy(r,e,t){if(e.type==="function"&&t[e.value]!==void 0){let i=W2(r,e.nodes,t);e.type="word",e.value=t[e.value](r,...i)}return e}function G2(r,e,t){return Object.keys(t).some(n=>e.includes(`${n}(`))?(0,jl.default)(e).walk(n=>{fy(r,n,t)}).toString():e}function*Y2(r){r=r.replace(/^['"]+|['"]+$/g,"");let e=r.match(/^([^\s]+)(?![^\[]*\])(?:\s*\/\s*([^\/\s]+))$/),t;yield[r,void 0],e&&(r=e[1],t=e[2],yield[r,t])}function K2(r,e,t){let i=Array.from(Y2(e)).map(([n,s])=>Object.assign(Ul(r,n,t,{opacityValue:s}),{resolvedPath:n,alpha:s}));return i.find(n=>n.isValid)??i[0]}function cy(r){let e=r.tailwindConfig,t={theme:(i,n,...s)=>{let{isValid:a,value:o,error:l,alpha:c}=K2(e,n,s.length?s:void 0);if(!a){let p=i.parent,h=p?.raws.tailwind?.candidate;if(p&&h!==void 0){r.markInvalidUtilityNode(p),p.remove(),G.warn("invalid-theme-key-in-class",[`The utility \`${h}\` contains an invalid theme value and was not generated.`]);return}throw i.error(l)}let f=Xt(o),d=f!==void 0&&typeof f=="function";return(c!==void 0||d)&&(c===void 0&&(c=1),o=Je(f,c,f)),o},screen:(i,n)=>{n=n.replace(/^['"]+/g,"").replace(/['"]+$/g,"");let a=Rt(e.theme.screens).find(({name:o})=>o===n);if(!a)throw i.error(`The '${n}' screen does not exist in your theme.`);return Tt(a)}};return i=>{i.walk(n=>{let s=Q2[n.type];s!==void 0&&(n[s]=G2(n,n[s],t))})}}var Mi,oy,jl,Q2,py=P(()=>{u();Mi=pe(Ra()),oy=pe(Wg());Ci();jl=pe(ay());Zn();Yn();Yi();Lr();Fr();Be();Q2={atrule:"params",decl:"value"}});function dy({tailwindConfig:{theme:r}}){return function(e){e.walkAtRules("screen",t=>{let i=t.params,s=Rt(r.screens).find(({name:a})=>a===i);if(!s)throw t.error(`No \`${i}\` screen found.`);t.name="media",t.params=Tt(s)})}}var hy=P(()=>{u();Zn();Yn()});function X2(r){let e=r.filter(o=>o.type!=="pseudo"||o.nodes.length>0?!0:o.value.startsWith("::")||[":before",":after",":first-line",":first-letter"].includes(o.value)).reverse(),t=new Set(["tag","class","id","attribute"]),i=e.findIndex(o=>t.has(o.type));if(i===-1)return e.reverse().join("").trim();let n=e[i],s=my[n.type]?my[n.type](n):n;e=e.slice(0,i);let a=e.findIndex(o=>o.type==="combinator"&&o.value===">");return a!==-1&&(e.splice(0,a),e.unshift(Es.default.universal())),[s,...e.reverse()].join("").trim()}function J2(r){return Vl.has(r)||Vl.set(r,Z2.transformSync(r)),Vl.get(r)}function Hl({tailwindConfig:r}){return e=>{let t=new Map,i=new Set;if(e.walkAtRules("defaults",n=>{if(n.nodes&&n.nodes.length>0){i.add(n);return}let s=n.params;t.has(s)||t.set(s,new Set),t.get(s).add(n.parent),n.remove()}),we(r,"optimizeUniversalDefaults"))for(let n of i){let s=new Map,a=t.get(n.params)??[];for(let o of a)for(let l of J2(o.selector)){let c=l.includes(":-")||l.includes("::-")||l.includes(":has")?l:"__DEFAULT__",f=s.get(c)??new Set;s.set(c,f),f.add(l)}if(s.size===0){n.remove();continue}for(let[,o]of s){let l=ee.rule({source:n.source});l.selectors=[...o],l.append(n.nodes.map(c=>c.clone())),n.before(l)}n.remove()}else if(i.size){let n=ee.rule({selectors:["*","::before","::after"]});for(let a of i)n.append(a.nodes),n.parent||a.before(n),n.source||(n.source=a.source),a.remove();let s=n.clone({selectors:["::backdrop"]});n.after(s)}}}var Es,my,Z2,Vl,gy=P(()=>{u();Ot();Es=pe(it());ct();my={id(r){return Es.default.attribute({attribute:"id",operator:"=",value:r.value,quoteMark:'"'})}};Z2=(0,Es.default)(r=>r.map(e=>{let t=e.split(i=>i.type==="combinator"&&i.value===" ").pop();return X2(t)})),Vl=new Map});function Wl(){function r(e){let t=null;e.each(i=>{if(!eO.has(i.type)){t=null;return}if(t===null){t=i;return}let n=yy[i.type];i.type==="atrule"&&i.name==="font-face"?t=i:n.every(s=>(i[s]??"").replace(/\s+/g," ")===(t[s]??"").replace(/\s+/g," "))?(i.nodes&&t.append(i.nodes),i.remove()):t=i}),e.each(i=>{i.type==="atrule"&&r(i)})}return e=>{r(e)}}var yy,eO,by=P(()=>{u();yy={atrule:["name","params"],rule:["selector"]},eO=new Set(Object.keys(yy))});function Gl(){return r=>{r.walkRules(e=>{let t=new Map,i=new Set([]),n=new Map;e.walkDecls(s=>{if(s.parent===e){if(t.has(s.prop)){if(t.get(s.prop).value===s.value){i.add(t.get(s.prop)),t.set(s.prop,s);return}n.has(s.prop)||n.set(s.prop,new Set),n.get(s.prop).add(t.get(s.prop)),n.get(s.prop).add(s)}t.set(s.prop,s)}});for(let s of i)s.remove();for(let s of n.values()){let a=new Map;for(let o of s){let l=rO(o.value);l!==null&&(a.has(l)||a.set(l,new Set),a.get(l).add(o))}for(let o of a.values()){let l=Array.from(o).slice(0,-1);for(let c of l)c.remove()}}})}}function rO(r){let e=/^-?\d*.?\d+([\w%]+)?$/g.exec(r);return e?e[1]??tO:null}var tO,wy=P(()=>{u();tO=Symbol("unitless-number")});function iO(r){if(!r.walkAtRules)return;let e=new Set;if(r.walkAtRules("apply",t=>{e.add(t.parent)}),e.size!==0)for(let t of e){let i=[],n=[];for(let s of t.nodes)s.type==="atrule"&&s.name==="apply"?(n.length>0&&(i.push(n),n=[]),i.push([s])):n.push(s);if(n.length>0&&i.push(n),i.length!==1){for(let s of[...i].reverse()){let a=t.clone({nodes:[]});a.append(s),t.after(a)}t.remove()}}}function Os(){return r=>{iO(r)}}var vy=P(()=>{u()});function Ts(r){return async function(e,t){let{tailwindDirectives:i,applyDirectives:n}=Ol(e);Os()(e,t);let s=r({tailwindDirectives:i,applyDirectives:n,registerDependency(a){t.messages.push({plugin:"tailwindcss",parent:t.opts.from,...a})},createContext(a,o){return il(a,o,e)}})(e,t);if(s.tailwindConfig.separator==="-")throw new Error("The '-' character cannot be used as a custom separator in JIT mode due to parsing ambiguity. Please use another character like '_' instead.");Rf(s.tailwindConfig),await Pl(s)(e,t),Os()(e,t),Dl(s)(e,t),cy(s)(e,t),dy(s)(e,t),Hl(s)(e,t),Wl(s)(e,t),Gl(s)(e,t)}}var xy=P(()=>{u();Og();Bg();Hg();py();hy();gy();by();wy();vy();Oi();ct()});function ky(r,e){let t=null,i=null;return r.walkAtRules("config",n=>{if(i=n.source?.input.file??e.opts.from??null,i===null)throw n.error("The `@config` directive cannot be used without setting `from` in your PostCSS config.");if(t)throw n.error("Only one `@config` directive is allowed per file.");let s=n.params.match(/(['"])(.*?)\1/);if(!s)throw n.error("A path is required when using the `@config` directive.");let a=s[2];if(me.isAbsolute(a))throw n.error("The `@config` directive cannot be used with an absolute path.");if(t=me.resolve(me.dirname(i),a),!be.existsSync(t))throw n.error(`The config file at "${a}" does not exist. Make sure the path is correct and the file exists.`);n.remove()}),t||null}var Sy=P(()=>{u();ft();et()});var Ay=x((Wq,Ql)=>{u();Eg();xy();It();Sy();Ql.exports=function(e){return{postcssPlugin:"tailwindcss",plugins:[Ze.DEBUG&&function(t){return console.log(` +`),console.time("JIT TOTAL"),t},async function(t,i){e=ky(t,i)??e;let n=El(e);if(t.type==="document"){let s=t.nodes.filter(a=>a.type==="root");for(let a of s)a.type==="root"&&await Ts(n)(a,i);return}await Ts(n)(t,i)},Ze.DEBUG&&function(t){return console.timeEnd("JIT TOTAL"),console.log(` +`),t}].filter(Boolean)}};Ql.exports.postcss=!0});var _y=x((Gq,Cy)=>{u();Cy.exports=Ay()});var Yl=x((Qq,Ey)=>{u();Ey.exports=()=>["and_chr 114","and_uc 15.5","chrome 114","chrome 113","chrome 109","edge 114","firefox 114","ios_saf 16.5","ios_saf 16.4","ios_saf 16.3","ios_saf 16.1","opera 99","safari 16.5","samsung 21"]});var Rs={};Ge(Rs,{agents:()=>nO,feature:()=>sO});function sO(){return{status:"cr",title:"CSS Feature Queries",stats:{ie:{"6":"n","7":"n","8":"n","9":"n","10":"n","11":"n","5.5":"n"},edge:{"12":"y","13":"y","14":"y","15":"y","16":"y","17":"y","18":"y","79":"y","80":"y","81":"y","83":"y","84":"y","85":"y","86":"y","87":"y","88":"y","89":"y","90":"y","91":"y","92":"y","93":"y","94":"y","95":"y","96":"y","97":"y","98":"y","99":"y","100":"y","101":"y","102":"y","103":"y","104":"y","105":"y","106":"y","107":"y","108":"y","109":"y","110":"y","111":"y","112":"y","113":"y","114":"y"},firefox:{"2":"n","3":"n","4":"n","5":"n","6":"n","7":"n","8":"n","9":"n","10":"n","11":"n","12":"n","13":"n","14":"n","15":"n","16":"n","17":"n","18":"n","19":"n","20":"n","21":"n","22":"y","23":"y","24":"y","25":"y","26":"y","27":"y","28":"y","29":"y","30":"y","31":"y","32":"y","33":"y","34":"y","35":"y","36":"y","37":"y","38":"y","39":"y","40":"y","41":"y","42":"y","43":"y","44":"y","45":"y","46":"y","47":"y","48":"y","49":"y","50":"y","51":"y","52":"y","53":"y","54":"y","55":"y","56":"y","57":"y","58":"y","59":"y","60":"y","61":"y","62":"y","63":"y","64":"y","65":"y","66":"y","67":"y","68":"y","69":"y","70":"y","71":"y","72":"y","73":"y","74":"y","75":"y","76":"y","77":"y","78":"y","79":"y","80":"y","81":"y","82":"y","83":"y","84":"y","85":"y","86":"y","87":"y","88":"y","89":"y","90":"y","91":"y","92":"y","93":"y","94":"y","95":"y","96":"y","97":"y","98":"y","99":"y","100":"y","101":"y","102":"y","103":"y","104":"y","105":"y","106":"y","107":"y","108":"y","109":"y","110":"y","111":"y","112":"y","113":"y","114":"y","115":"y","116":"y","117":"y","3.5":"n","3.6":"n"},chrome:{"4":"n","5":"n","6":"n","7":"n","8":"n","9":"n","10":"n","11":"n","12":"n","13":"n","14":"n","15":"n","16":"n","17":"n","18":"n","19":"n","20":"n","21":"n","22":"n","23":"n","24":"n","25":"n","26":"n","27":"n","28":"y","29":"y","30":"y","31":"y","32":"y","33":"y","34":"y","35":"y","36":"y","37":"y","38":"y","39":"y","40":"y","41":"y","42":"y","43":"y","44":"y","45":"y","46":"y","47":"y","48":"y","49":"y","50":"y","51":"y","52":"y","53":"y","54":"y","55":"y","56":"y","57":"y","58":"y","59":"y","60":"y","61":"y","62":"y","63":"y","64":"y","65":"y","66":"y","67":"y","68":"y","69":"y","70":"y","71":"y","72":"y","73":"y","74":"y","75":"y","76":"y","77":"y","78":"y","79":"y","80":"y","81":"y","83":"y","84":"y","85":"y","86":"y","87":"y","88":"y","89":"y","90":"y","91":"y","92":"y","93":"y","94":"y","95":"y","96":"y","97":"y","98":"y","99":"y","100":"y","101":"y","102":"y","103":"y","104":"y","105":"y","106":"y","107":"y","108":"y","109":"y","110":"y","111":"y","112":"y","113":"y","114":"y","115":"y","116":"y","117":"y"},safari:{"4":"n","5":"n","6":"n","7":"n","8":"n","9":"y","10":"y","11":"y","12":"y","13":"y","14":"y","15":"y","17":"y","9.1":"y","10.1":"y","11.1":"y","12.1":"y","13.1":"y","14.1":"y","15.1":"y","15.2-15.3":"y","15.4":"y","15.5":"y","15.6":"y","16.0":"y","16.1":"y","16.2":"y","16.3":"y","16.4":"y","16.5":"y","16.6":"y",TP:"y","3.1":"n","3.2":"n","5.1":"n","6.1":"n","7.1":"n"},opera:{"9":"n","11":"n","12":"n","15":"y","16":"y","17":"y","18":"y","19":"y","20":"y","21":"y","22":"y","23":"y","24":"y","25":"y","26":"y","27":"y","28":"y","29":"y","30":"y","31":"y","32":"y","33":"y","34":"y","35":"y","36":"y","37":"y","38":"y","39":"y","40":"y","41":"y","42":"y","43":"y","44":"y","45":"y","46":"y","47":"y","48":"y","49":"y","50":"y","51":"y","52":"y","53":"y","54":"y","55":"y","56":"y","57":"y","58":"y","60":"y","62":"y","63":"y","64":"y","65":"y","66":"y","67":"y","68":"y","69":"y","70":"y","71":"y","72":"y","73":"y","74":"y","75":"y","76":"y","77":"y","78":"y","79":"y","80":"y","81":"y","82":"y","83":"y","84":"y","85":"y","86":"y","87":"y","88":"y","89":"y","90":"y","91":"y","92":"y","93":"y","94":"y","95":"y","96":"y","97":"y","98":"y","99":"y","100":"y","12.1":"y","9.5-9.6":"n","10.0-10.1":"n","10.5":"n","10.6":"n","11.1":"n","11.5":"n","11.6":"n"},ios_saf:{"8":"n","17":"y","9.0-9.2":"y","9.3":"y","10.0-10.2":"y","10.3":"y","11.0-11.2":"y","11.3-11.4":"y","12.0-12.1":"y","12.2-12.5":"y","13.0-13.1":"y","13.2":"y","13.3":"y","13.4-13.7":"y","14.0-14.4":"y","14.5-14.8":"y","15.0-15.1":"y","15.2-15.3":"y","15.4":"y","15.5":"y","15.6":"y","16.0":"y","16.1":"y","16.2":"y","16.3":"y","16.4":"y","16.5":"y","16.6":"y","3.2":"n","4.0-4.1":"n","4.2-4.3":"n","5.0-5.1":"n","6.0-6.1":"n","7.0-7.1":"n","8.1-8.4":"n"},op_mini:{all:"y"},android:{"3":"n","4":"n","114":"y","4.4":"y","4.4.3-4.4.4":"y","2.1":"n","2.2":"n","2.3":"n","4.1":"n","4.2-4.3":"n"},bb:{"7":"n","10":"n"},op_mob:{"10":"n","11":"n","12":"n","73":"y","11.1":"n","11.5":"n","12.1":"n"},and_chr:{"114":"y"},and_ff:{"115":"y"},ie_mob:{"10":"n","11":"n"},and_uc:{"15.5":"y"},samsung:{"4":"y","20":"y","21":"y","5.0-5.4":"y","6.2-6.4":"y","7.2-7.4":"y","8.2":"y","9.2":"y","10.1":"y","11.1-11.2":"y","12.0":"y","13.0":"y","14.0":"y","15.0":"y","16.0":"y","17.0":"y","18.0":"y","19.0":"y"},and_qq:{"13.1":"y"},baidu:{"13.18":"y"},kaios:{"2.5":"y","3.0-3.1":"y"}}}}var nO,Ps=P(()=>{u();nO={ie:{prefix:"ms"},edge:{prefix:"webkit",prefix_exceptions:{"12":"ms","13":"ms","14":"ms","15":"ms","16":"ms","17":"ms","18":"ms"}},firefox:{prefix:"moz"},chrome:{prefix:"webkit"},safari:{prefix:"webkit"},opera:{prefix:"webkit",prefix_exceptions:{"9":"o","11":"o","12":"o","9.5-9.6":"o","10.0-10.1":"o","10.5":"o","10.6":"o","11.1":"o","11.5":"o","11.6":"o","12.1":"o"}},ios_saf:{prefix:"webkit"},op_mini:{prefix:"o"},android:{prefix:"webkit"},bb:{prefix:"webkit"},op_mob:{prefix:"o",prefix_exceptions:{"73":"webkit"}},and_chr:{prefix:"webkit"},and_ff:{prefix:"moz"},ie_mob:{prefix:"ms"},and_uc:{prefix:"webkit",prefix_exceptions:{"15.5":"webkit"}},samsung:{prefix:"webkit"},and_qq:{prefix:"webkit"},baidu:{prefix:"webkit"},kaios:{prefix:"moz"}}});var Oy=x(()=>{u()});var _e=x((Xq,Lt)=>{u();var{list:Kl}=$e();Lt.exports.error=function(r){let e=new Error(r);throw e.autoprefixer=!0,e};Lt.exports.uniq=function(r){return[...new Set(r)]};Lt.exports.removeNote=function(r){return r.includes(" ")?r.split(" ")[0]:r};Lt.exports.escapeRegexp=function(r){return r.replace(/[$()*+-.?[\\\]^{|}]/g,"\\$&")};Lt.exports.regexp=function(r,e=!0){return e&&(r=this.escapeRegexp(r)),new RegExp(`(^|[\\s,(])(${r}($|[\\s(,]))`,"gi")};Lt.exports.editList=function(r,e){let t=Kl.comma(r),i=e(t,[]);if(t===i)return r;let n=r.match(/,\s*/);return n=n?n[0]:", ",i.join(n)};Lt.exports.splitSelector=function(r){return Kl.comma(r).map(e=>Kl.space(e).map(t=>t.split(/(?=\.|#)/g)))}});var Mt=x((Zq,Py)=>{u();var aO=Yl(),Ty=(Ps(),Rs).agents,oO=_e(),Ry=class{static prefixes(){if(this.prefixesCache)return this.prefixesCache;this.prefixesCache=[];for(let e in Ty)this.prefixesCache.push(`-${Ty[e].prefix}-`);return this.prefixesCache=oO.uniq(this.prefixesCache).sort((e,t)=>t.length-e.length),this.prefixesCache}static withPrefix(e){return this.prefixesRegexp||(this.prefixesRegexp=new RegExp(this.prefixes().join("|"))),this.prefixesRegexp.test(e)}constructor(e,t,i,n){this.data=e,this.options=i||{},this.browserslistOpts=n||{},this.selected=this.parse(t)}parse(e){let t={};for(let i in this.browserslistOpts)t[i]=this.browserslistOpts[i];return t.path=this.options.from,aO(e,t)}prefix(e){let[t,i]=e.split(" "),n=this.data[t],s=n.prefix_exceptions&&n.prefix_exceptions[i];return s||(s=n.prefix),`-${s}-`}isSelected(e){return this.selected.includes(e)}};Py.exports=Ry});var Ni=x((Jq,Iy)=>{u();Iy.exports={prefix(r){let e=r.match(/^(-\w+-)/);return e?e[0]:""},unprefixed(r){return r.replace(/^-\w+-/,"")}}});var wr=x((e$,qy)=>{u();var lO=Mt(),Dy=Ni(),uO=_e();function Xl(r,e){let t=new r.constructor;for(let i of Object.keys(r||{})){let n=r[i];i==="parent"&&typeof n=="object"?e&&(t[i]=e):i==="source"||i===null?t[i]=n:Array.isArray(n)?t[i]=n.map(s=>Xl(s,t)):i!=="_autoprefixerPrefix"&&i!=="_autoprefixerValues"&&i!=="proxyCache"&&(typeof n=="object"&&n!==null&&(n=Xl(n,t)),t[i]=n)}return t}var Is=class{static hack(e){return this.hacks||(this.hacks={}),e.names.map(t=>(this.hacks[t]=e,this.hacks[t]))}static load(e,t,i){let n=this.hacks&&this.hacks[e];return n?new n(e,t,i):new this(e,t,i)}static clone(e,t){let i=Xl(e);for(let n in t)i[n]=t[n];return i}constructor(e,t,i){this.prefixes=t,this.name=e,this.all=i}parentPrefix(e){let t;return typeof e._autoprefixerPrefix!="undefined"?t=e._autoprefixerPrefix:e.type==="decl"&&e.prop[0]==="-"?t=Dy.prefix(e.prop):e.type==="root"?t=!1:e.type==="rule"&&e.selector.includes(":-")&&/:(-\w+-)/.test(e.selector)?t=e.selector.match(/:(-\w+-)/)[1]:e.type==="atrule"&&e.name[0]==="-"?t=Dy.prefix(e.name):t=this.parentPrefix(e.parent),lO.prefixes().includes(t)||(t=!1),e._autoprefixerPrefix=t,e._autoprefixerPrefix}process(e,t){if(!this.check(e))return;let i=this.parentPrefix(e),n=this.prefixes.filter(a=>!i||i===uO.removeNote(a)),s=[];for(let a of n)this.add(e,a,s.concat([a]),t)&&s.push(a);return s}clone(e,t){return Is.clone(e,t)}};qy.exports=Is});var j=x((t$,My)=>{u();var fO=wr(),cO=Mt(),$y=_e(),Ly=class extends fO{check(){return!0}prefixed(e,t){return t+e}normalize(e){return e}otherPrefixes(e,t){for(let i of cO.prefixes())if(i!==t&&e.includes(i))return!0;return!1}set(e,t){return e.prop=this.prefixed(e.prop,t),e}needCascade(e){return e._autoprefixerCascade||(e._autoprefixerCascade=this.all.options.cascade!==!1&&e.raw("before").includes(` +`)),e._autoprefixerCascade}maxPrefixed(e,t){if(t._autoprefixerMax)return t._autoprefixerMax;let i=0;for(let n of e)n=$y.removeNote(n),n.length>i&&(i=n.length);return t._autoprefixerMax=i,t._autoprefixerMax}calcBefore(e,t,i=""){let s=this.maxPrefixed(e,t)-$y.removeNote(i).length,a=t.raw("before");return s>0&&(a+=Array(s).fill(" ").join("")),a}restoreBefore(e){let t=e.raw("before").split(` +`),i=t[t.length-1];this.all.group(e).up(n=>{let s=n.raw("before").split(` +`),a=s[s.length-1];a.lengtha.prop===n.prop&&a.value===n.value)))return this.needCascade(e)&&(n.raws.before=this.calcBefore(i,e,t)),e.parent.insertBefore(e,n)}isAlready(e,t){let i=this.all.group(e).up(n=>n.prop===t);return i||(i=this.all.group(e).down(n=>n.prop===t)),i}add(e,t,i,n){let s=this.prefixed(e.prop,t);if(!(this.isAlready(e,s)||this.otherPrefixes(e.value,t)))return this.insert(e,t,i,n)}process(e,t){if(!this.needCascade(e)){super.process(e,t);return}let i=super.process(e,t);!i||!i.length||(this.restoreBefore(e),e.raws.before=this.calcBefore(i,e))}old(e,t){return[this.prefixed(e,t)]}};My.exports=Ly});var By=x((r$,Ny)=>{u();Ny.exports=function r(e){return{mul:t=>new r(e*t),div:t=>new r(e/t),simplify:()=>new r(e),toString:()=>e.toString()}}});var zy=x((i$,jy)=>{u();var pO=By(),dO=wr(),Zl=_e(),hO=/(min|max)-resolution\s*:\s*\d*\.?\d+(dppx|dpcm|dpi|x)/gi,mO=/(min|max)-resolution(\s*:\s*)(\d*\.?\d+)(dppx|dpcm|dpi|x)/i,Fy=class extends dO{prefixName(e,t){return e==="-moz-"?t+"--moz-device-pixel-ratio":e+t+"-device-pixel-ratio"}prefixQuery(e,t,i,n,s){return n=new pO(n),s==="dpi"?n=n.div(96):s==="dpcm"&&(n=n.mul(2.54).div(96)),n=n.simplify(),e==="-o-"&&(n=n.n+"/"+n.d),this.prefixName(e,t)+i+n}clean(e){if(!this.bad){this.bad=[];for(let t of this.prefixes)this.bad.push(this.prefixName(t,"min")),this.bad.push(this.prefixName(t,"max"))}e.params=Zl.editList(e.params,t=>t.filter(i=>this.bad.every(n=>!i.includes(n))))}process(e){let t=this.parentPrefix(e),i=t?[t]:this.prefixes;e.params=Zl.editList(e.params,(n,s)=>{for(let a of n){if(!a.includes("min-resolution")&&!a.includes("max-resolution")){s.push(a);continue}for(let o of i){let l=a.replace(hO,c=>{let f=c.match(mO);return this.prefixQuery(o,f[1],f[2],f[3],f[4])});s.push(l)}s.push(a)}return Zl.uniq(s)})}};jy.exports=Fy});var Vy=x((n$,Uy)=>{u();var Jl="(".charCodeAt(0),eu=")".charCodeAt(0),Ds="'".charCodeAt(0),tu='"'.charCodeAt(0),ru="\\".charCodeAt(0),vr="/".charCodeAt(0),iu=",".charCodeAt(0),nu=":".charCodeAt(0),qs="*".charCodeAt(0),gO="u".charCodeAt(0),yO="U".charCodeAt(0),bO="+".charCodeAt(0),wO=/^[a-f0-9?-]+$/i;Uy.exports=function(r){for(var e=[],t=r,i,n,s,a,o,l,c,f,d=0,p=t.charCodeAt(d),h=t.length,b=[{nodes:e}],v=0,y,w="",k="",S="";d{u();Hy.exports=function r(e,t,i){var n,s,a,o;for(n=0,s=e.length;n{u();function Gy(r,e){var t=r.type,i=r.value,n,s;return e&&(s=e(r))!==void 0?s:t==="word"||t==="space"?i:t==="string"?(n=r.quote||"",n+i+(r.unclosed?"":n)):t==="comment"?"/*"+i+(r.unclosed?"":"*/"):t==="div"?(r.before||"")+i+(r.after||""):Array.isArray(r.nodes)?(n=Qy(r.nodes,e),t!=="function"?n:i+"("+(r.before||"")+n+(r.after||"")+(r.unclosed?"":")")):i}function Qy(r,e){var t,i;if(Array.isArray(r)){for(t="",i=r.length-1;~i;i-=1)t=Gy(r[i],e)+t;return t}return Gy(r,e)}Yy.exports=Qy});var Zy=x((o$,Xy)=>{u();var $s="-".charCodeAt(0),Ls="+".charCodeAt(0),su=".".charCodeAt(0),vO="e".charCodeAt(0),xO="E".charCodeAt(0);function kO(r){var e=r.charCodeAt(0),t;if(e===Ls||e===$s){if(t=r.charCodeAt(1),t>=48&&t<=57)return!0;var i=r.charCodeAt(2);return t===su&&i>=48&&i<=57}return e===su?(t=r.charCodeAt(1),t>=48&&t<=57):e>=48&&e<=57}Xy.exports=function(r){var e=0,t=r.length,i,n,s;if(t===0||!kO(r))return!1;for(i=r.charCodeAt(e),(i===Ls||i===$s)&&e++;e57));)e+=1;if(i=r.charCodeAt(e),n=r.charCodeAt(e+1),i===su&&n>=48&&n<=57)for(e+=2;e57));)e+=1;if(i=r.charCodeAt(e),n=r.charCodeAt(e+1),s=r.charCodeAt(e+2),(i===vO||i===xO)&&(n>=48&&n<=57||(n===Ls||n===$s)&&s>=48&&s<=57))for(e+=n===Ls||n===$s?3:2;e57));)e+=1;return{number:r.slice(0,e),unit:r.slice(e)}}});var Ms=x((l$,tb)=>{u();var SO=Vy(),Jy=Wy(),eb=Ky();function Nt(r){return this instanceof Nt?(this.nodes=SO(r),this):new Nt(r)}Nt.prototype.toString=function(){return Array.isArray(this.nodes)?eb(this.nodes):""};Nt.prototype.walk=function(r,e){return Jy(this.nodes,r,e),this};Nt.unit=Zy();Nt.walk=Jy;Nt.stringify=eb;tb.exports=Nt});var ab=x((u$,sb)=>{u();var{list:AO}=$e(),rb=Ms(),CO=Mt(),ib=Ni(),nb=class{constructor(e){this.props=["transition","transition-property"],this.prefixes=e}add(e,t){let i,n,s=this.prefixes.add[e.prop],a=this.ruleVendorPrefixes(e),o=a||s&&s.prefixes||[],l=this.parse(e.value),c=l.map(h=>this.findProp(h)),f=[];if(c.some(h=>h[0]==="-"))return;for(let h of l){if(n=this.findProp(h),n[0]==="-")continue;let b=this.prefixes.add[n];if(!(!b||!b.prefixes))for(i of b.prefixes){if(a&&!a.some(y=>i.includes(y)))continue;let v=this.prefixes.prefixed(n,i);v!=="-ms-transform"&&!c.includes(v)&&(this.disabled(n,i)||f.push(this.clone(n,v,h)))}}l=l.concat(f);let d=this.stringify(l),p=this.stringify(this.cleanFromUnprefixed(l,"-webkit-"));if(o.includes("-webkit-")&&this.cloneBefore(e,`-webkit-${e.prop}`,p),this.cloneBefore(e,e.prop,p),o.includes("-o-")){let h=this.stringify(this.cleanFromUnprefixed(l,"-o-"));this.cloneBefore(e,`-o-${e.prop}`,h)}for(i of o)if(i!=="-webkit-"&&i!=="-o-"){let h=this.stringify(this.cleanOtherPrefixes(l,i));this.cloneBefore(e,i+e.prop,h)}d!==e.value&&!this.already(e,e.prop,d)&&(this.checkForWarning(t,e),e.cloneBefore(),e.value=d)}findProp(e){let t=e[0].value;if(/^\d/.test(t)){for(let[i,n]of e.entries())if(i!==0&&n.type==="word")return n.value}return t}already(e,t,i){return e.parent.some(n=>n.prop===t&&n.value===i)}cloneBefore(e,t,i){this.already(e,t,i)||e.cloneBefore({prop:t,value:i})}checkForWarning(e,t){if(t.prop!=="transition-property")return;let i=!1,n=!1;t.parent.each(s=>{if(s.type!=="decl"||s.prop.indexOf("transition-")!==0)return;let a=AO.comma(s.value);if(s.prop==="transition-property"){a.forEach(o=>{let l=this.prefixes.add[o];l&&l.prefixes&&l.prefixes.length>0&&(i=!0)});return}return n=n||a.length>1,!1}),i&&n&&t.warn(e,"Replace transition-property to transition, because Autoprefixer could not support any cases of transition-property and other transition-*")}remove(e){let t=this.parse(e.value);t=t.filter(a=>{let o=this.prefixes.remove[this.findProp(a)];return!o||!o.remove});let i=this.stringify(t);if(e.value===i)return;if(t.length===0){e.remove();return}let n=e.parent.some(a=>a.prop===e.prop&&a.value===i),s=e.parent.some(a=>a!==e&&a.prop===e.prop&&a.value.length>i.length);if(n||s){e.remove();return}e.value=i}parse(e){let t=rb(e),i=[],n=[];for(let s of t.nodes)n.push(s),s.type==="div"&&s.value===","&&(i.push(n),n=[]);return i.push(n),i.filter(s=>s.length>0)}stringify(e){if(e.length===0)return"";let t=[];for(let i of e)i[i.length-1].type!=="div"&&i.push(this.div(e)),t=t.concat(i);return t[0].type==="div"&&(t=t.slice(1)),t[t.length-1].type==="div"&&(t=t.slice(0,-2+1||void 0)),rb.stringify({nodes:t})}clone(e,t,i){let n=[],s=!1;for(let a of i)!s&&a.type==="word"&&a.value===e?(n.push({type:"word",value:t}),s=!0):n.push(a);return n}div(e){for(let t of e)for(let i of t)if(i.type==="div"&&i.value===",")return i;return{type:"div",value:",",after:" "}}cleanOtherPrefixes(e,t){return e.filter(i=>{let n=ib.prefix(this.findProp(i));return n===""||n===t})}cleanFromUnprefixed(e,t){let i=e.map(s=>this.findProp(s)).filter(s=>s.slice(0,t.length)===t).map(s=>this.prefixes.unprefixed(s)),n=[];for(let s of e){let a=this.findProp(s),o=ib.prefix(a);!i.includes(a)&&(o===t||o==="")&&n.push(s)}return n}disabled(e,t){let i=["order","justify-content","align-self","align-content"];if(e.includes("flex")||i.includes(e)){if(this.prefixes.options.flexbox===!1)return!0;if(this.prefixes.options.flexbox==="no-2009")return t.includes("2009")}}ruleVendorPrefixes(e){let{parent:t}=e;if(t.type!=="rule")return!1;if(!t.selector.includes(":-"))return!1;let i=CO.prefixes().filter(n=>t.selector.includes(":"+n));return i.length>0?i:!1}};sb.exports=nb});var xr=x((f$,lb)=>{u();var _O=_e(),ob=class{constructor(e,t,i,n){this.unprefixed=e,this.prefixed=t,this.string=i||t,this.regexp=n||_O.regexp(t)}check(e){return e.includes(this.string)?!!e.match(this.regexp):!1}};lb.exports=ob});var He=x((c$,fb)=>{u();var EO=wr(),OO=xr(),TO=Ni(),RO=_e(),ub=class extends EO{static save(e,t){let i=t.prop,n=[];for(let s in t._autoprefixerValues){let a=t._autoprefixerValues[s];if(a===t.value)continue;let o,l=TO.prefix(i);if(l==="-pie-")continue;if(l===s){o=t.value=a,n.push(o);continue}let c=e.prefixed(i,s),f=t.parent;if(!f.every(b=>b.prop!==c)){n.push(o);continue}let d=a.replace(/\s+/," ");if(f.some(b=>b.prop===t.prop&&b.value.replace(/\s+/," ")===d)){n.push(o);continue}let h=this.clone(t,{value:a});o=t.parent.insertBefore(t,h),n.push(o)}return n}check(e){let t=e.value;return t.includes(this.name)?!!t.match(this.regexp()):!1}regexp(){return this.regexpCache||(this.regexpCache=RO.regexp(this.name))}replace(e,t){return e.replace(this.regexp(),`$1${t}$2`)}value(e){return e.raws.value&&e.raws.value.value===e.value?e.raws.value.raw:e.value}add(e,t){e._autoprefixerValues||(e._autoprefixerValues={});let i=e._autoprefixerValues[t]||this.value(e),n;do if(n=i,i=this.replace(i,t),i===!1)return;while(i!==n);e._autoprefixerValues[t]=i}old(e){return new OO(this.name,e+this.name)}};fb.exports=ub});var Bt=x((p$,cb)=>{u();cb.exports={}});var ou=x((d$,hb)=>{u();var pb=Ms(),PO=He(),IO=Bt().insertAreas,DO=/(^|[^-])linear-gradient\(\s*(top|left|right|bottom)/i,qO=/(^|[^-])radial-gradient\(\s*\d+(\w*|%)\s+\d+(\w*|%)\s*,/i,$O=/(!\s*)?autoprefixer:\s*ignore\s+next/i,LO=/(!\s*)?autoprefixer\s*grid:\s*(on|off|(no-)?autoplace)/i,MO=["width","height","min-width","max-width","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size"];function au(r){return r.parent.some(e=>e.prop==="grid-template"||e.prop==="grid-template-areas")}function NO(r){let e=r.parent.some(i=>i.prop==="grid-template-rows"),t=r.parent.some(i=>i.prop==="grid-template-columns");return e&&t}var db=class{constructor(e){this.prefixes=e}add(e,t){let i=this.prefixes.add["@resolution"],n=this.prefixes.add["@keyframes"],s=this.prefixes.add["@viewport"],a=this.prefixes.add["@supports"];e.walkAtRules(f=>{if(f.name==="keyframes"){if(!this.disabled(f,t))return n&&n.process(f)}else if(f.name==="viewport"){if(!this.disabled(f,t))return s&&s.process(f)}else if(f.name==="supports"){if(this.prefixes.options.supports!==!1&&!this.disabled(f,t))return a.process(f)}else if(f.name==="media"&&f.params.includes("-resolution")&&!this.disabled(f,t))return i&&i.process(f)}),e.walkRules(f=>{if(!this.disabled(f,t))return this.prefixes.add.selectors.map(d=>d.process(f,t))});function o(f){return f.parent.nodes.some(d=>{if(d.type!=="decl")return!1;let p=d.prop==="display"&&/(inline-)?grid/.test(d.value),h=d.prop.startsWith("grid-template"),b=/^grid-([A-z]+-)?gap/.test(d.prop);return p||h||b})}function l(f){return f.parent.some(d=>d.prop==="display"&&/(inline-)?flex/.test(d.value))}let c=this.gridStatus(e,t)&&this.prefixes.add["grid-area"]&&this.prefixes.add["grid-area"].prefixes;return e.walkDecls(f=>{if(this.disabledDecl(f,t))return;let d=f.parent,p=f.prop,h=f.value;if(p==="grid-row-span"){t.warn("grid-row-span is not part of final Grid Layout. Use grid-row.",{node:f});return}else if(p==="grid-column-span"){t.warn("grid-column-span is not part of final Grid Layout. Use grid-column.",{node:f});return}else if(p==="display"&&h==="box"){t.warn("You should write display: flex by final spec instead of display: box",{node:f});return}else if(p==="text-emphasis-position")(h==="under"||h==="over")&&t.warn("You should use 2 values for text-emphasis-position For example, `under left` instead of just `under`.",{node:f});else if(/^(align|justify|place)-(items|content)$/.test(p)&&l(f))(h==="start"||h==="end")&&t.warn(`${h} value has mixed support, consider using flex-${h} instead`,{node:f});else if(p==="text-decoration-skip"&&h==="ink")t.warn("Replace text-decoration-skip: ink to text-decoration-skip-ink: auto, because spec had been changed",{node:f});else{if(c&&this.gridStatus(f,t))if(f.value==="subgrid"&&t.warn("IE does not support subgrid",{node:f}),/^(align|justify|place)-items$/.test(p)&&o(f)){let v=p.replace("-items","-self");t.warn(`IE does not support ${p} on grid containers. Try using ${v} on child elements instead: ${f.parent.selector} > * { ${v}: ${f.value} }`,{node:f})}else if(/^(align|justify|place)-content$/.test(p)&&o(f))t.warn(`IE does not support ${f.prop} on grid containers`,{node:f});else if(p==="display"&&f.value==="contents"){t.warn("Please do not use display: contents; if you have grid setting enabled",{node:f});return}else if(f.prop==="grid-gap"){let v=this.gridStatus(f,t);v==="autoplace"&&!NO(f)&&!au(f)?t.warn("grid-gap only works if grid-template(-areas) is being used or both rows and columns have been declared and cells have not been manually placed inside the explicit grid",{node:f}):(v===!0||v==="no-autoplace")&&!au(f)&&t.warn("grid-gap only works if grid-template(-areas) is being used",{node:f})}else if(p==="grid-auto-columns"){t.warn("grid-auto-columns is not supported by IE",{node:f});return}else if(p==="grid-auto-rows"){t.warn("grid-auto-rows is not supported by IE",{node:f});return}else if(p==="grid-auto-flow"){let v=d.some(w=>w.prop==="grid-template-rows"),y=d.some(w=>w.prop==="grid-template-columns");au(f)?t.warn("grid-auto-flow is not supported by IE",{node:f}):h.includes("dense")?t.warn("grid-auto-flow: dense is not supported by IE",{node:f}):!v&&!y&&t.warn("grid-auto-flow works only if grid-template-rows and grid-template-columns are present in the same rule",{node:f});return}else if(h.includes("auto-fit")){t.warn("auto-fit value is not supported by IE",{node:f,word:"auto-fit"});return}else if(h.includes("auto-fill")){t.warn("auto-fill value is not supported by IE",{node:f,word:"auto-fill"});return}else p.startsWith("grid-template")&&h.includes("[")&&t.warn("Autoprefixer currently does not support line names. Try using grid-template-areas instead.",{node:f,word:"["});if(h.includes("radial-gradient"))if(qO.test(f.value))t.warn("Gradient has outdated direction syntax. New syntax is like `closest-side at 0 0` instead of `0 0, closest-side`.",{node:f});else{let v=pb(h);for(let y of v.nodes)if(y.type==="function"&&y.value==="radial-gradient")for(let w of y.nodes)w.type==="word"&&(w.value==="cover"?t.warn("Gradient has outdated direction syntax. Replace `cover` to `farthest-corner`.",{node:f}):w.value==="contain"&&t.warn("Gradient has outdated direction syntax. Replace `contain` to `closest-side`.",{node:f}))}h.includes("linear-gradient")&&DO.test(h)&&t.warn("Gradient has outdated direction syntax. New syntax is like `to left` instead of `right`.",{node:f})}MO.includes(f.prop)&&(f.value.includes("-fill-available")||(f.value.includes("fill-available")?t.warn("Replace fill-available to stretch, because spec had been changed",{node:f}):f.value.includes("fill")&&pb(h).nodes.some(y=>y.type==="word"&&y.value==="fill")&&t.warn("Replace fill to stretch, because spec had been changed",{node:f})));let b;if(f.prop==="transition"||f.prop==="transition-property")return this.prefixes.transition.add(f,t);if(f.prop==="align-self"){if(this.displayType(f)!=="grid"&&this.prefixes.options.flexbox!==!1&&(b=this.prefixes.add["align-self"],b&&b.prefixes&&b.process(f)),this.gridStatus(f,t)!==!1&&(b=this.prefixes.add["grid-row-align"],b&&b.prefixes))return b.process(f,t)}else if(f.prop==="justify-self"){if(this.gridStatus(f,t)!==!1&&(b=this.prefixes.add["grid-column-align"],b&&b.prefixes))return b.process(f,t)}else if(f.prop==="place-self"){if(b=this.prefixes.add["place-self"],b&&b.prefixes&&this.gridStatus(f,t)!==!1)return b.process(f,t)}else if(b=this.prefixes.add[f.prop],b&&b.prefixes)return b.process(f,t)}),this.gridStatus(e,t)&&IO(e,this.disabled),e.walkDecls(f=>{if(this.disabledValue(f,t))return;let d=this.prefixes.unprefixed(f.prop),p=this.prefixes.values("add",d);if(Array.isArray(p))for(let h of p)h.process&&h.process(f,t);PO.save(this.prefixes,f)})}remove(e,t){let i=this.prefixes.remove["@resolution"];e.walkAtRules((n,s)=>{this.prefixes.remove[`@${n.name}`]?this.disabled(n,t)||n.parent.removeChild(s):n.name==="media"&&n.params.includes("-resolution")&&i&&i.clean(n)});for(let n of this.prefixes.remove.selectors)e.walkRules((s,a)=>{n.check(s)&&(this.disabled(s,t)||s.parent.removeChild(a))});return e.walkDecls((n,s)=>{if(this.disabled(n,t))return;let a=n.parent,o=this.prefixes.unprefixed(n.prop);if((n.prop==="transition"||n.prop==="transition-property")&&this.prefixes.transition.remove(n),this.prefixes.remove[n.prop]&&this.prefixes.remove[n.prop].remove){let l=this.prefixes.group(n).down(c=>this.prefixes.normalize(c.prop)===o);if(o==="flex-flow"&&(l=!0),n.prop==="-webkit-box-orient"){let c={"flex-direction":!0,"flex-flow":!0};if(!n.parent.some(f=>c[f.prop]))return}if(l&&!this.withHackValue(n)){n.raw("before").includes(` +`)&&this.reduceSpaces(n),a.removeChild(s);return}}for(let l of this.prefixes.values("remove",o)){if(!l.check||!l.check(n.value))continue;if(o=l.unprefixed,this.prefixes.group(n).down(f=>f.value.includes(o))){a.removeChild(s);return}}})}withHackValue(e){return e.prop==="-webkit-background-clip"&&e.value==="text"}disabledValue(e,t){return this.gridStatus(e,t)===!1&&e.type==="decl"&&e.prop==="display"&&e.value.includes("grid")||this.prefixes.options.flexbox===!1&&e.type==="decl"&&e.prop==="display"&&e.value.includes("flex")||e.type==="decl"&&e.prop==="content"?!0:this.disabled(e,t)}disabledDecl(e,t){if(this.gridStatus(e,t)===!1&&e.type==="decl"&&(e.prop.includes("grid")||e.prop==="justify-items"))return!0;if(this.prefixes.options.flexbox===!1&&e.type==="decl"){let i=["order","justify-content","align-items","align-content"];if(e.prop.includes("flex")||i.includes(e.prop))return!0}return this.disabled(e,t)}disabled(e,t){if(!e)return!1;if(e._autoprefixerDisabled!==void 0)return e._autoprefixerDisabled;if(e.parent){let n=e.prev();if(n&&n.type==="comment"&&$O.test(n.text))return e._autoprefixerDisabled=!0,e._autoprefixerSelfDisabled=!0,!0}let i=null;if(e.nodes){let n;e.each(s=>{s.type==="comment"&&/(!\s*)?autoprefixer:\s*(off|on)/i.test(s.text)&&(typeof n!="undefined"?t.warn("Second Autoprefixer control comment was ignored. Autoprefixer applies control comment to whole block, not to next rules.",{node:s}):n=/on/i.test(s.text))}),n!==void 0&&(i=!n)}if(!e.nodes||i===null)if(e.parent){let n=this.disabled(e.parent,t);e.parent._autoprefixerSelfDisabled===!0?i=!1:i=n}else i=!1;return e._autoprefixerDisabled=i,i}reduceSpaces(e){let t=!1;if(this.prefixes.group(e).up(()=>(t=!0,!0)),t)return;let i=e.raw("before").split(` +`),n=i[i.length-1].length,s=!1;this.prefixes.group(e).down(a=>{i=a.raw("before").split(` +`);let o=i.length-1;i[o].length>n&&(s===!1&&(s=i[o].length-n),i[o]=i[o].slice(0,-s),a.raws.before=i.join(` +`))})}displayType(e){for(let t of e.parent.nodes)if(t.prop==="display"){if(t.value.includes("flex"))return"flex";if(t.value.includes("grid"))return"grid"}return!1}gridStatus(e,t){if(!e)return!1;if(e._autoprefixerGridStatus!==void 0)return e._autoprefixerGridStatus;let i=null;if(e.nodes){let n;e.each(s=>{if(s.type==="comment"&&LO.test(s.text)){let a=/:\s*autoplace/i.test(s.text),o=/no-autoplace/i.test(s.text);typeof n!="undefined"?t.warn("Second Autoprefixer grid control comment was ignored. Autoprefixer applies control comments to the whole block, not to the next rules.",{node:s}):a?n="autoplace":o?n=!0:n=/on/i.test(s.text)}}),n!==void 0&&(i=n)}if(e.type==="atrule"&&e.name==="supports"){let n=e.params;n.includes("grid")&&n.includes("auto")&&(i=!1)}if(!e.nodes||i===null)if(e.parent){let n=this.gridStatus(e.parent,t);e.parent._autoprefixerSelfDisabled===!0?i=!1:i=n}else typeof this.prefixes.options.grid!="undefined"?i=this.prefixes.options.grid:typeof m.env.AUTOPREFIXER_GRID!="undefined"?m.env.AUTOPREFIXER_GRID==="autoplace"?i="autoplace":i=!0:i=!1;return e._autoprefixerGridStatus=i,i}};hb.exports=db});var gb=x((h$,mb)=>{u();mb.exports={A:{A:{"2":"K E F G A B JC"},B:{"1":"C L M H N D O P Q R S T U V W X Y Z a b c d e f g h i j n o p q r s t u v w x y z I"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB 0B dB 1B eB fB gB hB iB jB kB lB mB nB oB m pB qB rB sB tB P Q R 2B S T U V W X Y Z a b c d e f g h i j n o p q r s t u v w x y z I uB 3B 4B","2":"0 1 KC zB J K E F G A B C L M H N D O k l LC MC"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB 0B dB 1B eB fB gB hB iB jB kB lB mB nB oB m pB qB rB sB tB P Q R S T U V W X Y Z a b c d e f g h i j n o p q r s t u v w x y z I uB 3B 4B","2":"0 1 2 3 4 5 6 7 J K E F G A B C L M H N D O k l"},E:{"1":"G A B C L M H D RC 6B vB wB 7B SC TC 8B 9B xB AC yB BC CC DC EC FC GC UC","2":"0 J K E F NC 5B OC PC QC"},F:{"1":"1 2 3 4 5 6 7 8 9 H N D O k l AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB m pB qB rB sB tB P Q R 2B S T U V W X Y Z a b c d e f g h i j wB","2":"G B C VC WC XC YC vB HC ZC"},G:{"1":"D fC gC hC iC jC kC lC mC nC oC pC qC rC sC tC 8B 9B xB AC yB BC CC DC EC FC GC","2":"F 5B aC IC bC cC dC eC"},H:{"1":"uC"},I:{"1":"I zC 0C","2":"zB J vC wC xC yC IC"},J:{"2":"E A"},K:{"1":"m","2":"A B C vB HC wB"},L:{"1":"I"},M:{"1":"uB"},N:{"2":"A B"},O:{"1":"xB"},P:{"1":"J k l 1C 2C 3C 4C 5C 6B 6C 7C 8C 9C AD yB BD CD DD"},Q:{"1":"7B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS Feature Queries"}});var vb=x((m$,wb)=>{u();function yb(r){return r[r.length-1]}var bb={parse(r){let e=[""],t=[e];for(let i of r){if(i==="("){e=[""],yb(t).push(e),t.push(e);continue}if(i===")"){t.pop(),e=yb(t),e.push("");continue}e[e.length-1]+=i}return t[0]},stringify(r){let e="";for(let t of r){if(typeof t=="object"){e+=`(${bb.stringify(t)})`;continue}e+=t}return e}};wb.exports=bb});var Cb=x((g$,Ab)=>{u();var BO=gb(),{feature:FO}=(Ps(),Rs),{parse:jO}=$e(),zO=Mt(),lu=vb(),UO=He(),VO=_e(),xb=FO(BO),kb=[];for(let r in xb.stats){let e=xb.stats[r];for(let t in e){let i=e[t];/y/.test(i)&&kb.push(r+" "+t)}}var Sb=class{constructor(e,t){this.Prefixes=e,this.all=t}prefixer(){if(this.prefixerCache)return this.prefixerCache;let e=this.all.browsers.selected.filter(i=>kb.includes(i)),t=new zO(this.all.browsers.data,e,this.all.options);return this.prefixerCache=new this.Prefixes(this.all.data,t,this.all.options),this.prefixerCache}parse(e){let t=e.split(":"),i=t[0],n=t[1];return n||(n=""),[i.trim(),n.trim()]}virtual(e){let[t,i]=this.parse(e),n=jO("a{}").first;return n.append({prop:t,value:i,raws:{before:""}}),n}prefixed(e){let t=this.virtual(e);if(this.disabled(t.first))return t.nodes;let i={warn:()=>null},n=this.prefixer().add[t.first.prop];n&&n.process&&n.process(t.first,i);for(let s of t.nodes){for(let a of this.prefixer().values("add",t.first.prop))a.process(s);UO.save(this.all,s)}return t.nodes}isNot(e){return typeof e=="string"&&/not\s*/i.test(e)}isOr(e){return typeof e=="string"&&/\s*or\s*/i.test(e)}isProp(e){return typeof e=="object"&&e.length===1&&typeof e[0]=="string"}isHack(e,t){return!new RegExp(`(\\(|\\s)${VO.escapeRegexp(t)}:`).test(e)}toRemove(e,t){let[i,n]=this.parse(e),s=this.all.unprefixed(i),a=this.all.cleaner();if(a.remove[i]&&a.remove[i].remove&&!this.isHack(t,s))return!0;for(let o of a.values("remove",s))if(o.check(n))return!0;return!1}remove(e,t){let i=0;for(;itypeof t!="object"?t:t.length===1&&typeof t[0]=="object"?this.cleanBrackets(t[0]):this.cleanBrackets(t))}convert(e){let t=[""];for(let i of e)t.push([`${i.prop}: ${i.value}`]),t.push(" or ");return t[t.length-1]="",t}normalize(e){if(typeof e!="object")return e;if(e=e.filter(t=>t!==""),typeof e[0]=="string"){let t=e[0].trim();if(t.includes(":")||t==="selector"||t==="not selector")return[lu.stringify(e)]}return e.map(t=>this.normalize(t))}add(e,t){return e.map(i=>{if(this.isProp(i)){let n=this.prefixed(i[0]);return n.length>1?this.convert(n):i}return typeof i=="object"?this.add(i,t):i})}process(e){let t=lu.parse(e.params);t=this.normalize(t),t=this.remove(t,e.params),t=this.add(t,e.params),t=this.cleanBrackets(t),e.params=lu.stringify(t)}disabled(e){if(!this.all.options.grid&&(e.prop==="display"&&e.value.includes("grid")||e.prop.includes("grid")||e.prop==="justify-items"))return!0;if(this.all.options.flexbox===!1){if(e.prop==="display"&&e.value.includes("flex"))return!0;let t=["order","justify-content","align-items","align-content"];if(e.prop.includes("flex")||t.includes(e.prop))return!0}return!1}};Ab.exports=Sb});var Ob=x((y$,Eb)=>{u();var _b=class{constructor(e,t){this.prefix=t,this.prefixed=e.prefixed(this.prefix),this.regexp=e.regexp(this.prefix),this.prefixeds=e.possible().map(i=>[e.prefixed(i),e.regexp(i)]),this.unprefixed=e.name,this.nameRegexp=e.regexp()}isHack(e){let t=e.parent.index(e)+1,i=e.parent.nodes;for(;t{u();var{list:HO}=$e(),WO=Ob(),GO=wr(),QO=Mt(),YO=_e(),Tb=class extends GO{constructor(e,t,i){super(e,t,i);this.regexpCache=new Map}check(e){return e.selector.includes(this.name)?!!e.selector.match(this.regexp()):!1}prefixed(e){return this.name.replace(/^(\W*)/,`$1${e}`)}regexp(e){if(!this.regexpCache.has(e)){let t=e?this.prefixed(e):this.name;this.regexpCache.set(e,new RegExp(`(^|[^:"'=])${YO.escapeRegexp(t)}`,"gi"))}return this.regexpCache.get(e)}possible(){return QO.prefixes()}prefixeds(e){if(e._autoprefixerPrefixeds){if(e._autoprefixerPrefixeds[this.name])return e._autoprefixerPrefixeds}else e._autoprefixerPrefixeds={};let t={};if(e.selector.includes(",")){let n=HO.comma(e.selector).filter(s=>s.includes(this.name));for(let s of this.possible())t[s]=n.map(a=>this.replace(a,s)).join(", ")}else for(let i of this.possible())t[i]=this.replace(e.selector,i);return e._autoprefixerPrefixeds[this.name]=t,e._autoprefixerPrefixeds}already(e,t,i){let n=e.parent.index(e)-1;for(;n>=0;){let s=e.parent.nodes[n];if(s.type!=="rule")return!1;let a=!1;for(let o in t[this.name]){let l=t[this.name][o];if(s.selector===l){if(i===o)return!0;a=!0;break}}if(!a)return!1;n-=1}return!1}replace(e,t){return e.replace(this.regexp(),`$1${this.prefixed(t)}`)}add(e,t){let i=this.prefixeds(e);if(this.already(e,i,t))return;let n=this.clone(e,{selector:i[this.name][t]});e.parent.insertBefore(e,n)}old(e){return new WO(this,e)}};Rb.exports=Tb});var Db=x((w$,Ib)=>{u();var KO=wr(),Pb=class extends KO{add(e,t){let i=t+e.name;if(e.parent.some(a=>a.name===i&&a.params===e.params))return;let s=this.clone(e,{name:i});return e.parent.insertBefore(e,s)}process(e){let t=this.parentPrefix(e);for(let i of this.prefixes)(!t||t===i)&&this.add(e,i)}};Ib.exports=Pb});var $b=x((v$,qb)=>{u();var XO=kr(),uu=class extends XO{prefixed(e){return e==="-webkit-"?":-webkit-full-screen":e==="-moz-"?":-moz-full-screen":`:${e}fullscreen`}};uu.names=[":fullscreen"];qb.exports=uu});var Mb=x((x$,Lb)=>{u();var ZO=kr(),fu=class extends ZO{possible(){return super.possible().concat(["-moz- old","-ms- old"])}prefixed(e){return e==="-webkit-"?"::-webkit-input-placeholder":e==="-ms-"?"::-ms-input-placeholder":e==="-ms- old"?":-ms-input-placeholder":e==="-moz- old"?":-moz-placeholder":`::${e}placeholder`}};fu.names=["::placeholder"];Lb.exports=fu});var Bb=x((k$,Nb)=>{u();var JO=kr(),cu=class extends JO{prefixed(e){return e==="-ms-"?":-ms-input-placeholder":`:${e}placeholder-shown`}};cu.names=[":placeholder-shown"];Nb.exports=cu});var jb=x((S$,Fb)=>{u();var eT=kr(),tT=_e(),pu=class extends eT{constructor(e,t,i){super(e,t,i);this.prefixes&&(this.prefixes=tT.uniq(this.prefixes.map(n=>"-webkit-")))}prefixed(e){return e==="-webkit-"?"::-webkit-file-upload-button":`::${e}file-selector-button`}};pu.names=["::file-selector-button"];Fb.exports=pu});var Pe=x((A$,zb)=>{u();zb.exports=function(r){let e;return r==="-webkit- 2009"||r==="-moz-"?e=2009:r==="-ms-"?e=2012:r==="-webkit-"&&(e="final"),r==="-webkit- 2009"&&(r="-webkit-"),[e,r]}});var Wb=x((C$,Hb)=>{u();var Ub=$e().list,Vb=Pe(),rT=j(),Sr=class extends rT{prefixed(e,t){let i;return[i,t]=Vb(t),i===2009?t+"box-flex":super.prefixed(e,t)}normalize(){return"flex"}set(e,t){let i=Vb(t)[0];if(i===2009)return e.value=Ub.space(e.value)[0],e.value=Sr.oldValues[e.value]||e.value,super.set(e,t);if(i===2012){let n=Ub.space(e.value);n.length===3&&n[2]==="0"&&(e.value=n.slice(0,2).concat("0px").join(" "))}return super.set(e,t)}};Sr.names=["flex","box-flex"];Sr.oldValues={auto:"1",none:"0"};Hb.exports=Sr});var Yb=x((_$,Qb)=>{u();var Gb=Pe(),iT=j(),du=class extends iT{prefixed(e,t){let i;return[i,t]=Gb(t),i===2009?t+"box-ordinal-group":i===2012?t+"flex-order":super.prefixed(e,t)}normalize(){return"order"}set(e,t){return Gb(t)[0]===2009&&/\d/.test(e.value)?(e.value=(parseInt(e.value)+1).toString(),super.set(e,t)):super.set(e,t)}};du.names=["order","flex-order","box-ordinal-group"];Qb.exports=du});var Xb=x((E$,Kb)=>{u();var nT=j(),hu=class extends nT{check(e){let t=e.value;return!t.toLowerCase().includes("alpha(")&&!t.includes("DXImageTransform.Microsoft")&&!t.includes("data:image/svg+xml")}};hu.names=["filter"];Kb.exports=hu});var Jb=x((O$,Zb)=>{u();var sT=j(),mu=class extends sT{insert(e,t,i,n){if(t!=="-ms-")return super.insert(e,t,i);let s=this.clone(e),a=e.prop.replace(/end$/,"start"),o=t+e.prop.replace(/end$/,"span");if(!e.parent.some(l=>l.prop===o)){if(s.prop=o,e.value.includes("span"))s.value=e.value.replace(/span\s/i,"");else{let l;if(e.parent.walkDecls(a,c=>{l=c}),l){let c=Number(e.value)-Number(l.value)+"";s.value=c}else e.warn(n,`Can not prefix ${e.prop} (${a} is not found)`)}e.cloneBefore(s)}}};mu.names=["grid-row-end","grid-column-end"];Zb.exports=mu});var tw=x((T$,ew)=>{u();var aT=j(),gu=class extends aT{check(e){return!e.value.split(/\s+/).some(t=>{let i=t.toLowerCase();return i==="reverse"||i==="alternate-reverse"})}};gu.names=["animation","animation-direction"];ew.exports=gu});var iw=x((R$,rw)=>{u();var oT=Pe(),lT=j(),yu=class extends lT{insert(e,t,i){let n;if([n,t]=oT(t),n!==2009)return super.insert(e,t,i);let s=e.value.split(/\s+/).filter(d=>d!=="wrap"&&d!=="nowrap"&&"wrap-reverse");if(s.length===0||e.parent.some(d=>d.prop===t+"box-orient"||d.prop===t+"box-direction"))return;let o=s[0],l=o.includes("row")?"horizontal":"vertical",c=o.includes("reverse")?"reverse":"normal",f=this.clone(e);return f.prop=t+"box-orient",f.value=l,this.needCascade(e)&&(f.raws.before=this.calcBefore(i,e,t)),e.parent.insertBefore(e,f),f=this.clone(e),f.prop=t+"box-direction",f.value=c,this.needCascade(e)&&(f.raws.before=this.calcBefore(i,e,t)),e.parent.insertBefore(e,f)}};yu.names=["flex-flow","box-direction","box-orient"];rw.exports=yu});var sw=x((P$,nw)=>{u();var uT=Pe(),fT=j(),bu=class extends fT{normalize(){return"flex"}prefixed(e,t){let i;return[i,t]=uT(t),i===2009?t+"box-flex":i===2012?t+"flex-positive":super.prefixed(e,t)}};bu.names=["flex-grow","flex-positive"];nw.exports=bu});var ow=x((I$,aw)=>{u();var cT=Pe(),pT=j(),wu=class extends pT{set(e,t){if(cT(t)[0]!==2009)return super.set(e,t)}};wu.names=["flex-wrap"];aw.exports=wu});var uw=x((D$,lw)=>{u();var dT=j(),Ar=Bt(),vu=class extends dT{insert(e,t,i,n){if(t!=="-ms-")return super.insert(e,t,i);let s=Ar.parse(e),[a,o]=Ar.translate(s,0,2),[l,c]=Ar.translate(s,1,3);[["grid-row",a],["grid-row-span",o],["grid-column",l],["grid-column-span",c]].forEach(([f,d])=>{Ar.insertDecl(e,f,d)}),Ar.warnTemplateSelectorNotFound(e,n),Ar.warnIfGridRowColumnExists(e,n)}};vu.names=["grid-area"];lw.exports=vu});var cw=x((q$,fw)=>{u();var hT=j(),Bi=Bt(),xu=class extends hT{insert(e,t,i){if(t!=="-ms-")return super.insert(e,t,i);if(e.parent.some(a=>a.prop==="-ms-grid-row-align"))return;let[[n,s]]=Bi.parse(e);s?(Bi.insertDecl(e,"grid-row-align",n),Bi.insertDecl(e,"grid-column-align",s)):(Bi.insertDecl(e,"grid-row-align",n),Bi.insertDecl(e,"grid-column-align",n))}};xu.names=["place-self"];fw.exports=xu});var dw=x(($$,pw)=>{u();var mT=j(),ku=class extends mT{check(e){let t=e.value;return!t.includes("/")||t.includes("span")}normalize(e){return e.replace("-start","")}prefixed(e,t){let i=super.prefixed(e,t);return t==="-ms-"&&(i=i.replace("-start","")),i}};ku.names=["grid-row-start","grid-column-start"];pw.exports=ku});var gw=x((L$,mw)=>{u();var hw=Pe(),gT=j(),Cr=class extends gT{check(e){return e.parent&&!e.parent.some(t=>t.prop&&t.prop.startsWith("grid-"))}prefixed(e,t){let i;return[i,t]=hw(t),i===2012?t+"flex-item-align":super.prefixed(e,t)}normalize(){return"align-self"}set(e,t){let i=hw(t)[0];if(i===2012)return e.value=Cr.oldValues[e.value]||e.value,super.set(e,t);if(i==="final")return super.set(e,t)}};Cr.names=["align-self","flex-item-align"];Cr.oldValues={"flex-end":"end","flex-start":"start"};mw.exports=Cr});var bw=x((M$,yw)=>{u();var yT=j(),bT=_e(),Su=class extends yT{constructor(e,t,i){super(e,t,i);this.prefixes&&(this.prefixes=bT.uniq(this.prefixes.map(n=>n==="-ms-"?"-webkit-":n)))}};Su.names=["appearance"];yw.exports=Su});var xw=x((N$,vw)=>{u();var ww=Pe(),wT=j(),Au=class extends wT{normalize(){return"flex-basis"}prefixed(e,t){let i;return[i,t]=ww(t),i===2012?t+"flex-preferred-size":super.prefixed(e,t)}set(e,t){let i;if([i,t]=ww(t),i===2012||i==="final")return super.set(e,t)}};Au.names=["flex-basis","flex-preferred-size"];vw.exports=Au});var Sw=x((B$,kw)=>{u();var vT=j(),Cu=class extends vT{normalize(){return this.name.replace("box-image","border")}prefixed(e,t){let i=super.prefixed(e,t);return t==="-webkit-"&&(i=i.replace("border","box-image")),i}};Cu.names=["mask-border","mask-border-source","mask-border-slice","mask-border-width","mask-border-outset","mask-border-repeat","mask-box-image","mask-box-image-source","mask-box-image-slice","mask-box-image-width","mask-box-image-outset","mask-box-image-repeat"];kw.exports=Cu});var Cw=x((F$,Aw)=>{u();var xT=j(),lt=class extends xT{insert(e,t,i){let n=e.prop==="mask-composite",s;n?s=e.value.split(","):s=e.value.match(lt.regexp)||[],s=s.map(c=>c.trim()).filter(c=>c);let a=s.length,o;if(a&&(o=this.clone(e),o.value=s.map(c=>lt.oldValues[c]||c).join(", "),s.includes("intersect")&&(o.value+=", xor"),o.prop=t+"mask-composite"),n)return a?(this.needCascade(e)&&(o.raws.before=this.calcBefore(i,e,t)),e.parent.insertBefore(e,o)):void 0;let l=this.clone(e);return l.prop=t+l.prop,a&&(l.value=l.value.replace(lt.regexp,"")),this.needCascade(e)&&(l.raws.before=this.calcBefore(i,e,t)),e.parent.insertBefore(e,l),a?(this.needCascade(e)&&(o.raws.before=this.calcBefore(i,e,t)),e.parent.insertBefore(e,o)):e}};lt.names=["mask","mask-composite"];lt.oldValues={add:"source-over",subtract:"source-out",intersect:"source-in",exclude:"xor"};lt.regexp=new RegExp(`\\s+(${Object.keys(lt.oldValues).join("|")})\\b(?!\\))\\s*(?=[,])`,"ig");Aw.exports=lt});var Ow=x((j$,Ew)=>{u();var _w=Pe(),kT=j(),_r=class extends kT{prefixed(e,t){let i;return[i,t]=_w(t),i===2009?t+"box-align":i===2012?t+"flex-align":super.prefixed(e,t)}normalize(){return"align-items"}set(e,t){let i=_w(t)[0];return(i===2009||i===2012)&&(e.value=_r.oldValues[e.value]||e.value),super.set(e,t)}};_r.names=["align-items","flex-align","box-align"];_r.oldValues={"flex-end":"end","flex-start":"start"};Ew.exports=_r});var Rw=x((z$,Tw)=>{u();var ST=j(),_u=class extends ST{set(e,t){return t==="-ms-"&&e.value==="contain"&&(e.value="element"),super.set(e,t)}insert(e,t,i){if(!(e.value==="all"&&t==="-ms-"))return super.insert(e,t,i)}};_u.names=["user-select"];Tw.exports=_u});var Dw=x((U$,Iw)=>{u();var Pw=Pe(),AT=j(),Eu=class extends AT{normalize(){return"flex-shrink"}prefixed(e,t){let i;return[i,t]=Pw(t),i===2012?t+"flex-negative":super.prefixed(e,t)}set(e,t){let i;if([i,t]=Pw(t),i===2012||i==="final")return super.set(e,t)}};Eu.names=["flex-shrink","flex-negative"];Iw.exports=Eu});var $w=x((V$,qw)=>{u();var CT=j(),Ou=class extends CT{prefixed(e,t){return`${t}column-${e}`}normalize(e){return e.includes("inside")?"break-inside":e.includes("before")?"break-before":"break-after"}set(e,t){return(e.prop==="break-inside"&&e.value==="avoid-column"||e.value==="avoid-page")&&(e.value="avoid"),super.set(e,t)}insert(e,t,i){if(e.prop!=="break-inside")return super.insert(e,t,i);if(!(/region/i.test(e.value)||/page/i.test(e.value)))return super.insert(e,t,i)}};Ou.names=["break-inside","page-break-inside","column-break-inside","break-before","page-break-before","column-break-before","break-after","page-break-after","column-break-after"];qw.exports=Ou});var Mw=x((H$,Lw)=>{u();var _T=j(),Tu=class extends _T{prefixed(e,t){return t+"print-color-adjust"}normalize(){return"color-adjust"}};Tu.names=["color-adjust","print-color-adjust"];Lw.exports=Tu});var Bw=x((W$,Nw)=>{u();var ET=j(),Er=class extends ET{insert(e,t,i){if(t==="-ms-"){let n=this.set(this.clone(e),t);this.needCascade(e)&&(n.raws.before=this.calcBefore(i,e,t));let s="ltr";return e.parent.nodes.forEach(a=>{a.prop==="direction"&&(a.value==="rtl"||a.value==="ltr")&&(s=a.value)}),n.value=Er.msValues[s][e.value]||e.value,e.parent.insertBefore(e,n)}return super.insert(e,t,i)}};Er.names=["writing-mode"];Er.msValues={ltr:{"horizontal-tb":"lr-tb","vertical-rl":"tb-rl","vertical-lr":"tb-lr"},rtl:{"horizontal-tb":"rl-tb","vertical-rl":"bt-rl","vertical-lr":"bt-lr"}};Nw.exports=Er});var jw=x((G$,Fw)=>{u();var OT=j(),Ru=class extends OT{set(e,t){return e.value=e.value.replace(/\s+fill(\s)/,"$1"),super.set(e,t)}};Ru.names=["border-image"];Fw.exports=Ru});var Vw=x((Q$,Uw)=>{u();var zw=Pe(),TT=j(),Or=class extends TT{prefixed(e,t){let i;return[i,t]=zw(t),i===2012?t+"flex-line-pack":super.prefixed(e,t)}normalize(){return"align-content"}set(e,t){let i=zw(t)[0];if(i===2012)return e.value=Or.oldValues[e.value]||e.value,super.set(e,t);if(i==="final")return super.set(e,t)}};Or.names=["align-content","flex-line-pack"];Or.oldValues={"flex-end":"end","flex-start":"start","space-between":"justify","space-around":"distribute"};Uw.exports=Or});var Ww=x((Y$,Hw)=>{u();var RT=j(),We=class extends RT{prefixed(e,t){return t==="-moz-"?t+(We.toMozilla[e]||e):super.prefixed(e,t)}normalize(e){return We.toNormal[e]||e}};We.names=["border-radius"];We.toMozilla={};We.toNormal={};for(let r of["top","bottom"])for(let e of["left","right"]){let t=`border-${r}-${e}-radius`,i=`border-radius-${r}${e}`;We.names.push(t),We.names.push(i),We.toMozilla[t]=i,We.toNormal[i]=t}Hw.exports=We});var Qw=x((K$,Gw)=>{u();var PT=j(),Pu=class extends PT{prefixed(e,t){return e.includes("-start")?t+e.replace("-block-start","-before"):t+e.replace("-block-end","-after")}normalize(e){return e.includes("-before")?e.replace("-before","-block-start"):e.replace("-after","-block-end")}};Pu.names=["border-block-start","border-block-end","margin-block-start","margin-block-end","padding-block-start","padding-block-end","border-before","border-after","margin-before","margin-after","padding-before","padding-after"];Gw.exports=Pu});var Kw=x((X$,Yw)=>{u();var IT=j(),{parseTemplate:DT,warnMissedAreas:qT,getGridGap:$T,warnGridGap:LT,inheritGridGap:MT}=Bt(),Iu=class extends IT{insert(e,t,i,n){if(t!=="-ms-")return super.insert(e,t,i);if(e.parent.some(h=>h.prop==="-ms-grid-rows"))return;let s=$T(e),a=MT(e,s),{rows:o,columns:l,areas:c}=DT({decl:e,gap:a||s}),f=Object.keys(c).length>0,d=Boolean(o),p=Boolean(l);return LT({gap:s,hasColumns:p,decl:e,result:n}),qT(c,e,n),(d&&p||f)&&e.cloneBefore({prop:"-ms-grid-rows",value:o,raws:{}}),p&&e.cloneBefore({prop:"-ms-grid-columns",value:l,raws:{}}),e}};Iu.names=["grid-template"];Yw.exports=Iu});var Zw=x((Z$,Xw)=>{u();var NT=j(),Du=class extends NT{prefixed(e,t){return t+e.replace("-inline","")}normalize(e){return e.replace(/(margin|padding|border)-(start|end)/,"$1-inline-$2")}};Du.names=["border-inline-start","border-inline-end","margin-inline-start","margin-inline-end","padding-inline-start","padding-inline-end","border-start","border-end","margin-start","margin-end","padding-start","padding-end"];Xw.exports=Du});var e0=x((J$,Jw)=>{u();var BT=j(),qu=class extends BT{check(e){return!e.value.includes("flex-")&&e.value!=="baseline"}prefixed(e,t){return t+"grid-row-align"}normalize(){return"align-self"}};qu.names=["grid-row-align"];Jw.exports=qu});var r0=x((eL,t0)=>{u();var FT=j(),Tr=class extends FT{keyframeParents(e){let{parent:t}=e;for(;t;){if(t.type==="atrule"&&t.name==="keyframes")return!0;({parent:t}=t)}return!1}contain3d(e){if(e.prop==="transform-origin")return!1;for(let t of Tr.functions3d)if(e.value.includes(`${t}(`))return!0;return!1}set(e,t){return e=super.set(e,t),t==="-ms-"&&(e.value=e.value.replace(/rotatez/gi,"rotate")),e}insert(e,t,i){if(t==="-ms-"){if(!this.contain3d(e)&&!this.keyframeParents(e))return super.insert(e,t,i)}else if(t==="-o-"){if(!this.contain3d(e))return super.insert(e,t,i)}else return super.insert(e,t,i)}};Tr.names=["transform","transform-origin"];Tr.functions3d=["matrix3d","translate3d","translateZ","scale3d","scaleZ","rotate3d","rotateX","rotateY","perspective"];t0.exports=Tr});var s0=x((tL,n0)=>{u();var i0=Pe(),jT=j(),$u=class extends jT{normalize(){return"flex-direction"}insert(e,t,i){let n;if([n,t]=i0(t),n!==2009)return super.insert(e,t,i);if(e.parent.some(f=>f.prop===t+"box-orient"||f.prop===t+"box-direction"))return;let a=e.value,o,l;a==="inherit"||a==="initial"||a==="unset"?(o=a,l=a):(o=a.includes("row")?"horizontal":"vertical",l=a.includes("reverse")?"reverse":"normal");let c=this.clone(e);return c.prop=t+"box-orient",c.value=o,this.needCascade(e)&&(c.raws.before=this.calcBefore(i,e,t)),e.parent.insertBefore(e,c),c=this.clone(e),c.prop=t+"box-direction",c.value=l,this.needCascade(e)&&(c.raws.before=this.calcBefore(i,e,t)),e.parent.insertBefore(e,c)}old(e,t){let i;return[i,t]=i0(t),i===2009?[t+"box-orient",t+"box-direction"]:super.old(e,t)}};$u.names=["flex-direction","box-direction","box-orient"];n0.exports=$u});var o0=x((rL,a0)=>{u();var zT=j(),Lu=class extends zT{check(e){return e.value==="pixelated"}prefixed(e,t){return t==="-ms-"?"-ms-interpolation-mode":super.prefixed(e,t)}set(e,t){return t!=="-ms-"?super.set(e,t):(e.prop="-ms-interpolation-mode",e.value="nearest-neighbor",e)}normalize(){return"image-rendering"}process(e,t){return super.process(e,t)}};Lu.names=["image-rendering","interpolation-mode"];a0.exports=Lu});var u0=x((iL,l0)=>{u();var UT=j(),VT=_e(),Mu=class extends UT{constructor(e,t,i){super(e,t,i);this.prefixes&&(this.prefixes=VT.uniq(this.prefixes.map(n=>n==="-ms-"?"-webkit-":n)))}};Mu.names=["backdrop-filter"];l0.exports=Mu});var c0=x((nL,f0)=>{u();var HT=j(),WT=_e(),Nu=class extends HT{constructor(e,t,i){super(e,t,i);this.prefixes&&(this.prefixes=WT.uniq(this.prefixes.map(n=>n==="-ms-"?"-webkit-":n)))}check(e){return e.value.toLowerCase()==="text"}};Nu.names=["background-clip"];f0.exports=Nu});var d0=x((sL,p0)=>{u();var GT=j(),QT=["none","underline","overline","line-through","blink","inherit","initial","unset"],Bu=class extends GT{check(e){return e.value.split(/\s+/).some(t=>!QT.includes(t))}};Bu.names=["text-decoration"];p0.exports=Bu});var g0=x((aL,m0)=>{u();var h0=Pe(),YT=j(),Rr=class extends YT{prefixed(e,t){let i;return[i,t]=h0(t),i===2009?t+"box-pack":i===2012?t+"flex-pack":super.prefixed(e,t)}normalize(){return"justify-content"}set(e,t){let i=h0(t)[0];if(i===2009||i===2012){let n=Rr.oldValues[e.value]||e.value;if(e.value=n,i!==2009||n!=="distribute")return super.set(e,t)}else if(i==="final")return super.set(e,t)}};Rr.names=["justify-content","flex-pack","box-pack"];Rr.oldValues={"flex-end":"end","flex-start":"start","space-between":"justify","space-around":"distribute"};m0.exports=Rr});var b0=x((oL,y0)=>{u();var KT=j(),Fu=class extends KT{set(e,t){let i=e.value.toLowerCase();return t==="-webkit-"&&!i.includes(" ")&&i!=="contain"&&i!=="cover"&&(e.value=e.value+" "+e.value),super.set(e,t)}};Fu.names=["background-size"];y0.exports=Fu});var v0=x((lL,w0)=>{u();var XT=j(),ju=Bt(),zu=class extends XT{insert(e,t,i){if(t!=="-ms-")return super.insert(e,t,i);let n=ju.parse(e),[s,a]=ju.translate(n,0,1);n[0]&&n[0].includes("span")&&(a=n[0].join("").replace(/\D/g,"")),[[e.prop,s],[`${e.prop}-span`,a]].forEach(([l,c])=>{ju.insertDecl(e,l,c)})}};zu.names=["grid-row","grid-column"];w0.exports=zu});var S0=x((uL,k0)=>{u();var ZT=j(),{prefixTrackProp:x0,prefixTrackValue:JT,autoplaceGridItems:eR,getGridGap:tR,inheritGridGap:rR}=Bt(),iR=ou(),Uu=class extends ZT{prefixed(e,t){return t==="-ms-"?x0({prop:e,prefix:t}):super.prefixed(e,t)}normalize(e){return e.replace(/^grid-(rows|columns)/,"grid-template-$1")}insert(e,t,i,n){if(t!=="-ms-")return super.insert(e,t,i);let{parent:s,prop:a,value:o}=e,l=a.includes("rows"),c=a.includes("columns"),f=s.some(k=>k.prop==="grid-template"||k.prop==="grid-template-areas");if(f&&l)return!1;let d=new iR({options:{}}),p=d.gridStatus(s,n),h=tR(e);h=rR(e,h)||h;let b=l?h.row:h.column;(p==="no-autoplace"||p===!0)&&!f&&(b=null);let v=JT({value:o,gap:b});e.cloneBefore({prop:x0({prop:a,prefix:t}),value:v});let y=s.nodes.find(k=>k.prop==="grid-auto-flow"),w="row";if(y&&!d.disabled(y,n)&&(w=y.value.trim()),p==="autoplace"){let k=s.nodes.find(E=>E.prop==="grid-template-rows");if(!k&&f)return;if(!k&&!f){e.warn(n,"Autoplacement does not work without grid-template-rows property");return}!s.nodes.find(E=>E.prop==="grid-template-columns")&&!f&&e.warn(n,"Autoplacement does not work without grid-template-columns property"),c&&!f&&eR(e,n,h,w)}}};Uu.names=["grid-template-rows","grid-template-columns","grid-rows","grid-columns"];k0.exports=Uu});var C0=x((fL,A0)=>{u();var nR=j(),Vu=class extends nR{check(e){return!e.value.includes("flex-")&&e.value!=="baseline"}prefixed(e,t){return t+"grid-column-align"}normalize(){return"justify-self"}};Vu.names=["grid-column-align"];A0.exports=Vu});var E0=x((cL,_0)=>{u();var sR=j(),Hu=class extends sR{prefixed(e,t){return t+"scroll-chaining"}normalize(){return"overscroll-behavior"}set(e,t){return e.value==="auto"?e.value="chained":(e.value==="none"||e.value==="contain")&&(e.value="none"),super.set(e,t)}};Hu.names=["overscroll-behavior","scroll-chaining"];_0.exports=Hu});var R0=x((pL,T0)=>{u();var aR=j(),{parseGridAreas:oR,warnMissedAreas:lR,prefixTrackProp:uR,prefixTrackValue:O0,getGridGap:fR,warnGridGap:cR,inheritGridGap:pR}=Bt();function dR(r){return r.trim().slice(1,-1).split(/["']\s*["']?/g)}var Wu=class extends aR{insert(e,t,i,n){if(t!=="-ms-")return super.insert(e,t,i);let s=!1,a=!1,o=e.parent,l=fR(e);l=pR(e,l)||l,o.walkDecls(/-ms-grid-rows/,d=>d.remove()),o.walkDecls(/grid-template-(rows|columns)/,d=>{if(d.prop==="grid-template-rows"){a=!0;let{prop:p,value:h}=d;d.cloneBefore({prop:uR({prop:p,prefix:t}),value:O0({value:h,gap:l.row})})}else s=!0});let c=dR(e.value);s&&!a&&l.row&&c.length>1&&e.cloneBefore({prop:"-ms-grid-rows",value:O0({value:`repeat(${c.length}, auto)`,gap:l.row}),raws:{}}),cR({gap:l,hasColumns:s,decl:e,result:n});let f=oR({rows:c,gap:l});return lR(f,e,n),e}};Wu.names=["grid-template-areas"];T0.exports=Wu});var I0=x((dL,P0)=>{u();var hR=j(),Gu=class extends hR{set(e,t){return t==="-webkit-"&&(e.value=e.value.replace(/\s*(right|left)\s*/i,"")),super.set(e,t)}};Gu.names=["text-emphasis-position"];P0.exports=Gu});var q0=x((hL,D0)=>{u();var mR=j(),Qu=class extends mR{set(e,t){return e.prop==="text-decoration-skip-ink"&&e.value==="auto"?(e.prop=t+"text-decoration-skip",e.value="ink",e):super.set(e,t)}};Qu.names=["text-decoration-skip-ink","text-decoration-skip"];D0.exports=Qu});var F0=x((mL,B0)=>{u();"use strict";B0.exports={wrap:$0,limit:L0,validate:M0,test:Yu,curry:gR,name:N0};function $0(r,e,t){var i=e-r;return((t-r)%i+i)%i+r}function L0(r,e,t){return Math.max(r,Math.min(e,t))}function M0(r,e,t,i,n){if(!Yu(r,e,t,i,n))throw new Error(t+" is outside of range ["+r+","+e+")");return t}function Yu(r,e,t,i,n){return!(te||n&&t===e||i&&t===r)}function N0(r,e,t,i){return(t?"(":"[")+r+","+e+(i?")":"]")}function gR(r,e,t,i){var n=N0.bind(null,r,e,t,i);return{wrap:$0.bind(null,r,e),limit:L0.bind(null,r,e),validate:function(s){return M0(r,e,s,t,i)},test:function(s){return Yu(r,e,s,t,i)},toString:n,name:n}}});var U0=x((gL,z0)=>{u();var Ku=Ms(),yR=F0(),bR=xr(),wR=He(),vR=_e(),j0=/top|left|right|bottom/gi,wt=class extends wR{replace(e,t){let i=Ku(e);for(let n of i.nodes)if(n.type==="function"&&n.value===this.name)if(n.nodes=this.newDirection(n.nodes),n.nodes=this.normalize(n.nodes),t==="-webkit- old"){if(!this.oldWebkit(n))return!1}else n.nodes=this.convertDirection(n.nodes),n.value=t+n.value;return i.toString()}replaceFirst(e,...t){return t.map(n=>n===" "?{type:"space",value:n}:{type:"word",value:n}).concat(e.slice(1))}normalizeUnit(e,t){return`${parseFloat(e)/t*360}deg`}normalize(e){if(!e[0])return e;if(/-?\d+(.\d+)?grad/.test(e[0].value))e[0].value=this.normalizeUnit(e[0].value,400);else if(/-?\d+(.\d+)?rad/.test(e[0].value))e[0].value=this.normalizeUnit(e[0].value,2*Math.PI);else if(/-?\d+(.\d+)?turn/.test(e[0].value))e[0].value=this.normalizeUnit(e[0].value,1);else if(e[0].value.includes("deg")){let t=parseFloat(e[0].value);t=yR.wrap(0,360,t),e[0].value=`${t}deg`}return e[0].value==="0deg"?e=this.replaceFirst(e,"to"," ","top"):e[0].value==="90deg"?e=this.replaceFirst(e,"to"," ","right"):e[0].value==="180deg"?e=this.replaceFirst(e,"to"," ","bottom"):e[0].value==="270deg"&&(e=this.replaceFirst(e,"to"," ","left")),e}newDirection(e){if(e[0].value==="to"||(j0.lastIndex=0,!j0.test(e[0].value)))return e;e.unshift({type:"word",value:"to"},{type:"space",value:" "});for(let t=2;t0&&(e[0].value==="to"?this.fixDirection(e):e[0].value.includes("deg")?this.fixAngle(e):this.isRadial(e)&&this.fixRadial(e)),e}fixDirection(e){e.splice(0,2);for(let t of e){if(t.type==="div")break;t.type==="word"&&(t.value=this.revertDirection(t.value))}}fixAngle(e){let t=e[0].value;t=parseFloat(t),t=Math.abs(450-t)%360,t=this.roundFloat(t,3),e[0].value=`${t}deg`}fixRadial(e){let t=[],i=[],n,s,a,o,l;for(o=0;o{u();var xR=xr(),kR=He();function V0(r){return new RegExp(`(^|[\\s,(])(${r}($|[\\s),]))`,"gi")}var Xu=class extends kR{regexp(){return this.regexpCache||(this.regexpCache=V0(this.name)),this.regexpCache}isStretch(){return this.name==="stretch"||this.name==="fill"||this.name==="fill-available"}replace(e,t){return t==="-moz-"&&this.isStretch()?e.replace(this.regexp(),"$1-moz-available$3"):t==="-webkit-"&&this.isStretch()?e.replace(this.regexp(),"$1-webkit-fill-available$3"):super.replace(e,t)}old(e){let t=e+this.name;return this.isStretch()&&(e==="-moz-"?t="-moz-available":e==="-webkit-"&&(t="-webkit-fill-available")),new xR(this.name,t,t,V0(t))}add(e,t){if(!(e.prop.includes("grid")&&t!=="-webkit-"))return super.add(e,t)}};Xu.names=["max-content","min-content","fit-content","fill","fill-available","stretch"];H0.exports=Xu});var Y0=x((bL,Q0)=>{u();var G0=xr(),SR=He(),Zu=class extends SR{replace(e,t){return t==="-webkit-"?e.replace(this.regexp(),"$1-webkit-optimize-contrast"):t==="-moz-"?e.replace(this.regexp(),"$1-moz-crisp-edges"):super.replace(e,t)}old(e){return e==="-webkit-"?new G0(this.name,"-webkit-optimize-contrast"):e==="-moz-"?new G0(this.name,"-moz-crisp-edges"):super.old(e)}};Zu.names=["pixelated"];Q0.exports=Zu});var X0=x((wL,K0)=>{u();var AR=He(),Ju=class extends AR{replace(e,t){let i=super.replace(e,t);return t==="-webkit-"&&(i=i.replace(/("[^"]+"|'[^']+')(\s+\d+\w)/gi,"url($1)$2")),i}};Ju.names=["image-set"];K0.exports=Ju});var J0=x((vL,Z0)=>{u();var CR=$e().list,_R=He(),ef=class extends _R{replace(e,t){return CR.space(e).map(i=>{if(i.slice(0,+this.name.length+1)!==this.name+"(")return i;let n=i.lastIndexOf(")"),s=i.slice(n+1),a=i.slice(this.name.length+1,n);if(t==="-webkit-"){let o=a.match(/\d*.?\d+%?/);o?(a=a.slice(o[0].length).trim(),a+=`, ${o[0]}`):a+=", 0.5"}return t+this.name+"("+a+")"+s}).join(" ")}};ef.names=["cross-fade"];Z0.exports=ef});var tv=x((xL,ev)=>{u();var ER=Pe(),OR=xr(),TR=He(),tf=class extends TR{constructor(e,t){super(e,t);e==="display-flex"&&(this.name="flex")}check(e){return e.prop==="display"&&e.value===this.name}prefixed(e){let t,i;return[t,e]=ER(e),t===2009?this.name==="flex"?i="box":i="inline-box":t===2012?this.name==="flex"?i="flexbox":i="inline-flexbox":t==="final"&&(i=this.name),e+i}replace(e,t){return this.prefixed(t)}old(e){let t=this.prefixed(e);if(!!t)return new OR(this.name,t)}};tf.names=["display-flex","inline-flex"];ev.exports=tf});var iv=x((kL,rv)=>{u();var RR=He(),rf=class extends RR{constructor(e,t){super(e,t);e==="display-grid"&&(this.name="grid")}check(e){return e.prop==="display"&&e.value===this.name}};rf.names=["display-grid","inline-grid"];rv.exports=rf});var sv=x((SL,nv)=>{u();var PR=He(),nf=class extends PR{constructor(e,t){super(e,t);e==="filter-function"&&(this.name="filter")}};nf.names=["filter","filter-function"];nv.exports=nf});var uv=x((AL,lv)=>{u();var av=Ni(),z=j(),ov=zy(),IR=ab(),DR=ou(),qR=Cb(),sf=Mt(),Pr=kr(),$R=Db(),ut=He(),Ir=_e(),LR=$b(),MR=Mb(),NR=Bb(),BR=jb(),FR=Wb(),jR=Yb(),zR=Xb(),UR=Jb(),VR=tw(),HR=iw(),WR=sw(),GR=ow(),QR=uw(),YR=cw(),KR=dw(),XR=gw(),ZR=bw(),JR=xw(),e5=Sw(),t5=Cw(),r5=Ow(),i5=Rw(),n5=Dw(),s5=$w(),a5=Mw(),o5=Bw(),l5=jw(),u5=Vw(),f5=Ww(),c5=Qw(),p5=Kw(),d5=Zw(),h5=e0(),m5=r0(),g5=s0(),y5=o0(),b5=u0(),w5=c0(),v5=d0(),x5=g0(),k5=b0(),S5=v0(),A5=S0(),C5=C0(),_5=E0(),E5=R0(),O5=I0(),T5=q0(),R5=U0(),P5=W0(),I5=Y0(),D5=X0(),q5=J0(),$5=tv(),L5=iv(),M5=sv();Pr.hack(LR);Pr.hack(MR);Pr.hack(NR);Pr.hack(BR);z.hack(FR);z.hack(jR);z.hack(zR);z.hack(UR);z.hack(VR);z.hack(HR);z.hack(WR);z.hack(GR);z.hack(QR);z.hack(YR);z.hack(KR);z.hack(XR);z.hack(ZR);z.hack(JR);z.hack(e5);z.hack(t5);z.hack(r5);z.hack(i5);z.hack(n5);z.hack(s5);z.hack(a5);z.hack(o5);z.hack(l5);z.hack(u5);z.hack(f5);z.hack(c5);z.hack(p5);z.hack(d5);z.hack(h5);z.hack(m5);z.hack(g5);z.hack(y5);z.hack(b5);z.hack(w5);z.hack(v5);z.hack(x5);z.hack(k5);z.hack(S5);z.hack(A5);z.hack(C5);z.hack(_5);z.hack(E5);z.hack(O5);z.hack(T5);ut.hack(R5);ut.hack(P5);ut.hack(I5);ut.hack(D5);ut.hack(q5);ut.hack($5);ut.hack(L5);ut.hack(M5);var af=new Map,Fi=class{constructor(e,t,i={}){this.data=e,this.browsers=t,this.options=i,[this.add,this.remove]=this.preprocess(this.select(this.data)),this.transition=new IR(this),this.processor=new DR(this)}cleaner(){if(this.cleanerCache)return this.cleanerCache;if(this.browsers.selected.length){let e=new sf(this.browsers.data,[]);this.cleanerCache=new Fi(this.data,e,this.options)}else return this;return this.cleanerCache}select(e){let t={add:{},remove:{}};for(let i in e){let n=e[i],s=n.browsers.map(l=>{let c=l.split(" ");return{browser:`${c[0]} ${c[1]}`,note:c[2]}}),a=s.filter(l=>l.note).map(l=>`${this.browsers.prefix(l.browser)} ${l.note}`);a=Ir.uniq(a),s=s.filter(l=>this.browsers.isSelected(l.browser)).map(l=>{let c=this.browsers.prefix(l.browser);return l.note?`${c} ${l.note}`:c}),s=this.sort(Ir.uniq(s)),this.options.flexbox==="no-2009"&&(s=s.filter(l=>!l.includes("2009")));let o=n.browsers.map(l=>this.browsers.prefix(l));n.mistakes&&(o=o.concat(n.mistakes)),o=o.concat(a),o=Ir.uniq(o),s.length?(t.add[i]=s,s.length!s.includes(l)))):t.remove[i]=o}return t}sort(e){return e.sort((t,i)=>{let n=Ir.removeNote(t).length,s=Ir.removeNote(i).length;return n===s?i.length-t.length:s-n})}preprocess(e){let t={selectors:[],"@supports":new qR(Fi,this)};for(let n in e.add){let s=e.add[n];if(n==="@keyframes"||n==="@viewport")t[n]=new $R(n,s,this);else if(n==="@resolution")t[n]=new ov(n,s,this);else if(this.data[n].selector)t.selectors.push(Pr.load(n,s,this));else{let a=this.data[n].props;if(a){let o=ut.load(n,s,this);for(let l of a)t[l]||(t[l]={values:[]}),t[l].values.push(o)}else{let o=t[n]&&t[n].values||[];t[n]=z.load(n,s,this),t[n].values=o}}}let i={selectors:[]};for(let n in e.remove){let s=e.remove[n];if(this.data[n].selector){let a=Pr.load(n,s);for(let o of s)i.selectors.push(a.old(o))}else if(n==="@keyframes"||n==="@viewport")for(let a of s){let o=`@${a}${n.slice(1)}`;i[o]={remove:!0}}else if(n==="@resolution")i[n]=new ov(n,s,this);else{let a=this.data[n].props;if(a){let o=ut.load(n,[],this);for(let l of s){let c=o.old(l);if(c)for(let f of a)i[f]||(i[f]={}),i[f].values||(i[f].values=[]),i[f].values.push(c)}}else for(let o of s){let l=this.decl(n).old(n,o);if(n==="align-self"){let c=t[n]&&t[n].prefixes;if(c){if(o==="-webkit- 2009"&&c.includes("-webkit-"))continue;if(o==="-webkit-"&&c.includes("-webkit- 2009"))continue}}for(let c of l)i[c]||(i[c]={}),i[c].remove=!0}}}return[t,i]}decl(e){return af.has(e)||af.set(e,z.load(e)),af.get(e)}unprefixed(e){let t=this.normalize(av.unprefixed(e));return t==="flex-direction"&&(t="flex-flow"),t}normalize(e){return this.decl(e).normalize(e)}prefixed(e,t){return e=av.unprefixed(e),this.decl(e).prefixed(e,t)}values(e,t){let i=this[e],n=i["*"]&&i["*"].values,s=i[t]&&i[t].values;return n&&s?Ir.uniq(n.concat(s)):n||s||[]}group(e){let t=e.parent,i=t.index(e),{length:n}=t.nodes,s=this.unprefixed(e.prop),a=(o,l)=>{for(i+=o;i>=0&&i{u();fv.exports={"backdrop-filter":{feature:"css-backdrop-filter",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","safari 16.5"]},element:{props:["background","background-image","border-image","mask","list-style","list-style-image","content","mask-image"],feature:"css-element-function",browsers:["firefox 114"]},"user-select":{mistakes:["-khtml-"],feature:"user-select-none",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","safari 16.5"]},"background-clip":{feature:"background-clip-text",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},hyphens:{feature:"css-hyphens",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","safari 16.5"]},fill:{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"fill-available":{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},stretch:{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["firefox 114"]},"fit-content":{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["firefox 114"]},"text-decoration-style":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration-color":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration-line":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration-skip":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration-skip-ink":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-size-adjust":{feature:"text-size-adjust",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"mask-clip":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-composite":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-image":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-origin":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-repeat":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-repeat":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-source":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},mask:{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-position":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-size":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-outset":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-width":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-slice":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"clip-path":{feature:"css-clip-path",browsers:["samsung 21"]},"box-decoration-break":{feature:"css-boxdecorationbreak",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","opera 99","safari 16.5","samsung 21"]},appearance:{feature:"css-appearance",browsers:["samsung 21"]},"image-set":{props:["background","background-image","border-image","cursor","mask","mask-image","list-style","list-style-image","content"],feature:"css-image-set",browsers:["and_uc 15.5","chrome 109","samsung 21"]},"cross-fade":{props:["background","background-image","border-image","mask","list-style","list-style-image","content","mask-image"],feature:"css-cross-fade",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},isolate:{props:["unicode-bidi"],feature:"css-unicode-bidi",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","safari 16.5"]},"color-adjust":{feature:"css-color-adjust",browsers:["chrome 109","chrome 113","chrome 114","edge 114","opera 99"]}}});var dv=x((_L,pv)=>{u();pv.exports={}});var yv=x((EL,gv)=>{u();var N5=Yl(),{agents:B5}=(Ps(),Rs),of=Oy(),F5=Mt(),j5=uv(),z5=cv(),U5=dv(),hv={browsers:B5,prefixes:z5},mv=` + Replace Autoprefixer \`browsers\` option to Browserslist config. + Use \`browserslist\` key in \`package.json\` or \`.browserslistrc\` file. + + Using \`browsers\` option can cause errors. Browserslist config can + be used for Babel, Autoprefixer, postcss-normalize and other tools. + + If you really need to use option, rename it to \`overrideBrowserslist\`. + + Learn more at: + https://github.com/browserslist/browserslist#readme + https://twitter.com/browserslist + +`;function V5(r){return Object.prototype.toString.apply(r)==="[object Object]"}var lf=new Map;function H5(r,e){e.browsers.selected.length!==0&&(e.add.selectors.length>0||Object.keys(e.add).length>2||r.warn(`Autoprefixer target browsers do not need any prefixes.You do not need Autoprefixer anymore. +Check your Browserslist config to be sure that your targets are set up correctly. + + Learn more at: + https://github.com/postcss/autoprefixer#readme + https://github.com/browserslist/browserslist#readme + +`))}gv.exports=Dr;function Dr(...r){let e;if(r.length===1&&V5(r[0])?(e=r[0],r=void 0):r.length===0||r.length===1&&!r[0]?r=void 0:r.length<=2&&(Array.isArray(r[0])||!r[0])?(e=r[1],r=r[0]):typeof r[r.length-1]=="object"&&(e=r.pop()),e||(e={}),e.browser)throw new Error("Change `browser` option to `overrideBrowserslist` in Autoprefixer");if(e.browserslist)throw new Error("Change `browserslist` option to `overrideBrowserslist` in Autoprefixer");e.overrideBrowserslist?r=e.overrideBrowserslist:e.browsers&&(typeof console!="undefined"&&console.warn&&(of.red?console.warn(of.red(mv.replace(/`[^`]+`/g,n=>of.yellow(n.slice(1,-1))))):console.warn(mv)),r=e.browsers);let t={ignoreUnknownVersions:e.ignoreUnknownVersions,stats:e.stats,env:e.env};function i(n){let s=hv,a=new F5(s.browsers,r,n,t),o=a.selected.join(", ")+JSON.stringify(e);return lf.has(o)||lf.set(o,new j5(s.prefixes,a,e)),lf.get(o)}return{postcssPlugin:"autoprefixer",prepare(n){let s=i({from:n.opts.from,env:e.env});return{OnceExit(a){H5(n,s),e.remove!==!1&&s.processor.remove(a,n),e.add!==!1&&s.processor.add(a,n)}}},info(n){return n=n||{},n.from=n.from||m.cwd(),U5(i(n))},options:e,browsers:r}}Dr.postcss=!0;Dr.data=hv;Dr.defaults=N5.defaults;Dr.info=()=>Dr().info()});var bv={};Ge(bv,{default:()=>W5});var W5,wv=P(()=>{u();W5=[]});var xv={};Ge(xv,{default:()=>G5});var vv,G5,kv=P(()=>{u();Xi();vv=pe(rn()),G5=St(vv.default.theme)});var Av={};Ge(Av,{default:()=>Q5});var Sv,Q5,Cv=P(()=>{u();Xi();Sv=pe(rn()),Q5=St(Sv.default)});u();"use strict";var Y5=vt(_y()),K5=vt($e()),X5=vt(yv()),Z5=vt((wv(),bv)),J5=vt((kv(),xv)),eP=vt((Cv(),Av)),tP=vt((Vs(),_f)),rP=vt((al(),sl)),iP=vt((sa(),sc));function vt(r){return r&&r.__esModule?r:{default:r}}console.warn("cdn.tailwindcss.com should not be used in production. To use Tailwind CSS in production, install it as a PostCSS plugin or use the Tailwind CLI: https://tailwindcss.com/docs/installation");var Ns="tailwind",uf="text/tailwindcss",_v="/template.html",Yt,Ev=!0,Ov=0,ff=new Set,cf,Tv="",Rv=(r=!1)=>({get(e,t){return(!r||t==="config")&&typeof e[t]=="object"&&e[t]!==null?new Proxy(e[t],Rv()):e[t]},set(e,t,i){return e[t]=i,(!r||t==="config")&&pf(!0),!0}});window[Ns]=new Proxy({config:{},defaultTheme:J5.default,defaultConfig:eP.default,colors:tP.default,plugin:rP.default,resolveConfig:iP.default},Rv(!0));function Pv(r){cf.observe(r,{attributes:!0,attributeFilter:["type"],characterData:!0,subtree:!0,childList:!0})}new MutationObserver(async r=>{let e=!1;if(!cf){cf=new MutationObserver(async()=>await pf(!0));for(let t of document.querySelectorAll(`style[type="${uf}"]`))Pv(t)}for(let t of r)for(let i of t.addedNodes)i.nodeType===1&&i.tagName==="STYLE"&&i.getAttribute("type")===uf&&(Pv(i),e=!0);await pf(e)}).observe(document.documentElement,{attributes:!0,attributeFilter:["class"],childList:!0,subtree:!0});async function pf(r=!1){r&&(Ov++,ff.clear());let e="";for(let i of document.querySelectorAll(`style[type="${uf}"]`))e+=i.textContent;let t=new Set;for(let i of document.querySelectorAll("[class]"))for(let n of i.classList)ff.has(n)||t.add(n);if(document.body&&(Ev||t.size>0||e!==Tv||!Yt||!Yt.isConnected)){for(let n of t)ff.add(n);Ev=!1,Tv=e,self[_v]=Array.from(t).join(" ");let{css:i}=await(0,K5.default)([(0,Y5.default)({...window[Ns].config,_hash:Ov,content:{files:[_v],extract:{html:n=>n.split(" ")}},plugins:[...Z5.default,...Array.isArray(window[Ns].config.plugins)?window[Ns].config.plugins:[]]}),(0,X5.default)({remove:!1})]).process(`@tailwind base;@tailwind components;@tailwind utilities;${e}`);(!Yt||!Yt.isConnected)&&(Yt=document.createElement("style"),document.head.append(Yt)),Yt.textContent=i}}})(); +/*! + * fill-range + * + * Copyright (c) 2014-present, Jon Schlinkert. + * Licensed under the MIT License. + */ +/*! + * is-number + * + * Copyright (c) 2014-present, Jon Schlinkert. + * Released under the MIT License. + */ +/*! + * to-regex-range + * + * Copyright (c) 2015-present, Jon Schlinkert. + * Released under the MIT License. + */ +/*! https://mths.be/cssesc v3.0.0 by @mathias */ diff --git a/agentic_security/static/technopollas.css b/agentic_security/static/technopollas.css new file mode 100644 index 0000000..bad01cc --- /dev/null +++ b/agentic_security/static/technopollas.css @@ -0,0 +1,8 @@ +@font-face { + font-family: 'Technopollas'; + font-style: normal; + font-weight: 400; + src: local('Technopollas'), url('https://fonts.cdnfonts.com/s/72836/Technopollas.woff') format('woff'); +} + + diff --git a/agentic_security/static/vue.js b/agentic_security/static/vue.js new file mode 100644 index 0000000..919aa12 --- /dev/null +++ b/agentic_security/static/vue.js @@ -0,0 +1,11965 @@ +/*! + * Vue.js v2.6.12 + * (c) 2014-2020 Evan You + * Released under the MIT License. + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : + typeof define === 'function' && define.amd ? define(factory) : + (global = global || self, global.Vue = factory()); +}(this, function () { 'use strict'; + + /* */ + + var emptyObject = Object.freeze({}); + + // These helpers produce better VM code in JS engines due to their + // explicitness and function inlining. + function isUndef (v) { + return v === undefined || v === null + } + + function isDef (v) { + return v !== undefined && v !== null + } + + function isTrue (v) { + return v === true + } + + function isFalse (v) { + return v === false + } + + /** + * Check if value is primitive. + */ + function isPrimitive (value) { + return ( + typeof value === 'string' || + typeof value === 'number' || + // $flow-disable-line + typeof value === 'symbol' || + typeof value === 'boolean' + ) + } + + /** + * Quick object check - this is primarily used to tell + * Objects from primitive values when we know the value + * is a JSON-compliant type. + */ + function isObject (obj) { + return obj !== null && typeof obj === 'object' + } + + /** + * Get the raw type string of a value, e.g., [object Object]. + */ + var _toString = Object.prototype.toString; + + function toRawType (value) { + return _toString.call(value).slice(8, -1) + } + + /** + * Strict object type check. Only returns true + * for plain JavaScript objects. + */ + function isPlainObject (obj) { + return _toString.call(obj) === '[object Object]' + } + + function isRegExp (v) { + return _toString.call(v) === '[object RegExp]' + } + + /** + * Check if val is a valid array index. + */ + function isValidArrayIndex (val) { + var n = parseFloat(String(val)); + return n >= 0 && Math.floor(n) === n && isFinite(val) + } + + function isPromise (val) { + return ( + isDef(val) && + typeof val.then === 'function' && + typeof val.catch === 'function' + ) + } + + /** + * Convert a value to a string that is actually rendered. + */ + function toString (val) { + return val == null + ? '' + : Array.isArray(val) || (isPlainObject(val) && val.toString === _toString) + ? JSON.stringify(val, null, 2) + : String(val) + } + + /** + * Convert an input value to a number for persistence. + * If the conversion fails, return original string. + */ + function toNumber (val) { + var n = parseFloat(val); + return isNaN(n) ? val : n + } + + /** + * Make a map and return a function for checking if a key + * is in that map. + */ + function makeMap ( + str, + expectsLowerCase + ) { + var map = Object.create(null); + var list = str.split(','); + for (var i = 0; i < list.length; i++) { + map[list[i]] = true; + } + return expectsLowerCase + ? function (val) { return map[val.toLowerCase()]; } + : function (val) { return map[val]; } + } + + /** + * Check if a tag is a built-in tag. + */ + var isBuiltInTag = makeMap('slot,component', true); + + /** + * Check if an attribute is a reserved attribute. + */ + var isReservedAttribute = makeMap('key,ref,slot,slot-scope,is'); + + /** + * Remove an item from an array. + */ + function remove (arr, item) { + if (arr.length) { + var index = arr.indexOf(item); + if (index > -1) { + return arr.splice(index, 1) + } + } + } + + /** + * Check whether an object has the property. + */ + var hasOwnProperty = Object.prototype.hasOwnProperty; + function hasOwn (obj, key) { + return hasOwnProperty.call(obj, key) + } + + /** + * Create a cached version of a pure function. + */ + function cached (fn) { + var cache = Object.create(null); + return (function cachedFn (str) { + var hit = cache[str]; + return hit || (cache[str] = fn(str)) + }) + } + + /** + * Camelize a hyphen-delimited string. + */ + var camelizeRE = /-(\w)/g; + var camelize = cached(function (str) { + return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; }) + }); + + /** + * Capitalize a string. + */ + var capitalize = cached(function (str) { + return str.charAt(0).toUpperCase() + str.slice(1) + }); + + /** + * Hyphenate a camelCase string. + */ + var hyphenateRE = /\B([A-Z])/g; + var hyphenate = cached(function (str) { + return str.replace(hyphenateRE, '-$1').toLowerCase() + }); + + /** + * Simple bind polyfill for environments that do not support it, + * e.g., PhantomJS 1.x. Technically, we don't need this anymore + * since native bind is now performant enough in most browsers. + * But removing it would mean breaking code that was able to run in + * PhantomJS 1.x, so this must be kept for backward compatibility. + */ + + /* istanbul ignore next */ + function polyfillBind (fn, ctx) { + function boundFn (a) { + var l = arguments.length; + return l + ? l > 1 + ? fn.apply(ctx, arguments) + : fn.call(ctx, a) + : fn.call(ctx) + } + + boundFn._length = fn.length; + return boundFn + } + + function nativeBind (fn, ctx) { + return fn.bind(ctx) + } + + var bind = Function.prototype.bind + ? nativeBind + : polyfillBind; + + /** + * Convert an Array-like object to a real Array. + */ + function toArray (list, start) { + start = start || 0; + var i = list.length - start; + var ret = new Array(i); + while (i--) { + ret[i] = list[i + start]; + } + return ret + } + + /** + * Mix properties into target object. + */ + function extend (to, _from) { + for (var key in _from) { + to[key] = _from[key]; + } + return to + } + + /** + * Merge an Array of Objects into a single Object. + */ + function toObject (arr) { + var res = {}; + for (var i = 0; i < arr.length; i++) { + if (arr[i]) { + extend(res, arr[i]); + } + } + return res + } + + /* eslint-disable no-unused-vars */ + + /** + * Perform no operation. + * Stubbing args to make Flow happy without leaving useless transpiled code + * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/). + */ + function noop (a, b, c) {} + + /** + * Always return false. + */ + var no = function (a, b, c) { return false; }; + + /* eslint-enable no-unused-vars */ + + /** + * Return the same value. + */ + var identity = function (_) { return _; }; + + /** + * Generate a string containing static keys from compiler modules. + */ + function genStaticKeys (modules) { + return modules.reduce(function (keys, m) { + return keys.concat(m.staticKeys || []) + }, []).join(',') + } + + /** + * Check if two values are loosely equal - that is, + * if they are plain objects, do they have the same shape? + */ + function looseEqual (a, b) { + if (a === b) { return true } + var isObjectA = isObject(a); + var isObjectB = isObject(b); + if (isObjectA && isObjectB) { + try { + var isArrayA = Array.isArray(a); + var isArrayB = Array.isArray(b); + if (isArrayA && isArrayB) { + return a.length === b.length && a.every(function (e, i) { + return looseEqual(e, b[i]) + }) + } else if (a instanceof Date && b instanceof Date) { + return a.getTime() === b.getTime() + } else if (!isArrayA && !isArrayB) { + var keysA = Object.keys(a); + var keysB = Object.keys(b); + return keysA.length === keysB.length && keysA.every(function (key) { + return looseEqual(a[key], b[key]) + }) + } else { + /* istanbul ignore next */ + return false + } + } catch (e) { + /* istanbul ignore next */ + return false + } + } else if (!isObjectA && !isObjectB) { + return String(a) === String(b) + } else { + return false + } + } + + /** + * Return the first index at which a loosely equal value can be + * found in the array (if value is a plain object, the array must + * contain an object of the same shape), or -1 if it is not present. + */ + function looseIndexOf (arr, val) { + for (var i = 0; i < arr.length; i++) { + if (looseEqual(arr[i], val)) { return i } + } + return -1 + } + + /** + * Ensure a function is called only once. + */ + function once (fn) { + var called = false; + return function () { + if (!called) { + called = true; + fn.apply(this, arguments); + } + } + } + + var SSR_ATTR = 'data-server-rendered'; + + var ASSET_TYPES = [ + 'component', + 'directive', + 'filter' + ]; + + var LIFECYCLE_HOOKS = [ + 'beforeCreate', + 'created', + 'beforeMount', + 'mounted', + 'beforeUpdate', + 'updated', + 'beforeDestroy', + 'destroyed', + 'activated', + 'deactivated', + 'errorCaptured', + 'serverPrefetch' + ]; + + /* */ + + + + var config = ({ + /** + * Option merge strategies (used in core/util/options) + */ + // $flow-disable-line + optionMergeStrategies: Object.create(null), + + /** + * Whether to suppress warnings. + */ + silent: false, + + /** + * Show production mode tip message on boot? + */ + productionTip: "development" !== 'production', + + /** + * Whether to enable devtools + */ + devtools: "development" !== 'production', + + /** + * Whether to record perf + */ + performance: false, + + /** + * Error handler for watcher errors + */ + errorHandler: null, + + /** + * Warn handler for watcher warns + */ + warnHandler: null, + + /** + * Ignore certain custom elements + */ + ignoredElements: [], + + /** + * Custom user key aliases for v-on + */ + // $flow-disable-line + keyCodes: Object.create(null), + + /** + * Check if a tag is reserved so that it cannot be registered as a + * component. This is platform-dependent and may be overwritten. + */ + isReservedTag: no, + + /** + * Check if an attribute is reserved so that it cannot be used as a component + * prop. This is platform-dependent and may be overwritten. + */ + isReservedAttr: no, + + /** + * Check if a tag is an unknown element. + * Platform-dependent. + */ + isUnknownElement: no, + + /** + * Get the namespace of an element + */ + getTagNamespace: noop, + + /** + * Parse the real tag name for the specific platform. + */ + parsePlatformTagName: identity, + + /** + * Check if an attribute must be bound using property, e.g. value + * Platform-dependent. + */ + mustUseProp: no, + + /** + * Perform updates asynchronously. Intended to be used by Vue Test Utils + * This will significantly reduce performance if set to false. + */ + async: true, + + /** + * Exposed for legacy reasons + */ + _lifecycleHooks: LIFECYCLE_HOOKS + }); + + /* */ + + /** + * unicode letters used for parsing html tags, component names and property paths. + * using https://www.w3.org/TR/html53/semantics-scripting.html#potentialcustomelementname + * skipping \u10000-\uEFFFF due to it freezing up PhantomJS + */ + var unicodeRegExp = /a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/; + + /** + * Check if a string starts with $ or _ + */ + function isReserved (str) { + var c = (str + '').charCodeAt(0); + return c === 0x24 || c === 0x5F + } + + /** + * Define a property. + */ + function def (obj, key, val, enumerable) { + Object.defineProperty(obj, key, { + value: val, + enumerable: !!enumerable, + writable: true, + configurable: true + }); + } + + /** + * Parse simple path. + */ + var bailRE = new RegExp(("[^" + (unicodeRegExp.source) + ".$_\\d]")); + function parsePath (path) { + if (bailRE.test(path)) { + return + } + var segments = path.split('.'); + return function (obj) { + for (var i = 0; i < segments.length; i++) { + if (!obj) { return } + obj = obj[segments[i]]; + } + return obj + } + } + + /* */ + + // can we use __proto__? + var hasProto = '__proto__' in {}; + + // Browser environment sniffing + var inBrowser = typeof window !== 'undefined'; + var inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform; + var weexPlatform = inWeex && WXEnvironment.platform.toLowerCase(); + var UA = inBrowser && window.navigator.userAgent.toLowerCase(); + var isIE = UA && /msie|trident/.test(UA); + var isIE9 = UA && UA.indexOf('msie 9.0') > 0; + var isEdge = UA && UA.indexOf('edge/') > 0; + var isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android'); + var isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios'); + var isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge; + var isPhantomJS = UA && /phantomjs/.test(UA); + var isFF = UA && UA.match(/firefox\/(\d+)/); + + // Firefox has a "watch" function on Object.prototype... + var nativeWatch = ({}).watch; + + var supportsPassive = false; + if (inBrowser) { + try { + var opts = {}; + Object.defineProperty(opts, 'passive', ({ + get: function get () { + /* istanbul ignore next */ + supportsPassive = true; + } + })); // https://github.com/facebook/flow/issues/285 + window.addEventListener('test-passive', null, opts); + } catch (e) {} + } + + // this needs to be lazy-evaled because vue may be required before + // vue-server-renderer can set VUE_ENV + var _isServer; + var isServerRendering = function () { + if (_isServer === undefined) { + /* istanbul ignore if */ + if (!inBrowser && !inWeex && typeof global !== 'undefined') { + // detect presence of vue-server-renderer and avoid + // Webpack shimming the process + _isServer = global['process'] && global['process'].env.VUE_ENV === 'server'; + } else { + _isServer = false; + } + } + return _isServer + }; + + // detect devtools + var devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__; + + /* istanbul ignore next */ + function isNative (Ctor) { + return typeof Ctor === 'function' && /native code/.test(Ctor.toString()) + } + + var hasSymbol = + typeof Symbol !== 'undefined' && isNative(Symbol) && + typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys); + + var _Set; + /* istanbul ignore if */ // $flow-disable-line + if (typeof Set !== 'undefined' && isNative(Set)) { + // use native Set when available. + _Set = Set; + } else { + // a non-standard Set polyfill that only works with primitive keys. + _Set = /*@__PURE__*/(function () { + function Set () { + this.set = Object.create(null); + } + Set.prototype.has = function has (key) { + return this.set[key] === true + }; + Set.prototype.add = function add (key) { + this.set[key] = true; + }; + Set.prototype.clear = function clear () { + this.set = Object.create(null); + }; + + return Set; + }()); + } + + /* */ + + var warn = noop; + var tip = noop; + var generateComponentTrace = (noop); // work around flow check + var formatComponentName = (noop); + + { + var hasConsole = typeof console !== 'undefined'; + var classifyRE = /(?:^|[-_])(\w)/g; + var classify = function (str) { return str + .replace(classifyRE, function (c) { return c.toUpperCase(); }) + .replace(/[-_]/g, ''); }; + + warn = function (msg, vm) { + var trace = vm ? generateComponentTrace(vm) : ''; + + if (config.warnHandler) { + config.warnHandler.call(null, msg, vm, trace); + } else if (hasConsole && (!config.silent)) { + console.error(("[Vue warn]: " + msg + trace)); + } + }; + + tip = function (msg, vm) { + if (hasConsole && (!config.silent)) { + console.warn("[Vue tip]: " + msg + ( + vm ? generateComponentTrace(vm) : '' + )); + } + }; + + formatComponentName = function (vm, includeFile) { + if (vm.$root === vm) { + return '' + } + var options = typeof vm === 'function' && vm.cid != null + ? vm.options + : vm._isVue + ? vm.$options || vm.constructor.options + : vm; + var name = options.name || options._componentTag; + var file = options.__file; + if (!name && file) { + var match = file.match(/([^/\\]+)\.vue$/); + name = match && match[1]; + } + + return ( + (name ? ("<" + (classify(name)) + ">") : "") + + (file && includeFile !== false ? (" at " + file) : '') + ) + }; + + var repeat = function (str, n) { + var res = ''; + while (n) { + if (n % 2 === 1) { res += str; } + if (n > 1) { str += str; } + n >>= 1; + } + return res + }; + + generateComponentTrace = function (vm) { + if (vm._isVue && vm.$parent) { + var tree = []; + var currentRecursiveSequence = 0; + while (vm) { + if (tree.length > 0) { + var last = tree[tree.length - 1]; + if (last.constructor === vm.constructor) { + currentRecursiveSequence++; + vm = vm.$parent; + continue + } else if (currentRecursiveSequence > 0) { + tree[tree.length - 1] = [last, currentRecursiveSequence]; + currentRecursiveSequence = 0; + } + } + tree.push(vm); + vm = vm.$parent; + } + return '\n\nfound in\n\n' + tree + .map(function (vm, i) { return ("" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm) + ? ((formatComponentName(vm[0])) + "... (" + (vm[1]) + " recursive calls)") + : formatComponentName(vm))); }) + .join('\n') + } else { + return ("\n\n(found in " + (formatComponentName(vm)) + ")") + } + }; + } + + /* */ + + var uid = 0; + + /** + * A dep is an observable that can have multiple + * directives subscribing to it. + */ + var Dep = function Dep () { + this.id = uid++; + this.subs = []; + }; + + Dep.prototype.addSub = function addSub (sub) { + this.subs.push(sub); + }; + + Dep.prototype.removeSub = function removeSub (sub) { + remove(this.subs, sub); + }; + + Dep.prototype.depend = function depend () { + if (Dep.target) { + Dep.target.addDep(this); + } + }; + + Dep.prototype.notify = function notify () { + // stabilize the subscriber list first + var subs = this.subs.slice(); + if (!config.async) { + // subs aren't sorted in scheduler if not running async + // we need to sort them now to make sure they fire in correct + // order + subs.sort(function (a, b) { return a.id - b.id; }); + } + for (var i = 0, l = subs.length; i < l; i++) { + subs[i].update(); + } + }; + + // The current target watcher being evaluated. + // This is globally unique because only one watcher + // can be evaluated at a time. + Dep.target = null; + var targetStack = []; + + function pushTarget (target) { + targetStack.push(target); + Dep.target = target; + } + + function popTarget () { + targetStack.pop(); + Dep.target = targetStack[targetStack.length - 1]; + } + + /* */ + + var VNode = function VNode ( + tag, + data, + children, + text, + elm, + context, + componentOptions, + asyncFactory + ) { + this.tag = tag; + this.data = data; + this.children = children; + this.text = text; + this.elm = elm; + this.ns = undefined; + this.context = context; + this.fnContext = undefined; + this.fnOptions = undefined; + this.fnScopeId = undefined; + this.key = data && data.key; + this.componentOptions = componentOptions; + this.componentInstance = undefined; + this.parent = undefined; + this.raw = false; + this.isStatic = false; + this.isRootInsert = true; + this.isComment = false; + this.isCloned = false; + this.isOnce = false; + this.asyncFactory = asyncFactory; + this.asyncMeta = undefined; + this.isAsyncPlaceholder = false; + }; + + var prototypeAccessors = { child: { configurable: true } }; + + // DEPRECATED: alias for componentInstance for backwards compat. + /* istanbul ignore next */ + prototypeAccessors.child.get = function () { + return this.componentInstance + }; + + Object.defineProperties( VNode.prototype, prototypeAccessors ); + + var createEmptyVNode = function (text) { + if ( text === void 0 ) text = ''; + + var node = new VNode(); + node.text = text; + node.isComment = true; + return node + }; + + function createTextVNode (val) { + return new VNode(undefined, undefined, undefined, String(val)) + } + + // optimized shallow clone + // used for static nodes and slot nodes because they may be reused across + // multiple renders, cloning them avoids errors when DOM manipulations rely + // on their elm reference. + function cloneVNode (vnode) { + var cloned = new VNode( + vnode.tag, + vnode.data, + // #7975 + // clone children array to avoid mutating original in case of cloning + // a child. + vnode.children && vnode.children.slice(), + vnode.text, + vnode.elm, + vnode.context, + vnode.componentOptions, + vnode.asyncFactory + ); + cloned.ns = vnode.ns; + cloned.isStatic = vnode.isStatic; + cloned.key = vnode.key; + cloned.isComment = vnode.isComment; + cloned.fnContext = vnode.fnContext; + cloned.fnOptions = vnode.fnOptions; + cloned.fnScopeId = vnode.fnScopeId; + cloned.asyncMeta = vnode.asyncMeta; + cloned.isCloned = true; + return cloned + } + + /* + * not type checking this file because flow doesn't play well with + * dynamically accessing methods on Array prototype + */ + + var arrayProto = Array.prototype; + var arrayMethods = Object.create(arrayProto); + + var methodsToPatch = [ + 'push', + 'pop', + 'shift', + 'unshift', + 'splice', + 'sort', + 'reverse' + ]; + + /** + * Intercept mutating methods and emit events + */ + methodsToPatch.forEach(function (method) { + // cache original method + var original = arrayProto[method]; + def(arrayMethods, method, function mutator () { + var args = [], len = arguments.length; + while ( len-- ) args[ len ] = arguments[ len ]; + + var result = original.apply(this, args); + var ob = this.__ob__; + var inserted; + switch (method) { + case 'push': + case 'unshift': + inserted = args; + break + case 'splice': + inserted = args.slice(2); + break + } + if (inserted) { ob.observeArray(inserted); } + // notify change + ob.dep.notify(); + return result + }); + }); + + /* */ + + var arrayKeys = Object.getOwnPropertyNames(arrayMethods); + + /** + * In some cases we may want to disable observation inside a component's + * update computation. + */ + var shouldObserve = true; + + function toggleObserving (value) { + shouldObserve = value; + } + + /** + * Observer class that is attached to each observed + * object. Once attached, the observer converts the target + * object's property keys into getter/setters that + * collect dependencies and dispatch updates. + */ + var Observer = function Observer (value) { + this.value = value; + this.dep = new Dep(); + this.vmCount = 0; + def(value, '__ob__', this); + if (Array.isArray(value)) { + if (hasProto) { + protoAugment(value, arrayMethods); + } else { + copyAugment(value, arrayMethods, arrayKeys); + } + this.observeArray(value); + } else { + this.walk(value); + } + }; + + /** + * Walk through all properties and convert them into + * getter/setters. This method should only be called when + * value type is Object. + */ + Observer.prototype.walk = function walk (obj) { + var keys = Object.keys(obj); + for (var i = 0; i < keys.length; i++) { + defineReactive$$1(obj, keys[i]); + } + }; + + /** + * Observe a list of Array items. + */ + Observer.prototype.observeArray = function observeArray (items) { + for (var i = 0, l = items.length; i < l; i++) { + observe(items[i]); + } + }; + + // helpers + + /** + * Augment a target Object or Array by intercepting + * the prototype chain using __proto__ + */ + function protoAugment (target, src) { + /* eslint-disable no-proto */ + target.__proto__ = src; + /* eslint-enable no-proto */ + } + + /** + * Augment a target Object or Array by defining + * hidden properties. + */ + /* istanbul ignore next */ + function copyAugment (target, src, keys) { + for (var i = 0, l = keys.length; i < l; i++) { + var key = keys[i]; + def(target, key, src[key]); + } + } + + /** + * Attempt to create an observer instance for a value, + * returns the new observer if successfully observed, + * or the existing observer if the value already has one. + */ + function observe (value, asRootData) { + if (!isObject(value) || value instanceof VNode) { + return + } + var ob; + if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) { + ob = value.__ob__; + } else if ( + shouldObserve && + !isServerRendering() && + (Array.isArray(value) || isPlainObject(value)) && + Object.isExtensible(value) && + !value._isVue + ) { + ob = new Observer(value); + } + if (asRootData && ob) { + ob.vmCount++; + } + return ob + } + + /** + * Define a reactive property on an Object. + */ + function defineReactive$$1 ( + obj, + key, + val, + customSetter, + shallow + ) { + var dep = new Dep(); + + var property = Object.getOwnPropertyDescriptor(obj, key); + if (property && property.configurable === false) { + return + } + + // cater for pre-defined getter/setters + var getter = property && property.get; + var setter = property && property.set; + if ((!getter || setter) && arguments.length === 2) { + val = obj[key]; + } + + var childOb = !shallow && observe(val); + Object.defineProperty(obj, key, { + enumerable: true, + configurable: true, + get: function reactiveGetter () { + var value = getter ? getter.call(obj) : val; + if (Dep.target) { + dep.depend(); + if (childOb) { + childOb.dep.depend(); + if (Array.isArray(value)) { + dependArray(value); + } + } + } + return value + }, + set: function reactiveSetter (newVal) { + var value = getter ? getter.call(obj) : val; + /* eslint-disable no-self-compare */ + if (newVal === value || (newVal !== newVal && value !== value)) { + return + } + /* eslint-enable no-self-compare */ + if (customSetter) { + customSetter(); + } + // #7981: for accessor properties without setter + if (getter && !setter) { return } + if (setter) { + setter.call(obj, newVal); + } else { + val = newVal; + } + childOb = !shallow && observe(newVal); + dep.notify(); + } + }); + } + + /** + * Set a property on an object. Adds the new property and + * triggers change notification if the property doesn't + * already exist. + */ + function set (target, key, val) { + if (isUndef(target) || isPrimitive(target) + ) { + warn(("Cannot set reactive property on undefined, null, or primitive value: " + ((target)))); + } + if (Array.isArray(target) && isValidArrayIndex(key)) { + target.length = Math.max(target.length, key); + target.splice(key, 1, val); + return val + } + if (key in target && !(key in Object.prototype)) { + target[key] = val; + return val + } + var ob = (target).__ob__; + if (target._isVue || (ob && ob.vmCount)) { + warn( + 'Avoid adding reactive properties to a Vue instance or its root $data ' + + 'at runtime - declare it upfront in the data option.' + ); + return val + } + if (!ob) { + target[key] = val; + return val + } + defineReactive$$1(ob.value, key, val); + ob.dep.notify(); + return val + } + + /** + * Delete a property and trigger change if necessary. + */ + function del (target, key) { + if (isUndef(target) || isPrimitive(target) + ) { + warn(("Cannot delete reactive property on undefined, null, or primitive value: " + ((target)))); + } + if (Array.isArray(target) && isValidArrayIndex(key)) { + target.splice(key, 1); + return + } + var ob = (target).__ob__; + if (target._isVue || (ob && ob.vmCount)) { + warn( + 'Avoid deleting properties on a Vue instance or its root $data ' + + '- just set it to null.' + ); + return + } + if (!hasOwn(target, key)) { + return + } + delete target[key]; + if (!ob) { + return + } + ob.dep.notify(); + } + + /** + * Collect dependencies on array elements when the array is touched, since + * we cannot intercept array element access like property getters. + */ + function dependArray (value) { + for (var e = (void 0), i = 0, l = value.length; i < l; i++) { + e = value[i]; + e && e.__ob__ && e.__ob__.dep.depend(); + if (Array.isArray(e)) { + dependArray(e); + } + } + } + + /* */ + + /** + * Option overwriting strategies are functions that handle + * how to merge a parent option value and a child option + * value into the final value. + */ + var strats = config.optionMergeStrategies; + + /** + * Options with restrictions + */ + { + strats.el = strats.propsData = function (parent, child, vm, key) { + if (!vm) { + warn( + "option \"" + key + "\" can only be used during instance " + + 'creation with the `new` keyword.' + ); + } + return defaultStrat(parent, child) + }; + } + + /** + * Helper that recursively merges two data objects together. + */ + function mergeData (to, from) { + if (!from) { return to } + var key, toVal, fromVal; + + var keys = hasSymbol + ? Reflect.ownKeys(from) + : Object.keys(from); + + for (var i = 0; i < keys.length; i++) { + key = keys[i]; + // in case the object is already observed... + if (key === '__ob__') { continue } + toVal = to[key]; + fromVal = from[key]; + if (!hasOwn(to, key)) { + set(to, key, fromVal); + } else if ( + toVal !== fromVal && + isPlainObject(toVal) && + isPlainObject(fromVal) + ) { + mergeData(toVal, fromVal); + } + } + return to + } + + /** + * Data + */ + function mergeDataOrFn ( + parentVal, + childVal, + vm + ) { + if (!vm) { + // in a Vue.extend merge, both should be functions + if (!childVal) { + return parentVal + } + if (!parentVal) { + return childVal + } + // when parentVal & childVal are both present, + // we need to return a function that returns the + // merged result of both functions... no need to + // check if parentVal is a function here because + // it has to be a function to pass previous merges. + return function mergedDataFn () { + return mergeData( + typeof childVal === 'function' ? childVal.call(this, this) : childVal, + typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal + ) + } + } else { + return function mergedInstanceDataFn () { + // instance merge + var instanceData = typeof childVal === 'function' + ? childVal.call(vm, vm) + : childVal; + var defaultData = typeof parentVal === 'function' + ? parentVal.call(vm, vm) + : parentVal; + if (instanceData) { + return mergeData(instanceData, defaultData) + } else { + return defaultData + } + } + } + } + + strats.data = function ( + parentVal, + childVal, + vm + ) { + if (!vm) { + if (childVal && typeof childVal !== 'function') { + warn( + 'The "data" option should be a function ' + + 'that returns a per-instance value in component ' + + 'definitions.', + vm + ); + + return parentVal + } + return mergeDataOrFn(parentVal, childVal) + } + + return mergeDataOrFn(parentVal, childVal, vm) + }; + + /** + * Hooks and props are merged as arrays. + */ + function mergeHook ( + parentVal, + childVal + ) { + var res = childVal + ? parentVal + ? parentVal.concat(childVal) + : Array.isArray(childVal) + ? childVal + : [childVal] + : parentVal; + return res + ? dedupeHooks(res) + : res + } + + function dedupeHooks (hooks) { + var res = []; + for (var i = 0; i < hooks.length; i++) { + if (res.indexOf(hooks[i]) === -1) { + res.push(hooks[i]); + } + } + return res + } + + LIFECYCLE_HOOKS.forEach(function (hook) { + strats[hook] = mergeHook; + }); + + /** + * Assets + * + * When a vm is present (instance creation), we need to do + * a three-way merge between constructor options, instance + * options and parent options. + */ + function mergeAssets ( + parentVal, + childVal, + vm, + key + ) { + var res = Object.create(parentVal || null); + if (childVal) { + assertObjectType(key, childVal, vm); + return extend(res, childVal) + } else { + return res + } + } + + ASSET_TYPES.forEach(function (type) { + strats[type + 's'] = mergeAssets; + }); + + /** + * Watchers. + * + * Watchers hashes should not overwrite one + * another, so we merge them as arrays. + */ + strats.watch = function ( + parentVal, + childVal, + vm, + key + ) { + // work around Firefox's Object.prototype.watch... + if (parentVal === nativeWatch) { parentVal = undefined; } + if (childVal === nativeWatch) { childVal = undefined; } + /* istanbul ignore if */ + if (!childVal) { return Object.create(parentVal || null) } + { + assertObjectType(key, childVal, vm); + } + if (!parentVal) { return childVal } + var ret = {}; + extend(ret, parentVal); + for (var key$1 in childVal) { + var parent = ret[key$1]; + var child = childVal[key$1]; + if (parent && !Array.isArray(parent)) { + parent = [parent]; + } + ret[key$1] = parent + ? parent.concat(child) + : Array.isArray(child) ? child : [child]; + } + return ret + }; + + /** + * Other object hashes. + */ + strats.props = + strats.methods = + strats.inject = + strats.computed = function ( + parentVal, + childVal, + vm, + key + ) { + if (childVal && "development" !== 'production') { + assertObjectType(key, childVal, vm); + } + if (!parentVal) { return childVal } + var ret = Object.create(null); + extend(ret, parentVal); + if (childVal) { extend(ret, childVal); } + return ret + }; + strats.provide = mergeDataOrFn; + + /** + * Default strategy. + */ + var defaultStrat = function (parentVal, childVal) { + return childVal === undefined + ? parentVal + : childVal + }; + + /** + * Validate component names + */ + function checkComponents (options) { + for (var key in options.components) { + validateComponentName(key); + } + } + + function validateComponentName (name) { + if (!new RegExp(("^[a-zA-Z][\\-\\.0-9_" + (unicodeRegExp.source) + "]*$")).test(name)) { + warn( + 'Invalid component name: "' + name + '". Component names ' + + 'should conform to valid custom element name in html5 specification.' + ); + } + if (isBuiltInTag(name) || config.isReservedTag(name)) { + warn( + 'Do not use built-in or reserved HTML elements as component ' + + 'id: ' + name + ); + } + } + + /** + * Ensure all props option syntax are normalized into the + * Object-based format. + */ + function normalizeProps (options, vm) { + var props = options.props; + if (!props) { return } + var res = {}; + var i, val, name; + if (Array.isArray(props)) { + i = props.length; + while (i--) { + val = props[i]; + if (typeof val === 'string') { + name = camelize(val); + res[name] = { type: null }; + } else { + warn('props must be strings when using array syntax.'); + } + } + } else if (isPlainObject(props)) { + for (var key in props) { + val = props[key]; + name = camelize(key); + res[name] = isPlainObject(val) + ? val + : { type: val }; + } + } else { + warn( + "Invalid value for option \"props\": expected an Array or an Object, " + + "but got " + (toRawType(props)) + ".", + vm + ); + } + options.props = res; + } + + /** + * Normalize all injections into Object-based format + */ + function normalizeInject (options, vm) { + var inject = options.inject; + if (!inject) { return } + var normalized = options.inject = {}; + if (Array.isArray(inject)) { + for (var i = 0; i < inject.length; i++) { + normalized[inject[i]] = { from: inject[i] }; + } + } else if (isPlainObject(inject)) { + for (var key in inject) { + var val = inject[key]; + normalized[key] = isPlainObject(val) + ? extend({ from: key }, val) + : { from: val }; + } + } else { + warn( + "Invalid value for option \"inject\": expected an Array or an Object, " + + "but got " + (toRawType(inject)) + ".", + vm + ); + } + } + + /** + * Normalize raw function directives into object format. + */ + function normalizeDirectives (options) { + var dirs = options.directives; + if (dirs) { + for (var key in dirs) { + var def$$1 = dirs[key]; + if (typeof def$$1 === 'function') { + dirs[key] = { bind: def$$1, update: def$$1 }; + } + } + } + } + + function assertObjectType (name, value, vm) { + if (!isPlainObject(value)) { + warn( + "Invalid value for option \"" + name + "\": expected an Object, " + + "but got " + (toRawType(value)) + ".", + vm + ); + } + } + + /** + * Merge two option objects into a new one. + * Core utility used in both instantiation and inheritance. + */ + function mergeOptions ( + parent, + child, + vm + ) { + { + checkComponents(child); + } + + if (typeof child === 'function') { + child = child.options; + } + + normalizeProps(child, vm); + normalizeInject(child, vm); + normalizeDirectives(child); + + // Apply extends and mixins on the child options, + // but only if it is a raw options object that isn't + // the result of another mergeOptions call. + // Only merged options has the _base property. + if (!child._base) { + if (child.extends) { + parent = mergeOptions(parent, child.extends, vm); + } + if (child.mixins) { + for (var i = 0, l = child.mixins.length; i < l; i++) { + parent = mergeOptions(parent, child.mixins[i], vm); + } + } + } + + var options = {}; + var key; + for (key in parent) { + mergeField(key); + } + for (key in child) { + if (!hasOwn(parent, key)) { + mergeField(key); + } + } + function mergeField (key) { + var strat = strats[key] || defaultStrat; + options[key] = strat(parent[key], child[key], vm, key); + } + return options + } + + /** + * Resolve an asset. + * This function is used because child instances need access + * to assets defined in its ancestor chain. + */ + function resolveAsset ( + options, + type, + id, + warnMissing + ) { + /* istanbul ignore if */ + if (typeof id !== 'string') { + return + } + var assets = options[type]; + // check local registration variations first + if (hasOwn(assets, id)) { return assets[id] } + var camelizedId = camelize(id); + if (hasOwn(assets, camelizedId)) { return assets[camelizedId] } + var PascalCaseId = capitalize(camelizedId); + if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] } + // fallback to prototype chain + var res = assets[id] || assets[camelizedId] || assets[PascalCaseId]; + if (warnMissing && !res) { + warn( + 'Failed to resolve ' + type.slice(0, -1) + ': ' + id, + options + ); + } + return res + } + + /* */ + + + + function validateProp ( + key, + propOptions, + propsData, + vm + ) { + var prop = propOptions[key]; + var absent = !hasOwn(propsData, key); + var value = propsData[key]; + // boolean casting + var booleanIndex = getTypeIndex(Boolean, prop.type); + if (booleanIndex > -1) { + if (absent && !hasOwn(prop, 'default')) { + value = false; + } else if (value === '' || value === hyphenate(key)) { + // only cast empty string / same name to boolean if + // boolean has higher priority + var stringIndex = getTypeIndex(String, prop.type); + if (stringIndex < 0 || booleanIndex < stringIndex) { + value = true; + } + } + } + // check default value + if (value === undefined) { + value = getPropDefaultValue(vm, prop, key); + // since the default value is a fresh copy, + // make sure to observe it. + var prevShouldObserve = shouldObserve; + toggleObserving(true); + observe(value); + toggleObserving(prevShouldObserve); + } + { + assertProp(prop, key, value, vm, absent); + } + return value + } + + /** + * Get the default value of a prop. + */ + function getPropDefaultValue (vm, prop, key) { + // no default, return undefined + if (!hasOwn(prop, 'default')) { + return undefined + } + var def = prop.default; + // warn against non-factory defaults for Object & Array + if (isObject(def)) { + warn( + 'Invalid default value for prop "' + key + '": ' + + 'Props with type Object/Array must use a factory function ' + + 'to return the default value.', + vm + ); + } + // the raw prop value was also undefined from previous render, + // return previous default value to avoid unnecessary watcher trigger + if (vm && vm.$options.propsData && + vm.$options.propsData[key] === undefined && + vm._props[key] !== undefined + ) { + return vm._props[key] + } + // call factory function for non-Function types + // a value is Function if its prototype is function even across different execution context + return typeof def === 'function' && getType(prop.type) !== 'Function' + ? def.call(vm) + : def + } + + /** + * Assert whether a prop is valid. + */ + function assertProp ( + prop, + name, + value, + vm, + absent + ) { + if (prop.required && absent) { + warn( + 'Missing required prop: "' + name + '"', + vm + ); + return + } + if (value == null && !prop.required) { + return + } + var type = prop.type; + var valid = !type || type === true; + var expectedTypes = []; + if (type) { + if (!Array.isArray(type)) { + type = [type]; + } + for (var i = 0; i < type.length && !valid; i++) { + var assertedType = assertType(value, type[i]); + expectedTypes.push(assertedType.expectedType || ''); + valid = assertedType.valid; + } + } + + if (!valid) { + warn( + getInvalidTypeMessage(name, value, expectedTypes), + vm + ); + return + } + var validator = prop.validator; + if (validator) { + if (!validator(value)) { + warn( + 'Invalid prop: custom validator check failed for prop "' + name + '".', + vm + ); + } + } + } + + var simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/; + + function assertType (value, type) { + var valid; + var expectedType = getType(type); + if (simpleCheckRE.test(expectedType)) { + var t = typeof value; + valid = t === expectedType.toLowerCase(); + // for primitive wrapper objects + if (!valid && t === 'object') { + valid = value instanceof type; + } + } else if (expectedType === 'Object') { + valid = isPlainObject(value); + } else if (expectedType === 'Array') { + valid = Array.isArray(value); + } else { + valid = value instanceof type; + } + return { + valid: valid, + expectedType: expectedType + } + } + + /** + * Use function string name to check built-in types, + * because a simple equality check will fail when running + * across different vms / iframes. + */ + function getType (fn) { + var match = fn && fn.toString().match(/^\s*function (\w+)/); + return match ? match[1] : '' + } + + function isSameType (a, b) { + return getType(a) === getType(b) + } + + function getTypeIndex (type, expectedTypes) { + if (!Array.isArray(expectedTypes)) { + return isSameType(expectedTypes, type) ? 0 : -1 + } + for (var i = 0, len = expectedTypes.length; i < len; i++) { + if (isSameType(expectedTypes[i], type)) { + return i + } + } + return -1 + } + + function getInvalidTypeMessage (name, value, expectedTypes) { + var message = "Invalid prop: type check failed for prop \"" + name + "\"." + + " Expected " + (expectedTypes.map(capitalize).join(', ')); + var expectedType = expectedTypes[0]; + var receivedType = toRawType(value); + var expectedValue = styleValue(value, expectedType); + var receivedValue = styleValue(value, receivedType); + // check if we need to specify expected value + if (expectedTypes.length === 1 && + isExplicable(expectedType) && + !isBoolean(expectedType, receivedType)) { + message += " with value " + expectedValue; + } + message += ", got " + receivedType + " "; + // check if we need to specify received value + if (isExplicable(receivedType)) { + message += "with value " + receivedValue + "."; + } + return message + } + + function styleValue (value, type) { + if (type === 'String') { + return ("\"" + value + "\"") + } else if (type === 'Number') { + return ("" + (Number(value))) + } else { + return ("" + value) + } + } + + function isExplicable (value) { + var explicitTypes = ['string', 'number', 'boolean']; + return explicitTypes.some(function (elem) { return value.toLowerCase() === elem; }) + } + + function isBoolean () { + var args = [], len = arguments.length; + while ( len-- ) args[ len ] = arguments[ len ]; + + return args.some(function (elem) { return elem.toLowerCase() === 'boolean'; }) + } + + /* */ + + function handleError (err, vm, info) { + // Deactivate deps tracking while processing error handler to avoid possible infinite rendering. + // See: https://github.com/vuejs/vuex/issues/1505 + pushTarget(); + try { + if (vm) { + var cur = vm; + while ((cur = cur.$parent)) { + var hooks = cur.$options.errorCaptured; + if (hooks) { + for (var i = 0; i < hooks.length; i++) { + try { + var capture = hooks[i].call(cur, err, vm, info) === false; + if (capture) { return } + } catch (e) { + globalHandleError(e, cur, 'errorCaptured hook'); + } + } + } + } + } + globalHandleError(err, vm, info); + } finally { + popTarget(); + } + } + + function invokeWithErrorHandling ( + handler, + context, + args, + vm, + info + ) { + var res; + try { + res = args ? handler.apply(context, args) : handler.call(context); + if (res && !res._isVue && isPromise(res) && !res._handled) { + res.catch(function (e) { return handleError(e, vm, info + " (Promise/async)"); }); + // issue #9511 + // avoid catch triggering multiple times when nested calls + res._handled = true; + } + } catch (e) { + handleError(e, vm, info); + } + return res + } + + function globalHandleError (err, vm, info) { + if (config.errorHandler) { + try { + return config.errorHandler.call(null, err, vm, info) + } catch (e) { + // if the user intentionally throws the original error in the handler, + // do not log it twice + if (e !== err) { + logError(e, null, 'config.errorHandler'); + } + } + } + logError(err, vm, info); + } + + function logError (err, vm, info) { + { + warn(("Error in " + info + ": \"" + (err.toString()) + "\""), vm); + } + /* istanbul ignore else */ + if ((inBrowser || inWeex) && typeof console !== 'undefined') { + console.error(err); + } else { + throw err + } + } + + /* */ + + var isUsingMicroTask = false; + + var callbacks = []; + var pending = false; + + function flushCallbacks () { + pending = false; + var copies = callbacks.slice(0); + callbacks.length = 0; + for (var i = 0; i < copies.length; i++) { + copies[i](); + } + } + + // Here we have async deferring wrappers using microtasks. + // In 2.5 we used (macro) tasks (in combination with microtasks). + // However, it has subtle problems when state is changed right before repaint + // (e.g. #6813, out-in transitions). + // Also, using (macro) tasks in event handler would cause some weird behaviors + // that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109). + // So we now use microtasks everywhere, again. + // A major drawback of this tradeoff is that there are some scenarios + // where microtasks have too high a priority and fire in between supposedly + // sequential events (e.g. #4521, #6690, which have workarounds) + // or even between bubbling of the same event (#6566). + var timerFunc; + + // The nextTick behavior leverages the microtask queue, which can be accessed + // via either native Promise.then or MutationObserver. + // MutationObserver has wider support, however it is seriously bugged in + // UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It + // completely stops working after triggering a few times... so, if native + // Promise is available, we will use it: + /* istanbul ignore next, $flow-disable-line */ + if (typeof Promise !== 'undefined' && isNative(Promise)) { + var p = Promise.resolve(); + timerFunc = function () { + p.then(flushCallbacks); + // In problematic UIWebViews, Promise.then doesn't completely break, but + // it can get stuck in a weird state where callbacks are pushed into the + // microtask queue but the queue isn't being flushed, until the browser + // needs to do some other work, e.g. handle a timer. Therefore we can + // "force" the microtask queue to be flushed by adding an empty timer. + if (isIOS) { setTimeout(noop); } + }; + isUsingMicroTask = true; + } else if (!isIE && typeof MutationObserver !== 'undefined' && ( + isNative(MutationObserver) || + // PhantomJS and iOS 7.x + MutationObserver.toString() === '[object MutationObserverConstructor]' + )) { + // Use MutationObserver where native Promise is not available, + // e.g. PhantomJS, iOS7, Android 4.4 + // (#6466 MutationObserver is unreliable in IE11) + var counter = 1; + var observer = new MutationObserver(flushCallbacks); + var textNode = document.createTextNode(String(counter)); + observer.observe(textNode, { + characterData: true + }); + timerFunc = function () { + counter = (counter + 1) % 2; + textNode.data = String(counter); + }; + isUsingMicroTask = true; + } else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) { + // Fallback to setImmediate. + // Technically it leverages the (macro) task queue, + // but it is still a better choice than setTimeout. + timerFunc = function () { + setImmediate(flushCallbacks); + }; + } else { + // Fallback to setTimeout. + timerFunc = function () { + setTimeout(flushCallbacks, 0); + }; + } + + function nextTick (cb, ctx) { + var _resolve; + callbacks.push(function () { + if (cb) { + try { + cb.call(ctx); + } catch (e) { + handleError(e, ctx, 'nextTick'); + } + } else if (_resolve) { + _resolve(ctx); + } + }); + if (!pending) { + pending = true; + timerFunc(); + } + // $flow-disable-line + if (!cb && typeof Promise !== 'undefined') { + return new Promise(function (resolve) { + _resolve = resolve; + }) + } + } + + /* */ + + var mark; + var measure; + + { + var perf = inBrowser && window.performance; + /* istanbul ignore if */ + if ( + perf && + perf.mark && + perf.measure && + perf.clearMarks && + perf.clearMeasures + ) { + mark = function (tag) { return perf.mark(tag); }; + measure = function (name, startTag, endTag) { + perf.measure(name, startTag, endTag); + perf.clearMarks(startTag); + perf.clearMarks(endTag); + // perf.clearMeasures(name) + }; + } + } + + /* not type checking this file because flow doesn't play well with Proxy */ + + var initProxy; + + { + var allowedGlobals = makeMap( + 'Infinity,undefined,NaN,isFinite,isNaN,' + + 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' + + 'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' + + 'require' // for Webpack/Browserify + ); + + var warnNonPresent = function (target, key) { + warn( + "Property or method \"" + key + "\" is not defined on the instance but " + + 'referenced during render. Make sure that this property is reactive, ' + + 'either in the data option, or for class-based components, by ' + + 'initializing the property. ' + + 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.', + target + ); + }; + + var warnReservedPrefix = function (target, key) { + warn( + "Property \"" + key + "\" must be accessed with \"$data." + key + "\" because " + + 'properties starting with "$" or "_" are not proxied in the Vue instance to ' + + 'prevent conflicts with Vue internals. ' + + 'See: https://vuejs.org/v2/api/#data', + target + ); + }; + + var hasProxy = + typeof Proxy !== 'undefined' && isNative(Proxy); + + if (hasProxy) { + var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact'); + config.keyCodes = new Proxy(config.keyCodes, { + set: function set (target, key, value) { + if (isBuiltInModifier(key)) { + warn(("Avoid overwriting built-in modifier in config.keyCodes: ." + key)); + return false + } else { + target[key] = value; + return true + } + } + }); + } + + var hasHandler = { + has: function has (target, key) { + var has = key in target; + var isAllowed = allowedGlobals(key) || + (typeof key === 'string' && key.charAt(0) === '_' && !(key in target.$data)); + if (!has && !isAllowed) { + if (key in target.$data) { warnReservedPrefix(target, key); } + else { warnNonPresent(target, key); } + } + return has || !isAllowed + } + }; + + var getHandler = { + get: function get (target, key) { + if (typeof key === 'string' && !(key in target)) { + if (key in target.$data) { warnReservedPrefix(target, key); } + else { warnNonPresent(target, key); } + } + return target[key] + } + }; + + initProxy = function initProxy (vm) { + if (hasProxy) { + // determine which proxy handler to use + var options = vm.$options; + var handlers = options.render && options.render._withStripped + ? getHandler + : hasHandler; + vm._renderProxy = new Proxy(vm, handlers); + } else { + vm._renderProxy = vm; + } + }; + } + + /* */ + + var seenObjects = new _Set(); + + /** + * Recursively traverse an object to evoke all converted + * getters, so that every nested property inside the object + * is collected as a "deep" dependency. + */ + function traverse (val) { + _traverse(val, seenObjects); + seenObjects.clear(); + } + + function _traverse (val, seen) { + var i, keys; + var isA = Array.isArray(val); + if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) { + return + } + if (val.__ob__) { + var depId = val.__ob__.dep.id; + if (seen.has(depId)) { + return + } + seen.add(depId); + } + if (isA) { + i = val.length; + while (i--) { _traverse(val[i], seen); } + } else { + keys = Object.keys(val); + i = keys.length; + while (i--) { _traverse(val[keys[i]], seen); } + } + } + + /* */ + + var normalizeEvent = cached(function (name) { + var passive = name.charAt(0) === '&'; + name = passive ? name.slice(1) : name; + var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first + name = once$$1 ? name.slice(1) : name; + var capture = name.charAt(0) === '!'; + name = capture ? name.slice(1) : name; + return { + name: name, + once: once$$1, + capture: capture, + passive: passive + } + }); + + function createFnInvoker (fns, vm) { + function invoker () { + var arguments$1 = arguments; + + var fns = invoker.fns; + if (Array.isArray(fns)) { + var cloned = fns.slice(); + for (var i = 0; i < cloned.length; i++) { + invokeWithErrorHandling(cloned[i], null, arguments$1, vm, "v-on handler"); + } + } else { + // return handler return value for single handlers + return invokeWithErrorHandling(fns, null, arguments, vm, "v-on handler") + } + } + invoker.fns = fns; + return invoker + } + + function updateListeners ( + on, + oldOn, + add, + remove$$1, + createOnceHandler, + vm + ) { + var name, def$$1, cur, old, event; + for (name in on) { + def$$1 = cur = on[name]; + old = oldOn[name]; + event = normalizeEvent(name); + if (isUndef(cur)) { + warn( + "Invalid handler for event \"" + (event.name) + "\": got " + String(cur), + vm + ); + } else if (isUndef(old)) { + if (isUndef(cur.fns)) { + cur = on[name] = createFnInvoker(cur, vm); + } + if (isTrue(event.once)) { + cur = on[name] = createOnceHandler(event.name, cur, event.capture); + } + add(event.name, cur, event.capture, event.passive, event.params); + } else if (cur !== old) { + old.fns = cur; + on[name] = old; + } + } + for (name in oldOn) { + if (isUndef(on[name])) { + event = normalizeEvent(name); + remove$$1(event.name, oldOn[name], event.capture); + } + } + } + + /* */ + + function mergeVNodeHook (def, hookKey, hook) { + if (def instanceof VNode) { + def = def.data.hook || (def.data.hook = {}); + } + var invoker; + var oldHook = def[hookKey]; + + function wrappedHook () { + hook.apply(this, arguments); + // important: remove merged hook to ensure it's called only once + // and prevent memory leak + remove(invoker.fns, wrappedHook); + } + + if (isUndef(oldHook)) { + // no existing hook + invoker = createFnInvoker([wrappedHook]); + } else { + /* istanbul ignore if */ + if (isDef(oldHook.fns) && isTrue(oldHook.merged)) { + // already a merged invoker + invoker = oldHook; + invoker.fns.push(wrappedHook); + } else { + // existing plain hook + invoker = createFnInvoker([oldHook, wrappedHook]); + } + } + + invoker.merged = true; + def[hookKey] = invoker; + } + + /* */ + + function extractPropsFromVNodeData ( + data, + Ctor, + tag + ) { + // we are only extracting raw values here. + // validation and default values are handled in the child + // component itself. + var propOptions = Ctor.options.props; + if (isUndef(propOptions)) { + return + } + var res = {}; + var attrs = data.attrs; + var props = data.props; + if (isDef(attrs) || isDef(props)) { + for (var key in propOptions) { + var altKey = hyphenate(key); + { + var keyInLowerCase = key.toLowerCase(); + if ( + key !== keyInLowerCase && + attrs && hasOwn(attrs, keyInLowerCase) + ) { + tip( + "Prop \"" + keyInLowerCase + "\" is passed to component " + + (formatComponentName(tag || Ctor)) + ", but the declared prop name is" + + " \"" + key + "\". " + + "Note that HTML attributes are case-insensitive and camelCased " + + "props need to use their kebab-case equivalents when using in-DOM " + + "templates. You should probably use \"" + altKey + "\" instead of \"" + key + "\"." + ); + } + } + checkProp(res, props, key, altKey, true) || + checkProp(res, attrs, key, altKey, false); + } + } + return res + } + + function checkProp ( + res, + hash, + key, + altKey, + preserve + ) { + if (isDef(hash)) { + if (hasOwn(hash, key)) { + res[key] = hash[key]; + if (!preserve) { + delete hash[key]; + } + return true + } else if (hasOwn(hash, altKey)) { + res[key] = hash[altKey]; + if (!preserve) { + delete hash[altKey]; + } + return true + } + } + return false + } + + /* */ + + // The template compiler attempts to minimize the need for normalization by + // statically analyzing the template at compile time. + // + // For plain HTML markup, normalization can be completely skipped because the + // generated render function is guaranteed to return Array. There are + // two cases where extra normalization is needed: + + // 1. When the children contains components - because a functional component + // may return an Array instead of a single root. In this case, just a simple + // normalization is needed - if any child is an Array, we flatten the whole + // thing with Array.prototype.concat. It is guaranteed to be only 1-level deep + // because functional components already normalize their own children. + function simpleNormalizeChildren (children) { + for (var i = 0; i < children.length; i++) { + if (Array.isArray(children[i])) { + return Array.prototype.concat.apply([], children) + } + } + return children + } + + // 2. When the children contains constructs that always generated nested Arrays, + // e.g.