diff --git a/astrbot/bootstrap.py b/astrbot/bootstrap.py index 31963c53..0c17cc7c 100644 --- a/astrbot/bootstrap.py +++ b/astrbot/bootstrap.py @@ -2,27 +2,27 @@ import asyncio import traceback import os from astrbot.message.handler import MessageHandler -from astrbot.persist.helper import dbConn -from dashboard.server import AstrBotDashBoard +from astrbot.db.sqlite import SQLiteDatabase +from dashboard.server import AstrBotDashboard from model.command.manager import CommandManager from model.command.internal_handler import InternalCommandHandler from model.plugin.manager import PluginManager from model.platform.manager import PlatformManager from typing import Union from type.types import Context -from type.config import VERSION +from type.config import VERSION, DB_PATH from logging import Logger from util.cmd_config import AstrBotConfig, try_migrate from util.metrics import MetricUploader from util.updator.astrbot_updator import AstrBotUpdator from util.log import LogManager + logger: Logger = LogManager.GetLogger(log_name='astrbot') class AstrBotBootstrap(): def __init__(self) -> None: self.context = Context() - # load configs and ensure the backward compatibility try_migrate() self.config_helper = AstrBotConfig() @@ -59,15 +59,18 @@ class AstrBotBootstrap(): self.plugin_manager = PluginManager(self.context) self.updator = AstrBotUpdator() self.cmd_handler = InternalCommandHandler(self.command_manager, self.plugin_manager) - self.db_conn_helper = dbConn() + self.db_helper = SQLiteDatabase(DB_PATH) # load llm provider self.load_llm() - self.message_handler = MessageHandler(self.context, self.command_manager, self.db_conn_helper) + self.message_handler = MessageHandler(self.context, self.command_manager, self.db_helper) self.platfrom_manager = PlatformManager(self.context, self.message_handler) - self.dashboard = AstrBotDashBoard(self.context, plugin_manager=self.plugin_manager, astrbot_updator=self.updator) - self.metrics_uploader = MetricUploader(self.context) + self.dashboard = AstrBotDashboard(self.context, + plugin_manager=self.plugin_manager, + astrbot_updator=self.updator, + db_helper=self.db_helper) + self.metrics_uploader = MetricUploader(self.context, self.db_helper) self.context.metrics_uploader = self.metrics_uploader self.context.updator = self.updator @@ -76,9 +79,7 @@ class AstrBotBootstrap(): self.context.command_manager = self.command_manager # load dashboard - self.dashboard.run_http_server() - dashboard_ws_task = asyncio.create_task(self.dashboard.ws_server(), name="dashboard") - dashboard_log_task = asyncio.create_task(self.dashboard.log_consumer(), name="log") + dashboard_server_task = asyncio.create_task(self.dashboard.run(), name="dashboard") if self.test_mode: return @@ -91,8 +92,9 @@ class AstrBotBootstrap(): platform_tasks = self.load_platform() # load metrics uploader metrics_upload_task = asyncio.create_task(self.metrics_uploader.upload_metrics(), name="metrics-uploader") - - tasks = [metrics_upload_task, dashboard_ws_task, dashboard_log_task, *platform_tasks, *self.context.ext_tasks] + + log_task = asyncio.create_task(self.dashboard.lr._receive_log_task(), name="log") + tasks = [metrics_upload_task, dashboard_server_task, log_task, *platform_tasks, *self.context.ext_tasks] tasks = [self.handle_task(task) for task in tasks] await asyncio.gather(*tasks) @@ -115,12 +117,13 @@ class AstrBotBootstrap(): logger.info(f"加载 {len(llms)} 个 LLM Provider...") for llm in llms: if llm.enable: - if llm.name == "openai" and llm.key and llm.enable: + if llm.name == "openai": + if not llm.key or not llm.enable: + logger.warning("没有开启 LLM Provider 或 API Key 未填写。") + continue self.load_openai(llm) f = True - logger.info(f"已启用 OpenAI API 支持。") - else: - logger.warn(f"未知的 LLM Provider: {llm.name}") + logger.info(f"已启用 LLM Provider(OpenAI API): {llm.name}。") if f: from model.command.openai_official_handler import OpenAIOfficialCommandHandler self.openai_command_handler = OpenAIOfficialCommandHandler(self.command_manager) @@ -128,7 +131,7 @@ class AstrBotBootstrap(): def load_openai(self, llm_config): from model.provider.openai_official import ProviderOpenAIOfficial - inst = ProviderOpenAIOfficial(llm_config) + inst = ProviderOpenAIOfficial(llm_config, self.db_helper) self.context.register_provider("internal_openai", inst) def load_plugins(self): @@ -137,5 +140,5 @@ class AstrBotBootstrap(): def load_platform(self): platforms = self.platfrom_manager.load_platforms() if not platforms: - logger.warn("未启用任何消息平台。") + logger.warning("未启用任何消息平台。") return platforms \ No newline at end of file diff --git a/astrbot/db/__init__.py b/astrbot/db/__init__.py new file mode 100644 index 00000000..6e3b6d8c --- /dev/null +++ b/astrbot/db/__init__.py @@ -0,0 +1,64 @@ +import abc +from dataclasses import dataclass +from typing import List +from astrbot.db.po import Stats, LLMHistory + +@dataclass +class BaseDatabase(abc.ABC): + ''' + 数据库基类 + ''' + def __init__(self) -> None: + pass + + def insert_base_metrics(self, metrics: dict): + '''插入基础指标数据''' + self.insert_platform_metrics(metrics['platform_stats']) + self.insert_plugin_metrics(metrics['plugin_stats']) + self.insert_command_metrics(metrics['command_stats']) + self.insert_llm_metrics(metrics['llm_stats']) + + @abc.abstractmethod + def insert_platform_metrics(self, metrics: dict): + '''插入平台指标数据''' + raise NotImplementedError + + @abc.abstractmethod + def insert_plugin_metrics(self, metrics: dict): + '''插入插件指标数据''' + raise NotImplementedError + + @abc.abstractmethod + def insert_command_metrics(self, metrics: dict): + '''插入指令指标数据''' + raise NotImplementedError + + @abc.abstractmethod + def insert_llm_metrics(self, metrics: dict): + '''插入 LLM 指标数据''' + raise NotImplementedError + + @abc.abstractmethod + def update_llm_history(self, session_id: str, content: str): + '''更新 LLM 历史记录。当不存在 session_id 时插入''' + raise NotImplementedError + + @abc.abstractmethod + def get_llm_history(self, session_id: str = None) -> List[LLMHistory]: + '''获取 LLM 历史记录, 如果 session_id 为 None, 返回所有''' + raise NotImplementedError + + @abc.abstractmethod + def get_base_stats(self, offset_sec: int = 86400) -> Stats: + '''获取基础统计数据''' + raise NotImplementedError + + @abc.abstractmethod + def get_total_message_count(self) -> int: + '''获取总消息数''' + raise NotImplementedError + + @abc.abstractmethod + def get_grouped_base_stats(self, offset_sec: int = 86400) -> Stats: + '''获取基础统计数据(合并)''' + raise NotImplementedError diff --git a/astrbot/db/po.py b/astrbot/db/po.py new file mode 100644 index 00000000..b09e1299 --- /dev/null +++ b/astrbot/db/po.py @@ -0,0 +1,42 @@ +'''指标数据''' + +from dataclasses import dataclass, field +# default_factory +from typing import List + +@dataclass +class Platform(): + name: str + count: int + timestamp: int + +@dataclass +class Provider(): + name: str + count: int + timestamp: int + +@dataclass +class Plugin(): + name: str + count: int + timestamp: int + +@dataclass +class Command(): + name: str + count: int + timestamp: int + +@dataclass +class Stats(): + platform: List[Platform] = field(default_factory=list) + command: List[Command] = field(default_factory=list) + llm: List[Provider] = field(default_factory=list) + +'''LLM 聊天时持久化的信息''' + +@dataclass +class LLMHistory(): + session_id: str + content: str \ No newline at end of file diff --git a/astrbot/db/sqlite.py b/astrbot/db/sqlite.py new file mode 100644 index 00000000..1d065afe --- /dev/null +++ b/astrbot/db/sqlite.py @@ -0,0 +1,211 @@ +import sqlite3 +import os +import time +from astrbot.db.po import ( + Platform, + Command, + Provider, + Stats, + LLMHistory +) +from . import BaseDatabase +from typing import Tuple + + +class SQLiteDatabase(BaseDatabase): + def __init__(self, db_path: str) -> None: + super().__init__() + self.db_path = db_path + + with open(os.path.dirname(__file__) + "/sqlite_init.sql", "r") as f: + sql = f.read() + + # 初始化数据库 + self.conn = self._get_conn(self.db_path) + c = self.conn.cursor() + c.executescript(sql) + self.conn.commit() + + def _get_conn(self, db_path: str) -> sqlite3.Connection: + conn = sqlite3.connect(self.db_path) + conn.text_factory = str + return conn + + def _exec_sql(self, sql: str, params: Tuple = None): + conn = self.conn + try: + c = self.conn.cursor() + except sqlite3.ProgrammingError: + conn = self._get_conn(self.db_path) + c = conn.cursor() + + if params: + c.execute(sql, params) + c.close() + else: + c.execute(sql) + c.close() + + conn.commit() + + def insert_platform_metrics(self, metrics: dict): + for k, v in metrics.items(): + self._exec_sql( + ''' + INSERT INTO platform(name, count, timestamp) VALUES (?, ?, ?) + ''', (k, v, int(time.time())) + ) + + def insert_plugin_metrics(self, metrics: dict): + pass + + def insert_command_metrics(self, metrics: dict): + for k, v in metrics.items(): + self._exec_sql( + ''' + INSERT INTO command(name, count, timestamp) VALUES (?, ?, ?) + ''', (k, v, int(time.time())) + ) + + def insert_llm_metrics(self, metrics: dict): + for k, v in metrics.items(): + self._exec_sql( + ''' + INSERT INTO llm(name, count, timestamp) VALUES (?, ?, ?) + ''', (k, v, int(time.time())) + ) + + def update_llm_history(self, session_id: str, content: str): + res = self.get_llm_history(session_id) + if res: + self._exec_sql( + ''' + UPDATE llm_history SET content = ? WHERE session_id = ? + ''', (content, session_id) + ) + else: + self._exec_sql( + ''' + INSERT INTO llm_history(session_id, content) VALUES (?, ?) + ''', (session_id, content) + ) + + def get_llm_history(self, session_id: str = None) -> Tuple: + try: + c = self.conn.cursor() + except sqlite3.ProgrammingError: + c = self._get_conn(self.db_path).cursor() + + where_clause = "" if session_id is None else f"WHERE session_id = '{session_id}'" + c.execute( + ''' + SELECT * FROM llm_history + ''' + where_clause + ) + res = c.fetchall() + histories = [] + for row in res: + histories.append(LLMHistory(*row)) + c.close() + return histories + + def get_base_stats(self, offset_sec: int = 86400) -> Stats: + '''获取 offset_sec 秒前到现在的基础统计数据''' + where_clause = f" WHERE timestamp >= {int(time.time()) - offset_sec}" + + try: + c = self.conn.cursor() + except sqlite3.ProgrammingError: + c = self._get_conn(self.db_path).cursor() + + c.execute( + ''' + SELECT * FROM platform + ''' + where_clause + ) + + platform = [] + for row in c.fetchall(): + platform.append(Platform(*row)) + + # c.execute( + # ''' + # SELECT * FROM command + # ''' + where_clause + # ) + + # command = [] + # for row in c.fetchall(): + # command.append(Command(*row)) + + # c.execute( + # ''' + # SELECT * FROM llm + # ''' + where_clause + # ) + + # llm = [] + # for row in c.fetchall(): + # llm.append(Provider(*row)) + + c.close() + + return Stats(platform, [], []) + + def get_total_message_count(self) -> int: + try: + c = self.conn.cursor() + except sqlite3.ProgrammingError: + c = self._get_conn(self.db_path).cursor() + + c.execute( + ''' + SELECT SUM(count) FROM platform + ''' + ) + res = c.fetchone() + c.close() + return res[0] + + def get_grouped_base_stats(self, offset_sec: int = 86400) -> Stats: + '''获取 offset_sec 秒前到现在的基础统计数据(合并)''' + where_clause = f" WHERE timestamp >= {int(time.time()) - offset_sec}" + + try: + c = self.conn.cursor() + except sqlite3.ProgrammingError: + c = self._get_conn(self.db_path).cursor() + + c.execute( + ''' + SELECT name, SUM(count), timestamp FROM platform + ''' + where_clause + " GROUP BY name" + ) + + platform = [] + for row in c.fetchall(): + platform.append(Platform(*row)) + + # c.execute( + # ''' + # SELECT name, SUM(count), timestamp FROM command + # ''' + where_clause + " GROUP BY name" + # ) + + # command = [] + # for row in c.fetchall(): + # command.append(Command(*row)) + + # c.execute( + # ''' + # SELECT name, SUM(count), timestamp FROM llm + # ''' + where_clause + " GROUP BY name" + # ) + + # llm = [] + # for row in c.fetchall(): + # llm.append(Provider(*row)) + + c.close() + + return Stats(platform, [], []) \ No newline at end of file diff --git a/astrbot/db/sqlite_init.sql b/astrbot/db/sqlite_init.sql new file mode 100644 index 00000000..924a9d5a --- /dev/null +++ b/astrbot/db/sqlite_init.sql @@ -0,0 +1,24 @@ +CREATE TABLE IF NOT EXISTS platform( + name VARCHAR(32), + count INTEGER, + timestamp INTEGER +); +CREATE TABLE IF NOT EXISTS llm( + name VARCHAR(32), + count INTEGER, + timestamp INTEGER +); +CREATE TABLE IF NOT EXISTS plugin( + name VARCHAR(32), + count INTEGER, + timestamp INTEGER +); +CREATE TABLE IF NOT EXISTS command( + name VARCHAR(32), + count INTEGER, + timestamp INTEGER +); +CREATE TABLE IF NOT EXISTS llm_history( + session_id VARCHAR(32), + content TEXT +); \ No newline at end of file diff --git a/astrbot/message/handler.py b/astrbot/message/handler.py index 6c5bf1d8..b8c57f19 100644 --- a/astrbot/message/handler.py +++ b/astrbot/message/handler.py @@ -5,7 +5,7 @@ import traceback import astrbot.message.unfit_words as uw from typing import Dict -from astrbot.persist.helper import dbConn +from astrbot.db import BaseDatabase from model.provider.provider import Provider from model.command.manager import CommandManager from type.message_event import AstrMessageEvent, MessageResult @@ -15,7 +15,6 @@ from util.log import LogManager from logging import Logger from nakuru.entities.components import Image from util.agent.func_call import FuncCall -import util.agent.web_searcher as web_searcher from openai._exceptions import * from openai.types.chat.chat_completion_message_tool_call import Function @@ -104,10 +103,10 @@ class ContentSafetyHelper(): class MessageHandler(): def __init__(self, context: Context, command_manager: CommandManager, - persist_manager: dbConn) -> None: + db_helper: BaseDatabase) -> None: self.context = context self.command_manager = command_manager - self.persist_manager = persist_manager + self.db_helper = db_helper self.rate_limit_helper = RateLimitHelper(context) self.content_safety_helper = ContentSafetyHelper(context) self.llm_wake_prefix = self.context.config_helper.llm_settings.wake_prefix @@ -129,9 +128,6 @@ class MessageHandler(): msg_plain = message.message_str.strip() provider = llm_provider if llm_provider else self.provider - if os.environ.get('TEST_MODE', 'off') != 'on': - self.persist_manager.record_message(message.platform.platform_name, message.session_id) - # TODO: this should be configurable # if not message.message_str: # return MessageResult("Hi~") diff --git a/astrbot/persist/helper.py b/astrbot/persist/helper.py deleted file mode 100644 index 89d5a4d5..00000000 --- a/astrbot/persist/helper.py +++ /dev/null @@ -1,269 +0,0 @@ -import sqlite3 -import os -import shutil -import time -from typing import Tuple - -class dbConn(): - def __init__(self): - db_path = "data/data.db" - if os.path.exists("data.db"): - shutil.copy("data.db", db_path) - with open(os.path.dirname(__file__) + "/initialization.sql", "r") as f: - sql = f.read() - - self.conn = sqlite3.connect(db_path) - self.conn.text_factory = str - c = self.conn.cursor() - c.executescript(sql) - self.conn.commit() - - def record_message(self, platform, session_id): - curr_ts = int(time.time()) - self.increment_stat_session(platform, session_id, 1) - self.increment_stat_message(curr_ts, 1) - self.increment_stat_platform(curr_ts, platform, 1) - - def insert_session(self, qq_id, history): - conn = self.conn - c = conn.cursor() - c.execute( - ''' - INSERT INTO tb_session(qq_id, history) VALUES (?, ?) - ''', (qq_id, history) - ) - conn.commit() - - def update_session(self, qq_id, history): - conn = self.conn - c = conn.cursor() - c.execute( - ''' - UPDATE tb_session SET history = ? WHERE qq_id = ? - ''', (history, qq_id) - ) - conn.commit() - - def get_session(self, qq_id): - conn = self.conn - c = conn.cursor() - c.execute( - ''' - SELECT * FROM tb_session WHERE qq_id = ? - ''', (qq_id, ) - ) - return c.fetchone() - - def get_all_session(self): - conn = self.conn - c = conn.cursor() - c.execute( - ''' - SELECT * FROM tb_session - ''' - ) - return c.fetchall() - - def check_session(self, qq_id): - conn = self.conn - c = conn.cursor() - c.execute( - ''' - SELECT * FROM tb_session WHERE qq_id = ? - ''', (qq_id, ) - ) - return c.fetchone() is not None - - def delete_session(self, qq_id): - conn = self.conn - c = conn.cursor() - c.execute( - ''' - DELETE FROM tb_session WHERE qq_id = ? - ''', (qq_id, ) - ) - conn.commit() - - def increment_stat_session(self, platform, session_id, cnt): - # if not exist, insert - conn = self.conn - c = conn.cursor() - - if self.check_stat_session(platform, session_id): - c.execute( - ''' - UPDATE tb_stat_session SET cnt = cnt + ? WHERE platform = ? AND session_id = ? - ''', (cnt, platform, session_id) - ) - conn.commit() - else: - c.execute( - ''' - INSERT INTO tb_stat_session(platform, session_id, cnt) VALUES (?, ?, ?) - ''', (platform, session_id, cnt) - ) - conn.commit() - - def check_stat_session(self, platform, session_id): - conn = self.conn - c = conn.cursor() - c.execute( - ''' - SELECT * FROM tb_stat_session WHERE platform = ? AND session_id = ? - ''', (platform, session_id) - ) - return c.fetchone() is not None - - def get_all_stat_session(self): - conn = self.conn - c = conn.cursor() - c.execute( - ''' - SELECT * FROM tb_stat_session - ''' - ) - return c.fetchall() - - def get_session_cnt_total(self): - conn = self.conn - c = conn.cursor() - c.execute( - ''' - SELECT COUNT(*) FROM tb_stat_session - ''' - ) - return c.fetchone()[0] - - def increment_stat_message(self, ts, cnt): - # 以一个小时为单位。ts的单位是秒。 - # 找到最近的一个小时,如果没有,就插入 - - conn = self.conn - c = conn.cursor() - - ok, new_ts = self.check_stat_message(ts) - - if ok: - c.execute( - ''' - UPDATE tb_stat_message SET cnt = cnt + ? WHERE ts = ? - ''', (cnt, new_ts) - ) - conn.commit() - else: - c.execute( - ''' - INSERT INTO tb_stat_message(ts, cnt) VALUES (?, ?) - ''', (new_ts, cnt) - ) - conn.commit() - - def check_stat_message(self, ts) -> Tuple[bool, int]: - # 换算成当地整点的时间戳 - - ts = ts - ts % 3600 - conn = self.conn - c = conn.cursor() - c.execute( - ''' - SELECT * FROM tb_stat_message WHERE ts = ? - ''', (ts, ) - ) - if c.fetchone() is not None: - return True, ts - else: - return False, ts - - def get_last_24h_stat_message(self): - # 获取最近24小时的消息统计 - conn = self.conn - c = conn.cursor() - c.execute( - ''' - SELECT * FROM tb_stat_message WHERE ts > ? - ''', (time.time() - 86400, ) - ) - return c.fetchall() - - def get_message_cnt_total(self) -> int: - conn = self.conn - c = conn.cursor() - c.execute( - ''' - SELECT SUM(cnt) FROM tb_stat_message - ''' - ) - return c.fetchone()[0] - - def increment_stat_platform(self, ts, platform, cnt): - # 以一个小时为单位。ts的单位是秒。 - # 找到最近的一个小时,如果没有,就插入 - - conn = self.conn - c = conn.cursor() - - ok, new_ts = self.check_stat_platform(ts, platform) - - if ok: - c.execute( - ''' - UPDATE tb_stat_platform SET cnt = cnt + ? WHERE ts = ? AND platform = ? - ''', (cnt, new_ts, platform) - ) - conn.commit() - else: - c.execute( - ''' - INSERT INTO tb_stat_platform(ts, platform, cnt) VALUES (?, ?, ?) - ''', (new_ts, platform, cnt) - ) - conn.commit() - - def check_stat_platform(self, ts, platform): - # 换算成当地整点的时间戳 - - ts = ts - ts % 3600 - conn = self.conn - c = conn.cursor() - c.execute( - ''' - SELECT * FROM tb_stat_platform WHERE ts = ? AND platform = ? - ''', (ts, platform) - ) - if c.fetchone() is not None: - return True, ts - else: - return False, ts - - def get_last_24h_stat_platform(self): - # 获取最近24小时的消息统计 - conn = self.conn - c = conn.cursor() - c.execute( - ''' - SELECT * FROM tb_stat_platform WHERE ts > ? - ''', (time.time() - 86400, ) - ) - return c.fetchall() - - def get_platform_cnt_total(self) -> int: - conn = self.conn - c = conn.cursor() - c.execute( - ''' - SELECT platform, SUM(cnt) FROM tb_stat_platform GROUP BY platform - ''' - ) - # return c.fetchall() - platforms = [] - ret = c.fetchall() - for i in ret: - # platforms[i[0]] = i[1] - platforms.append({ - "name": i[0], - "count": i[1] - }) - return platforms - - def close(self): - self.conn.close() diff --git a/astrbot/persist/initialization.sql b/astrbot/persist/initialization.sql deleted file mode 100644 index b047c26c..00000000 --- a/astrbot/persist/initialization.sql +++ /dev/null @@ -1,18 +0,0 @@ -CREATE TABLE IF NOT EXISTS tb_session( - qq_id VARCHAR(32) PRIMARY KEY, - history TEXT -); -CREATE TABLE IF NOT EXISTS tb_stat_session( - platform VARCHAR(32), - session_id VARCHAR(32), - cnt INTEGER -); -CREATE TABLE IF NOT EXISTS tb_stat_message( - ts INTEGER, - cnt INTEGER -); -CREATE TABLE IF NOT EXISTS tb_stat_platform( - ts INTEGER, - platform VARCHAR(32), - cnt INTEGER -); \ No newline at end of file diff --git a/dashboard/__init__.py b/dashboard/__init__.py index 9394342d..16738142 100644 --- a/dashboard/__init__.py +++ b/dashboard/__init__.py @@ -1,10 +1,31 @@ +import logging from dataclasses import dataclass +from quart import Quart +from type.types import Context -class DashBoardData(): - stats: dict = {} +logger = logging.getLogger("astrbot") +class Route(): + def __init__(self, context: Context, app: Quart): + self.context = context + self.app = app + + def register_routes(self): + for route, (method, func) in self.routes.items(): + self.app.add_url_rule(f"/api{route}", view_func=func, methods=[method]) @dataclass class Response(): - status: str - message: str - data: dict + status: str = None + message: str = None + data: dict = None + + def error(self, message: str): + self.status = "error" + self.message = message + return self + + def ok(self, data: dict={}, message: str=None): + self.status = "ok" + self.data = data + self.message = message + return self \ No newline at end of file diff --git a/dashboard/dist/assets/BaseBreadcrumb-4d676ba5.css b/dashboard/dist/assets/BaseBreadcrumb-4d676ba5.css deleted file mode 100644 index 7217ebb5..00000000 --- a/dashboard/dist/assets/BaseBreadcrumb-4d676ba5.css +++ /dev/null @@ -1 +0,0 @@ -.page-breadcrumb .v-toolbar{background:transparent} diff --git a/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-cae6d9fb.js b/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-cae6d9fb.js deleted file mode 100644 index 47bf17b5..00000000 --- a/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-cae6d9fb.js +++ /dev/null @@ -1 +0,0 @@ -import{x as i,o as l,c as _,w as s,a as e,f as a,J as m,V as c,b as t,t as u,ae as p,B as n,af as o,j as f}from"./index-25639696.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const r=d;return(x,B)=>(l(),_(c,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(c,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(r.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:r.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; diff --git a/dashboard/dist/assets/BlankLayout-503500e2.js b/dashboard/dist/assets/BlankLayout-503500e2.js deleted file mode 100644 index e12e3a34..00000000 --- a/dashboard/dist/assets/BlankLayout-503500e2.js +++ /dev/null @@ -1 +0,0 @@ -import{x as e,o as a,c as t,w as o,a as s,B as n,Z as r,W as c}from"./index-25639696.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; diff --git a/dashboard/dist/assets/BlankLayout-a90e5c8d.js b/dashboard/dist/assets/BlankLayout-a90e5c8d.js new file mode 100644 index 00000000..2473ec28 --- /dev/null +++ b/dashboard/dist/assets/BlankLayout-a90e5c8d.js @@ -0,0 +1 @@ +import{q as e,o as a,b as t,w as o,c as s,x as n,X as r,Z as c}from"./index-7e5a38e4.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(r,null,{default:o(()=>[s(n(c))]),_:1}))}});export{f as default}; diff --git a/dashboard/dist/assets/ColorPage-55364acc.js b/dashboard/dist/assets/ColorPage-55364acc.js deleted file mode 100644 index 4192195c..00000000 --- a/dashboard/dist/assets/ColorPage-55364acc.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-cae6d9fb.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,a0 as b,e as x,t as y}from"./index-25639696.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; diff --git a/dashboard/dist/assets/ConfigDetailCard-0eb16275.js b/dashboard/dist/assets/ConfigDetailCard-0eb16275.js deleted file mode 100644 index cc2c1fd8..00000000 --- a/dashboard/dist/assets/ConfigDetailCard-0eb16275.js +++ /dev/null @@ -1 +0,0 @@ -import{o as l,s as o,u as c,c as n,w as u,Q as g,b as d,R as k,F as t,ac as h,O as p,t as m,a as V,ad as f,i as C,q as x,k as v,A as U}from"./index-25639696.js";import{_ as w}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js";const S={__name:"ConfigDetailCard",props:{config:Array},setup(s){return(y,B)=>(l(!0),o(t,null,c(s.config,r=>(l(),n(w,{key:r.name,title:r.name,style:{"margin-bottom":"16px"}},{default:u(()=>[g(d("a",null,"No data",512),[[k,s.config.length===0]]),(l(!0),o(t,null,c(r.body,e=>(l(),o(t,null,[e.config_type==="item"?(l(),o(t,{key:0},[e.val_type==="bool"?(l(),n(h,{key:0,modelValue:e.value,"onUpdate:modelValue":a=>e.value=a,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="str"?(l(),n(p,{key:1,modelValue:e.value,"onUpdate:modelValue":a=>e.value=a,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(l(),n(p,{key:2,modelValue:e.value,"onUpdate:modelValue":a=>e.value=a,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(l(),o(t,{key:3},[d("span",null,m(e.name),1),V(f,{modelValue:e.value,"onUpdate:modelValue":a=>e.value=a,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:u(({attrs:a,item:i,select:b,selected:_})=>[V(C,x(a,{"model-value":_,closable:"",onClick:b,"onClick:close":D=>y.remove(i)}),{default:u(()=>[d("strong",null,m(i),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):v("",!0)],64)):e.config_type==="divider"?(l(),n(U,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):v("",!0)],64))),256))]),_:2},1032,["title"]))),128))}};export{S as _}; diff --git a/dashboard/dist/assets/ConfigDetailCard-5542b7f5.js b/dashboard/dist/assets/ConfigDetailCard-5542b7f5.js new file mode 100644 index 00000000..3805adf4 --- /dev/null +++ b/dashboard/dist/assets/ConfigDetailCard-5542b7f5.js @@ -0,0 +1 @@ +import{q as C,o as l,b as n,w as t,c as o,a0 as k,u as i,H as x,a as U,t as m,a1 as v,A as f,I as w,G as N,l as s,n as _,Q as S,R as B,F as r,a4 as D,M as y,a5 as T,e as $,m as F,g as b}from"./index-7e5a38e4.js";const A={class:"d-sm-flex align-center justify-space-between"},I=C({__name:"UiParentCard",props:{title:String},setup(d){const c=d;return(p,u)=>(l(),n(N,{variant:"outlined",elevation:"0",class:"withbg"},{default:t(()=>[o(k,null,{default:t(()=>[i("div",A,[o(x,null,{default:t(()=>[U(m(c.title),1)]),_:1}),v(p.$slots,"action")])]),_:3}),o(f),o(w,null,{default:t(()=>[v(p.$slots,"default")]),_:3})]),_:3}))}}),q={__name:"ConfigDetailCard",props:{config:Array},setup(d){return(c,p)=>(l(!0),s(r,null,_(d.config,u=>(l(),n(I,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:t(()=>[S(i("a",null,"No data",512),[[B,d.config.length===0]]),(l(!0),s(r,null,_(u.body,e=>(l(),s(r,null,[e.config_type==="item"?(l(),s(r,{key:0},[e.val_type==="bool"?(l(),n(D,{key:0,modelValue:e.value,"onUpdate:modelValue":a=>e.value=a,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="str"?(l(),n(y,{key:1,modelValue:e.value,"onUpdate:modelValue":a=>e.value=a,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(l(),n(y,{key:2,modelValue:e.value,"onUpdate:modelValue":a=>e.value=a,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(l(),s(r,{key:3},[i("span",null,m(e.name),1),o(T,{modelValue:e.value,"onUpdate:modelValue":a=>e.value=a,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:t(({attrs:a,item:V,select:g,selected:h})=>[o($,F(a,{"model-value":h,closable:"",onClick:g,"onClick:close":P=>c.remove(V)}),{default:t(()=>[i("strong",null,m(V),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):b("",!0)],64)):e.config_type==="divider"?(l(),n(f,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):b("",!0)],64))),256))]),_:2},1032,["title"]))),128))}};export{q as _}; diff --git a/dashboard/dist/assets/ConfigPage-8225b5ca.js b/dashboard/dist/assets/ConfigPage-8225b5ca.js deleted file mode 100644 index cba19710..00000000 --- a/dashboard/dist/assets/ConfigPage-8225b5ca.js +++ /dev/null @@ -1 +0,0 @@ -import{x as I,o,c as i,w as l,a as s,a8 as X,b as c,K as Y,e as h,t as g,G as Z,A as $,L as D,a9 as x,J as A,s as f,d as q,F as b,u as p,V as ee,O as B,k as V,ac as z,ad as E,i as J,q as Q,p as O,a3 as G,N as P,ab as ae,T as R,a4 as N,Q as k,R as F}from"./index-25639696.js";import{_ as te}from"./ConfigDetailCard-0eb16275.js";import{_ as le}from"./_plugin-vue_export-helper-c27b6911.js";import"./UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js";const oe={class:"d-sm-flex align-center justify-space-between"},se=I({__name:"ConfigGroupCard",props:{title:String},setup(m){const e=m;return(t,_)=>(o(),i(A,{variant:"outlined",elevation:"0",class:"withbg",style:{width:"50%"}},{default:l(()=>[s(X,{style:{padding:"10px 20px"}},{default:l(()=>[c("div",oe,[s(Y,null,{default:l(()=>[h(g(e.title),1)]),_:1}),s(Z)])]),_:1}),s($),s(D,null,{default:l(()=>[x(t.$slots,"default")]),_:3})]),_:3}))}}),ne={style:{display:"flex","flex-direction":"row","justify-content":"space-between","align-items":"center","margin-bottom":"12px"}},de={style:{display:"flex","flex-direction":"row"}},ie={style:{"margin-right":"10px",color:"black"}},me={style:{color:"#222"}},ue=I({__name:"ConfigGroupItem",props:{title:String,desc:String,btnRoute:String,namespace:String},setup(m){const e=m;return(t,_)=>(o(),f("div",ne,[c("div",de,[c("h3",ie,g(e.title),1),c("p",me,g(e.desc),1)]),s(q,{to:e.btnRoute,color:"primary",class:"ml-2",style:{"border-radius":"10px"}},{default:l(()=>[h("配置")]),_:1},8,["to"])]))}}),re={props:{metadata:Object,iterable:Object,metadataKey:String}};function fe(m,e,t,_,M,a){return o(),i(D,{style:{"margin-top":"8px"}},{default:l(()=>[(o(!0),f(b,null,p(t.iterable,(d,n)=>(o(),i(ee,{key:n,style:{"margin-bottom":"2px"}},{default:l(()=>{var C,y,U,w,K,L,u,S,T;return[((C=t.metadata[t.metadataKey].items[n])==null?void 0:C.type)==="string"&&n!=="name"?(o(),i(B,{key:0,modelValue:t.iterable[n],"onUpdate:modelValue":r=>t.iterable[n]=r,label:((y=t.metadata[t.metadataKey].items[n])==null?void 0:y.description)+"("+n+")",variant:"outlined",dense:""},null,8,["modelValue","onUpdate:modelValue","label"])):V("",!0),(((U=t.metadata[t.metadataKey].items[n])==null?void 0:U.type)==="int"||((w=t.metadata[t.metadataKey].items[n])==null?void 0:w.type)==="float")&&n!=="name"?(o(),i(B,{key:1,modelValue:t.iterable[n],"onUpdate:modelValue":r=>t.iterable[n]=r,label:((K=t.metadata[t.metadataKey].items[n])==null?void 0:K.description)+"("+n+")",variant:"outlined",dense:""},null,8,["modelValue","onUpdate:modelValue","label"])):((L=t.metadata[t.metadataKey].items[n])==null?void 0:L.type)==="bool"?(o(),i(z,{key:2,modelValue:t.iterable[n],"onUpdate:modelValue":r=>t.iterable[n]=r,label:((u=t.metadata[t.metadataKey].items[n])==null?void 0:u.description)+"("+n+")",color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label"])):((S=t.metadata[t.metadataKey].items[n])==null?void 0:S.type)==="list"?(o(),i(E,{key:3,variant:"outlined",modelValue:t.iterable[n],"onUpdate:modelValue":r=>t.iterable[n]=r,chips:"",clearable:"",label:((T=t.metadata[t.metadataKey].items[n])==null?void 0:T.description)+"("+n+")",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:l(({attrs:r,item:j,select:H,selected:W})=>[s(J,Q(r,{"model-value":W,closable:"",onClick:H,"onClick:close":Ve=>m.remove(j)}),{default:l(()=>[c("strong",null,g(j),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue","label"])):V("",!0)]}),_:2},1024))),128))]),_:1})}const v=le(re,[["render",fe]]);const ge=c("h2",null,"消息平台",-1),ce=c("h2",{style:{"margin-bottom":"16px","margin-top":"16px"}},"通用配置",-1),_e=c("h2",null,"LLM",-1),be=c("h2",{style:{"margin-bottom":"16px"}},"通用配置",-1),pe={name:"ConfigPage",components:{ConfigGroupCard:se,ConfigGroupItem:ue,ConfigDetailCard:te,AstrBotConfig:v},data(){return{config_data:{config:{platform:[],llm:[],platform_settings:{},llm_settings:{}}},metadata:{},save_message_snack:!1,save_message:"",save_message_success:"",namespace:"",tab:0,tabPlatform:0,tabLLM:0,tabs_key:["消息平台","大语言模型","其他配置"],common_configs_key:[]}},mounted(){this.getConfig()},methods:{getConfig(){R.get("/api/configs").then(m=>{this.config_data=m.data.data.config,this.metadata=m.data.data.metadata;for(let e in this.config_data)e!="platform"&&e!="llm"&&e!="platform_settings"&&e!="llm_settings"&&e!="content_safety"&&this.common_configs_key.push(e)}).catch(m=>{save_message=m,save_message_snack=!0,save_message_success="error"})},updateConfig(){R.post("/api/astrbot-configs",this.config_data).then(m=>{m.data.status==="success"?(this.save_message=m.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=m.data.message,this.save_message_snack=!0,this.save_message_success="error")}).catch(m=>{this.save_message=m,this.save_message_snack=!0,this.save_message_success="error"})}}},Ue=Object.assign(pe,{setup(m){return(e,t)=>{const _=O("v-tabs-window-item"),M=O("v-tabs-window");return o(),f(b,null,[s(A,null,{default:l(()=>[s(G,{modelValue:e.tab,"onUpdate:modelValue":t[0]||(t[0]=a=>e.tab=a),"align-tabs":"center",color:"deep-purple-accent-4"},{default:l(()=>[(o(!0),f(b,null,p(e.tabs_key,(a,d)=>(o(),i(N,{key:d,value:d},{default:l(()=>[h(g(a),1)]),_:2},1032,["value"]))),128))]),_:1},8,["modelValue"]),s(M,{modelValue:e.tab,"onUpdate:modelValue":t[5]||(t[5]=a=>e.tab=a)},{default:l(()=>[e.tab===0?(o(),i(_,{key:0},{default:l(()=>[s(P,{fluid:""},{default:l(()=>[ge,s(G,{style:{"margin-top":"16px"},modelValue:e.tabPlatform,"onUpdate:modelValue":t[1]||(t[1]=a=>e.tabPlatform=a),"align-tabs":"left",color:"deep-purple-accent-4"},{default:l(()=>[(o(!0),f(b,null,p(e.config_data.platform,(a,d)=>(o(),i(N,{key:d,value:d},{default:l(()=>[h(g(a.id)+"("+g(a.name)+") ",1)]),_:2},1032,["value"]))),128))]),_:1},8,["modelValue"]),s(M,{modelValue:e.tabPlatform,"onUpdate:modelValue":t[2]||(t[2]=a=>e.tabPlatform=a)},{default:l(()=>[(o(!0),f(b,null,p(e.config_data.platform,(a,d)=>k((o(),i(_,{key:d,value:d},{default:l(()=>[s(P,null,{default:l(()=>[s(v,{metadata:e.metadata,iterable:a,metadataKey:"platform"},null,8,["metadata","iterable"])]),_:2},1024)]),_:2},1032,["value"])),[[F,e.tabPlatform===d]])),128))]),_:1},8,["modelValue"]),ce,s(v,{metadata:e.metadata,iterable:e.config_data.platform_settings,metadataKey:"platform_settings"},null,8,["metadata","iterable"])]),_:1})]),_:1})):V("",!0),e.tab===1?(o(),i(_,{key:1},{default:l(()=>[s(P,{fluid:""},{default:l(()=>[_e,s(G,{modelValue:e.tabLLM,"onUpdate:modelValue":t[3]||(t[3]=a=>e.tabLLM=a),"align-tabs":"left",color:"deep-purple-accent-4"},{default:l(()=>[(o(!0),f(b,null,p(e.config_data.llm,(a,d)=>(o(),i(N,{key:d,value:d},{default:l(()=>[h(g(a.name),1)]),_:2},1032,["value"]))),128))]),_:1},8,["modelValue"]),s(M,{modelValue:e.tabLLM,"onUpdate:modelValue":t[4]||(t[4]=a=>e.tabLLM=a)},{default:l(()=>[(o(!0),f(b,null,p(e.config_data.llm,(a,d)=>k((o(),i(_,{key:d,value:d},{default:l(()=>[s(P,null,{default:l(()=>[s(v,{metadata:e.metadata,iterable:a,metadataKey:"llm"},null,8,["metadata","iterable"]),s(v,{metadata:e.metadata.llm.items,iterable:a.model_config,metadataKey:"model_config"},null,8,["metadata","iterable"])]),_:2},1024)]),_:2},1032,["value"])),[[F,e.tabLLM===d]])),128))]),_:1},8,["modelValue"]),be,s(v,{metadata:e.metadata,iterable:e.config_data.llm_settings,metadataKey:"llm_settings"},null,8,["metadata","iterable"])]),_:1})]),_:1})):V("",!0),e.tab===2?(o(),i(_,{key:2},{default:l(()=>[s(P,{fluid:""},{default:l(()=>[s(D,{style:{"margin-top":"16px"}},{default:l(()=>[(o(!0),f(b,null,p(e.common_configs_key,a=>{var d,n,C,y,U,w,K,L;return o(),f("div",{key:a},[((d=e.metadata[a])==null?void 0:d.type)==="string"&&a!=="name"?(o(),i(B,{key:0,modelValue:e.config_data[a],"onUpdate:modelValue":u=>e.config_data[a]=u,label:((n=e.metadata[a])==null?void 0:n.description)+"("+a+")",variant:"outlined",dense:""},null,8,["modelValue","onUpdate:modelValue","label"])):V("",!0),((C=e.metadata[a])==null?void 0:C.type)==="int"&&a!=="name"?(o(),i(B,{key:1,modelValue:e.config_data[a],"onUpdate:modelValue":u=>e.config_data[a]=u,label:((y=e.metadata[a])==null?void 0:y.description)+"("+a+")",variant:"outlined",dense:""},null,8,["modelValue","onUpdate:modelValue","label"])):((U=e.metadata[a])==null?void 0:U.type)==="bool"?(o(),i(z,{key:2,modelValue:e.config_data[a],"onUpdate:modelValue":u=>e.config_data[a]=u,label:((w=e.metadata[a])==null?void 0:w.description)+"("+a+")",color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label"])):((K=e.metadata[a])==null?void 0:K.type)==="list"?(o(),i(E,{key:3,variant:"outlined",modelValue:e.config_data[a],"onUpdate:modelValue":u=>e.config_data[a]=u,chips:"",clearable:"",label:((L=e.metadata[a])==null?void 0:L.description)+"("+a+")",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:l(({attrs:u,item:S,select:T,selected:r})=>[s(J,Q(u,{"model-value":r,closable:"",onClick:T,"onClick:close":j=>e.remove(S)}),{default:l(()=>[c("strong",null,g(S),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue","label"])):V("",!0)])}),128))]),_:1})]),_:1})]),_:1})):V("",!0)]),_:1},8,["modelValue"])]),_:1}),s(q,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:e.updateConfig},null,8,["onClick"]),s(ae,{timeout:2e3,elevation:"24",color:e.save_message_success,modelValue:e.save_message_snack,"onUpdate:modelValue":t[6]||(t[6]=a=>e.save_message_snack=a)},{default:l(()=>[h(g(e.save_message),1)]),_:1},8,["color","modelValue"])],64)}}});export{Ue as default}; diff --git a/dashboard/dist/assets/ConfigPage-e84879b9.js b/dashboard/dist/assets/ConfigPage-e84879b9.js new file mode 100644 index 00000000..c9f79bb5 --- /dev/null +++ b/dashboard/dist/assets/ConfigPage-e84879b9.js @@ -0,0 +1 @@ +import{q as A,o as d,b as i,w as o,c as l,u as V,H as Z,a as k,t as b,E as $,a0 as x,A as ee,a1 as ae,I as N,G as E,l as c,D as q,g as S,F as y,n as j,K as te,M as D,a4 as H,a5 as J,e as Q,m as W,k as R,a2 as le,z as F,a6 as G,J as B,a7 as I,Q as O,R as z}from"./index-7e5a38e4.js";import{_ as oe}from"./ConfigDetailCard-5542b7f5.js";import{_ as ne}from"./_plugin-vue_export-helper-c27b6911.js";const de={class:"d-sm-flex align-center justify-space-between"},se=A({__name:"ConfigGroupCard",props:{title:String},setup(m){const e=m;return(a,h)=>(d(),i(E,{variant:"outlined",elevation:"0",class:"withbg",style:{width:"50%"}},{default:o(()=>[l(x,{style:{padding:"10px 20px"}},{default:o(()=>[V("div",de,[l(Z,null,{default:o(()=>[k(b(e.title),1)]),_:1}),l($)])]),_:1}),l(ee),l(N,null,{default:o(()=>[ae(a.$slots,"default")]),_:3})]),_:3}))}}),ie={style:{display:"flex","flex-direction":"row","justify-content":"space-between","align-items":"center","margin-bottom":"12px"}},me={style:{display:"flex","flex-direction":"row"}},ue={style:{"margin-right":"10px",color:"black"}},re={style:{color:"#222"}},fe=A({__name:"ConfigGroupItem",props:{title:String,desc:String,btnRoute:String,namespace:String},setup(m){const e=m;return(a,h)=>(d(),c("div",ie,[V("div",me,[V("h3",ue,b(e.title),1),V("p",re,b(e.desc),1)]),l(q,{to:e.btnRoute,color:"primary",class:"ml-2",style:{"border-radius":"10px"}},{default:o(()=>[k("配置")]),_:1},8,["to"])]))}}),ge={props:{metadata:Object,iterable:Object,metadataKey:String}},_e={key:0,style:{"margin-bottom":"8px"}};function ce(m,e,a,h,T,t){var s,r;return d(),c(y,null,[a.iterable&&((s=a.metadata[a.metadataKey])==null?void 0:s.type)==="object"?(d(),c("h3",_e,b((r=a.metadata[a.metadataKey])==null?void 0:r.description),1)):S("",!0),l(N,null,{default:o(()=>[(d(!0),c(y,null,j(a.iterable,(g,n)=>(d(),i(te,{key:n,style:{"margin-bottom":"0.5px"}},{default:o(()=>{var C,U,w,K,u,L,P,M,_;return[((C=a.metadata[a.metadataKey].items[n])==null?void 0:C.type)==="string"&&n!=="name"?(d(),i(D,{key:0,modelValue:a.iterable[n],"onUpdate:modelValue":f=>a.iterable[n]=f,label:((U=a.metadata[a.metadataKey].items[n])==null?void 0:U.description)+"("+n+")",variant:"outlined",dense:""},null,8,["modelValue","onUpdate:modelValue","label"])):S("",!0),(((w=a.metadata[a.metadataKey].items[n])==null?void 0:w.type)==="int"||((K=a.metadata[a.metadataKey].items[n])==null?void 0:K.type)==="float")&&n!=="name"?(d(),i(D,{key:1,modelValue:a.iterable[n],"onUpdate:modelValue":f=>a.iterable[n]=f,label:((u=a.metadata[a.metadataKey].items[n])==null?void 0:u.description)+"("+n+")",variant:"outlined",dense:""},null,8,["modelValue","onUpdate:modelValue","label"])):((L=a.metadata[a.metadataKey].items[n])==null?void 0:L.type)==="bool"?(d(),i(H,{key:2,modelValue:a.iterable[n],"onUpdate:modelValue":f=>a.iterable[n]=f,label:((P=a.metadata[a.metadataKey].items[n])==null?void 0:P.description)+"("+n+")",color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label"])):((M=a.metadata[a.metadataKey].items[n])==null?void 0:M.type)==="list"?(d(),i(J,{key:3,variant:"outlined",modelValue:a.iterable[n],"onUpdate:modelValue":f=>a.iterable[n]=f,chips:"",clearable:"",label:((_=a.metadata[a.metadataKey].items[n])==null?void 0:_.description)+"("+n+")",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:o(({attrs:f,item:v,select:X,selected:Y})=>[l(Q,W(f,{"model-value":Y,closable:"",onClick:X,"onClick:close":he=>m.remove(v)}),{default:o(()=>[V("strong",null,b(v),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue","label"])):S("",!0)]}),_:2},1024))),128))]),_:1})],64)}const p=ne(ge,[["render",ce]]);const be=V("h2",null,"消息平台",-1),pe=V("h2",{style:{"margin-bottom":"16px","margin-top":"16px"}},"通用配置",-1),Ve=V("h2",null,"LLM",-1),ve=V("h2",{style:{"margin-bottom":"16px"}},"通用配置",-1),ye={name:"ConfigPage",components:{ConfigGroupCard:se,ConfigGroupItem:fe,ConfigDetailCard:oe,AstrBotConfig:p},data(){return{config_data:{config:{platform:[],llm:[],platform_settings:{},content_safety:{},llm_settings:{}}},metadata:{},save_message_snack:!1,save_message:"",save_message_success:"",namespace:"",tab:0,tabPlatform:0,tabLLM:0,tabs_key:["消息平台","大语言模型","其他配置"],common_configs_key:[]}},mounted(){this.getConfig()},methods:{getConfig(){F.get("/api/config/get").then(m=>{this.config_data=m.data.data.config,this.metadata=m.data.data.metadata;for(let e in this.config_data)e!="platform"&&e!="llm"&&e!="platform_settings"&&e!="llm_settings"&&e!="content_safety"&&this.common_configs_key.push(e)}).catch(m=>{save_message=m,save_message_snack=!0,save_message_success="error"})},updateConfig(){F.post("/api/config/astrbot/update",this.config_data).then(m=>{m.data.status==="success"?(this.save_message=m.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=m.data.message,this.save_message_snack=!0,this.save_message_success="error")}).catch(m=>{this.save_message=m,this.save_message_snack=!0,this.save_message_success="error"})}}},Ke=Object.assign(ye,{setup(m){return(e,a)=>{const h=R("v-tabs-window-item"),T=R("v-tabs-window");return d(),c(y,null,[l(E,null,{default:o(()=>[l(G,{modelValue:e.tab,"onUpdate:modelValue":a[0]||(a[0]=t=>e.tab=t),"align-tabs":"center",color:"deep-purple-accent-4"},{default:o(()=>[(d(!0),c(y,null,j(e.tabs_key,(t,s)=>(d(),i(I,{key:s,value:s},{default:o(()=>[k(b(t),1)]),_:2},1032,["value"]))),128))]),_:1},8,["modelValue"]),l(T,{modelValue:e.tab,"onUpdate:modelValue":a[5]||(a[5]=t=>e.tab=t)},{default:o(()=>[e.tab===0?(d(),i(h,{key:0},{default:o(()=>[l(B,{fluid:""},{default:o(()=>{var t,s,r,g,n,C,U,w,K,u,L,P,M;return[be,l(G,{style:{"margin-top":"16px"},modelValue:e.tabPlatform,"onUpdate:modelValue":a[1]||(a[1]=_=>e.tabPlatform=_),"align-tabs":"left",color:"deep-purple-accent-4"},{default:o(()=>{var _;return[(d(!0),c(y,null,j((_=e.config_data)==null?void 0:_.platform,(f,v)=>(d(),i(I,{key:v,value:v},{default:o(()=>[k(b(f.id)+"("+b(f.name)+") ",1)]),_:2},1032,["value"]))),128))]}),_:1},8,["modelValue"]),l(T,{modelValue:e.tabPlatform,"onUpdate:modelValue":a[2]||(a[2]=_=>e.tabPlatform=_)},{default:o(()=>{var _;return[(d(!0),c(y,null,j((_=e.config_data)==null?void 0:_.platform,(f,v)=>O((d(),i(h,{key:v,value:v},{default:o(()=>[l(B,null,{default:o(()=>[l(p,{metadata:e.metadata,iterable:f,metadataKey:"platform"},null,8,["metadata","iterable"])]),_:2},1024)]),_:2},1032,["value"])),[[z,e.tabPlatform===v]])),128))]}),_:1},8,["modelValue"]),pe,l(p,{metadata:e.metadata,iterable:(t=e.config_data)==null?void 0:t.platform_settings,metadataKey:"platform_settings"},null,8,["metadata","iterable"]),l(p,{metadata:(r=(s=e.metadata)==null?void 0:s.platform_settings)==null?void 0:r.items,iterable:(n=(g=e.config_data)==null?void 0:g.platform_settings)==null?void 0:n.rate_limit,metadataKey:"rate_limit"},null,8,["metadata","iterable"]),l(p,{metadata:(U=(C=e.metadata)==null?void 0:C.content_safety)==null?void 0:U.items,iterable:(K=(w=e.config_data)==null?void 0:w.content_safety)==null?void 0:K.baidu_aip,metadataKey:"baidu_aip"},null,8,["metadata","iterable"]),l(p,{metadata:(L=(u=e.metadata)==null?void 0:u.content_safety)==null?void 0:L.items,iterable:(M=(P=e.config_data)==null?void 0:P.content_safety)==null?void 0:M.internal_keywords,metadataKey:"internal_keywords"},null,8,["metadata","iterable"])]}),_:1})]),_:1})):S("",!0),e.tab===1?(d(),i(h,{key:1},{default:o(()=>[l(B,{fluid:""},{default:o(()=>{var t;return[Ve,l(G,{modelValue:e.tabLLM,"onUpdate:modelValue":a[3]||(a[3]=s=>e.tabLLM=s),"align-tabs":"left",color:"deep-purple-accent-4"},{default:o(()=>{var s;return[(d(!0),c(y,null,j((s=e.config_data)==null?void 0:s.llm,(r,g)=>(d(),i(I,{key:g,value:g},{default:o(()=>[k(b(r.name),1)]),_:2},1032,["value"]))),128))]}),_:1},8,["modelValue"]),l(T,{modelValue:e.tabLLM,"onUpdate:modelValue":a[4]||(a[4]=s=>e.tabLLM=s)},{default:o(()=>{var s;return[(d(!0),c(y,null,j((s=e.config_data)==null?void 0:s.llm,(r,g)=>O((d(),i(h,{key:g,value:g},{default:o(()=>[l(B,null,{default:o(()=>[l(p,{metadata:e.metadata,iterable:r,metadataKey:"llm"},null,8,["metadata","iterable"]),l(p,{metadata:e.metadata.llm.items,iterable:r.model_config,metadataKey:"model_config"},null,8,["metadata","iterable"]),l(p,{metadata:e.metadata.llm.items,iterable:r.image_generation_model_config,metadataKey:"image_generation_model_config"},null,8,["metadata","iterable"])]),_:2},1024)]),_:2},1032,["value"])),[[z,e.tabLLM===g]])),128))]}),_:1},8,["modelValue"]),ve,l(p,{metadata:e.metadata,iterable:(t=e.config_data)==null?void 0:t.llm_settings,metadataKey:"llm_settings"},null,8,["metadata","iterable"])]}),_:1})]),_:1})):S("",!0),e.tab===2?(d(),i(h,{key:2},{default:o(()=>[l(B,{fluid:""},{default:o(()=>[l(N,{style:{"margin-top":"16px"}},{default:o(()=>[(d(!0),c(y,null,j(e.common_configs_key,t=>{var s,r,g,n,C,U,w,K;return d(),c("div",{key:t},[((s=e.metadata[t])==null?void 0:s.type)==="string"&&t!=="name"?(d(),i(D,{key:0,modelValue:e.config_data[t],"onUpdate:modelValue":u=>e.config_data[t]=u,label:((r=e.metadata[t])==null?void 0:r.description)+"("+t+")",variant:"outlined",dense:""},null,8,["modelValue","onUpdate:modelValue","label"])):S("",!0),((g=e.metadata[t])==null?void 0:g.type)==="int"&&t!=="name"?(d(),i(D,{key:1,modelValue:e.config_data[t],"onUpdate:modelValue":u=>e.config_data[t]=u,label:((n=e.metadata[t])==null?void 0:n.description)+"("+t+")",variant:"outlined",dense:""},null,8,["modelValue","onUpdate:modelValue","label"])):((C=e.metadata[t])==null?void 0:C.type)==="bool"?(d(),i(H,{key:2,modelValue:e.config_data[t],"onUpdate:modelValue":u=>e.config_data[t]=u,label:((U=e.metadata[t])==null?void 0:U.description)+"("+t+")",color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label"])):((w=e.metadata[t])==null?void 0:w.type)==="list"?(d(),i(J,{key:3,variant:"outlined",modelValue:e.config_data[t],"onUpdate:modelValue":u=>e.config_data[t]=u,chips:"",clearable:"",label:((K=e.metadata[t])==null?void 0:K.description)+"("+t+")",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:o(({attrs:u,item:L,select:P,selected:M})=>[l(Q,W(u,{"model-value":M,closable:"",onClick:P,"onClick:close":_=>e.remove(L)}),{default:o(()=>[V("strong",null,b(L),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue","label"])):S("",!0)])}),128))]),_:1})]),_:1})]),_:1})):S("",!0)]),_:1},8,["modelValue"])]),_:1}),l(q,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:e.updateConfig},null,8,["onClick"]),l(le,{timeout:2e3,elevation:"24",color:e.save_message_success,modelValue:e.save_message_snack,"onUpdate:modelValue":a[6]||(a[6]=t=>e.save_message_snack=t)},{default:o(()=>[k(b(e.save_message),1)]),_:1},8,["color","modelValue"])],64)}}});export{Ke as default}; diff --git a/dashboard/dist/assets/ConsolePage-e3d6951b.js b/dashboard/dist/assets/ConsolePage-b25b7cd3.js similarity index 99% rename from dashboard/dist/assets/ConsolePage-e3d6951b.js rename to dashboard/dist/assets/ConsolePage-b25b7cd3.js index 90dd9ed2..dbf0a0b0 100644 --- a/dashboard/dist/assets/ConsolePage-e3d6951b.js +++ b/dashboard/dist/assets/ConsolePage-b25b7cd3.js @@ -1,4 +1,4 @@ -import{o as Ce,s as be,b as he,t as ge,a as ye,w as we,e as Ee,d as ke,F as Le}from"./index-25639696.js";var pe={exports:{}};(function(Q,ne){(function(ce,oe){Q.exports=oe()})(self,()=>(()=>{var ce={4567:function(I,r,a){var l=this&&this.__decorate||function(i,o,c,v){var m,h=arguments.length,g=h<3?o:v===null?v=Object.getOwnPropertyDescriptor(o,c):v;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")g=Reflect.decorate(i,o,c,v);else for(var b=i.length-1;b>=0;b--)(m=i[b])&&(g=(h<3?m(g):h>3?m(o,c,g):m(o,c))||g);return h>3&&g&&Object.defineProperty(o,c,g),g},u=this&&this.__param||function(i,o){return function(c,v){o(c,v,i)}};Object.defineProperty(r,"__esModule",{value:!0}),r.AccessibilityManager=void 0;const n=a(9042),d=a(6114),f=a(9924),p=a(844),_=a(5596),e=a(4725),s=a(3656);let t=r.AccessibilityManager=class extends p.Disposable{constructor(i,o){super(),this._terminal=i,this._renderService=o,this._liveRegionLineCount=0,this._charsToConsume=[],this._charsToAnnounce="",this._accessibilityContainer=document.createElement("div"),this._accessibilityContainer.classList.add("xterm-accessibility"),this._rowContainer=document.createElement("div"),this._rowContainer.setAttribute("role","list"),this._rowContainer.classList.add("xterm-accessibility-tree"),this._rowElements=[];for(let c=0;cthis._handleBoundaryFocus(c,0),this._bottomBoundaryFocusListener=c=>this._handleBoundaryFocus(c,1),this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions(),this._accessibilityContainer.appendChild(this._rowContainer),this._liveRegion=document.createElement("div"),this._liveRegion.classList.add("live-region"),this._liveRegion.setAttribute("aria-live","assertive"),this._accessibilityContainer.appendChild(this._liveRegion),this._liveRegionDebouncer=this.register(new f.TimeBasedDebouncer(this._renderRows.bind(this))),!this._terminal.element)throw new Error("Cannot enable accessibility before Terminal.open");this._terminal.element.insertAdjacentElement("afterbegin",this._accessibilityContainer),this.register(this._terminal.onResize(c=>this._handleResize(c.rows))),this.register(this._terminal.onRender(c=>this._refreshRows(c.start,c.end))),this.register(this._terminal.onScroll(()=>this._refreshRows())),this.register(this._terminal.onA11yChar(c=>this._handleChar(c))),this.register(this._terminal.onLineFeed(()=>this._handleChar(` +import{o as Ce,l as be,u as he,t as ge,c as ye,w as we,D as Ee,F as ke,a as Le}from"./index-7e5a38e4.js";var pe={exports:{}};(function(Q,ne){(function(ce,oe){Q.exports=oe()})(self,()=>(()=>{var ce={4567:function(I,r,a){var l=this&&this.__decorate||function(i,o,c,v){var m,h=arguments.length,g=h<3?o:v===null?v=Object.getOwnPropertyDescriptor(o,c):v;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")g=Reflect.decorate(i,o,c,v);else for(var b=i.length-1;b>=0;b--)(m=i[b])&&(g=(h<3?m(g):h>3?m(o,c,g):m(o,c))||g);return h>3&&g&&Object.defineProperty(o,c,g),g},u=this&&this.__param||function(i,o){return function(c,v){o(c,v,i)}};Object.defineProperty(r,"__esModule",{value:!0}),r.AccessibilityManager=void 0;const n=a(9042),d=a(6114),f=a(9924),p=a(844),_=a(5596),e=a(4725),s=a(3656);let t=r.AccessibilityManager=class extends p.Disposable{constructor(i,o){super(),this._terminal=i,this._renderService=o,this._liveRegionLineCount=0,this._charsToConsume=[],this._charsToAnnounce="",this._accessibilityContainer=document.createElement("div"),this._accessibilityContainer.classList.add("xterm-accessibility"),this._rowContainer=document.createElement("div"),this._rowContainer.setAttribute("role","list"),this._rowContainer.classList.add("xterm-accessibility-tree"),this._rowElements=[];for(let c=0;cthis._handleBoundaryFocus(c,0),this._bottomBoundaryFocusListener=c=>this._handleBoundaryFocus(c,1),this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions(),this._accessibilityContainer.appendChild(this._rowContainer),this._liveRegion=document.createElement("div"),this._liveRegion.classList.add("live-region"),this._liveRegion.setAttribute("aria-live","assertive"),this._accessibilityContainer.appendChild(this._liveRegion),this._liveRegionDebouncer=this.register(new f.TimeBasedDebouncer(this._renderRows.bind(this))),!this._terminal.element)throw new Error("Cannot enable accessibility before Terminal.open");this._terminal.element.insertAdjacentElement("afterbegin",this._accessibilityContainer),this.register(this._terminal.onResize(c=>this._handleResize(c.rows))),this.register(this._terminal.onRender(c=>this._refreshRows(c.start,c.end))),this.register(this._terminal.onScroll(()=>this._refreshRows())),this.register(this._terminal.onA11yChar(c=>this._handleChar(c))),this.register(this._terminal.onLineFeed(()=>this._handleChar(` `))),this.register(this._terminal.onA11yTab(c=>this._handleTab(c))),this.register(this._terminal.onKey(c=>this._handleKey(c.key))),this.register(this._terminal.onBlur(()=>this._clearLiveRegion())),this.register(this._renderService.onDimensionsChange(()=>this._refreshRowsDimensions())),this._screenDprMonitor=new _.ScreenDprMonitor(window),this.register(this._screenDprMonitor),this._screenDprMonitor.setListener(()=>this._refreshRowsDimensions()),this.register((0,s.addDisposableDomListener)(window,"resize",()=>this._refreshRowsDimensions())),this._refreshRows(),this.register((0,p.toDisposable)(()=>{this._accessibilityContainer.remove(),this._rowElements.length=0}))}_handleTab(i){for(let o=0;o0?this._charsToConsume.shift()!==i&&(this._charsToAnnounce+=i):this._charsToAnnounce+=i,i===` `&&(this._liveRegionLineCount++,this._liveRegionLineCount===21&&(this._liveRegion.textContent+=n.tooMuchOutput)),d.isMac&&this._liveRegion.textContent&&this._liveRegion.textContent.length>0&&!this._liveRegion.parentNode&&setTimeout(()=>{this._accessibilityContainer.appendChild(this._liveRegion)},0))}_clearLiveRegion(){this._liveRegion.textContent="",this._liveRegionLineCount=0,d.isMac&&this._liveRegion.remove()}_handleKey(i){this._clearLiveRegion(),/\p{Control}/u.test(i)||this._charsToConsume.push(i)}_refreshRows(i,o){this._liveRegionDebouncer.refresh(i,o,this._terminal.rows)}_renderRows(i,o){const c=this._terminal.buffer,v=c.lines.length.toString();for(let m=i;m<=o;m++){const h=c.translateBufferLineToString(c.ydisp+m,!0),g=(c.ydisp+m+1).toString(),b=this._rowElements[m];b&&(h.length===0?b.innerText=" ":b.textContent=h,b.setAttribute("aria-posinset",g),b.setAttribute("aria-setsize",v))}this._announceCharacters()}_announceCharacters(){this._charsToAnnounce.length!==0&&(this._liveRegion.textContent+=this._charsToAnnounce,this._charsToAnnounce="")}_handleBoundaryFocus(i,o){const c=i.target,v=this._rowElements[o===0?1:this._rowElements.length-2];if(c.getAttribute("aria-posinset")===(o===0?"1":`${this._terminal.buffer.lines.length}`)||i.relatedTarget!==v)return;let m,h;if(o===0?(m=c,h=this._rowElements.pop(),this._rowContainer.removeChild(h)):(m=this._rowElements.shift(),h=c,this._rowContainer.removeChild(m)),m.removeEventListener("focus",this._topBoundaryFocusListener),h.removeEventListener("focus",this._bottomBoundaryFocusListener),o===0){const g=this._createAccessibilityTreeNode();this._rowElements.unshift(g),this._rowContainer.insertAdjacentElement("afterbegin",g)}else{const g=this._createAccessibilityTreeNode();this._rowElements.push(g),this._rowContainer.appendChild(g)}this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._terminal.scrollLines(o===0?-1:1),this._rowElements[o===0?1:this._rowElements.length-2].focus(),i.preventDefault(),i.stopImmediatePropagation()}_handleResize(i){this._rowElements[this._rowElements.length-1].removeEventListener("focus",this._bottomBoundaryFocusListener);for(let o=this._rowContainer.children.length;oi;)this._rowContainer.removeChild(this._rowElements.pop());this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions()}_createAccessibilityTreeNode(){const i=document.createElement("div");return i.setAttribute("role","listitem"),i.tabIndex=-1,this._refreshRowDimensions(i),i}_refreshRowsDimensions(){if(this._renderService.dimensions.css.cell.height){this._accessibilityContainer.style.width=`${this._renderService.dimensions.css.canvas.width}px`,this._rowElements.length!==this._terminal.rows&&this._handleResize(this._terminal.rows);for(let i=0;i{function a(d){return d.replace(/\r?\n/g,"\r")}function l(d,f){return f?"\x1B[200~"+d+"\x1B[201~":d}function u(d,f,p,_){d=l(d=a(d),p.decPrivateModes.bracketedPasteMode&&_.rawOptions.ignoreBracketedPasteMode!==!0),p.triggerDataEvent(d,!0),f.value=""}function n(d,f,p){const _=p.getBoundingClientRect(),e=d.clientX-_.left-10,s=d.clientY-_.top-10;f.style.width="20px",f.style.height="20px",f.style.left=`${e}px`,f.style.top=`${s}px`,f.style.zIndex="1000",f.focus()}Object.defineProperty(r,"__esModule",{value:!0}),r.rightClickHandler=r.moveTextAreaUnderMouseCursor=r.paste=r.handlePasteEvent=r.copyHandler=r.bracketTextForPaste=r.prepareTextForTerminal=void 0,r.prepareTextForTerminal=a,r.bracketTextForPaste=l,r.copyHandler=function(d,f){d.clipboardData&&d.clipboardData.setData("text/plain",f.selectionText),d.preventDefault()},r.handlePasteEvent=function(d,f,p,_){d.stopPropagation(),d.clipboardData&&u(d.clipboardData.getData("text/plain"),f,p,_)},r.paste=u,r.moveTextAreaUnderMouseCursor=n,r.rightClickHandler=function(d,f,p,_,e){n(d,f,p),e&&_.rightClickSelect(d),f.value=_.selectionText,f.select()}},7239:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ColorContrastCache=void 0;const l=a(1505);r.ColorContrastCache=class{constructor(){this._color=new l.TwoKeyMap,this._css=new l.TwoKeyMap}setCss(u,n,d){this._css.set(u,n,d)}getCss(u,n){return this._css.get(u,n)}setColor(u,n,d){this._color.set(u,n,d)}getColor(u,n){return this._color.get(u,n)}clear(){this._color.clear(),this._css.clear()}}},3656:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.addDisposableDomListener=void 0,r.addDisposableDomListener=function(a,l,u,n){a.addEventListener(l,u,n);let d=!1;return{dispose:()=>{d||(d=!0,a.removeEventListener(l,u,n))}}}},6465:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.Linkifier2=void 0;const n=a(3656),d=a(8460),f=a(844),p=a(2585);let _=r.Linkifier2=class extends f.Disposable{get currentLink(){return this._currentLink}constructor(e){super(),this._bufferService=e,this._linkProviders=[],this._linkCacheDisposables=[],this._isMouseOut=!0,this._wasResized=!1,this._activeLine=-1,this._onShowLinkUnderline=this.register(new d.EventEmitter),this.onShowLinkUnderline=this._onShowLinkUnderline.event,this._onHideLinkUnderline=this.register(new d.EventEmitter),this.onHideLinkUnderline=this._onHideLinkUnderline.event,this.register((0,f.getDisposeArrayDisposable)(this._linkCacheDisposables)),this.register((0,f.toDisposable)(()=>{this._lastMouseEvent=void 0})),this.register(this._bufferService.onResize(()=>{this._clearCurrentLink(),this._wasResized=!0}))}registerLinkProvider(e){return this._linkProviders.push(e),{dispose:()=>{const s=this._linkProviders.indexOf(e);s!==-1&&this._linkProviders.splice(s,1)}}}attachToDom(e,s,t){this._element=e,this._mouseService=s,this._renderService=t,this.register((0,n.addDisposableDomListener)(this._element,"mouseleave",()=>{this._isMouseOut=!0,this._clearCurrentLink()})),this.register((0,n.addDisposableDomListener)(this._element,"mousemove",this._handleMouseMove.bind(this))),this.register((0,n.addDisposableDomListener)(this._element,"mousedown",this._handleMouseDown.bind(this))),this.register((0,n.addDisposableDomListener)(this._element,"mouseup",this._handleMouseUp.bind(this)))}_handleMouseMove(e){if(this._lastMouseEvent=e,!this._element||!this._mouseService)return;const s=this._positionFromMouseEvent(e,this._element,this._mouseService);if(!s)return;this._isMouseOut=!1;const t=e.composedPath();for(let i=0;i{c==null||c.forEach(v=>{v.link.dispose&&v.link.dispose()})}),this._activeProviderReplies=new Map,this._activeLine=e.y);let o=!1;for(const[c,v]of this._linkProviders.entries())s?!((i=this._activeProviderReplies)===null||i===void 0)&&i.get(c)&&(o=this._checkLinkProviderResult(c,e,o)):v.provideLinks(e.y,m=>{var h,g;if(this._isMouseOut)return;const b=m==null?void 0:m.map(L=>({link:L}));(h=this._activeProviderReplies)===null||h===void 0||h.set(c,b),o=this._checkLinkProviderResult(c,e,o),((g=this._activeProviderReplies)===null||g===void 0?void 0:g.size)===this._linkProviders.length&&this._removeIntersectingLinks(e.y,this._activeProviderReplies)})}_removeIntersectingLinks(e,s){const t=new Set;for(let i=0;ie?this._bufferService.cols:v.link.range.end.x;for(let g=m;g<=h;g++){if(t.has(g)){o.splice(c--,1);break}t.add(g)}}}}_checkLinkProviderResult(e,s,t){var i;if(!this._activeProviderReplies)return t;const o=this._activeProviderReplies.get(e);let c=!1;for(let v=0;vthis._linkAtPosition(m.link,s));v&&(t=!0,this._handleNewLink(v))}if(this._activeProviderReplies.size===this._linkProviders.length&&!t)for(let v=0;vthis._linkAtPosition(h.link,s));if(m){t=!0,this._handleNewLink(m);break}}return t}_handleMouseDown(){this._mouseDownLink=this._currentLink}_handleMouseUp(e){if(!this._element||!this._mouseService||!this._currentLink)return;const s=this._positionFromMouseEvent(e,this._element,this._mouseService);s&&this._mouseDownLink===this._currentLink&&this._linkAtPosition(this._currentLink.link,s)&&this._currentLink.link.activate(e,this._currentLink.link.text)}_clearCurrentLink(e,s){this._element&&this._currentLink&&this._lastMouseEvent&&(!e||!s||this._currentLink.link.range.start.y>=e&&this._currentLink.link.range.end.y<=s)&&(this._linkLeave(this._element,this._currentLink.link,this._lastMouseEvent),this._currentLink=void 0,(0,f.disposeArray)(this._linkCacheDisposables))}_handleNewLink(e){if(!this._element||!this._lastMouseEvent||!this._mouseService)return;const s=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);s&&this._linkAtPosition(e.link,s)&&(this._currentLink=e,this._currentLink.state={decorations:{underline:e.link.decorations===void 0||e.link.decorations.underline,pointerCursor:e.link.decorations===void 0||e.link.decorations.pointerCursor},isHovered:!0},this._linkHover(this._element,e.link,this._lastMouseEvent),e.link.decorations={},Object.defineProperties(e.link.decorations,{pointerCursor:{get:()=>{var t,i;return(i=(t=this._currentLink)===null||t===void 0?void 0:t.state)===null||i===void 0?void 0:i.decorations.pointerCursor},set:t=>{var i,o;!((i=this._currentLink)===null||i===void 0)&&i.state&&this._currentLink.state.decorations.pointerCursor!==t&&(this._currentLink.state.decorations.pointerCursor=t,this._currentLink.state.isHovered&&((o=this._element)===null||o===void 0||o.classList.toggle("xterm-cursor-pointer",t)))}},underline:{get:()=>{var t,i;return(i=(t=this._currentLink)===null||t===void 0?void 0:t.state)===null||i===void 0?void 0:i.decorations.underline},set:t=>{var i,o,c;!((i=this._currentLink)===null||i===void 0)&&i.state&&((c=(o=this._currentLink)===null||o===void 0?void 0:o.state)===null||c===void 0?void 0:c.decorations.underline)!==t&&(this._currentLink.state.decorations.underline=t,this._currentLink.state.isHovered&&this._fireUnderlineEvent(e.link,t))}}}),this._renderService&&this._linkCacheDisposables.push(this._renderService.onRenderedViewportChange(t=>{if(!this._currentLink)return;const i=t.start===0?0:t.start+1+this._bufferService.buffer.ydisp,o=this._bufferService.buffer.ydisp+1+t.end;if(this._currentLink.link.range.start.y>=i&&this._currentLink.link.range.end.y<=o&&(this._clearCurrentLink(i,o),this._lastMouseEvent&&this._element)){const c=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);c&&this._askForLink(c,!1)}})))}_linkHover(e,s,t){var i;!((i=this._currentLink)===null||i===void 0)&&i.state&&(this._currentLink.state.isHovered=!0,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(s,!0),this._currentLink.state.decorations.pointerCursor&&e.classList.add("xterm-cursor-pointer")),s.hover&&s.hover(t,s.text)}_fireUnderlineEvent(e,s){const t=e.range,i=this._bufferService.buffer.ydisp,o=this._createLinkUnderlineEvent(t.start.x-1,t.start.y-i-1,t.end.x,t.end.y-i-1,void 0);(s?this._onShowLinkUnderline:this._onHideLinkUnderline).fire(o)}_linkLeave(e,s,t){var i;!((i=this._currentLink)===null||i===void 0)&&i.state&&(this._currentLink.state.isHovered=!1,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(s,!1),this._currentLink.state.decorations.pointerCursor&&e.classList.remove("xterm-cursor-pointer")),s.leave&&s.leave(t,s.text)}_linkAtPosition(e,s){const t=e.range.start.y*this._bufferService.cols+e.range.start.x,i=e.range.end.y*this._bufferService.cols+e.range.end.x,o=s.y*this._bufferService.cols+s.x;return t<=o&&o<=i}_positionFromMouseEvent(e,s,t){const i=t.getCoords(e,s,this._bufferService.cols,this._bufferService.rows);if(i)return{x:i[0],y:i[1]+this._bufferService.buffer.ydisp}}_createLinkUnderlineEvent(e,s,t,i,o){return{x1:e,y1:s,x2:t,y2:i,cols:this._bufferService.cols,fg:o}}};r.Linkifier2=_=l([u(0,p.IBufferService)],_)},9042:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.tooMuchOutput=r.promptLabel=void 0,r.promptLabel="Terminal input",r.tooMuchOutput="Too much output to announce, navigate to rows manually to read"},3730:function(I,r,a){var l=this&&this.__decorate||function(_,e,s,t){var i,o=arguments.length,c=o<3?e:t===null?t=Object.getOwnPropertyDescriptor(e,s):t;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(_,e,s,t);else for(var v=_.length-1;v>=0;v--)(i=_[v])&&(c=(o<3?i(c):o>3?i(e,s,c):i(e,s))||c);return o>3&&c&&Object.defineProperty(e,s,c),c},u=this&&this.__param||function(_,e){return function(s,t){e(s,t,_)}};Object.defineProperty(r,"__esModule",{value:!0}),r.OscLinkProvider=void 0;const n=a(511),d=a(2585);let f=r.OscLinkProvider=class{constructor(_,e,s){this._bufferService=_,this._optionsService=e,this._oscLinkService=s}provideLinks(_,e){var s;const t=this._bufferService.buffer.lines.get(_-1);if(!t)return void e(void 0);const i=[],o=this._optionsService.rawOptions.linkHandler,c=new n.CellData,v=t.getTrimmedLength();let m=-1,h=-1,g=!1;for(let b=0;bo?o.activate(x,T,y):p(0,T),hover:(x,T)=>{var O;return(O=o==null?void 0:o.hover)===null||O===void 0?void 0:O.call(o,x,T,y)},leave:(x,T)=>{var O;return(O=o==null?void 0:o.leave)===null||O===void 0?void 0:O.call(o,x,T,y)}})}g=!1,c.hasExtendedAttrs()&&c.extended.urlId?(h=b,m=c.extended.urlId):(h=-1,m=-1)}}e(i)}};function p(_,e){if(confirm(`Do you want to navigate to ${e}? @@ -6,6 +6,6 @@ WARNING: This link could potentially be dangerous`)){const s=window.open();if(s) `:` `)}clearSelection(){this._model.clearSelection(),this._removeMouseDownListeners(),this.refresh(),this._onSelectionChange.fire()}refresh(h){this._refreshAnimationFrame||(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._refresh())),s.isLinux&&h&&this.selectionText.length&&this._onLinuxMouseSelection.fire(this.selectionText)}_refresh(){this._refreshAnimationFrame=void 0,this._onRedrawRequest.fire({start:this._model.finalSelectionStart,end:this._model.finalSelectionEnd,columnSelectMode:this._activeSelectionMode===3})}_isClickInSelection(h){const g=this._getMouseBufferCoords(h),b=this._model.finalSelectionStart,L=this._model.finalSelectionEnd;return!!(b&&L&&g)&&this._areCoordsInSelection(g,b,L)}isCellInSelection(h,g){const b=this._model.finalSelectionStart,L=this._model.finalSelectionEnd;return!(!b||!L)&&this._areCoordsInSelection([h,g],b,L)}_areCoordsInSelection(h,g,b){return h[1]>g[1]&&h[1]=g[0]&&h[0]=g[0]}_selectWordAtCursor(h,g){var b,L;const y=(L=(b=this._linkifier.currentLink)===null||b===void 0?void 0:b.link)===null||L===void 0?void 0:L.range;if(y)return this._model.selectionStart=[y.start.x-1,y.start.y-1],this._model.selectionStartLength=(0,t.getRangeLength)(y,this._bufferService.cols),this._model.selectionEnd=void 0,!0;const k=this._getMouseBufferCoords(h);return!!k&&(this._selectWordAt(k,g),this._model.selectionEnd=void 0,!0)}selectAll(){this._model.isSelectAllActive=!0,this.refresh(),this._onSelectionChange.fire()}selectLines(h,g){this._model.clearSelection(),h=Math.max(h,0),g=Math.min(g,this._bufferService.buffer.lines.length-1),this._model.selectionStart=[0,h],this._model.selectionEnd=[this._bufferService.cols,g],this.refresh(),this._onSelectionChange.fire()}_handleTrim(h){this._model.handleTrim(h)&&this.refresh()}_getMouseBufferCoords(h){const g=this._mouseService.getCoords(h,this._screenElement,this._bufferService.cols,this._bufferService.rows,!0);if(g)return g[0]--,g[1]--,g[1]+=this._bufferService.buffer.ydisp,g}_getMouseEventScrollAmount(h){let g=(0,n.getCoordsRelativeToElement)(this._coreBrowserService.window,h,this._screenElement)[1];const b=this._renderService.dimensions.css.canvas.height;return g>=0&&g<=b?0:(g>b&&(g-=b),g=Math.min(Math.max(g,-50),50),g/=50,g/Math.abs(g)+Math.round(14*g))}shouldForceSelection(h){return s.isMac?h.altKey&&this._optionsService.rawOptions.macOptionClickForcesSelection:h.shiftKey}handleMouseDown(h){if(this._mouseDownTimeStamp=h.timeStamp,(h.button!==2||!this.hasSelection)&&h.button===0){if(!this._enabled){if(!this.shouldForceSelection(h))return;h.stopPropagation()}h.preventDefault(),this._dragScrollAmount=0,this._enabled&&h.shiftKey?this._handleIncrementalClick(h):h.detail===1?this._handleSingleClick(h):h.detail===2?this._handleDoubleClick(h):h.detail===3&&this._handleTripleClick(h),this._addMouseDownListeners(),this.refresh(!0)}}_addMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.addEventListener("mousemove",this._mouseMoveListener),this._screenElement.ownerDocument.addEventListener("mouseup",this._mouseUpListener)),this._dragScrollIntervalTimer=this._coreBrowserService.window.setInterval(()=>this._dragScroll(),50)}_removeMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.removeEventListener("mousemove",this._mouseMoveListener),this._screenElement.ownerDocument.removeEventListener("mouseup",this._mouseUpListener)),this._coreBrowserService.window.clearInterval(this._dragScrollIntervalTimer),this._dragScrollIntervalTimer=void 0}_handleIncrementalClick(h){this._model.selectionStart&&(this._model.selectionEnd=this._getMouseBufferCoords(h))}_handleSingleClick(h){if(this._model.selectionStartLength=0,this._model.isSelectAllActive=!1,this._activeSelectionMode=this.shouldColumnSelect(h)?3:0,this._model.selectionStart=this._getMouseBufferCoords(h),!this._model.selectionStart)return;this._model.selectionEnd=void 0;const g=this._bufferService.buffer.lines.get(this._model.selectionStart[1]);g&&g.length!==this._model.selectionStart[0]&&g.hasWidth(this._model.selectionStart[0])===0&&this._model.selectionStart[0]++}_handleDoubleClick(h){this._selectWordAtCursor(h,!0)&&(this._activeSelectionMode=1)}_handleTripleClick(h){const g=this._getMouseBufferCoords(h);g&&(this._activeSelectionMode=2,this._selectLineAt(g[1]))}shouldColumnSelect(h){return h.altKey&&!(s.isMac&&this._optionsService.rawOptions.macOptionClickForcesSelection)}_handleMouseMove(h){if(h.stopImmediatePropagation(),!this._model.selectionStart)return;const g=this._model.selectionEnd?[this._model.selectionEnd[0],this._model.selectionEnd[1]]:null;if(this._model.selectionEnd=this._getMouseBufferCoords(h),!this._model.selectionEnd)return void this.refresh(!0);this._activeSelectionMode===2?this._model.selectionEnd[1]0?this._model.selectionEnd[0]=this._bufferService.cols:this._dragScrollAmount<0&&(this._model.selectionEnd[0]=0));const b=this._bufferService.buffer;if(this._model.selectionEnd[1]0?(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=this._bufferService.cols),this._model.selectionEnd[1]=Math.min(h.ydisp+this._bufferService.rows,h.lines.length-1)):(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=0),this._model.selectionEnd[1]=h.ydisp),this.refresh()}}_handleMouseUp(h){const g=h.timeStamp-this._mouseDownTimeStamp;if(this._removeMouseDownListeners(),this.selectionText.length<=1&&g<500&&h.altKey&&this._optionsService.rawOptions.altClickMovesCursor){if(this._bufferService.buffer.ybase===this._bufferService.buffer.ydisp){const b=this._mouseService.getCoords(h,this._element,this._bufferService.cols,this._bufferService.rows,!1);if(b&&b[0]!==void 0&&b[1]!==void 0){const L=(0,d.moveToCellSequence)(b[0]-1,b[1]-1,this._bufferService,this._coreService.decPrivateModes.applicationCursorKeys);this._coreService.triggerDataEvent(L,!0)}}}else this._fireEventIfSelectionChanged()}_fireEventIfSelectionChanged(){const h=this._model.finalSelectionStart,g=this._model.finalSelectionEnd,b=!(!h||!g||h[0]===g[0]&&h[1]===g[1]);b?h&&g&&(this._oldSelectionStart&&this._oldSelectionEnd&&h[0]===this._oldSelectionStart[0]&&h[1]===this._oldSelectionStart[1]&&g[0]===this._oldSelectionEnd[0]&&g[1]===this._oldSelectionEnd[1]||this._fireOnSelectionChange(h,g,b)):this._oldHasSelection&&this._fireOnSelectionChange(h,g,b)}_fireOnSelectionChange(h,g,b){this._oldSelectionStart=h,this._oldSelectionEnd=g,this._oldHasSelection=b,this._onSelectionChange.fire()}_handleBufferActivate(h){this.clearSelection(),this._trimListener.dispose(),this._trimListener=h.activeBuffer.lines.onTrim(g=>this._handleTrim(g))}_convertViewportColToCharacterIndex(h,g){let b=g;for(let L=0;g>=L;L++){const y=h.loadCell(L,this._workCell).getChars().length;this._workCell.getWidth()===0?b--:y>1&&g!==L&&(b+=y-1)}return b}setSelection(h,g,b){this._model.clearSelection(),this._removeMouseDownListeners(),this._model.selectionStart=[h,g],this._model.selectionStartLength=b,this.refresh(),this._fireEventIfSelectionChanged()}rightClickSelect(h){this._isClickInSelection(h)||(this._selectWordAtCursor(h,!1)&&this.refresh(!0),this._fireEventIfSelectionChanged())}_getWordAt(h,g,b=!0,L=!0){if(h[0]>=this._bufferService.cols)return;const y=this._bufferService.buffer,k=y.lines.get(h[1]);if(!k)return;const x=y.translateBufferLineToString(h[1],!1);let T=this._convertViewportColToCharacterIndex(k,h[0]),O=T;const M=h[0]-T;let C=0,w=0,E=0,D=0;if(x.charAt(T)===" "){for(;T>0&&x.charAt(T-1)===" ";)T--;for(;O1&&(D+=z-1,O+=z-1);U>0&&T>0&&!this._isCharWordSeparator(k.loadCell(U-1,this._workCell));){k.loadCell(U-1,this._workCell);const S=this._workCell.getChars().length;this._workCell.getWidth()===0?(C++,U--):S>1&&(E+=S-1,T-=S-1),T--,U--}for(;W1&&(D+=S-1,O+=S-1),O++,W++}}O++;let P=T+M-C+E,H=Math.min(this._bufferService.cols,O-T+C+w-E-D);if(g||x.slice(T,O).trim()!==""){if(b&&P===0&&k.getCodePoint(0)!==32){const U=y.lines.get(h[1]-1);if(U&&k.isWrapped&&U.getCodePoint(this._bufferService.cols-1)!==32){const W=this._getWordAt([this._bufferService.cols-1,h[1]-1],!1,!0,!1);if(W){const z=this._bufferService.cols-W.start;P-=z,H+=z}}}if(L&&P+H===this._bufferService.cols&&k.getCodePoint(this._bufferService.cols-1)!==32){const U=y.lines.get(h[1]+1);if(U!=null&&U.isWrapped&&U.getCodePoint(0)!==32){const W=this._getWordAt([0,h[1]+1],!1,!1,!0);W&&(H+=W.length)}}return{start:P,length:H}}}_selectWordAt(h,g){const b=this._getWordAt(h,g);if(b){for(;b.start<0;)b.start+=this._bufferService.cols,h[1]--;this._model.selectionStart=[b.start,h[1]],this._model.selectionStartLength=b.length}}_selectToWordAt(h){const g=this._getWordAt(h,!0);if(g){let b=h[1];for(;g.start<0;)g.start+=this._bufferService.cols,b--;if(!this._model.areSelectionValuesReversed())for(;g.start+g.length>this._bufferService.cols;)g.length-=this._bufferService.cols,b++;this._model.selectionEnd=[this._model.areSelectionValuesReversed()?g.start:g.start+g.length,b]}}_isCharWordSeparator(h){return h.getWidth()!==0&&this._optionsService.rawOptions.wordSeparator.indexOf(h.getChars())>=0}_selectLineAt(h){const g=this._bufferService.buffer.getWrappedRangeForLine(h),b={start:{x:0,y:g.first},end:{x:this._bufferService.cols-1,y:g.last}};this._model.selectionStart=[0,g.first],this._model.selectionEnd=void 0,this._model.selectionStartLength=(0,t.getRangeLength)(b,this._bufferService.cols)}};r.SelectionService=m=l([u(3,o.IBufferService),u(4,o.ICoreService),u(5,p.IMouseService),u(6,o.IOptionsService),u(7,p.IRenderService),u(8,p.ICoreBrowserService)],m)},4725:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.IThemeService=r.ICharacterJoinerService=r.ISelectionService=r.IRenderService=r.IMouseService=r.ICoreBrowserService=r.ICharSizeService=void 0;const l=a(8343);r.ICharSizeService=(0,l.createDecorator)("CharSizeService"),r.ICoreBrowserService=(0,l.createDecorator)("CoreBrowserService"),r.IMouseService=(0,l.createDecorator)("MouseService"),r.IRenderService=(0,l.createDecorator)("RenderService"),r.ISelectionService=(0,l.createDecorator)("SelectionService"),r.ICharacterJoinerService=(0,l.createDecorator)("CharacterJoinerService"),r.IThemeService=(0,l.createDecorator)("ThemeService")},6731:function(I,r,a){var l=this&&this.__decorate||function(m,h,g,b){var L,y=arguments.length,k=y<3?h:b===null?b=Object.getOwnPropertyDescriptor(h,g):b;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")k=Reflect.decorate(m,h,g,b);else for(var x=m.length-1;x>=0;x--)(L=m[x])&&(k=(y<3?L(k):y>3?L(h,g,k):L(h,g))||k);return y>3&&k&&Object.defineProperty(h,g,k),k},u=this&&this.__param||function(m,h){return function(g,b){h(g,b,m)}};Object.defineProperty(r,"__esModule",{value:!0}),r.ThemeService=r.DEFAULT_ANSI_COLORS=void 0;const n=a(7239),d=a(8055),f=a(8460),p=a(844),_=a(2585),e=d.css.toColor("#ffffff"),s=d.css.toColor("#000000"),t=d.css.toColor("#ffffff"),i=d.css.toColor("#000000"),o={css:"rgba(255, 255, 255, 0.3)",rgba:4294967117};r.DEFAULT_ANSI_COLORS=Object.freeze((()=>{const m=[d.css.toColor("#2e3436"),d.css.toColor("#cc0000"),d.css.toColor("#4e9a06"),d.css.toColor("#c4a000"),d.css.toColor("#3465a4"),d.css.toColor("#75507b"),d.css.toColor("#06989a"),d.css.toColor("#d3d7cf"),d.css.toColor("#555753"),d.css.toColor("#ef2929"),d.css.toColor("#8ae234"),d.css.toColor("#fce94f"),d.css.toColor("#729fcf"),d.css.toColor("#ad7fa8"),d.css.toColor("#34e2e2"),d.css.toColor("#eeeeec")],h=[0,95,135,175,215,255];for(let g=0;g<216;g++){const b=h[g/36%6|0],L=h[g/6%6|0],y=h[g%6];m.push({css:d.channels.toCss(b,L,y),rgba:d.channels.toRgba(b,L,y)})}for(let g=0;g<24;g++){const b=8+10*g;m.push({css:d.channels.toCss(b,b,b),rgba:d.channels.toRgba(b,b,b)})}return m})());let c=r.ThemeService=class extends p.Disposable{get colors(){return this._colors}constructor(m){super(),this._optionsService=m,this._contrastCache=new n.ColorContrastCache,this._halfContrastCache=new n.ColorContrastCache,this._onChangeColors=this.register(new f.EventEmitter),this.onChangeColors=this._onChangeColors.event,this._colors={foreground:e,background:s,cursor:t,cursorAccent:i,selectionForeground:void 0,selectionBackgroundTransparent:o,selectionBackgroundOpaque:d.color.blend(s,o),selectionInactiveBackgroundTransparent:o,selectionInactiveBackgroundOpaque:d.color.blend(s,o),ansi:r.DEFAULT_ANSI_COLORS.slice(),contrastCache:this._contrastCache,halfContrastCache:this._halfContrastCache},this._updateRestoreColors(),this._setTheme(this._optionsService.rawOptions.theme),this.register(this._optionsService.onSpecificOptionChange("minimumContrastRatio",()=>this._contrastCache.clear())),this.register(this._optionsService.onSpecificOptionChange("theme",()=>this._setTheme(this._optionsService.rawOptions.theme)))}_setTheme(m={}){const h=this._colors;if(h.foreground=v(m.foreground,e),h.background=v(m.background,s),h.cursor=v(m.cursor,t),h.cursorAccent=v(m.cursorAccent,i),h.selectionBackgroundTransparent=v(m.selectionBackground,o),h.selectionBackgroundOpaque=d.color.blend(h.background,h.selectionBackgroundTransparent),h.selectionInactiveBackgroundTransparent=v(m.selectionInactiveBackground,h.selectionBackgroundTransparent),h.selectionInactiveBackgroundOpaque=d.color.blend(h.background,h.selectionInactiveBackgroundTransparent),h.selectionForeground=m.selectionForeground?v(m.selectionForeground,d.NULL_COLOR):void 0,h.selectionForeground===d.NULL_COLOR&&(h.selectionForeground=void 0),d.color.isOpaque(h.selectionBackgroundTransparent)&&(h.selectionBackgroundTransparent=d.color.opacity(h.selectionBackgroundTransparent,.3)),d.color.isOpaque(h.selectionInactiveBackgroundTransparent)&&(h.selectionInactiveBackgroundTransparent=d.color.opacity(h.selectionInactiveBackgroundTransparent,.3)),h.ansi=r.DEFAULT_ANSI_COLORS.slice(),h.ansi[0]=v(m.black,r.DEFAULT_ANSI_COLORS[0]),h.ansi[1]=v(m.red,r.DEFAULT_ANSI_COLORS[1]),h.ansi[2]=v(m.green,r.DEFAULT_ANSI_COLORS[2]),h.ansi[3]=v(m.yellow,r.DEFAULT_ANSI_COLORS[3]),h.ansi[4]=v(m.blue,r.DEFAULT_ANSI_COLORS[4]),h.ansi[5]=v(m.magenta,r.DEFAULT_ANSI_COLORS[5]),h.ansi[6]=v(m.cyan,r.DEFAULT_ANSI_COLORS[6]),h.ansi[7]=v(m.white,r.DEFAULT_ANSI_COLORS[7]),h.ansi[8]=v(m.brightBlack,r.DEFAULT_ANSI_COLORS[8]),h.ansi[9]=v(m.brightRed,r.DEFAULT_ANSI_COLORS[9]),h.ansi[10]=v(m.brightGreen,r.DEFAULT_ANSI_COLORS[10]),h.ansi[11]=v(m.brightYellow,r.DEFAULT_ANSI_COLORS[11]),h.ansi[12]=v(m.brightBlue,r.DEFAULT_ANSI_COLORS[12]),h.ansi[13]=v(m.brightMagenta,r.DEFAULT_ANSI_COLORS[13]),h.ansi[14]=v(m.brightCyan,r.DEFAULT_ANSI_COLORS[14]),h.ansi[15]=v(m.brightWhite,r.DEFAULT_ANSI_COLORS[15]),m.extendedAnsi){const g=Math.min(h.ansi.length-16,m.extendedAnsi.length);for(let b=0;b{Object.defineProperty(r,"__esModule",{value:!0}),r.CircularList=void 0;const l=a(8460),u=a(844);class n extends u.Disposable{constructor(f){super(),this._maxLength=f,this.onDeleteEmitter=this.register(new l.EventEmitter),this.onDelete=this.onDeleteEmitter.event,this.onInsertEmitter=this.register(new l.EventEmitter),this.onInsert=this.onInsertEmitter.event,this.onTrimEmitter=this.register(new l.EventEmitter),this.onTrim=this.onTrimEmitter.event,this._array=new Array(this._maxLength),this._startIndex=0,this._length=0}get maxLength(){return this._maxLength}set maxLength(f){if(this._maxLength===f)return;const p=new Array(f);for(let _=0;_this._length)for(let p=this._length;p=f;e--)this._array[this._getCyclicIndex(e+_.length)]=this._array[this._getCyclicIndex(e)];for(let e=0;e<_.length;e++)this._array[this._getCyclicIndex(f+e)]=_[e];if(_.length&&this.onInsertEmitter.fire({index:f,amount:_.length}),this._length+_.length>this._maxLength){const e=this._length+_.length-this._maxLength;this._startIndex+=e,this._length=this._maxLength,this.onTrimEmitter.fire(e)}else this._length+=_.length}trimStart(f){f>this._length&&(f=this._length),this._startIndex+=f,this._length-=f,this.onTrimEmitter.fire(f)}shiftElements(f,p,_){if(!(p<=0)){if(f<0||f>=this._length)throw new Error("start argument out of range");if(f+_<0)throw new Error("Cannot shift elements in list beyond index 0");if(_>0){for(let s=p-1;s>=0;s--)this.set(f+s+_,this.get(f+s));const e=f+p+_-this._length;if(e>0)for(this._length+=e;this._length>this._maxLength;)this._length--,this._startIndex++,this.onTrimEmitter.fire(1)}else for(let e=0;e{Object.defineProperty(r,"__esModule",{value:!0}),r.clone=void 0,r.clone=function a(l,u=5){if(typeof l!="object")return l;const n=Array.isArray(l)?[]:{};for(const d in l)n[d]=u<=1?l[d]:l[d]&&a(l[d],u-1);return n}},8055:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.contrastRatio=r.toPaddedHex=r.rgba=r.rgb=r.css=r.color=r.channels=r.NULL_COLOR=void 0;const l=a(6114);let u=0,n=0,d=0,f=0;var p,_,e,s,t;function i(c){const v=c.toString(16);return v.length<2?"0"+v:v}function o(c,v){return c>>0}}(p||(r.channels=p={})),function(c){function v(m,h){return f=Math.round(255*h),[u,n,d]=t.toChannels(m.rgba),{css:p.toCss(u,n,d,f),rgba:p.toRgba(u,n,d,f)}}c.blend=function(m,h){if(f=(255&h.rgba)/255,f===1)return{css:h.css,rgba:h.rgba};const g=h.rgba>>24&255,b=h.rgba>>16&255,L=h.rgba>>8&255,y=m.rgba>>24&255,k=m.rgba>>16&255,x=m.rgba>>8&255;return u=y+Math.round((g-y)*f),n=k+Math.round((b-k)*f),d=x+Math.round((L-x)*f),{css:p.toCss(u,n,d),rgba:p.toRgba(u,n,d)}},c.isOpaque=function(m){return(255&m.rgba)==255},c.ensureContrastRatio=function(m,h,g){const b=t.ensureContrastRatio(m.rgba,h.rgba,g);if(b)return t.toColor(b>>24&255,b>>16&255,b>>8&255)},c.opaque=function(m){const h=(255|m.rgba)>>>0;return[u,n,d]=t.toChannels(h),{css:p.toCss(u,n,d),rgba:h}},c.opacity=v,c.multiplyOpacity=function(m,h){return f=255&m.rgba,v(m,f*h/255)},c.toColorRGB=function(m){return[m.rgba>>24&255,m.rgba>>16&255,m.rgba>>8&255]}}(_||(r.color=_={})),function(c){let v,m;if(!l.isNode){const h=document.createElement("canvas");h.width=1,h.height=1;const g=h.getContext("2d",{willReadFrequently:!0});g&&(v=g,v.globalCompositeOperation="copy",m=v.createLinearGradient(0,0,1,1))}c.toColor=function(h){if(h.match(/#[\da-f]{3,8}/i))switch(h.length){case 4:return u=parseInt(h.slice(1,2).repeat(2),16),n=parseInt(h.slice(2,3).repeat(2),16),d=parseInt(h.slice(3,4).repeat(2),16),t.toColor(u,n,d);case 5:return u=parseInt(h.slice(1,2).repeat(2),16),n=parseInt(h.slice(2,3).repeat(2),16),d=parseInt(h.slice(3,4).repeat(2),16),f=parseInt(h.slice(4,5).repeat(2),16),t.toColor(u,n,d,f);case 7:return{css:h,rgba:(parseInt(h.slice(1),16)<<8|255)>>>0};case 9:return{css:h,rgba:parseInt(h.slice(1),16)>>>0}}const g=h.match(/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(,\s*(0|1|\d?\.(\d+))\s*)?\)/);if(g)return u=parseInt(g[1]),n=parseInt(g[2]),d=parseInt(g[3]),f=Math.round(255*(g[5]===void 0?1:parseFloat(g[5]))),t.toColor(u,n,d,f);if(!v||!m)throw new Error("css.toColor: Unsupported css format");if(v.fillStyle=m,v.fillStyle=h,typeof v.fillStyle!="string")throw new Error("css.toColor: Unsupported css format");if(v.fillRect(0,0,1,1),[u,n,d,f]=v.getImageData(0,0,1,1).data,f!==255)throw new Error("css.toColor: Unsupported css format");return{rgba:p.toRgba(u,n,d,f),css:h}}}(e||(r.css=e={})),function(c){function v(m,h,g){const b=m/255,L=h/255,y=g/255;return .2126*(b<=.03928?b/12.92:Math.pow((b+.055)/1.055,2.4))+.7152*(L<=.03928?L/12.92:Math.pow((L+.055)/1.055,2.4))+.0722*(y<=.03928?y/12.92:Math.pow((y+.055)/1.055,2.4))}c.relativeLuminance=function(m){return v(m>>16&255,m>>8&255,255&m)},c.relativeLuminance2=v}(s||(r.rgb=s={})),function(c){function v(h,g,b){const L=h>>24&255,y=h>>16&255,k=h>>8&255;let x=g>>24&255,T=g>>16&255,O=g>>8&255,M=o(s.relativeLuminance2(x,T,O),s.relativeLuminance2(L,y,k));for(;M0||T>0||O>0);)x-=Math.max(0,Math.ceil(.1*x)),T-=Math.max(0,Math.ceil(.1*T)),O-=Math.max(0,Math.ceil(.1*O)),M=o(s.relativeLuminance2(x,T,O),s.relativeLuminance2(L,y,k));return(x<<24|T<<16|O<<8|255)>>>0}function m(h,g,b){const L=h>>24&255,y=h>>16&255,k=h>>8&255;let x=g>>24&255,T=g>>16&255,O=g>>8&255,M=o(s.relativeLuminance2(x,T,O),s.relativeLuminance2(L,y,k));for(;M>>0}c.ensureContrastRatio=function(h,g,b){const L=s.relativeLuminance(h>>8),y=s.relativeLuminance(g>>8);if(o(L,y)>8));if(Oo(L,s.relativeLuminance(M>>8))?T:M}return T}const k=m(h,g,b),x=o(L,s.relativeLuminance(k>>8));if(xo(L,s.relativeLuminance(T>>8))?k:T}return k}},c.reduceLuminance=v,c.increaseLuminance=m,c.toChannels=function(h){return[h>>24&255,h>>16&255,h>>8&255,255&h]},c.toColor=function(h,g,b,L){return{css:p.toCss(h,g,b,L),rgba:p.toRgba(h,g,b,L)}}}(t||(r.rgba=t={})),r.toPaddedHex=i,r.contrastRatio=o},8969:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CoreTerminal=void 0;const l=a(844),u=a(2585),n=a(4348),d=a(7866),f=a(744),p=a(7302),_=a(6975),e=a(8460),s=a(1753),t=a(1480),i=a(7994),o=a(9282),c=a(5435),v=a(5981),m=a(2660);let h=!1;class g extends l.Disposable{get onScroll(){return this._onScrollApi||(this._onScrollApi=this.register(new e.EventEmitter),this._onScroll.event(L=>{var y;(y=this._onScrollApi)===null||y===void 0||y.fire(L.position)})),this._onScrollApi.event}get cols(){return this._bufferService.cols}get rows(){return this._bufferService.rows}get buffers(){return this._bufferService.buffers}get options(){return this.optionsService.options}set options(L){for(const y in L)this.optionsService.options[y]=L[y]}constructor(L){super(),this._windowsWrappingHeuristics=this.register(new l.MutableDisposable),this._onBinary=this.register(new e.EventEmitter),this.onBinary=this._onBinary.event,this._onData=this.register(new e.EventEmitter),this.onData=this._onData.event,this._onLineFeed=this.register(new e.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onResize=this.register(new e.EventEmitter),this.onResize=this._onResize.event,this._onWriteParsed=this.register(new e.EventEmitter),this.onWriteParsed=this._onWriteParsed.event,this._onScroll=this.register(new e.EventEmitter),this._instantiationService=new n.InstantiationService,this.optionsService=this.register(new p.OptionsService(L)),this._instantiationService.setService(u.IOptionsService,this.optionsService),this._bufferService=this.register(this._instantiationService.createInstance(f.BufferService)),this._instantiationService.setService(u.IBufferService,this._bufferService),this._logService=this.register(this._instantiationService.createInstance(d.LogService)),this._instantiationService.setService(u.ILogService,this._logService),this.coreService=this.register(this._instantiationService.createInstance(_.CoreService)),this._instantiationService.setService(u.ICoreService,this.coreService),this.coreMouseService=this.register(this._instantiationService.createInstance(s.CoreMouseService)),this._instantiationService.setService(u.ICoreMouseService,this.coreMouseService),this.unicodeService=this.register(this._instantiationService.createInstance(t.UnicodeService)),this._instantiationService.setService(u.IUnicodeService,this.unicodeService),this._charsetService=this._instantiationService.createInstance(i.CharsetService),this._instantiationService.setService(u.ICharsetService,this._charsetService),this._oscLinkService=this._instantiationService.createInstance(m.OscLinkService),this._instantiationService.setService(u.IOscLinkService,this._oscLinkService),this._inputHandler=this.register(new c.InputHandler(this._bufferService,this._charsetService,this.coreService,this._logService,this.optionsService,this._oscLinkService,this.coreMouseService,this.unicodeService)),this.register((0,e.forwardEvent)(this._inputHandler.onLineFeed,this._onLineFeed)),this.register(this._inputHandler),this.register((0,e.forwardEvent)(this._bufferService.onResize,this._onResize)),this.register((0,e.forwardEvent)(this.coreService.onData,this._onData)),this.register((0,e.forwardEvent)(this.coreService.onBinary,this._onBinary)),this.register(this.coreService.onRequestScrollToBottom(()=>this.scrollToBottom())),this.register(this.coreService.onUserInput(()=>this._writeBuffer.handleUserInput())),this.register(this.optionsService.onMultipleOptionChange(["windowsMode","windowsPty"],()=>this._handleWindowsPtyOptionChange())),this.register(this._bufferService.onScroll(y=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp,source:0}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)})),this.register(this._inputHandler.onScroll(y=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp,source:0}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)})),this._writeBuffer=this.register(new v.WriteBuffer((y,k)=>this._inputHandler.parse(y,k))),this.register((0,e.forwardEvent)(this._writeBuffer.onWriteParsed,this._onWriteParsed))}write(L,y){this._writeBuffer.write(L,y)}writeSync(L,y){this._logService.logLevel<=u.LogLevelEnum.WARN&&!h&&(this._logService.warn("writeSync is unreliable and will be removed soon."),h=!0),this._writeBuffer.writeSync(L,y)}resize(L,y){isNaN(L)||isNaN(y)||(L=Math.max(L,f.MINIMUM_COLS),y=Math.max(y,f.MINIMUM_ROWS),this._bufferService.resize(L,y))}scroll(L,y=!1){this._bufferService.scroll(L,y)}scrollLines(L,y,k){this._bufferService.scrollLines(L,y,k)}scrollPages(L){this.scrollLines(L*(this.rows-1))}scrollToTop(){this.scrollLines(-this._bufferService.buffer.ydisp)}scrollToBottom(){this.scrollLines(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp)}scrollToLine(L){const y=L-this._bufferService.buffer.ydisp;y!==0&&this.scrollLines(y)}registerEscHandler(L,y){return this._inputHandler.registerEscHandler(L,y)}registerDcsHandler(L,y){return this._inputHandler.registerDcsHandler(L,y)}registerCsiHandler(L,y){return this._inputHandler.registerCsiHandler(L,y)}registerOscHandler(L,y){return this._inputHandler.registerOscHandler(L,y)}_setup(){this._handleWindowsPtyOptionChange()}reset(){this._inputHandler.reset(),this._bufferService.reset(),this._charsetService.reset(),this.coreService.reset(),this.coreMouseService.reset()}_handleWindowsPtyOptionChange(){let L=!1;const y=this.optionsService.rawOptions.windowsPty;y&&y.buildNumber!==void 0&&y.buildNumber!==void 0?L=y.backend==="conpty"&&y.buildNumber<21376:this.optionsService.rawOptions.windowsMode&&(L=!0),L?this._enableWindowsWrappingHeuristics():this._windowsWrappingHeuristics.clear()}_enableWindowsWrappingHeuristics(){if(!this._windowsWrappingHeuristics.value){const L=[];L.push(this.onLineFeed(o.updateWindowsModeWrappedState.bind(null,this._bufferService))),L.push(this.registerCsiHandler({final:"H"},()=>((0,o.updateWindowsModeWrappedState)(this._bufferService),!1))),this._windowsWrappingHeuristics.value=(0,l.toDisposable)(()=>{for(const y of L)y.dispose()})}}}r.CoreTerminal=g},8460:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.forwardEvent=r.EventEmitter=void 0,r.EventEmitter=class{constructor(){this._listeners=[],this._disposed=!1}get event(){return this._event||(this._event=a=>(this._listeners.push(a),{dispose:()=>{if(!this._disposed){for(let l=0;ll.fire(u))}},5435:function(I,r,a){var l=this&&this.__decorate||function(M,C,w,E){var D,P=arguments.length,H=P<3?C:E===null?E=Object.getOwnPropertyDescriptor(C,w):E;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")H=Reflect.decorate(M,C,w,E);else for(var U=M.length-1;U>=0;U--)(D=M[U])&&(H=(P<3?D(H):P>3?D(C,w,H):D(C,w))||H);return P>3&&H&&Object.defineProperty(C,w,H),H},u=this&&this.__param||function(M,C){return function(w,E){C(w,E,M)}};Object.defineProperty(r,"__esModule",{value:!0}),r.InputHandler=r.WindowsOptionsReportType=void 0;const n=a(2584),d=a(7116),f=a(2015),p=a(844),_=a(482),e=a(8437),s=a(8460),t=a(643),i=a(511),o=a(3734),c=a(2585),v=a(6242),m=a(6351),h=a(5941),g={"(":0,")":1,"*":2,"+":3,"-":1,".":2},b=131072;function L(M,C){if(M>24)return C.setWinLines||!1;switch(M){case 1:return!!C.restoreWin;case 2:return!!C.minimizeWin;case 3:return!!C.setWinPosition;case 4:return!!C.setWinSizePixels;case 5:return!!C.raiseWin;case 6:return!!C.lowerWin;case 7:return!!C.refreshWin;case 8:return!!C.setWinSizeChars;case 9:return!!C.maximizeWin;case 10:return!!C.fullscreenWin;case 11:return!!C.getWinState;case 13:return!!C.getWinPosition;case 14:return!!C.getWinSizePixels;case 15:return!!C.getScreenSizePixels;case 16:return!!C.getCellSizePixels;case 18:return!!C.getWinSizeChars;case 19:return!!C.getScreenSizeChars;case 20:return!!C.getIconTitle;case 21:return!!C.getWinTitle;case 22:return!!C.pushTitle;case 23:return!!C.popTitle;case 24:return!!C.setWinLines}return!1}var y;(function(M){M[M.GET_WIN_SIZE_PIXELS=0]="GET_WIN_SIZE_PIXELS",M[M.GET_CELL_SIZE_PIXELS=1]="GET_CELL_SIZE_PIXELS"})(y||(r.WindowsOptionsReportType=y={}));let k=0;class x extends p.Disposable{getAttrData(){return this._curAttrData}constructor(C,w,E,D,P,H,U,W,z=new f.EscapeSequenceParser){super(),this._bufferService=C,this._charsetService=w,this._coreService=E,this._logService=D,this._optionsService=P,this._oscLinkService=H,this._coreMouseService=U,this._unicodeService=W,this._parser=z,this._parseBuffer=new Uint32Array(4096),this._stringDecoder=new _.StringToUtf32,this._utf8Decoder=new _.Utf8ToUtf32,this._workCell=new i.CellData,this._windowTitle="",this._iconName="",this._windowTitleStack=[],this._iconNameStack=[],this._curAttrData=e.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=e.DEFAULT_ATTR_DATA.clone(),this._onRequestBell=this.register(new s.EventEmitter),this.onRequestBell=this._onRequestBell.event,this._onRequestRefreshRows=this.register(new s.EventEmitter),this.onRequestRefreshRows=this._onRequestRefreshRows.event,this._onRequestReset=this.register(new s.EventEmitter),this.onRequestReset=this._onRequestReset.event,this._onRequestSendFocus=this.register(new s.EventEmitter),this.onRequestSendFocus=this._onRequestSendFocus.event,this._onRequestSyncScrollBar=this.register(new s.EventEmitter),this.onRequestSyncScrollBar=this._onRequestSyncScrollBar.event,this._onRequestWindowsOptionsReport=this.register(new s.EventEmitter),this.onRequestWindowsOptionsReport=this._onRequestWindowsOptionsReport.event,this._onA11yChar=this.register(new s.EventEmitter),this.onA11yChar=this._onA11yChar.event,this._onA11yTab=this.register(new s.EventEmitter),this.onA11yTab=this._onA11yTab.event,this._onCursorMove=this.register(new s.EventEmitter),this.onCursorMove=this._onCursorMove.event,this._onLineFeed=this.register(new s.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onScroll=this.register(new s.EventEmitter),this.onScroll=this._onScroll.event,this._onTitleChange=this.register(new s.EventEmitter),this.onTitleChange=this._onTitleChange.event,this._onColor=this.register(new s.EventEmitter),this.onColor=this._onColor.event,this._parseStack={paused:!1,cursorStartX:0,cursorStartY:0,decodedLength:0,position:0},this._specialColors=[256,257,258],this.register(this._parser),this._dirtyRowTracker=new T(this._bufferService),this._activeBuffer=this._bufferService.buffer,this.register(this._bufferService.buffers.onBufferActivate(S=>this._activeBuffer=S.activeBuffer)),this._parser.setCsiHandlerFallback((S,R)=>{this._logService.debug("Unknown CSI code: ",{identifier:this._parser.identToString(S),params:R.toArray()})}),this._parser.setEscHandlerFallback(S=>{this._logService.debug("Unknown ESC code: ",{identifier:this._parser.identToString(S)})}),this._parser.setExecuteHandlerFallback(S=>{this._logService.debug("Unknown EXECUTE code: ",{code:S})}),this._parser.setOscHandlerFallback((S,R,B)=>{this._logService.debug("Unknown OSC code: ",{identifier:S,action:R,data:B})}),this._parser.setDcsHandlerFallback((S,R,B)=>{R==="HOOK"&&(B=B.toArray()),this._logService.debug("Unknown DCS code: ",{identifier:this._parser.identToString(S),action:R,payload:B})}),this._parser.setPrintHandler((S,R,B)=>this.print(S,R,B)),this._parser.registerCsiHandler({final:"@"},S=>this.insertChars(S)),this._parser.registerCsiHandler({intermediates:" ",final:"@"},S=>this.scrollLeft(S)),this._parser.registerCsiHandler({final:"A"},S=>this.cursorUp(S)),this._parser.registerCsiHandler({intermediates:" ",final:"A"},S=>this.scrollRight(S)),this._parser.registerCsiHandler({final:"B"},S=>this.cursorDown(S)),this._parser.registerCsiHandler({final:"C"},S=>this.cursorForward(S)),this._parser.registerCsiHandler({final:"D"},S=>this.cursorBackward(S)),this._parser.registerCsiHandler({final:"E"},S=>this.cursorNextLine(S)),this._parser.registerCsiHandler({final:"F"},S=>this.cursorPrecedingLine(S)),this._parser.registerCsiHandler({final:"G"},S=>this.cursorCharAbsolute(S)),this._parser.registerCsiHandler({final:"H"},S=>this.cursorPosition(S)),this._parser.registerCsiHandler({final:"I"},S=>this.cursorForwardTab(S)),this._parser.registerCsiHandler({final:"J"},S=>this.eraseInDisplay(S,!1)),this._parser.registerCsiHandler({prefix:"?",final:"J"},S=>this.eraseInDisplay(S,!0)),this._parser.registerCsiHandler({final:"K"},S=>this.eraseInLine(S,!1)),this._parser.registerCsiHandler({prefix:"?",final:"K"},S=>this.eraseInLine(S,!0)),this._parser.registerCsiHandler({final:"L"},S=>this.insertLines(S)),this._parser.registerCsiHandler({final:"M"},S=>this.deleteLines(S)),this._parser.registerCsiHandler({final:"P"},S=>this.deleteChars(S)),this._parser.registerCsiHandler({final:"S"},S=>this.scrollUp(S)),this._parser.registerCsiHandler({final:"T"},S=>this.scrollDown(S)),this._parser.registerCsiHandler({final:"X"},S=>this.eraseChars(S)),this._parser.registerCsiHandler({final:"Z"},S=>this.cursorBackwardTab(S)),this._parser.registerCsiHandler({final:"`"},S=>this.charPosAbsolute(S)),this._parser.registerCsiHandler({final:"a"},S=>this.hPositionRelative(S)),this._parser.registerCsiHandler({final:"b"},S=>this.repeatPrecedingCharacter(S)),this._parser.registerCsiHandler({final:"c"},S=>this.sendDeviceAttributesPrimary(S)),this._parser.registerCsiHandler({prefix:">",final:"c"},S=>this.sendDeviceAttributesSecondary(S)),this._parser.registerCsiHandler({final:"d"},S=>this.linePosAbsolute(S)),this._parser.registerCsiHandler({final:"e"},S=>this.vPositionRelative(S)),this._parser.registerCsiHandler({final:"f"},S=>this.hVPosition(S)),this._parser.registerCsiHandler({final:"g"},S=>this.tabClear(S)),this._parser.registerCsiHandler({final:"h"},S=>this.setMode(S)),this._parser.registerCsiHandler({prefix:"?",final:"h"},S=>this.setModePrivate(S)),this._parser.registerCsiHandler({final:"l"},S=>this.resetMode(S)),this._parser.registerCsiHandler({prefix:"?",final:"l"},S=>this.resetModePrivate(S)),this._parser.registerCsiHandler({final:"m"},S=>this.charAttributes(S)),this._parser.registerCsiHandler({final:"n"},S=>this.deviceStatus(S)),this._parser.registerCsiHandler({prefix:"?",final:"n"},S=>this.deviceStatusPrivate(S)),this._parser.registerCsiHandler({intermediates:"!",final:"p"},S=>this.softReset(S)),this._parser.registerCsiHandler({intermediates:" ",final:"q"},S=>this.setCursorStyle(S)),this._parser.registerCsiHandler({final:"r"},S=>this.setScrollRegion(S)),this._parser.registerCsiHandler({final:"s"},S=>this.saveCursor(S)),this._parser.registerCsiHandler({final:"t"},S=>this.windowOptions(S)),this._parser.registerCsiHandler({final:"u"},S=>this.restoreCursor(S)),this._parser.registerCsiHandler({intermediates:"'",final:"}"},S=>this.insertColumns(S)),this._parser.registerCsiHandler({intermediates:"'",final:"~"},S=>this.deleteColumns(S)),this._parser.registerCsiHandler({intermediates:'"',final:"q"},S=>this.selectProtected(S)),this._parser.registerCsiHandler({intermediates:"$",final:"p"},S=>this.requestMode(S,!0)),this._parser.registerCsiHandler({prefix:"?",intermediates:"$",final:"p"},S=>this.requestMode(S,!1)),this._parser.setExecuteHandler(n.C0.BEL,()=>this.bell()),this._parser.setExecuteHandler(n.C0.LF,()=>this.lineFeed()),this._parser.setExecuteHandler(n.C0.VT,()=>this.lineFeed()),this._parser.setExecuteHandler(n.C0.FF,()=>this.lineFeed()),this._parser.setExecuteHandler(n.C0.CR,()=>this.carriageReturn()),this._parser.setExecuteHandler(n.C0.BS,()=>this.backspace()),this._parser.setExecuteHandler(n.C0.HT,()=>this.tab()),this._parser.setExecuteHandler(n.C0.SO,()=>this.shiftOut()),this._parser.setExecuteHandler(n.C0.SI,()=>this.shiftIn()),this._parser.setExecuteHandler(n.C1.IND,()=>this.index()),this._parser.setExecuteHandler(n.C1.NEL,()=>this.nextLine()),this._parser.setExecuteHandler(n.C1.HTS,()=>this.tabSet()),this._parser.registerOscHandler(0,new v.OscHandler(S=>(this.setTitle(S),this.setIconName(S),!0))),this._parser.registerOscHandler(1,new v.OscHandler(S=>this.setIconName(S))),this._parser.registerOscHandler(2,new v.OscHandler(S=>this.setTitle(S))),this._parser.registerOscHandler(4,new v.OscHandler(S=>this.setOrReportIndexedColor(S))),this._parser.registerOscHandler(8,new v.OscHandler(S=>this.setHyperlink(S))),this._parser.registerOscHandler(10,new v.OscHandler(S=>this.setOrReportFgColor(S))),this._parser.registerOscHandler(11,new v.OscHandler(S=>this.setOrReportBgColor(S))),this._parser.registerOscHandler(12,new v.OscHandler(S=>this.setOrReportCursorColor(S))),this._parser.registerOscHandler(104,new v.OscHandler(S=>this.restoreIndexedColor(S))),this._parser.registerOscHandler(110,new v.OscHandler(S=>this.restoreFgColor(S))),this._parser.registerOscHandler(111,new v.OscHandler(S=>this.restoreBgColor(S))),this._parser.registerOscHandler(112,new v.OscHandler(S=>this.restoreCursorColor(S))),this._parser.registerEscHandler({final:"7"},()=>this.saveCursor()),this._parser.registerEscHandler({final:"8"},()=>this.restoreCursor()),this._parser.registerEscHandler({final:"D"},()=>this.index()),this._parser.registerEscHandler({final:"E"},()=>this.nextLine()),this._parser.registerEscHandler({final:"H"},()=>this.tabSet()),this._parser.registerEscHandler({final:"M"},()=>this.reverseIndex()),this._parser.registerEscHandler({final:"="},()=>this.keypadApplicationMode()),this._parser.registerEscHandler({final:">"},()=>this.keypadNumericMode()),this._parser.registerEscHandler({final:"c"},()=>this.fullReset()),this._parser.registerEscHandler({final:"n"},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:"o"},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:"|"},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:"}"},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:"~"},()=>this.setgLevel(1)),this._parser.registerEscHandler({intermediates:"%",final:"@"},()=>this.selectDefaultCharset()),this._parser.registerEscHandler({intermediates:"%",final:"G"},()=>this.selectDefaultCharset());for(const S in d.CHARSETS)this._parser.registerEscHandler({intermediates:"(",final:S},()=>this.selectCharset("("+S)),this._parser.registerEscHandler({intermediates:")",final:S},()=>this.selectCharset(")"+S)),this._parser.registerEscHandler({intermediates:"*",final:S},()=>this.selectCharset("*"+S)),this._parser.registerEscHandler({intermediates:"+",final:S},()=>this.selectCharset("+"+S)),this._parser.registerEscHandler({intermediates:"-",final:S},()=>this.selectCharset("-"+S)),this._parser.registerEscHandler({intermediates:".",final:S},()=>this.selectCharset("."+S)),this._parser.registerEscHandler({intermediates:"/",final:S},()=>this.selectCharset("/"+S));this._parser.registerEscHandler({intermediates:"#",final:"8"},()=>this.screenAlignmentPattern()),this._parser.setErrorHandler(S=>(this._logService.error("Parsing error: ",S),S)),this._parser.registerDcsHandler({intermediates:"$",final:"q"},new m.DcsHandler((S,R)=>this.requestStatusString(S,R)))}_preserveStack(C,w,E,D){this._parseStack.paused=!0,this._parseStack.cursorStartX=C,this._parseStack.cursorStartY=w,this._parseStack.decodedLength=E,this._parseStack.position=D}_logSlowResolvingAsync(C){this._logService.logLevel<=c.LogLevelEnum.WARN&&Promise.race([C,new Promise((w,E)=>setTimeout(()=>E("#SLOW_TIMEOUT"),5e3))]).catch(w=>{if(w!=="#SLOW_TIMEOUT")throw w;console.warn("async parser handler taking longer than 5000 ms")})}_getCurrentLinkId(){return this._curAttrData.extended.urlId}parse(C,w){let E,D=this._activeBuffer.x,P=this._activeBuffer.y,H=0;const U=this._parseStack.paused;if(U){if(E=this._parser.parse(this._parseBuffer,this._parseStack.decodedLength,w))return this._logSlowResolvingAsync(E),E;D=this._parseStack.cursorStartX,P=this._parseStack.cursorStartY,this._parseStack.paused=!1,C.length>b&&(H=this._parseStack.position+b)}if(this._logService.logLevel<=c.LogLevelEnum.DEBUG&&this._logService.debug("parsing data"+(typeof C=="string"?` "${C}"`:` "${Array.prototype.map.call(C,W=>String.fromCharCode(W)).join("")}"`),typeof C=="string"?C.split("").map(W=>W.charCodeAt(0)):C),this._parseBuffer.lengthb)for(let W=H;W0&&B.getWidth(this._activeBuffer.x-1)===2&&B.setCellFromCodePoint(this._activeBuffer.x-1,0,1,R.fg,R.bg,R.extended);for(let A=w;A=W){if(z){for(;this._activeBuffer.x=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!0),B=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y)}else if(this._activeBuffer.x=W-1,P===2)continue}if(S&&(B.insertCells(this._activeBuffer.x,P,this._activeBuffer.getNullCell(R),R),B.getWidth(W-1)===2&&B.setCellFromCodePoint(W-1,t.NULL_CELL_CODE,t.NULL_CELL_WIDTH,R.fg,R.bg,R.extended)),B.setCellFromCodePoint(this._activeBuffer.x++,D,P,R.fg,R.bg,R.extended),P>0)for(;--P;)B.setCellFromCodePoint(this._activeBuffer.x++,0,0,R.fg,R.bg,R.extended)}else B.getWidth(this._activeBuffer.x-1)?B.addCodepointToCell(this._activeBuffer.x-1,D):B.addCodepointToCell(this._activeBuffer.x-2,D)}E-w>0&&(B.loadCell(this._activeBuffer.x-1,this._workCell),this._workCell.getWidth()===2||this._workCell.getCode()>65535?this._parser.precedingCodepoint=0:this._workCell.isCombined()?this._parser.precedingCodepoint=this._workCell.getChars().charCodeAt(0):this._parser.precedingCodepoint=this._workCell.content),this._activeBuffer.x0&&B.getWidth(this._activeBuffer.x)===0&&!B.hasContent(this._activeBuffer.x)&&B.setCellFromCodePoint(this._activeBuffer.x,0,1,R.fg,R.bg,R.extended),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}registerCsiHandler(C,w){return C.final!=="t"||C.prefix||C.intermediates?this._parser.registerCsiHandler(C,w):this._parser.registerCsiHandler(C,E=>!L(E.params[0],this._optionsService.rawOptions.windowOptions)||w(E))}registerDcsHandler(C,w){return this._parser.registerDcsHandler(C,new m.DcsHandler(w))}registerEscHandler(C,w){return this._parser.registerEscHandler(C,w)}registerOscHandler(C,w){return this._parser.registerOscHandler(C,new v.OscHandler(w))}bell(){return this._onRequestBell.fire(),!0}lineFeed(){return this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._optionsService.rawOptions.convertEol&&(this._activeBuffer.x=0),this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData())):this._activeBuffer.y>=this._bufferService.rows?this._activeBuffer.y=this._bufferService.rows-1:this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.x>=this._bufferService.cols&&this._activeBuffer.x--,this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._onLineFeed.fire(),!0}carriageReturn(){return this._activeBuffer.x=0,!0}backspace(){var C;if(!this._coreService.decPrivateModes.reverseWraparound)return this._restrictCursor(),this._activeBuffer.x>0&&this._activeBuffer.x--,!0;if(this._restrictCursor(this._bufferService.cols),this._activeBuffer.x>0)this._activeBuffer.x--;else if(this._activeBuffer.x===0&&this._activeBuffer.y>this._activeBuffer.scrollTop&&this._activeBuffer.y<=this._activeBuffer.scrollBottom&&(!((C=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y))===null||C===void 0)&&C.isWrapped)){this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.y--,this._activeBuffer.x=this._bufferService.cols-1;const w=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);w.hasWidth(this._activeBuffer.x)&&!w.hasContent(this._activeBuffer.x)&&this._activeBuffer.x--}return this._restrictCursor(),!0}tab(){if(this._activeBuffer.x>=this._bufferService.cols)return!0;const C=this._activeBuffer.x;return this._activeBuffer.x=this._activeBuffer.nextStop(),this._optionsService.rawOptions.screenReaderMode&&this._onA11yTab.fire(this._activeBuffer.x-C),!0}shiftOut(){return this._charsetService.setgLevel(1),!0}shiftIn(){return this._charsetService.setgLevel(0),!0}_restrictCursor(C=this._bufferService.cols-1){this._activeBuffer.x=Math.min(C,Math.max(0,this._activeBuffer.x)),this._activeBuffer.y=this._coreService.decPrivateModes.origin?Math.min(this._activeBuffer.scrollBottom,Math.max(this._activeBuffer.scrollTop,this._activeBuffer.y)):Math.min(this._bufferService.rows-1,Math.max(0,this._activeBuffer.y)),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_setCursor(C,w){this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._coreService.decPrivateModes.origin?(this._activeBuffer.x=C,this._activeBuffer.y=this._activeBuffer.scrollTop+w):(this._activeBuffer.x=C,this._activeBuffer.y=w),this._restrictCursor(),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_moveCursor(C,w){this._restrictCursor(),this._setCursor(this._activeBuffer.x+C,this._activeBuffer.y+w)}cursorUp(C){const w=this._activeBuffer.y-this._activeBuffer.scrollTop;return w>=0?this._moveCursor(0,-Math.min(w,C.params[0]||1)):this._moveCursor(0,-(C.params[0]||1)),!0}cursorDown(C){const w=this._activeBuffer.scrollBottom-this._activeBuffer.y;return w>=0?this._moveCursor(0,Math.min(w,C.params[0]||1)):this._moveCursor(0,C.params[0]||1),!0}cursorForward(C){return this._moveCursor(C.params[0]||1,0),!0}cursorBackward(C){return this._moveCursor(-(C.params[0]||1),0),!0}cursorNextLine(C){return this.cursorDown(C),this._activeBuffer.x=0,!0}cursorPrecedingLine(C){return this.cursorUp(C),this._activeBuffer.x=0,!0}cursorCharAbsolute(C){return this._setCursor((C.params[0]||1)-1,this._activeBuffer.y),!0}cursorPosition(C){return this._setCursor(C.length>=2?(C.params[1]||1)-1:0,(C.params[0]||1)-1),!0}charPosAbsolute(C){return this._setCursor((C.params[0]||1)-1,this._activeBuffer.y),!0}hPositionRelative(C){return this._moveCursor(C.params[0]||1,0),!0}linePosAbsolute(C){return this._setCursor(this._activeBuffer.x,(C.params[0]||1)-1),!0}vPositionRelative(C){return this._moveCursor(0,C.params[0]||1),!0}hVPosition(C){return this.cursorPosition(C),!0}tabClear(C){const w=C.params[0];return w===0?delete this._activeBuffer.tabs[this._activeBuffer.x]:w===3&&(this._activeBuffer.tabs={}),!0}cursorForwardTab(C){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let w=C.params[0]||1;for(;w--;)this._activeBuffer.x=this._activeBuffer.nextStop();return!0}cursorBackwardTab(C){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let w=C.params[0]||1;for(;w--;)this._activeBuffer.x=this._activeBuffer.prevStop();return!0}selectProtected(C){const w=C.params[0];return w===1&&(this._curAttrData.bg|=536870912),w!==2&&w!==0||(this._curAttrData.bg&=-536870913),!0}_eraseInBufferLine(C,w,E,D=!1,P=!1){const H=this._activeBuffer.lines.get(this._activeBuffer.ybase+C);H.replaceCells(w,E,this._activeBuffer.getNullCell(this._eraseAttrData()),this._eraseAttrData(),P),D&&(H.isWrapped=!1)}_resetBufferLine(C,w=!1){const E=this._activeBuffer.lines.get(this._activeBuffer.ybase+C);E&&(E.fill(this._activeBuffer.getNullCell(this._eraseAttrData()),w),this._bufferService.buffer.clearMarkers(this._activeBuffer.ybase+C),E.isWrapped=!1)}eraseInDisplay(C,w=!1){let E;switch(this._restrictCursor(this._bufferService.cols),C.params[0]){case 0:for(E=this._activeBuffer.y,this._dirtyRowTracker.markDirty(E),this._eraseInBufferLine(E++,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,w);E=this._bufferService.cols&&(this._activeBuffer.lines.get(E+1).isWrapped=!1);E--;)this._resetBufferLine(E,w);this._dirtyRowTracker.markDirty(0);break;case 2:for(E=this._bufferService.rows,this._dirtyRowTracker.markDirty(E-1);E--;)this._resetBufferLine(E,w);this._dirtyRowTracker.markDirty(0);break;case 3:const D=this._activeBuffer.lines.length-this._bufferService.rows;D>0&&(this._activeBuffer.lines.trimStart(D),this._activeBuffer.ybase=Math.max(this._activeBuffer.ybase-D,0),this._activeBuffer.ydisp=Math.max(this._activeBuffer.ydisp-D,0),this._onScroll.fire(0))}return!0}eraseInLine(C,w=!1){switch(this._restrictCursor(this._bufferService.cols),C.params[0]){case 0:this._eraseInBufferLine(this._activeBuffer.y,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,w);break;case 1:this._eraseInBufferLine(this._activeBuffer.y,0,this._activeBuffer.x+1,!1,w);break;case 2:this._eraseInBufferLine(this._activeBuffer.y,0,this._bufferService.cols,!0,w)}return this._dirtyRowTracker.markDirty(this._activeBuffer.y),!0}insertLines(C){this._restrictCursor();let w=C.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.y0||(this._is("xterm")||this._is("rxvt-unicode")||this._is("screen")?this._coreService.triggerDataEvent(n.C0.ESC+"[?1;2c"):this._is("linux")&&this._coreService.triggerDataEvent(n.C0.ESC+"[?6c")),!0}sendDeviceAttributesSecondary(C){return C.params[0]>0||(this._is("xterm")?this._coreService.triggerDataEvent(n.C0.ESC+"[>0;276;0c"):this._is("rxvt-unicode")?this._coreService.triggerDataEvent(n.C0.ESC+"[>85;95;0c"):this._is("linux")?this._coreService.triggerDataEvent(C.params[0]+"c"):this._is("screen")&&this._coreService.triggerDataEvent(n.C0.ESC+"[>83;40003;0c")),!0}_is(C){return(this._optionsService.rawOptions.termName+"").indexOf(C)===0}setMode(C){for(let w=0;wj?1:2,A=C.params[0];return N=A,F=w?A===2?4:A===4?B(H.modes.insertMode):A===12?3:A===20?B(R.convertEol):0:A===1?B(E.applicationCursorKeys):A===3?R.windowOptions.setWinLines?W===80?2:W===132?1:0:0:A===6?B(E.origin):A===7?B(E.wraparound):A===8?3:A===9?B(D==="X10"):A===12?B(R.cursorBlink):A===25?B(!H.isCursorHidden):A===45?B(E.reverseWraparound):A===66?B(E.applicationKeypad):A===67?4:A===1e3?B(D==="VT200"):A===1002?B(D==="DRAG"):A===1003?B(D==="ANY"):A===1004?B(E.sendFocus):A===1005?4:A===1006?B(P==="SGR"):A===1015?4:A===1016?B(P==="SGR_PIXELS"):A===1048?1:A===47||A===1047||A===1049?B(z===S):A===2004?B(E.bracketedPasteMode):0,H.triggerDataEvent(`${n.C0.ESC}[${w?"":"?"}${N};${F}$y`),!0;var N,F}_updateAttrColor(C,w,E,D,P){return w===2?(C|=50331648,C&=-16777216,C|=o.AttributeData.fromColorRGB([E,D,P])):w===5&&(C&=-50331904,C|=33554432|255&E),C}_extractColor(C,w,E){const D=[0,0,-1,0,0,0];let P=0,H=0;do{if(D[H+P]=C.params[w+H],C.hasSubParams(w+H)){const U=C.getSubParams(w+H);let W=0;do D[1]===5&&(P=1),D[H+W+1+P]=U[W];while(++W=2||D[1]===2&&H+P>=5)break;D[1]&&(P=1)}while(++H+w5)&&(C=1),w.extended.underlineStyle=C,w.fg|=268435456,C===0&&(w.fg&=-268435457),w.updateExtended()}_processSGR0(C){C.fg=e.DEFAULT_ATTR_DATA.fg,C.bg=e.DEFAULT_ATTR_DATA.bg,C.extended=C.extended.clone(),C.extended.underlineStyle=0,C.extended.underlineColor&=-67108864,C.updateExtended()}charAttributes(C){if(C.length===1&&C.params[0]===0)return this._processSGR0(this._curAttrData),!0;const w=C.length;let E;const D=this._curAttrData;for(let P=0;P=30&&E<=37?(D.fg&=-50331904,D.fg|=16777216|E-30):E>=40&&E<=47?(D.bg&=-50331904,D.bg|=16777216|E-40):E>=90&&E<=97?(D.fg&=-50331904,D.fg|=16777224|E-90):E>=100&&E<=107?(D.bg&=-50331904,D.bg|=16777224|E-100):E===0?this._processSGR0(D):E===1?D.fg|=134217728:E===3?D.bg|=67108864:E===4?(D.fg|=268435456,this._processUnderline(C.hasSubParams(P)?C.getSubParams(P)[0]:1,D)):E===5?D.fg|=536870912:E===7?D.fg|=67108864:E===8?D.fg|=1073741824:E===9?D.fg|=2147483648:E===2?D.bg|=134217728:E===21?this._processUnderline(2,D):E===22?(D.fg&=-134217729,D.bg&=-134217729):E===23?D.bg&=-67108865:E===24?(D.fg&=-268435457,this._processUnderline(0,D)):E===25?D.fg&=-536870913:E===27?D.fg&=-67108865:E===28?D.fg&=-1073741825:E===29?D.fg&=2147483647:E===39?(D.fg&=-67108864,D.fg|=16777215&e.DEFAULT_ATTR_DATA.fg):E===49?(D.bg&=-67108864,D.bg|=16777215&e.DEFAULT_ATTR_DATA.bg):E===38||E===48||E===58?P+=this._extractColor(C,P,D):E===53?D.bg|=1073741824:E===55?D.bg&=-1073741825:E===59?(D.extended=D.extended.clone(),D.extended.underlineColor=-1,D.updateExtended()):E===100?(D.fg&=-67108864,D.fg|=16777215&e.DEFAULT_ATTR_DATA.fg,D.bg&=-67108864,D.bg|=16777215&e.DEFAULT_ATTR_DATA.bg):this._logService.debug("Unknown SGR attribute: %d.",E);return!0}deviceStatus(C){switch(C.params[0]){case 5:this._coreService.triggerDataEvent(`${n.C0.ESC}[0n`);break;case 6:const w=this._activeBuffer.y+1,E=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${n.C0.ESC}[${w};${E}R`)}return!0}deviceStatusPrivate(C){if(C.params[0]===6){const w=this._activeBuffer.y+1,E=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${n.C0.ESC}[?${w};${E}R`)}return!0}softReset(C){return this._coreService.isCursorHidden=!1,this._onRequestSyncScrollBar.fire(),this._activeBuffer.scrollTop=0,this._activeBuffer.scrollBottom=this._bufferService.rows-1,this._curAttrData=e.DEFAULT_ATTR_DATA.clone(),this._coreService.reset(),this._charsetService.reset(),this._activeBuffer.savedX=0,this._activeBuffer.savedY=this._activeBuffer.ybase,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,this._coreService.decPrivateModes.origin=!1,!0}setCursorStyle(C){const w=C.params[0]||1;switch(w){case 1:case 2:this._optionsService.options.cursorStyle="block";break;case 3:case 4:this._optionsService.options.cursorStyle="underline";break;case 5:case 6:this._optionsService.options.cursorStyle="bar"}const E=w%2==1;return this._optionsService.options.cursorBlink=E,!0}setScrollRegion(C){const w=C.params[0]||1;let E;return(C.length<2||(E=C.params[1])>this._bufferService.rows||E===0)&&(E=this._bufferService.rows),E>w&&(this._activeBuffer.scrollTop=w-1,this._activeBuffer.scrollBottom=E-1,this._setCursor(0,0)),!0}windowOptions(C){if(!L(C.params[0],this._optionsService.rawOptions.windowOptions))return!0;const w=C.length>1?C.params[1]:0;switch(C.params[0]){case 14:w!==2&&this._onRequestWindowsOptionsReport.fire(y.GET_WIN_SIZE_PIXELS);break;case 16:this._onRequestWindowsOptionsReport.fire(y.GET_CELL_SIZE_PIXELS);break;case 18:this._bufferService&&this._coreService.triggerDataEvent(`${n.C0.ESC}[8;${this._bufferService.rows};${this._bufferService.cols}t`);break;case 22:w!==0&&w!==2||(this._windowTitleStack.push(this._windowTitle),this._windowTitleStack.length>10&&this._windowTitleStack.shift()),w!==0&&w!==1||(this._iconNameStack.push(this._iconName),this._iconNameStack.length>10&&this._iconNameStack.shift());break;case 23:w!==0&&w!==2||this._windowTitleStack.length&&this.setTitle(this._windowTitleStack.pop()),w!==0&&w!==1||this._iconNameStack.length&&this.setIconName(this._iconNameStack.pop())}return!0}saveCursor(C){return this._activeBuffer.savedX=this._activeBuffer.x,this._activeBuffer.savedY=this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,!0}restoreCursor(C){return this._activeBuffer.x=this._activeBuffer.savedX||0,this._activeBuffer.y=Math.max(this._activeBuffer.savedY-this._activeBuffer.ybase,0),this._curAttrData.fg=this._activeBuffer.savedCurAttrData.fg,this._curAttrData.bg=this._activeBuffer.savedCurAttrData.bg,this._charsetService.charset=this._savedCharset,this._activeBuffer.savedCharset&&(this._charsetService.charset=this._activeBuffer.savedCharset),this._restrictCursor(),!0}setTitle(C){return this._windowTitle=C,this._onTitleChange.fire(C),!0}setIconName(C){return this._iconName=C,!0}setOrReportIndexedColor(C){const w=[],E=C.split(";");for(;E.length>1;){const D=E.shift(),P=E.shift();if(/^\d+$/.exec(D)){const H=parseInt(D);if(O(H))if(P==="?")w.push({type:0,index:H});else{const U=(0,h.parseColor)(P);U&&w.push({type:1,index:H,color:U})}}}return w.length&&this._onColor.fire(w),!0}setHyperlink(C){const w=C.split(";");return!(w.length<2)&&(w[1]?this._createHyperlink(w[0],w[1]):!w[0]&&this._finishHyperlink())}_createHyperlink(C,w){this._getCurrentLinkId()&&this._finishHyperlink();const E=C.split(":");let D;const P=E.findIndex(H=>H.startsWith("id="));return P!==-1&&(D=E[P].slice(3)||void 0),this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=this._oscLinkService.registerLink({id:D,uri:w}),this._curAttrData.updateExtended(),!0}_finishHyperlink(){return this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=0,this._curAttrData.updateExtended(),!0}_setOrReportSpecialColor(C,w){const E=C.split(";");for(let D=0;D=this._specialColors.length);++D,++w)if(E[D]==="?")this._onColor.fire([{type:0,index:this._specialColors[w]}]);else{const P=(0,h.parseColor)(E[D]);P&&this._onColor.fire([{type:1,index:this._specialColors[w],color:P}])}return!0}setOrReportFgColor(C){return this._setOrReportSpecialColor(C,0)}setOrReportBgColor(C){return this._setOrReportSpecialColor(C,1)}setOrReportCursorColor(C){return this._setOrReportSpecialColor(C,2)}restoreIndexedColor(C){if(!C)return this._onColor.fire([{type:2}]),!0;const w=[],E=C.split(";");for(let D=0;D=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._restrictCursor(),!0}tabSet(){return this._activeBuffer.tabs[this._activeBuffer.x]=!0,!0}reverseIndex(){if(this._restrictCursor(),this._activeBuffer.y===this._activeBuffer.scrollTop){const C=this._activeBuffer.scrollBottom-this._activeBuffer.scrollTop;this._activeBuffer.lines.shiftElements(this._activeBuffer.ybase+this._activeBuffer.y,C,1),this._activeBuffer.lines.set(this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.getBlankLine(this._eraseAttrData())),this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom)}else this._activeBuffer.y--,this._restrictCursor();return!0}fullReset(){return this._parser.reset(),this._onRequestReset.fire(),!0}reset(){this._curAttrData=e.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=e.DEFAULT_ATTR_DATA.clone()}_eraseAttrData(){return this._eraseAttrDataInternal.bg&=-67108864,this._eraseAttrDataInternal.bg|=67108863&this._curAttrData.bg,this._eraseAttrDataInternal}setgLevel(C){return this._charsetService.setgLevel(C),!0}screenAlignmentPattern(){const C=new i.CellData;C.content=4194304|"E".charCodeAt(0),C.fg=this._curAttrData.fg,C.bg=this._curAttrData.bg,this._setCursor(0,0);for(let w=0;w(this._coreService.triggerDataEvent(`${n.C0.ESC}${P}${n.C0.ESC}\\`),!0))(C==='"q'?`P1$r${this._curAttrData.isProtected()?1:0}"q`:C==='"p'?'P1$r61;1"p':C==="r"?`P1$r${E.scrollTop+1};${E.scrollBottom+1}r`:C==="m"?"P1$r0m":C===" q"?`P1$r${{block:2,underline:4,bar:6}[D.cursorStyle]-(D.cursorBlink?1:0)} q`:"P0$r")}markRangeDirty(C,w){this._dirtyRowTracker.markRangeDirty(C,w)}}r.InputHandler=x;let T=class{constructor(M){this._bufferService=M,this.clearRange()}clearRange(){this.start=this._bufferService.buffer.y,this.end=this._bufferService.buffer.y}markDirty(M){Mthis.end&&(this.end=M)}markRangeDirty(M,C){M>C&&(k=M,M=C,C=k),Mthis.end&&(this.end=C)}markAllDirty(){this.markRangeDirty(0,this._bufferService.rows-1)}};function O(M){return 0<=M&&M<256}T=l([u(0,c.IBufferService)],T)},844:(I,r)=>{function a(l){for(const u of l)u.dispose();l.length=0}Object.defineProperty(r,"__esModule",{value:!0}),r.getDisposeArrayDisposable=r.disposeArray=r.toDisposable=r.MutableDisposable=r.Disposable=void 0,r.Disposable=class{constructor(){this._disposables=[],this._isDisposed=!1}dispose(){this._isDisposed=!0;for(const l of this._disposables)l.dispose();this._disposables.length=0}register(l){return this._disposables.push(l),l}unregister(l){const u=this._disposables.indexOf(l);u!==-1&&this._disposables.splice(u,1)}},r.MutableDisposable=class{constructor(){this._isDisposed=!1}get value(){return this._isDisposed?void 0:this._value}set value(l){var u;this._isDisposed||l===this._value||((u=this._value)===null||u===void 0||u.dispose(),this._value=l)}clear(){this.value=void 0}dispose(){var l;this._isDisposed=!0,(l=this._value)===null||l===void 0||l.dispose(),this._value=void 0}},r.toDisposable=function(l){return{dispose:l}},r.disposeArray=a,r.getDisposeArrayDisposable=function(l){return{dispose:()=>a(l)}}},1505:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.FourKeyMap=r.TwoKeyMap=void 0;class a{constructor(){this._data={}}set(u,n,d){this._data[u]||(this._data[u]={}),this._data[u][n]=d}get(u,n){return this._data[u]?this._data[u][n]:void 0}clear(){this._data={}}}r.TwoKeyMap=a,r.FourKeyMap=class{constructor(){this._data=new a}set(l,u,n,d,f){this._data.get(l,u)||this._data.set(l,u,new a),this._data.get(l,u).set(n,d,f)}get(l,u,n,d){var f;return(f=this._data.get(l,u))===null||f===void 0?void 0:f.get(n,d)}clear(){this._data.clear()}}},6114:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.isChromeOS=r.isLinux=r.isWindows=r.isIphone=r.isIpad=r.isMac=r.getSafariVersion=r.isSafari=r.isLegacyEdge=r.isFirefox=r.isNode=void 0,r.isNode=typeof navigator>"u";const a=r.isNode?"node":navigator.userAgent,l=r.isNode?"node":navigator.platform;r.isFirefox=a.includes("Firefox"),r.isLegacyEdge=a.includes("Edge"),r.isSafari=/^((?!chrome|android).)*safari/i.test(a),r.getSafariVersion=function(){if(!r.isSafari)return 0;const u=a.match(/Version\/(\d+)/);return u===null||u.length<2?0:parseInt(u[1])},r.isMac=["Macintosh","MacIntel","MacPPC","Mac68K"].includes(l),r.isIpad=l==="iPad",r.isIphone=l==="iPhone",r.isWindows=["Windows","Win16","Win32","WinCE"].includes(l),r.isLinux=l.indexOf("Linux")>=0,r.isChromeOS=/\bCrOS\b/.test(a)},6106:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.SortedList=void 0;let a=0;r.SortedList=class{constructor(l){this._getKey=l,this._array=[]}clear(){this._array.length=0}insert(l){this._array.length!==0?(a=this._search(this._getKey(l)),this._array.splice(a,0,l)):this._array.push(l)}delete(l){if(this._array.length===0)return!1;const u=this._getKey(l);if(u===void 0||(a=this._search(u),a===-1)||this._getKey(this._array[a])!==u)return!1;do if(this._array[a]===l)return this._array.splice(a,1),!0;while(++a=this._array.length)&&this._getKey(this._array[a])===l))do yield this._array[a];while(++a=this._array.length)&&this._getKey(this._array[a])===l))do u(this._array[a]);while(++a=u;){let d=u+n>>1;const f=this._getKey(this._array[d]);if(f>l)n=d-1;else{if(!(f0&&this._getKey(this._array[d-1])===l;)d--;return d}u=d+1}}return u}}},7226:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DebouncedIdleTask=r.IdleTaskQueue=r.PriorityTaskQueue=void 0;const l=a(6114);class u{constructor(){this._tasks=[],this._i=0}enqueue(f){this._tasks.push(f),this._start()}flush(){for(;this._is)return e-p<-20&&console.warn(`task queue exceeded allotted deadline by ${Math.abs(Math.round(e-p))}ms`),void this._start();e=s}this.clear()}}class n extends u{_requestCallback(f){return setTimeout(()=>f(this._createDeadline(16)))}_cancelCallback(f){clearTimeout(f)}_createDeadline(f){const p=Date.now()+f;return{timeRemaining:()=>Math.max(0,p-Date.now())}}}r.PriorityTaskQueue=n,r.IdleTaskQueue=!l.isNode&&"requestIdleCallback"in window?class extends u{_requestCallback(d){return requestIdleCallback(d)}_cancelCallback(d){cancelIdleCallback(d)}}:n,r.DebouncedIdleTask=class{constructor(){this._queue=new r.IdleTaskQueue}set(d){this._queue.clear(),this._queue.enqueue(d)}flush(){this._queue.flush()}}},9282:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.updateWindowsModeWrappedState=void 0;const l=a(643);r.updateWindowsModeWrappedState=function(u){const n=u.buffer.lines.get(u.buffer.ybase+u.buffer.y-1),d=n==null?void 0:n.get(u.cols-1),f=u.buffer.lines.get(u.buffer.ybase+u.buffer.y);f&&d&&(f.isWrapped=d[l.CHAR_DATA_CODE_INDEX]!==l.NULL_CELL_CODE&&d[l.CHAR_DATA_CODE_INDEX]!==l.WHITESPACE_CELL_CODE)}},3734:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ExtendedAttrs=r.AttributeData=void 0;class a{constructor(){this.fg=0,this.bg=0,this.extended=new l}static toColorRGB(n){return[n>>>16&255,n>>>8&255,255&n]}static fromColorRGB(n){return(255&n[0])<<16|(255&n[1])<<8|255&n[2]}clone(){const n=new a;return n.fg=this.fg,n.bg=this.bg,n.extended=this.extended.clone(),n}isInverse(){return 67108864&this.fg}isBold(){return 134217728&this.fg}isUnderline(){return this.hasExtendedAttrs()&&this.extended.underlineStyle!==0?1:268435456&this.fg}isBlink(){return 536870912&this.fg}isInvisible(){return 1073741824&this.fg}isItalic(){return 67108864&this.bg}isDim(){return 134217728&this.bg}isStrikethrough(){return 2147483648&this.fg}isProtected(){return 536870912&this.bg}isOverline(){return 1073741824&this.bg}getFgColorMode(){return 50331648&this.fg}getBgColorMode(){return 50331648&this.bg}isFgRGB(){return(50331648&this.fg)==50331648}isBgRGB(){return(50331648&this.bg)==50331648}isFgPalette(){return(50331648&this.fg)==16777216||(50331648&this.fg)==33554432}isBgPalette(){return(50331648&this.bg)==16777216||(50331648&this.bg)==33554432}isFgDefault(){return(50331648&this.fg)==0}isBgDefault(){return(50331648&this.bg)==0}isAttributeDefault(){return this.fg===0&&this.bg===0}getFgColor(){switch(50331648&this.fg){case 16777216:case 33554432:return 255&this.fg;case 50331648:return 16777215&this.fg;default:return-1}}getBgColor(){switch(50331648&this.bg){case 16777216:case 33554432:return 255&this.bg;case 50331648:return 16777215&this.bg;default:return-1}}hasExtendedAttrs(){return 268435456&this.bg}updateExtended(){this.extended.isEmpty()?this.bg&=-268435457:this.bg|=268435456}getUnderlineColor(){if(268435456&this.bg&&~this.extended.underlineColor)switch(50331648&this.extended.underlineColor){case 16777216:case 33554432:return 255&this.extended.underlineColor;case 50331648:return 16777215&this.extended.underlineColor;default:return this.getFgColor()}return this.getFgColor()}getUnderlineColorMode(){return 268435456&this.bg&&~this.extended.underlineColor?50331648&this.extended.underlineColor:this.getFgColorMode()}isUnderlineColorRGB(){return 268435456&this.bg&&~this.extended.underlineColor?(50331648&this.extended.underlineColor)==50331648:this.isFgRGB()}isUnderlineColorPalette(){return 268435456&this.bg&&~this.extended.underlineColor?(50331648&this.extended.underlineColor)==16777216||(50331648&this.extended.underlineColor)==33554432:this.isFgPalette()}isUnderlineColorDefault(){return 268435456&this.bg&&~this.extended.underlineColor?(50331648&this.extended.underlineColor)==0:this.isFgDefault()}getUnderlineStyle(){return 268435456&this.fg?268435456&this.bg?this.extended.underlineStyle:1:0}}r.AttributeData=a;class l{get ext(){return this._urlId?-469762049&this._ext|this.underlineStyle<<26:this._ext}set ext(n){this._ext=n}get underlineStyle(){return this._urlId?5:(469762048&this._ext)>>26}set underlineStyle(n){this._ext&=-469762049,this._ext|=n<<26&469762048}get underlineColor(){return 67108863&this._ext}set underlineColor(n){this._ext&=-67108864,this._ext|=67108863&n}get urlId(){return this._urlId}set urlId(n){this._urlId=n}constructor(n=0,d=0){this._ext=0,this._urlId=0,this._ext=n,this._urlId=d}clone(){return new l(this._ext,this._urlId)}isEmpty(){return this.underlineStyle===0&&this._urlId===0}}r.ExtendedAttrs=l},9092:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Buffer=r.MAX_BUFFER_SIZE=void 0;const l=a(6349),u=a(7226),n=a(3734),d=a(8437),f=a(4634),p=a(511),_=a(643),e=a(4863),s=a(7116);r.MAX_BUFFER_SIZE=4294967295,r.Buffer=class{constructor(t,i,o){this._hasScrollback=t,this._optionsService=i,this._bufferService=o,this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.tabs={},this.savedY=0,this.savedX=0,this.savedCurAttrData=d.DEFAULT_ATTR_DATA.clone(),this.savedCharset=s.DEFAULT_CHARSET,this.markers=[],this._nullCell=p.CellData.fromCharData([0,_.NULL_CELL_CHAR,_.NULL_CELL_WIDTH,_.NULL_CELL_CODE]),this._whitespaceCell=p.CellData.fromCharData([0,_.WHITESPACE_CELL_CHAR,_.WHITESPACE_CELL_WIDTH,_.WHITESPACE_CELL_CODE]),this._isClearing=!1,this._memoryCleanupQueue=new u.IdleTaskQueue,this._memoryCleanupPosition=0,this._cols=this._bufferService.cols,this._rows=this._bufferService.rows,this.lines=new l.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}getNullCell(t){return t?(this._nullCell.fg=t.fg,this._nullCell.bg=t.bg,this._nullCell.extended=t.extended):(this._nullCell.fg=0,this._nullCell.bg=0,this._nullCell.extended=new n.ExtendedAttrs),this._nullCell}getWhitespaceCell(t){return t?(this._whitespaceCell.fg=t.fg,this._whitespaceCell.bg=t.bg,this._whitespaceCell.extended=t.extended):(this._whitespaceCell.fg=0,this._whitespaceCell.bg=0,this._whitespaceCell.extended=new n.ExtendedAttrs),this._whitespaceCell}getBlankLine(t,i){return new d.BufferLine(this._bufferService.cols,this.getNullCell(t),i)}get hasScrollback(){return this._hasScrollback&&this.lines.maxLength>this._rows}get isCursorInViewport(){const t=this.ybase+this.y-this.ydisp;return t>=0&&tr.MAX_BUFFER_SIZE?r.MAX_BUFFER_SIZE:i}fillViewportRows(t){if(this.lines.length===0){t===void 0&&(t=d.DEFAULT_ATTR_DATA);let i=this._rows;for(;i--;)this.lines.push(this.getBlankLine(t))}}clear(){this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.lines=new l.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}resize(t,i){const o=this.getNullCell(d.DEFAULT_ATTR_DATA);let c=0;const v=this._getCorrectBufferLength(i);if(v>this.lines.maxLength&&(this.lines.maxLength=v),this.lines.length>0){if(this._cols0&&this.lines.length<=this.ybase+this.y+m+1?(this.ybase--,m++,this.ydisp>0&&this.ydisp--):this.lines.push(new d.BufferLine(t,o)));else for(let h=this._rows;h>i;h--)this.lines.length>i+this.ybase&&(this.lines.length>this.ybase+this.y+1?this.lines.pop():(this.ybase++,this.ydisp++));if(v0&&(this.lines.trimStart(h),this.ybase=Math.max(this.ybase-h,0),this.ydisp=Math.max(this.ydisp-h,0),this.savedY=Math.max(this.savedY-h,0)),this.lines.maxLength=v}this.x=Math.min(this.x,t-1),this.y=Math.min(this.y,i-1),m&&(this.y+=m),this.savedX=Math.min(this.savedX,t-1),this.scrollTop=0}if(this.scrollBottom=i-1,this._isReflowEnabled&&(this._reflow(t,i),this._cols>t))for(let m=0;m.1*this.lines.length&&(this._memoryCleanupPosition=0,this._memoryCleanupQueue.enqueue(()=>this._batchedMemoryCleanup()))}_batchedMemoryCleanup(){let t=!0;this._memoryCleanupPosition>=this.lines.length&&(this._memoryCleanupPosition=0,t=!1);let i=0;for(;this._memoryCleanupPosition100)return!0;return t}get _isReflowEnabled(){const t=this._optionsService.rawOptions.windowsPty;return t&&t.buildNumber?this._hasScrollback&&t.backend==="conpty"&&t.buildNumber>=21376:this._hasScrollback&&!this._optionsService.rawOptions.windowsMode}_reflow(t,i){this._cols!==t&&(t>this._cols?this._reflowLarger(t,i):this._reflowSmaller(t,i))}_reflowLarger(t,i){const o=(0,f.reflowLargerGetLinesToRemove)(this.lines,this._cols,t,this.ybase+this.y,this.getNullCell(d.DEFAULT_ATTR_DATA));if(o.length>0){const c=(0,f.reflowLargerCreateNewLayout)(this.lines,o);(0,f.reflowLargerApplyNewLayout)(this.lines,c.layout),this._reflowLargerAdjustViewport(t,i,c.countRemoved)}}_reflowLargerAdjustViewport(t,i,o){const c=this.getNullCell(d.DEFAULT_ATTR_DATA);let v=o;for(;v-- >0;)this.ybase===0?(this.y>0&&this.y--,this.lines.length=0;m--){let h=this.lines.get(m);if(!h||!h.isWrapped&&h.getTrimmedLength()<=t)continue;const g=[h];for(;h.isWrapped&&m>0;)h=this.lines.get(--m),g.unshift(h);const b=this.ybase+this.y;if(b>=m&&b0&&(c.push({start:m+g.length+v,newLines:T}),v+=T.length),g.push(...T);let O=y.length-1,M=y[O];M===0&&(O--,M=y[O]);let C=g.length-k-1,w=L;for(;C>=0;){const D=Math.min(w,M);if(g[O]===void 0)break;if(g[O].copyCellsFrom(g[C],w-D,M-D,D,!0),M-=D,M===0&&(O--,M=y[O]),w-=D,w===0){C--;const P=Math.max(C,0);w=(0,f.getWrappedLineTrimmedLength)(g,P,this._cols)}}for(let D=0;D0;)this.ybase===0?this.y0){const m=[],h=[];for(let O=0;O=0;O--)if(y&&y.start>b+k){for(let M=y.newLines.length-1;M>=0;M--)this.lines.set(O--,y.newLines[M]);O++,m.push({index:b+1,amount:y.newLines.length}),k+=y.newLines.length,y=c[++L]}else this.lines.set(O,h[b--]);let x=0;for(let O=m.length-1;O>=0;O--)m[O].index+=x,this.lines.onInsertEmitter.fire(m[O]),x+=m[O].amount;const T=Math.max(0,g+v-this.lines.maxLength);T>0&&this.lines.onTrimEmitter.fire(T)}}translateBufferLineToString(t,i,o=0,c){const v=this.lines.get(t);return v?v.translateToString(i,o,c):""}getWrappedRangeForLine(t){let i=t,o=t;for(;i>0&&this.lines.get(i).isWrapped;)i--;for(;o+10;);return t>=this._cols?this._cols-1:t<0?0:t}nextStop(t){for(t==null&&(t=this.x);!this.tabs[++t]&&t=this._cols?this._cols-1:t<0?0:t}clearMarkers(t){this._isClearing=!0;for(let i=0;i{i.line-=o,i.line<0&&i.dispose()})),i.register(this.lines.onInsert(o=>{i.line>=o.index&&(i.line+=o.amount)})),i.register(this.lines.onDelete(o=>{i.line>=o.index&&i.lineo.index&&(i.line-=o.amount)})),i.register(i.onDispose(()=>this._removeMarker(i))),i}_removeMarker(t){this._isClearing||this.markers.splice(this.markers.indexOf(t),1)}}},8437:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferLine=r.DEFAULT_ATTR_DATA=void 0;const l=a(3734),u=a(511),n=a(643),d=a(482);r.DEFAULT_ATTR_DATA=Object.freeze(new l.AttributeData);let f=0;class p{constructor(e,s,t=!1){this.isWrapped=t,this._combined={},this._extendedAttrs={},this._data=new Uint32Array(3*e);const i=s||u.CellData.fromCharData([0,n.NULL_CELL_CHAR,n.NULL_CELL_WIDTH,n.NULL_CELL_CODE]);for(let o=0;o>22,2097152&s?this._combined[e].charCodeAt(this._combined[e].length-1):t]}set(e,s){this._data[3*e+1]=s[n.CHAR_DATA_ATTR_INDEX],s[n.CHAR_DATA_CHAR_INDEX].length>1?(this._combined[e]=s[1],this._data[3*e+0]=2097152|e|s[n.CHAR_DATA_WIDTH_INDEX]<<22):this._data[3*e+0]=s[n.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|s[n.CHAR_DATA_WIDTH_INDEX]<<22}getWidth(e){return this._data[3*e+0]>>22}hasWidth(e){return 12582912&this._data[3*e+0]}getFg(e){return this._data[3*e+1]}getBg(e){return this._data[3*e+2]}hasContent(e){return 4194303&this._data[3*e+0]}getCodePoint(e){const s=this._data[3*e+0];return 2097152&s?this._combined[e].charCodeAt(this._combined[e].length-1):2097151&s}isCombined(e){return 2097152&this._data[3*e+0]}getString(e){const s=this._data[3*e+0];return 2097152&s?this._combined[e]:2097151&s?(0,d.stringFromCodePoint)(2097151&s):""}isProtected(e){return 536870912&this._data[3*e+2]}loadCell(e,s){return f=3*e,s.content=this._data[f+0],s.fg=this._data[f+1],s.bg=this._data[f+2],2097152&s.content&&(s.combinedData=this._combined[e]),268435456&s.bg&&(s.extended=this._extendedAttrs[e]),s}setCell(e,s){2097152&s.content&&(this._combined[e]=s.combinedData),268435456&s.bg&&(this._extendedAttrs[e]=s.extended),this._data[3*e+0]=s.content,this._data[3*e+1]=s.fg,this._data[3*e+2]=s.bg}setCellFromCodePoint(e,s,t,i,o,c){268435456&o&&(this._extendedAttrs[e]=c),this._data[3*e+0]=s|t<<22,this._data[3*e+1]=i,this._data[3*e+2]=o}addCodepointToCell(e,s){let t=this._data[3*e+0];2097152&t?this._combined[e]+=(0,d.stringFromCodePoint)(s):(2097151&t?(this._combined[e]=(0,d.stringFromCodePoint)(2097151&t)+(0,d.stringFromCodePoint)(s),t&=-2097152,t|=2097152):t=s|4194304,this._data[3*e+0]=t)}insertCells(e,s,t,i){if((e%=this.length)&&this.getWidth(e-1)===2&&this.setCellFromCodePoint(e-1,0,1,(i==null?void 0:i.fg)||0,(i==null?void 0:i.bg)||0,(i==null?void 0:i.extended)||new l.ExtendedAttrs),s=0;--c)this.setCell(e+s+c,this.loadCell(e+c,o));for(let c=0;cthis.length){if(this._data.buffer.byteLength>=4*t)this._data=new Uint32Array(this._data.buffer,0,t);else{const i=new Uint32Array(t);i.set(this._data),this._data=i}for(let i=this.length;i=e&&delete this._combined[v]}const o=Object.keys(this._extendedAttrs);for(let c=0;c=e&&delete this._extendedAttrs[v]}}return this.length=e,4*t*2=0;--e)if(4194303&this._data[3*e+0])return e+(this._data[3*e+0]>>22);return 0}getNoBgTrimmedLength(){for(let e=this.length-1;e>=0;--e)if(4194303&this._data[3*e+0]||50331648&this._data[3*e+2])return e+(this._data[3*e+0]>>22);return 0}copyCellsFrom(e,s,t,i,o){const c=e._data;if(o)for(let m=i-1;m>=0;m--){for(let h=0;h<3;h++)this._data[3*(t+m)+h]=c[3*(s+m)+h];268435456&c[3*(s+m)+2]&&(this._extendedAttrs[t+m]=e._extendedAttrs[s+m])}else for(let m=0;m=s&&(this._combined[h-s+t]=e._combined[h])}}translateToString(e=!1,s=0,t=this.length){e&&(t=Math.min(t,this.getTrimmedLength()));let i="";for(;s>22||1}return i}}r.BufferLine=p},4841:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.getRangeLength=void 0,r.getRangeLength=function(a,l){if(a.start.y>a.end.y)throw new Error(`Buffer range end (${a.end.x}, ${a.end.y}) cannot be before start (${a.start.x}, ${a.start.y})`);return l*(a.end.y-a.start.y)+(a.end.x-a.start.x+1)}},4634:(I,r)=>{function a(l,u,n){if(u===l.length-1)return l[u].getTrimmedLength();const d=!l[u].hasContent(n-1)&&l[u].getWidth(n-1)===1,f=l[u+1].getWidth(0)===2;return d&&f?n-1:n}Object.defineProperty(r,"__esModule",{value:!0}),r.getWrappedLineTrimmedLength=r.reflowSmallerGetNewLineLengths=r.reflowLargerApplyNewLayout=r.reflowLargerCreateNewLayout=r.reflowLargerGetLinesToRemove=void 0,r.reflowLargerGetLinesToRemove=function(l,u,n,d,f){const p=[];for(let _=0;_=_&&d0&&(h>i||t[h].getTrimmedLength()===0);h--)m++;m>0&&(p.push(_+t.length-m),p.push(m)),_+=t.length-1}return p},r.reflowLargerCreateNewLayout=function(l,u){const n=[];let d=0,f=u[d],p=0;for(let _=0;_a(l,t,u)).reduce((s,t)=>s+t);let p=0,_=0,e=0;for(;es&&(p-=s,_++);const t=l[_].getWidth(p-1)===2;t&&p--;const i=t?n-1:n;d.push(i),e+=i}return d},r.getWrappedLineTrimmedLength=a},5295:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferSet=void 0;const l=a(8460),u=a(844),n=a(9092);class d extends u.Disposable{constructor(p,_){super(),this._optionsService=p,this._bufferService=_,this._onBufferActivate=this.register(new l.EventEmitter),this.onBufferActivate=this._onBufferActivate.event,this.reset(),this.register(this._optionsService.onSpecificOptionChange("scrollback",()=>this.resize(this._bufferService.cols,this._bufferService.rows))),this.register(this._optionsService.onSpecificOptionChange("tabStopWidth",()=>this.setupTabStops()))}reset(){this._normal=new n.Buffer(!0,this._optionsService,this._bufferService),this._normal.fillViewportRows(),this._alt=new n.Buffer(!1,this._optionsService,this._bufferService),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}),this.setupTabStops()}get alt(){return this._alt}get active(){return this._activeBuffer}get normal(){return this._normal}activateNormalBuffer(){this._activeBuffer!==this._normal&&(this._normal.x=this._alt.x,this._normal.y=this._alt.y,this._alt.clearAllMarkers(),this._alt.clear(),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}))}activateAltBuffer(p){this._activeBuffer!==this._alt&&(this._alt.fillViewportRows(p),this._alt.x=this._normal.x,this._alt.y=this._normal.y,this._activeBuffer=this._alt,this._onBufferActivate.fire({activeBuffer:this._alt,inactiveBuffer:this._normal}))}resize(p,_){this._normal.resize(p,_),this._alt.resize(p,_),this.setupTabStops(p)}setupTabStops(p){this._normal.setupTabStops(p),this._alt.setupTabStops(p)}}r.BufferSet=d},511:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CellData=void 0;const l=a(482),u=a(643),n=a(3734);class d extends n.AttributeData{constructor(){super(...arguments),this.content=0,this.fg=0,this.bg=0,this.extended=new n.ExtendedAttrs,this.combinedData=""}static fromCharData(p){const _=new d;return _.setFromCharData(p),_}isCombined(){return 2097152&this.content}getWidth(){return this.content>>22}getChars(){return 2097152&this.content?this.combinedData:2097151&this.content?(0,l.stringFromCodePoint)(2097151&this.content):""}getCode(){return this.isCombined()?this.combinedData.charCodeAt(this.combinedData.length-1):2097151&this.content}setFromCharData(p){this.fg=p[u.CHAR_DATA_ATTR_INDEX],this.bg=0;let _=!1;if(p[u.CHAR_DATA_CHAR_INDEX].length>2)_=!0;else if(p[u.CHAR_DATA_CHAR_INDEX].length===2){const e=p[u.CHAR_DATA_CHAR_INDEX].charCodeAt(0);if(55296<=e&&e<=56319){const s=p[u.CHAR_DATA_CHAR_INDEX].charCodeAt(1);56320<=s&&s<=57343?this.content=1024*(e-55296)+s-56320+65536|p[u.CHAR_DATA_WIDTH_INDEX]<<22:_=!0}else _=!0}else this.content=p[u.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|p[u.CHAR_DATA_WIDTH_INDEX]<<22;_&&(this.combinedData=p[u.CHAR_DATA_CHAR_INDEX],this.content=2097152|p[u.CHAR_DATA_WIDTH_INDEX]<<22)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}r.CellData=d},643:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.WHITESPACE_CELL_CODE=r.WHITESPACE_CELL_WIDTH=r.WHITESPACE_CELL_CHAR=r.NULL_CELL_CODE=r.NULL_CELL_WIDTH=r.NULL_CELL_CHAR=r.CHAR_DATA_CODE_INDEX=r.CHAR_DATA_WIDTH_INDEX=r.CHAR_DATA_CHAR_INDEX=r.CHAR_DATA_ATTR_INDEX=r.DEFAULT_EXT=r.DEFAULT_ATTR=r.DEFAULT_COLOR=void 0,r.DEFAULT_COLOR=0,r.DEFAULT_ATTR=256|r.DEFAULT_COLOR<<9,r.DEFAULT_EXT=0,r.CHAR_DATA_ATTR_INDEX=0,r.CHAR_DATA_CHAR_INDEX=1,r.CHAR_DATA_WIDTH_INDEX=2,r.CHAR_DATA_CODE_INDEX=3,r.NULL_CELL_CHAR="",r.NULL_CELL_WIDTH=1,r.NULL_CELL_CODE=0,r.WHITESPACE_CELL_CHAR=" ",r.WHITESPACE_CELL_WIDTH=1,r.WHITESPACE_CELL_CODE=32},4863:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Marker=void 0;const l=a(8460),u=a(844);class n{get id(){return this._id}constructor(f){this.line=f,this.isDisposed=!1,this._disposables=[],this._id=n._nextId++,this._onDispose=this.register(new l.EventEmitter),this.onDispose=this._onDispose.event}dispose(){this.isDisposed||(this.isDisposed=!0,this.line=-1,this._onDispose.fire(),(0,u.disposeArray)(this._disposables),this._disposables.length=0)}register(f){return this._disposables.push(f),f}}r.Marker=n,n._nextId=1},7116:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DEFAULT_CHARSET=r.CHARSETS=void 0,r.CHARSETS={},r.DEFAULT_CHARSET=r.CHARSETS.B,r.CHARSETS[0]={"`":"◆",a:"▒",b:"␉",c:"␌",d:"␍",e:"␊",f:"°",g:"±",h:"␤",i:"␋",j:"┘",k:"┐",l:"┌",m:"└",n:"┼",o:"⎺",p:"⎻",q:"─",r:"⎼",s:"⎽",t:"├",u:"┤",v:"┴",w:"┬",x:"│",y:"≤",z:"≥","{":"π","|":"≠","}":"£","~":"·"},r.CHARSETS.A={"#":"£"},r.CHARSETS.B=void 0,r.CHARSETS[4]={"#":"£","@":"¾","[":"ij","\\":"½","]":"|","{":"¨","|":"f","}":"¼","~":"´"},r.CHARSETS.C=r.CHARSETS[5]={"[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},r.CHARSETS.R={"#":"£","@":"à","[":"°","\\":"ç","]":"§","{":"é","|":"ù","}":"è","~":"¨"},r.CHARSETS.Q={"@":"à","[":"â","\\":"ç","]":"ê","^":"î","`":"ô","{":"é","|":"ù","}":"è","~":"û"},r.CHARSETS.K={"@":"§","[":"Ä","\\":"Ö","]":"Ü","{":"ä","|":"ö","}":"ü","~":"ß"},r.CHARSETS.Y={"#":"£","@":"§","[":"°","\\":"ç","]":"é","`":"ù","{":"à","|":"ò","}":"è","~":"ì"},r.CHARSETS.E=r.CHARSETS[6]={"@":"Ä","[":"Æ","\\":"Ø","]":"Å","^":"Ü","`":"ä","{":"æ","|":"ø","}":"å","~":"ü"},r.CHARSETS.Z={"#":"£","@":"§","[":"¡","\\":"Ñ","]":"¿","{":"°","|":"ñ","}":"ç"},r.CHARSETS.H=r.CHARSETS[7]={"@":"É","[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},r.CHARSETS["="]={"#":"ù","@":"à","[":"é","\\":"ç","]":"ê","^":"î",_:"è","`":"ô","{":"ä","|":"ö","}":"ü","~":"û"}},2584:(I,r)=>{var a,l,u;Object.defineProperty(r,"__esModule",{value:!0}),r.C1_ESCAPED=r.C1=r.C0=void 0,function(n){n.NUL="\0",n.SOH="",n.STX="",n.ETX="",n.EOT="",n.ENQ="",n.ACK="",n.BEL="\x07",n.BS="\b",n.HT=" ",n.LF=` `,n.VT="\v",n.FF="\f",n.CR="\r",n.SO="",n.SI="",n.DLE="",n.DC1="",n.DC2="",n.DC3="",n.DC4="",n.NAK="",n.SYN="",n.ETB="",n.CAN="",n.EM="",n.SUB="",n.ESC="\x1B",n.FS="",n.GS="",n.RS="",n.US="",n.SP=" ",n.DEL=""}(a||(r.C0=a={})),function(n){n.PAD="€",n.HOP="",n.BPH="‚",n.NBH="ƒ",n.IND="„",n.NEL="…",n.SSA="†",n.ESA="‡",n.HTS="ˆ",n.HTJ="‰",n.VTS="Š",n.PLD="‹",n.PLU="Œ",n.RI="",n.SS2="Ž",n.SS3="",n.DCS="",n.PU1="‘",n.PU2="’",n.STS="“",n.CCH="”",n.MW="•",n.SPA="–",n.EPA="—",n.SOS="˜",n.SGCI="™",n.SCI="š",n.CSI="›",n.ST="œ",n.OSC="",n.PM="ž",n.APC="Ÿ"}(l||(r.C1=l={})),function(n){n.ST=`${a.ESC}\\`}(u||(r.C1_ESCAPED=u={}))},7399:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.evaluateKeyboardEvent=void 0;const l=a(2584),u={48:["0",")"],49:["1","!"],50:["2","@"],51:["3","#"],52:["4","$"],53:["5","%"],54:["6","^"],55:["7","&"],56:["8","*"],57:["9","("],186:[";",":"],187:["=","+"],188:[",","<"],189:["-","_"],190:[".",">"],191:["/","?"],192:["`","~"],219:["[","{"],220:["\\","|"],221:["]","}"],222:["'",'"']};r.evaluateKeyboardEvent=function(n,d,f,p){const _={type:0,cancel:!1,key:void 0},e=(n.shiftKey?1:0)|(n.altKey?2:0)|(n.ctrlKey?4:0)|(n.metaKey?8:0);switch(n.keyCode){case 0:n.key==="UIKeyInputUpArrow"?_.key=d?l.C0.ESC+"OA":l.C0.ESC+"[A":n.key==="UIKeyInputLeftArrow"?_.key=d?l.C0.ESC+"OD":l.C0.ESC+"[D":n.key==="UIKeyInputRightArrow"?_.key=d?l.C0.ESC+"OC":l.C0.ESC+"[C":n.key==="UIKeyInputDownArrow"&&(_.key=d?l.C0.ESC+"OB":l.C0.ESC+"[B");break;case 8:if(n.altKey){_.key=l.C0.ESC+l.C0.DEL;break}_.key=l.C0.DEL;break;case 9:if(n.shiftKey){_.key=l.C0.ESC+"[Z";break}_.key=l.C0.HT,_.cancel=!0;break;case 13:_.key=n.altKey?l.C0.ESC+l.C0.CR:l.C0.CR,_.cancel=!0;break;case 27:_.key=l.C0.ESC,n.altKey&&(_.key=l.C0.ESC+l.C0.ESC),_.cancel=!0;break;case 37:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"D",_.key===l.C0.ESC+"[1;3D"&&(_.key=l.C0.ESC+(f?"b":"[1;5D"))):_.key=d?l.C0.ESC+"OD":l.C0.ESC+"[D";break;case 39:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"C",_.key===l.C0.ESC+"[1;3C"&&(_.key=l.C0.ESC+(f?"f":"[1;5C"))):_.key=d?l.C0.ESC+"OC":l.C0.ESC+"[C";break;case 38:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"A",f||_.key!==l.C0.ESC+"[1;3A"||(_.key=l.C0.ESC+"[1;5A")):_.key=d?l.C0.ESC+"OA":l.C0.ESC+"[A";break;case 40:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"B",f||_.key!==l.C0.ESC+"[1;3B"||(_.key=l.C0.ESC+"[1;5B")):_.key=d?l.C0.ESC+"OB":l.C0.ESC+"[B";break;case 45:n.shiftKey||n.ctrlKey||(_.key=l.C0.ESC+"[2~");break;case 46:_.key=e?l.C0.ESC+"[3;"+(e+1)+"~":l.C0.ESC+"[3~";break;case 36:_.key=e?l.C0.ESC+"[1;"+(e+1)+"H":d?l.C0.ESC+"OH":l.C0.ESC+"[H";break;case 35:_.key=e?l.C0.ESC+"[1;"+(e+1)+"F":d?l.C0.ESC+"OF":l.C0.ESC+"[F";break;case 33:n.shiftKey?_.type=2:n.ctrlKey?_.key=l.C0.ESC+"[5;"+(e+1)+"~":_.key=l.C0.ESC+"[5~";break;case 34:n.shiftKey?_.type=3:n.ctrlKey?_.key=l.C0.ESC+"[6;"+(e+1)+"~":_.key=l.C0.ESC+"[6~";break;case 112:_.key=e?l.C0.ESC+"[1;"+(e+1)+"P":l.C0.ESC+"OP";break;case 113:_.key=e?l.C0.ESC+"[1;"+(e+1)+"Q":l.C0.ESC+"OQ";break;case 114:_.key=e?l.C0.ESC+"[1;"+(e+1)+"R":l.C0.ESC+"OR";break;case 115:_.key=e?l.C0.ESC+"[1;"+(e+1)+"S":l.C0.ESC+"OS";break;case 116:_.key=e?l.C0.ESC+"[15;"+(e+1)+"~":l.C0.ESC+"[15~";break;case 117:_.key=e?l.C0.ESC+"[17;"+(e+1)+"~":l.C0.ESC+"[17~";break;case 118:_.key=e?l.C0.ESC+"[18;"+(e+1)+"~":l.C0.ESC+"[18~";break;case 119:_.key=e?l.C0.ESC+"[19;"+(e+1)+"~":l.C0.ESC+"[19~";break;case 120:_.key=e?l.C0.ESC+"[20;"+(e+1)+"~":l.C0.ESC+"[20~";break;case 121:_.key=e?l.C0.ESC+"[21;"+(e+1)+"~":l.C0.ESC+"[21~";break;case 122:_.key=e?l.C0.ESC+"[23;"+(e+1)+"~":l.C0.ESC+"[23~";break;case 123:_.key=e?l.C0.ESC+"[24;"+(e+1)+"~":l.C0.ESC+"[24~";break;default:if(!n.ctrlKey||n.shiftKey||n.altKey||n.metaKey)if(f&&!p||!n.altKey||n.metaKey)!f||n.altKey||n.ctrlKey||n.shiftKey||!n.metaKey?n.key&&!n.ctrlKey&&!n.altKey&&!n.metaKey&&n.keyCode>=48&&n.key.length===1?_.key=n.key:n.key&&n.ctrlKey&&(n.key==="_"&&(_.key=l.C0.US),n.key==="@"&&(_.key=l.C0.NUL)):n.keyCode===65&&(_.type=1);else{const s=u[n.keyCode],t=s==null?void 0:s[n.shiftKey?1:0];if(t)_.key=l.C0.ESC+t;else if(n.keyCode>=65&&n.keyCode<=90){const i=n.ctrlKey?n.keyCode-64:n.keyCode+32;let o=String.fromCharCode(i);n.shiftKey&&(o=o.toUpperCase()),_.key=l.C0.ESC+o}else if(n.keyCode===32)_.key=l.C0.ESC+(n.ctrlKey?l.C0.NUL:" ");else if(n.key==="Dead"&&n.code.startsWith("Key")){let i=n.code.slice(3,4);n.shiftKey||(i=i.toLowerCase()),_.key=l.C0.ESC+i,_.cancel=!0}}else n.keyCode>=65&&n.keyCode<=90?_.key=String.fromCharCode(n.keyCode-64):n.keyCode===32?_.key=l.C0.NUL:n.keyCode>=51&&n.keyCode<=55?_.key=String.fromCharCode(n.keyCode-51+27):n.keyCode===56?_.key=l.C0.DEL:n.keyCode===219?_.key=l.C0.ESC:n.keyCode===220?_.key=l.C0.FS:n.keyCode===221&&(_.key=l.C0.GS)}return _}},482:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Utf8ToUtf32=r.StringToUtf32=r.utf32ToString=r.stringFromCodePoint=void 0,r.stringFromCodePoint=function(a){return a>65535?(a-=65536,String.fromCharCode(55296+(a>>10))+String.fromCharCode(a%1024+56320)):String.fromCharCode(a)},r.utf32ToString=function(a,l=0,u=a.length){let n="";for(let d=l;d65535?(f-=65536,n+=String.fromCharCode(55296+(f>>10))+String.fromCharCode(f%1024+56320)):n+=String.fromCharCode(f)}return n},r.StringToUtf32=class{constructor(){this._interim=0}clear(){this._interim=0}decode(a,l){const u=a.length;if(!u)return 0;let n=0,d=0;if(this._interim){const f=a.charCodeAt(d++);56320<=f&&f<=57343?l[n++]=1024*(this._interim-55296)+f-56320+65536:(l[n++]=this._interim,l[n++]=f),this._interim=0}for(let f=d;f=u)return this._interim=p,n;const _=a.charCodeAt(f);56320<=_&&_<=57343?l[n++]=1024*(p-55296)+_-56320+65536:(l[n++]=p,l[n++]=_)}else p!==65279&&(l[n++]=p)}return n}},r.Utf8ToUtf32=class{constructor(){this.interim=new Uint8Array(3)}clear(){this.interim.fill(0)}decode(a,l){const u=a.length;if(!u)return 0;let n,d,f,p,_=0,e=0,s=0;if(this.interim[0]){let o=!1,c=this.interim[0];c&=(224&c)==192?31:(240&c)==224?15:7;let v,m=0;for(;(v=63&this.interim[++m])&&m<4;)c<<=6,c|=v;const h=(224&this.interim[0])==192?2:(240&this.interim[0])==224?3:4,g=h-m;for(;s=u)return 0;if(v=a[s++],(192&v)!=128){s--,o=!0;break}this.interim[m++]=v,c<<=6,c|=63&v}o||(h===2?c<128?s--:l[_++]=c:h===3?c<2048||c>=55296&&c<=57343||c===65279||(l[_++]=c):c<65536||c>1114111||(l[_++]=c)),this.interim.fill(0)}const t=u-4;let i=s;for(;i=u)return this.interim[0]=n,_;if(d=a[i++],(192&d)!=128){i--;continue}if(e=(31&n)<<6|63&d,e<128){i--;continue}l[_++]=e}else if((240&n)==224){if(i>=u)return this.interim[0]=n,_;if(d=a[i++],(192&d)!=128){i--;continue}if(i>=u)return this.interim[0]=n,this.interim[1]=d,_;if(f=a[i++],(192&f)!=128){i--;continue}if(e=(15&n)<<12|(63&d)<<6|63&f,e<2048||e>=55296&&e<=57343||e===65279)continue;l[_++]=e}else if((248&n)==240){if(i>=u)return this.interim[0]=n,_;if(d=a[i++],(192&d)!=128){i--;continue}if(i>=u)return this.interim[0]=n,this.interim[1]=d,_;if(f=a[i++],(192&f)!=128){i--;continue}if(i>=u)return this.interim[0]=n,this.interim[1]=d,this.interim[2]=f,_;if(p=a[i++],(192&p)!=128){i--;continue}if(e=(7&n)<<18|(63&d)<<12|(63&f)<<6|63&p,e<65536||e>1114111)continue;l[_++]=e}}return _}}},225:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeV6=void 0;const a=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531]],l=[[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]];let u;r.UnicodeV6=class{constructor(){if(this.version="6",!u){u=new Uint8Array(65536),u.fill(1),u[0]=0,u.fill(0,1,32),u.fill(0,127,160),u.fill(2,4352,4448),u[9001]=2,u[9002]=2,u.fill(2,11904,42192),u[12351]=1,u.fill(2,44032,55204),u.fill(2,63744,64256),u.fill(2,65040,65050),u.fill(2,65072,65136),u.fill(2,65280,65377),u.fill(2,65504,65511);for(let n=0;nf[e][1])return!1;for(;e>=_;)if(p=_+e>>1,d>f[p][1])_=p+1;else{if(!(d=131072&&n<=196605||n>=196608&&n<=262141?2:1}}},5981:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.WriteBuffer=void 0;const l=a(8460),u=a(844);class n extends u.Disposable{constructor(f){super(),this._action=f,this._writeBuffer=[],this._callbacks=[],this._pendingData=0,this._bufferOffset=0,this._isSyncWriting=!1,this._syncCalls=0,this._didUserInput=!1,this._onWriteParsed=this.register(new l.EventEmitter),this.onWriteParsed=this._onWriteParsed.event}handleUserInput(){this._didUserInput=!0}writeSync(f,p){if(p!==void 0&&this._syncCalls>p)return void(this._syncCalls=0);if(this._pendingData+=f.length,this._writeBuffer.push(f),this._callbacks.push(void 0),this._syncCalls++,this._isSyncWriting)return;let _;for(this._isSyncWriting=!0;_=this._writeBuffer.shift();){this._action(_);const e=this._callbacks.shift();e&&e()}this._pendingData=0,this._bufferOffset=2147483647,this._isSyncWriting=!1,this._syncCalls=0}write(f,p){if(this._pendingData>5e7)throw new Error("write data discarded, use flow control to avoid losing data");if(!this._writeBuffer.length){if(this._bufferOffset=0,this._didUserInput)return this._didUserInput=!1,this._pendingData+=f.length,this._writeBuffer.push(f),this._callbacks.push(p),void this._innerWrite();setTimeout(()=>this._innerWrite())}this._pendingData+=f.length,this._writeBuffer.push(f),this._callbacks.push(p)}_innerWrite(f=0,p=!0){const _=f||Date.now();for(;this._writeBuffer.length>this._bufferOffset;){const e=this._writeBuffer[this._bufferOffset],s=this._action(e,p);if(s){const i=o=>Date.now()-_>=12?setTimeout(()=>this._innerWrite(0,o)):this._innerWrite(_,o);return void s.catch(o=>(queueMicrotask(()=>{throw o}),Promise.resolve(!1))).then(i)}const t=this._callbacks[this._bufferOffset];if(t&&t(),this._bufferOffset++,this._pendingData-=e.length,Date.now()-_>=12)break}this._writeBuffer.length>this._bufferOffset?(this._bufferOffset>50&&(this._writeBuffer=this._writeBuffer.slice(this._bufferOffset),this._callbacks=this._callbacks.slice(this._bufferOffset),this._bufferOffset=0),setTimeout(()=>this._innerWrite())):(this._writeBuffer.length=0,this._callbacks.length=0,this._pendingData=0,this._bufferOffset=0),this._onWriteParsed.fire()}}r.WriteBuffer=n},5941:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.toRgbString=r.parseColor=void 0;const a=/^([\da-f])\/([\da-f])\/([\da-f])$|^([\da-f]{2})\/([\da-f]{2})\/([\da-f]{2})$|^([\da-f]{3})\/([\da-f]{3})\/([\da-f]{3})$|^([\da-f]{4})\/([\da-f]{4})\/([\da-f]{4})$/,l=/^[\da-f]+$/;function u(n,d){const f=n.toString(16),p=f.length<2?"0"+f:f;switch(d){case 4:return f[0];case 8:return p;case 12:return(p+p).slice(0,3);default:return p+p}}r.parseColor=function(n){if(!n)return;let d=n.toLowerCase();if(d.indexOf("rgb:")===0){d=d.slice(4);const f=a.exec(d);if(f){const p=f[1]?15:f[4]?255:f[7]?4095:65535;return[Math.round(parseInt(f[1]||f[4]||f[7]||f[10],16)/p*255),Math.round(parseInt(f[2]||f[5]||f[8]||f[11],16)/p*255),Math.round(parseInt(f[3]||f[6]||f[9]||f[12],16)/p*255)]}}else if(d.indexOf("#")===0&&(d=d.slice(1),l.exec(d)&&[3,6,9,12].includes(d.length))){const f=d.length/3,p=[0,0,0];for(let _=0;_<3;++_){const e=parseInt(d.slice(f*_,f*_+f),16);p[_]=f===1?e<<4:f===2?e:f===3?e>>4:e>>8}return p}},r.toRgbString=function(n,d=16){const[f,p,_]=n;return`rgb:${u(f,d)}/${u(p,d)}/${u(_,d)}`}},5770:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.PAYLOAD_LIMIT=void 0,r.PAYLOAD_LIMIT=1e7},6351:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DcsHandler=r.DcsParser=void 0;const l=a(482),u=a(8742),n=a(5770),d=[];r.DcsParser=class{constructor(){this._handlers=Object.create(null),this._active=d,this._ident=0,this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=d}registerHandler(p,_){this._handlers[p]===void 0&&(this._handlers[p]=[]);const e=this._handlers[p];return e.push(_),{dispose:()=>{const s=e.indexOf(_);s!==-1&&e.splice(s,1)}}}clearHandler(p){this._handlers[p]&&delete this._handlers[p]}setHandlerFallback(p){this._handlerFb=p}reset(){if(this._active.length)for(let p=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;p>=0;--p)this._active[p].unhook(!1);this._stack.paused=!1,this._active=d,this._ident=0}hook(p,_){if(this.reset(),this._ident=p,this._active=this._handlers[p]||d,this._active.length)for(let e=this._active.length-1;e>=0;e--)this._active[e].hook(_);else this._handlerFb(this._ident,"HOOK",_)}put(p,_,e){if(this._active.length)for(let s=this._active.length-1;s>=0;s--)this._active[s].put(p,_,e);else this._handlerFb(this._ident,"PUT",(0,l.utf32ToString)(p,_,e))}unhook(p,_=!0){if(this._active.length){let e=!1,s=this._active.length-1,t=!1;if(this._stack.paused&&(s=this._stack.loopPosition-1,e=_,t=this._stack.fallThrough,this._stack.paused=!1),!t&&e===!1){for(;s>=0&&(e=this._active[s].unhook(p),e!==!0);s--)if(e instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=s,this._stack.fallThrough=!1,e;s--}for(;s>=0;s--)if(e=this._active[s].unhook(!1),e instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=s,this._stack.fallThrough=!0,e}else this._handlerFb(this._ident,"UNHOOK",p);this._active=d,this._ident=0}};const f=new u.Params;f.addParam(0),r.DcsHandler=class{constructor(p){this._handler=p,this._data="",this._params=f,this._hitLimit=!1}hook(p){this._params=p.length>1||p.params[0]?p.clone():f,this._data="",this._hitLimit=!1}put(p,_,e){this._hitLimit||(this._data+=(0,l.utf32ToString)(p,_,e),this._data.length>n.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}unhook(p){let _=!1;if(this._hitLimit)_=!1;else if(p&&(_=this._handler(this._data,this._params),_ instanceof Promise))return _.then(e=>(this._params=f,this._data="",this._hitLimit=!1,e));return this._params=f,this._data="",this._hitLimit=!1,_}}},2015:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.EscapeSequenceParser=r.VT500_TRANSITION_TABLE=r.TransitionTable=void 0;const l=a(844),u=a(8742),n=a(6242),d=a(6351);class f{constructor(s){this.table=new Uint8Array(s)}setDefault(s,t){this.table.fill(s<<4|t)}add(s,t,i,o){this.table[t<<8|s]=i<<4|o}addMany(s,t,i,o){for(let c=0;ch),t=(m,h)=>s.slice(m,h),i=t(32,127),o=t(0,24);o.push(25),o.push.apply(o,t(28,32));const c=t(0,14);let v;for(v in e.setDefault(1,0),e.addMany(i,0,2,0),c)e.addMany([24,26,153,154],v,3,0),e.addMany(t(128,144),v,3,0),e.addMany(t(144,152),v,3,0),e.add(156,v,0,0),e.add(27,v,11,1),e.add(157,v,4,8),e.addMany([152,158,159],v,0,7),e.add(155,v,11,3),e.add(144,v,11,9);return e.addMany(o,0,3,0),e.addMany(o,1,3,1),e.add(127,1,0,1),e.addMany(o,8,0,8),e.addMany(o,3,3,3),e.add(127,3,0,3),e.addMany(o,4,3,4),e.add(127,4,0,4),e.addMany(o,6,3,6),e.addMany(o,5,3,5),e.add(127,5,0,5),e.addMany(o,2,3,2),e.add(127,2,0,2),e.add(93,1,4,8),e.addMany(i,8,5,8),e.add(127,8,5,8),e.addMany([156,27,24,26,7],8,6,0),e.addMany(t(28,32),8,0,8),e.addMany([88,94,95],1,0,7),e.addMany(i,7,0,7),e.addMany(o,7,0,7),e.add(156,7,0,0),e.add(127,7,0,7),e.add(91,1,11,3),e.addMany(t(64,127),3,7,0),e.addMany(t(48,60),3,8,4),e.addMany([60,61,62,63],3,9,4),e.addMany(t(48,60),4,8,4),e.addMany(t(64,127),4,7,0),e.addMany([60,61,62,63],4,0,6),e.addMany(t(32,64),6,0,6),e.add(127,6,0,6),e.addMany(t(64,127),6,0,0),e.addMany(t(32,48),3,9,5),e.addMany(t(32,48),5,9,5),e.addMany(t(48,64),5,0,6),e.addMany(t(64,127),5,7,0),e.addMany(t(32,48),4,9,5),e.addMany(t(32,48),1,9,2),e.addMany(t(32,48),2,9,2),e.addMany(t(48,127),2,10,0),e.addMany(t(48,80),1,10,0),e.addMany(t(81,88),1,10,0),e.addMany([89,90,92],1,10,0),e.addMany(t(96,127),1,10,0),e.add(80,1,11,9),e.addMany(o,9,0,9),e.add(127,9,0,9),e.addMany(t(28,32),9,0,9),e.addMany(t(32,48),9,9,12),e.addMany(t(48,60),9,8,10),e.addMany([60,61,62,63],9,9,10),e.addMany(o,11,0,11),e.addMany(t(32,128),11,0,11),e.addMany(t(28,32),11,0,11),e.addMany(o,10,0,10),e.add(127,10,0,10),e.addMany(t(28,32),10,0,10),e.addMany(t(48,60),10,8,10),e.addMany([60,61,62,63],10,0,11),e.addMany(t(32,48),10,9,12),e.addMany(o,12,0,12),e.add(127,12,0,12),e.addMany(t(28,32),12,0,12),e.addMany(t(32,48),12,9,12),e.addMany(t(48,64),12,0,11),e.addMany(t(64,127),12,12,13),e.addMany(t(64,127),10,12,13),e.addMany(t(64,127),9,12,13),e.addMany(o,13,13,13),e.addMany(i,13,13,13),e.add(127,13,0,13),e.addMany([27,156,24,26],13,14,0),e.add(p,0,2,0),e.add(p,8,5,8),e.add(p,6,0,6),e.add(p,11,0,11),e.add(p,13,13,13),e}();class _ extends l.Disposable{constructor(s=r.VT500_TRANSITION_TABLE){super(),this._transitions=s,this._parseStack={state:0,handlers:[],handlerPos:0,transition:0,chunkPos:0},this.initialState=0,this.currentState=this.initialState,this._params=new u.Params,this._params.addParam(0),this._collect=0,this.precedingCodepoint=0,this._printHandlerFb=(t,i,o)=>{},this._executeHandlerFb=t=>{},this._csiHandlerFb=(t,i)=>{},this._escHandlerFb=t=>{},this._errorHandlerFb=t=>t,this._printHandler=this._printHandlerFb,this._executeHandlers=Object.create(null),this._csiHandlers=Object.create(null),this._escHandlers=Object.create(null),this.register((0,l.toDisposable)(()=>{this._csiHandlers=Object.create(null),this._executeHandlers=Object.create(null),this._escHandlers=Object.create(null)})),this._oscParser=this.register(new n.OscParser),this._dcsParser=this.register(new d.DcsParser),this._errorHandler=this._errorHandlerFb,this.registerEscHandler({final:"\\"},()=>!0)}_identifier(s,t=[64,126]){let i=0;if(s.prefix){if(s.prefix.length>1)throw new Error("only one byte as prefix supported");if(i=s.prefix.charCodeAt(0),i&&60>i||i>63)throw new Error("prefix must be in range 0x3c .. 0x3f")}if(s.intermediates){if(s.intermediates.length>2)throw new Error("only two bytes as intermediates are supported");for(let c=0;cv||v>47)throw new Error("intermediate must be in range 0x20 .. 0x2f");i<<=8,i|=v}}if(s.final.length!==1)throw new Error("final must be a single byte");const o=s.final.charCodeAt(0);if(t[0]>o||o>t[1])throw new Error(`final must be in range ${t[0]} .. ${t[1]}`);return i<<=8,i|=o,i}identToString(s){const t=[];for(;s;)t.push(String.fromCharCode(255&s)),s>>=8;return t.reverse().join("")}setPrintHandler(s){this._printHandler=s}clearPrintHandler(){this._printHandler=this._printHandlerFb}registerEscHandler(s,t){const i=this._identifier(s,[48,126]);this._escHandlers[i]===void 0&&(this._escHandlers[i]=[]);const o=this._escHandlers[i];return o.push(t),{dispose:()=>{const c=o.indexOf(t);c!==-1&&o.splice(c,1)}}}clearEscHandler(s){this._escHandlers[this._identifier(s,[48,126])]&&delete this._escHandlers[this._identifier(s,[48,126])]}setEscHandlerFallback(s){this._escHandlerFb=s}setExecuteHandler(s,t){this._executeHandlers[s.charCodeAt(0)]=t}clearExecuteHandler(s){this._executeHandlers[s.charCodeAt(0)]&&delete this._executeHandlers[s.charCodeAt(0)]}setExecuteHandlerFallback(s){this._executeHandlerFb=s}registerCsiHandler(s,t){const i=this._identifier(s);this._csiHandlers[i]===void 0&&(this._csiHandlers[i]=[]);const o=this._csiHandlers[i];return o.push(t),{dispose:()=>{const c=o.indexOf(t);c!==-1&&o.splice(c,1)}}}clearCsiHandler(s){this._csiHandlers[this._identifier(s)]&&delete this._csiHandlers[this._identifier(s)]}setCsiHandlerFallback(s){this._csiHandlerFb=s}registerDcsHandler(s,t){return this._dcsParser.registerHandler(this._identifier(s),t)}clearDcsHandler(s){this._dcsParser.clearHandler(this._identifier(s))}setDcsHandlerFallback(s){this._dcsParser.setHandlerFallback(s)}registerOscHandler(s,t){return this._oscParser.registerHandler(s,t)}clearOscHandler(s){this._oscParser.clearHandler(s)}setOscHandlerFallback(s){this._oscParser.setHandlerFallback(s)}setErrorHandler(s){this._errorHandler=s}clearErrorHandler(){this._errorHandler=this._errorHandlerFb}reset(){this.currentState=this.initialState,this._oscParser.reset(),this._dcsParser.reset(),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingCodepoint=0,this._parseStack.state!==0&&(this._parseStack.state=2,this._parseStack.handlers=[])}_preserveStack(s,t,i,o,c){this._parseStack.state=s,this._parseStack.handlers=t,this._parseStack.handlerPos=i,this._parseStack.transition=o,this._parseStack.chunkPos=c}parse(s,t,i){let o,c=0,v=0,m=0;if(this._parseStack.state)if(this._parseStack.state===2)this._parseStack.state=0,m=this._parseStack.chunkPos+1;else{if(i===void 0||this._parseStack.state===1)throw this._parseStack.state=1,new Error("improper continuation due to previous async handler, giving up parsing");const h=this._parseStack.handlers;let g=this._parseStack.handlerPos-1;switch(this._parseStack.state){case 3:if(i===!1&&g>-1){for(;g>=0&&(o=h[g](this._params),o!==!0);g--)if(o instanceof Promise)return this._parseStack.handlerPos=g,o}this._parseStack.handlers=[];break;case 4:if(i===!1&&g>-1){for(;g>=0&&(o=h[g](),o!==!0);g--)if(o instanceof Promise)return this._parseStack.handlerPos=g,o}this._parseStack.handlers=[];break;case 6:if(c=s[this._parseStack.chunkPos],o=this._dcsParser.unhook(c!==24&&c!==26,i),o)return o;c===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0;break;case 5:if(c=s[this._parseStack.chunkPos],o=this._oscParser.end(c!==24&&c!==26,i),o)return o;c===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0}this._parseStack.state=0,m=this._parseStack.chunkPos+1,this.precedingCodepoint=0,this.currentState=15&this._parseStack.transition}for(let h=m;h>4){case 2:for(let k=h+1;;++k){if(k>=t||(c=s[k])<32||c>126&&c=t||(c=s[k])<32||c>126&&c=t||(c=s[k])<32||c>126&&c=t||(c=s[k])<32||c>126&&c=0&&(o=g[b](this._params),o!==!0);b--)if(o instanceof Promise)return this._preserveStack(3,g,b,v,h),o;b<0&&this._csiHandlerFb(this._collect<<8|c,this._params),this.precedingCodepoint=0;break;case 8:do switch(c){case 59:this._params.addParam(0);break;case 58:this._params.addSubParam(-1);break;default:this._params.addDigit(c-48)}while(++h47&&c<60);h--;break;case 9:this._collect<<=8,this._collect|=c;break;case 10:const L=this._escHandlers[this._collect<<8|c];let y=L?L.length-1:-1;for(;y>=0&&(o=L[y](),o!==!0);y--)if(o instanceof Promise)return this._preserveStack(4,L,y,v,h),o;y<0&&this._escHandlerFb(this._collect<<8|c),this.precedingCodepoint=0;break;case 11:this._params.reset(),this._params.addParam(0),this._collect=0;break;case 12:this._dcsParser.hook(this._collect<<8|c,this._params);break;case 13:for(let k=h+1;;++k)if(k>=t||(c=s[k])===24||c===26||c===27||c>127&&c=t||(c=s[k])<32||c>127&&c{Object.defineProperty(r,"__esModule",{value:!0}),r.OscHandler=r.OscParser=void 0;const l=a(5770),u=a(482),n=[];r.OscParser=class{constructor(){this._state=0,this._active=n,this._id=-1,this._handlers=Object.create(null),this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}registerHandler(d,f){this._handlers[d]===void 0&&(this._handlers[d]=[]);const p=this._handlers[d];return p.push(f),{dispose:()=>{const _=p.indexOf(f);_!==-1&&p.splice(_,1)}}}clearHandler(d){this._handlers[d]&&delete this._handlers[d]}setHandlerFallback(d){this._handlerFb=d}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=n}reset(){if(this._state===2)for(let d=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;d>=0;--d)this._active[d].end(!1);this._stack.paused=!1,this._active=n,this._id=-1,this._state=0}_start(){if(this._active=this._handlers[this._id]||n,this._active.length)for(let d=this._active.length-1;d>=0;d--)this._active[d].start();else this._handlerFb(this._id,"START")}_put(d,f,p){if(this._active.length)for(let _=this._active.length-1;_>=0;_--)this._active[_].put(d,f,p);else this._handlerFb(this._id,"PUT",(0,u.utf32ToString)(d,f,p))}start(){this.reset(),this._state=1}put(d,f,p){if(this._state!==3){if(this._state===1)for(;f0&&this._put(d,f,p)}}end(d,f=!0){if(this._state!==0){if(this._state!==3)if(this._state===1&&this._start(),this._active.length){let p=!1,_=this._active.length-1,e=!1;if(this._stack.paused&&(_=this._stack.loopPosition-1,p=f,e=this._stack.fallThrough,this._stack.paused=!1),!e&&p===!1){for(;_>=0&&(p=this._active[_].end(d),p!==!0);_--)if(p instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=_,this._stack.fallThrough=!1,p;_--}for(;_>=0;_--)if(p=this._active[_].end(!1),p instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=_,this._stack.fallThrough=!0,p}else this._handlerFb(this._id,"END",d);this._active=n,this._id=-1,this._state=0}}},r.OscHandler=class{constructor(d){this._handler=d,this._data="",this._hitLimit=!1}start(){this._data="",this._hitLimit=!1}put(d,f,p){this._hitLimit||(this._data+=(0,u.utf32ToString)(d,f,p),this._data.length>l.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}end(d){let f=!1;if(this._hitLimit)f=!1;else if(d&&(f=this._handler(this._data),f instanceof Promise))return f.then(p=>(this._data="",this._hitLimit=!1,p));return this._data="",this._hitLimit=!1,f}}},8742:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Params=void 0;const a=2147483647;class l{static fromArray(n){const d=new l;if(!n.length)return d;for(let f=Array.isArray(n[0])?1:0;f256)throw new Error("maxSubParamsLength must not be greater than 256");this.params=new Int32Array(n),this.length=0,this._subParams=new Int32Array(d),this._subParamsLength=0,this._subParamsIdx=new Uint16Array(n),this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}clone(){const n=new l(this.maxLength,this.maxSubParamsLength);return n.params.set(this.params),n.length=this.length,n._subParams.set(this._subParams),n._subParamsLength=this._subParamsLength,n._subParamsIdx.set(this._subParamsIdx),n._rejectDigits=this._rejectDigits,n._rejectSubDigits=this._rejectSubDigits,n._digitIsSub=this._digitIsSub,n}toArray(){const n=[];for(let d=0;d>8,p=255&this._subParamsIdx[d];p-f>0&&n.push(Array.prototype.slice.call(this._subParams,f,p))}return n}reset(){this.length=0,this._subParamsLength=0,this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}addParam(n){if(this._digitIsSub=!1,this.length>=this.maxLength)this._rejectDigits=!0;else{if(n<-1)throw new Error("values lesser than -1 are not allowed");this._subParamsIdx[this.length]=this._subParamsLength<<8|this._subParamsLength,this.params[this.length++]=n>a?a:n}}addSubParam(n){if(this._digitIsSub=!0,this.length)if(this._rejectDigits||this._subParamsLength>=this.maxSubParamsLength)this._rejectSubDigits=!0;else{if(n<-1)throw new Error("values lesser than -1 are not allowed");this._subParams[this._subParamsLength++]=n>a?a:n,this._subParamsIdx[this.length-1]++}}hasSubParams(n){return(255&this._subParamsIdx[n])-(this._subParamsIdx[n]>>8)>0}getSubParams(n){const d=this._subParamsIdx[n]>>8,f=255&this._subParamsIdx[n];return f-d>0?this._subParams.subarray(d,f):null}getSubParamsAll(){const n={};for(let d=0;d>8,p=255&this._subParamsIdx[d];p-f>0&&(n[d]=this._subParams.slice(f,p))}return n}addDigit(n){let d;if(this._rejectDigits||!(d=this._digitIsSub?this._subParamsLength:this.length)||this._digitIsSub&&this._rejectSubDigits)return;const f=this._digitIsSub?this._subParams:this.params,p=f[d-1];f[d-1]=~p?Math.min(10*p+n,a):n}}r.Params=l},5741:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.AddonManager=void 0,r.AddonManager=class{constructor(){this._addons=[]}dispose(){for(let a=this._addons.length-1;a>=0;a--)this._addons[a].instance.dispose()}loadAddon(a,l){const u={instance:l,dispose:l.dispose,isDisposed:!1};this._addons.push(u),l.dispose=()=>this._wrappedAddonDispose(u),l.activate(a)}_wrappedAddonDispose(a){if(a.isDisposed)return;let l=-1;for(let u=0;u{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferApiView=void 0;const l=a(3785),u=a(511);r.BufferApiView=class{constructor(n,d){this._buffer=n,this.type=d}init(n){return this._buffer=n,this}get cursorY(){return this._buffer.y}get cursorX(){return this._buffer.x}get viewportY(){return this._buffer.ydisp}get baseY(){return this._buffer.ybase}get length(){return this._buffer.lines.length}getLine(n){const d=this._buffer.lines.get(n);if(d)return new l.BufferLineApiView(d)}getNullCell(){return new u.CellData}}},3785:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferLineApiView=void 0;const l=a(511);r.BufferLineApiView=class{constructor(u){this._line=u}get isWrapped(){return this._line.isWrapped}get length(){return this._line.length}getCell(u,n){if(!(u<0||u>=this._line.length))return n?(this._line.loadCell(u,n),n):this._line.loadCell(u,new l.CellData)}translateToString(u,n,d){return this._line.translateToString(u,n,d)}}},8285:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferNamespaceApi=void 0;const l=a(8771),u=a(8460),n=a(844);class d extends n.Disposable{constructor(p){super(),this._core=p,this._onBufferChange=this.register(new u.EventEmitter),this.onBufferChange=this._onBufferChange.event,this._normal=new l.BufferApiView(this._core.buffers.normal,"normal"),this._alternate=new l.BufferApiView(this._core.buffers.alt,"alternate"),this._core.buffers.onBufferActivate(()=>this._onBufferChange.fire(this.active))}get active(){if(this._core.buffers.active===this._core.buffers.normal)return this.normal;if(this._core.buffers.active===this._core.buffers.alt)return this.alternate;throw new Error("Active buffer is neither normal nor alternate")}get normal(){return this._normal.init(this._core.buffers.normal)}get alternate(){return this._alternate.init(this._core.buffers.alt)}}r.BufferNamespaceApi=d},7975:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ParserApi=void 0,r.ParserApi=class{constructor(a){this._core=a}registerCsiHandler(a,l){return this._core.registerCsiHandler(a,u=>l(u.toArray()))}addCsiHandler(a,l){return this.registerCsiHandler(a,l)}registerDcsHandler(a,l){return this._core.registerDcsHandler(a,(u,n)=>l(u,n.toArray()))}addDcsHandler(a,l){return this.registerDcsHandler(a,l)}registerEscHandler(a,l){return this._core.registerEscHandler(a,l)}addEscHandler(a,l){return this.registerEscHandler(a,l)}registerOscHandler(a,l){return this._core.registerOscHandler(a,l)}addOscHandler(a,l){return this.registerOscHandler(a,l)}}},7090:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeApi=void 0,r.UnicodeApi=class{constructor(a){this._core=a}register(a){this._core.unicodeService.register(a)}get versions(){return this._core.unicodeService.versions}get activeVersion(){return this._core.unicodeService.activeVersion}set activeVersion(a){this._core.unicodeService.activeVersion=a}}},744:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.BufferService=r.MINIMUM_ROWS=r.MINIMUM_COLS=void 0;const n=a(8460),d=a(844),f=a(5295),p=a(2585);r.MINIMUM_COLS=2,r.MINIMUM_ROWS=1;let _=r.BufferService=class extends d.Disposable{get buffer(){return this.buffers.active}constructor(e){super(),this.isUserScrolling=!1,this._onResize=this.register(new n.EventEmitter),this.onResize=this._onResize.event,this._onScroll=this.register(new n.EventEmitter),this.onScroll=this._onScroll.event,this.cols=Math.max(e.rawOptions.cols||0,r.MINIMUM_COLS),this.rows=Math.max(e.rawOptions.rows||0,r.MINIMUM_ROWS),this.buffers=this.register(new f.BufferSet(e,this))}resize(e,s){this.cols=e,this.rows=s,this.buffers.resize(e,s),this._onResize.fire({cols:e,rows:s})}reset(){this.buffers.reset(),this.isUserScrolling=!1}scroll(e,s=!1){const t=this.buffer;let i;i=this._cachedBlankLine,i&&i.length===this.cols&&i.getFg(0)===e.fg&&i.getBg(0)===e.bg||(i=t.getBlankLine(e,s),this._cachedBlankLine=i),i.isWrapped=s;const o=t.ybase+t.scrollTop,c=t.ybase+t.scrollBottom;if(t.scrollTop===0){const v=t.lines.isFull;c===t.lines.length-1?v?t.lines.recycle().copyFrom(i):t.lines.push(i.clone()):t.lines.splice(c+1,0,i.clone()),v?this.isUserScrolling&&(t.ydisp=Math.max(t.ydisp-1,0)):(t.ybase++,this.isUserScrolling||t.ydisp++)}else{const v=c-o+1;t.lines.shiftElements(o+1,v-1,-1),t.lines.set(c,i.clone())}this.isUserScrolling||(t.ydisp=t.ybase),this._onScroll.fire(t.ydisp)}scrollLines(e,s,t){const i=this.buffer;if(e<0){if(i.ydisp===0)return;this.isUserScrolling=!0}else e+i.ydisp>=i.ybase&&(this.isUserScrolling=!1);const o=i.ydisp;i.ydisp=Math.max(Math.min(i.ydisp+e,i.ybase),0),o!==i.ydisp&&(s||this._onScroll.fire(i.ydisp))}};r.BufferService=_=l([u(0,p.IOptionsService)],_)},7994:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CharsetService=void 0,r.CharsetService=class{constructor(){this.glevel=0,this._charsets=[]}reset(){this.charset=void 0,this._charsets=[],this.glevel=0}setgLevel(a){this.glevel=a,this.charset=this._charsets[a]}setgCharset(a,l){this._charsets[a]=l,this.glevel===a&&(this.charset=l)}}},1753:function(I,r,a){var l=this&&this.__decorate||function(i,o,c,v){var m,h=arguments.length,g=h<3?o:v===null?v=Object.getOwnPropertyDescriptor(o,c):v;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")g=Reflect.decorate(i,o,c,v);else for(var b=i.length-1;b>=0;b--)(m=i[b])&&(g=(h<3?m(g):h>3?m(o,c,g):m(o,c))||g);return h>3&&g&&Object.defineProperty(o,c,g),g},u=this&&this.__param||function(i,o){return function(c,v){o(c,v,i)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CoreMouseService=void 0;const n=a(2585),d=a(8460),f=a(844),p={NONE:{events:0,restrict:()=>!1},X10:{events:1,restrict:i=>i.button!==4&&i.action===1&&(i.ctrl=!1,i.alt=!1,i.shift=!1,!0)},VT200:{events:19,restrict:i=>i.action!==32},DRAG:{events:23,restrict:i=>i.action!==32||i.button!==3},ANY:{events:31,restrict:i=>!0}};function _(i,o){let c=(i.ctrl?16:0)|(i.shift?4:0)|(i.alt?8:0);return i.button===4?(c|=64,c|=i.action):(c|=3&i.button,4&i.button&&(c|=64),8&i.button&&(c|=128),i.action===32?c|=32:i.action!==0||o||(c|=3)),c}const e=String.fromCharCode,s={DEFAULT:i=>{const o=[_(i,!1)+32,i.col+32,i.row+32];return o[0]>255||o[1]>255||o[2]>255?"":`\x1B[M${e(o[0])}${e(o[1])}${e(o[2])}`},SGR:i=>{const o=i.action===0&&i.button!==4?"m":"M";return`\x1B[<${_(i,!0)};${i.col};${i.row}${o}`},SGR_PIXELS:i=>{const o=i.action===0&&i.button!==4?"m":"M";return`\x1B[<${_(i,!0)};${i.x};${i.y}${o}`}};let t=r.CoreMouseService=class extends f.Disposable{constructor(i,o){super(),this._bufferService=i,this._coreService=o,this._protocols={},this._encodings={},this._activeProtocol="",this._activeEncoding="",this._lastEvent=null,this._onProtocolChange=this.register(new d.EventEmitter),this.onProtocolChange=this._onProtocolChange.event;for(const c of Object.keys(p))this.addProtocol(c,p[c]);for(const c of Object.keys(s))this.addEncoding(c,s[c]);this.reset()}addProtocol(i,o){this._protocols[i]=o}addEncoding(i,o){this._encodings[i]=o}get activeProtocol(){return this._activeProtocol}get areMouseEventsActive(){return this._protocols[this._activeProtocol].events!==0}set activeProtocol(i){if(!this._protocols[i])throw new Error(`unknown protocol "${i}"`);this._activeProtocol=i,this._onProtocolChange.fire(this._protocols[i].events)}get activeEncoding(){return this._activeEncoding}set activeEncoding(i){if(!this._encodings[i])throw new Error(`unknown encoding "${i}"`);this._activeEncoding=i}reset(){this.activeProtocol="NONE",this.activeEncoding="DEFAULT",this._lastEvent=null}triggerMouseEvent(i){if(i.col<0||i.col>=this._bufferService.cols||i.row<0||i.row>=this._bufferService.rows||i.button===4&&i.action===32||i.button===3&&i.action!==32||i.button!==4&&(i.action===2||i.action===3)||(i.col++,i.row++,i.action===32&&this._lastEvent&&this._equalEvents(this._lastEvent,i,this._activeEncoding==="SGR_PIXELS"))||!this._protocols[this._activeProtocol].restrict(i))return!1;const o=this._encodings[this._activeEncoding](i);return o&&(this._activeEncoding==="DEFAULT"?this._coreService.triggerBinaryEvent(o):this._coreService.triggerDataEvent(o,!0)),this._lastEvent=i,!0}explainEvents(i){return{down:!!(1&i),up:!!(2&i),drag:!!(4&i),move:!!(8&i),wheel:!!(16&i)}}_equalEvents(i,o,c){if(c){if(i.x!==o.x||i.y!==o.y)return!1}else if(i.col!==o.col||i.row!==o.row)return!1;return i.button===o.button&&i.action===o.action&&i.ctrl===o.ctrl&&i.alt===o.alt&&i.shift===o.shift}};r.CoreMouseService=t=l([u(0,n.IBufferService),u(1,n.ICoreService)],t)},6975:function(I,r,a){var l=this&&this.__decorate||function(t,i,o,c){var v,m=arguments.length,h=m<3?i:c===null?c=Object.getOwnPropertyDescriptor(i,o):c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")h=Reflect.decorate(t,i,o,c);else for(var g=t.length-1;g>=0;g--)(v=t[g])&&(h=(m<3?v(h):m>3?v(i,o,h):v(i,o))||h);return m>3&&h&&Object.defineProperty(i,o,h),h},u=this&&this.__param||function(t,i){return function(o,c){i(o,c,t)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CoreService=void 0;const n=a(1439),d=a(8460),f=a(844),p=a(2585),_=Object.freeze({insertMode:!1}),e=Object.freeze({applicationCursorKeys:!1,applicationKeypad:!1,bracketedPasteMode:!1,origin:!1,reverseWraparound:!1,sendFocus:!1,wraparound:!0});let s=r.CoreService=class extends f.Disposable{constructor(t,i,o){super(),this._bufferService=t,this._logService=i,this._optionsService=o,this.isCursorInitialized=!1,this.isCursorHidden=!1,this._onData=this.register(new d.EventEmitter),this.onData=this._onData.event,this._onUserInput=this.register(new d.EventEmitter),this.onUserInput=this._onUserInput.event,this._onBinary=this.register(new d.EventEmitter),this.onBinary=this._onBinary.event,this._onRequestScrollToBottom=this.register(new d.EventEmitter),this.onRequestScrollToBottom=this._onRequestScrollToBottom.event,this.modes=(0,n.clone)(_),this.decPrivateModes=(0,n.clone)(e)}reset(){this.modes=(0,n.clone)(_),this.decPrivateModes=(0,n.clone)(e)}triggerDataEvent(t,i=!1){if(this._optionsService.rawOptions.disableStdin)return;const o=this._bufferService.buffer;i&&this._optionsService.rawOptions.scrollOnUserInput&&o.ybase!==o.ydisp&&this._onRequestScrollToBottom.fire(),i&&this._onUserInput.fire(),this._logService.debug(`sending data "${t}"`,()=>t.split("").map(c=>c.charCodeAt(0))),this._onData.fire(t)}triggerBinaryEvent(t){this._optionsService.rawOptions.disableStdin||(this._logService.debug(`sending binary "${t}"`,()=>t.split("").map(i=>i.charCodeAt(0))),this._onBinary.fire(t))}};r.CoreService=s=l([u(0,p.IBufferService),u(1,p.ILogService),u(2,p.IOptionsService)],s)},9074:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DecorationService=void 0;const l=a(8055),u=a(8460),n=a(844),d=a(6106);let f=0,p=0;class _ extends n.Disposable{get decorations(){return this._decorations.values()}constructor(){super(),this._decorations=new d.SortedList(t=>t==null?void 0:t.marker.line),this._onDecorationRegistered=this.register(new u.EventEmitter),this.onDecorationRegistered=this._onDecorationRegistered.event,this._onDecorationRemoved=this.register(new u.EventEmitter),this.onDecorationRemoved=this._onDecorationRemoved.event,this.register((0,n.toDisposable)(()=>this.reset()))}registerDecoration(t){if(t.marker.isDisposed)return;const i=new e(t);if(i){const o=i.marker.onDispose(()=>i.dispose());i.onDispose(()=>{i&&(this._decorations.delete(i)&&this._onDecorationRemoved.fire(i),o.dispose())}),this._decorations.insert(i),this._onDecorationRegistered.fire(i)}return i}reset(){for(const t of this._decorations.values())t.dispose();this._decorations.clear()}*getDecorationsAtCell(t,i,o){var c,v,m;let h=0,g=0;for(const b of this._decorations.getKeyIterator(i))h=(c=b.options.x)!==null&&c!==void 0?c:0,g=h+((v=b.options.width)!==null&&v!==void 0?v:1),t>=h&&t{var m,h,g;f=(m=v.options.x)!==null&&m!==void 0?m:0,p=f+((h=v.options.width)!==null&&h!==void 0?h:1),t>=f&&t{Object.defineProperty(r,"__esModule",{value:!0}),r.InstantiationService=r.ServiceCollection=void 0;const l=a(2585),u=a(8343);class n{constructor(...f){this._entries=new Map;for(const[p,_]of f)this.set(p,_)}set(f,p){const _=this._entries.get(f);return this._entries.set(f,p),_}forEach(f){for(const[p,_]of this._entries.entries())f(p,_)}has(f){return this._entries.has(f)}get(f){return this._entries.get(f)}}r.ServiceCollection=n,r.InstantiationService=class{constructor(){this._services=new n,this._services.set(l.IInstantiationService,this)}setService(d,f){this._services.set(d,f)}getService(d){return this._services.get(d)}createInstance(d,...f){const p=(0,u.getServiceDependencies)(d).sort((s,t)=>s.index-t.index),_=[];for(const s of p){const t=this._services.get(s.id);if(!t)throw new Error(`[createInstance] ${d.name} depends on UNKNOWN service ${s.id}.`);_.push(t)}const e=p.length>0?p[0].index:f.length;if(f.length!==e)throw new Error(`[createInstance] First service dependency of ${d.name} at position ${e+1} conflicts with ${f.length} static arguments`);return new d(...f,..._)}}},7866:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.traceCall=r.setTraceLogger=r.LogService=void 0;const n=a(844),d=a(2585),f={trace:d.LogLevelEnum.TRACE,debug:d.LogLevelEnum.DEBUG,info:d.LogLevelEnum.INFO,warn:d.LogLevelEnum.WARN,error:d.LogLevelEnum.ERROR,off:d.LogLevelEnum.OFF};let p,_=r.LogService=class extends n.Disposable{get logLevel(){return this._logLevel}constructor(e){super(),this._optionsService=e,this._logLevel=d.LogLevelEnum.OFF,this._updateLogLevel(),this.register(this._optionsService.onSpecificOptionChange("logLevel",()=>this._updateLogLevel())),p=this}_updateLogLevel(){this._logLevel=f[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(e){for(let s=0;sJSON.stringify(v)).join(", ")})`);const c=i.apply(this,o);return p.trace(`GlyphRenderer#${i.name} return`,c),c}}},7302:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.OptionsService=r.DEFAULT_OPTIONS=void 0;const l=a(8460),u=a(844),n=a(6114);r.DEFAULT_OPTIONS={cols:80,rows:24,cursorBlink:!1,cursorStyle:"block",cursorWidth:1,cursorInactiveStyle:"outline",customGlyphs:!0,drawBoldTextInBrightColors:!0,fastScrollModifier:"alt",fastScrollSensitivity:5,fontFamily:"courier-new, courier, monospace",fontSize:15,fontWeight:"normal",fontWeightBold:"bold",ignoreBracketedPasteMode:!1,lineHeight:1,letterSpacing:0,linkHandler:null,logLevel:"info",logger:null,scrollback:1e3,scrollOnUserInput:!0,scrollSensitivity:1,screenReaderMode:!1,smoothScrollDuration:0,macOptionIsMeta:!1,macOptionClickForcesSelection:!1,minimumContrastRatio:1,disableStdin:!1,allowProposedApi:!1,allowTransparency:!1,tabStopWidth:8,theme:{},rightClickSelectsWord:n.isMac,windowOptions:{},windowsMode:!1,windowsPty:{},wordSeparator:" ()[]{}',\"`",altClickMovesCursor:!0,convertEol:!1,termName:"xterm",cancelEvents:!1,overviewRulerWidth:0};const d=["normal","bold","100","200","300","400","500","600","700","800","900"];class f extends u.Disposable{constructor(_){super(),this._onOptionChange=this.register(new l.EventEmitter),this.onOptionChange=this._onOptionChange.event;const e=Object.assign({},r.DEFAULT_OPTIONS);for(const s in _)if(s in e)try{const t=_[s];e[s]=this._sanitizeAndValidateOption(s,t)}catch(t){console.error(t)}this.rawOptions=e,this.options=Object.assign({},e),this._setupOptions()}onSpecificOptionChange(_,e){return this.onOptionChange(s=>{s===_&&e(this.rawOptions[_])})}onMultipleOptionChange(_,e){return this.onOptionChange(s=>{_.indexOf(s)!==-1&&e()})}_setupOptions(){const _=s=>{if(!(s in r.DEFAULT_OPTIONS))throw new Error(`No option with key "${s}"`);return this.rawOptions[s]},e=(s,t)=>{if(!(s in r.DEFAULT_OPTIONS))throw new Error(`No option with key "${s}"`);t=this._sanitizeAndValidateOption(s,t),this.rawOptions[s]!==t&&(this.rawOptions[s]=t,this._onOptionChange.fire(s))};for(const s in this.rawOptions){const t={get:_.bind(this,s),set:e.bind(this,s)};Object.defineProperty(this.options,s,t)}}_sanitizeAndValidateOption(_,e){switch(_){case"cursorStyle":if(e||(e=r.DEFAULT_OPTIONS[_]),!function(s){return s==="block"||s==="underline"||s==="bar"}(e))throw new Error(`"${e}" is not a valid value for ${_}`);break;case"wordSeparator":e||(e=r.DEFAULT_OPTIONS[_]);break;case"fontWeight":case"fontWeightBold":if(typeof e=="number"&&1<=e&&e<=1e3)break;e=d.includes(e)?e:r.DEFAULT_OPTIONS[_];break;case"cursorWidth":e=Math.floor(e);case"lineHeight":case"tabStopWidth":if(e<1)throw new Error(`${_} cannot be less than 1, value: ${e}`);break;case"minimumContrastRatio":e=Math.max(1,Math.min(21,Math.round(10*e)/10));break;case"scrollback":if((e=Math.min(e,4294967295))<0)throw new Error(`${_} cannot be less than 0, value: ${e}`);break;case"fastScrollSensitivity":case"scrollSensitivity":if(e<=0)throw new Error(`${_} cannot be less than or equal to 0, value: ${e}`);break;case"rows":case"cols":if(!e&&e!==0)throw new Error(`${_} must be numeric, value: ${e}`);break;case"windowsPty":e=e??{}}return e}}r.OptionsService=f},2660:function(I,r,a){var l=this&&this.__decorate||function(f,p,_,e){var s,t=arguments.length,i=t<3?p:e===null?e=Object.getOwnPropertyDescriptor(p,_):e;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(f,p,_,e);else for(var o=f.length-1;o>=0;o--)(s=f[o])&&(i=(t<3?s(i):t>3?s(p,_,i):s(p,_))||i);return t>3&&i&&Object.defineProperty(p,_,i),i},u=this&&this.__param||function(f,p){return function(_,e){p(_,e,f)}};Object.defineProperty(r,"__esModule",{value:!0}),r.OscLinkService=void 0;const n=a(2585);let d=r.OscLinkService=class{constructor(f){this._bufferService=f,this._nextId=1,this._entriesWithId=new Map,this._dataByLinkId=new Map}registerLink(f){const p=this._bufferService.buffer;if(f.id===void 0){const o=p.addMarker(p.ybase+p.y),c={data:f,id:this._nextId++,lines:[o]};return o.onDispose(()=>this._removeMarkerFromLink(c,o)),this._dataByLinkId.set(c.id,c),c.id}const _=f,e=this._getEntryIdKey(_),s=this._entriesWithId.get(e);if(s)return this.addLineToLink(s.id,p.ybase+p.y),s.id;const t=p.addMarker(p.ybase+p.y),i={id:this._nextId++,key:this._getEntryIdKey(_),data:_,lines:[t]};return t.onDispose(()=>this._removeMarkerFromLink(i,t)),this._entriesWithId.set(i.key,i),this._dataByLinkId.set(i.id,i),i.id}addLineToLink(f,p){const _=this._dataByLinkId.get(f);if(_&&_.lines.every(e=>e.line!==p)){const e=this._bufferService.buffer.addMarker(p);_.lines.push(e),e.onDispose(()=>this._removeMarkerFromLink(_,e))}}getLinkData(f){var p;return(p=this._dataByLinkId.get(f))===null||p===void 0?void 0:p.data}_getEntryIdKey(f){return`${f.id};;${f.uri}`}_removeMarkerFromLink(f,p){const _=f.lines.indexOf(p);_!==-1&&(f.lines.splice(_,1),f.lines.length===0&&(f.data.id!==void 0&&this._entriesWithId.delete(f.key),this._dataByLinkId.delete(f.id)))}};r.OscLinkService=d=l([u(0,n.IBufferService)],d)},8343:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.createDecorator=r.getServiceDependencies=r.serviceRegistry=void 0;const a="di$target",l="di$dependencies";r.serviceRegistry=new Map,r.getServiceDependencies=function(u){return u[l]||[]},r.createDecorator=function(u){if(r.serviceRegistry.has(u))return r.serviceRegistry.get(u);const n=function(d,f,p){if(arguments.length!==3)throw new Error("@IServiceName-decorator can only be used to decorate a parameter");(function(_,e,s){e[a]===e?e[l].push({id:_,index:s}):(e[l]=[{id:_,index:s}],e[a]=e)})(n,d,p)};return n.toString=()=>u,r.serviceRegistry.set(u,n),n}},2585:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.IDecorationService=r.IUnicodeService=r.IOscLinkService=r.IOptionsService=r.ILogService=r.LogLevelEnum=r.IInstantiationService=r.ICharsetService=r.ICoreService=r.ICoreMouseService=r.IBufferService=void 0;const l=a(8343);var u;r.IBufferService=(0,l.createDecorator)("BufferService"),r.ICoreMouseService=(0,l.createDecorator)("CoreMouseService"),r.ICoreService=(0,l.createDecorator)("CoreService"),r.ICharsetService=(0,l.createDecorator)("CharsetService"),r.IInstantiationService=(0,l.createDecorator)("InstantiationService"),function(n){n[n.TRACE=0]="TRACE",n[n.DEBUG=1]="DEBUG",n[n.INFO=2]="INFO",n[n.WARN=3]="WARN",n[n.ERROR=4]="ERROR",n[n.OFF=5]="OFF"}(u||(r.LogLevelEnum=u={})),r.ILogService=(0,l.createDecorator)("LogService"),r.IOptionsService=(0,l.createDecorator)("OptionsService"),r.IOscLinkService=(0,l.createDecorator)("OscLinkService"),r.IUnicodeService=(0,l.createDecorator)("UnicodeService"),r.IDecorationService=(0,l.createDecorator)("DecorationService")},1480:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeService=void 0;const l=a(8460),u=a(225);r.UnicodeService=class{constructor(){this._providers=Object.create(null),this._active="",this._onChange=new l.EventEmitter,this.onChange=this._onChange.event;const n=new u.UnicodeV6;this.register(n),this._active=n.version,this._activeProvider=n}dispose(){this._onChange.dispose()}get versions(){return Object.keys(this._providers)}get activeVersion(){return this._active}set activeVersion(n){if(!this._providers[n])throw new Error(`unknown Unicode version "${n}"`);this._active=n,this._activeProvider=this._providers[n],this._onChange.fire(n)}register(n){this._providers[n.version]=n}wcwidth(n){return this._activeProvider.wcwidth(n)}getStringCellWidth(n){let d=0;const f=n.length;for(let p=0;p=f)return d+this.wcwidth(_);const e=n.charCodeAt(p);56320<=e&&e<=57343?_=1024*(_-55296)+e-56320+65536:d+=this.wcwidth(e)}d+=this.wcwidth(_)}return d}}}},oe={};function J(I){var r=oe[I];if(r!==void 0)return r.exports;var a=oe[I]={exports:{}};return ce[I].call(a.exports,a,a.exports,J),a.exports}var ve={};return(()=>{var I=ve;Object.defineProperty(I,"__esModule",{value:!0}),I.Terminal=void 0;const r=J(9042),a=J(3236),l=J(844),u=J(5741),n=J(8285),d=J(7975),f=J(7090),p=["cols","rows"];class _ extends l.Disposable{constructor(s){super(),this._core=this.register(new a.Terminal(s)),this._addonManager=this.register(new u.AddonManager),this._publicOptions=Object.assign({},this._core.options);const t=o=>this._core.options[o],i=(o,c)=>{this._checkReadonlyOptions(o),this._core.options[o]=c};for(const o in this._core.options){const c={get:t.bind(this,o),set:i.bind(this,o)};Object.defineProperty(this._publicOptions,o,c)}}_checkReadonlyOptions(s){if(p.includes(s))throw new Error(`Option "${s}" can only be set in the constructor`)}_checkProposedApi(){if(!this._core.optionsService.rawOptions.allowProposedApi)throw new Error("You must set the allowProposedApi option to true to use proposed API")}get onBell(){return this._core.onBell}get onBinary(){return this._core.onBinary}get onCursorMove(){return this._core.onCursorMove}get onData(){return this._core.onData}get onKey(){return this._core.onKey}get onLineFeed(){return this._core.onLineFeed}get onRender(){return this._core.onRender}get onResize(){return this._core.onResize}get onScroll(){return this._core.onScroll}get onSelectionChange(){return this._core.onSelectionChange}get onTitleChange(){return this._core.onTitleChange}get onWriteParsed(){return this._core.onWriteParsed}get element(){return this._core.element}get parser(){return this._parser||(this._parser=new d.ParserApi(this._core)),this._parser}get unicode(){return this._checkProposedApi(),new f.UnicodeApi(this._core)}get textarea(){return this._core.textarea}get rows(){return this._core.rows}get cols(){return this._core.cols}get buffer(){return this._buffer||(this._buffer=this.register(new n.BufferNamespaceApi(this._core))),this._buffer}get markers(){return this._checkProposedApi(),this._core.markers}get modes(){const s=this._core.coreService.decPrivateModes;let t="none";switch(this._core.coreMouseService.activeProtocol){case"X10":t="x10";break;case"VT200":t="vt200";break;case"DRAG":t="drag";break;case"ANY":t="any"}return{applicationCursorKeysMode:s.applicationCursorKeys,applicationKeypadMode:s.applicationKeypad,bracketedPasteMode:s.bracketedPasteMode,insertMode:this._core.coreService.modes.insertMode,mouseTrackingMode:t,originMode:s.origin,reverseWraparoundMode:s.reverseWraparound,sendFocusMode:s.sendFocus,wraparoundMode:s.wraparound}}get options(){return this._publicOptions}set options(s){for(const t in s)this._publicOptions[t]=s[t]}blur(){this._core.blur()}focus(){this._core.focus()}resize(s,t){this._verifyIntegers(s,t),this._core.resize(s,t)}open(s){this._core.open(s)}attachCustomKeyEventHandler(s){this._core.attachCustomKeyEventHandler(s)}registerLinkProvider(s){return this._core.registerLinkProvider(s)}registerCharacterJoiner(s){return this._checkProposedApi(),this._core.registerCharacterJoiner(s)}deregisterCharacterJoiner(s){this._checkProposedApi(),this._core.deregisterCharacterJoiner(s)}registerMarker(s=0){return this._verifyIntegers(s),this._core.registerMarker(s)}registerDecoration(s){var t,i,o;return this._checkProposedApi(),this._verifyPositiveIntegers((t=s.x)!==null&&t!==void 0?t:0,(i=s.width)!==null&&i!==void 0?i:0,(o=s.height)!==null&&o!==void 0?o:0),this._core.registerDecoration(s)}hasSelection(){return this._core.hasSelection()}select(s,t,i){this._verifyIntegers(s,t,i),this._core.select(s,t,i)}getSelection(){return this._core.getSelection()}getSelectionPosition(){return this._core.getSelectionPosition()}clearSelection(){this._core.clearSelection()}selectAll(){this._core.selectAll()}selectLines(s,t){this._verifyIntegers(s,t),this._core.selectLines(s,t)}dispose(){super.dispose()}scrollLines(s){this._verifyIntegers(s),this._core.scrollLines(s)}scrollPages(s){this._verifyIntegers(s),this._core.scrollPages(s)}scrollToTop(){this._core.scrollToTop()}scrollToBottom(){this._core.scrollToBottom()}scrollToLine(s){this._verifyIntegers(s),this._core.scrollToLine(s)}clear(){this._core.clear()}write(s,t){this._core.write(s,t)}writeln(s,t){this._core.write(s),this._core.write(`\r -`,t)}paste(s){this._core.paste(s)}refresh(s,t){this._verifyIntegers(s,t),this._core.refresh(s,t)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(s){this._addonManager.loadAddon(this,s)}static get strings(){return r}_verifyIntegers(...s){for(const t of s)if(t===1/0||isNaN(t)||t%1!=0)throw new Error("This API only accepts integers")}_verifyPositiveIntegers(...s){for(const t of s)if(t&&(t===1/0||isNaN(t)||t%1!=0||t<0))throw new Error("This API only accepts positive integers")}}I.Terminal=_})(),ve})())})(pe);var De=pe.exports;const Re={style:{"background-color":"white",width:"100%",padding:"8px","padding-left":"16px","border-radius":"10px","margin-bottom":"16px",display:"flex","flex-direction":"row","align-items":"center","justify-content":"space-between"}},xe=he("div",{style:{width:"100%",height:"100%","background-color":"#fff",padding:"16px","border-radius":"10px"}},[he("div",{id:"terminal",style:{}})],-1),Ae={name:"ConsolePage",components:{},data(){return{term:null,websocket:null,status:"",connection_status:"连接"}},mounted(){this.term=new De.Terminal({rendererType:"canvas",rows:28,cols:100,theme:{foreground:"#000",background:"#ffffff",cursor:"#000",convertEol:!0}}),this.term.open(document.getElementById("terminal")),this.createWebSocket()},methods:{createWebSocket(){this.status="正在连接",this.websocket=new WebSocket("ws://"+window.location.hostname+":6186"),this.status="已连接",this.connection_status="断开",this.websocket.onopen=()=>{console.log("WebSocket连接已打开")},this.websocket.onerror=Q=>{console.error("WebSocket发生错误:",Q)},this.websocket.onclose=()=>{console.log("WebSocket连接已关闭")},this.websocket.onmessage=Q=>{this.term.write(Q.data+`\r +`,t)}paste(s){this._core.paste(s)}refresh(s,t){this._verifyIntegers(s,t),this._core.refresh(s,t)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(s){this._addonManager.loadAddon(this,s)}static get strings(){return r}_verifyIntegers(...s){for(const t of s)if(t===1/0||isNaN(t)||t%1!=0)throw new Error("This API only accepts integers")}_verifyPositiveIntegers(...s){for(const t of s)if(t&&(t===1/0||isNaN(t)||t%1!=0||t<0))throw new Error("This API only accepts positive integers")}}I.Terminal=_})(),ve})())})(pe);var De=pe.exports;const Re={style:{"background-color":"white",width:"100%",padding:"8px","padding-left":"16px","border-radius":"10px","margin-bottom":"16px",display:"flex","flex-direction":"row","align-items":"center","justify-content":"space-between"}},xe=he("div",{style:{width:"100%",height:"100%","background-color":"#fff",padding:"16px","border-radius":"10px"}},[he("div",{id:"terminal",style:{}})],-1),Ae={name:"ConsolePage",components:{},data(){return{term:null,websocket:null,status:"",connection_status:"连接"}},mounted(){this.term=new De.Terminal({rendererType:"canvas",rows:28,cols:100,theme:{foreground:"#000",background:"#ffffff",cursor:"#000",convertEol:!0}}),this.term.open(document.getElementById("terminal")),this.createWebSocket()},methods:{createWebSocket(){this.status="正在连接",this.websocket=new WebSocket("ws://"+window.location.hostname+":6185/api/live-log"),this.status="已连接",this.connection_status="断开",this.websocket.onopen=()=>{console.log("WebSocket连接已打开")},this.websocket.onerror=Q=>{console.error("WebSocket发生错误:",Q)},this.websocket.onclose=()=>{console.log("WebSocket连接已关闭")},this.websocket.onmessage=Q=>{this.term.write(Q.data+`\r `)}},handleConnection(){this.connection_status==="连接"?this.createWebSocket():(this.websocket.close(),this.term.write(`已手动断开连接。\r -`),this.status="未连接",this.connection_status="连接")}},beforeUnmount(){this.websocket.close()}},Te=Object.assign(Ae,{setup(Q){return(ne,ce)=>(Ce(),be(Le,null,[he("div",Re,[he("h3",null,ge(ne.status),1),ye(ke,{color:"primary",variant:"text",onClick:ne.handleConnection},{default:we(()=>[Ee(ge(ne.connection_status),1)]),_:1},8,["onClick"])]),xe],64))}});export{Te as default}; +`),this.status="未连接",this.connection_status="连接")}},beforeUnmount(){this.websocket.close()}},Te=Object.assign(Ae,{setup(Q){return(ne,ce)=>(Ce(),be(ke,null,[he("div",Re,[he("h3",null,ge(ne.status),1),ye(Ee,{color:"primary",variant:"text",onClick:ne.handleConnection},{default:we(()=>[Le(ge(ne.connection_status),1)]),_:1},8,["onClick"])]),xe],64))}});export{Te as default}; diff --git a/dashboard/dist/assets/DefaultDashboard-68301edf.js b/dashboard/dist/assets/DefaultDashboard-68301edf.js new file mode 100644 index 00000000..a4b78b14 --- /dev/null +++ b/dashboard/dist/assets/DefaultDashboard-68301edf.js @@ -0,0 +1 @@ +import{o as i,b as _,w as e,c as t,u as a,D as m,f as p,K as x,L as l,t as u,I as h,G as d,l as y,E as S,F as w,k as c,_ as T,$ as C,v as M,n as L,a as j,j as D,z as P}from"./index-7e5a38e4.js";import{_ as $}from"./_plugin-vue_export-helper-c27b6911.js";const B={class:"d-flex align-start mb-3"},F={class:"text-h1 font-weight-medium"},I=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),N={name:"TotalMessage",props:["stat"],data:()=>({stat:{message_count:0}}),mounted(){}},R=Object.assign(N,{setup(s){return(o,n)=>(i(),_(d,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(h,null,{default:e(()=>[a("div",B,[t(m,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t(p,{icon:"mdi-account-multiple-outline"})]),_:1})]),t(x,null,{default:e(()=>[t(l,{cols:"6"},{default:e(()=>[a("h2",F,u(s.stat.message_count),1),I]),_:1})]),_:1})]),_:1})]),_:1}))}}),z={class:"d-flex align-start mb-3"},E={class:"text-h1 font-weight-medium"},H=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息平台数",-1),G={name:"TotalSession",props:["stat"],data:()=>({stat:{platform_count:0}})},K=Object.assign(G,{setup(s){return(o,n)=>(i(),_(d,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(h,null,{default:e(()=>[a("div",z,[t(m,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t(p,{icon:"mdi-account-multiple-outline"})]),_:1})]),t(x,null,{default:e(()=>[t(l,{cols:"6"},{default:e(()=>[a("h2",E,u(s.stat.platform_count),1),H]),_:1})]),_:1})]),_:1})]),_:1}))}}),U={name:"OnlineTime",components:{},props:["stat"],watch:{},data:()=>({stat:{memory:"Loading",running:"Loading"}}),mounted(){}},q={class:"d-flex align-center gap-3"},A={class:"text-h4 font-weight-medium"},J=a("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),Q={class:"d-flex align-center gap-3"},W={class:"text-h4 font-weight-medium"},X=a("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function Y(s,o,n,f,r,v){return i(),y(w,null,[t(d,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(h,{class:"pa-5"},{default:e(()=>[a("div",q,[t(m,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(p,{icon:"mdi-clock"})]),_:1}),a("div",null,[a("h4",A,u(n.stat.running),1),J]),t(S),a("div",null,[t(m,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t(p,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(d,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(h,{class:"pa-5"},{default:e(()=>{var b,g;return[a("div",Q,[t(m,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(p,{icon:"mdi-memory"})]),_:1}),a("div",null,[a("h4",W,u((b=n.stat.memory)==null?void 0:b.process)+" / "+u((g=n.stat.memory)==null?void 0:g.system)+" MiB",1),X])])]}),_:1})]),_:1})],64)}const Z=$(U,[["render",Y]]),tt=a("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"总消息趋势",-1),et={class:"mt-4"},at={name:"MessageStat",components:{},props:["stat"],data:()=>({total_cnt:0,select:{state:"Today",abbr:"FL"},items:[{state:"过去 1 天",abbr:"FL"}],chartOptions1:{chart:{type:"area",height:400,fontFamily:"inherit",foreColor:"#a1aab2"},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{fixed:{enabled:!1},x:{show:!0,format:"yyyy-MM-dd HH:mm"},y:{title:{formatter:()=>"消息条数 "}}},xaxis:{type:"datetime",title:{text:"时间"}},yaxis:{title:{text:"消息条数"}},grid:{show:!0}},lineChart1:{series:[{name:"消息条数",data:[]}]}}),watch:{stat:{handler:function(s,o){s=s.message_time_series,this.lineChart1.series[0].data=s.map(n=>[new Date(n[0]*1e3).getTime(),n[1]])},deep:!0}}},st=Object.assign(at,{setup(s){return(o,n)=>{const f=c("apexchart");return i(),_(d,{elevation:"0"},{default:e(()=>[t(d,{variant:"outlined"},{default:e(()=>[t(h,null,{default:e(()=>[t(x,null,{default:e(()=>[t(l,{cols:"12",sm:"7"},{default:e(()=>[tt]),_:1}),t(l,{cols:"12",sm:"5"},{default:e(()=>[t(T,{color:"primary",variant:"outlined","hide-details":"",modelValue:o.select,"onUpdate:modelValue":n[0]||(n[0]=r=>o.select=r),items:o.items,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue","items"])]),_:1})]),_:1}),a("div",et,[t(f,{type:"area",height:"280",options:o.chartOptions1,series:o.lineChart1.series,ref:"rtchart"},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),ot=a("div",{class:"d-flex align-center"},[a("h4",{class:"text-h4 mt-1"},"各平台消息数")],-1),nt={class:"mt-4"},lt={class:"d-inline-flex align-center justify-space-between w-100"},it={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},dt={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},rt={class:"text-center mt-3"},ct={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.platforms=s.platform},deep:!0}},data:()=>({platforms:[]}),mounted(){}},ut=Object.assign(ct,{setup(s){return C(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}})),(o,n)=>{const f=c("ChevronRightIcon");return i(),_(d,{elevation:"0"},{default:e(()=>[t(d,{variant:"outlined"},{default:e(()=>[t(h,null,{default:e(()=>[ot,a("div",nt,[t(M,{lines:"two",class:"py-0",style:{height:"270px"}},{default:e(()=>[(i(!0),y(w,null,L(o.platforms,(r,v)=>(i(),_(D,{key:v,value:r,color:"secondary",rounded:"sm"},{default:e(()=>[a("div",lt,[a("div",null,[a("h6",it,u(r.name),1)]),a("div",dt,u(r.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1}),a("div",rt,[t(m,{color:"primary",variant:"text"},{append:e(()=>[t(f,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[j("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),mt={name:"DefaultDashboard",components:{TotalMessage:R,OnlinePlatform:K,OnlineTime:Z,MessageStat:st,PlatformStat:ut},data:()=>({stat:{}}),mounted(){P.get("/api/stat/get").then(s=>{this.stat=s.data.data})}};function _t(s,o,n,f,r,v){const b=c("TotalMessage"),g=c("OnlinePlatform"),V=c("OnlineTime"),k=c("MessageStat"),O=c("PlatformStat");return i(),_(x,null,{default:e(()=>[t(l,{cols:"12",md:"4"},{default:e(()=>[t(b,{stat:s.stat},null,8,["stat"])]),_:1}),t(l,{cols:"12",md:"4"},{default:e(()=>[t(g,{stat:s.stat},null,8,["stat"])]),_:1}),t(l,{cols:"12",md:"4"},{default:e(()=>[t(V,{stat:s.stat},null,8,["stat"])]),_:1}),t(l,{cols:"12",lg:"8"},{default:e(()=>[t(k,{stat:s.stat},null,8,["stat"])]),_:1}),t(l,{cols:"12",lg:"4"},{default:e(()=>[t(O,{stat:s.stat},null,8,["stat"])]),_:1})]),_:1})}const pt=$(mt,[["render",_t]]);export{pt as default}; diff --git a/dashboard/dist/assets/DefaultDashboard-ece65639.js b/dashboard/dist/assets/DefaultDashboard-ece65639.js deleted file mode 100644 index 1f3941a1..00000000 --- a/dashboard/dist/assets/DefaultDashboard-ece65639.js +++ /dev/null @@ -1 +0,0 @@ -import{y as R,p as u,o as _,c as f,w as e,a as t,L as w,b as a,d as p,j as $,$ as I,q as z,a0 as F,z as S,s as M,F as D,u as j,n as x,r as N,l as V,e as y,t as h,J as b,a1 as U,D as W,a2 as C,a3 as G,a4 as O,a5 as H,a6 as L,V as k,f as m,G as X,a7 as q,T as A}from"./index-25639696.js";import{_ as B}from"./_plugin-vue_export-helper-c27b6911.js";const E={class:"d-flex align-start mb-6"},J={class:"ml-auto z-1"},Y={class:"text-h1 font-weight-medium"},K=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),Q={name:"TotalMessage",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.message_total=s.message_total},deep:!0}},data:()=>({message_total:0}),mounted(){}},Z=Object.assign(Q,{setup(s){const o=R([{title:"移除",icon:U}]);return(d,c)=>{const l=u("DotsIcon");return _(),f(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[a("div",E,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-message"})]),_:1}),a("div",J,[t(I,{"close-on-content-click":!1},{activator:e(({props:r})=>[t(p,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},r),{default:e(()=>[t(l,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,{density:"compact"},{default:e(()=>[(_(!0),M(D,null,j(o.value,(r,n)=>(_(),f(x,{key:n,value:n},{prepend:e(()=>[(_(),f(N(r.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[y(h(r.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),a("h2",Y,h(d.message_total),1),K]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at={class:"text-h1 font-weight-medium"},st=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot={class:"text-h1 font-weight-medium"},lt=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.session_total=s.session_total},deep:!0}},data:()=>({session_total:0}),mounted(){}},it=Object.assign(nt,{setup(s){const o=W("1"),d=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),c={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},l=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),r={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(n,i)=>{const g=u("apexchart");return _(),f(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[a("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-account-multiple-outline"})]),_:1}),a("div",et,[t(G,{modelValue:o.value,"onUpdate:modelValue":i[0]||(i[0]=v=>o.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(O,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[y("按日")]),_:1}),t(O,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[y("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(H,{modelValue:o.value,"onUpdate:modelValue":i[1]||(i[1]=v=>o.value=v),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[a("h2",at,h(n.session_total),1),st]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:d.value,series:c.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[a("h2",ot,h(n.session_total),1),lt]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:l.value,series:r.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.memory=s.sys_perf.memory,this.runtime_str=s.sys_start_time;let d=new Date().getTime(),c=new Date(s.sys_start_time*1e3).getTime(),l=d-c,r=Math.floor(l/(24*3600*1e3)),n=l%(24*3600*1e3),i=Math.floor(n/(3600*1e3)),g=n%(3600*1e3),v=Math.floor(g/(60*1e3)),T=g%(60*1e3),P=Math.round(T/1e3);this.runtime_str=r+"天"+i+"小时"+v+"分"+P+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=a("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ht=a("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ft(s,o,d,c,l,r){return _(),M(D,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[a("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-clock"})]),_:1}),a("div",null,[a("h4",ct,h(s.runtime_str),1),ut]),t(X),a("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t($,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[a("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-memory"})]),_:1}),a("div",null,[a("h4",_t,h(s.memory)+" MiB",1),ht])])]),_:1})]),_:1})],64)}const pt=B(rt,[["render",ft]]),bt=a("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),gt={class:"text-h3 mt-1"},vt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({total_cnt:0,select:{state:"Today",abbr:"FL"},items:[{state:"过去 24 小时",abbr:"FL"},{state:"更多维度待开发喵!",abbr:"GA"}],chartOptions1:{chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:[]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}},lineChart1:{series:[{name:"消息条数",data:[]}]}}),watch:{stat:{handler:function(s,o){let d=[],c=[];for(let l=0;l{const c=u("apexchart");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"12",sm:"9"},{default:e(()=>[bt,a("h3",gt,h(o.total_cnt),1)]),_:1}),t(m,{cols:"12",sm:"3"},{default:e(()=>[t(q,{color:"primary",variant:"outlined","hide-details":"",modelValue:o.select,"onUpdate:modelValue":d[0]||(d[0]=l=>o.select=l),items:o.items,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue","items"])]),_:1})]),_:1}),a("div",vt,[t(c,{type:"bar",height:"280",options:o.chartOptions1,series:o.lineChart1.series,ref:"rtchart"},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},$t=a("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Mt={class:"text-center mt-3"},Dt={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.platforms=s.platform},deep:!0}},data:()=>({platforms:[]}),mounted(){}},Ot=Object.assign(Dt,{setup(s){return C(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}})),(o,d)=>{const c=u("DotsIcon"),l=u("perfect-scrollbar"),r=u("ChevronRightIcon");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[a("div",xt,[$t,a("div",Vt,[t(I,{transition:"slide-y-transition"},{activator:e(({props:n})=>[t(p,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},n),{default:e(()=>[t(c,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[y("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[y("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[y("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),a("div",kt,[t(l,{style:{height:"270px"}},{default:e(()=>[t(S,{lines:"two",class:"py-0"},{default:e(()=>[(_(!0),M(D,null,j(o.platforms,(n,i)=>(_(),f(x,{key:i,value:n,color:"secondary",rounded:"sm"},{default:e(()=>[a("div",Tt,[a("div",null,[a("h6",St,h(n.name),1)]),a("div",Ct,h(n.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),a("div",Mt,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(r,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[y("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:Z,TotalSession:it,OnlineTime:pt,MessageStat:wt,PlatformStat:Ot},data:()=>({stat:{}}),mounted(){A.get("/api/stats").then(s=>{console.log("stat",s.data.data),this.stat=s.data.data})}};function It(s,o,d,c,l,r){const n=u("TotalMessage"),i=u("TotalSession"),g=u("OnlineTime"),v=u("MessageStat"),T=u("PlatformStat");return _(),f(k,null,{default:e(()=>[t(m,{cols:"12",md:"4"},{default:e(()=>[t(n,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(i,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(g,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"4"},{default:e(()=>[t(T,{stat:s.stat},null,8,["stat"])]),_:1})]),_:1})}const jt=B(Lt,[["render",It]]);export{jt as default}; diff --git a/dashboard/dist/assets/Error404Page-11cf087a.css b/dashboard/dist/assets/Error404Page-11cf087a.css deleted file mode 100644 index f7d3419c..00000000 --- a/dashboard/dist/assets/Error404Page-11cf087a.css +++ /dev/null @@ -1 +0,0 @@ -.CardMediaWrapper{max-width:720px;margin:0 auto;position:relative}.CardMediaBuild{position:absolute;top:0;left:0;width:100%;animation:5s bounce ease-in-out infinite}.CardMediaParts{position:absolute;top:0;left:0;width:100%;animation:10s blink ease-in-out infinite} diff --git a/dashboard/dist/assets/Error404Page-5b9b1a3e.js b/dashboard/dist/assets/Error404Page-5b9b1a3e.js deleted file mode 100644 index 846ea01d..00000000 --- a/dashboard/dist/assets/Error404Page-5b9b1a3e.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-25639696.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; diff --git a/dashboard/dist/assets/ExtensionPage-0c929f20.js b/dashboard/dist/assets/ExtensionPage-0c929f20.js deleted file mode 100644 index 16847596..00000000 --- a/dashboard/dist/assets/ExtensionPage-0c929f20.js +++ /dev/null @@ -1 +0,0 @@ -import{x as $,o as g,c as _,w as e,a,a8 as S,b as i,K as m,e as o,t as p,G as h,d,A as T,L as x,a9 as B,J as k,s as V,f,F as C,u as F,V as c,N as v,P as b,H as w,q as E,O as G,aa as H,ab as U,T as u,j as q}from"./index-25639696.js";import{_ as y}from"./ConfigDetailCard-0eb16275.js";import"./UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js";const N={class:"d-sm-flex align-center justify-space-between"},D=$({__name:"ExtensionCard",props:{title:String,link:String},setup(s){const t=s,n=l=>{window.open(l,"_blank")};return(l,r)=>(g(),_(k,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(S,{style:{padding:"10px 20px"}},{default:e(()=>[i("div",N,[a(m,null,{default:e(()=>[o(p(t.title),1)]),_:1}),a(h),a(d,{icon:"mdi-link",variant:"plain",onClick:r[0]||(r[0]=Q=>n(t.link))})])]),_:1}),a(T),a(x,null,{default:e(()=>[B(l.$slots,"default")]),_:3})]),_:3}))}}),j=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 已安装的插件")],-1),z={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},I={class:"d-flex align-center gap-2"},P=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 插件市场 [待开发]")],-1),A=i("span",{class:"text-h5"},"插件配置",-1),L=i("span",{class:"text-h5"},"安装插件",-1),O=i("h3",null,"从 GitHub 上在线下载",-1),J=i("small",null,"请输入合法的 GitHub 仓库链接,当前仅支持 GitHub。如:https://github.com/Soulter/astrbot_plugin_aiocqhttp",-1),K=i("h3",null,"从本机上传 .zip 压缩包",-1),R=i("small",null,"请保证插件文件存在压缩包根目录中的第一个文件夹中(即类似于从 GitHub 仓库页上下载的 Zip 压缩包的格式)。",-1),Z=i("br",null,null,-1),M={name:"ExtensionPage",components:{ExtensionCard:D,ConfigDetailCard:y},data(){return{extension_data:{data:[]},extension_url:"",status:"",dialog:!1,snack_message:"",snack_show:!1,snack_success:"success",install_loading:!1,uninstall_loading:!1,configDialog:!1,extension_config:{},upload_file:null}},mounted(){this.getExtensions()},methods:{toast(s,t){this.snack_message=s,this.snack_show=!0,this.snack_success=t},getExtensions(){u.get("/api/extensions").then(s=>{this.extension_data.data=s.data.data,console.log(this.extension_data)})},newExtension(){if(this.extension_url===""&&this.upload_file===null){this.toast("请填写插件链接或上传插件文件","error");return}if(this.extension_url!==""&&this.upload_file!==null){this.toast("请不要同时填写插件链接和上传插件文件","error");return}if(this.install_loading=!0,this.upload_file!==null){const s=new FormData;s.append("file",this.upload_file[0]),u.post("/api/extensions/upload-install",s,{headers:{"Content-Type":"multipart/form-data"}}).then(t=>{if(this.install_loading=!1,t.data.status==="error"){this.toast(t.data.message,"error");return}this.extension_data.data=t.data.data,console.log(this.extension_data),this.upload_file="",this.toast(t.data.message,"success"),this.dialog=!1,this.getExtensions()}).catch(t=>{this.install_loading=!1,this.toast(t,"error")});return}else u.post("/api/extensions/install",{url:this.extension_url}).then(s=>{if(this.install_loading=!1,s.data.status==="error"){this.toast(s.data.message,"error");return}this.extension_data.data=s.data.data,console.log(this.extension_data),this.extension_url="",this.toast(s.data.message,"success"),this.dialog=!1,this.getExtensions()}).catch(s=>{this.install_loading=!1,this.toast(s,"error")})},uninstallExtension(s){this.uninstall_loading=!0,u.post("/api/extensions/uninstall",{name:s}).then(t=>{if(this.uninstall_loading=!1,t.data.status==="error"){this.toast(t.data.message,"error");return}this.extension_data.data=t.data.data,console.log(this.extension_data),this.toast(t.data.message,"success"),this.dialog=!1,this.getExtensions()}).catch(t=>{this.uninstall_loading=!1,this.toast(t,"error")})},updateExtension(s){this.update_loading=!0,u.post("/api/extensions/update",{name:s}).then(t=>{if(this.update_loading=!1,t.data.status==="error"){this.toast(t.data.message,"error");return}this.extension_data.data=t.data.data,console.log(this.extension_data),this.toast(t.data.message,"success"),this.dialog=!1,this.getExtensions()}).catch(t=>{this.update_loading=!1,this.toast(t,"error")})},openExtensionConfig(s){this.curr_namespace=s,this.configDialog=!0,u.get("/api/configs?namespace="+s).then(t=>{this.extension_config=t.data.data,console.log(this.extension_config)}).catch(t=>{this.toast(t,"error")})},updateConfig(){u.post("/api/extension-configs",{config:this.extension_config,namespace:this.curr_namespace}).then(s=>{s.data.status==="success"?this.toast(s.data.message,"success"):this.toast(s.data.message,"error")}).catch(s=>{this.toast(s,"error")})}}},tt=Object.assign(M,{setup(s){return(t,n)=>(g(),V(C,null,[a(c,null,{default:e(()=>[a(f,{cols:"12",md:"12"},{default:e(()=>[j]),_:1}),(g(!0),V(C,null,F(t.extension_data.data,l=>(g(),_(f,{cols:"12",md:"6",lg:"4"},{default:e(()=>[(g(),_(D,{key:l.name,title:l.name,link:l.repo,style:{"margin-bottom":"16px"}},{default:e(()=>[i("p",z,p(l.desc),1),i("div",I,[a(q,null,{default:e(()=>[o("mdi-account")]),_:1}),i("span",null,p(l.author),1),a(h),a(d,E({variant:"plain",onClick:r=>t.openExtensionConfig(l.name)},t.props),{default:e(()=>[o("配置")]),_:2},1040,["onClick"]),a(d,{variant:"plain",onClick:r=>t.updateExtension(l.name),loading:t.update_loading},{default:e(()=>[o("更新")]),_:2},1032,["onClick","loading"]),a(d,{variant:"plain",onClick:r=>t.uninstallExtension(l.name),loading:t.uninstall_loading},{default:e(()=>[o("卸载")]),_:2},1032,["onClick","loading"])])]),_:2},1032,["title","link"]))]),_:2},1024))),256)),a(f,{cols:"12",md:"12"},{default:e(()=>[P]),_:1})]),_:1}),a(w,{modelValue:t.configDialog,"onUpdate:modelValue":n[1]||(n[1]=l=>t.configDialog=l),width:"750"},{activator:e(({props:l})=>[]),default:e(()=>[a(k,null,{default:e(()=>[a(m,null,{default:e(()=>[A]),_:1}),a(x,null,{default:e(()=>[a(v,null,{default:e(()=>[a(y,{config:t.extension_config},null,8,["config"])]),_:1})]),_:1}),a(b,null,{default:e(()=>[a(h),a(d,{color:"blue-darken-1",variant:"text",onClick:t.updateConfig},{default:e(()=>[o(" 保存并关闭 ")]),_:1},8,["onClick"]),a(d,{color:"blue-darken-1",variant:"text",onClick:n[0]||(n[0]=l=>t.configDialog=!1)},{default:e(()=>[o(" 关闭 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"]),a(w,{modelValue:t.dialog,"onUpdate:modelValue":n[6]||(n[6]=l=>t.dialog=l),persistent:"",width:"700"},{activator:e(({props:l})=>[a(d,E(l,{icon:"mdi-plus",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary"}),null,16)]),default:e(()=>[a(k,null,{default:e(()=>[a(m,null,{default:e(()=>[L]),_:1}),a(x,null,{default:e(()=>[a(v,null,{default:e(()=>[a(c,null,{default:e(()=>[O,a(f,{cols:"12"},{default:e(()=>[J,a(G,{label:"仓库链接",modelValue:t.extension_url,"onUpdate:modelValue":n[2]||(n[2]=l=>t.extension_url=l),variant:"outlined",required:""},null,8,["modelValue"])]),_:1})]),_:1}),a(c,null,{default:e(()=>[K,a(f,{cols:"12"},{default:e(()=>[R,a(H,{label:"选择文件",modelValue:t.upload_file,"onUpdate:modelValue":n[3]||(n[3]=l=>t.upload_file=l),accept:".zip",outlined:"",required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),Z,i("small",null,p(t.status),1)]),_:1}),a(b,null,{default:e(()=>[a(h),a(d,{color:"blue-darken-1",variant:"text",onClick:n[4]||(n[4]=l=>t.dialog=!1)},{default:e(()=>[o(" 关闭 ")]),_:1}),a(d,{color:"blue-darken-1",variant:"text",loading:t.install_loading,onClick:n[5]||(n[5]=l=>t.newExtension(t.extension_url))},{default:e(()=>[o(" 安装 ")]),_:1},8,["loading"])]),_:1})]),_:1})]),_:1},8,["modelValue"]),a(U,{timeout:2e3,elevation:"24",color:t.snack_success,modelValue:t.snack_show,"onUpdate:modelValue":n[7]||(n[7]=l=>t.snack_show=l)},{default:e(()=>[o(p(t.snack_message),1)]),_:1},8,["color","modelValue"])],64))}});export{tt as default}; diff --git a/dashboard/dist/assets/ExtensionPage-38225584.js b/dashboard/dist/assets/ExtensionPage-38225584.js new file mode 100644 index 00000000..76e0658c --- /dev/null +++ b/dashboard/dist/assets/ExtensionPage-38225584.js @@ -0,0 +1 @@ +import{q as $,o as p,b as c,w as e,c as a,u as i,H as m,a as o,t as f,E as h,D as d,a0 as S,A as B,a1 as F,I as k,G as x,l as V,K as _,P as C,a2 as G,F as v,z as u,L as g,n as H,J as b,O as w,m as E,M as T,a3 as U,f as q}from"./index-7e5a38e4.js";import{_ as D}from"./ConfigDetailCard-5542b7f5.js";const z={class:"d-sm-flex align-center justify-space-between"},y=$({__name:"ExtensionCard",props:{title:String,link:String},setup(s){const t=s,n=l=>{window.open(l,"_blank")};return(l,r)=>(p(),c(x,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(S,{style:{padding:"10px 20px"}},{default:e(()=>[i("div",z,[a(m,null,{default:e(()=>[o(f(t.title),1)]),_:1}),a(h),a(d,{icon:"mdi-link",variant:"plain",onClick:r[0]||(r[0]=Q=>n(t.link))})])]),_:1}),a(B),a(k,null,{default:e(()=>[F(l.$slots,"default")]),_:3})]),_:3}))}}),I=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 已安装的插件")],-1),N={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},P={class:"d-flex align-center gap-2"},j=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 插件市场 [待开发]")],-1),A=i("span",{class:"text-h5"},"插件配置",-1),L=i("span",{class:"text-h5"},"安装插件",-1),O=i("h3",null,"从 GitHub 上在线下载",-1),J=i("small",null,"请输入合法的 GitHub 仓库链接,当前仅支持 GitHub。如:https://github.com/Soulter/astrbot_plugin_aiocqhttp",-1),K=i("h3",null,"从本机上传 .zip 压缩包",-1),M=i("small",null,"请保证插件文件存在压缩包根目录中的第一个文件夹中(即类似于从 GitHub 仓库页上下载的 Zip 压缩包的格式)。",-1),R=i("br",null,null,-1),Z={name:"ExtensionPage",components:{ExtensionCard:y,ConfigDetailCard:D},data(){return{extension_data:{data:[]},extension_url:"",status:"",dialog:!1,snack_message:"",snack_show:!1,snack_success:"success",install_loading:!1,uninstall_loading:!1,configDialog:!1,extension_config:{},upload_file:null}},mounted(){this.getExtensions()},methods:{toast(s,t){this.snack_message=s,this.snack_show=!0,this.snack_success=t},getExtensions(){u.get("/api/plugin/get").then(s=>{this.extension_data.data=s.data.data,console.log(this.extension_data)})},newExtension(){if(this.extension_url===""&&this.upload_file===null){this.toast("请填写插件链接或上传插件文件","error");return}if(this.extension_url!==""&&this.upload_file!==null){this.toast("请不要同时填写插件链接和上传插件文件","error");return}if(this.install_loading=!0,this.upload_file!==null){const s=new FormData;s.append("file",this.upload_file[0]),u.post("/api/plugin/install-upload",s,{headers:{"Content-Type":"multipart/form-data"}}).then(t=>{if(this.install_loading=!1,t.data.status==="error"){this.toast(t.data.message,"error");return}this.extension_data.data=t.data.data,console.log(this.extension_data),this.upload_file="",this.toast(t.data.message,"success"),this.dialog=!1,this.getExtensions()}).catch(t=>{this.install_loading=!1,this.toast(t,"error")});return}else u.post("/api/plugin/install",{url:this.extension_url}).then(s=>{if(this.install_loading=!1,s.data.status==="error"){this.toast(s.data.message,"error");return}this.extension_data.data=s.data.data,console.log(this.extension_data),this.extension_url="",this.toast(s.data.message,"success"),this.dialog=!1,this.getExtensions()}).catch(s=>{this.install_loading=!1,this.toast(s,"error")})},uninstallExtension(s){this.uninstall_loading=!0,u.post("/api/plugin/uninstall",{name:s}).then(t=>{if(this.uninstall_loading=!1,t.data.status==="error"){this.toast(t.data.message,"error");return}this.extension_data.data=t.data.data,console.log(this.extension_data),this.toast(t.data.message,"success"),this.dialog=!1,this.getExtensions()}).catch(t=>{this.uninstall_loading=!1,this.toast(t,"error")})},updateExtension(s){this.update_loading=!0,u.post("/api/plugin/update",{name:s}).then(t=>{if(this.update_loading=!1,t.data.status==="error"){this.toast(t.data.message,"error");return}this.extension_data.data=t.data.data,console.log(this.extension_data),this.toast(t.data.message,"success"),this.dialog=!1,this.getExtensions()}).catch(t=>{this.update_loading=!1,this.toast(t,"error")})},openExtensionConfig(s){this.curr_namespace=s,this.configDialog=!0,u.get("/api/config/get?namespace="+s).then(t=>{this.extension_config=t.data.data,console.log(this.extension_config)}).catch(t=>{this.toast(t,"error")})},updateConfig(){u.post("/api/plugin/update",{config:this.extension_config,namespace:this.curr_namespace}).then(s=>{s.data.status==="success"?this.toast(s.data.message,"success"):this.toast(s.data.message,"error")}).catch(s=>{this.toast(s,"error")})}}},Y=Object.assign(Z,{setup(s){return(t,n)=>(p(),V(v,null,[a(_,null,{default:e(()=>[a(g,{cols:"12",md:"12"},{default:e(()=>[I]),_:1}),(p(!0),V(v,null,H(t.extension_data.data,l=>(p(),c(g,{cols:"12",md:"6",lg:"4"},{default:e(()=>[(p(),c(y,{key:l.name,title:l.name,link:l.repo,style:{"margin-bottom":"16px"}},{default:e(()=>[i("p",N,f(l.desc),1),i("div",P,[a(q,null,{default:e(()=>[o("mdi-account")]),_:1}),i("span",null,f(l.author),1),a(h),a(d,E({variant:"plain",onClick:r=>t.openExtensionConfig(l.name)},t.props),{default:e(()=>[o("配置")]),_:2},1040,["onClick"]),a(d,{variant:"plain",onClick:r=>t.updateExtension(l.name),loading:t.update_loading},{default:e(()=>[o("更新")]),_:2},1032,["onClick","loading"]),a(d,{variant:"plain",onClick:r=>t.uninstallExtension(l.name),loading:t.uninstall_loading},{default:e(()=>[o("卸载")]),_:2},1032,["onClick","loading"])])]),_:2},1032,["title","link"]))]),_:2},1024))),256)),a(g,{cols:"12",md:"12"},{default:e(()=>[j]),_:1})]),_:1}),a(C,{modelValue:t.configDialog,"onUpdate:modelValue":n[1]||(n[1]=l=>t.configDialog=l),width:"750"},{activator:e(({props:l})=>[]),default:e(()=>[a(x,null,{default:e(()=>[a(m,null,{default:e(()=>[A]),_:1}),a(k,null,{default:e(()=>[a(b,null,{default:e(()=>[a(D,{config:t.extension_config},null,8,["config"])]),_:1})]),_:1}),a(w,null,{default:e(()=>[a(h),a(d,{color:"blue-darken-1",variant:"text",onClick:t.updateConfig},{default:e(()=>[o(" 保存并关闭 ")]),_:1},8,["onClick"]),a(d,{color:"blue-darken-1",variant:"text",onClick:n[0]||(n[0]=l=>t.configDialog=!1)},{default:e(()=>[o(" 关闭 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"]),a(C,{modelValue:t.dialog,"onUpdate:modelValue":n[6]||(n[6]=l=>t.dialog=l),persistent:"",width:"700"},{activator:e(({props:l})=>[a(d,E(l,{icon:"mdi-plus",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary"}),null,16)]),default:e(()=>[a(x,null,{default:e(()=>[a(m,null,{default:e(()=>[L]),_:1}),a(k,null,{default:e(()=>[a(b,null,{default:e(()=>[a(_,null,{default:e(()=>[O,a(g,{cols:"12"},{default:e(()=>[J,a(T,{label:"仓库链接",modelValue:t.extension_url,"onUpdate:modelValue":n[2]||(n[2]=l=>t.extension_url=l),variant:"outlined",required:""},null,8,["modelValue"])]),_:1})]),_:1}),a(_,null,{default:e(()=>[K,a(g,{cols:"12"},{default:e(()=>[M,a(U,{label:"选择文件",modelValue:t.upload_file,"onUpdate:modelValue":n[3]||(n[3]=l=>t.upload_file=l),accept:".zip",outlined:"",required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),R,i("small",null,f(t.status),1)]),_:1}),a(w,null,{default:e(()=>[a(h),a(d,{color:"blue-darken-1",variant:"text",onClick:n[4]||(n[4]=l=>t.dialog=!1)},{default:e(()=>[o(" 关闭 ")]),_:1}),a(d,{color:"blue-darken-1",variant:"text",loading:t.install_loading,onClick:n[5]||(n[5]=l=>t.newExtension(t.extension_url))},{default:e(()=>[o(" 安装 ")]),_:1},8,["loading"])]),_:1})]),_:1})]),_:1},8,["modelValue"]),a(G,{timeout:2e3,elevation:"24",color:t.snack_success,modelValue:t.snack_show,"onUpdate:modelValue":n[7]||(n[7]=l=>t.snack_show=l)},{default:e(()=>[o(f(t.snack_message),1)]),_:1},8,["color","modelValue"])],64))}});export{Y as default}; diff --git a/dashboard/dist/assets/FullLayout-18d94e89.js b/dashboard/dist/assets/FullLayout-18d94e89.js deleted file mode 100644 index 339737d0..00000000 --- a/dashboard/dist/assets/FullLayout-18d94e89.js +++ /dev/null @@ -1 +0,0 @@ -import{o,c as r,w as t,e as v,t as k,g as ae,h as le,a as e,i as G,j as C,k as B,l as W,m as H,n as J,r as R,p as K,q as I,s as w,F as x,u as Q,v as se,x as D,y as ie,b as _,z as oe,A as X,B as n,C as ne,D as b,d as h,E,M as U,G as S,H as M,I as y,J as P,K as j,L as O,N as T,V as re,f as ue,O as z,P as q,Q as de,R as ce,S as me,T as N,U as pe,W as fe,X as ve,Y as _e,Z as he,_ as Ve}from"./index-25639696.js";import{_ as be,u as L}from"./LogoDark.vue_vue_type_script_setup_true_lang-b1d2f1af.js";import{m as F}from"./md5-0b0a2337.js";const ke=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],ye={__name:"NavGroup",props:{item:Object},setup(a){const i=a;return(u,f)=>(o(),r(ae,{color:"darkText",class:"smallCap"},{default:t(()=>[v(k(i.item.header),1)]),_:1}))}},Y={__name:"NavItem",props:{item:Object,level:Number},setup(a){return(i,u)=>(o(),r(J,{to:a.item.type==="external"?"":a.item.to,href:a.item.type==="external"?a.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:a.item.disabled,target:a.item.type==="external"?"_blank":""},le({prepend:t(()=>[a.item.icon?(o(),r(C,{key:0,color:a.item.iconColor,size:a.item.iconSize,class:"hide-menu",icon:a.item.icon},null,8,["color","size","icon"])):B("",!0)]),default:t(()=>[e(W,null,{default:t(()=>[v(k(a.item.title),1)]),_:1}),a.item.subCaption?(o(),r(H,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(k(a.item.subCaption),1)]),_:1})):B("",!0)]),_:2},[a.item.chip?{name:"append",fn:t(()=>[e(G,{color:a.item.chipColor,class:"sidebarchip hide-menu",size:a.item.chipIcon?"small":"default",variant:a.item.chipVariant,"prepend-icon":a.item.chipIcon},{default:t(()=>[v(k(a.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},ge={__name:"IconSet",props:{item:Object,level:Number},setup(a){const i=a;return(u,f)=>i.level>0?(o(),r(R(i.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(o(),r(R(i.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},Ce={__name:"NavCollapse",props:{item:Object,level:Number},setup(a){const i=a;return(u,f)=>{const p=K("NavCollapse",!0);return o(),r(se,{"no-action":""},{activator:t(({props:d})=>[e(J,I(d,{value:a.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[e(ge,{item:a.item.icon,level:a.level},null,8,["item","level"])]),default:t(()=>[e(W,{class:"mr-auto"},{default:t(()=>[v(k(a.item.title),1)]),_:1}),a.item.subCaption?(o(),r(H,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(k(a.item.subCaption),1)]),_:1})):B("",!0)]),_:2},1040,["value"])]),default:t(()=>[(o(!0),w(x,null,Q(a.item.children,(d,m)=>(o(),w(x,{key:m},[d.children?(o(),r(p,{key:0,item:d,level:i.level+1},null,8,["item","level"])):(o(),r(Y,{key:1,item:d,level:i.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},we={__name:"LogoMain",setup(a){return(i,u)=>(o(),r(be))}},xe={class:"pa-5"},Se={class:"pa-4 text-center"},ze=D({__name:"VerticalSidebar",setup(a){const i=L(),u=ie(ke);return(f,p)=>{const d=K("perfect-scrollbar");return o(),r(ne,{left:"",modelValue:n(i).Sidebar_drawer,"onUpdate:modelValue":p[0]||(p[0]=m=>n(i).Sidebar_drawer=m),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:n(i).mini_sidebar,"expand-on-hover":""},{default:t(()=>[_("div",xe,[e(we)]),e(d,{class:"scrollnavbar"},{default:t(()=>[e(oe,{class:"pa-4"},{default:t(()=>[(o(!0),w(x,null,Q(u.value,(m,V)=>(o(),w(x,{key:V},[m.header?(o(),r(ye,{item:m,key:m.title},null,8,["item"])):m.divider?(o(),r(X,{key:1,class:"my-3"})):m.children?(o(),r(Ce,{key:2,class:"leftPadding",item:m,level:0},null,8,["item"])):(o(),r(Y,{key:3,item:m,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),_("div",Se,[e(G,{color:"inputBorder",size:"small"},{default:t(()=>[v(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),Ne=_("span",{class:"text-h5"},"密码修改",-1),Be=_("small",null,"如果是第一次修改密码,原密码请留空。",-1),Ie=_("br",null,null,-1),Te=_("span",{class:"text-h5"},"更新项目",-1),De={style:{"margin-top":"16px"}},Le=_("p",null,"切换到指定版本",-1),$e=D({__name:"VerticalHeader",setup(a){const i=L();b(!1);let u=b(!1),f=b(!1),p=b(""),d=b(""),m=b(""),V=b(""),$=b(!1),g=b("");const Z=c=>{window.open(c,"_blank")};function ee(){p.value!=""&&(p.value=F.md5(p.value)),d.value=F.md5(d.value),N.post("/api/change_password",{password:p.value,new_password:d.value}).then(c=>{if(c.data.status=="error"){m.value=c.data.message,p.value="",d.value="";return}u.value=!u.value,m.value=c.data.message,setTimeout(()=>{pe().logout()},1e3)}).catch(c=>{console.log(c),m.value=c,p.value="",d.value=""})}function te(){V.value="正在检查更新...",N.get("/api/check_update").then(c=>{$.value=c.data.data.has_new_version,V.value=c.data.message}).catch(c=>{console.log(c),V.value=c})}function A(c){V.value="正在切换版本...",N.post("/api/update_project",{version:c}).then(l=>{V.value=l.data.message,l.data.status=="success"&&setTimeout(()=>{window.location.reload()},1e3)}).catch(l=>{console.log(l),V.value=l})}return(c,l)=>(o(),r(me,{elevation:"0",height:"80"},{default:t(()=>[e(h,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:l[0]||(l[0]=E(s=>n(i).SET_MINI_SIDEBAR(!n(i).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[e(n(U),{size:"20","stroke-width":"1.5"})]),_:1}),e(h,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:E(n(i).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[e(n(U),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),e(S),e(M,{modelValue:n(u),"onUpdate:modelValue":l[4]||(l[4]=s=>y(u)?u.value=s:u=s),persistent:"",width:"700"},{activator:t(({props:s})=>[e(h,I({class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},s),{default:t(()=>[e(C,{icon:"mdi-account-edit",size:"25"})]),_:2},1040)]),default:t(()=>[e(P,null,{default:t(()=>[e(j,null,{default:t(()=>[Ne]),_:1}),e(O,null,{default:t(()=>[e(T,null,{default:t(()=>[e(re,null,{default:t(()=>[e(ue,{cols:"12"},{default:t(()=>[e(z,{label:"原密码*",type:"password",modelValue:n(p),"onUpdate:modelValue":l[1]||(l[1]=s=>y(p)?p.value=s:p=s),required:""},null,8,["modelValue"]),e(z,{label:"新密码*",type:"password",modelValue:n(d),"onUpdate:modelValue":l[2]||(l[2]=s=>y(d)?d.value=s:d=s),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),Be,Ie,_("small",null,k(n(m)),1)]),_:1}),e(q,null,{default:t(()=>[e(S),e(h,{color:"blue-darken-1",variant:"text",onClick:l[3]||(l[3]=s=>y(u)?u.value=!1:u=!1)},{default:t(()=>[v(" 关闭 ")]),_:1}),e(h,{color:"blue-darken-1",variant:"text",onClick:ee},{default:t(()=>[v(" 提交 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"]),e(M,{modelValue:n(f),"onUpdate:modelValue":l[9]||(l[9]=s=>y(f)?f.value=s:f=s),width:"700"},{activator:t(({props:s})=>[e(h,I({onClick:te,class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},s),{default:t(()=>[e(C,{icon:"mdi-update",size:"25"})]),_:2},1040)]),default:t(()=>[e(P,null,{default:t(()=>[e(j,null,{default:t(()=>[Te]),_:1}),e(O,null,{default:t(()=>[e(T,null,{default:t(()=>[_("p",null,k(n(V)),1),de(e(h,{onClick:l[5]||(l[5]=s=>A("latest")),color:"primary",class:"ml-2",style:{"border-radius":"10px"}},{default:t(()=>[v(" 更新到最新版本 ")]),_:1},512),[[ce,n($)]]),e(X),_("div",De,[Le,e(z,{label:"版本号。如v3.1.3",modelValue:n(g),"onUpdate:modelValue":l[6]||(l[6]=s=>y(g)?g.value=s:g=s),required:""},null,8,["modelValue"]),e(h,{color:"primary",class:"ml-2",style:{"border-radius":"10px"},onClick:l[7]||(l[7]=s=>A(n(g)))},{default:t(()=>[v(" 切换到指定版本 ")]),_:1})])]),_:1})]),_:1}),e(q,null,{default:t(()=>[e(S),e(h,{color:"blue-darken-1",variant:"text",onClick:l[8]||(l[8]=s=>y(f)?f.value=!1:f=!1)},{default:t(()=>[v(" 关闭 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"]),e(h,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",onClick:l[10]||(l[10]=s=>Z("https://github.com/Soulter/AstrBot")),rounded:"pill"},{default:t(()=>[e(C,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),Ue=D({__name:"FullLayout",setup(a){const i=L();return(u,f)=>(o(),r(Ve,null,{default:t(()=>[e(fe,{theme:"PurpleTheme",class:ve([n(i).fontTheme,n(i).mini_sidebar?"mini-sidebar":"",n(i).inputBg?"inputWithbg":""])},{default:t(()=>[e(ze),e($e),e(_e,null,{default:t(()=>[e(T,{fluid:"",class:"page-wrapper"},{default:t(()=>[_("div",null,[e(n(he))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{Ue as default}; diff --git a/dashboard/dist/assets/FullLayout-579d0529.js b/dashboard/dist/assets/FullLayout-579d0529.js new file mode 100644 index 00000000..d50b3f49 --- /dev/null +++ b/dashboard/dist/assets/FullLayout-579d0529.js @@ -0,0 +1 @@ +import{c as e,a as m,m as x,o as n,b as u,w as t,t as g,V as oe,d as ne,e as H,f as y,g as B,h as W,i as J,j as K,r as R,k as Q,l as z,F as S,n as X,p as ie,q as $,s as re,u as h,v as ue,x as i,y as de,z as C,A as Y,B as b,C as E,D as _,E as N,G as U,H as P,I as j,J as T,K as ce,L as me,M as I,N as w,O,P as q,Q as pe,R as ve,S as fe,T as he,U as _e,W as Ve,X as be,Y as ge,Z as we}from"./index-7e5a38e4.js";import{_ as ke,u as L,m as F}from"./md5-6c2e1fd5.js";var G={name:"Menu2Icon",props:{size:{type:[Number,String],default:24}},render(){const a=this.$props.size+"px",s=this.$data.attrs||{},r={width:s.width||a,height:s.height||a};return e("svg",x({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[m(" "),e("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),m(" "),e("path",{d:"M4 6l16 0"},null),m(" "),e("path",{d:"M4 12l16 0"},null),m(" "),e("path",{d:"M4 18l16 0"},null),m(" ")])}};const ye=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],Z={__name:"NavGroup",props:{item:Object},setup(a){const s=a;return(r,f)=>(n(),u(oe,{color:"darkText",class:"smallCap"},{default:t(()=>[m(g(s.item.header),1)]),_:1}))}},M={__name:"NavItem",props:{item:Object,level:Number},setup(a){return(s,r)=>(n(),u(K,{to:a.item.type==="external"?"":a.item.to,href:a.item.type==="external"?a.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:a.item.disabled,target:a.item.type==="external"?"_blank":""},ne({prepend:t(()=>[a.item.icon?(n(),u(y,{key:0,color:a.item.iconColor,size:a.item.iconSize,class:"hide-menu",icon:a.item.icon},null,8,["color","size","icon"])):B("",!0)]),default:t(()=>[e(W,null,{default:t(()=>[m(g(a.item.title),1)]),_:1}),a.item.subCaption?(n(),u(J,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(g(a.item.subCaption),1)]),_:1})):B("",!0)]),_:2},[a.item.chip?{name:"append",fn:t(()=>[e(H,{color:a.item.chipColor,class:"sidebarchip hide-menu",size:a.item.chipIcon?"small":"default",variant:a.item.chipVariant,"prepend-icon":a.item.chipIcon},{default:t(()=>[m(g(a.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},Ce={__name:"IconSet",props:{item:Object,level:Number},setup(a){const s=a;return(r,f)=>s.level>0?(n(),u(R(s.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(n(),u(R(s.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ee={__name:"NavCollapse",props:{item:Object,level:Number},setup(a){const s=a;return(r,f)=>{const v=Q("NavCollapse",!0);return n(),u(ie,{"no-action":""},{activator:t(({props:d})=>[e(K,x(d,{value:a.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[e(Ce,{item:a.item.icon,level:a.level},null,8,["item","level"])]),default:t(()=>[e(W,{class:"mr-auto"},{default:t(()=>[m(g(a.item.title),1)]),_:1}),a.item.subCaption?(n(),u(J,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(g(a.item.subCaption),1)]),_:1})):B("",!0)]),_:2},1040,["value"])]),default:t(()=>[(n(!0),z(S,null,X(a.item.children,(d,p)=>(n(),z(S,{key:p},[d.children?(n(),u(v,{key:0,item:d,level:s.level+1},null,8,["item","level"])):(n(),u(M,{key:1,item:d,level:s.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},te={__name:"LogoMain",setup(a){return(s,r)=>(n(),u(ke))}},xe={class:"pa-5"},ze={class:"pa-4 text-center"},Se={name:"VerticalSidebar",components:{NavGroup:Z,NavItem:M,NavCollapse:ee,Logo:te},data:()=>({version:"-"}),mounted(){this.get_version()},methods:{get_version(){C.get("/api/stat/version").then(a=>{this.version=a.data.data.version}).catch(a=>{console.log(a)})}}},Ne=$({...Se,setup(a){const s=L(),r=re(ye);return(f,v)=>{const d=Q("perfect-scrollbar");return n(),u(de,{left:"",modelValue:i(s).Sidebar_drawer,"onUpdate:modelValue":v[0]||(v[0]=p=>i(s).Sidebar_drawer=p),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:i(s).mini_sidebar,"expand-on-hover":""},{default:t(()=>[h("div",xe,[e(te)]),e(d,{class:"scrollnavbar"},{default:t(()=>[e(ue,{class:"pa-4"},{default:t(()=>[(n(!0),z(S,null,X(r.value,(p,V)=>(n(),z(S,{key:V},[p.header?(n(),u(Z,{item:p,key:p.title},null,8,["item"])):p.divider?(n(),u(Y,{key:1,class:"my-3"})):p.children?(n(),u(ee,{key:2,class:"leftPadding",item:p,level:0},null,8,["item"])):(n(),u(M,{key:3,item:p,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),h("div",ze,[e(H,{color:"inputBorder",size:"small"},{default:t(()=>[m(" v"+g(f.version),1)]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),Ie=h("span",{class:"text-h5"},"密码修改",-1),Be=h("small",null,"如果是第一次修改密码,原密码请留空。",-1),Te=h("br",null,null,-1),$e=h("span",{class:"text-h5"},"更新项目",-1),Le={style:{"margin-top":"16px"}},Me=h("p",null,"切换到指定版本",-1),De=$({__name:"VerticalHeader",setup(a){const s=L();b(!1);let r=b(!1),f=b(!1),v=b(""),d=b(""),p=b(""),V=b(""),D=b(!1),k=b("");const ae=c=>{window.open(c,"_blank")};function le(){v.value!=""&&(v.value=F.md5(v.value)),d.value=F.md5(d.value),C.post("/api/auth/password/reset",{password:v.value,new_password:d.value}).then(c=>{if(c.data.status=="error"){p.value=c.data.message,v.value="",d.value="";return}r.value=!r.value,p.value=c.data.message,setTimeout(()=>{he().logout()},1e3)}).catch(c=>{console.log(c),p.value=c,v.value="",d.value=""})}function se(){V.value="正在检查更新...",C.get("/api/update/check").then(c=>{D.value=c.data.data.has_new_version,V.value=c.data.message}).catch(c=>{console.log(c),V.value=c})}function A(c){V.value="正在切换版本...",C.post("/api/update/do",{version:c}).then(l=>{V.value=l.data.message,l.data.status=="success"&&setTimeout(()=>{window.location.reload()},1e3)}).catch(l=>{console.log(l),V.value=l})}return(c,l)=>(n(),u(fe,{elevation:"0",height:"80"},{default:t(()=>[e(_,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:l[0]||(l[0]=E(o=>i(s).SET_MINI_SIDEBAR(!i(s).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[e(i(G),{size:"20","stroke-width":"1.5"})]),_:1}),e(_,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:E(i(s).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[e(i(G),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),e(N),e(q,{modelValue:i(r),"onUpdate:modelValue":l[4]||(l[4]=o=>w(r)?r.value=o:r=o),persistent:"",width:"700"},{activator:t(({props:o})=>[e(_,x({class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},o),{default:t(()=>[e(y,{icon:"mdi-account-edit",size:"25"})]),_:2},1040)]),default:t(()=>[e(U,null,{default:t(()=>[e(P,null,{default:t(()=>[Ie]),_:1}),e(j,null,{default:t(()=>[e(T,null,{default:t(()=>[e(ce,null,{default:t(()=>[e(me,{cols:"12"},{default:t(()=>[e(I,{label:"原密码*",type:"password",modelValue:i(v),"onUpdate:modelValue":l[1]||(l[1]=o=>w(v)?v.value=o:v=o),required:""},null,8,["modelValue"]),e(I,{label:"新密码*",type:"password",modelValue:i(d),"onUpdate:modelValue":l[2]||(l[2]=o=>w(d)?d.value=o:d=o),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),Be,Te,h("small",null,g(i(p)),1)]),_:1}),e(O,null,{default:t(()=>[e(N),e(_,{color:"blue-darken-1",variant:"text",onClick:l[3]||(l[3]=o=>w(r)?r.value=!1:r=!1)},{default:t(()=>[m(" 关闭 ")]),_:1}),e(_,{color:"blue-darken-1",variant:"text",onClick:le},{default:t(()=>[m(" 提交 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"]),e(q,{modelValue:i(f),"onUpdate:modelValue":l[9]||(l[9]=o=>w(f)?f.value=o:f=o),width:"700"},{activator:t(({props:o})=>[e(_,x({onClick:se,class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},o),{default:t(()=>[e(y,{icon:"mdi-update",size:"25"})]),_:2},1040)]),default:t(()=>[e(U,null,{default:t(()=>[e(P,null,{default:t(()=>[$e]),_:1}),e(j,null,{default:t(()=>[e(T,null,{default:t(()=>[h("p",null,g(i(V)),1),pe(e(_,{onClick:l[5]||(l[5]=o=>A("latest")),color:"primary",class:"ml-2",style:{"border-radius":"10px"}},{default:t(()=>[m(" 更新到最新版本 ")]),_:1},512),[[ve,i(D)]]),e(Y),h("div",Le,[Me,e(I,{label:"版本号。如v3.1.3",modelValue:i(k),"onUpdate:modelValue":l[6]||(l[6]=o=>w(k)?k.value=o:k=o),required:""},null,8,["modelValue"]),e(_,{color:"primary",class:"ml-2",style:{"border-radius":"10px"},onClick:l[7]||(l[7]=o=>A(i(k)))},{default:t(()=>[m(" 切换到指定版本 ")]),_:1})])]),_:1})]),_:1}),e(O,null,{default:t(()=>[e(N),e(_,{color:"blue-darken-1",variant:"text",onClick:l[8]||(l[8]=o=>w(f)?f.value=!1:f=!1)},{default:t(()=>[m(" 关闭 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"]),e(_,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",onClick:l[10]||(l[10]=o=>ae("https://github.com/Soulter/AstrBot")),rounded:"pill"},{default:t(()=>[e(y,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),Ee=$({__name:"FullLayout",setup(a){const s=L();return(r,f)=>(n(),u(ge,null,{default:t(()=>[e(be,{theme:"PurpleTheme",class:Ve([i(s).fontTheme,i(s).mini_sidebar?"mini-sidebar":"",i(s).inputBg?"inputWithbg":""])},{default:t(()=>[e(Ne),e(De),e(_e,null,{default:t(()=>[e(T,{fluid:"",class:"page-wrapper"},{default:t(()=>[h("div",null,[e(i(we))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{Ee as default}; diff --git a/dashboard/dist/assets/LoginPage-2bd5ea03.js b/dashboard/dist/assets/LoginPage-2bd5ea03.js deleted file mode 100644 index 99653535..00000000 --- a/dashboard/dist/assets/LoginPage-2bd5ea03.js +++ /dev/null @@ -1,5 +0,0 @@ -import{_ as Ot}from"./LogoDark.vue_vue_type_script_setup_true_lang-b1d2f1af.js";import{x as ke,ag as we,r as Vt,ah as St,D as w,ai as Ne,a2 as C,B as I,aj as Q,ak as Et,I as Be,al as Ie,am as jt,an as At,ao as wt,ap as G,y as Ft,o as Re,c as nt,w as T,a as A,O as He,b as ce,aq as Pt,d as Ct,e as Ge,s as Tt,ar as Nt,t as Ye,k as Bt,U as It,f as Fe,N as Rt,V as Pe,J as We,L as kt}from"./index-25639696.js";import{a as Mt}from"./md5-0b0a2337.js";/** - * vee-validate v4.11.3 - * (c) 2023 Abdelrahman Awad - * @license MIT - */function R(e){return typeof e=="function"}function rt(e){return e==null}const Z=e=>e!==null&&!!e&&typeof e=="object"&&!Array.isArray(e);function Me(e){return Number(e)>=0}function Ut(e){return typeof e=="object"&&e!==null}function Dt(e){return e==null?e===void 0?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}function zt(e){if(!Ut(e)||Dt(e)!=="[object Object]")return!1;if(Object.getPrototypeOf(e)===null)return!0;let t=e;for(;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function ge(e,t){return Object.keys(t).forEach(n=>{if(zt(t[n])){e[n]||(e[n]={}),ge(e[n],t[n]);return}e[n]=t[n]}),e}function ye(e){const t=e.split(".");if(!t.length)return"";let n=String(t[0]);for(let i=1;iYt(l)&&o in l?l[o]:n,e):n}function Y(e,t,n){if(be(t)){e[De(t)]=n;return}const i=t.split(/\.|\[(\d+)\]/).filter(Boolean);let l=e;for(let o=0;oD(e,n.slice(0,c).join(".")));for(let o=l.length-1;o>=0;o--)if(Wt(l[o])){if(o===0){Ce(e,n[0]);continue}Ce(l[o-1],n[o-1])}}function U(e){return Object.keys(e)}function Xe(e,t=0){let n=null,i=[];return function(...l){return n&&clearTimeout(n),n=setTimeout(()=>{const o=e(...l);i.forEach(c=>c(o)),i=[]},t),new Promise(o=>i.push(o))}}function Jt(e,t){let n;return async function(...l){const o=e(...l);n=o;const c=await o;return o!==n||(n=void 0,t(c,l)),c}}function Ze(e){return Array.isArray(e)?e:e?[e]:[]}function ue(e,t){const n={};for(const i in e)t.includes(i)||(n[i]=e[i]);return n}function Qt(e){let t=null,n=[];return function(...i){const l=Q(()=>{if(t!==l)return;const o=e(...i);n.forEach(c=>c(o)),n=[],t=null});return t=l,new Promise(o=>n.push(o))}}const Xt=(e,t,n)=>t.slots.default?typeof e=="string"||!e?t.slots.default(n()):{default:()=>{var i,l;return(l=(i=t.slots).default)===null||l===void 0?void 0:l.call(i,n())}}:t.slots.default;function Te(e){if(ut(e))return e._value}function ut(e){return"_value"in e}function Zt(e){return e.type==="number"||e.type==="range"?Number.isNaN(e.valueAsNumber)?e.value:e.valueAsNumber:e.value}function et(e){if(!Ue(e))return e;const t=e.target;if(Gt(t.type)&&ut(t))return Te(t);if(t.type==="file"&&t.files){const n=Array.from(t.files);return t.multiple?n:n[0]}if(Kt(t))return Array.from(t.options).filter(n=>n.selected&&!n.disabled).map(Te);if(it(t)){const n=Array.from(t.options).find(i=>i.selected);return n?Te(n):t.value}return Zt(t)}function en(e){const t={};return Object.defineProperty(t,"_$$isNormalized",{value:!0,writable:!1,enumerable:!1,configurable:!1}),e?Z(e)&&e._$$isNormalized?e:Z(e)?Object.keys(e).reduce((n,i)=>{const l=tn(e[i]);return e[i]!==!1&&(n[i]=tt(l)),n},t):typeof e!="string"?t:e.split("|").reduce((n,i)=>{const l=nn(i);return l.name&&(n[l.name]=tt(l.params)),n},t):t}function tn(e){return e===!0?[]:Array.isArray(e)||Z(e)?e:[e]}function tt(e){const t=n=>typeof n=="string"&&n[0]==="@"?rn(n.slice(1)):n;return Array.isArray(e)?e.map(t):e instanceof RegExp?[e]:Object.keys(e).reduce((n,i)=>(n[i]=t(e[i]),n),{})}const nn=e=>{let t=[];const n=e.split(":")[0];return e.includes(":")&&(t=e.split(":").slice(1).join(":").split(",")),{name:n,params:t}};function rn(e){const t=n=>D(n,e)||n[e];return t.__locatorRef=e,t}const an={generateMessage:({field:e})=>`${e} is not valid.`,bails:!0,validateOnBlur:!0,validateOnChange:!0,validateOnInput:!1,validateOnModelUpdate:!0};let ln=Object.assign({},an);const X=()=>ln;async function un(e,t,n={}){const i=n==null?void 0:n.bails,l={name:(n==null?void 0:n.name)||"{field}",rules:t,label:n==null?void 0:n.label,bails:i??!0,formData:(n==null?void 0:n.values)||{}},c=(await on(l,e)).errors;return{errors:c,valid:!c.length}}async function on(e,t){if(ee(e.rules)||at(e.rules))return cn(t,e.rules);if(R(e.rules)||Array.isArray(e.rules)){const c={field:e.label||e.name,name:e.name,label:e.label,form:e.formData,value:t},m=Array.isArray(e.rules)?e.rules:[e.rules],d=m.length,f=[];for(let h=0;h{const d=m.path||"";return c[d]||(c[d]={errors:[],path:d}),c[d].errors.push(...m.errors),c},{});return{errors:Object.values(o)}}}}}async function cn(e,t){const i=await(ee(t)?t:ot(t)).parse(e),l=[];for(const o of i.errors)o.errors.length&&l.push(...o.errors);return{errors:l}}async function dn(e,t,n){const i=Lt(n.name);if(!i)throw new Error(`No such validator '${n.name}' exists.`);const l=fn(n.params,e.formData),o={field:e.label||e.name,name:e.name,label:e.label,value:t,form:e.formData,rule:Object.assign(Object.assign({},n),{params:l})},c=await i(t,l,o);return typeof c=="string"?{error:c}:{error:c?void 0:st(o)}}function st(e){const t=X().generateMessage;return t?t(e):"Field is invalid"}function fn(e,t){const n=i=>Ht(i)?i(t):i;return Array.isArray(e)?e.map(n):Object.keys(e).reduce((i,l)=>(i[l]=n(e[l]),i),{})}async function vn(e,t){const i=await(ee(e)?e:ot(e)).parse(t),l={},o={};for(const c of i.errors){const m=c.errors,d=(c.path||"").replace(/\["(\d+)"\]/g,(f,h)=>`[${h}]`);l[d]={valid:!m.length,errors:m},m.length&&(o[d]=m[0])}return{valid:!i.errors.length,results:l,errors:o,values:i.value}}async function mn(e,t,n){const l=U(e).map(async f=>{var h,b,O;const S=(h=n==null?void 0:n.names)===null||h===void 0?void 0:h[f],j=await un(D(t,f),e[f],{name:(S==null?void 0:S.name)||f,label:S==null?void 0:S.label,values:t,bails:(O=(b=n==null?void 0:n.bailsMap)===null||b===void 0?void 0:b[f])!==null&&O!==void 0?O:!0});return Object.assign(Object.assign({},j),{path:f})});let o=!0;const c=await Promise.all(l),m={},d={};for(const f of c)m[f.path]={valid:f.valid,errors:f.errors},f.valid||(o=!1,d[f.path]=f.errors[0]);return{valid:o,results:m,errors:d}}let hn=0;const oe=["bails","fieldsCount","id","multiple","type","validate"];function ct(e){const t=I(e==null?void 0:e.initialValues)||{},n=I(e==null?void 0:e.validationSchema);return n&&ee(n)&&R(n.cast)?E(n.cast(t)||{}):E(t)}function pn(e){var t;const n=hn++;let i=0;const l=w(!1),o=w(!1),c=w(0),m=[],d=Ne(ct(e)),f=w([]),h=w({}),b=w({}),O=Qt(()=>{b.value=f.value.reduce((a,r)=>(a[ye(G(r.path))]=r,a),{})});function S(a,r){const u=F(a);if(!u){typeof a=="string"&&(h.value[ye(a)]=Ze(r));return}if(typeof a=="string"){const s=ye(a);h.value[s]&&delete h.value[s]}u.errors=Ze(r),u.valid=!u.errors.length}function j(a){U(a).forEach(r=>{S(r,a[r])})}e!=null&&e.initialErrors&&j(e.initialErrors);const W=C(()=>{const a=f.value.reduce((r,u)=>(u.errors.length&&(r[u.path]=u.errors),r),{});return Object.assign(Object.assign({},h.value),a)}),K=C(()=>U(W.value).reduce((a,r)=>{const u=W.value[r];return u!=null&&u.length&&(a[r]=u[0]),a},{})),te=C(()=>f.value.reduce((a,r)=>(a[r.path]={name:r.path||"",label:r.label||""},a),{})),de=C(()=>f.value.reduce((a,r)=>{var u;return a[r.path]=(u=r.bails)!==null&&u!==void 0?u:!0,a},{})),ne=Object.assign({},(e==null?void 0:e.initialErrors)||{}),fe=(t=e==null?void 0:e.keepValuesOnUnmount)!==null&&t!==void 0?t:!1,{initialValues:z,originalInitialValues:J,setInitialValues:ve}=gn(f,d,e),me=yn(f,d,J,K),re=C(()=>f.value.reduce((a,r)=>{const u=D(d,r.path);return Y(a,r.path,u),a},{})),B=e==null?void 0:e.validationSchema;function q(a,r){var u,s;const p=C(()=>D(z.value,G(a))),v=b.value[G(a)];if(v){((r==null?void 0:r.type)==="checkbox"||(r==null?void 0:r.type)==="radio")&&(v.multiple=!0);const P=i++;return Array.isArray(v.id)?v.id.push(P):v.id=[v.id,P],v.fieldsCount++,v.__flags.pendingUnmount[P]=!1,v}const y=C(()=>D(d,G(a))),V=G(a),g=i++,_=Ne({id:g,path:a,touched:!1,pending:!1,valid:!0,validated:!!(!((u=ne[V])===null||u===void 0)&&u.length),initialValue:p,errors:Ft([]),bails:(s=r==null?void 0:r.bails)!==null&&s!==void 0?s:!1,label:r==null?void 0:r.label,type:(r==null?void 0:r.type)||"default",value:y,multiple:!1,__flags:{pendingUnmount:{[g]:!1}},fieldsCount:1,validate:r==null?void 0:r.validate,dirty:C(()=>!se(I(y),I(p)))});return f.value.push(_),b.value[V]=_,O(),K.value[V]&&!ne[V]&&Q(()=>{H(V,{mode:"silent"})}),Be(a)&&Ie(a,P=>{O();const le=E(y.value);b.value[P]=_,Q(()=>{Y(d,P,le)})}),_}const _e=Xe(qe,5),he=Xe(qe,5),ae=Jt(async a=>await a==="silent"?_e():he(),(a,[r])=>{const u=U(M.errorBag.value);return[...new Set([...U(a.results),...f.value.map(p=>p.path),...u])].sort().reduce((p,v)=>{const y=v,V=F(y)||k(y),g=(a.results[y]||{errors:[]}).errors,_={errors:g,valid:!g.length};return p.results[y]=_,_.valid||(p.errors[y]=_.errors[0]),V&&h.value[y]&&delete h.value[y],V?(V.valid=_.valid,r==="silent"||r==="validated-only"&&!V.validated||S(V,_.errors),p):(S(y,g),p)},{valid:a.valid,results:{},errors:{}})});function x(a){f.value.forEach(a)}function F(a){const r=typeof a=="string"?ye(a):a;return typeof r=="string"?b.value[r]:r}function k(a){return f.value.filter(u=>a.startsWith(u.path)).reduce((u,s)=>u?s.path.length>u.path.length?s:u:s,void 0)}let N=[],L;function Oe(a){return N.push(a),L||(L=Q(()=>{[...N].sort().reverse().forEach(u=>{Qe(d,u)}),N=[],L=null})),L}function ze(a){return function(u,s){return function(v){return v instanceof Event&&(v.preventDefault(),v.stopPropagation()),x(y=>y.touched=!0),l.value=!0,c.value++,ie().then(y=>{const V=E(d);if(y.valid&&typeof u=="function"){const g=E(re.value);let _=a?g:V;return y.values&&(_=y.values),u(_,{evt:v,controlledValues:g,setErrors:j,setFieldError:S,setTouched:Ee,setFieldTouched:pe,setValues:Se,setFieldValue:$,resetForm:je,resetField:Le})}!y.valid&&typeof s=="function"&&s({values:V,evt:v,errors:y.errors,results:y.results})}).then(y=>(l.value=!1,y),y=>{throw l.value=!1,y})}}}const Ve=ze(!1);Ve.withControlled=ze(!0);function dt(a,r){const u=f.value.findIndex(p=>p.path===a),s=f.value[u];if(!(u===-1||!s)){if(Q(()=>{H(a,{mode:"silent",warn:!1})}),s.multiple&&s.fieldsCount&&s.fieldsCount--,Array.isArray(s.id)){const p=s.id.indexOf(r);p>=0&&s.id.splice(p,1),delete s.__flags.pendingUnmount[r]}(!s.multiple||s.fieldsCount<=0)&&(f.value.splice(u,1),$e(a),O(),delete b.value[a])}}function ft(a){return x(r=>{r.path.startsWith(a)&&U(r.__flags.pendingUnmount).forEach(u=>{r.__flags.pendingUnmount[u]=!0})})}const M={formId:n,values:d,controlledValues:re,errorBag:W,errors:K,schema:B,submitCount:c,meta:me,isSubmitting:l,isValidating:o,fieldArrays:m,keepValuesOnUnmount:fe,validateSchema:I(B)?ae:void 0,validate:ie,setFieldError:S,validateField:H,setFieldValue:$,setValues:Se,setErrors:j,setFieldTouched:pe,setTouched:Ee,resetForm:je,resetField:Le,handleSubmit:Ve,stageInitialValue:yt,unsetInitialValue:$e,setFieldInitialValue:Ae,useFieldModel:vt,createPathState:q,getPathState:F,unsetPathValue:Oe,removePathState:dt,initialValues:z,getAllPathStates:()=>f.value,markForUnmount:ft,isFieldTouched:mt,isFieldDirty:ht,isFieldValid:pt};function $(a,r,u=!0){const s=E(r),p=typeof a=="string"?a:a.path;F(p)||q(p),Y(d,p,s),u&&H(p)}function Se(a,r=!0){ge(d,a),m.forEach(u=>u&&u.reset()),r&&ie()}function xe(a){const r=F(I(a))||q(a);return C({get(){return r.value},set(u){const s=I(a);$(s,u,!1),r.validated=!0,r.pending=!0,H(s).then(()=>{r.pending=!1})}})}function vt(a){return Array.isArray(a)?a.map(xe):xe(a)}function pe(a,r){const u=F(a);u&&(u.touched=r)}function mt(a){var r;return!!(!((r=F(a))===null||r===void 0)&&r.touched)}function ht(a){var r;return!!(!((r=F(a))===null||r===void 0)&&r.dirty)}function pt(a){var r;return!!(!((r=F(a))===null||r===void 0)&&r.valid)}function Ee(a){if(typeof a=="boolean"){x(r=>{r.touched=a});return}U(a).forEach(r=>{pe(r,!!a[r])})}function Le(a,r){var u;const s=r&&"value"in r?r.value:D(z.value,a);Ae(a,E(s)),$(a,s,!1),pe(a,(u=r==null?void 0:r.touched)!==null&&u!==void 0?u:!1),S(a,(r==null?void 0:r.errors)||[])}function je(a){let r=a!=null&&a.values?a.values:J.value;r=ee(B)&&R(B.cast)?B.cast(r):r,ve(r),x(u=>{var s;u.validated=!1,u.touched=((s=a==null?void 0:a.touched)===null||s===void 0?void 0:s[u.path])||!1,$(u.path,D(r,u.path),!1),S(u.path,void 0)}),Se(r,!1),j((a==null?void 0:a.errors)||{}),c.value=(a==null?void 0:a.submitCount)||0,Q(()=>{ie({mode:"silent"})})}async function ie(a){const r=(a==null?void 0:a.mode)||"force";if(r==="force"&&x(v=>v.validated=!0),M.validateSchema)return M.validateSchema(r);o.value=!0;const u=await Promise.all(f.value.map(v=>v.validate?v.validate(a).then(y=>({key:v.path,valid:y.valid,errors:y.errors})):Promise.resolve({key:v.path,valid:!0,errors:[]})));o.value=!1;const s={},p={};for(const v of u)s[v.key]={valid:v.valid,errors:v.errors},v.errors.length&&(p[v.key]=v.errors[0]);return{valid:u.every(v=>v.valid),results:s,errors:p}}async function H(a,r){var u;const s=F(a);if(s&&(s.validated=!0),B){const{results:p}=await ae((r==null?void 0:r.mode)||"validated-only");return p[a]||{errors:[],valid:!0}}return s!=null&&s.validate?s.validate(r):(!s&&(u=r==null?void 0:r.warn),Promise.resolve({errors:[],valid:!0}))}function $e(a){Qe(z.value,a)}function yt(a,r,u=!1){Ae(a,r),Y(d,a,r),u&&!(e!=null&&e.initialValues)&&Y(J.value,a,E(r))}function Ae(a,r){Y(z.value,a,E(r))}async function qe(){const a=I(B);if(!a)return{valid:!0,results:{},errors:{}};o.value=!0;const r=at(a)||ee(a)?await vn(a,d):await mn(a,d,{names:te.value,bailsMap:de.value});return o.value=!1,r}const gt=Ve((a,{evt:r})=>{lt(r)&&r.target.submit()});Et(()=>{if(e!=null&&e.initialErrors&&j(e.initialErrors),e!=null&&e.initialTouched&&Ee(e.initialTouched),e!=null&&e.validateOnMount){ie();return}M.validateSchema&&M.validateSchema("silent")}),Be(B)&&Ie(B,()=>{var a;(a=M.validateSchema)===null||a===void 0||a.call(M,"validated-only")}),jt($t,M);function bt(a,r){const u=F(G(a))||q(a),s=()=>R(r)?r(ue(u,oe)):r||{};function p(){var V;u.touched=!0,((V=s().validateOnBlur)!==null&&V!==void 0?V:X().validateOnBlur)&&H(u.path)}function v(V){var g;const _=(g=s().validateOnModelUpdate)!==null&&g!==void 0?g:X().validateOnModelUpdate;$(u.path,V,_)}return C(()=>{if(R(r)){const _=r(u),P=_.model||"modelValue";return Object.assign({onBlur:p,[P]:u.value,[`onUpdate:${P}`]:v},_.props||{})}const V=(r==null?void 0:r.model)||"modelValue",g={onBlur:p,[V]:u.value,[`onUpdate:${V}`]:v};return r!=null&&r.mapProps?Object.assign(Object.assign({},g),r.mapProps(ue(u,oe))):g})}function _t(a,r){const u=F(G(a))||q(a),s=()=>R(r)?r(ue(u,oe)):r||{};function p(){var g;u.touched=!0,((g=s().validateOnBlur)!==null&&g!==void 0?g:X().validateOnBlur)&&H(u.path)}function v(g){var _;const P=et(g),le=(_=s().validateOnInput)!==null&&_!==void 0?_:X().validateOnInput;$(u.path,P,le)}function y(g){var _;const P=et(g),le=(_=s().validateOnChange)!==null&&_!==void 0?_:X().validateOnChange;$(u.path,P,le)}return C(()=>{const g={value:u.value,onChange:y,onInput:v,onBlur:p};return R(r)?Object.assign(Object.assign({},g),r(ue(u,oe)).attrs||{}):r!=null&&r.mapAttrs?Object.assign(Object.assign({},g),r.mapAttrs(ue(u,oe))):g})}return Object.assign(Object.assign({},M),{values:At(d),handleReset:()=>je(),submitForm:gt,defineComponentBinds:bt,defineInputBinds:_t})}function yn(e,t,n,i){const l={touched:"some",pending:"some",valid:"every"},o=C(()=>!se(t,I(n)));function c(){const d=e.value;return U(l).reduce((f,h)=>{const b=l[h];return f[h]=d[b](O=>O[h]),f},{})}const m=Ne(c());return wt(()=>{const d=c();m.touched=d.touched,m.valid=d.valid,m.pending=d.pending}),C(()=>Object.assign(Object.assign({initialValues:I(n)},m),{valid:m.valid&&!U(i.value).length,dirty:o.value}))}function gn(e,t,n){const i=ct(n),l=n==null?void 0:n.initialValues,o=w(i),c=w(E(i));function m(d,f=!1){o.value=ge(E(o.value)||{},E(d)),c.value=ge(E(c.value)||{},E(d)),f&&e.value.forEach(h=>{if(h.touched)return;const O=D(o.value,h.path);Y(t,h.path,E(O))})}return Be(l)&&Ie(l,d=>{d&&m(d,!0)},{deep:!0}),{initialValues:o,originalInitialValues:c,setInitialValues:m}}const bn=ke({name:"Form",inheritAttrs:!1,props:{as:{type:String,default:"form"},validationSchema:{type:Object,default:void 0},initialValues:{type:Object,default:void 0},initialErrors:{type:Object,default:void 0},initialTouched:{type:Object,default:void 0},validateOnMount:{type:Boolean,default:!1},onSubmit:{type:Function,default:void 0},onInvalidSubmit:{type:Function,default:void 0},keepValues:{type:Boolean,default:!1}},setup(e,t){const n=we(e,"initialValues"),i=we(e,"validationSchema"),l=we(e,"keepValues"),{errors:o,errorBag:c,values:m,meta:d,isSubmitting:f,isValidating:h,submitCount:b,controlledValues:O,validate:S,validateField:j,handleReset:W,resetForm:K,handleSubmit:te,setErrors:de,setFieldError:ne,setFieldValue:fe,setValues:z,setFieldTouched:J,setTouched:ve,resetField:me}=pn({validationSchema:i.value?i:void 0,initialValues:n,initialErrors:e.initialErrors,initialTouched:e.initialTouched,validateOnMount:e.validateOnMount,keepValuesOnUnmount:l}),re=te((k,{evt:N})=>{lt(N)&&N.target.submit()},e.onInvalidSubmit),B=e.onSubmit?te(e.onSubmit,e.onInvalidSubmit):re;function q(k){Ue(k)&&k.preventDefault(),W(),typeof t.attrs.onReset=="function"&&t.attrs.onReset()}function _e(k,N){return te(typeof k=="function"&&!N?k:N,e.onInvalidSubmit)(k)}function he(){return E(m)}function ae(){return E(d.value)}function x(){return E(o.value)}function F(){return{meta:d.value,errors:o.value,errorBag:c.value,values:m,isSubmitting:f.value,isValidating:h.value,submitCount:b.value,controlledValues:O.value,validate:S,validateField:j,handleSubmit:_e,handleReset:W,submitForm:re,setErrors:de,setFieldError:ne,setFieldValue:fe,setValues:z,setFieldTouched:J,setTouched:ve,resetForm:K,resetField:me,getValues:he,getMeta:ae,getErrors:x}}return t.expose({setFieldError:ne,setErrors:de,setFieldValue:fe,setValues:z,setFieldTouched:J,setTouched:ve,resetForm:K,validate:S,validateField:j,resetField:me,getValues:he,getMeta:ae,getErrors:x}),function(){const N=e.as==="form"?e.as:Vt(e.as),L=Xt(N,t,F);if(!e.as)return L;const Oe=e.as==="form"?{novalidate:!0}:{};return St(N,Object.assign(Object.assign(Object.assign({},Oe),t.attrs),{onSubmit:B,onReset:q}),L)}}}),_n=bn,On={class:"d-sm-flex align-center mt-2 mb-7 mb-sm-0"},Vn={key:0,class:"mt-2"},Sn=ke({__name:"AuthLogin",setup(e){const t=w(!1),n=w(!1),i=w(!1),l=w(""),o=w(""),c=w([h=>!!h||"需要填写:密码"]),m=w([h=>!!h||"需要填写:用户名"]),d=w("");function f(h,{setErrors:b}){return l.value!=""&&(l.value=Mt(l.value)),It().login(o.value,l.value).catch(S=>{d.value=S.message,b({apiError:S.message})})}return(h,b)=>(Re(),nt(I(_n),{onSubmit:f,class:"mt-7 loginForm"},{default:T(({errors:O,isSubmitting:S})=>[A(He,{modelValue:o.value,"onUpdate:modelValue":b[0]||(b[0]=j=>o.value=j),rules:m.value,label:"用户名",class:"mt-4 mb-8",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),A(He,{modelValue:l.value,"onUpdate:modelValue":b[1]||(b[1]=j=>l.value=j),rules:c.value,label:"密码",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":b[2]||(b[2]=j=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),ce("div",On,[A(Pt,{modelValue:t.value,"onUpdate:modelValue":b[3]||(b[3]=j=>t.value=j),rules:[j=>!!j||"You must agree to continue!"],label:"记住密码",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"])]),A(Ct,{color:"secondary",loading:S,block:"",class:"mt-2",variant:"flat",size:"large",disabled:n.value,type:"submit"},{default:T(()=>[Ge(" 登录")]),_:2},1032,["loading","disabled"]),O.apiError?(Re(),Tt("div",Vn,[A(Nt,{color:"error"},{default:T(()=>[Ge(Ye(O.apiError),1)]),_:2},1024)])):Bt("",!0),ce("span",null,Ye(d.value),1)]),_:1}))}});const En={class:"pa-7 pa-sm-12"},jn=ce("h2",{class:"text-secondary text-h2 mt-8"},"欢迎回来。",-1),An=ce("h4",{class:"text-disabled text-h4 mt-3"},"输入凭证以继续。",-1),Tn=ke({__name:"LoginPage",setup(e){return(t,n)=>(Re(),nt(Pe,{class:"h-100vh","no-gutters":""},{default:T(()=>[A(Fe,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:T(()=>[A(Rt,null,{default:T(()=>[ce("div",En,[A(Pe,{justify:"center"},{default:T(()=>[A(Fe,{cols:"12",lg:"10",xl:"6",md:"7"},{default:T(()=>[A(We,{elevation:"0",class:"loginBox"},{default:T(()=>[A(We,{variant:"outlined"},{default:T(()=>[A(kt,{class:"pa-9"},{default:T(()=>[A(Pe,null,{default:T(()=>[A(Fe,{cols:"12",class:"text-center"},{default:T(()=>[A(Ot),jn,An]),_:1})]),_:1}),A(Sn)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{Tn as default}; diff --git a/dashboard/dist/assets/LoginPage-ca95c6ab.js b/dashboard/dist/assets/LoginPage-ca95c6ab.js new file mode 100644 index 00000000..ee0a0510 --- /dev/null +++ b/dashboard/dist/assets/LoginPage-ca95c6ab.js @@ -0,0 +1,5 @@ +import{a as _t,_ as Ot}from"./md5-6c2e1fd5.js";import{q as Me,a8 as we,r as Vt,a9 as St,B as N,aa as Ne,$ as F,x as I,ab as Q,ac as Et,N as Be,ad as Ie,ae as At,af as jt,ag as wt,ah as q,s as Ft,o as Re,b as tt,w as P,c as A,M as He,a as qe,D as Pt,l as Tt,t as Ct,ai as Nt,g as Bt,u as ge,T as It,J as Rt,K as Fe,L as Pe,G as Ke,I as Mt}from"./index-7e5a38e4.js";/** + * vee-validate v4.11.3 + * (c) 2023 Abdelrahman Awad + * @license MIT + */function R(e){return typeof e=="function"}function nt(e){return e==null}const Z=e=>e!==null&&!!e&&typeof e=="object"&&!Array.isArray(e);function ke(e){return Number(e)>=0}function kt(e){return typeof e=="object"&&e!==null}function Ut(e){return e==null?e===void 0?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}function Dt(e){if(!kt(e)||Ut(e)!=="[object Object]")return!1;if(Object.getPrototypeOf(e)===null)return!0;let t=e;for(;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function ye(e,t){return Object.keys(t).forEach(n=>{if(Dt(t[n])){e[n]||(e[n]={}),ye(e[n],t[n]);return}e[n]=t[n]}),e}function pe(e){const t=e.split(".");if(!t.length)return"";let n=String(t[0]);for(let i=1;iqt(l)&&o in l?l[o]:n,e):n}function K(e,t,n){if(be(t)){e[De(t)]=n;return}const i=t.split(/\.|\[(\d+)\]/).filter(Boolean);let l=e;for(let o=0;oD(e,n.slice(0,c).join(".")));for(let o=l.length-1;o>=0;o--)if(Kt(l[o])){if(o===0){Te(e,n[0]);continue}Te(l[o-1],n[o-1])}}function U(e){return Object.keys(e)}function Qe(e,t=0){let n=null,i=[];return function(...l){return n&&clearTimeout(n),n=setTimeout(()=>{const o=e(...l);i.forEach(c=>c(o)),i=[]},t),new Promise(o=>i.push(o))}}function Yt(e,t){let n;return async function(...l){const o=e(...l);n=o;const c=await o;return o!==n||(n=void 0,t(c,l)),c}}function Xe(e){return Array.isArray(e)?e:e?[e]:[]}function ue(e,t){const n={};for(const i in e)t.includes(i)||(n[i]=e[i]);return n}function Jt(e){let t=null,n=[];return function(...i){const l=Q(()=>{if(t!==l)return;const o=e(...i);n.forEach(c=>c(o)),n=[],t=null});return t=l,new Promise(o=>n.push(o))}}const Qt=(e,t,n)=>t.slots.default?typeof e=="string"||!e?t.slots.default(n()):{default:()=>{var i,l;return(l=(i=t.slots).default)===null||l===void 0?void 0:l.call(i,n())}}:t.slots.default;function Ce(e){if(lt(e))return e._value}function lt(e){return"_value"in e}function Xt(e){return e.type==="number"||e.type==="range"?Number.isNaN(e.valueAsNumber)?e.value:e.valueAsNumber:e.value}function Ze(e){if(!Ue(e))return e;const t=e.target;if(Ht(t.type)&<(t))return Ce(t);if(t.type==="file"&&t.files){const n=Array.from(t.files);return t.multiple?n:n[0]}if(Wt(t))return Array.from(t.options).filter(n=>n.selected&&!n.disabled).map(Ce);if(at(t)){const n=Array.from(t.options).find(i=>i.selected);return n?Ce(n):t.value}return Xt(t)}function Zt(e){const t={};return Object.defineProperty(t,"_$$isNormalized",{value:!0,writable:!1,enumerable:!1,configurable:!1}),e?Z(e)&&e._$$isNormalized?e:Z(e)?Object.keys(e).reduce((n,i)=>{const l=en(e[i]);return e[i]!==!1&&(n[i]=et(l)),n},t):typeof e!="string"?t:e.split("|").reduce((n,i)=>{const l=tn(i);return l.name&&(n[l.name]=et(l.params)),n},t):t}function en(e){return e===!0?[]:Array.isArray(e)||Z(e)?e:[e]}function et(e){const t=n=>typeof n=="string"&&n[0]==="@"?nn(n.slice(1)):n;return Array.isArray(e)?e.map(t):e instanceof RegExp?[e]:Object.keys(e).reduce((n,i)=>(n[i]=t(e[i]),n),{})}const tn=e=>{let t=[];const n=e.split(":")[0];return e.includes(":")&&(t=e.split(":").slice(1).join(":").split(",")),{name:n,params:t}};function nn(e){const t=n=>D(n,e)||n[e];return t.__locatorRef=e,t}const rn={generateMessage:({field:e})=>`${e} is not valid.`,bails:!0,validateOnBlur:!0,validateOnChange:!0,validateOnInput:!1,validateOnModelUpdate:!0};let an=Object.assign({},rn);const X=()=>an;async function ln(e,t,n={}){const i=n==null?void 0:n.bails,l={name:(n==null?void 0:n.name)||"{field}",rules:t,label:n==null?void 0:n.label,bails:i??!0,formData:(n==null?void 0:n.values)||{}},c=(await un(l,e)).errors;return{errors:c,valid:!c.length}}async function un(e,t){if(ee(e.rules)||rt(e.rules))return sn(t,e.rules);if(R(e.rules)||Array.isArray(e.rules)){const c={field:e.label||e.name,name:e.name,label:e.label,form:e.formData,value:t},v=Array.isArray(e.rules)?e.rules:[e.rules],d=v.length,f=[];for(let p=0;p{const d=v.path||"";return c[d]||(c[d]={errors:[],path:d}),c[d].errors.push(...v.errors),c},{});return{errors:Object.values(o)}}}}}async function sn(e,t){const i=await(ee(t)?t:ut(t)).parse(e),l=[];for(const o of i.errors)o.errors.length&&l.push(...o.errors);return{errors:l}}async function cn(e,t,n){const i=$t(n.name);if(!i)throw new Error(`No such validator '${n.name}' exists.`);const l=dn(n.params,e.formData),o={field:e.label||e.name,name:e.name,label:e.label,value:t,form:e.formData,rule:Object.assign(Object.assign({},n),{params:l})},c=await i(t,l,o);return typeof c=="string"?{error:c}:{error:c?void 0:ot(o)}}function ot(e){const t=X().generateMessage;return t?t(e):"Field is invalid"}function dn(e,t){const n=i=>Gt(i)?i(t):i;return Array.isArray(e)?e.map(n):Object.keys(e).reduce((i,l)=>(i[l]=n(e[l]),i),{})}async function fn(e,t){const i=await(ee(e)?e:ut(e)).parse(t),l={},o={};for(const c of i.errors){const v=c.errors,d=(c.path||"").replace(/\["(\d+)"\]/g,(f,p)=>`[${p}]`);l[d]={valid:!v.length,errors:v},v.length&&(o[d]=v[0])}return{valid:!i.errors.length,results:l,errors:o,values:i.value}}async function vn(e,t,n){const l=U(e).map(async f=>{var p,E,V;const S=(p=n==null?void 0:n.names)===null||p===void 0?void 0:p[f],T=await ln(D(t,f),e[f],{name:(S==null?void 0:S.name)||f,label:S==null?void 0:S.label,values:t,bails:(V=(E=n==null?void 0:n.bailsMap)===null||E===void 0?void 0:E[f])!==null&&V!==void 0?V:!0});return Object.assign(Object.assign({},T),{path:f})});let o=!0;const c=await Promise.all(l),v={},d={};for(const f of c)v[f.path]={valid:f.valid,errors:f.errors},f.valid||(o=!1,d[f.path]=f.errors[0]);return{valid:o,results:v,errors:d}}let mn=0;const oe=["bails","fieldsCount","id","multiple","type","validate"];function st(e){const t=I(e==null?void 0:e.initialValues)||{},n=I(e==null?void 0:e.validationSchema);return n&&ee(n)&&R(n.cast)?O(n.cast(t)||{}):O(t)}function hn(e){var t;const n=mn++;let i=0;const l=N(!1),o=N(!1),c=N(0),v=[],d=Ne(st(e)),f=N([]),p=N({}),E=N({}),V=Jt(()=>{E.value=f.value.reduce((a,r)=>(a[pe(q(r.path))]=r,a),{})});function S(a,r){const u=j(a);if(!u){typeof a=="string"&&(p.value[pe(a)]=Xe(r));return}if(typeof a=="string"){const s=pe(a);p.value[s]&&delete p.value[s]}u.errors=Xe(r),u.valid=!u.errors.length}function T(a){U(a).forEach(r=>{S(r,a[r])})}e!=null&&e.initialErrors&&T(e.initialErrors);const W=F(()=>{const a=f.value.reduce((r,u)=>(u.errors.length&&(r[u.path]=u.errors),r),{});return Object.assign(Object.assign({},p.value),a)}),Y=F(()=>U(W.value).reduce((a,r)=>{const u=W.value[r];return u!=null&&u.length&&(a[r]=u[0]),a},{})),te=F(()=>f.value.reduce((a,r)=>(a[r.path]={name:r.path||"",label:r.label||""},a),{})),ce=F(()=>f.value.reduce((a,r)=>{var u;return a[r.path]=(u=r.bails)!==null&&u!==void 0?u:!0,a},{})),ne=Object.assign({},(e==null?void 0:e.initialErrors)||{}),de=(t=e==null?void 0:e.keepValuesOnUnmount)!==null&&t!==void 0?t:!1,{initialValues:z,originalInitialValues:J,setInitialValues:fe}=yn(f,d,e),ve=pn(f,d,J,Y),re=F(()=>f.value.reduce((a,r)=>{const u=D(d,r.path);return K(a,r.path,u),a},{})),B=e==null?void 0:e.validationSchema;function G(a,r){var u,s;const h=F(()=>D(z.value,q(a))),m=E.value[q(a)];if(m){((r==null?void 0:r.type)==="checkbox"||(r==null?void 0:r.type)==="radio")&&(m.multiple=!0);const w=i++;return Array.isArray(m.id)?m.id.push(w):m.id=[m.id,w],m.fieldsCount++,m.__flags.pendingUnmount[w]=!1,m}const y=F(()=>D(d,q(a))),_=q(a),g=i++,b=Ne({id:g,path:a,touched:!1,pending:!1,valid:!0,validated:!!(!((u=ne[_])===null||u===void 0)&&u.length),initialValue:h,errors:Ft([]),bails:(s=r==null?void 0:r.bails)!==null&&s!==void 0?s:!1,label:r==null?void 0:r.label,type:(r==null?void 0:r.type)||"default",value:y,multiple:!1,__flags:{pendingUnmount:{[g]:!1}},fieldsCount:1,validate:r==null?void 0:r.validate,dirty:F(()=>!se(I(y),I(h)))});return f.value.push(b),E.value[_]=b,V(),Y.value[_]&&!ne[_]&&Q(()=>{H(_,{mode:"silent"})}),Be(a)&&Ie(a,w=>{V();const le=O(y.value);E.value[w]=b,Q(()=>{K(d,w,le)})}),b}const _e=Qe(Ge,5),me=Qe(Ge,5),ae=Yt(async a=>await a==="silent"?_e():me(),(a,[r])=>{const u=U(k.errorBag.value);return[...new Set([...U(a.results),...f.value.map(h=>h.path),...u])].sort().reduce((h,m)=>{const y=m,_=j(y)||M(y),g=(a.results[y]||{errors:[]}).errors,b={errors:g,valid:!g.length};return h.results[y]=b,b.valid||(h.errors[y]=b.errors[0]),_&&p.value[y]&&delete p.value[y],_?(_.valid=b.valid,r==="silent"||r==="validated-only"&&!_.validated||S(_,b.errors),h):(S(y,g),h)},{valid:a.valid,results:{},errors:{}})});function $(a){f.value.forEach(a)}function j(a){const r=typeof a=="string"?pe(a):a;return typeof r=="string"?E.value[r]:r}function M(a){return f.value.filter(u=>a.startsWith(u.path)).reduce((u,s)=>u?s.path.length>u.path.length?s:u:s,void 0)}let C=[],L;function Oe(a){return C.push(a),L||(L=Q(()=>{[...C].sort().reverse().forEach(u=>{Je(d,u)}),C=[],L=null})),L}function ze(a){return function(u,s){return function(m){return m instanceof Event&&(m.preventDefault(),m.stopPropagation()),$(y=>y.touched=!0),l.value=!0,c.value++,ie().then(y=>{const _=O(d);if(y.valid&&typeof u=="function"){const g=O(re.value);let b=a?g:_;return y.values&&(b=y.values),u(b,{evt:m,controlledValues:g,setErrors:T,setFieldError:S,setTouched:Ee,setFieldTouched:he,setValues:Se,setFieldValue:x,resetForm:Ae,resetField:Le})}!y.valid&&typeof s=="function"&&s({values:_,evt:m,errors:y.errors,results:y.results})}).then(y=>(l.value=!1,y),y=>{throw l.value=!1,y})}}}const Ve=ze(!1);Ve.withControlled=ze(!0);function ct(a,r){const u=f.value.findIndex(h=>h.path===a),s=f.value[u];if(!(u===-1||!s)){if(Q(()=>{H(a,{mode:"silent",warn:!1})}),s.multiple&&s.fieldsCount&&s.fieldsCount--,Array.isArray(s.id)){const h=s.id.indexOf(r);h>=0&&s.id.splice(h,1),delete s.__flags.pendingUnmount[r]}(!s.multiple||s.fieldsCount<=0)&&(f.value.splice(u,1),xe(a),V(),delete E.value[a])}}function dt(a){return $(r=>{r.path.startsWith(a)&&U(r.__flags.pendingUnmount).forEach(u=>{r.__flags.pendingUnmount[u]=!0})})}const k={formId:n,values:d,controlledValues:re,errorBag:W,errors:Y,schema:B,submitCount:c,meta:ve,isSubmitting:l,isValidating:o,fieldArrays:v,keepValuesOnUnmount:de,validateSchema:I(B)?ae:void 0,validate:ie,setFieldError:S,validateField:H,setFieldValue:x,setValues:Se,setErrors:T,setFieldTouched:he,setTouched:Ee,resetForm:Ae,resetField:Le,handleSubmit:Ve,stageInitialValue:pt,unsetInitialValue:xe,setFieldInitialValue:je,useFieldModel:ft,createPathState:G,getPathState:j,unsetPathValue:Oe,removePathState:ct,initialValues:z,getAllPathStates:()=>f.value,markForUnmount:dt,isFieldTouched:vt,isFieldDirty:mt,isFieldValid:ht};function x(a,r,u=!0){const s=O(r),h=typeof a=="string"?a:a.path;j(h)||G(h),K(d,h,s),u&&H(h)}function Se(a,r=!0){ye(d,a),v.forEach(u=>u&&u.reset()),r&&ie()}function $e(a){const r=j(I(a))||G(a);return F({get(){return r.value},set(u){const s=I(a);x(s,u,!1),r.validated=!0,r.pending=!0,H(s).then(()=>{r.pending=!1})}})}function ft(a){return Array.isArray(a)?a.map($e):$e(a)}function he(a,r){const u=j(a);u&&(u.touched=r)}function vt(a){var r;return!!(!((r=j(a))===null||r===void 0)&&r.touched)}function mt(a){var r;return!!(!((r=j(a))===null||r===void 0)&&r.dirty)}function ht(a){var r;return!!(!((r=j(a))===null||r===void 0)&&r.valid)}function Ee(a){if(typeof a=="boolean"){$(r=>{r.touched=a});return}U(a).forEach(r=>{he(r,!!a[r])})}function Le(a,r){var u;const s=r&&"value"in r?r.value:D(z.value,a);je(a,O(s)),x(a,s,!1),he(a,(u=r==null?void 0:r.touched)!==null&&u!==void 0?u:!1),S(a,(r==null?void 0:r.errors)||[])}function Ae(a){let r=a!=null&&a.values?a.values:J.value;r=ee(B)&&R(B.cast)?B.cast(r):r,fe(r),$(u=>{var s;u.validated=!1,u.touched=((s=a==null?void 0:a.touched)===null||s===void 0?void 0:s[u.path])||!1,x(u.path,D(r,u.path),!1),S(u.path,void 0)}),Se(r,!1),T((a==null?void 0:a.errors)||{}),c.value=(a==null?void 0:a.submitCount)||0,Q(()=>{ie({mode:"silent"})})}async function ie(a){const r=(a==null?void 0:a.mode)||"force";if(r==="force"&&$(m=>m.validated=!0),k.validateSchema)return k.validateSchema(r);o.value=!0;const u=await Promise.all(f.value.map(m=>m.validate?m.validate(a).then(y=>({key:m.path,valid:y.valid,errors:y.errors})):Promise.resolve({key:m.path,valid:!0,errors:[]})));o.value=!1;const s={},h={};for(const m of u)s[m.key]={valid:m.valid,errors:m.errors},m.errors.length&&(h[m.key]=m.errors[0]);return{valid:u.every(m=>m.valid),results:s,errors:h}}async function H(a,r){var u;const s=j(a);if(s&&(s.validated=!0),B){const{results:h}=await ae((r==null?void 0:r.mode)||"validated-only");return h[a]||{errors:[],valid:!0}}return s!=null&&s.validate?s.validate(r):(!s&&(u=r==null?void 0:r.warn),Promise.resolve({errors:[],valid:!0}))}function xe(a){Je(z.value,a)}function pt(a,r,u=!1){je(a,r),K(d,a,r),u&&!(e!=null&&e.initialValues)&&K(J.value,a,O(r))}function je(a,r){K(z.value,a,O(r))}async function Ge(){const a=I(B);if(!a)return{valid:!0,results:{},errors:{}};o.value=!0;const r=rt(a)||ee(a)?await fn(a,d):await vn(a,d,{names:te.value,bailsMap:ce.value});return o.value=!1,r}const yt=Ve((a,{evt:r})=>{it(r)&&r.target.submit()});Et(()=>{if(e!=null&&e.initialErrors&&T(e.initialErrors),e!=null&&e.initialTouched&&Ee(e.initialTouched),e!=null&&e.validateOnMount){ie();return}k.validateSchema&&k.validateSchema("silent")}),Be(B)&&Ie(B,()=>{var a;(a=k.validateSchema)===null||a===void 0||a.call(k,"validated-only")}),At(Lt,k);function gt(a,r){const u=j(q(a))||G(a),s=()=>R(r)?r(ue(u,oe)):r||{};function h(){var _;u.touched=!0,((_=s().validateOnBlur)!==null&&_!==void 0?_:X().validateOnBlur)&&H(u.path)}function m(_){var g;const b=(g=s().validateOnModelUpdate)!==null&&g!==void 0?g:X().validateOnModelUpdate;x(u.path,_,b)}return F(()=>{if(R(r)){const b=r(u),w=b.model||"modelValue";return Object.assign({onBlur:h,[w]:u.value,[`onUpdate:${w}`]:m},b.props||{})}const _=(r==null?void 0:r.model)||"modelValue",g={onBlur:h,[_]:u.value,[`onUpdate:${_}`]:m};return r!=null&&r.mapProps?Object.assign(Object.assign({},g),r.mapProps(ue(u,oe))):g})}function bt(a,r){const u=j(q(a))||G(a),s=()=>R(r)?r(ue(u,oe)):r||{};function h(){var g;u.touched=!0,((g=s().validateOnBlur)!==null&&g!==void 0?g:X().validateOnBlur)&&H(u.path)}function m(g){var b;const w=Ze(g),le=(b=s().validateOnInput)!==null&&b!==void 0?b:X().validateOnInput;x(u.path,w,le)}function y(g){var b;const w=Ze(g),le=(b=s().validateOnChange)!==null&&b!==void 0?b:X().validateOnChange;x(u.path,w,le)}return F(()=>{const g={value:u.value,onChange:y,onInput:m,onBlur:h};return R(r)?Object.assign(Object.assign({},g),r(ue(u,oe)).attrs||{}):r!=null&&r.mapAttrs?Object.assign(Object.assign({},g),r.mapAttrs(ue(u,oe))):g})}return Object.assign(Object.assign({},k),{values:jt(d),handleReset:()=>Ae(),submitForm:yt,defineComponentBinds:gt,defineInputBinds:bt})}function pn(e,t,n,i){const l={touched:"some",pending:"some",valid:"every"},o=F(()=>!se(t,I(n)));function c(){const d=e.value;return U(l).reduce((f,p)=>{const E=l[p];return f[p]=d[E](V=>V[p]),f},{})}const v=Ne(c());return wt(()=>{const d=c();v.touched=d.touched,v.valid=d.valid,v.pending=d.pending}),F(()=>Object.assign(Object.assign({initialValues:I(n)},v),{valid:v.valid&&!U(i.value).length,dirty:o.value}))}function yn(e,t,n){const i=st(n),l=n==null?void 0:n.initialValues,o=N(i),c=N(O(i));function v(d,f=!1){o.value=ye(O(o.value)||{},O(d)),c.value=ye(O(c.value)||{},O(d)),f&&e.value.forEach(p=>{if(p.touched)return;const V=D(o.value,p.path);K(t,p.path,O(V))})}return Be(l)&&Ie(l,d=>{d&&v(d,!0)},{deep:!0}),{initialValues:o,originalInitialValues:c,setInitialValues:v}}const gn=Me({name:"Form",inheritAttrs:!1,props:{as:{type:String,default:"form"},validationSchema:{type:Object,default:void 0},initialValues:{type:Object,default:void 0},initialErrors:{type:Object,default:void 0},initialTouched:{type:Object,default:void 0},validateOnMount:{type:Boolean,default:!1},onSubmit:{type:Function,default:void 0},onInvalidSubmit:{type:Function,default:void 0},keepValues:{type:Boolean,default:!1}},setup(e,t){const n=we(e,"initialValues"),i=we(e,"validationSchema"),l=we(e,"keepValues"),{errors:o,errorBag:c,values:v,meta:d,isSubmitting:f,isValidating:p,submitCount:E,controlledValues:V,validate:S,validateField:T,handleReset:W,resetForm:Y,handleSubmit:te,setErrors:ce,setFieldError:ne,setFieldValue:de,setValues:z,setFieldTouched:J,setTouched:fe,resetField:ve}=hn({validationSchema:i.value?i:void 0,initialValues:n,initialErrors:e.initialErrors,initialTouched:e.initialTouched,validateOnMount:e.validateOnMount,keepValuesOnUnmount:l}),re=te((M,{evt:C})=>{it(C)&&C.target.submit()},e.onInvalidSubmit),B=e.onSubmit?te(e.onSubmit,e.onInvalidSubmit):re;function G(M){Ue(M)&&M.preventDefault(),W(),typeof t.attrs.onReset=="function"&&t.attrs.onReset()}function _e(M,C){return te(typeof M=="function"&&!C?M:C,e.onInvalidSubmit)(M)}function me(){return O(v)}function ae(){return O(d.value)}function $(){return O(o.value)}function j(){return{meta:d.value,errors:o.value,errorBag:c.value,values:v,isSubmitting:f.value,isValidating:p.value,submitCount:E.value,controlledValues:V.value,validate:S,validateField:T,handleSubmit:_e,handleReset:W,submitForm:re,setErrors:ce,setFieldError:ne,setFieldValue:de,setValues:z,setFieldTouched:J,setTouched:fe,resetForm:Y,resetField:ve,getValues:me,getMeta:ae,getErrors:$}}return t.expose({setFieldError:ne,setErrors:ce,setFieldValue:de,setValues:z,setFieldTouched:J,setTouched:fe,resetForm:Y,validate:S,validateField:T,resetField:ve,getValues:me,getMeta:ae,getErrors:$}),function(){const C=e.as==="form"?e.as:Vt(e.as),L=Qt(C,t,j);if(!e.as)return L;const Oe=e.as==="form"?{novalidate:!0}:{};return St(C,Object.assign(Object.assign(Object.assign({},Oe),t.attrs),{onSubmit:B,onReset:G}),L)}}}),bn=gn,_n=ge("small",null,"默认用户名和密码为空。",-1),On={key:0,class:"mt-2"},Vn=Me({__name:"AuthLogin",setup(e){const t=N(!1),n=N(!1),i=N(""),l=N("");async function o(c,{setErrors:v}){return i.value!=""&&(i.value=_t(i.value)),It().login(l.value,i.value).then(f=>{console.log(f)}).catch(f=>{v({apiError:f})})}return(c,v)=>(Re(),tt(I(bn),{onSubmit:o,class:"mt-7 loginForm"},{default:P(({errors:d,isSubmitting:f})=>[A(He,{modelValue:l.value,"onUpdate:modelValue":v[0]||(v[0]=p=>l.value=p),label:"用户名",class:"mt-4 mb-8",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue"]),A(He,{modelValue:i.value,"onUpdate:modelValue":v[1]||(v[1]=p=>i.value=p),label:"密码",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":n.value?"mdi-eye":"mdi-eye-off",type:n.value?"text":"password","onClick:append":v[2]||(v[2]=p=>n.value=!n.value),class:"pwdInput"},null,8,["modelValue","append-icon","type"]),_n,A(Pt,{color:"secondary",loading:f,block:"",class:"mt-8",variant:"flat",size:"large",disabled:t.value,type:"submit"},{default:P(()=>[qe(" 登录")]),_:2},1032,["loading","disabled"]),d.apiError?(Re(),Tt("div",On,[A(Nt,{color:"error"},{default:P(()=>[qe(Ct(d.apiError),1)]),_:2},1024)])):Bt("",!0)]),_:1}))}});const Sn={class:"pa-7 pa-sm-12"},En=ge("h2",{class:"text-secondary text-h2 mt-8"},"欢迎",-1),An=ge("h4",{class:"text-disabled text-h4 mt-3"},"登录以继续",-1),Pn=Me({__name:"LoginPage",setup(e){return(t,n)=>(Re(),tt(Fe,{class:"h-100vh","no-gutters":""},{default:P(()=>[A(Pe,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:P(()=>[A(Rt,null,{default:P(()=>[ge("div",Sn,[A(Fe,{justify:"center"},{default:P(()=>[A(Pe,{cols:"12",lg:"10",xl:"6",md:"7"},{default:P(()=>[A(Ke,{elevation:"0",class:"loginBox"},{default:P(()=>[A(Ke,{variant:"outlined"},{default:P(()=>[A(Mt,{class:"pa-9"},{default:P(()=>[A(Fe,null,{default:P(()=>[A(Pe,{cols:"12",class:"text-center"},{default:P(()=>[A(Ot),En,An]),_:1})]),_:1}),A(Vn)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{Pn as default}; diff --git a/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-b1d2f1af.js b/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-b1d2f1af.js deleted file mode 100644 index 5f508562..00000000 --- a/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-b1d2f1af.js +++ /dev/null @@ -1 +0,0 @@ -import{aw as _,x as d,D as n,o as c,s as m,a as f,w as p,Q as r,b as a,R as o,B as t,ax as h}from"./index-25639696.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[f(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:p(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; diff --git a/dashboard/dist/assets/MaterialIcons-69a5e9aa.js b/dashboard/dist/assets/MaterialIcons-69a5e9aa.js deleted file mode 100644 index 8eff35a4..00000000 --- a/dashboard/dist/assets/MaterialIcons-69a5e9aa.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-cae6d9fb.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-25639696.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/dashboard/dist/assets/RegisterPage-799ed804.css b/dashboard/dist/assets/RegisterPage-799ed804.css deleted file mode 100644 index e6ada618..00000000 --- a/dashboard/dist/assets/RegisterPage-799ed804.css +++ /dev/null @@ -1 +0,0 @@ -.custom-devider{border-color:#00000014!important}.googleBtn{border-color:#00000014;margin:30px 0 20px}.outlinedInput .v-field{border:1px solid rgba(0,0,0,.08);box-shadow:none}.orbtn{padding:2px 40px;border-color:#00000014;margin:20px 15px}.pwdInput{position:relative}.pwdInput .v-input__append{position:absolute;right:10px;top:50%;transform:translateY(-50%)}.loginBox{max-width:475px;margin:0 auto} diff --git a/dashboard/dist/assets/RegisterPage-b4e7e679.js b/dashboard/dist/assets/RegisterPage-b4e7e679.js deleted file mode 100644 index 44ddeb59..00000000 --- a/dashboard/dist/assets/RegisterPage-b4e7e679.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-b1d2f1af.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,O as m,aq as q,av as A,F as E,c as F,N as T,J as V,L as P}from"./index-25639696.js";const z="/assets/social-google-a359a253.svg",N=["src"],S=n("span",{class:"ml-2"},"Sign up with Google",-1),D=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),G={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},L=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),O={class:"mt-5 text-right"},j=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(E,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(z),alt:"google"},null,8,N),S]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),D,e(A,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",G,[e(q,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),L]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",O,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},J=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),Y=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),F(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(T,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),J,Y]),_:1})]),_:1}),e(j)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; diff --git a/dashboard/dist/assets/ShadowPage-e7fd39fc.js b/dashboard/dist/assets/ShadowPage-e7fd39fc.js deleted file mode 100644 index b472bf4d..00000000 --- a/dashboard/dist/assets/ShadowPage-e7fd39fc.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-cae6d9fb.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,J as p,X as b,b as h,t as g}from"./index-25639696.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(V,x)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/dashboard/dist/assets/TablerIcons-eef884dc.js b/dashboard/dist/assets/TablerIcons-eef884dc.js deleted file mode 100644 index caf69ff1..00000000 --- a/dashboard/dist/assets/TablerIcons-eef884dc.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-cae6d9fb.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-25639696.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; diff --git a/dashboard/dist/assets/TypographyPage-e6311caa.js b/dashboard/dist/assets/TypographyPage-e6311caa.js deleted file mode 100644 index 9a2febc1..00000000 --- a/dashboard/dist/assets/TypographyPage-e6311caa.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-cae6d9fb.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js";import{x as f,o as i,c as g,w as e,a,a8 as y,K as b,e as w,t as d,A as C,L as V,a9 as L,J as _,D as o,s as h,f as k,b as t,F as x,u as B,X as H,V as T}from"./index-25639696.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),D={class:"d-flex flex-column gap-1"},S={class:"text-caption pa-2 bg-lightprimary"},z=t("div",{class:"text-grey"},"Class",-1),N={class:"font-weight-medium"},$=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),M=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),O=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),j=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(U,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",D,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",S,[z,t("div",N,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[$]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[M]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[O]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{j as default}; diff --git a/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js b/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js deleted file mode 100644 index 3beb871e..00000000 --- a/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js +++ /dev/null @@ -1 +0,0 @@ -import{x as n,o,c as i,w as e,a,a8 as d,b as c,K as u,e as p,t as _,a9 as s,A as f,L as V,J as m}from"./index-25639696.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; diff --git a/dashboard/dist/assets/img-error-bg-ab6474a0.svg b/dashboard/dist/assets/img-error-bg-ab6474a0.svg deleted file mode 100644 index 57af439c..00000000 --- a/dashboard/dist/assets/img-error-bg-ab6474a0.svg +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dashboard/dist/assets/img-error-blue-2675a7a9.svg b/dashboard/dist/assets/img-error-blue-2675a7a9.svg deleted file mode 100644 index a7208438..00000000 --- a/dashboard/dist/assets/img-error-blue-2675a7a9.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dashboard/dist/assets/img-error-purple-edee3fbc.svg b/dashboard/dist/assets/img-error-purple-edee3fbc.svg deleted file mode 100644 index 12904c1a..00000000 --- a/dashboard/dist/assets/img-error-purple-edee3fbc.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dashboard/dist/assets/img-error-text-a6aebfa0.svg b/dashboard/dist/assets/img-error-text-a6aebfa0.svg deleted file mode 100644 index 16ed50aa..00000000 --- a/dashboard/dist/assets/img-error-text-a6aebfa0.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dashboard/dist/assets/index-25639696.js b/dashboard/dist/assets/index-25639696.js deleted file mode 100644 index 6263c356..00000000 --- a/dashboard/dist/assets/index-25639696.js +++ /dev/null @@ -1,720 +0,0 @@ -(function(){const l=document.createElement("link").relList;if(l&&l.supports&&l.supports("modulepreload"))return;for(const c of document.querySelectorAll('link[rel="modulepreload"]'))h(c);new MutationObserver(c=>{for(const g of c)if(g.type==="childList")for(const v of g.addedNodes)v.tagName==="LINK"&&v.rel==="modulepreload"&&h(v)}).observe(document,{childList:!0,subtree:!0});function r(c){const g={};return c.integrity&&(g.integrity=c.integrity),c.referrerPolicy&&(g.referrerPolicy=c.referrerPolicy),c.crossOrigin==="use-credentials"?g.credentials="include":c.crossOrigin==="anonymous"?g.credentials="omit":g.credentials="same-origin",g}function h(c){if(c.ep)return;c.ep=!0;const g=r(c);fetch(c.href,g)}})();function aw(n,l){const r=Object.create(null),h=n.split(",");for(let c=0;c!!r[c.toLowerCase()]:c=>!!r[c]}const iw=()=>{},ih=Object.assign,hw=Object.prototype.hasOwnProperty,Ca=(n,l)=>hw.call(n,l),wl=Array.isArray,ea=n=>oc(n)==="[object Map]",hh=n=>typeof n=="function",dw=n=>typeof n=="string",dh=n=>typeof n=="symbol",ps=n=>n!==null&&typeof n=="object",cw=Object.prototype.toString,oc=n=>cw.call(n),uw=n=>oc(n).slice(8,-1),ch=n=>dw(n)&&n!=="NaN"&&n[0]!=="-"&&""+parseInt(n,10)===n,uh=(n,l)=>!Object.is(n,l),pw=(n,l,r)=>{Object.defineProperty(n,l,{configurable:!0,enumerable:!1,value:r})};let zn;class ph{constructor(l=!1){this.detached=l,this._active=!0,this.effects=[],this.cleanups=[],this.parent=zn,!l&&zn&&(this.index=(zn.scopes||(zn.scopes=[])).push(this)-1)}get active(){return this._active}run(l){if(this._active){const r=zn;try{return zn=this,l()}finally{zn=r}}}on(){zn=this}off(){zn=this.parent}stop(l){if(this._active){let r,h;for(r=0,h=this.effects.length;r{const l=new Set(n);return l.w=0,l.n=0,l},ac=n=>(n.w&Wl)>0,ic=n=>(n.n&Wl)>0,gw=({deps:n})=>{if(n.length)for(let l=0;l{const{deps:l}=n;if(l.length){let r=0;for(let h=0;h{(S==="length"||S>=x)&&k.push(I)})}else switch(r!==void 0&&k.push(v.get(r)),l){case"add":wl(n)?ch(r)&&k.push(v.get("length")):(k.push(v.get(pr)),ea(n)&&k.push(v.get(Ki)));break;case"delete":wl(n)||(k.push(v.get(pr)),ea(n)&&k.push(v.get(Ki)));break;case"set":ea(n)&&k.push(v.get(pr));break}if(k.length===1)k[0]&&Qi(k[0]);else{const x=[];for(const I of k)I&&x.push(...I);Qi(wh(x))}}function Qi(n,l){const r=wl(n)?n:[...n];for(const h of r)h.computed&&_2(h);for(const h of r)h.computed||_2(h)}function _2(n,l){(n!==Xn||n.allowRecurse)&&(n.scheduler?n.scheduler():n.run())}function mw(n,l){var r;return(r=da.get(n))==null?void 0:r.get(l)}const kw=aw("__proto__,__v_isRef,__isVue"),cc=new Set(Object.getOwnPropertyNames(Symbol).filter(n=>n!=="arguments"&&n!=="caller").map(n=>Symbol[n]).filter(dh)),bw=Sa(),Mw=Sa(!1,!0),xw=Sa(!0),zw=Sa(!0,!0),W2=Iw();function Iw(){const n={};return["includes","indexOf","lastIndexOf"].forEach(l=>{n[l]=function(...r){const h=le(this);for(let g=0,v=this.length;g{n[l]=function(...r){ho();const h=le(this)[l].apply(this,r);return co(),h}}),n}function yw(n){const l=le(this);return mn(l,"has",n),l.hasOwnProperty(n)}function Sa(n=!1,l=!1){return function(h,c,g){if(c==="__v_isReactive")return!n;if(c==="__v_isReadonly")return n;if(c==="__v_isShallow")return l;if(c==="__v_raw"&&g===(n?l?mc:fc:l?vc:wc).get(h))return h;const v=wl(h);if(!n){if(v&&Ca(W2,c))return Reflect.get(W2,c,g);if(c==="hasOwnProperty")return yw}const k=Reflect.get(h,c,g);return(dh(c)?cc.has(c):kw(c))||(n||mn(h,"get",c),l)?k:Me(k)?v&&ch(c)?k:k.value:ps(k)?n?uo(k):Ze(k):k}}const Cw=uc(),Sw=uc(!0);function uc(n=!1){return function(r,h,c,g){let v=r[h];if(mr(v)&&Me(v)&&!Me(c))return!1;if(!n&&(!Uo(c)&&!mr(c)&&(v=le(v),c=le(c)),!wl(r)&&Me(v)&&!Me(c)))return v.value=c,!0;const k=wl(r)&&ch(h)?Number(h)n,$a=n=>Reflect.getPrototypeOf(n);function Os(n,l,r=!1,h=!1){n=n.__v_raw;const c=le(n),g=le(l);r||(l!==g&&mn(c,"get",l),mn(c,"get",g));const{has:v}=$a(c),k=h?vh:r?kh:Go;if(v.call(c,l))return k(n.get(l));if(v.call(c,g))return k(n.get(g));n!==c&&n.get(l)}function Fs(n,l=!1){const r=this.__v_raw,h=le(r),c=le(n);return l||(n!==c&&mn(h,"has",n),mn(h,"has",c)),n===c?r.has(n):r.has(n)||r.has(c)}function Rs(n,l=!1){return n=n.__v_raw,!l&&mn(le(n),"iterate",pr),Reflect.get(n,"size",n)}function X2(n){n=le(n);const l=le(this);return $a(l).has.call(l,n)||(l.add(n),kl(l,"add",n,n)),this}function q2(n,l){l=le(l);const r=le(this),{has:h,get:c}=$a(r);let g=h.call(r,n);g||(n=le(n),g=h.call(r,n));const v=c.call(r,n);return r.set(n,l),g?uh(l,v)&&kl(r,"set",n,l):kl(r,"add",n,l),this}function Y2(n){const l=le(this),{has:r,get:h}=$a(l);let c=r.call(l,n);c||(n=le(n),c=r.call(l,n)),h&&h.call(l,n);const g=l.delete(n);return c&&kl(l,"delete",n,void 0),g}function U2(){const n=le(this),l=n.size!==0,r=n.clear();return l&&kl(n,"clear",void 0,void 0),r}function Ts(n,l){return function(h,c){const g=this,v=g.__v_raw,k=le(v),x=l?vh:n?kh:Go;return!n&&mn(k,"iterate",pr),v.forEach((I,S)=>h.call(c,x(I),x(S),g))}}function Es(n,l,r){return function(...h){const c=this.__v_raw,g=le(c),v=ea(g),k=n==="entries"||n===Symbol.iterator&&v,x=n==="keys"&&v,I=c[n](...h),S=r?vh:l?kh:Go;return!l&&mn(g,"iterate",x?Ki:pr),{next(){const{value:$,done:B}=I.next();return B?{value:$,done:B}:{value:k?[S($[0]),S($[1])]:S($),done:B}},[Symbol.iterator](){return this}}}}function Hl(n){return function(...l){return n==="delete"?!1:this}}function jw(){const n={get(g){return Os(this,g)},get size(){return Rs(this)},has:Fs,add:X2,set:q2,delete:Y2,clear:U2,forEach:Ts(!1,!1)},l={get(g){return Os(this,g,!1,!0)},get size(){return Rs(this)},has:Fs,add:X2,set:q2,delete:Y2,clear:U2,forEach:Ts(!1,!0)},r={get(g){return Os(this,g,!0)},get size(){return Rs(this,!0)},has(g){return Fs.call(this,g,!0)},add:Hl("add"),set:Hl("set"),delete:Hl("delete"),clear:Hl("clear"),forEach:Ts(!0,!1)},h={get(g){return Os(this,g,!0,!0)},get size(){return Rs(this,!0)},has(g){return Fs.call(this,g,!0)},add:Hl("add"),set:Hl("set"),delete:Hl("delete"),clear:Hl("clear"),forEach:Ts(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(g=>{n[g]=Es(g,!1,!1),r[g]=Es(g,!0,!1),l[g]=Es(g,!1,!0),h[g]=Es(g,!0,!0)}),[n,r,l,h]}const[Pw,Lw,Dw,Ow]=jw();function Aa(n,l){const r=l?n?Ow:Dw:n?Lw:Pw;return(h,c,g)=>c==="__v_isReactive"?!n:c==="__v_isReadonly"?n:c==="__v_raw"?h:Reflect.get(Ca(r,c)&&c in h?r:h,c,g)}const Fw={get:Aa(!1,!1)},Rw={get:Aa(!1,!0)},Tw={get:Aa(!0,!1)},Ew={get:Aa(!0,!0)},wc=new WeakMap,vc=new WeakMap,fc=new WeakMap,mc=new WeakMap;function Vw(n){switch(n){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function _w(n){return n.__v_skip||!Object.isExtensible(n)?0:Vw(uw(n))}function Ze(n){return mr(n)?n:Ba(n,!1,pc,Fw,wc)}function fh(n){return Ba(n,!1,Hw,Rw,vc)}function uo(n){return Ba(n,!0,gc,Tw,fc)}function Ww(n){return Ba(n,!0,Nw,Ew,mc)}function Ba(n,l,r,h,c){if(!ps(n)||n.__v_raw&&!(l&&n.__v_isReactive))return n;const g=c.get(n);if(g)return g;const v=_w(n);if(v===0)return n;const k=new Proxy(n,v===2?h:r);return c.set(n,k),k}function vl(n){return mr(n)?vl(n.__v_raw):!!(n&&n.__v_isReactive)}function mr(n){return!!(n&&n.__v_isReadonly)}function Uo(n){return!!(n&&n.__v_isShallow)}function mh(n){return vl(n)||mr(n)}function le(n){const l=n&&n.__v_raw;return l?le(l):n}function ws(n){return pw(n,"__v_skip",!0),n}const Go=n=>ps(n)?Ze(n):n,kh=n=>ps(n)?uo(n):n;function bh(n){Vl&&Xn&&(n=le(n),dc(n.dep||(n.dep=wh())))}function Ha(n,l){n=le(n);const r=n.dep;r&&Qi(r)}function Me(n){return!!(n&&n.__v_isRef===!0)}function Lt(n){return kc(n,!1)}function Wt(n){return kc(n,!0)}function kc(n,l){return Me(n)?n:new Xw(n,l)}class Xw{constructor(l,r){this.__v_isShallow=r,this.dep=void 0,this.__v_isRef=!0,this._rawValue=r?l:le(l),this._value=r?l:Go(l)}get value(){return bh(this),this._value}set value(l){const r=this.__v_isShallow||Uo(l)||mr(l);l=r?l:le(l),uh(l,this._rawValue)&&(this._rawValue=l,this._value=r?l:Go(l),Ha(this))}}function qw(n){Ha(n)}function je(n){return Me(n)?n.value:n}function Yw(n){return hh(n)?n():je(n)}const Uw={get:(n,l,r)=>je(Reflect.get(n,l,r)),set:(n,l,r,h)=>{const c=n[l];return Me(c)&&!Me(r)?(c.value=r,!0):Reflect.set(n,l,r,h)}};function Mh(n){return vl(n)?n:new Proxy(n,Uw)}class Gw{constructor(l){this.dep=void 0,this.__v_isRef=!0;const{get:r,set:h}=l(()=>bh(this),()=>Ha(this));this._get=r,this._set=h}get value(){return this._get()}set value(l){this._set(l)}}function Zw(n){return new Gw(n)}function vs(n){const l=wl(n)?new Array(n.length):{};for(const r in n)l[r]=bc(n,r);return l}class Kw{constructor(l,r,h){this._object=l,this._key=r,this._defaultValue=h,this.__v_isRef=!0}get value(){const l=this._object[this._key];return l===void 0?this._defaultValue:l}set value(l){this._object[this._key]=l}get dep(){return mw(le(this._object),this._key)}}class Qw{constructor(l){this._getter=l,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Ht(n,l,r){return Me(n)?n:hh(n)?new Qw(n):ps(n)&&arguments.length>1?bc(n,l,r):Lt(n)}function bc(n,l,r){const h=n[l];return Me(h)?h:new Kw(n,l,r)}class Jw{constructor(l,r,h,c){this._setter=r,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this._dirty=!0,this.effect=new gs(l,()=>{this._dirty||(this._dirty=!0,Ha(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!c,this.__v_isReadonly=h}get value(){const l=le(this);return bh(l),(l._dirty||!l._cacheable)&&(l._dirty=!1,l._value=l.effect.run()),l._value}set value(l){this._setter(l)}}function tv(n,l,r=!1){let h,c;const g=hh(n);return g?(h=n,c=iw):(h=n.get,c=n.set),new Jw(h,c,g||!c,r)}function Mc(n,l){const r=Object.create(null),h=n.split(",");for(let c=0;c!!r[c.toLowerCase()]:c=>!!r[c]}const ye={},Ur=[],rl=()=>{},ev=()=>!1,nv=/^on[^a-z]/,Na=n=>nv.test(n),xc=n=>n.startsWith("onUpdate:"),qe=Object.assign,xh=(n,l)=>{const r=n.indexOf(l);r>-1&&n.splice(r,1)},lv=Object.prototype.hasOwnProperty,me=(n,l)=>lv.call(n,l),se=Array.isArray,zc=n=>ja(n)==="[object Map]",Ic=n=>ja(n)==="[object Set]",rv=n=>ja(n)==="[object RegExp]",oe=n=>typeof n=="function",Ee=n=>typeof n=="string",Fe=n=>n!==null&&typeof n=="object",zh=n=>Fe(n)&&oe(n.then)&&oe(n.catch),yc=Object.prototype.toString,ja=n=>yc.call(n),Cc=n=>ja(n)==="[object Object]",Do=Mc(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Pa=n=>{const l=Object.create(null);return r=>l[r]||(l[r]=n(r))},ov=/-(\w)/g,Sn=Pa(n=>n.replace(ov,(l,r)=>r?r.toUpperCase():"")),sv=/\B([A-Z])/g,La=Pa(n=>n.replace(sv,"-$1").toLowerCase()),Il=Pa(n=>n.charAt(0).toUpperCase()+n.slice(1)),Oo=Pa(n=>n?`on${Il(n)}`:""),Ji=(n,l)=>!Object.is(n,l),Fo=(n,l)=>{for(let r=0;r{Object.defineProperty(n,l,{configurable:!0,enumerable:!1,value:r})},av=n=>{const l=parseFloat(n);return isNaN(l)?n:l},iv=n=>{const l=Ee(n)?Number(n):NaN;return isNaN(l)?n:l};let G2;const e0=()=>G2||(G2=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),hv="Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console",dv=Mc(hv);function fs(n){if(se(n)){const l={};for(let r=0;r{if(r){const h=r.split(uv);h.length>1&&(l[h[0].trim()]=h[1].trim())}}),l}function ms(n){let l="";if(Ee(n))l=n;else if(se(n))for(let r=0;rEe(n)?n:n==null?"":se(n)||Fe(n)&&(n.toString===yc||!oe(n.toString))?JSON.stringify(n,Sc,2):String(n),Sc=(n,l)=>l&&l.__v_isRef?Sc(n,l.value):zc(l)?{[`Map(${l.size})`]:[...l.entries()].reduce((r,[h,c])=>(r[`${h} =>`]=c,r),{})}:Ic(l)?{[`Set(${l.size})`]:[...l.values()]}:Fe(l)&&!se(l)&&!Cc(l)?String(l):l;function fv(n,...l){}function mv(n,l){}function fl(n,l,r,h){let c;try{c=h?n(...h):n()}catch(g){yr(g,l,r)}return c}function Cn(n,l,r,h){if(oe(n)){const g=fl(n,l,r,h);return g&&zh(g)&&g.catch(v=>{yr(v,l,r)}),g}const c=[];for(let g=0;g>>1;Ko(nn[h])el&&nn.splice(l,1)}function yh(n){se(n)?Gr.push(...n):(!ul||!ul.includes(n,n.allowRecurse?ir+1:ir))&&Gr.push(n),Ac()}function Z2(n,l=Zo?el+1:0){for(;lKo(r)-Ko(h)),ir=0;irn.id==null?1/0:n.id,xv=(n,l)=>{const r=Ko(n)-Ko(l);if(r===0){if(n.pre&&!l.pre)return-1;if(l.pre&&!n.pre)return 1}return r};function Bc(n){n0=!1,Zo=!0,nn.sort(xv);const l=rl;try{for(el=0;el_r.emit(c,...g)),Vs=[]):typeof window<"u"&&window.HTMLElement&&!((h=(r=window.navigator)==null?void 0:r.userAgent)!=null&&h.includes("jsdom"))?((l.__VUE_DEVTOOLS_HOOK_REPLAY__=l.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(g=>{Hc(g,l)}),setTimeout(()=>{_r||(l.__VUE_DEVTOOLS_HOOK_REPLAY__=null,Vs=[])},3e3)):Vs=[]}function zv(n,l,...r){if(n.isUnmounted)return;const h=n.vnode.props||ye;let c=r;const g=l.startsWith("update:"),v=g&&l.slice(7);if(v&&v in h){const S=`${v==="modelValue"?"model":v}Modifiers`,{number:$,trim:B}=h[S]||ye;B&&(c=r.map(P=>Ee(P)?P.trim():P)),$&&(c=r.map(av))}let k,x=h[k=Oo(l)]||h[k=Oo(Sn(l))];!x&&g&&(x=h[k=Oo(La(l))]),x&&Cn(x,n,6,c);const I=h[k+"Once"];if(I){if(!n.emitted)n.emitted={};else if(n.emitted[k])return;n.emitted[k]=!0,Cn(I,n,6,c)}}function Nc(n,l,r=!1){const h=l.emitsCache,c=h.get(n);if(c!==void 0)return c;const g=n.emits;let v={},k=!1;if(!oe(n)){const x=I=>{const S=Nc(I,l,!0);S&&(k=!0,qe(v,S))};!r&&l.mixins.length&&l.mixins.forEach(x),n.extends&&x(n.extends),n.mixins&&n.mixins.forEach(x)}return!g&&!k?(Fe(n)&&h.set(n,null),null):(se(g)?g.forEach(x=>v[x]=null):qe(v,g),Fe(n)&&h.set(n,v),v)}function Oa(n,l){return!n||!Na(l)?!1:(l=l.slice(2).replace(/Once$/,""),me(n,l[0].toLowerCase()+l.slice(1))||me(n,La(l))||me(n,l))}let Xe=null,Fa=null;function Qo(n){const l=Xe;return Xe=n,Fa=n&&n.type.__scopeId||null,l}function Iv(n){Fa=n}function yv(){Fa=null}const Cv=n=>Ch;function Ch(n,l=Xe,r){if(!l||n._n)return n;const h=(...c)=>{h._d&&h0(-1);const g=Qo(l);let v;try{v=n(...c)}finally{Qo(g),h._d&&h0(1)}return v};return h._n=!0,h._c=!0,h._d=!0,h}function na(n){const{type:l,vnode:r,proxy:h,withProxy:c,props:g,propsOptions:[v],slots:k,attrs:x,emit:I,render:S,renderCache:$,data:B,setupState:P,ctx:D,inheritAttrs:F}=n;let X,R;const H=Qo(n);try{if(r.shapeFlag&4){const W=c||h;X=In(S.call(W,W,$,g,P,B,D)),R=x}else{const W=l;X=In(W.length>1?W(g,{attrs:x,slots:k,emit:I}):W(g,null)),R=l.props?x:$v(x)}}catch(W){Eo.length=0,yr(W,n,1),X=t(on)}let U=X;if(R&&F!==!1){const W=Object.keys(R),{shapeFlag:_}=U;W.length&&_&7&&(v&&W.some(xc)&&(R=Av(R,v)),U=Gn(U,R))}return r.dirs&&(U=Gn(U),U.dirs=U.dirs?U.dirs.concat(r.dirs):r.dirs),r.transition&&(U.transition=r.transition),X=U,Qo(H),X}function Sv(n){let l;for(let r=0;r{let l;for(const r in n)(r==="class"||r==="style"||Na(r))&&((l||(l={}))[r]=n[r]);return l},Av=(n,l)=>{const r={};for(const h in n)(!xc(h)||!(h.slice(9)in l))&&(r[h]=n[h]);return r};function Bv(n,l,r){const{props:h,children:c,component:g}=n,{props:v,children:k,patchFlag:x}=l,I=g.emitsOptions;if(l.dirs||l.transition)return!0;if(r&&x>=0){if(x&1024)return!0;if(x&16)return h?K2(h,v,I):!!v;if(x&8){const S=l.dynamicProps;for(let $=0;$n.__isSuspense,Hv={name:"Suspense",__isSuspense:!0,process(n,l,r,h,c,g,v,k,x,I){n==null?jv(l,r,h,c,g,v,k,x,I):Pv(n,l,r,h,c,v,k,x,I)},hydrate:Lv,create:$h,normalize:Dv},Nv=Hv;function Jo(n,l){const r=n.props&&n.props[l];oe(r)&&r()}function jv(n,l,r,h,c,g,v,k,x){const{p:I,o:{createElement:S}}=x,$=S("div"),B=n.suspense=$h(n,c,h,l,$,r,g,v,k,x);I(null,B.pendingBranch=n.ssContent,$,null,h,B,g,v),B.deps>0?(Jo(n,"onPending"),Jo(n,"onFallback"),I(null,n.ssFallback,l,r,h,null,g,v),Zr(B,n.ssFallback)):B.resolve(!1,!0)}function Pv(n,l,r,h,c,g,v,k,{p:x,um:I,o:{createElement:S}}){const $=l.suspense=n.suspense;$.vnode=l,l.el=n.el;const B=l.ssContent,P=l.ssFallback,{activeBranch:D,pendingBranch:F,isInFallback:X,isHydrating:R}=$;if(F)$.pendingBranch=B,qn(B,F)?(x(F,B,$.hiddenContainer,null,c,$,g,v,k),$.deps<=0?$.resolve():X&&(x(D,P,r,h,c,null,g,v,k),Zr($,P))):($.pendingId++,R?($.isHydrating=!1,$.activeBranch=F):I(F,c,$),$.deps=0,$.effects.length=0,$.hiddenContainer=S("div"),X?(x(null,B,$.hiddenContainer,null,c,$,g,v,k),$.deps<=0?$.resolve():(x(D,P,r,h,c,null,g,v,k),Zr($,P))):D&&qn(B,D)?(x(D,B,r,h,c,$,g,v,k),$.resolve(!0)):(x(null,B,$.hiddenContainer,null,c,$,g,v,k),$.deps<=0&&$.resolve()));else if(D&&qn(B,D))x(D,B,r,h,c,$,g,v,k),Zr($,B);else if(Jo(l,"onPending"),$.pendingBranch=B,$.pendingId++,x(null,B,$.hiddenContainer,null,c,$,g,v,k),$.deps<=0)$.resolve();else{const{timeout:H,pendingId:U}=$;H>0?setTimeout(()=>{$.pendingId===U&&$.fallback(P)},H):H===0&&$.fallback(P)}}function $h(n,l,r,h,c,g,v,k,x,I,S=!1){const{p:$,m:B,um:P,n:D,o:{parentNode:F,remove:X}}=I;let R;const H=Ov(n);H&&l!=null&&l.pendingBranch&&(R=l.pendingId,l.deps++);const U=n.props?iv(n.props.timeout):void 0,W={vnode:n,parent:l,parentComponent:r,isSVG:v,container:h,hiddenContainer:c,anchor:g,deps:0,pendingId:0,timeout:typeof U=="number"?U:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:S,isUnmounted:!1,effects:[],resolve(_=!1,tt=!1){const{vnode:nt,activeBranch:Y,pendingBranch:G,pendingId:et,effects:st,parentComponent:rt,container:ht}=W;if(W.isHydrating)W.isHydrating=!1;else if(!_){const xt=Y&&G.transition&&G.transition.mode==="out-in";xt&&(Y.transition.afterLeave=()=>{et===W.pendingId&&B(G,ht,wt,0)});let{anchor:wt}=W;Y&&(wt=D(Y),P(Y,rt,W,!0)),xt||B(G,ht,wt,0)}Zr(W,G),W.pendingBranch=null,W.isInFallback=!1;let dt=W.parent,Ct=!1;for(;dt;){if(dt.pendingBranch){dt.effects.push(...st),Ct=!0;break}dt=dt.parent}Ct||yh(st),W.effects=[],H&&l&&l.pendingBranch&&R===l.pendingId&&(l.deps--,l.deps===0&&!tt&&l.resolve()),Jo(nt,"onResolve")},fallback(_){if(!W.pendingBranch)return;const{vnode:tt,activeBranch:nt,parentComponent:Y,container:G,isSVG:et}=W;Jo(tt,"onFallback");const st=D(nt),rt=()=>{W.isInFallback&&($(null,_,G,st,Y,null,et,k,x),Zr(W,_))},ht=_.transition&&_.transition.mode==="out-in";ht&&(nt.transition.afterLeave=rt),W.isInFallback=!0,P(nt,Y,null,!0),ht||rt()},move(_,tt,nt){W.activeBranch&&B(W.activeBranch,_,tt,nt),W.container=_},next(){return W.activeBranch&&D(W.activeBranch)},registerDep(_,tt){const nt=!!W.pendingBranch;nt&&W.deps++;const Y=_.vnode.el;_.asyncDep.catch(G=>{yr(G,_,0)}).then(G=>{if(_.isUnmounted||W.isUnmounted||W.pendingId!==_.suspenseId)return;_.asyncResolved=!0;const{vnode:et}=_;d0(_,G,!1),Y&&(et.el=Y);const st=!Y&&_.subTree.el;tt(_,et,F(Y||_.subTree.el),Y?null:D(_.subTree),W,v,x),st&&X(st),Sh(_,et.el),nt&&--W.deps===0&&W.resolve()})},unmount(_,tt){W.isUnmounted=!0,W.activeBranch&&P(W.activeBranch,r,_,tt),W.pendingBranch&&P(W.pendingBranch,r,_,tt)}};return W}function Lv(n,l,r,h,c,g,v,k,x){const I=l.suspense=$h(l,h,r,n.parentNode,document.createElement("div"),null,c,g,v,k,!0),S=x(n,I.pendingBranch=l.ssContent,r,I,g,v);return I.deps===0&&I.resolve(!1,!0),S}function Dv(n){const{shapeFlag:l,children:r}=n,h=l&32;n.ssContent=Q2(h?r.default:r),n.ssFallback=h?Q2(r.fallback):t(on)}function Q2(n){let l;if(oe(n)){const r=br&&n._c;r&&(n._d=!1,xs()),n=n(),r&&(n._d=!0,l=fn,au())}return se(n)&&(n=Sv(n)),n=In(n),l&&!n.dynamicChildren&&(n.dynamicChildren=l.filter(r=>r!==n)),n}function Pc(n,l){l&&l.pendingBranch?se(n)?l.effects.push(...n):l.effects.push(n):yh(n)}function Zr(n,l){n.activeBranch=l;const{vnode:r,parentComponent:h}=n,c=r.el=l.el;h&&h.subTree===r&&(h.vnode.el=c,Sh(h,c))}function Ov(n){var l;return((l=n.props)==null?void 0:l.suspensible)!=null&&n.props.suspensible!==!1}function bn(n,l){return ks(n,null,l)}function Lc(n,l){return ks(n,null,{flush:"post"})}function Fv(n,l){return ks(n,null,{flush:"sync"})}const _s={};function _t(n,l,r){return ks(n,l,r)}function ks(n,l,{immediate:r,deep:h,flush:c,onTrack:g,onTrigger:v}=ye){var k;const x=gh()===((k=Oe)==null?void 0:k.scope)?Oe:null;let I,S=!1,$=!1;if(Me(n)?(I=()=>n.value,S=Uo(n)):vl(n)?(I=()=>n,h=!0):se(n)?($=!0,S=n.some(W=>vl(W)||Uo(W)),I=()=>n.map(W=>{if(Me(W))return W.value;if(vl(W))return dr(W);if(oe(W))return fl(W,x,2)})):oe(n)?l?I=()=>fl(n,x,2):I=()=>{if(!(x&&x.isUnmounted))return B&&B(),Cn(n,x,3,[P])}:I=rl,l&&h){const W=I;I=()=>dr(W())}let B,P=W=>{B=H.onStop=()=>{fl(W,x,4)}},D;if(Jr)if(P=rl,l?r&&Cn(l,x,3,[I(),$?[]:void 0,P]):I(),c==="sync"){const W=fu();D=W.__watcherHandles||(W.__watcherHandles=[])}else return rl;let F=$?new Array(n.length).fill(_s):_s;const X=()=>{if(H.active)if(l){const W=H.run();(h||S||($?W.some((_,tt)=>Ji(_,F[tt])):Ji(W,F)))&&(B&&B(),Cn(l,x,3,[W,F===_s?void 0:$&&F[0]===_s?[]:F,P]),F=W)}else H.run()};X.allowRecurse=!!l;let R;c==="sync"?R=X:c==="post"?R=()=>Ge(X,x&&x.suspense):(X.pre=!0,x&&(X.id=x.uid),R=()=>Da(X));const H=new gs(I,R);l?r?X():F=H.run():c==="post"?Ge(H.run.bind(H),x&&x.suspense):H.run();const U=()=>{H.stop(),x&&x.scope&&xh(x.scope.effects,H)};return D&&D.push(U),U}function Rv(n,l,r){const h=this.proxy,c=Ee(n)?n.includes(".")?Dc(h,n):()=>h[n]:n.bind(h,h);let g;oe(l)?g=l:(g=l.handler,r=l);const v=Oe;Yl(this);const k=ks(c,g.bind(h),r);return v?Yl(v):_l(),k}function Dc(n,l){const r=l.split(".");return()=>{let h=n;for(let c=0;c{dr(r,l)});else if(Cc(n))for(const r in n)dr(n[r],l);return n}function $e(n,l){const r=Xe;if(r===null)return n;const h=Xa(r)||r.proxy,c=n.dirs||(n.dirs=[]);for(let g=0;g{n.isMounted=!0}),Qe(()=>{n.isUnmounting=!0}),n}const Hn=[Function,Array],Bh={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Hn,onEnter:Hn,onAfterEnter:Hn,onEnterCancelled:Hn,onBeforeLeave:Hn,onLeave:Hn,onAfterLeave:Hn,onLeaveCancelled:Hn,onBeforeAppear:Hn,onAppear:Hn,onAfterAppear:Hn,onAppearCancelled:Hn},Tv={name:"BaseTransition",props:Bh,setup(n,{slots:l}){const r=al(),h=Ah();let c;return()=>{const g=l.default&&Ra(l.default(),!0);if(!g||!g.length)return;let v=g[0];if(g.length>1){for(const F of g)if(F.type!==on){v=F;break}}const k=le(n),{mode:x}=k;if(h.isLeaving)return yi(v);const I=J2(v);if(!I)return yi(v);const S=Qr(I,k,h,r);kr(I,S);const $=r.subTree,B=$&&J2($);let P=!1;const{getTransitionKey:D}=I.type;if(D){const F=D();c===void 0?c=F:F!==c&&(c=F,P=!0)}if(B&&B.type!==on&&(!qn(I,B)||P)){const F=Qr(B,k,h,r);if(kr(B,F),x==="out-in")return h.isLeaving=!0,F.afterLeave=()=>{h.isLeaving=!1,r.update.active!==!1&&r.update()},yi(v);x==="in-out"&&I.type!==on&&(F.delayLeave=(X,R,H)=>{const U=Fc(h,B);U[String(B.key)]=B,X._leaveCb=()=>{R(),X._leaveCb=void 0,delete S.delayedLeave},S.delayedLeave=H})}return v}}},Oc=Tv;function Fc(n,l){const{leavingVNodes:r}=n;let h=r.get(l.type);return h||(h=Object.create(null),r.set(l.type,h)),h}function Qr(n,l,r,h){const{appear:c,mode:g,persisted:v=!1,onBeforeEnter:k,onEnter:x,onAfterEnter:I,onEnterCancelled:S,onBeforeLeave:$,onLeave:B,onAfterLeave:P,onLeaveCancelled:D,onBeforeAppear:F,onAppear:X,onAfterAppear:R,onAppearCancelled:H}=l,U=String(n.key),W=Fc(r,n),_=(Y,G)=>{Y&&Cn(Y,h,9,G)},tt=(Y,G)=>{const et=G[1];_(Y,G),se(Y)?Y.every(st=>st.length<=1)&&et():Y.length<=1&&et()},nt={mode:g,persisted:v,beforeEnter(Y){let G=k;if(!r.isMounted)if(c)G=F||k;else return;Y._leaveCb&&Y._leaveCb(!0);const et=W[U];et&&qn(n,et)&&et.el._leaveCb&&et.el._leaveCb(),_(G,[Y])},enter(Y){let G=x,et=I,st=S;if(!r.isMounted)if(c)G=X||x,et=R||I,st=H||S;else return;let rt=!1;const ht=Y._enterCb=dt=>{rt||(rt=!0,dt?_(st,[Y]):_(et,[Y]),nt.delayedLeave&&nt.delayedLeave(),Y._enterCb=void 0)};G?tt(G,[Y,ht]):ht()},leave(Y,G){const et=String(n.key);if(Y._enterCb&&Y._enterCb(!0),r.isUnmounting)return G();_($,[Y]);let st=!1;const rt=Y._leaveCb=ht=>{st||(st=!0,G(),ht?_(D,[Y]):_(P,[Y]),Y._leaveCb=void 0,W[et]===n&&delete W[et])};W[et]=n,B?tt(B,[Y,rt]):rt()},clone(Y){return Qr(Y,l,r,h)}};return nt}function yi(n){if(bs(n))return n=Gn(n),n.children=null,n}function J2(n){return bs(n)?n.children?n.children[0]:void 0:n}function kr(n,l){n.shapeFlag&6&&n.component?kr(n.component.subTree,l):n.shapeFlag&128?(n.ssContent.transition=l.clone(n.ssContent),n.ssFallback.transition=l.clone(n.ssFallback)):n.transition=l}function Ra(n,l=!1,r){let h=[],c=0;for(let g=0;g1)for(let g=0;gqe({name:n.name},l,{setup:n}))():n}const gr=n=>!!n.type.__asyncLoader;function Ev(n){oe(n)&&(n={loader:n});const{loader:l,loadingComponent:r,errorComponent:h,delay:c=200,timeout:g,suspensible:v=!0,onError:k}=n;let x=null,I,S=0;const $=()=>(S++,x=null,B()),B=()=>{let P;return x||(P=x=l().catch(D=>{if(D=D instanceof Error?D:new Error(String(D)),k)return new Promise((F,X)=>{k(D,()=>F($()),()=>X(D),S+1)});throw D}).then(D=>P!==x&&x?x:(D&&(D.__esModule||D[Symbol.toStringTag]==="Module")&&(D=D.default),I=D,D)))};return Cr({name:"AsyncComponentWrapper",__asyncLoader:B,get __asyncResolved(){return I},setup(){const P=Oe;if(I)return()=>Ci(I,P);const D=H=>{x=null,yr(H,P,13,!h)};if(v&&P.suspense||Jr)return B().then(H=>()=>Ci(H,P)).catch(H=>(D(H),()=>h?t(h,{error:H}):null));const F=Lt(!1),X=Lt(),R=Lt(!!c);return c&&setTimeout(()=>{R.value=!1},c),g!=null&&setTimeout(()=>{if(!F.value&&!X.value){const H=new Error(`Async component timed out after ${g}ms.`);D(H),X.value=H}},g),B().then(()=>{F.value=!0,P.parent&&bs(P.parent.vnode)&&Da(P.parent.update)}).catch(H=>{D(H),X.value=H}),()=>{if(F.value&&I)return Ci(I,P);if(X.value&&h)return t(h,{error:X.value});if(r&&!R.value)return t(r)}}})}function Ci(n,l){const{ref:r,props:h,children:c,ce:g}=l.vnode,v=t(n,h,c);return v.ref=r,v.ce=g,delete l.vnode.ce,v}const bs=n=>n.type.__isKeepAlive,Vv={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(n,{slots:l}){const r=al(),h=r.ctx;if(!h.renderer)return()=>{const H=l.default&&l.default();return H&&H.length===1?H[0]:H};const c=new Map,g=new Set;let v=null;const k=r.suspense,{renderer:{p:x,m:I,um:S,o:{createElement:$}}}=h,B=$("div");h.activate=(H,U,W,_,tt)=>{const nt=H.component;I(H,U,W,0,k),x(nt.vnode,H,U,W,nt,k,_,H.slotScopeIds,tt),Ge(()=>{nt.isDeactivated=!1,nt.a&&Fo(nt.a);const Y=H.props&&H.props.onVnodeMounted;Y&&wn(Y,nt.parent,H)},k)},h.deactivate=H=>{const U=H.component;I(H,B,null,1,k),Ge(()=>{U.da&&Fo(U.da);const W=H.props&&H.props.onVnodeUnmounted;W&&wn(W,U.parent,H),U.isDeactivated=!0},k)};function P(H){Si(H),S(H,r,k,!0)}function D(H){c.forEach((U,W)=>{const _=u0(U.type);_&&(!H||!H(_))&&F(W)})}function F(H){const U=c.get(H);!v||!qn(U,v)?P(U):v&&Si(v),c.delete(H),g.delete(H)}_t(()=>[n.include,n.exclude],([H,U])=>{H&&D(W=>jo(H,W)),U&&D(W=>!jo(U,W))},{flush:"post",deep:!0});let X=null;const R=()=>{X!=null&&c.set(X,$i(r.subTree))};return Ve(R),Ea(R),Qe(()=>{c.forEach(H=>{const{subTree:U,suspense:W}=r,_=$i(U);if(H.type===_.type&&H.key===_.key){Si(_);const tt=_.component.da;tt&&Ge(tt,W);return}P(H)})}),()=>{if(X=null,!l.default)return null;const H=l.default(),U=H[0];if(H.length>1)return v=null,H;if(!ql(U)||!(U.shapeFlag&4)&&!(U.shapeFlag&128))return v=null,U;let W=$i(U);const _=W.type,tt=u0(gr(W)?W.type.__asyncResolved||{}:_),{include:nt,exclude:Y,max:G}=n;if(nt&&(!tt||!jo(nt,tt))||Y&&tt&&jo(Y,tt))return v=W,U;const et=W.key==null?_:W.key,st=c.get(et);return W.el&&(W=Gn(W),U.shapeFlag&128&&(U.ssContent=W)),X=et,st?(W.el=st.el,W.component=st.component,W.transition&&kr(W,W.transition),W.shapeFlag|=512,g.delete(et),g.add(et)):(g.add(et),G&&g.size>parseInt(G,10)&&F(g.values().next().value)),W.shapeFlag|=256,v=W,jc(U.type)?U:W}}},_v=Vv;function jo(n,l){return se(n)?n.some(r=>jo(r,l)):Ee(n)?n.split(",").includes(l):rv(n)?n.test(l):!1}function Hh(n,l){Rc(n,"a",l)}function Nh(n,l){Rc(n,"da",l)}function Rc(n,l,r=Oe){const h=n.__wdc||(n.__wdc=()=>{let c=r;for(;c;){if(c.isDeactivated)return;c=c.parent}return n()});if(Ta(l,h,r),r){let c=r.parent;for(;c&&c.parent;)bs(c.parent.vnode)&&Wv(h,l,r,c),c=c.parent}}function Wv(n,l,r,h){const c=Ta(l,n,h,!0);Va(()=>{xh(h[l],c)},r)}function Si(n){n.shapeFlag&=-257,n.shapeFlag&=-513}function $i(n){return n.shapeFlag&128?n.ssContent:n}function Ta(n,l,r=Oe,h=!1){if(r){const c=r[n]||(r[n]=[]),g=l.__weh||(l.__weh=(...v)=>{if(r.isUnmounted)return;ho(),Yl(r);const k=Cn(l,r,n,v);return _l(),co(),k});return h?c.unshift(g):c.push(g),g}}const yl=n=>(l,r=Oe)=>(!Jr||n==="sp")&&Ta(n,(...h)=>l(...h),r),Ms=yl("bm"),Ve=yl("m"),jh=yl("bu"),Ea=yl("u"),Qe=yl("bum"),Va=yl("um"),Tc=yl("sp"),Ec=yl("rtg"),Vc=yl("rtc");function _c(n,l=Oe){Ta("ec",n,l)}const Ph="components",Xv="directives";function qv(n,l){return Lh(Ph,n,!0,l)||n}const Wc=Symbol.for("v-ndc");function Xc(n){return Ee(n)?Lh(Ph,n,!1)||n:n||Wc}function Mn(n){return Lh(Xv,n)}function Lh(n,l,r=!0,h=!1){const c=Xe||Oe;if(c){const g=c.type;if(n===Ph){const k=u0(g,!1);if(k&&(k===l||k===Sn(l)||k===Il(Sn(l))))return g}const v=t1(c[n]||g[n],l)||t1(c.appContext[n],l);return!v&&h?g:v}}function t1(n,l){return n&&(n[l]||n[Sn(l)]||n[Il(Sn(l))])}function Yv(n,l,r,h){let c;const g=r&&r[h];if(se(n)||Ee(n)){c=new Array(n.length);for(let v=0,k=n.length;vl(v,k,void 0,g&&g[k]));else{const v=Object.keys(n);c=new Array(v.length);for(let k=0,x=v.length;k{const g=h.fn(...c);return g&&(g.key=h.key),g}:h.fn)}return n}function Gv(n,l,r={},h,c){if(Xe.isCE||Xe.parent&&gr(Xe.parent)&&Xe.parent.isCE)return l!=="default"&&(r.name=l),t("slot",r,h&&h());let g=n[l];g&&g._c&&(g._d=!1),xs();const v=g&&qc(g(r)),k=_a(Kt,{key:r.key||v&&v.key||`_${l}`},v||(h?h():[]),v&&n._===1?64:-2);return!c&&k.scopeId&&(k.slotScopeIds=[k.scopeId+"-s"]),g&&g._c&&(g._d=!0),k}function qc(n){return n.some(l=>ql(l)?!(l.type===on||l.type===Kt&&!qc(l.children)):!0)?n:null}function Zv(n,l){const r={};for(const h in n)r[l&&/[A-Z]/.test(h)?`on:${h}`:Oo(h)]=n[h];return r}const l0=n=>n?uu(n)?Xa(n)||n.proxy:l0(n.parent):null,Ro=qe(Object.create(null),{$:n=>n,$el:n=>n.vnode.el,$data:n=>n.data,$props:n=>n.props,$attrs:n=>n.attrs,$slots:n=>n.slots,$refs:n=>n.refs,$parent:n=>l0(n.parent),$root:n=>l0(n.root),$emit:n=>n.emit,$options:n=>Dh(n),$forceUpdate:n=>n.f||(n.f=()=>Da(n.update)),$nextTick:n=>n.n||(n.n=we.bind(n.proxy)),$watch:n=>Rv.bind(n)}),Ai=(n,l)=>n!==ye&&!n.__isScriptSetup&&me(n,l),r0={get({_:n},l){const{ctx:r,setupState:h,data:c,props:g,accessCache:v,type:k,appContext:x}=n;let I;if(l[0]!=="$"){const P=v[l];if(P!==void 0)switch(P){case 1:return h[l];case 2:return c[l];case 4:return r[l];case 3:return g[l]}else{if(Ai(h,l))return v[l]=1,h[l];if(c!==ye&&me(c,l))return v[l]=2,c[l];if((I=n.propsOptions[0])&&me(I,l))return v[l]=3,g[l];if(r!==ye&&me(r,l))return v[l]=4,r[l];o0&&(v[l]=0)}}const S=Ro[l];let $,B;if(S)return l==="$attrs"&&mn(n,"get",l),S(n);if(($=k.__cssModules)&&($=$[l]))return $;if(r!==ye&&me(r,l))return v[l]=4,r[l];if(B=x.config.globalProperties,me(B,l))return B[l]},set({_:n},l,r){const{data:h,setupState:c,ctx:g}=n;return Ai(c,l)?(c[l]=r,!0):h!==ye&&me(h,l)?(h[l]=r,!0):me(n.props,l)||l[0]==="$"&&l.slice(1)in n?!1:(g[l]=r,!0)},has({_:{data:n,setupState:l,accessCache:r,ctx:h,appContext:c,propsOptions:g}},v){let k;return!!r[v]||n!==ye&&me(n,v)||Ai(l,v)||(k=g[0])&&me(k,v)||me(h,v)||me(Ro,v)||me(c.config.globalProperties,v)},defineProperty(n,l,r){return r.get!=null?n._.accessCache[l]=0:me(r,"value")&&this.set(n,l,r.value,null),Reflect.defineProperty(n,l,r)}},Kv=qe({},r0,{get(n,l){if(l!==Symbol.unscopables)return r0.get(n,l,n)},has(n,l){return l[0]!=="_"&&!dv(l)}});function Qv(){return null}function Jv(){return null}function t3(n){}function e3(n){}function n3(){return null}function l3(){}function r3(n,l){return null}function o3(){return Yc().slots}function s3(){return Yc().attrs}function a3(n,l,r){const h=al();if(r&&r.local){const c=Lt(n[l]);return _t(()=>n[l],g=>c.value=g),_t(c,g=>{g!==n[l]&&h.emit(`update:${l}`,g)}),c}else return{__v_isRef:!0,get value(){return n[l]},set value(c){h.emit(`update:${l}`,c)}}}function Yc(){const n=al();return n.setupContext||(n.setupContext=wu(n))}function ts(n){return se(n)?n.reduce((l,r)=>(l[r]=null,l),{}):n}function i3(n,l){const r=ts(n);for(const h in l){if(h.startsWith("__skip"))continue;let c=r[h];c?se(c)||oe(c)?c=r[h]={type:c,default:l[h]}:c.default=l[h]:c===null&&(c=r[h]={default:l[h]}),c&&l[`__skip_${h}`]&&(c.skipFactory=!0)}return r}function h3(n,l){return!n||!l?n||l:se(n)&&se(l)?n.concat(l):qe({},ts(n),ts(l))}function d3(n,l){const r={};for(const h in n)l.includes(h)||Object.defineProperty(r,h,{enumerable:!0,get:()=>n[h]});return r}function c3(n){const l=al();let r=n();return _l(),zh(r)&&(r=r.catch(h=>{throw Yl(l),h})),[r,()=>Yl(l)]}let o0=!0;function u3(n){const l=Dh(n),r=n.proxy,h=n.ctx;o0=!1,l.beforeCreate&&e1(l.beforeCreate,n,"bc");const{data:c,computed:g,methods:v,watch:k,provide:x,inject:I,created:S,beforeMount:$,mounted:B,beforeUpdate:P,updated:D,activated:F,deactivated:X,beforeDestroy:R,beforeUnmount:H,destroyed:U,unmounted:W,render:_,renderTracked:tt,renderTriggered:nt,errorCaptured:Y,serverPrefetch:G,expose:et,inheritAttrs:st,components:rt,directives:ht,filters:dt}=l;if(I&&p3(I,h,null),v)for(const wt in v){const gt=v[wt];oe(gt)&&(h[wt]=gt.bind(r))}if(c){const wt=c.call(r,r);Fe(wt)&&(n.data=Ze(wt))}if(o0=!0,g)for(const wt in g){const gt=g[wt],It=oe(gt)?gt.bind(r,r):oe(gt.get)?gt.get.bind(r,r):rl,At=!oe(gt)&&oe(gt.set)?gt.set.bind(r):rl,Tt=q({get:It,set:At});Object.defineProperty(h,wt,{enumerable:!0,configurable:!0,get:()=>Tt.value,set:Ft=>Tt.value=Ft})}if(k)for(const wt in k)Uc(k[wt],h,r,wt);if(x){const wt=oe(x)?x.call(r):x;Reflect.ownKeys(wt).forEach(gt=>{Se(gt,wt[gt])})}S&&e1(S,n,"c");function xt(wt,gt){se(gt)?gt.forEach(It=>wt(It.bind(r))):gt&&wt(gt.bind(r))}if(xt(Ms,$),xt(Ve,B),xt(jh,P),xt(Ea,D),xt(Hh,F),xt(Nh,X),xt(_c,Y),xt(Vc,tt),xt(Ec,nt),xt(Qe,H),xt(Va,W),xt(Tc,G),se(et))if(et.length){const wt=n.exposed||(n.exposed={});et.forEach(gt=>{Object.defineProperty(wt,gt,{get:()=>r[gt],set:It=>r[gt]=It})})}else n.exposed||(n.exposed={});_&&n.render===rl&&(n.render=_),st!=null&&(n.inheritAttrs=st),rt&&(n.components=rt),ht&&(n.directives=ht)}function p3(n,l,r=rl){se(n)&&(n=s0(n));for(const h in n){const c=n[h];let g;Fe(c)?"default"in c?g=de(c.from||h,c.default,!0):g=de(c.from||h):g=de(c),Me(g)?Object.defineProperty(l,h,{enumerable:!0,configurable:!0,get:()=>g.value,set:v=>g.value=v}):l[h]=g}}function e1(n,l,r){Cn(se(n)?n.map(h=>h.bind(l.proxy)):n.bind(l.proxy),l,r)}function Uc(n,l,r,h){const c=h.includes(".")?Dc(r,h):()=>r[h];if(Ee(n)){const g=l[n];oe(g)&&_t(c,g)}else if(oe(n))_t(c,n.bind(r));else if(Fe(n))if(se(n))n.forEach(g=>Uc(g,l,r,h));else{const g=oe(n.handler)?n.handler.bind(r):l[n.handler];oe(g)&&_t(c,g,n)}}function Dh(n){const l=n.type,{mixins:r,extends:h}=l,{mixins:c,optionsCache:g,config:{optionMergeStrategies:v}}=n.appContext,k=g.get(l);let x;return k?x=k:!c.length&&!r&&!h?x=l:(x={},c.length&&c.forEach(I=>ua(x,I,v,!0)),ua(x,l,v)),Fe(l)&&g.set(l,x),x}function ua(n,l,r,h=!1){const{mixins:c,extends:g}=l;g&&ua(n,g,r,!0),c&&c.forEach(v=>ua(n,v,r,!0));for(const v in l)if(!(h&&v==="expose")){const k=g3[v]||r&&r[v];n[v]=k?k(n[v],l[v]):l[v]}return n}const g3={data:n1,props:l1,emits:l1,methods:Po,computed:Po,beforeCreate:un,created:un,beforeMount:un,mounted:un,beforeUpdate:un,updated:un,beforeDestroy:un,beforeUnmount:un,destroyed:un,unmounted:un,activated:un,deactivated:un,errorCaptured:un,serverPrefetch:un,components:Po,directives:Po,watch:v3,provide:n1,inject:w3};function n1(n,l){return l?n?function(){return qe(oe(n)?n.call(this,this):n,oe(l)?l.call(this,this):l)}:l:n}function w3(n,l){return Po(s0(n),s0(l))}function s0(n){if(se(n)){const l={};for(let r=0;r1)return r&&oe(l)?l.call(h&&h.proxy):l}}function Zc(){return!!(Oe||Xe||es)}function k3(n,l,r,h=!1){const c={},g={};t0(g,Wa,1),n.propsDefaults=Object.create(null),Kc(n,l,c,g);for(const v in n.propsOptions[0])v in c||(c[v]=void 0);r?n.props=h?c:fh(c):n.type.props?n.props=c:n.props=g,n.attrs=g}function b3(n,l,r,h){const{props:c,attrs:g,vnode:{patchFlag:v}}=n,k=le(c),[x]=n.propsOptions;let I=!1;if((h||v>0)&&!(v&16)){if(v&8){const S=n.vnode.dynamicProps;for(let $=0;${x=!0;const[B,P]=Qc($,l,!0);qe(v,B),P&&k.push(...P)};!r&&l.mixins.length&&l.mixins.forEach(S),n.extends&&S(n.extends),n.mixins&&n.mixins.forEach(S)}if(!g&&!x)return Fe(n)&&h.set(n,Ur),Ur;if(se(g))for(let S=0;S-1,P[1]=F<0||D-1||me(P,"default"))&&k.push($)}}}const I=[v,k];return Fe(n)&&h.set(n,I),I}function r1(n){return n[0]!=="$"}function o1(n){const l=n&&n.toString().match(/^\s*(function|class) (\w+)/);return l?l[2]:n===null?"null":""}function s1(n,l){return o1(n)===o1(l)}function a1(n,l){return se(l)?l.findIndex(r=>s1(r,n)):oe(l)&&s1(l,n)?0:-1}const Jc=n=>n[0]==="_"||n==="$stable",Oh=n=>se(n)?n.map(In):[In(n)],M3=(n,l,r)=>{if(l._n)return l;const h=Ch((...c)=>Oh(l(...c)),r);return h._c=!1,h},tu=(n,l,r)=>{const h=n._ctx;for(const c in n){if(Jc(c))continue;const g=n[c];if(oe(g))l[c]=M3(c,g,h);else if(g!=null){const v=Oh(g);l[c]=()=>v}}},eu=(n,l)=>{const r=Oh(l);n.slots.default=()=>r},x3=(n,l)=>{if(n.vnode.shapeFlag&32){const r=l._;r?(n.slots=le(l),t0(l,"_",r)):tu(l,n.slots={})}else n.slots={},l&&eu(n,l);t0(n.slots,Wa,1)},z3=(n,l,r)=>{const{vnode:h,slots:c}=n;let g=!0,v=ye;if(h.shapeFlag&32){const k=l._;k?r&&k===1?g=!1:(qe(c,l),!r&&k===1&&delete c._):(g=!l.$stable,tu(l,c)),v=l}else l&&(eu(n,l),v={default:1});if(g)for(const k in c)!Jc(k)&&!(k in v)&&delete c[k]};function pa(n,l,r,h,c=!1){if(se(n)){n.forEach((B,P)=>pa(B,l&&(se(l)?l[P]:l),r,h,c));return}if(gr(h)&&!c)return;const g=h.shapeFlag&4?Xa(h.component)||h.component.proxy:h.el,v=c?null:g,{i:k,r:x}=n,I=l&&l.r,S=k.refs===ye?k.refs={}:k.refs,$=k.setupState;if(I!=null&&I!==x&&(Ee(I)?(S[I]=null,me($,I)&&($[I]=null)):Me(I)&&(I.value=null)),oe(x))fl(x,k,12,[v,S]);else{const B=Ee(x),P=Me(x);if(B||P){const D=()=>{if(n.f){const F=B?me($,x)?$[x]:S[x]:x.value;c?se(F)&&xh(F,g):se(F)?F.includes(g)||F.push(g):B?(S[x]=[g],me($,x)&&($[x]=S[x])):(x.value=[g],n.k&&(S[n.k]=x.value))}else B?(S[x]=v,me($,x)&&($[x]=v)):P&&(x.value=v,n.k&&(S[n.k]=v))};v?(D.id=-1,Ge(D,r)):D()}}}let Nl=!1;const Ws=n=>/svg/.test(n.namespaceURI)&&n.tagName!=="foreignObject",Xs=n=>n.nodeType===8;function I3(n){const{mt:l,p:r,o:{patchProp:h,createText:c,nextSibling:g,parentNode:v,remove:k,insert:x,createComment:I}}=n,S=(R,H)=>{if(!H.hasChildNodes()){r(null,R,H),ca(),H._vnode=R;return}Nl=!1,$(H.firstChild,R,null,null,null),ca(),H._vnode=R,Nl&&console.error("Hydration completed but contains mismatches.")},$=(R,H,U,W,_,tt=!1)=>{const nt=Xs(R)&&R.data==="[",Y=()=>F(R,H,U,W,_,nt),{type:G,ref:et,shapeFlag:st,patchFlag:rt}=H;let ht=R.nodeType;H.el=R,rt===-2&&(tt=!1,H.dynamicChildren=null);let dt=null;switch(G){case Xl:ht!==3?H.children===""?(x(H.el=c(""),v(R),R),dt=R):dt=Y():(R.data!==H.children&&(Nl=!0,R.data=H.children),dt=g(R));break;case on:ht!==8||nt?dt=Y():dt=g(R);break;case wr:if(nt&&(R=g(R),ht=R.nodeType),ht===1||ht===3){dt=R;const Ct=!H.children.length;for(let xt=0;xt{tt=tt||!!H.dynamicChildren;const{type:nt,props:Y,patchFlag:G,shapeFlag:et,dirs:st}=H,rt=nt==="input"&&st||nt==="option";if(rt||G!==-1){if(st&&tl(H,null,U,"created"),Y)if(rt||!tt||G&48)for(const dt in Y)(rt&&dt.endsWith("value")||Na(dt)&&!Do(dt))&&h(R,dt,null,Y[dt],!1,void 0,U);else Y.onClick&&h(R,"onClick",null,Y.onClick,!1,void 0,U);let ht;if((ht=Y&&Y.onVnodeBeforeMount)&&wn(ht,U,H),st&&tl(H,null,U,"beforeMount"),((ht=Y&&Y.onVnodeMounted)||st)&&Pc(()=>{ht&&wn(ht,U,H),st&&tl(H,null,U,"mounted")},W),et&16&&!(Y&&(Y.innerHTML||Y.textContent))){let dt=P(R.firstChild,H,R,U,W,_,tt);for(;dt;){Nl=!0;const Ct=dt;dt=dt.nextSibling,k(Ct)}}else et&8&&R.textContent!==H.children&&(Nl=!0,R.textContent=H.children)}return R.nextSibling},P=(R,H,U,W,_,tt,nt)=>{nt=nt||!!H.dynamicChildren;const Y=H.children,G=Y.length;for(let et=0;et{const{slotScopeIds:nt}=H;nt&&(_=_?_.concat(nt):nt);const Y=v(R),G=P(g(R),H,Y,U,W,_,tt);return G&&Xs(G)&&G.data==="]"?g(H.anchor=G):(Nl=!0,x(H.anchor=I("]"),Y,G),G)},F=(R,H,U,W,_,tt)=>{if(Nl=!0,H.el=null,tt){const G=X(R);for(;;){const et=g(R);if(et&&et!==G)k(et);else break}}const nt=g(R),Y=v(R);return k(R),r(null,H,Y,nt,U,W,Ws(Y),_),nt},X=R=>{let H=0;for(;R;)if(R=g(R),R&&Xs(R)&&(R.data==="["&&H++,R.data==="]")){if(H===0)return g(R);H--}return R};return[S,$]}const Ge=Pc;function nu(n){return ru(n)}function lu(n){return ru(n,I3)}function ru(n,l){const r=e0();r.__VUE__=!0;const{insert:h,remove:c,patchProp:g,createElement:v,createText:k,createComment:x,setText:I,setElementText:S,parentNode:$,nextSibling:B,setScopeId:P=rl,insertStaticContent:D}=n,F=(J,lt,at,ct=null,kt=null,yt=null,Ot=!1,$t=null,Rt=!!lt.dynamicChildren)=>{if(J===lt)return;J&&!qn(J,lt)&&(ct=pt(J),Ft(J,kt,yt,!0),J=null),lt.patchFlag===-2&&(Rt=!1,lt.dynamicChildren=null);const{type:Pt,ref:Zt,shapeFlag:Ut}=lt;switch(Pt){case Xl:X(J,lt,at,ct);break;case on:R(J,lt,at,ct);break;case wr:J==null&&H(lt,at,ct,Ot);break;case Kt:rt(J,lt,at,ct,kt,yt,Ot,$t,Rt);break;default:Ut&1?_(J,lt,at,ct,kt,yt,Ot,$t,Rt):Ut&6?ht(J,lt,at,ct,kt,yt,Ot,$t,Rt):(Ut&64||Ut&128)&&Pt.process(J,lt,at,ct,kt,yt,Ot,$t,Rt,jt)}Zt!=null&&kt&&pa(Zt,J&&J.ref,yt,lt||J,!lt)},X=(J,lt,at,ct)=>{if(J==null)h(lt.el=k(lt.children),at,ct);else{const kt=lt.el=J.el;lt.children!==J.children&&I(kt,lt.children)}},R=(J,lt,at,ct)=>{J==null?h(lt.el=x(lt.children||""),at,ct):lt.el=J.el},H=(J,lt,at,ct)=>{[J.el,J.anchor]=D(J.children,lt,at,ct,J.el,J.anchor)},U=({el:J,anchor:lt},at,ct)=>{let kt;for(;J&&J!==lt;)kt=B(J),h(J,at,ct),J=kt;h(lt,at,ct)},W=({el:J,anchor:lt})=>{let at;for(;J&&J!==lt;)at=B(J),c(J),J=at;c(lt)},_=(J,lt,at,ct,kt,yt,Ot,$t,Rt)=>{Ot=Ot||lt.type==="svg",J==null?tt(lt,at,ct,kt,yt,Ot,$t,Rt):G(J,lt,kt,yt,Ot,$t,Rt)},tt=(J,lt,at,ct,kt,yt,Ot,$t)=>{let Rt,Pt;const{type:Zt,props:Ut,shapeFlag:Gt,transition:te,dirs:ae}=J;if(Rt=J.el=v(J.type,yt,Ut&&Ut.is,Ut),Gt&8?S(Rt,J.children):Gt&16&&Y(J.children,Rt,null,ct,kt,yt&&Zt!=="foreignObject",Ot,$t),ae&&tl(J,null,ct,"created"),nt(Rt,J,J.scopeId,Ot,ct),Ut){for(const ge in Ut)ge!=="value"&&!Do(ge)&&g(Rt,ge,null,Ut[ge],yt,J.children,ct,kt,ut);"value"in Ut&&g(Rt,"value",null,Ut.value),(Pt=Ut.onVnodeBeforeMount)&&wn(Pt,ct,J)}ae&&tl(J,null,ct,"beforeMount");const be=(!kt||kt&&!kt.pendingBranch)&&te&&!te.persisted;be&&te.beforeEnter(Rt),h(Rt,lt,at),((Pt=Ut&&Ut.onVnodeMounted)||be||ae)&&Ge(()=>{Pt&&wn(Pt,ct,J),be&&te.enter(Rt),ae&&tl(J,null,ct,"mounted")},kt)},nt=(J,lt,at,ct,kt)=>{if(at&&P(J,at),ct)for(let yt=0;yt{for(let Pt=Rt;Pt{const $t=lt.el=J.el;let{patchFlag:Rt,dynamicChildren:Pt,dirs:Zt}=lt;Rt|=J.patchFlag&16;const Ut=J.props||ye,Gt=lt.props||ye;let te;at&&rr(at,!1),(te=Gt.onVnodeBeforeUpdate)&&wn(te,at,lt,J),Zt&&tl(lt,J,at,"beforeUpdate"),at&&rr(at,!0);const ae=kt&<.type!=="foreignObject";if(Pt?et(J.dynamicChildren,Pt,$t,at,ct,ae,yt):Ot||gt(J,lt,$t,null,at,ct,ae,yt,!1),Rt>0){if(Rt&16)st($t,lt,Ut,Gt,at,ct,kt);else if(Rt&2&&Ut.class!==Gt.class&&g($t,"class",null,Gt.class,kt),Rt&4&&g($t,"style",Ut.style,Gt.style,kt),Rt&8){const be=lt.dynamicProps;for(let ge=0;ge{te&&wn(te,at,lt,J),Zt&&tl(lt,J,at,"updated")},ct)},et=(J,lt,at,ct,kt,yt,Ot)=>{for(let $t=0;$t{if(at!==ct){if(at!==ye)for(const $t in at)!Do($t)&&!($t in ct)&&g(J,$t,at[$t],null,Ot,lt.children,kt,yt,ut);for(const $t in ct){if(Do($t))continue;const Rt=ct[$t],Pt=at[$t];Rt!==Pt&&$t!=="value"&&g(J,$t,Pt,Rt,Ot,lt.children,kt,yt,ut)}"value"in ct&&g(J,"value",at.value,ct.value)}},rt=(J,lt,at,ct,kt,yt,Ot,$t,Rt)=>{const Pt=lt.el=J?J.el:k(""),Zt=lt.anchor=J?J.anchor:k("");let{patchFlag:Ut,dynamicChildren:Gt,slotScopeIds:te}=lt;te&&($t=$t?$t.concat(te):te),J==null?(h(Pt,at,ct),h(Zt,at,ct),Y(lt.children,at,Zt,kt,yt,Ot,$t,Rt)):Ut>0&&Ut&64&&Gt&&J.dynamicChildren?(et(J.dynamicChildren,Gt,at,kt,yt,Ot,$t),(lt.key!=null||kt&<===kt.subTree)&&Fh(J,lt,!0)):gt(J,lt,at,Zt,kt,yt,Ot,$t,Rt)},ht=(J,lt,at,ct,kt,yt,Ot,$t,Rt)=>{lt.slotScopeIds=$t,J==null?lt.shapeFlag&512?kt.ctx.activate(lt,at,ct,Ot,Rt):dt(lt,at,ct,kt,yt,Ot,Rt):Ct(J,lt,Rt)},dt=(J,lt,at,ct,kt,yt,Ot)=>{const $t=J.component=cu(J,ct,kt);if(bs(J)&&($t.ctx.renderer=jt),pu($t),$t.asyncDep){if(kt&&kt.registerDep($t,xt),!J.el){const Rt=$t.subTree=t(on);R(null,Rt,lt,at)}return}xt($t,J,lt,at,kt,yt,Ot)},Ct=(J,lt,at)=>{const ct=lt.component=J.component;if(Bv(J,lt,at))if(ct.asyncDep&&!ct.asyncResolved){wt(ct,lt,at);return}else ct.next=lt,Mv(ct.update),ct.update();else lt.el=J.el,ct.vnode=lt},xt=(J,lt,at,ct,kt,yt,Ot)=>{const $t=()=>{if(J.isMounted){let{next:Zt,bu:Ut,u:Gt,parent:te,vnode:ae}=J,be=Zt,ge;rr(J,!1),Zt?(Zt.el=ae.el,wt(J,Zt,Ot)):Zt=ae,Ut&&Fo(Ut),(ge=Zt.props&&Zt.props.onVnodeBeforeUpdate)&&wn(ge,te,Zt,ae),rr(J,!0);const Ae=na(J),xn=J.subTree;J.subTree=Ae,F(xn,Ae,$(xn.el),pt(xn),J,kt,yt),Zt.el=Ae.el,be===null&&Sh(J,Ae.el),Gt&&Ge(Gt,kt),(ge=Zt.props&&Zt.props.onVnodeUpdated)&&Ge(()=>wn(ge,te,Zt,ae),kt)}else{let Zt;const{el:Ut,props:Gt}=lt,{bm:te,m:ae,parent:be}=J,ge=gr(lt);if(rr(J,!1),te&&Fo(te),!ge&&(Zt=Gt&&Gt.onVnodeBeforeMount)&&wn(Zt,be,lt),rr(J,!0),Ut&&ft){const Ae=()=>{J.subTree=na(J),ft(Ut,J.subTree,J,kt,null)};ge?lt.type.__asyncLoader().then(()=>!J.isUnmounted&&Ae()):Ae()}else{const Ae=J.subTree=na(J);F(null,Ae,at,ct,J,kt,yt),lt.el=Ae.el}if(ae&&Ge(ae,kt),!ge&&(Zt=Gt&&Gt.onVnodeMounted)){const Ae=lt;Ge(()=>wn(Zt,be,Ae),kt)}(lt.shapeFlag&256||be&&gr(be.vnode)&&be.vnode.shapeFlag&256)&&J.a&&Ge(J.a,kt),J.isMounted=!0,lt=at=ct=null}},Rt=J.effect=new gs($t,()=>Da(Pt),J.scope),Pt=J.update=()=>Rt.run();Pt.id=J.uid,rr(J,!0),Pt()},wt=(J,lt,at)=>{lt.component=J;const ct=J.vnode.props;J.vnode=lt,J.next=null,b3(J,lt.props,ct,at),z3(J,lt.children,at),ho(),Z2(),co()},gt=(J,lt,at,ct,kt,yt,Ot,$t,Rt=!1)=>{const Pt=J&&J.children,Zt=J?J.shapeFlag:0,Ut=lt.children,{patchFlag:Gt,shapeFlag:te}=lt;if(Gt>0){if(Gt&128){At(Pt,Ut,at,ct,kt,yt,Ot,$t,Rt);return}else if(Gt&256){It(Pt,Ut,at,ct,kt,yt,Ot,$t,Rt);return}}te&8?(Zt&16&&ut(Pt,kt,yt),Ut!==Pt&&S(at,Ut)):Zt&16?te&16?At(Pt,Ut,at,ct,kt,yt,Ot,$t,Rt):ut(Pt,kt,yt,!0):(Zt&8&&S(at,""),te&16&&Y(Ut,at,ct,kt,yt,Ot,$t,Rt))},It=(J,lt,at,ct,kt,yt,Ot,$t,Rt)=>{J=J||Ur,lt=lt||Ur;const Pt=J.length,Zt=lt.length,Ut=Math.min(Pt,Zt);let Gt;for(Gt=0;GtZt?ut(J,kt,yt,!0,!1,Ut):Y(lt,at,ct,kt,yt,Ot,$t,Rt,Ut)},At=(J,lt,at,ct,kt,yt,Ot,$t,Rt)=>{let Pt=0;const Zt=lt.length;let Ut=J.length-1,Gt=Zt-1;for(;Pt<=Ut&&Pt<=Gt;){const te=J[Pt],ae=lt[Pt]=Rt?Fl(lt[Pt]):In(lt[Pt]);if(qn(te,ae))F(te,ae,at,null,kt,yt,Ot,$t,Rt);else break;Pt++}for(;Pt<=Ut&&Pt<=Gt;){const te=J[Ut],ae=lt[Gt]=Rt?Fl(lt[Gt]):In(lt[Gt]);if(qn(te,ae))F(te,ae,at,null,kt,yt,Ot,$t,Rt);else break;Ut--,Gt--}if(Pt>Ut){if(Pt<=Gt){const te=Gt+1,ae=teGt)for(;Pt<=Ut;)Ft(J[Pt],kt,yt,!0),Pt++;else{const te=Pt,ae=Pt,be=new Map;for(Pt=ae;Pt<=Gt;Pt++){const cn=lt[Pt]=Rt?Fl(lt[Pt]):In(lt[Pt]);cn.key!=null&&be.set(cn.key,Pt)}let ge,Ae=0;const xn=Gt-ae+1;let hl=!1,Ps=0;const Bl=new Array(xn);for(Pt=0;Pt=xn){Ft(cn,kt,yt,!0);continue}let Bn;if(cn.key!=null)Bn=be.get(cn.key);else for(ge=ae;ge<=Gt;ge++)if(Bl[ge-ae]===0&&qn(cn,lt[ge])){Bn=ge;break}Bn===void 0?Ft(cn,kt,yt,!0):(Bl[Bn-ae]=Pt+1,Bn>=Ps?Ps=Bn:hl=!0,F(cn,lt[Bn],at,null,kt,yt,Ot,$t,Rt),Ae++)}const Ls=hl?y3(Bl):Ur;for(ge=Ls.length-1,Pt=xn-1;Pt>=0;Pt--){const cn=ae+Pt,Bn=lt[cn],yo=cn+1{const{el:yt,type:Ot,transition:$t,children:Rt,shapeFlag:Pt}=J;if(Pt&6){Tt(J.component.subTree,lt,at,ct);return}if(Pt&128){J.suspense.move(lt,at,ct);return}if(Pt&64){Ot.move(J,lt,at,jt);return}if(Ot===Kt){h(yt,lt,at);for(let Ut=0;Ut$t.enter(yt),kt);else{const{leave:Ut,delayLeave:Gt,afterLeave:te}=$t,ae=()=>h(yt,lt,at),be=()=>{Ut(yt,()=>{ae(),te&&te()})};Gt?Gt(yt,ae,be):be()}else h(yt,lt,at)},Ft=(J,lt,at,ct=!1,kt=!1)=>{const{type:yt,props:Ot,ref:$t,children:Rt,dynamicChildren:Pt,shapeFlag:Zt,patchFlag:Ut,dirs:Gt}=J;if($t!=null&&pa($t,null,at,J,!0),Zt&256){lt.ctx.deactivate(J);return}const te=Zt&1&&Gt,ae=!gr(J);let be;if(ae&&(be=Ot&&Ot.onVnodeBeforeUnmount)&&wn(be,lt,J),Zt&6)Et(J.component,at,ct);else{if(Zt&128){J.suspense.unmount(at,ct);return}te&&tl(J,null,lt,"beforeUnmount"),Zt&64?J.type.remove(J,lt,at,kt,jt,ct):Pt&&(yt!==Kt||Ut>0&&Ut&64)?ut(Pt,lt,at,!1,!0):(yt===Kt&&Ut&384||!kt&&Zt&16)&&ut(Rt,lt,at),ct&&Qt(J)}(ae&&(be=Ot&&Ot.onVnodeUnmounted)||te)&&Ge(()=>{be&&wn(be,lt,J),te&&tl(J,null,lt,"unmounted")},at)},Qt=J=>{const{type:lt,el:at,anchor:ct,transition:kt}=J;if(lt===Kt){Jt(at,ct);return}if(lt===wr){W(J);return}const yt=()=>{c(at),kt&&!kt.persisted&&kt.afterLeave&&kt.afterLeave()};if(J.shapeFlag&1&&kt&&!kt.persisted){const{leave:Ot,delayLeave:$t}=kt,Rt=()=>Ot(at,yt);$t?$t(J.el,yt,Rt):Rt()}else yt()},Jt=(J,lt)=>{let at;for(;J!==lt;)at=B(J),c(J),J=at;c(lt)},Et=(J,lt,at)=>{const{bum:ct,scope:kt,update:yt,subTree:Ot,um:$t}=J;ct&&Fo(ct),kt.stop(),yt&&(yt.active=!1,Ft(Ot,J,lt,at)),$t&&Ge($t,lt),Ge(()=>{J.isUnmounted=!0},lt),lt&<.pendingBranch&&!lt.isUnmounted&&J.asyncDep&&!J.asyncResolved&&J.suspenseId===lt.pendingId&&(lt.deps--,lt.deps===0&<.resolve())},ut=(J,lt,at,ct=!1,kt=!1,yt=0)=>{for(let Ot=yt;OtJ.shapeFlag&6?pt(J.component.subTree):J.shapeFlag&128?J.suspense.next():B(J.anchor||J.el),Nt=(J,lt,at)=>{J==null?lt._vnode&&Ft(lt._vnode,null,null,!0):F(lt._vnode||null,J,lt,null,null,null,at),Z2(),ca(),lt._vnode=J},jt={p:F,um:Ft,m:Tt,r:Qt,mt:dt,mc:Y,pc:gt,pbc:et,n:pt,o:n};let bt,ft;return l&&([bt,ft]=l(jt)),{render:Nt,hydrate:bt,createApp:m3(Nt,bt)}}function rr({effect:n,update:l},r){n.allowRecurse=l.allowRecurse=r}function Fh(n,l,r=!1){const h=n.children,c=l.children;if(se(h)&&se(c))for(let g=0;g>1,n[r[k]]0&&(l[h]=r[g-1]),r[g]=h)}}for(g=r.length,v=r[g-1];g-- >0;)r[g]=v,v=l[v];return r}const C3=n=>n.__isTeleport,To=n=>n&&(n.disabled||n.disabled===""),i1=n=>typeof SVGElement<"u"&&n instanceof SVGElement,i0=(n,l)=>{const r=n&&n.to;return Ee(r)?l?l(r):null:r},S3={__isTeleport:!0,process(n,l,r,h,c,g,v,k,x,I){const{mc:S,pc:$,pbc:B,o:{insert:P,querySelector:D,createText:F,createComment:X}}=I,R=To(l.props);let{shapeFlag:H,children:U,dynamicChildren:W}=l;if(n==null){const _=l.el=F(""),tt=l.anchor=F("");P(_,r,h),P(tt,r,h);const nt=l.target=i0(l.props,D),Y=l.targetAnchor=F("");nt&&(P(Y,nt),v=v||i1(nt));const G=(et,st)=>{H&16&&S(U,et,st,c,g,v,k,x)};R?G(r,tt):nt&&G(nt,Y)}else{l.el=n.el;const _=l.anchor=n.anchor,tt=l.target=n.target,nt=l.targetAnchor=n.targetAnchor,Y=To(n.props),G=Y?r:tt,et=Y?_:nt;if(v=v||i1(tt),W?(B(n.dynamicChildren,W,G,c,g,v,k),Fh(n,l,!0)):x||$(n,l,G,et,c,g,v,k,!1),R)Y||qs(l,r,_,I,1);else if((l.props&&l.props.to)!==(n.props&&n.props.to)){const st=l.target=i0(l.props,D);st&&qs(l,st,null,I,0)}else Y&&qs(l,tt,nt,I,1)}su(l)},remove(n,l,r,h,{um:c,o:{remove:g}},v){const{shapeFlag:k,children:x,anchor:I,targetAnchor:S,target:$,props:B}=n;if($&&g(S),(v||!To(B))&&(g(I),k&16))for(let P=0;P0?fn||Ur:null,au(),br>0&&fn&&fn.push(n),n}function A3(n,l,r,h,c,g){return iu(Rh(n,l,r,h,c,g,!0))}function _a(n,l,r,h,c){return iu(t(n,l,r,h,c,!0))}function ql(n){return n?n.__v_isVNode===!0:!1}function qn(n,l){return n.type===l.type&&n.key===l.key}function B3(n){}const Wa="__vInternal",hu=({key:n})=>n??null,la=({ref:n,ref_key:l,ref_for:r})=>(typeof n=="number"&&(n=""+n),n!=null?Ee(n)||Me(n)||oe(n)?{i:Xe,r:n,k:l,f:!!r}:n:null);function Rh(n,l=null,r=null,h=0,c=null,g=n===Kt?0:1,v=!1,k=!1){const x={__v_isVNode:!0,__v_skip:!0,type:n,props:l,key:l&&hu(l),ref:l&&la(l),scopeId:Fa,slotScopeIds:null,children:r,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:g,patchFlag:h,dynamicProps:c,dynamicChildren:null,appContext:null,ctx:Xe};return k?(Th(x,r),g&128&&n.normalize(x)):r&&(x.shapeFlag|=Ee(r)?8:16),br>0&&!v&&fn&&(x.patchFlag>0||g&6)&&x.patchFlag!==32&&fn.push(x),x}const t=H3;function H3(n,l=null,r=null,h=0,c=null,g=!1){if((!n||n===Wc)&&(n=on),ql(n)){const k=Gn(n,l,!0);return r&&Th(k,r),br>0&&!g&&fn&&(k.shapeFlag&6?fn[fn.indexOf(n)]=k:fn.push(k)),k.patchFlag|=-2,k}if(T3(n)&&(n=n.__vccOpts),l){l=du(l);let{class:k,style:x}=l;k&&!Ee(k)&&(l.class=ms(k)),Fe(x)&&(mh(x)&&!se(x)&&(x=qe({},x)),l.style=fs(x))}const v=Ee(n)?1:jc(n)?128:C3(n)?64:Fe(n)?4:oe(n)?2:0;return Rh(n,l,r,h,c,v,g,!0)}function du(n){return n?mh(n)||Wa in n?qe({},n):n:null}function Gn(n,l,r=!1){const{props:h,ref:c,patchFlag:g,children:v}=n,k=l?o(h||{},l):h;return{__v_isVNode:!0,__v_skip:!0,type:n.type,props:k,key:k&&hu(k),ref:l&&l.ref?r&&c?se(c)?c.concat(la(l)):[c,la(l)]:la(l):c,scopeId:n.scopeId,slotScopeIds:n.slotScopeIds,children:v,target:n.target,targetAnchor:n.targetAnchor,staticCount:n.staticCount,shapeFlag:n.shapeFlag,patchFlag:l&&n.type!==Kt?g===-1?16:g|16:g,dynamicProps:n.dynamicProps,dynamicChildren:n.dynamicChildren,appContext:n.appContext,dirs:n.dirs,transition:n.transition,component:n.component,suspense:n.suspense,ssContent:n.ssContent&&Gn(n.ssContent),ssFallback:n.ssFallback&&Gn(n.ssFallback),el:n.el,anchor:n.anchor,ctx:n.ctx,ce:n.ce}}function e(n=" ",l=0){return t(Xl,null,n,l)}function N3(n,l){const r=t(wr,null,n);return r.staticCount=l,r}function j3(n="",l=!1){return l?(xs(),_a(on,null,n)):t(on,null,n)}function In(n){return n==null||typeof n=="boolean"?t(on):se(n)?t(Kt,null,n.slice()):typeof n=="object"?Fl(n):t(Xl,null,String(n))}function Fl(n){return n.el===null&&n.patchFlag!==-1||n.memo?n:Gn(n)}function Th(n,l){let r=0;const{shapeFlag:h}=n;if(l==null)l=null;else if(se(l))r=16;else if(typeof l=="object")if(h&65){const c=l.default;c&&(c._c&&(c._d=!1),Th(n,c()),c._c&&(c._d=!0));return}else{r=32;const c=l._;!c&&!(Wa in l)?l._ctx=Xe:c===3&&Xe&&(Xe.slots._===1?l._=1:(l._=2,n.patchFlag|=1024))}else oe(l)?(l={default:l,_ctx:Xe},r=32):(l=String(l),h&64?(r=16,l=[e(l)]):r=8);n.children=l,n.shapeFlag|=r}function o(...n){const l={};for(let r=0;rOe||Xe;let Eh,Dr,h1="__VUE_INSTANCE_SETTERS__";(Dr=e0()[h1])||(Dr=e0()[h1]=[]),Dr.push(n=>Oe=n),Eh=n=>{Dr.length>1?Dr.forEach(l=>l(n)):Dr[0](n)};const Yl=n=>{Eh(n),n.scope.on()},_l=()=>{Oe&&Oe.scope.off(),Eh(null)};function uu(n){return n.vnode.shapeFlag&4}let Jr=!1;function pu(n,l=!1){Jr=l;const{props:r,children:h}=n.vnode,c=uu(n);k3(n,r,c,l),x3(n,h);const g=c?D3(n,l):void 0;return Jr=!1,g}function D3(n,l){const r=n.type;n.accessCache=Object.create(null),n.proxy=ws(new Proxy(n.ctx,r0));const{setup:h}=r;if(h){const c=n.setupContext=h.length>1?wu(n):null;Yl(n),ho();const g=fl(h,n,0,[n.props,c]);if(co(),_l(),zh(g)){if(g.then(_l,_l),l)return g.then(v=>{d0(n,v,l)}).catch(v=>{yr(v,n,0)});n.asyncDep=g}else d0(n,g,l)}else gu(n,l)}function d0(n,l,r){oe(l)?n.type.__ssrInlineRender?n.ssrRender=l:n.render=l:Fe(l)&&(n.setupState=Mh(l)),gu(n,r)}let ga,c0;function O3(n){ga=n,c0=l=>{l.render._rc&&(l.withProxy=new Proxy(l.ctx,Kv))}}const F3=()=>!ga;function gu(n,l,r){const h=n.type;if(!n.render){if(!l&&ga&&!h.render){const c=h.template||Dh(n).template;if(c){const{isCustomElement:g,compilerOptions:v}=n.appContext.config,{delimiters:k,compilerOptions:x}=h,I=qe(qe({isCustomElement:g,delimiters:k},v),x);h.render=ga(c,I)}}n.render=h.render||rl,c0&&c0(n)}Yl(n),ho(),u3(n),co(),_l()}function R3(n){return n.attrsProxy||(n.attrsProxy=new Proxy(n.attrs,{get(l,r){return mn(n,"get","$attrs"),l[r]}}))}function wu(n){const l=r=>{n.exposed=r||{}};return{get attrs(){return R3(n)},slots:n.slots,emit:n.emit,expose:l}}function Xa(n){if(n.exposed)return n.exposeProxy||(n.exposeProxy=new Proxy(Mh(ws(n.exposed)),{get(l,r){if(r in l)return l[r];if(r in Ro)return Ro[r](n)},has(l,r){return r in l||r in Ro}}))}function u0(n,l=!0){return oe(n)?n.displayName||n.name:n.name||l&&n.__name}function T3(n){return oe(n)&&"__vccOpts"in n}const q=(n,l)=>tv(n,l,Jr);function Ln(n,l,r){const h=arguments.length;return h===2?Fe(l)&&!se(l)?ql(l)?t(n,null,[l]):t(n,l):t(n,null,l):(h>3?r=Array.prototype.slice.call(arguments,2):h===3&&ql(r)&&(r=[r]),t(n,l,r))}const vu=Symbol.for("v-scx"),fu=()=>de(vu);function E3(){}function V3(n,l,r,h){const c=r[h];if(c&&mu(c,n))return c;const g=l();return g.memo=n.slice(),r[h]=g}function mu(n,l){const r=n.memo;if(r.length!=l.length)return!1;for(let h=0;h0&&fn&&fn.push(n),!0}const ku="3.3.4",_3={createComponentInstance:cu,setupComponent:pu,renderComponentRoot:na,setCurrentRenderingInstance:Qo,isVNode:ql,normalizeVNode:In},W3=_3,X3=null,q3=null;function Y3(n,l){const r=Object.create(null),h=n.split(",");for(let c=0;c!!r[c.toLowerCase()]:c=>!!r[c]}const Bi={},U3=/^on[^a-z]/,G3=n=>U3.test(n),Z3=n=>n.startsWith("onUpdate:"),zs=Object.assign,kn=Array.isArray,Is=n=>Mu(n)==="[object Set]",d1=n=>Mu(n)==="[object Date]",bu=n=>typeof n=="function",ns=n=>typeof n=="string",c1=n=>typeof n=="symbol",p0=n=>n!==null&&typeof n=="object",K3=Object.prototype.toString,Mu=n=>K3.call(n),Vh=n=>{const l=Object.create(null);return r=>l[r]||(l[r]=n(r))},Q3=/-(\w)/g,Hi=Vh(n=>n.replace(Q3,(l,r)=>r?r.toUpperCase():"")),J3=/\B([A-Z])/g,Tl=Vh(n=>n.replace(J3,"-$1").toLowerCase()),tf=Vh(n=>n.charAt(0).toUpperCase()+n.slice(1)),ef=(n,l)=>{for(let r=0;r{const l=parseFloat(n);return isNaN(l)?n:l},w0=n=>{const l=ns(n)?Number(n):NaN;return isNaN(l)?n:l},nf="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",lf=Y3(nf);function xu(n){return!!n||n===""}function rf(n,l){if(n.length!==l.length)return!1;let r=!0;for(let h=0;r&&hUl(r,l))}const of="http://www.w3.org/2000/svg",hr=typeof document<"u"?document:null,u1=hr&&hr.createElement("template"),sf={insert:(n,l,r)=>{l.insertBefore(n,r||null)},remove:n=>{const l=n.parentNode;l&&l.removeChild(n)},createElement:(n,l,r,h)=>{const c=l?hr.createElementNS(of,n):hr.createElement(n,r?{is:r}:void 0);return n==="select"&&h&&h.multiple!=null&&c.setAttribute("multiple",h.multiple),c},createText:n=>hr.createTextNode(n),createComment:n=>hr.createComment(n),setText:(n,l)=>{n.nodeValue=l},setElementText:(n,l)=>{n.textContent=l},parentNode:n=>n.parentNode,nextSibling:n=>n.nextSibling,querySelector:n=>hr.querySelector(n),setScopeId(n,l){n.setAttribute(l,"")},insertStaticContent(n,l,r,h,c,g){const v=r?r.previousSibling:l.lastChild;if(c&&(c===g||c.nextSibling))for(;l.insertBefore(c.cloneNode(!0),r),!(c===g||!(c=c.nextSibling)););else{u1.innerHTML=h?`${n}`:n;const k=u1.content;if(h){const x=k.firstChild;for(;x.firstChild;)k.appendChild(x.firstChild);k.removeChild(x)}l.insertBefore(k,r)}return[v?v.nextSibling:l.firstChild,r?r.previousSibling:l.lastChild]}};function af(n,l,r){const h=n._vtc;h&&(l=(l?[l,...h]:[...h]).join(" ")),l==null?n.removeAttribute("class"):r?n.setAttribute("class",l):n.className=l}function hf(n,l,r){const h=n.style,c=ns(r);if(r&&!c){if(l&&!ns(l))for(const g in l)r[g]==null&&v0(h,g,"");for(const g in r)v0(h,g,r[g])}else{const g=h.display;c?l!==r&&(h.cssText=r):l&&n.removeAttribute("style"),"_vod"in n&&(h.display=g)}}const p1=/\s*!important$/;function v0(n,l,r){if(kn(r))r.forEach(h=>v0(n,l,h));else if(r==null&&(r=""),l.startsWith("--"))n.setProperty(l,r);else{const h=df(n,l);p1.test(r)?n.setProperty(Tl(h),r.replace(p1,""),"important"):n[h]=r}}const g1=["Webkit","Moz","ms"],Ni={};function df(n,l){const r=Ni[l];if(r)return r;let h=Sn(l);if(h!=="filter"&&h in n)return Ni[l]=h;h=tf(h);for(let c=0;cji||(vf.then(()=>ji=0),ji=Date.now());function mf(n,l){const r=h=>{if(!h._vts)h._vts=Date.now();else if(h._vts<=r.attached)return;Cn(kf(h,r.value),l,5,[h])};return r.value=n,r.attached=ff(),r}function kf(n,l){if(kn(l)){const r=n.stopImmediatePropagation;return n.stopImmediatePropagation=()=>{r.call(n),n._stopped=!0},l.map(h=>c=>!c._stopped&&h&&h(c))}else return l}const f1=/^on[a-z]/,bf=(n,l,r,h,c=!1,g,v,k,x)=>{l==="class"?af(n,h,c):l==="style"?hf(n,r,h):G3(l)?Z3(l)||gf(n,l,r,h,v):(l[0]==="."?(l=l.slice(1),!0):l[0]==="^"?(l=l.slice(1),!1):Mf(n,l,h,c))?uf(n,l,h,g,v,k,x):(l==="true-value"?n._trueValue=h:l==="false-value"&&(n._falseValue=h),cf(n,l,h,c))};function Mf(n,l,r,h){return h?!!(l==="innerHTML"||l==="textContent"||l in n&&f1.test(l)&&bu(r)):l==="spellcheck"||l==="draggable"||l==="translate"||l==="form"||l==="list"&&n.tagName==="INPUT"||l==="type"&&n.tagName==="TEXTAREA"||f1.test(l)&&ns(r)?!1:l in n}function zu(n,l){const r=Cr(n);class h extends Ya{constructor(g){super(r,g,l)}}return h.def=r,h}const xf=n=>zu(n,Ru),zf=typeof HTMLElement<"u"?HTMLElement:class{};class Ya extends zf{constructor(l,r={},h){super(),this._def=l,this._props=r,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this.shadowRoot&&h?h(this._createVNode(),this.shadowRoot):(this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,we(()=>{this._connected||(k0(null,this.shadowRoot),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let h=0;h{for(const c of h)this._setAttr(c.attributeName)}).observe(this,{attributes:!0});const l=(h,c=!1)=>{const{props:g,styles:v}=h;let k;if(g&&!kn(g))for(const x in g){const I=g[x];(I===Number||I&&I.type===Number)&&(x in this._props&&(this._props[x]=w0(this._props[x])),(k||(k=Object.create(null)))[Hi(x)]=!0)}this._numberProps=k,c&&this._resolveProps(h),this._applyStyles(v),this._update()},r=this._def.__asyncLoader;r?r().then(h=>l(h,!0)):l(this._def)}_resolveProps(l){const{props:r}=l,h=kn(r)?r:Object.keys(r||{});for(const c of Object.keys(this))c[0]!=="_"&&h.includes(c)&&this._setProp(c,this[c],!0,!1);for(const c of h.map(Hi))Object.defineProperty(this,c,{get(){return this._getProp(c)},set(g){this._setProp(c,g)}})}_setAttr(l){let r=this.getAttribute(l);const h=Hi(l);this._numberProps&&this._numberProps[h]&&(r=w0(r)),this._setProp(h,r,!1)}_getProp(l){return this._props[l]}_setProp(l,r,h=!0,c=!0){r!==this._props[l]&&(this._props[l]=r,c&&this._instance&&this._update(),h&&(r===!0?this.setAttribute(Tl(l),""):typeof r=="string"||typeof r=="number"?this.setAttribute(Tl(l),r+""):r||this.removeAttribute(Tl(l))))}_update(){k0(this._createVNode(),this.shadowRoot)}_createVNode(){const l=t(this._def,zs({},this._props));return this._instance||(l.ce=r=>{this._instance=r,r.isCE=!0;const h=(g,v)=>{this.dispatchEvent(new CustomEvent(g,{detail:v}))};r.emit=(g,...v)=>{h(g,v),Tl(g)!==g&&h(Tl(g),v)};let c=this;for(;c=c&&(c.parentNode||c.host);)if(c instanceof Ya){r.parent=c._instance,r.provides=c._instance.provides;break}}),l}_applyStyles(l){l&&l.forEach(r=>{const h=document.createElement("style");h.textContent=r,this.shadowRoot.appendChild(h)})}}function If(n="$style"){{const l=al();if(!l)return Bi;const r=l.type.__cssModules;if(!r)return Bi;const h=r[n];return h||Bi}}function yf(n){const l=al();if(!l)return;const r=l.ut=(c=n(l.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${l.uid}"]`)).forEach(g=>m0(g,c))},h=()=>{const c=n(l.proxy);f0(l.subTree,c),r(c)};Lc(h),Ve(()=>{const c=new MutationObserver(h);c.observe(l.subTree.el.parentNode,{childList:!0}),Va(()=>c.disconnect())})}function f0(n,l){if(n.shapeFlag&128){const r=n.suspense;n=r.activeBranch,r.pendingBranch&&!r.isHydrating&&r.effects.push(()=>{f0(r.activeBranch,l)})}for(;n.component;)n=n.component.subTree;if(n.shapeFlag&1&&n.el)m0(n.el,l);else if(n.type===Kt)n.children.forEach(r=>f0(r,l));else if(n.type===wr){let{el:r,anchor:h}=n;for(;r&&(m0(r,l),r!==h);)r=r.nextSibling}}function m0(n,l){if(n.nodeType===1){const r=n.style;for(const h in l)r.setProperty(`--${h}`,l[h])}}const jl="transition",Co="animation",Zn=(n,{slots:l})=>Ln(Oc,yu(n),l);Zn.displayName="Transition";const Iu={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},Cf=Zn.props=zs({},Bh,Iu),or=(n,l=[])=>{kn(n)?n.forEach(r=>r(...l)):n&&n(...l)},m1=n=>n?kn(n)?n.some(l=>l.length>1):n.length>1:!1;function yu(n){const l={};for(const rt in n)rt in Iu||(l[rt]=n[rt]);if(n.css===!1)return l;const{name:r="v",type:h,duration:c,enterFromClass:g=`${r}-enter-from`,enterActiveClass:v=`${r}-enter-active`,enterToClass:k=`${r}-enter-to`,appearFromClass:x=g,appearActiveClass:I=v,appearToClass:S=k,leaveFromClass:$=`${r}-leave-from`,leaveActiveClass:B=`${r}-leave-active`,leaveToClass:P=`${r}-leave-to`}=n,D=Sf(c),F=D&&D[0],X=D&&D[1],{onBeforeEnter:R,onEnter:H,onEnterCancelled:U,onLeave:W,onLeaveCancelled:_,onBeforeAppear:tt=R,onAppear:nt=H,onAppearCancelled:Y=U}=l,G=(rt,ht,dt)=>{Dl(rt,ht?S:k),Dl(rt,ht?I:v),dt&&dt()},et=(rt,ht)=>{rt._isLeaving=!1,Dl(rt,$),Dl(rt,P),Dl(rt,B),ht&&ht()},st=rt=>(ht,dt)=>{const Ct=rt?nt:H,xt=()=>G(ht,rt,dt);or(Ct,[ht,xt]),k1(()=>{Dl(ht,rt?x:g),cl(ht,rt?S:k),m1(Ct)||b1(ht,h,F,xt)})};return zs(l,{onBeforeEnter(rt){or(R,[rt]),cl(rt,g),cl(rt,v)},onBeforeAppear(rt){or(tt,[rt]),cl(rt,x),cl(rt,I)},onEnter:st(!1),onAppear:st(!0),onLeave(rt,ht){rt._isLeaving=!0;const dt=()=>et(rt,ht);cl(rt,$),Su(),cl(rt,B),k1(()=>{rt._isLeaving&&(Dl(rt,$),cl(rt,P),m1(W)||b1(rt,h,X,dt))}),or(W,[rt,dt])},onEnterCancelled(rt){G(rt,!1),or(U,[rt])},onAppearCancelled(rt){G(rt,!0),or(Y,[rt])},onLeaveCancelled(rt){et(rt),or(_,[rt])}})}function Sf(n){if(n==null)return null;if(p0(n))return[Pi(n.enter),Pi(n.leave)];{const l=Pi(n);return[l,l]}}function Pi(n){return w0(n)}function cl(n,l){l.split(/\s+/).forEach(r=>r&&n.classList.add(r)),(n._vtc||(n._vtc=new Set)).add(l)}function Dl(n,l){l.split(/\s+/).forEach(h=>h&&n.classList.remove(h));const{_vtc:r}=n;r&&(r.delete(l),r.size||(n._vtc=void 0))}function k1(n){requestAnimationFrame(()=>{requestAnimationFrame(n)})}let $f=0;function b1(n,l,r,h){const c=n._endId=++$f,g=()=>{c===n._endId&&h()};if(r)return setTimeout(g,r);const{type:v,timeout:k,propCount:x}=Cu(n,l);if(!v)return h();const I=v+"end";let S=0;const $=()=>{n.removeEventListener(I,B),g()},B=P=>{P.target===n&&++S>=x&&$()};setTimeout(()=>{S(r[D]||"").split(", "),c=h(`${jl}Delay`),g=h(`${jl}Duration`),v=M1(c,g),k=h(`${Co}Delay`),x=h(`${Co}Duration`),I=M1(k,x);let S=null,$=0,B=0;l===jl?v>0&&(S=jl,$=v,B=g.length):l===Co?I>0&&(S=Co,$=I,B=x.length):($=Math.max(v,I),S=$>0?v>I?jl:Co:null,B=S?S===jl?g.length:x.length:0);const P=S===jl&&/\b(transform|all)(,|$)/.test(h(`${jl}Property`).toString());return{type:S,timeout:$,propCount:B,hasTransform:P}}function M1(n,l){for(;n.lengthx1(r)+x1(n[h])))}function x1(n){return Number(n.slice(0,-1).replace(",","."))*1e3}function Su(){return document.body.offsetHeight}const $u=new WeakMap,Au=new WeakMap,Bu={name:"TransitionGroup",props:zs({},Cf,{tag:String,moveClass:String}),setup(n,{slots:l}){const r=al(),h=Ah();let c,g;return Ea(()=>{if(!c.length)return;const v=n.moveClass||`${n.name||"v"}-move`;if(!jf(c[0].el,r.vnode.el,v))return;c.forEach(Bf),c.forEach(Hf);const k=c.filter(Nf);Su(),k.forEach(x=>{const I=x.el,S=I.style;cl(I,v),S.transform=S.webkitTransform=S.transitionDuration="";const $=I._moveCb=B=>{B&&B.target!==I||(!B||/transform$/.test(B.propertyName))&&(I.removeEventListener("transitionend",$),I._moveCb=null,Dl(I,v))};I.addEventListener("transitionend",$)})}),()=>{const v=le(n),k=yu(v);let x=v.tag||Kt;c=g,g=l.default?Ra(l.default()):[];for(let I=0;Idelete n.mode;Bu.props;const Hu=Bu;function Bf(n){const l=n.el;l._moveCb&&l._moveCb(),l._enterCb&&l._enterCb()}function Hf(n){Au.set(n,n.el.getBoundingClientRect())}function Nf(n){const l=$u.get(n),r=Au.get(n),h=l.left-r.left,c=l.top-r.top;if(h||c){const g=n.el.style;return g.transform=g.webkitTransform=`translate(${h}px,${c}px)`,g.transitionDuration="0s",n}}function jf(n,l,r){const h=n.cloneNode();n._vtc&&n._vtc.forEach(v=>{v.split(/\s+/).forEach(k=>k&&h.classList.remove(k))}),r.split(/\s+/).forEach(v=>v&&h.classList.add(v)),h.style.display="none";const c=l.nodeType===1?l:l.parentNode;c.appendChild(h);const{hasTransform:g}=Cu(h);return c.removeChild(h),g}const Gl=n=>{const l=n.props["onUpdate:modelValue"]||!1;return kn(l)?r=>ef(l,r):l};function Pf(n){n.target.composing=!0}function z1(n){const l=n.target;l.composing&&(l.composing=!1,l.dispatchEvent(new Event("input")))}const ls={created(n,{modifiers:{lazy:l,trim:r,number:h}},c){n._assign=Gl(c);const g=h||c.props&&c.props.type==="number";pl(n,l?"change":"input",v=>{if(v.target.composing)return;let k=n.value;r&&(k=k.trim()),g&&(k=g0(k)),n._assign(k)}),r&&pl(n,"change",()=>{n.value=n.value.trim()}),l||(pl(n,"compositionstart",Pf),pl(n,"compositionend",z1),pl(n,"change",z1))},mounted(n,{value:l}){n.value=l??""},beforeUpdate(n,{value:l,modifiers:{lazy:r,trim:h,number:c}},g){if(n._assign=Gl(g),n.composing||document.activeElement===n&&n.type!=="range"&&(r||h&&n.value.trim()===l||(c||n.type==="number")&&g0(n.value)===l))return;const v=l??"";n.value!==v&&(n.value=v)}},_h={deep:!0,created(n,l,r){n._assign=Gl(r),pl(n,"change",()=>{const h=n._modelValue,c=to(n),g=n.checked,v=n._assign;if(kn(h)){const k=qa(h,c),x=k!==-1;if(g&&!x)v(h.concat(c));else if(!g&&x){const I=[...h];I.splice(k,1),v(I)}}else if(Is(h)){const k=new Set(h);g?k.add(c):k.delete(c),v(k)}else v(ju(n,g))})},mounted:I1,beforeUpdate(n,l,r){n._assign=Gl(r),I1(n,l,r)}};function I1(n,{value:l,oldValue:r},h){n._modelValue=l,kn(l)?n.checked=qa(l,h.props.value)>-1:Is(l)?n.checked=l.has(h.props.value):l!==r&&(n.checked=Ul(l,ju(n,!0)))}const Wh={created(n,{value:l},r){n.checked=Ul(l,r.props.value),n._assign=Gl(r),pl(n,"change",()=>{n._assign(to(n))})},beforeUpdate(n,{value:l,oldValue:r},h){n._assign=Gl(h),l!==r&&(n.checked=Ul(l,h.props.value))}},Nu={deep:!0,created(n,{value:l,modifiers:{number:r}},h){const c=Is(l);pl(n,"change",()=>{const g=Array.prototype.filter.call(n.options,v=>v.selected).map(v=>r?g0(to(v)):to(v));n._assign(n.multiple?c?new Set(g):g:g[0])}),n._assign=Gl(h)},mounted(n,{value:l}){y1(n,l)},beforeUpdate(n,l,r){n._assign=Gl(r)},updated(n,{value:l}){y1(n,l)}};function y1(n,l){const r=n.multiple;if(!(r&&!kn(l)&&!Is(l))){for(let h=0,c=n.options.length;h-1:g.selected=l.has(v);else if(Ul(to(g),l)){n.selectedIndex!==h&&(n.selectedIndex=h);return}}!r&&n.selectedIndex!==-1&&(n.selectedIndex=-1)}}function to(n){return"_value"in n?n._value:n.value}function ju(n,l){const r=l?"_trueValue":"_falseValue";return r in n?n[r]:l}const Pu={created(n,l,r){Ys(n,l,r,null,"created")},mounted(n,l,r){Ys(n,l,r,null,"mounted")},beforeUpdate(n,l,r,h){Ys(n,l,r,h,"beforeUpdate")},updated(n,l,r,h){Ys(n,l,r,h,"updated")}};function Lu(n,l){switch(n){case"SELECT":return Nu;case"TEXTAREA":return ls;default:switch(l){case"checkbox":return _h;case"radio":return Wh;default:return ls}}}function Ys(n,l,r,h,c){const v=Lu(n.tagName,r.props&&r.props.type)[c];v&&v(n,l,r,h)}function Lf(){ls.getSSRProps=({value:n})=>({value:n}),Wh.getSSRProps=({value:n},l)=>{if(l.props&&Ul(l.props.value,n))return{checked:!0}},_h.getSSRProps=({value:n},l)=>{if(kn(n)){if(l.props&&qa(n,l.props.value)>-1)return{checked:!0}}else if(Is(n)){if(l.props&&n.has(l.props.value))return{checked:!0}}else if(n)return{checked:!0}},Pu.getSSRProps=(n,l)=>{if(typeof l.type!="string")return;const r=Lu(l.type.toUpperCase(),l.props&&l.props.type);if(r.getSSRProps)return r.getSSRProps(n,l)}}const Df=["ctrl","shift","alt","meta"],Of={stop:n=>n.stopPropagation(),prevent:n=>n.preventDefault(),self:n=>n.target!==n.currentTarget,ctrl:n=>!n.ctrlKey,shift:n=>!n.shiftKey,alt:n=>!n.altKey,meta:n=>!n.metaKey,left:n=>"button"in n&&n.button!==0,middle:n=>"button"in n&&n.button!==1,right:n=>"button"in n&&n.button!==2,exact:(n,l)=>Df.some(r=>n[`${r}Key`]&&!l.includes(r))},Ff=(n,l)=>(r,...h)=>{for(let c=0;cr=>{if(!("key"in r))return;const h=Tl(r.key);if(l.some(c=>c===h||Rf[c]===h))return n(r)},Dn={beforeMount(n,{value:l},{transition:r}){n._vod=n.style.display==="none"?"":n.style.display,r&&l?r.beforeEnter(n):So(n,l)},mounted(n,{value:l},{transition:r}){r&&l&&r.enter(n)},updated(n,{value:l,oldValue:r},{transition:h}){!l!=!r&&(h?l?(h.beforeEnter(n),So(n,!0),h.enter(n)):h.leave(n,()=>{So(n,!1)}):So(n,l))},beforeUnmount(n,{value:l}){So(n,l)}};function So(n,l){n.style.display=l?n._vod:"none"}function Ef(){Dn.getSSRProps=({value:n})=>{if(!n)return{style:{display:"none"}}}}const Du=zs({patchProp:bf},sf);let Vo,C1=!1;function Ou(){return Vo||(Vo=nu(Du))}function Fu(){return Vo=C1?Vo:lu(Du),C1=!0,Vo}const k0=(...n)=>{Ou().render(...n)},Ru=(...n)=>{Fu().hydrate(...n)},Tu=(...n)=>{const l=Ou().createApp(...n),{mount:r}=l;return l.mount=h=>{const c=Eu(h);if(!c)return;const g=l._component;!bu(g)&&!g.render&&!g.template&&(g.template=c.innerHTML),c.innerHTML="";const v=r(c,!1,c instanceof SVGElement);return c instanceof Element&&(c.removeAttribute("v-cloak"),c.setAttribute("data-v-app","")),v},l},Vf=(...n)=>{const l=Fu().createApp(...n),{mount:r}=l;return l.mount=h=>{const c=Eu(h);if(c)return r(c,!0,c instanceof SVGElement)},l};function Eu(n){return ns(n)?document.querySelector(n):n}let S1=!1;const _f=()=>{S1||(S1=!0,Lf(),Ef())},Wf=()=>{},Xf=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:Oc,BaseTransitionPropsValidators:Bh,Comment:on,EffectScope:ph,Fragment:Kt,KeepAlive:_v,ReactiveEffect:gs,Static:wr,Suspense:Nv,Teleport:ou,Text:Xl,Transition:Zn,TransitionGroup:Hu,VueElement:Ya,assertNumber:mv,callWithAsyncErrorHandling:Cn,callWithErrorHandling:fl,camelize:Sn,capitalize:Il,cloneVNode:Gn,compatUtils:q3,compile:Wf,computed:q,createApp:Tu,createBlock:_a,createCommentVNode:j3,createElementBlock:A3,createElementVNode:Rh,createHydrationRenderer:lu,createPropsRestProxy:d3,createRenderer:nu,createSSRApp:Vf,createSlots:Uv,createStaticVNode:N3,createTextVNode:e,createVNode:t,customRef:Zw,defineAsyncComponent:Ev,defineComponent:Cr,defineCustomElement:zu,defineEmits:Jv,defineExpose:t3,defineModel:l3,defineOptions:e3,defineProps:Qv,defineSSRCustomElement:xf,defineSlots:n3,get devtools(){return _r},effect:vw,effectScope:io,getCurrentInstance:al,getCurrentScope:gh,getTransitionRawChildren:Ra,guardReactiveProps:du,h:Ln,handleError:yr,hasInjectionContext:Zc,hydrate:Ru,initCustomFormatter:E3,initDirectivesForSSR:_f,inject:de,isMemoSame:mu,isProxy:mh,isReactive:vl,isReadonly:mr,isRef:Me,isRuntimeOnly:F3,isShallow:Uo,isVNode:ql,markRaw:ws,mergeDefaults:i3,mergeModels:h3,mergeProps:o,nextTick:we,normalizeClass:ms,normalizeProps:wv,normalizeStyle:fs,onActivated:Hh,onBeforeMount:Ms,onBeforeUnmount:Qe,onBeforeUpdate:jh,onDeactivated:Nh,onErrorCaptured:_c,onMounted:Ve,onRenderTracked:Vc,onRenderTriggered:Ec,onScopeDispose:sn,onServerPrefetch:Tc,onUnmounted:Va,onUpdated:Ea,openBlock:xs,popScopeId:yv,provide:Se,proxyRefs:Mh,pushScopeId:Iv,queuePostFlushCb:yh,reactive:Ze,readonly:uo,ref:Lt,registerRuntimeCompiler:O3,render:k0,renderList:Yv,renderSlot:Gv,resolveComponent:qv,resolveDirective:Mn,resolveDynamicComponent:Xc,resolveFilter:X3,resolveTransitionHooks:Qr,setBlockTracking:h0,setDevtoolsHook:Hc,setTransitionHooks:kr,shallowReactive:fh,shallowReadonly:Ww,shallowRef:Wt,ssrContextKey:vu,ssrUtils:W3,stop:fw,toDisplayString:vv,toHandlerKey:Oo,toHandlers:Zv,toRaw:le,toRef:Ht,toRefs:vs,toValue:Yw,transformVNodeArgs:B3,triggerRef:qw,unref:je,useAttrs:s3,useCssModule:If,useCssVars:yf,useModel:a3,useSSRContext:fu,useSlots:o3,useTransitionState:Ah,vModelCheckbox:_h,vModelDynamic:Pu,vModelRadio:Wh,vModelSelect:Nu,vModelText:ls,vShow:Dn,version:ku,warn:fv,watch:_t,watchEffect:bn,watchPostEffect:Lc,watchSyncEffect:Fv,withAsyncContext:c3,withCtx:Ch,withDefaults:r3,withDirectives:$e,withKeys:Tf,withMemo:V3,withModifiers:Ff,withScopeId:Cv},Symbol.toStringTag,{value:"Module"}));var qf=!1;/*! - * pinia v2.1.6 - * (c) 2023 Eduardo San Martin Morote - * @license MIT - */let Vu;const Ua=n=>Vu=n,_u=Symbol();function b0(n){return n&&typeof n=="object"&&Object.prototype.toString.call(n)==="[object Object]"&&typeof n.toJSON!="function"}var _o;(function(n){n.direct="direct",n.patchObject="patch object",n.patchFunction="patch function"})(_o||(_o={}));function Yf(){const n=io(!0),l=n.run(()=>Lt({}));let r=[],h=[];const c=ws({install(g){Ua(c),c._a=g,g.provide(_u,c),g.config.globalProperties.$pinia=c,h.forEach(v=>r.push(v)),h=[]},use(g){return!this._a&&!qf?h.push(g):r.push(g),this},_p:r,_a:null,_e:n,_s:new Map,state:l});return c}const Wu=()=>{};function $1(n,l,r,h=Wu){n.push(l);const c=()=>{const g=n.indexOf(l);g>-1&&(n.splice(g,1),h())};return!r&&gh()&&sn(c),c}function Or(n,...l){n.slice().forEach(r=>{r(...l)})}const Uf=n=>n();function M0(n,l){n instanceof Map&&l instanceof Map&&l.forEach((r,h)=>n.set(h,r)),n instanceof Set&&l instanceof Set&&l.forEach(n.add,n);for(const r in l){if(!l.hasOwnProperty(r))continue;const h=l[r],c=n[r];b0(c)&&b0(h)&&n.hasOwnProperty(r)&&!Me(h)&&!vl(h)?n[r]=M0(c,h):n[r]=h}return n}const Gf=Symbol();function Zf(n){return!b0(n)||!n.hasOwnProperty(Gf)}const{assign:Ol}=Object;function Kf(n){return!!(Me(n)&&n.effect)}function Qf(n,l,r,h){const{state:c,actions:g,getters:v}=l,k=r.state.value[n];let x;function I(){k||(r.state.value[n]=c?c():{});const S=vs(r.state.value[n]);return Ol(S,g,Object.keys(v||{}).reduce(($,B)=>($[B]=ws(q(()=>{Ua(r);const P=r._s.get(n);return v[B].call(P,P)})),$),{}))}return x=Xu(n,I,l,r,h,!0),x}function Xu(n,l,r={},h,c,g){let v;const k=Ol({actions:{}},r),x={deep:!0};let I,S,$=[],B=[],P;const D=h.state.value[n];!g&&!D&&(h.state.value[n]={}),Lt({});let F;function X(Y){let G;I=S=!1,typeof Y=="function"?(Y(h.state.value[n]),G={type:_o.patchFunction,storeId:n,events:P}):(M0(h.state.value[n],Y),G={type:_o.patchObject,payload:Y,storeId:n,events:P});const et=F=Symbol();we().then(()=>{F===et&&(I=!0)}),S=!0,Or($,G,h.state.value[n])}const R=g?function(){const{state:G}=r,et=G?G():{};this.$patch(st=>{Ol(st,et)})}:Wu;function H(){v.stop(),$=[],B=[],h._s.delete(n)}function U(Y,G){return function(){Ua(h);const et=Array.from(arguments),st=[],rt=[];function ht(xt){st.push(xt)}function dt(xt){rt.push(xt)}Or(B,{args:et,name:Y,store:_,after:ht,onError:dt});let Ct;try{Ct=G.apply(this&&this.$id===n?this:_,et)}catch(xt){throw Or(rt,xt),xt}return Ct instanceof Promise?Ct.then(xt=>(Or(st,xt),xt)).catch(xt=>(Or(rt,xt),Promise.reject(xt))):(Or(st,Ct),Ct)}}const W={_p:h,$id:n,$onAction:$1.bind(null,B),$patch:X,$reset:R,$subscribe(Y,G={}){const et=$1($,Y,G.detached,()=>st()),st=v.run(()=>_t(()=>h.state.value[n],rt=>{(G.flush==="sync"?S:I)&&Y({storeId:n,type:_o.direct,events:P},rt)},Ol({},x,G)));return et},$dispose:H},_=Ze(W);h._s.set(n,_);const tt=h._a&&h._a.runWithContext||Uf,nt=h._e.run(()=>(v=io(),tt(()=>v.run(l))));for(const Y in nt){const G=nt[Y];if(Me(G)&&!Kf(G)||vl(G))g||(D&&Zf(G)&&(Me(G)?G.value=D[Y]:M0(G,D[Y])),h.state.value[n][Y]=G);else if(typeof G=="function"){const et=U(Y,G);nt[Y]=et,k.actions[Y]=G}}return Ol(_,nt),Ol(le(_),nt),Object.defineProperty(_,"$state",{get:()=>h.state.value[n],set:Y=>{X(G=>{Ol(G,Y)})}}),h._p.forEach(Y=>{Ol(_,v.run(()=>Y({store:_,app:h._a,pinia:h,options:k})))}),D&&g&&r.hydrate&&r.hydrate(_.$state,D),I=!0,S=!0,_}function Jf(n,l,r){let h,c;const g=typeof l=="function";typeof n=="string"?(h=n,c=g?r:l):(c=n,h=n.id);function v(k,x){const I=Zc();return k=k||(I?de(_u,null):null),k&&Ua(k),k=Vu,k._s.has(h)||(g?Xu(h,l,c,k):Qf(h,c,k)),k._s.get(h)}return v.$id=h,v}/*! - * vue-router v4.2.4 - * (c) 2023 Eduardo San Martin Morote - * @license MIT - */const Wr=typeof window<"u";function t5(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const fe=Object.assign;function Li(n,l){const r={};for(const h in l){const c=l[h];r[h]=Kn(c)?c.map(n):n(c)}return r}const Wo=()=>{},Kn=Array.isArray,e5=/\/$/,n5=n=>n.replace(e5,"");function Di(n,l,r="/"){let h,c={},g="",v="";const k=l.indexOf("#");let x=l.indexOf("?");return k=0&&(x=-1),x>-1&&(h=l.slice(0,x),g=l.slice(x+1,k>-1?k:l.length),c=n(g)),k>-1&&(h=h||l.slice(0,k),v=l.slice(k,l.length)),h=s5(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:c,hash:v}}function l5(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function A1(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function r5(n,l,r){const h=l.matched.length-1,c=r.matched.length-1;return h>-1&&h===c&&eo(l.matched[h],r.matched[c])&&qu(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function eo(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function qu(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!o5(n[r],l[r]))return!1;return!0}function o5(n,l){return Kn(n)?B1(n,l):Kn(l)?B1(l,n):n===l}function B1(n,l){return Kn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function s5(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),c=h[h.length-1];(c===".."||c===".")&&h.push("");let g=r.length-1,v,k;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var rs;(function(n){n.pop="pop",n.push="push"})(rs||(rs={}));var Xo;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Xo||(Xo={}));function a5(n){if(!n)if(Wr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),n5(n)}const i5=/^[^#]+#/;function h5(n,l){return n.replace(i5,"#")+l}function d5(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Ga=()=>({left:window.pageXOffset,top:window.pageYOffset});function c5(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),c=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!c)return;l=d5(c,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function H1(n,l){return(history.state?history.state.position-l:-1)+n}const x0=new Map;function u5(n,l){x0.set(n,l)}function p5(n){const l=x0.get(n);return x0.delete(n),l}let g5=()=>location.protocol+"//"+location.host;function Yu(n,l){const{pathname:r,search:h,hash:c}=l,g=n.indexOf("#");if(g>-1){let k=c.includes(n.slice(g))?n.slice(g).length:1,x=c.slice(k);return x[0]!=="/"&&(x="/"+x),A1(x,"")}return A1(r,n)+h+c}function w5(n,l,r,h){let c=[],g=[],v=null;const k=({state:B})=>{const P=Yu(n,location),D=r.value,F=l.value;let X=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}X=F?B.position-F.position:0}else h(P);c.forEach(R=>{R(r.value,D,{delta:X,type:rs.pop,direction:X?X>0?Xo.forward:Xo.back:Xo.unknown})})};function x(){v=r.value}function I(B){c.push(B);const P=()=>{const D=c.indexOf(B);D>-1&&c.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(fe({},B.state,{scroll:Ga()}),"")}function $(){for(const B of g)B();g=[],window.removeEventListener("popstate",k),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",k),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:x,listen:I,destroy:$}}function N1(n,l,r,h=!1,c=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:c?Ga():null}}function v5(n){const{history:l,location:r}=window,h={value:Yu(n,r)},c={value:l.state};c.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(x,I,S){const $=n.indexOf("#"),B=$>-1?(r.host&&document.querySelector("base")?n:n.slice($))+x:g5()+n+x;try{l[S?"replaceState":"pushState"](I,"",B),c.value=I}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(x,I){const S=fe({},l.state,N1(c.value.back,x,c.value.forward,!0),I,{position:c.value.position});g(x,S,!0),h.value=x}function k(x,I){const S=fe({},c.value,l.state,{forward:x,scroll:Ga()});g(S.current,S,!0);const $=fe({},N1(h.value,x,null),{position:S.position+1},I);g(x,$,!1),h.value=x}return{location:h,state:c,push:k,replace:v}}function f5(n){n=a5(n);const l=v5(n),r=w5(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const c=fe({location:"",base:n,go:h,createHref:h5.bind(null,n)},l,r);return Object.defineProperty(c,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(c,"state",{enumerable:!0,get:()=>l.state.value}),c}function m5(n){return typeof n=="string"||n&&typeof n=="object"}function Uu(n){return typeof n=="string"||typeof n=="symbol"}const Pl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Gu=Symbol("");var j1;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(j1||(j1={}));function no(n,l){return fe(new Error,{type:n,[Gu]:!0},l)}function dl(n,l){return n instanceof Error&&Gu in n&&(l==null||!!(n.type&l))}const P1="[^/]+?",k5={sensitive:!1,strict:!1,start:!0,end:!0},b5=/[.+*?^${}()[\]/\\]/g;function M5(n,l){const r=fe({},k5,l),h=[];let c=r.start?"^":"";const g=[];for(const I of n){const S=I.length?[]:[90];r.strict&&!I.length&&(c+="/");for(let $=0;$l.length?l.length===1&&l[0]===40+40?1:-1:0}function z5(n,l){let r=0;const h=n.score,c=l.score;for(;r0&&l[l.length-1]<0}const I5={type:0,value:""},y5=/[a-zA-Z0-9_]/;function C5(n){if(!n)return[[]];if(n==="/")return[[I5]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${I}": ${P}`)}let r=0,h=r;const c=[];let g;function v(){g&&c.push(g),g=[]}let k=0,x,I="",S="";function $(){I&&(r===0?g.push({type:0,value:I}):r===1||r===2||r===3?(g.length>1&&(x==="*"||x==="+")&&l(`A repeatable param (${I}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:I,regexp:S,repeatable:x==="*"||x==="+",optional:x==="*"||x==="?"})):l("Invalid state to consume buffer"),I="")}function B(){I+=x}for(;k{v(H)}:Wo}function v(S){if(Uu(S)){const $=h.get(S);$&&(h.delete(S),r.splice(r.indexOf($),1),$.children.forEach(v),$.alias.forEach(v))}else{const $=r.indexOf(S);$>-1&&(r.splice($,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function k(){return r}function x(S){let $=0;for(;$=0&&(S.record.path!==r[$].record.path||!Zu(S,r[$]));)$++;r.splice($,0,S),S.record.name&&!O1(S)&&h.set(S.record.name,S)}function I(S,$){let B,P={},D,F;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw no(1,{location:S});F=B.record.name,P=fe(D1($.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&D1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),F=B.record.name);else{if(B=$.name?h.get($.name):r.find(H=>H.re.test($.path)),!B)throw no(1,{location:S,currentLocation:$});F=B.record.name,P=fe({},$.params,S.params),D=B.stringify(P)}const X=[];let R=B;for(;R;)X.unshift(R.record),R=R.parent;return{name:F,path:D,params:P,matched:X,meta:H5(X)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:I,removeRoute:v,getRoutes:k,getRecordMatcher:c}}function D1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function A5(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:B5(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function B5(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function O1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function H5(n){return n.reduce((l,r)=>fe(l,r.meta),{})}function F1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function Zu(n,l){return l.children.some(r=>r===n||Zu(n,r))}const Ku=/#/g,N5=/&/g,j5=/\//g,P5=/=/g,L5=/\?/g,Qu=/\+/g,D5=/%5B/g,O5=/%5D/g,Ju=/%5E/g,F5=/%60/g,tp=/%7B/g,R5=/%7C/g,ep=/%7D/g,T5=/%20/g;function Xh(n){return encodeURI(""+n).replace(R5,"|").replace(D5,"[").replace(O5,"]")}function E5(n){return Xh(n).replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function z0(n){return Xh(n).replace(Qu,"%2B").replace(T5,"+").replace(Ku,"%23").replace(N5,"%26").replace(F5,"`").replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function V5(n){return z0(n).replace(P5,"%3D")}function _5(n){return Xh(n).replace(Ku,"%23").replace(L5,"%3F")}function W5(n){return n==null?"":_5(n).replace(j5,"%2F")}function wa(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function X5(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let c=0;cg&&z0(g)):[h&&z0(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function q5(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Kn(h)?h.map(c=>c==null?null:""+c):h==null?h:""+h)}return l}const Y5=Symbol(""),T1=Symbol(""),qh=Symbol(""),np=Symbol(""),I0=Symbol("");function $o(){let n=[];function l(h){return n.push(h),()=>{const c=n.indexOf(h);c>-1&&n.splice(c,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Rl(n,l,r,h,c){const g=h&&(h.enterCallbacks[c]=h.enterCallbacks[c]||[]);return()=>new Promise((v,k)=>{const x=$=>{$===!1?k(no(4,{from:r,to:l})):$ instanceof Error?k($):m5($)?k(no(2,{from:l,to:$})):(g&&h.enterCallbacks[c]===g&&typeof $=="function"&&g.push($),v())},I=n.call(h&&h.instances[c],l,r,x);let S=Promise.resolve(I);n.length<3&&(S=S.then(x)),S.catch($=>k($))})}function Oi(n,l,r,h){const c=[];for(const g of n)for(const v in g.components){let k=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(U5(k)){const I=(k.__vccOpts||k)[l];I&&c.push(Rl(I,r,h,g,v))}else{let x=k();c.push(()=>x.then(I=>{if(!I)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=t5(I)?I.default:I;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Rl(B,r,h,g,v)()}))}}return c}function U5(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function E1(n){const l=de(qh),r=de(np),h=q(()=>l.resolve(je(n.to))),c=q(()=>{const{matched:x}=h.value,{length:I}=x,S=x[I-1],$=r.matched;if(!S||!$.length)return-1;const B=$.findIndex(eo.bind(null,S));if(B>-1)return B;const P=V1(x[I-2]);return I>1&&V1(S)===P&&$[$.length-1].path!==P?$.findIndex(eo.bind(null,x[I-2])):B}),g=q(()=>c.value>-1&&Q5(r.params,h.value.params)),v=q(()=>c.value>-1&&c.value===r.matched.length-1&&qu(r.params,h.value.params));function k(x={}){return K5(x)?l[je(n.replace)?"replace":"push"](je(n.to)).catch(Wo):Promise.resolve()}return{route:h,href:q(()=>h.value.href),isActive:g,isExactActive:v,navigate:k}}const G5=Cr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:E1,setup(n,{slots:l}){const r=Ze(E1(n)),{options:h}=de(qh),c=q(()=>({[_1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[_1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Ln("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:c.value},g)}}}),Z5=G5;function K5(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Q5(n,l){for(const r in l){const h=l[r],c=n[r];if(typeof h=="string"){if(h!==c)return!1}else if(!Kn(c)||c.length!==h.length||h.some((g,v)=>g!==c[v]))return!1}return!0}function V1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const _1=(n,l,r)=>n??l??r,J5=Cr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=de(I0),c=q(()=>n.route||h.value),g=de(T1,0),v=q(()=>{let I=je(g);const{matched:S}=c.value;let $;for(;($=S[I])&&!$.components;)I++;return I}),k=q(()=>c.value.matched[v.value]);Se(T1,q(()=>v.value+1)),Se(Y5,k),Se(I0,c);const x=Lt();return _t(()=>[x.value,k.value,n.name],([I,S,$],[B,P,D])=>{S&&(S.instances[$]=I,P&&P!==S&&I&&I===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),I&&S&&(!P||!eo(S,P)||!B)&&(S.enterCallbacks[$]||[]).forEach(F=>F(I))},{flush:"post"}),()=>{const I=c.value,S=n.name,$=k.value,B=$&&$.components[S];if(!B)return W1(r.default,{Component:B,route:I});const P=$.props[S],D=P?P===!0?I.params:typeof P=="function"?P(I):P:null,X=Ln(B,fe({},D,l,{onVnodeUnmounted:R=>{R.component.isUnmounted&&($.instances[S]=null)},ref:x}));return W1(r.default,{Component:X,route:I})||X}}});function W1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const lp=J5;function tm(n){const l=$5(n.routes,n),r=n.parseQuery||X5,h=n.stringifyQuery||R1,c=n.history,g=$o(),v=$o(),k=$o(),x=Wt(Pl);let I=Pl;Wr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=Li.bind(null,pt=>""+pt),$=Li.bind(null,W5),B=Li.bind(null,wa);function P(pt,Nt){let jt,bt;return Uu(pt)?(jt=l.getRecordMatcher(pt),bt=Nt):bt=pt,l.addRoute(bt,jt)}function D(pt){const Nt=l.getRecordMatcher(pt);Nt&&l.removeRoute(Nt)}function F(){return l.getRoutes().map(pt=>pt.record)}function X(pt){return!!l.getRecordMatcher(pt)}function R(pt,Nt){if(Nt=fe({},Nt||x.value),typeof pt=="string"){const at=Di(r,pt,Nt.path),ct=l.resolve({path:at.path},Nt),kt=c.createHref(at.fullPath);return fe(at,ct,{params:B(ct.params),hash:wa(at.hash),redirectedFrom:void 0,href:kt})}let jt;if("path"in pt)jt=fe({},pt,{path:Di(r,pt.path,Nt.path).path});else{const at=fe({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];jt=fe({},pt,{params:$(at)}),Nt.params=$(Nt.params)}const bt=l.resolve(jt,Nt),ft=pt.hash||"";bt.params=S(B(bt.params));const J=l5(h,fe({},pt,{hash:E5(ft),path:bt.path})),lt=c.createHref(J);return fe({fullPath:J,hash:ft,query:h===R1?q5(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?Di(r,pt,x.value.path):fe({},pt)}function U(pt,Nt){if(I!==pt)return no(8,{from:Nt,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(fe(H(pt),{replace:!0}))}function tt(pt){const Nt=pt.matched[pt.matched.length-1];if(Nt&&Nt.redirect){const{redirect:jt}=Nt;let bt=typeof jt=="function"?jt(pt):jt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),fe({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Nt){const jt=I=R(pt),bt=x.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(jt);if(at)return nt(fe(H(at),{state:typeof at=="object"?fe({},ft,at.state):ft,force:J,replace:lt}),Nt||jt);const ct=jt;ct.redirectedFrom=Nt;let kt;return!J&&r5(h,bt,jt)&&(kt=no(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>dl(yt)?dl(yt,2)?yt:At(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(dl(yt,2))return nt(fe({replace:lt},H(yt.to),{state:typeof yt.to=="object"?fe({},ft,yt.to.state):ft,force:J}),Nt||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function Y(pt,Nt){const jt=U(pt,Nt);return jt?Promise.reject(jt):Promise.resolve()}function G(pt){const Nt=Jt.values().next().value;return Nt&&typeof Nt.runWithContext=="function"?Nt.runWithContext(pt):pt()}function et(pt,Nt){let jt;const[bt,ft,J]=em(pt,Nt);jt=Oi(bt.reverse(),"beforeRouteLeave",pt,Nt);for(const at of bt)at.leaveGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});const lt=Y.bind(null,pt,Nt);return jt.push(lt),ut(jt).then(()=>{jt=[];for(const at of g.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>{jt=Oi(ft,"beforeRouteUpdate",pt,Nt);for(const at of ft)at.updateGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});return jt.push(lt),ut(jt)}).then(()=>{jt=[];for(const at of J)if(at.beforeEnter)if(Kn(at.beforeEnter))for(const ct of at.beforeEnter)jt.push(Rl(ct,pt,Nt));else jt.push(Rl(at.beforeEnter,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),jt=Oi(J,"beforeRouteEnter",pt,Nt),jt.push(lt),ut(jt))).then(()=>{jt=[];for(const at of v.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).catch(at=>dl(at,8)?at:Promise.reject(at))}function st(pt,Nt,jt){k.list().forEach(bt=>G(()=>bt(pt,Nt,jt)))}function rt(pt,Nt,jt,bt,ft){const J=U(pt,Nt);if(J)return J;const lt=Nt===Pl,at=Wr?history.state:{};jt&&(bt||lt?c.replace(pt.fullPath,fe({scroll:lt&&at&&at.scroll},ft)):c.push(pt.fullPath,ft)),x.value=pt,Tt(pt,Nt,jt,lt),At()}let ht;function dt(){ht||(ht=c.listen((pt,Nt,jt)=>{if(!Et.listening)return;const bt=R(pt),ft=tt(bt);if(ft){nt(fe(ft,{replace:!0}),bt).catch(Wo);return}I=bt;const J=x.value;Wr&&u5(H1(J.fullPath,jt.delta),Ga()),et(bt,J).catch(lt=>dl(lt,12)?lt:dl(lt,2)?(nt(lt.to,bt).then(at=>{dl(at,20)&&!jt.delta&&jt.type===rs.pop&&c.go(-1,!1)}).catch(Wo),Promise.reject()):(jt.delta&&c.go(-jt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(jt.delta&&!dl(lt,8)?c.go(-jt.delta,!1):jt.type===rs.pop&&dl(lt,20)&&c.go(-1,!1)),st(bt,J,lt)}).catch(Wo)}))}let Ct=$o(),xt=$o(),wt;function gt(pt,Nt,jt){At(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Nt,jt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&x.value!==Pl?Promise.resolve():new Promise((pt,Nt)=>{Ct.add([pt,Nt])})}function At(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Nt,jt])=>pt?jt(pt):Nt()),Ct.reset()),pt}function Tt(pt,Nt,jt,bt){const{scrollBehavior:ft}=n;if(!Wr||!ft)return Promise.resolve();const J=!jt&&p5(H1(pt.fullPath,0))||(bt||!jt)&&history.state&&history.state.scroll||null;return we().then(()=>ft(pt,Nt,J)).then(lt=>lt&&c5(lt)).catch(lt=>gt(lt,pt,Nt))}const Ft=pt=>c.go(pt);let Qt;const Jt=new Set,Et={currentRoute:x,listening:!0,addRoute:P,removeRoute:D,hasRoute:X,getRoutes:F,resolve:R,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:k.add,onError:xt.add,isReady:It,install(pt){const Nt=this;pt.component("RouterLink",Z5),pt.component("RouterView",lp),pt.config.globalProperties.$router=Nt,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>je(x)}),Wr&&!Qt&&x.value===Pl&&(Qt=!0,W(c.location).catch(ft=>{}));const jt={};for(const ft in Pl)Object.defineProperty(jt,ft,{get:()=>x.value[ft],enumerable:!0});pt.provide(qh,Nt),pt.provide(np,fh(jt)),pt.provide(I0,x);const bt=pt.unmount;Jt.add(pt),pt.unmount=function(){Jt.delete(pt),Jt.size<1&&(I=Pl,ht&&ht(),ht=null,x.value=Pl,Qt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Nt,jt)=>Nt.then(()=>G(jt)),Promise.resolve())}return Et}function em(n,l){const r=[],h=[],c=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;veo(I,k))?h.push(k):r.push(k));const x=n.matched[v];x&&(l.matched.find(I=>eo(I,x))||c.push(x))}return[r,h,c]}const nm=Cr({__name:"App",setup(n){return(l,r)=>(xs(),_a(je(lp)))}}),lm="modulepreload",rm=function(n){return"/"+n},X1={},en=function(l,r,h){if(!r||r.length===0)return l();const c=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=rm(g),g in X1)return;X1[g]=!0;const v=g.endsWith(".css"),k=v?'[rel="stylesheet"]':"";if(!!h)for(let S=c.length-1;S>=0;S--){const $=c[S];if($.href===g&&(!v||$.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${k}`))return;const I=document.createElement("link");if(I.rel=v?"stylesheet":lm,v||(I.as="script",I.crossOrigin=""),I.href=g,document.head.appendChild(I),v)return new Promise((S,$)=>{I.addEventListener("load",S),I.addEventListener("error",()=>$(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},om={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>en(()=>import("./FullLayout-18d94e89.js"),["assets/FullLayout-18d94e89.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-b1d2f1af.js","assets/md5-0b0a2337.js"]),children:[{name:"Dashboard",path:"/",component:()=>en(()=>import("./DefaultDashboard-ece65639.js"),["assets/DefaultDashboard-ece65639.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Extensions",path:"/extension",component:()=>en(()=>import("./ExtensionPage-0c929f20.js"),["assets/ExtensionPage-0c929f20.js","assets/ConfigDetailCard-0eb16275.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js"])},{name:"Configs",path:"/config",component:()=>en(()=>import("./ConfigPage-8225b5ca.js"),["assets/ConfigPage-8225b5ca.js","assets/ConfigDetailCard-0eb16275.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/ConfigPage-f564cc69.css"])},{name:"Default",path:"/dashboard/default",component:()=>en(()=>import("./DefaultDashboard-ece65639.js"),["assets/DefaultDashboard-ece65639.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Console",path:"/console",component:()=>en(()=>import("./ConsolePage-e3d6951b.js"),["assets/ConsolePage-e3d6951b.js","assets/ConsolePage-ff373be6.css"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>en(()=>import("./TablerIcons-eef884dc.js"),["assets/TablerIcons-eef884dc.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-cae6d9fb.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js"])},{name:"Material Icons",path:"/icons/material",component:()=>en(()=>import("./MaterialIcons-69a5e9aa.js"),["assets/MaterialIcons-69a5e9aa.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-cae6d9fb.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js"])},{name:"Typography",path:"/utils/typography",component:()=>en(()=>import("./TypographyPage-e6311caa.js"),["assets/TypographyPage-e6311caa.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-cae6d9fb.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>en(()=>import("./ShadowPage-e7fd39fc.js"),["assets/ShadowPage-e7fd39fc.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-cae6d9fb.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js"])},{name:"Colors",path:"/utils/colors",component:()=>en(()=>import("./ColorPage-55364acc.js"),["assets/ColorPage-55364acc.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-cae6d9fb.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b010c672.js"])}]},sm={path:"/auth",component:()=>en(()=>import("./BlankLayout-503500e2.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>en(()=>import("./LoginPage-2bd5ea03.js"),["assets/LoginPage-2bd5ea03.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-b1d2f1af.js","assets/md5-0b0a2337.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>en(()=>import("./RegisterPage-b4e7e679.js"),["assets/RegisterPage-b4e7e679.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-b1d2f1af.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>en(()=>import("./Error404Page-5b9b1a3e.js"),["assets/Error404Page-5b9b1a3e.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]};function rp(n,l){return function(){return n.apply(l,arguments)}}const{toString:am}=Object.prototype,{getPrototypeOf:Yh}=Object,Za=(n=>l=>{const r=am.call(l);return n[r]||(n[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),il=n=>(n=n.toLowerCase(),l=>Za(l)===n),Ka=n=>l=>typeof l===n,{isArray:po}=Array,os=Ka("undefined");function im(n){return n!==null&&!os(n)&&n.constructor!==null&&!os(n.constructor)&&jn(n.constructor.isBuffer)&&n.constructor.isBuffer(n)}const op=il("ArrayBuffer");function hm(n){let l;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?l=ArrayBuffer.isView(n):l=n&&n.buffer&&op(n.buffer),l}const dm=Ka("string"),jn=Ka("function"),sp=Ka("number"),Qa=n=>n!==null&&typeof n=="object",cm=n=>n===!0||n===!1,ra=n=>{if(Za(n)!=="object")return!1;const l=Yh(n);return(l===null||l===Object.prototype||Object.getPrototypeOf(l)===null)&&!(Symbol.toStringTag in n)&&!(Symbol.iterator in n)},um=il("Date"),pm=il("File"),gm=il("Blob"),wm=il("FileList"),vm=n=>Qa(n)&&jn(n.pipe),fm=n=>{let l;return n&&(typeof FormData=="function"&&n instanceof FormData||jn(n.append)&&((l=Za(n))==="formdata"||l==="object"&&jn(n.toString)&&n.toString()==="[object FormData]"))},mm=il("URLSearchParams"),km=n=>n.trim?n.trim():n.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function ys(n,l,{allOwnKeys:r=!1}={}){if(n===null||typeof n>"u")return;let h,c;if(typeof n!="object"&&(n=[n]),po(n))for(h=0,c=n.length;h0;)if(c=r[h],l===c.toLowerCase())return c;return null}const ip=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),hp=n=>!os(n)&&n!==ip;function y0(){const{caseless:n}=hp(this)&&this||{},l={},r=(h,c)=>{const g=n&&ap(l,c)||c;ra(l[g])&&ra(h)?l[g]=y0(l[g],h):ra(h)?l[g]=y0({},h):po(h)?l[g]=h.slice():l[g]=h};for(let h=0,c=arguments.length;h(ys(l,(c,g)=>{r&&jn(c)?n[g]=rp(c,r):n[g]=c},{allOwnKeys:h}),n),Mm=n=>(n.charCodeAt(0)===65279&&(n=n.slice(1)),n),xm=(n,l,r,h)=>{n.prototype=Object.create(l.prototype,h),n.prototype.constructor=n,Object.defineProperty(n,"super",{value:l.prototype}),r&&Object.assign(n.prototype,r)},zm=(n,l,r,h)=>{let c,g,v;const k={};if(l=l||{},n==null)return l;do{for(c=Object.getOwnPropertyNames(n),g=c.length;g-- >0;)v=c[g],(!h||h(v,n,l))&&!k[v]&&(l[v]=n[v],k[v]=!0);n=r!==!1&&Yh(n)}while(n&&(!r||r(n,l))&&n!==Object.prototype);return l},Im=(n,l,r)=>{n=String(n),(r===void 0||r>n.length)&&(r=n.length),r-=l.length;const h=n.indexOf(l,r);return h!==-1&&h===r},ym=n=>{if(!n)return null;if(po(n))return n;let l=n.length;if(!sp(l))return null;const r=new Array(l);for(;l-- >0;)r[l]=n[l];return r},Cm=(n=>l=>n&&l instanceof n)(typeof Uint8Array<"u"&&Yh(Uint8Array)),Sm=(n,l)=>{const h=(n&&n[Symbol.iterator]).call(n);let c;for(;(c=h.next())&&!c.done;){const g=c.value;l.call(n,g[0],g[1])}},$m=(n,l)=>{let r;const h=[];for(;(r=n.exec(l))!==null;)h.push(r);return h},Am=il("HTMLFormElement"),Bm=n=>n.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(r,h,c){return h.toUpperCase()+c}),q1=(({hasOwnProperty:n})=>(l,r)=>n.call(l,r))(Object.prototype),Hm=il("RegExp"),dp=(n,l)=>{const r=Object.getOwnPropertyDescriptors(n),h={};ys(r,(c,g)=>{let v;(v=l(c,g,n))!==!1&&(h[g]=v||c)}),Object.defineProperties(n,h)},Nm=n=>{dp(n,(l,r)=>{if(jn(n)&&["arguments","caller","callee"].indexOf(r)!==-1)return!1;const h=n[r];if(jn(h)){if(l.enumerable=!1,"writable"in l){l.writable=!1;return}l.set||(l.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")})}})},jm=(n,l)=>{const r={},h=c=>{c.forEach(g=>{r[g]=!0})};return po(n)?h(n):h(String(n).split(l)),r},Pm=()=>{},Lm=(n,l)=>(n=+n,Number.isFinite(n)?n:l),Fi="abcdefghijklmnopqrstuvwxyz",Y1="0123456789",cp={DIGIT:Y1,ALPHA:Fi,ALPHA_DIGIT:Fi+Fi.toUpperCase()+Y1},Dm=(n=16,l=cp.ALPHA_DIGIT)=>{let r="";const{length:h}=l;for(;n--;)r+=l[Math.random()*h|0];return r};function Om(n){return!!(n&&jn(n.append)&&n[Symbol.toStringTag]==="FormData"&&n[Symbol.iterator])}const Fm=n=>{const l=new Array(10),r=(h,c)=>{if(Qa(h)){if(l.indexOf(h)>=0)return;if(!("toJSON"in h)){l[c]=h;const g=po(h)?[]:{};return ys(h,(v,k)=>{const x=r(v,c+1);!os(x)&&(g[k]=x)}),l[c]=void 0,g}}return h};return r(n,0)},Rm=il("AsyncFunction"),Tm=n=>n&&(Qa(n)||jn(n))&&jn(n.then)&&jn(n.catch),St={isArray:po,isArrayBuffer:op,isBuffer:im,isFormData:fm,isArrayBufferView:hm,isString:dm,isNumber:sp,isBoolean:cm,isObject:Qa,isPlainObject:ra,isUndefined:os,isDate:um,isFile:pm,isBlob:gm,isRegExp:Hm,isFunction:jn,isStream:vm,isURLSearchParams:mm,isTypedArray:Cm,isFileList:wm,forEach:ys,merge:y0,extend:bm,trim:km,stripBOM:Mm,inherits:xm,toFlatObject:zm,kindOf:Za,kindOfTest:il,endsWith:Im,toArray:ym,forEachEntry:Sm,matchAll:$m,isHTMLForm:Am,hasOwnProperty:q1,hasOwnProp:q1,reduceDescriptors:dp,freezeMethods:Nm,toObjectSet:jm,toCamelCase:Bm,noop:Pm,toFiniteNumber:Lm,findKey:ap,global:ip,isContextDefined:hp,ALPHABET:cp,generateString:Dm,isSpecCompliantForm:Om,toJSONObject:Fm,isAsyncFn:Rm,isThenable:Tm};function pe(n,l,r,h,c){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=n,this.name="AxiosError",l&&(this.code=l),r&&(this.config=r),h&&(this.request=h),c&&(this.response=c)}St.inherits(pe,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:St.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const up=pe.prototype,pp={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(n=>{pp[n]={value:n}});Object.defineProperties(pe,pp);Object.defineProperty(up,"isAxiosError",{value:!0});pe.from=(n,l,r,h,c,g)=>{const v=Object.create(up);return St.toFlatObject(n,v,function(x){return x!==Error.prototype},k=>k!=="isAxiosError"),pe.call(v,n.message,l,r,h,c),v.cause=n,v.name=n.name,g&&Object.assign(v,g),v};const Em=null;function C0(n){return St.isPlainObject(n)||St.isArray(n)}function gp(n){return St.endsWith(n,"[]")?n.slice(0,-2):n}function U1(n,l,r){return n?n.concat(l).map(function(c,g){return c=gp(c),!r&&g?"["+c+"]":c}).join(r?".":""):l}function Vm(n){return St.isArray(n)&&!n.some(C0)}const _m=St.toFlatObject(St,{},null,function(l){return/^is[A-Z]/.test(l)});function Ja(n,l,r){if(!St.isObject(n))throw new TypeError("target must be an object");l=l||new FormData,r=St.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,function(F,X){return!St.isUndefined(X[F])});const h=r.metaTokens,c=r.visitor||S,g=r.dots,v=r.indexes,x=(r.Blob||typeof Blob<"u"&&Blob)&&St.isSpecCompliantForm(l);if(!St.isFunction(c))throw new TypeError("visitor must be a function");function I(D){if(D===null)return"";if(St.isDate(D))return D.toISOString();if(!x&&St.isBlob(D))throw new pe("Blob is not supported. Use a Buffer instead.");return St.isArrayBuffer(D)||St.isTypedArray(D)?x&&typeof Blob=="function"?new Blob([D]):Buffer.from(D):D}function S(D,F,X){let R=D;if(D&&!X&&typeof D=="object"){if(St.endsWith(F,"{}"))F=h?F:F.slice(0,-2),D=JSON.stringify(D);else if(St.isArray(D)&&Vm(D)||(St.isFileList(D)||St.endsWith(F,"[]"))&&(R=St.toArray(D)))return F=gp(F),R.forEach(function(U,W){!(St.isUndefined(U)||U===null)&&l.append(v===!0?U1([F],W,g):v===null?F:F+"[]",I(U))}),!1}return C0(D)?!0:(l.append(U1(X,F,g),I(D)),!1)}const $=[],B=Object.assign(_m,{defaultVisitor:S,convertValue:I,isVisitable:C0});function P(D,F){if(!St.isUndefined(D)){if($.indexOf(D)!==-1)throw Error("Circular reference detected in "+F.join("."));$.push(D),St.forEach(D,function(R,H){(!(St.isUndefined(R)||R===null)&&c.call(l,R,St.isString(H)?H.trim():H,F,B))===!0&&P(R,F?F.concat(H):[H])}),$.pop()}}if(!St.isObject(n))throw new TypeError("data must be an object");return P(n),l}function G1(n){const l={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(n).replace(/[!'()~]|%20|%00/g,function(h){return l[h]})}function Uh(n,l){this._pairs=[],n&&Ja(n,this,l)}const wp=Uh.prototype;wp.append=function(l,r){this._pairs.push([l,r])};wp.toString=function(l){const r=l?function(h){return l.call(this,h,G1)}:G1;return this._pairs.map(function(c){return r(c[0])+"="+r(c[1])},"").join("&")};function Wm(n){return encodeURIComponent(n).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function vp(n,l,r){if(!l)return n;const h=r&&r.encode||Wm,c=r&&r.serialize;let g;if(c?g=c(l,r):g=St.isURLSearchParams(l)?l.toString():new Uh(l,r).toString(h),g){const v=n.indexOf("#");v!==-1&&(n=n.slice(0,v)),n+=(n.indexOf("?")===-1?"?":"&")+g}return n}class Xm{constructor(){this.handlers=[]}use(l,r,h){return this.handlers.push({fulfilled:l,rejected:r,synchronous:h?h.synchronous:!1,runWhen:h?h.runWhen:null}),this.handlers.length-1}eject(l){this.handlers[l]&&(this.handlers[l]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(l){St.forEach(this.handlers,function(h){h!==null&&l(h)})}}const Z1=Xm,fp={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},qm=typeof URLSearchParams<"u"?URLSearchParams:Uh,Ym=typeof FormData<"u"?FormData:null,Um=typeof Blob<"u"?Blob:null,Gm={isBrowser:!0,classes:{URLSearchParams:qm,FormData:Ym,Blob:Um},protocols:["http","https","file","blob","url","data"]},mp=typeof window<"u"&&typeof document<"u",Zm=(n=>mp&&["ReactNative","NativeScript","NS"].indexOf(n)<0)(typeof navigator<"u"&&navigator.product),Km=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),Qm=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:mp,hasStandardBrowserEnv:Zm,hasStandardBrowserWebWorkerEnv:Km},Symbol.toStringTag,{value:"Module"})),nl={...Qm,...Gm};function Jm(n,l){return Ja(n,new nl.classes.URLSearchParams,Object.assign({visitor:function(r,h,c,g){return nl.isNode&&St.isBuffer(r)?(this.append(h,r.toString("base64")),!1):g.defaultVisitor.apply(this,arguments)}},l))}function tk(n){return St.matchAll(/\w+|\[(\w*)]/g,n).map(l=>l[0]==="[]"?"":l[1]||l[0])}function ek(n){const l={},r=Object.keys(n);let h;const c=r.length;let g;for(h=0;h=r.length;return v=!v&&St.isArray(c)?c.length:v,x?(St.hasOwnProp(c,v)?c[v]=[c[v],h]:c[v]=h,!k):((!c[v]||!St.isObject(c[v]))&&(c[v]=[]),l(r,h,c[v],g)&&St.isArray(c[v])&&(c[v]=ek(c[v])),!k)}if(St.isFormData(n)&&St.isFunction(n.entries)){const r={};return St.forEachEntry(n,(h,c)=>{l(tk(h),c,r,0)}),r}return null}function nk(n,l,r){if(St.isString(n))try{return(l||JSON.parse)(n),St.trim(n)}catch(h){if(h.name!=="SyntaxError")throw h}return(r||JSON.stringify)(n)}const Gh={transitional:fp,adapter:["xhr","http"],transformRequest:[function(l,r){const h=r.getContentType()||"",c=h.indexOf("application/json")>-1,g=St.isObject(l);if(g&&St.isHTMLForm(l)&&(l=new FormData(l)),St.isFormData(l))return c&&c?JSON.stringify(kp(l)):l;if(St.isArrayBuffer(l)||St.isBuffer(l)||St.isStream(l)||St.isFile(l)||St.isBlob(l))return l;if(St.isArrayBufferView(l))return l.buffer;if(St.isURLSearchParams(l))return r.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),l.toString();let k;if(g){if(h.indexOf("application/x-www-form-urlencoded")>-1)return Jm(l,this.formSerializer).toString();if((k=St.isFileList(l))||h.indexOf("multipart/form-data")>-1){const x=this.env&&this.env.FormData;return Ja(k?{"files[]":l}:l,x&&new x,this.formSerializer)}}return g||c?(r.setContentType("application/json",!1),nk(l)):l}],transformResponse:[function(l){const r=this.transitional||Gh.transitional,h=r&&r.forcedJSONParsing,c=this.responseType==="json";if(l&&St.isString(l)&&(h&&!this.responseType||c)){const v=!(r&&r.silentJSONParsing)&&c;try{return JSON.parse(l)}catch(k){if(v)throw k.name==="SyntaxError"?pe.from(k,pe.ERR_BAD_RESPONSE,this,null,this.response):k}}return l}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:nl.classes.FormData,Blob:nl.classes.Blob},validateStatus:function(l){return l>=200&&l<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};St.forEach(["delete","get","head","post","put","patch"],n=>{Gh.headers[n]={}});const Zh=Gh,lk=St.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),rk=n=>{const l={};let r,h,c;return n&&n.split(` -`).forEach(function(v){c=v.indexOf(":"),r=v.substring(0,c).trim().toLowerCase(),h=v.substring(c+1).trim(),!(!r||l[r]&&lk[r])&&(r==="set-cookie"?l[r]?l[r].push(h):l[r]=[h]:l[r]=l[r]?l[r]+", "+h:h)}),l},K1=Symbol("internals");function Ao(n){return n&&String(n).trim().toLowerCase()}function oa(n){return n===!1||n==null?n:St.isArray(n)?n.map(oa):String(n)}function ok(n){const l=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let h;for(;h=r.exec(n);)l[h[1]]=h[2];return l}const sk=n=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(n.trim());function Ri(n,l,r,h,c){if(St.isFunction(h))return h.call(this,l,r);if(c&&(l=r),!!St.isString(l)){if(St.isString(h))return l.indexOf(h)!==-1;if(St.isRegExp(h))return h.test(l)}}function ak(n){return n.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(l,r,h)=>r.toUpperCase()+h)}function ik(n,l){const r=St.toCamelCase(" "+l);["get","set","has"].forEach(h=>{Object.defineProperty(n,h+r,{value:function(c,g,v){return this[h].call(this,l,c,g,v)},configurable:!0})})}class ti{constructor(l){l&&this.set(l)}set(l,r,h){const c=this;function g(k,x,I){const S=Ao(x);if(!S)throw new Error("header name must be a non-empty string");const $=St.findKey(c,S);(!$||c[$]===void 0||I===!0||I===void 0&&c[$]!==!1)&&(c[$||x]=oa(k))}const v=(k,x)=>St.forEach(k,(I,S)=>g(I,S,x));return St.isPlainObject(l)||l instanceof this.constructor?v(l,r):St.isString(l)&&(l=l.trim())&&!sk(l)?v(rk(l),r):l!=null&&g(r,l,h),this}get(l,r){if(l=Ao(l),l){const h=St.findKey(this,l);if(h){const c=this[h];if(!r)return c;if(r===!0)return ok(c);if(St.isFunction(r))return r.call(this,c,h);if(St.isRegExp(r))return r.exec(c);throw new TypeError("parser must be boolean|regexp|function")}}}has(l,r){if(l=Ao(l),l){const h=St.findKey(this,l);return!!(h&&this[h]!==void 0&&(!r||Ri(this,this[h],h,r)))}return!1}delete(l,r){const h=this;let c=!1;function g(v){if(v=Ao(v),v){const k=St.findKey(h,v);k&&(!r||Ri(h,h[k],k,r))&&(delete h[k],c=!0)}}return St.isArray(l)?l.forEach(g):g(l),c}clear(l){const r=Object.keys(this);let h=r.length,c=!1;for(;h--;){const g=r[h];(!l||Ri(this,this[g],g,l,!0))&&(delete this[g],c=!0)}return c}normalize(l){const r=this,h={};return St.forEach(this,(c,g)=>{const v=St.findKey(h,g);if(v){r[v]=oa(c),delete r[g];return}const k=l?ak(g):String(g).trim();k!==g&&delete r[g],r[k]=oa(c),h[k]=!0}),this}concat(...l){return this.constructor.concat(this,...l)}toJSON(l){const r=Object.create(null);return St.forEach(this,(h,c)=>{h!=null&&h!==!1&&(r[c]=l&&St.isArray(h)?h.join(", "):h)}),r}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([l,r])=>l+": "+r).join(` -`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(l){return l instanceof this?l:new this(l)}static concat(l,...r){const h=new this(l);return r.forEach(c=>h.set(c)),h}static accessor(l){const h=(this[K1]=this[K1]={accessors:{}}).accessors,c=this.prototype;function g(v){const k=Ao(v);h[k]||(ik(c,v),h[k]=!0)}return St.isArray(l)?l.forEach(g):g(l),this}}ti.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);St.reduceDescriptors(ti.prototype,({value:n},l)=>{let r=l[0].toUpperCase()+l.slice(1);return{get:()=>n,set(h){this[r]=h}}});St.freezeMethods(ti);const ml=ti;function Ti(n,l){const r=this||Zh,h=l||r,c=ml.from(h.headers);let g=h.data;return St.forEach(n,function(k){g=k.call(r,g,c.normalize(),l?l.status:void 0)}),c.normalize(),g}function bp(n){return!!(n&&n.__CANCEL__)}function Cs(n,l,r){pe.call(this,n??"canceled",pe.ERR_CANCELED,l,r),this.name="CanceledError"}St.inherits(Cs,pe,{__CANCEL__:!0});function hk(n,l,r){const h=r.config.validateStatus;!r.status||!h||h(r.status)?n(r):l(new pe("Request failed with status code "+r.status,[pe.ERR_BAD_REQUEST,pe.ERR_BAD_RESPONSE][Math.floor(r.status/100)-4],r.config,r.request,r))}const dk=nl.hasStandardBrowserEnv?{write(n,l,r,h,c,g){const v=[n+"="+encodeURIComponent(l)];St.isNumber(r)&&v.push("expires="+new Date(r).toGMTString()),St.isString(h)&&v.push("path="+h),St.isString(c)&&v.push("domain="+c),g===!0&&v.push("secure"),document.cookie=v.join("; ")},read(n){const l=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return l?decodeURIComponent(l[3]):null},remove(n){this.write(n,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function ck(n){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(n)}function uk(n,l){return l?n.replace(/\/+$/,"")+"/"+l.replace(/^\/+/,""):n}function Mp(n,l){return n&&!ck(l)?uk(n,l):l}const pk=nl.hasStandardBrowserEnv?function(){const l=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");let h;function c(g){let v=g;return l&&(r.setAttribute("href",v),v=r.href),r.setAttribute("href",v),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:r.pathname.charAt(0)==="/"?r.pathname:"/"+r.pathname}}return h=c(window.location.href),function(v){const k=St.isString(v)?c(v):v;return k.protocol===h.protocol&&k.host===h.host}}():function(){return function(){return!0}}();function gk(n){const l=/^([-+\w]{1,25})(:?\/\/|:)/.exec(n);return l&&l[1]||""}function wk(n,l){n=n||10;const r=new Array(n),h=new Array(n);let c=0,g=0,v;return l=l!==void 0?l:1e3,function(x){const I=Date.now(),S=h[g];v||(v=I),r[c]=x,h[c]=I;let $=g,B=0;for(;$!==c;)B+=r[$++],$=$%n;if(c=(c+1)%n,c===g&&(g=(g+1)%n),I-v{const g=c.loaded,v=c.lengthComputable?c.total:void 0,k=g-r,x=h(k),I=g<=v;r=g;const S={loaded:g,total:v,progress:v?g/v:void 0,bytes:k,rate:x||void 0,estimated:x&&v&&I?(v-g)/x:void 0,event:c};S[l?"download":"upload"]=!0,n(S)}}const vk=typeof XMLHttpRequest<"u",fk=vk&&function(n){return new Promise(function(r,h){let c=n.data;const g=ml.from(n.headers).normalize();let{responseType:v,withXSRFToken:k}=n,x;function I(){n.cancelToken&&n.cancelToken.unsubscribe(x),n.signal&&n.signal.removeEventListener("abort",x)}let S;if(St.isFormData(c)){if(nl.hasStandardBrowserEnv||nl.hasStandardBrowserWebWorkerEnv)g.setContentType(!1);else if((S=g.getContentType())!==!1){const[F,...X]=S?S.split(";").map(R=>R.trim()).filter(Boolean):[];g.setContentType([F||"multipart/form-data",...X].join("; "))}}let $=new XMLHttpRequest;if(n.auth){const F=n.auth.username||"",X=n.auth.password?unescape(encodeURIComponent(n.auth.password)):"";g.set("Authorization","Basic "+btoa(F+":"+X))}const B=Mp(n.baseURL,n.url);$.open(n.method.toUpperCase(),vp(B,n.params,n.paramsSerializer),!0),$.timeout=n.timeout;function P(){if(!$)return;const F=ml.from("getAllResponseHeaders"in $&&$.getAllResponseHeaders()),R={data:!v||v==="text"||v==="json"?$.responseText:$.response,status:$.status,statusText:$.statusText,headers:F,config:n,request:$};hk(function(U){r(U),I()},function(U){h(U),I()},R),$=null}if("onloadend"in $?$.onloadend=P:$.onreadystatechange=function(){!$||$.readyState!==4||$.status===0&&!($.responseURL&&$.responseURL.indexOf("file:")===0)||setTimeout(P)},$.onabort=function(){$&&(h(new pe("Request aborted",pe.ECONNABORTED,n,$)),$=null)},$.onerror=function(){h(new pe("Network Error",pe.ERR_NETWORK,n,$)),$=null},$.ontimeout=function(){let X=n.timeout?"timeout of "+n.timeout+"ms exceeded":"timeout exceeded";const R=n.transitional||fp;n.timeoutErrorMessage&&(X=n.timeoutErrorMessage),h(new pe(X,R.clarifyTimeoutError?pe.ETIMEDOUT:pe.ECONNABORTED,n,$)),$=null},nl.hasStandardBrowserEnv&&(k&&St.isFunction(k)&&(k=k(n)),k||k!==!1&&pk(B))){const F=n.xsrfHeaderName&&n.xsrfCookieName&&dk.read(n.xsrfCookieName);F&&g.set(n.xsrfHeaderName,F)}c===void 0&&g.setContentType(null),"setRequestHeader"in $&&St.forEach(g.toJSON(),function(X,R){$.setRequestHeader(R,X)}),St.isUndefined(n.withCredentials)||($.withCredentials=!!n.withCredentials),v&&v!=="json"&&($.responseType=n.responseType),typeof n.onDownloadProgress=="function"&&$.addEventListener("progress",Q1(n.onDownloadProgress,!0)),typeof n.onUploadProgress=="function"&&$.upload&&$.upload.addEventListener("progress",Q1(n.onUploadProgress)),(n.cancelToken||n.signal)&&(x=F=>{$&&(h(!F||F.type?new Cs(null,n,$):F),$.abort(),$=null)},n.cancelToken&&n.cancelToken.subscribe(x),n.signal&&(n.signal.aborted?x():n.signal.addEventListener("abort",x)));const D=gk(B);if(D&&nl.protocols.indexOf(D)===-1){h(new pe("Unsupported protocol "+D+":",pe.ERR_BAD_REQUEST,n));return}$.send(c||null)})},S0={http:Em,xhr:fk};St.forEach(S0,(n,l)=>{if(n){try{Object.defineProperty(n,"name",{value:l})}catch{}Object.defineProperty(n,"adapterName",{value:l})}});const J1=n=>`- ${n}`,mk=n=>St.isFunction(n)||n===null||n===!1,xp={getAdapter:n=>{n=St.isArray(n)?n:[n];const{length:l}=n;let r,h;const c={};for(let g=0;g`adapter ${k} `+(x===!1?"is not supported by the environment":"is not available in the build"));let v=l?g.length>1?`since : -`+g.map(J1).join(` -`):" "+J1(g[0]):"as no adapter specified";throw new pe("There is no suitable adapter to dispatch the request "+v,"ERR_NOT_SUPPORT")}return h},adapters:S0};function Ei(n){if(n.cancelToken&&n.cancelToken.throwIfRequested(),n.signal&&n.signal.aborted)throw new Cs(null,n)}function td(n){return Ei(n),n.headers=ml.from(n.headers),n.data=Ti.call(n,n.transformRequest),["post","put","patch"].indexOf(n.method)!==-1&&n.headers.setContentType("application/x-www-form-urlencoded",!1),xp.getAdapter(n.adapter||Zh.adapter)(n).then(function(h){return Ei(n),h.data=Ti.call(n,n.transformResponse,h),h.headers=ml.from(h.headers),h},function(h){return bp(h)||(Ei(n),h&&h.response&&(h.response.data=Ti.call(n,n.transformResponse,h.response),h.response.headers=ml.from(h.response.headers))),Promise.reject(h)})}const ed=n=>n instanceof ml?n.toJSON():n;function lo(n,l){l=l||{};const r={};function h(I,S,$){return St.isPlainObject(I)&&St.isPlainObject(S)?St.merge.call({caseless:$},I,S):St.isPlainObject(S)?St.merge({},S):St.isArray(S)?S.slice():S}function c(I,S,$){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I,$)}else return h(I,S,$)}function g(I,S){if(!St.isUndefined(S))return h(void 0,S)}function v(I,S){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I)}else return h(void 0,S)}function k(I,S,$){if($ in l)return h(I,S);if($ in n)return h(void 0,I)}const x={url:g,method:g,data:g,baseURL:v,transformRequest:v,transformResponse:v,paramsSerializer:v,timeout:v,timeoutMessage:v,withCredentials:v,withXSRFToken:v,adapter:v,responseType:v,xsrfCookieName:v,xsrfHeaderName:v,onUploadProgress:v,onDownloadProgress:v,decompress:v,maxContentLength:v,maxBodyLength:v,beforeRedirect:v,transport:v,httpAgent:v,httpsAgent:v,cancelToken:v,socketPath:v,responseEncoding:v,validateStatus:k,headers:(I,S)=>c(ed(I),ed(S),!0)};return St.forEach(Object.keys(Object.assign({},n,l)),function(S){const $=x[S]||c,B=$(n[S],l[S],S);St.isUndefined(B)&&$!==k||(r[S]=B)}),r}const zp="1.6.2",Kh={};["object","boolean","number","function","string","symbol"].forEach((n,l)=>{Kh[n]=function(h){return typeof h===n||"a"+(l<1?"n ":" ")+n}});const nd={};Kh.transitional=function(l,r,h){function c(g,v){return"[Axios v"+zp+"] Transitional option '"+g+"'"+v+(h?". "+h:"")}return(g,v,k)=>{if(l===!1)throw new pe(c(v," has been removed"+(r?" in "+r:"")),pe.ERR_DEPRECATED);return r&&!nd[v]&&(nd[v]=!0,console.warn(c(v," has been deprecated since v"+r+" and will be removed in the near future"))),l?l(g,v,k):!0}};function kk(n,l,r){if(typeof n!="object")throw new pe("options must be an object",pe.ERR_BAD_OPTION_VALUE);const h=Object.keys(n);let c=h.length;for(;c-- >0;){const g=h[c],v=l[g];if(v){const k=n[g],x=k===void 0||v(k,g,n);if(x!==!0)throw new pe("option "+g+" must be "+x,pe.ERR_BAD_OPTION_VALUE);continue}if(r!==!0)throw new pe("Unknown option "+g,pe.ERR_BAD_OPTION)}}const $0={assertOptions:kk,validators:Kh},Ll=$0.validators;class va{constructor(l){this.defaults=l,this.interceptors={request:new Z1,response:new Z1}}request(l,r){typeof l=="string"?(r=r||{},r.url=l):r=l||{},r=lo(this.defaults,r);const{transitional:h,paramsSerializer:c,headers:g}=r;h!==void 0&&$0.assertOptions(h,{silentJSONParsing:Ll.transitional(Ll.boolean),forcedJSONParsing:Ll.transitional(Ll.boolean),clarifyTimeoutError:Ll.transitional(Ll.boolean)},!1),c!=null&&(St.isFunction(c)?r.paramsSerializer={serialize:c}:$0.assertOptions(c,{encode:Ll.function,serialize:Ll.function},!0)),r.method=(r.method||this.defaults.method||"get").toLowerCase();let v=g&&St.merge(g.common,g[r.method]);g&&St.forEach(["delete","get","head","post","put","patch","common"],D=>{delete g[D]}),r.headers=ml.concat(v,g);const k=[];let x=!0;this.interceptors.request.forEach(function(F){typeof F.runWhen=="function"&&F.runWhen(r)===!1||(x=x&&F.synchronous,k.unshift(F.fulfilled,F.rejected))});const I=[];this.interceptors.response.forEach(function(F){I.push(F.fulfilled,F.rejected)});let S,$=0,B;if(!x){const D=[td.bind(this),void 0];for(D.unshift.apply(D,k),D.push.apply(D,I),B=D.length,S=Promise.resolve(r);${if(!h._listeners)return;let g=h._listeners.length;for(;g-- >0;)h._listeners[g](c);h._listeners=null}),this.promise.then=c=>{let g;const v=new Promise(k=>{h.subscribe(k),g=k}).then(c);return v.cancel=function(){h.unsubscribe(g)},v},l(function(g,v,k){h.reason||(h.reason=new Cs(g,v,k),r(h.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(l){if(this.reason){l(this.reason);return}this._listeners?this._listeners.push(l):this._listeners=[l]}unsubscribe(l){if(!this._listeners)return;const r=this._listeners.indexOf(l);r!==-1&&this._listeners.splice(r,1)}static source(){let l;return{token:new Qh(function(c){l=c}),cancel:l}}}const bk=Qh;function Mk(n){return function(r){return n.apply(null,r)}}function xk(n){return St.isObject(n)&&n.isAxiosError===!0}const A0={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(A0).forEach(([n,l])=>{A0[l]=n});const zk=A0;function Ip(n){const l=new sa(n),r=rp(sa.prototype.request,l);return St.extend(r,sa.prototype,l,{allOwnKeys:!0}),St.extend(r,l,null,{allOwnKeys:!0}),r.create=function(c){return Ip(lo(n,c))},r}const Re=Ip(Zh);Re.Axios=sa;Re.CanceledError=Cs;Re.CancelToken=bk;Re.isCancel=bp;Re.VERSION=zp;Re.toFormData=Ja;Re.AxiosError=pe;Re.Cancel=Re.CanceledError;Re.all=function(l){return Promise.all(l)};Re.spread=Mk;Re.isAxiosError=xk;Re.mergeConfig=lo;Re.AxiosHeaders=ml;Re.formToJSON=n=>kp(St.isHTMLForm(n)?new FormData(n):n);Re.getAdapter=xp.getAdapter;Re.HttpStatusCode=zk;Re.default=Re;const Ik=Re,yk=Jf({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){Ik.post("/api/authenticate",{username:n,password:l}).then(r=>{console.log("auth",r),this.user=r.data.data,localStorage.setItem("user",JSON.stringify(this.user)),fa.push(this.returnUrl||"/dashboard/default")})},logout(){this.user=null,localStorage.removeItem("user"),fa.push("/auth/login")}}}),fa=tm({history:f5("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>en(()=>import("./Error404Page-5b9b1a3e.js"),["assets/Error404Page-5b9b1a3e.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},om,sm]});fa.beforeEach(async(n,l,r)=>{const c=!["/auth/login"].includes(n.path),g=yk();if(n.matched.some(v=>v.meta.requiresAuth)){if(c&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const ze=typeof window<"u",Jh=ze&&"IntersectionObserver"in window,Ck=ze&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function ld(n,l,r){Sk(n,l),l.set(n,r)}function Sk(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function $k(n,l,r){var h=yp(n,l,"set");return Ak(n,h,r),r}function Ak(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function sr(n,l){var r=yp(n,l,"get");return Bk(n,r)}function yp(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function Bk(n,l){return l.get?l.get.call(n):l.value}function Cp(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let c=0;cSr(n[h],l[h]))}function B0(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),Cp(n,l.split("."),r))}function ln(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const c=l(n,r);return typeof c>"u"?r:c}if(typeof l=="string")return B0(n,l,r);if(Array.isArray(l))return Cp(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function gl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function qt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function H0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function N0(n){return n&&"$el"in n?n.$el:n}const rd=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),j0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function Sp(n){return Object.keys(n)}function cr(n,l){return l.every(r=>n.hasOwnProperty(r))}function Mr(n,l,r){const h=Object.create(null),c=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:c[g]=n[g];return[h,c]}function On(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const $p=/^on[^a-z]/,t2=n=>$p.test(n),Hk=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function $r(n){const[l,r]=Mr(n,[$p]),h=On(l,Hk),[c,g]=Mr(r,["class","style","id",/^data-/]);return Object.assign(c,l),Object.assign(g,h),[c,g]}function Pn(n){return n==null?[]:Array.isArray(n)?n:[n]}function rn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function od(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function sd(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function Nk(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const c in n)h[c]=n[c];for(const c in l){const g=n[c],v=l[c];if(H0(g)&&H0(v)){h[c]=Nn(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[c]=r(g,v);continue}h[c]=v}return h}function Ap(n){return n.map(l=>l.type===Kt?Ap(l.children):l).flat()}function vr(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(vr.cache.has(n))return vr.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return vr.cache.set(n,l),l}vr.cache=new Map;function qo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>qo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>qo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return qo(n,l.component.subTree).flat(1)}return[]}var Us=new WeakMap,Fr=new WeakMap;class jk{constructor(l){ld(this,Us,{writable:!0,value:[]}),ld(this,Fr,{writable:!0,value:0}),this.size=l}push(l){sr(this,Us)[sr(this,Fr)]=l,$k(this,Fr,(sr(this,Fr)+1)%this.size)}values(){return sr(this,Us).slice(sr(this,Fr)).concat(sr(this,Us).slice(0,sr(this,Fr)))}}function Pk(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function e2(n){const l=Ze({}),r=q(n);return bn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),vs(l)}function ma(n,l){return n.includes(l)}function Bp(n){return n[2].toLowerCase()+n.slice(3)}const ol=()=>[Function,Array];function id(n,l){return l="on"+Il(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function n2(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function Hp(n,l,r){let h,c=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do c+=g,h=n[c];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&c=0);return h}function ka(n,l){var h,c,g,v;const r=ss(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(c=r[0])==null||c.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const k=Hp(r,l);k?k.focus():ka(n,l==="next"?"first":"last")}}function Np(){}function ro(n,l){if(!(ze&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const jp=["top","bottom"],Lk=["start","end","left","right"];function P0(n,l){let[r,h]=n.split(" ");return h||(h=ma(jp,r)?"start":ma(Lk,r)?"top":"center"),{side:L0(r,l),align:L0(h,l)}}function L0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function Vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function _i(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function hd(n){return{side:n.align,align:n.side}}function dd(n){return ma(jp,n.side)?"y":"x"}class Kr{constructor(l){let{x:r,y:h,width:c,height:g}=l;this.x=r,this.y=h,this.width=c,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function cd(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function l2(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let c,g,v,k,x;if(h.startsWith("matrix3d("))c=h.slice(9,-1).split(/, /),g=+c[0],v=+c[5],k=+c[12],x=+c[13];else if(h.startsWith("matrix("))c=h.slice(7,-1).split(/, /),g=+c[0],v=+c[3],k=+c[4],x=+c[5];else return new Kr(l);const I=r.transformOrigin,S=l.x-k-(1-g)*parseFloat(I),$=l.y-x-(1-v)*parseFloat(I.slice(I.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new Kr({x:S,y:$,width:B,height:P})}else return new Kr(l)}function ur(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(c=>{h.onfinish=()=>{c(h)}})),h}const aa=new WeakMap;function Dk(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);if(l[r]==null)c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))});else if(!c||![...c].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=c||new Set;g.add([h,l[r]]),aa.has(n)||aa.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function Ok(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))})}else n.removeAttribute(r)})}const Rr=2.4,ud=.2126729,pd=.7151522,gd=.072175,Fk=.55,Rk=.58,Tk=.57,Ek=.62,Gs=.03,wd=1.45,Vk=5e-4,_k=1.25,Wk=1.25,vd=.078,fd=12.82051282051282,Zs=.06,md=.001;function kd(n,l){const r=(n.r/255)**Rr,h=(n.g/255)**Rr,c=(n.b/255)**Rr,g=(l.r/255)**Rr,v=(l.g/255)**Rr,k=(l.b/255)**Rr;let x=r*ud+h*pd+c*gd,I=g*ud+v*pd+k*gd;if(x<=Gs&&(x+=(Gs-x)**wd),I<=Gs&&(I+=(Gs-I)**wd),Math.abs(I-x)x){const $=(I**Fk-x**Rk)*_k;S=$-md?0:$>-vd?$-$*fd*Zs:$+Zs}return S*100}function Xk(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const ba=.20689655172413793,qk=n=>n>ba**3?Math.cbrt(n):n/(3*ba**2)+4/29,Yk=n=>n>ba?n**3:3*ba**2*(n-4/29);function Pp(n){const l=qk,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Lp(n){const l=Yk,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const Uk=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],Gk=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,Zk=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],Kk=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function Dp(n){const l=Array(3),r=Gk,h=Uk;for(let c=0;c<3;++c)l[c]=Math.round(rn(r(h[c][0]*n[0]+h[c][1]*n[1]+h[c][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function r2(n){let{r:l,g:r,b:h}=n;const c=[0,0,0],g=Kk,v=Zk;l=g(l/255),r=g(r/255),h=g(h/255);for(let k=0;k<3;++k)c[k]=v[k][0]*l+v[k][1]*r+v[k][2]*h;return c}function bd(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const Md=/^(?(?:rgb|hsl)a?)\((?.+)\)/,Qk={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h})};function Yn(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&Md.test(n)){const{groups:l}=n.match(Md),{fn:r,values:h}=l,c=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return Qk[r](...c)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Ep(l)}else if(typeof n=="object"){if(cr(n,["r","g","b"]))return n;if(cr(n,["h","s","l"]))return bl(o2(n));if(cr(n,["h","s","v"]))return bl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} -Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function bl(n){const{h:l,s:r,v:h,a:c}=n,g=k=>{const x=(k+l/60)%6;return h-h*r*Math.max(Math.min(x,4-x,1),0)},v=[g(5),g(3),g(1)].map(k=>Math.round(k*255));return{r:v[0],g:v[1],b:v[2],a:c}}function xd(n){return bl(o2(n))}function ei(n){if(!n)return{h:0,s:1,v:1,a:1};const l=n.r/255,r=n.g/255,h=n.b/255,c=Math.max(l,r,h),g=Math.min(l,r,h);let v=0;c!==g&&(c===l?v=60*(0+(r-h)/(c-g)):c===r?v=60*(2+(h-l)/(c-g)):c===h&&(v=60*(4+(l-r)/(c-g)))),v<0&&(v=v+360);const k=c===0?0:(c-g)/c,x=[v,k,c];return{h:x[0],s:x[1],v:x[2],a:n.a}}function Op(n){const{h:l,s:r,v:h,a:c}=n,g=h-h*r/2,v=g===1||g===0?0:(h-g)/Math.min(g,1-g);return{h:l,s:v,l:g,a:c}}function o2(n){const{h:l,s:r,l:h,a:c}=n,g=h+r*Math.min(h,1-h),v=g===0?0:2-2*h/g;return{h:l,s:v,v:g,a:c}}function Fp(n){let{r:l,g:r,b:h,a:c}=n;return c===void 0?`rgb(${l}, ${r}, ${h})`:`rgba(${l}, ${r}, ${h}, ${c})`}function Rp(n){return Fp(bl(n))}function Ks(n){const l=Math.round(n).toString(16);return("00".substr(0,2-l.length)+l).toUpperCase()}function Tp(n){let{r:l,g:r,b:h,a:c}=n;return`#${[Ks(l),Ks(r),Ks(h),c!==void 0?Ks(Math.round(c*255)):""].join("")}`}function Ep(n){n=t6(n);let[l,r,h,c]=Nk(n,2).map(g=>parseInt(g,16));return c=c===void 0?c:c/255,{r:l,g:r,b:h,a:c}}function Jk(n){const l=Ep(n);return ei(l)}function Vp(n){return Tp(bl(n))}function t6(n){return n.startsWith("#")&&(n=n.slice(1)),n=n.replace(/([^0-9a-f])/gi,"F"),(n.length===3||n.length===4)&&(n=n.split("").map(l=>l+l).join("")),n.length!==6&&(n=sd(sd(n,6),8,"F")),n}function e6(n,l){const r=Pp(r2(n));return r[0]=r[0]+l*10,Dp(Lp(r))}function n6(n,l){const r=Pp(r2(n));return r[0]=r[0]-l*10,Dp(Lp(r))}function D0(n){const l=Yn(n);return r2(l)[1]}function l6(n,l){const r=D0(n),h=D0(l),c=Math.max(r,h),g=Math.min(r,h);return(c+.05)/(g+.05)}function _p(n){const l=Math.abs(kd(Yn(0),Yn(n)));return Math.abs(kd(Yn(16777215),Yn(n)))>Math.min(l,50)?"#fff":"#000"}function mt(n,l){return r=>Object.keys(n).reduce((h,c)=>{const v=typeof n[c]=="object"&&n[c]!=null&&!Array.isArray(n[c])?n[c]:{type:n[c]};return r&&c in r?h[c]={...v,default:r[c]}:h[c]=v,l&&!h[c].source&&(h[c].source=l),h},{})}const Xt=mt({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component");function Fn(n){if(n._setup=n._setup??n.setup,!n.name)return n;if(n._setup){n.props=mt(n.props??{},n.name)();const l=Object.keys(n.props);n.filterProps=function(h){return Mr(h,l,["class","style"])},n.props._as=String,n.setup=function(h,c){const g=i2();if(!g.value)return n._setup(h,c);const{props:v,provideSubDefaults:k}=c6(h,h._as??n.name,g),x=n._setup(v,c);return k(),x}}return n}function Bt(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;return l=>(n?Fn:Cr)(l)}function Qn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",r=arguments.length>2?arguments[2]:void 0;return Bt()({name:r??Il(Sn(n.replace(/__/g,"-"))),props:{tag:{type:String,default:l},...Xt()},setup(h,c){let{slots:g}=c;return()=>{var v;return Ln(h.tag,{class:[n,h.class],style:h.style},(v=g.default)==null?void 0:v.call(g))}}})}function Wp(n){if(typeof n.getRootNode!="function"){for(;n.parentNode;)n=n.parentNode;return n!==document?null:document}const l=n.getRootNode();return l!==document&&l.getRootNode({composed:!0})!==document?null:l}const as="cubic-bezier(0.4, 0, 0.2, 1)",r6="cubic-bezier(0.0, 0, 0.2, 1)",o6="cubic-bezier(0.4, 0, 1, 1)";function Ye(n,l){const r=al();if(!r)throw new Error(`[Vuetify] ${n} ${l||"must be called from inside a setup function"}`);return r}function Cl(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables";const l=Ye(n).type;return vr((l==null?void 0:l.aliasName)||(l==null?void 0:l.name))}let Xp=0,ia=new WeakMap;function hn(){const n=Ye("getUid");if(ia.has(n))return ia.get(n);{const l=Xp++;return ia.set(n,l),l}}hn.reset=()=>{Xp=0,ia=new WeakMap};function s2(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;for(;n;){if(l?s6(n):a2(n))return n;n=n.parentElement}return document.scrollingElement}function Ma(n,l){const r=[];if(l&&n&&!l.contains(n))return r;for(;n&&(a2(n)&&r.push(n),n!==l);)n=n.parentElement;return r}function a2(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return l.overflowY==="scroll"||l.overflowY==="auto"&&n.scrollHeight>n.clientHeight}function s6(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return["scroll","auto"].includes(l.overflowY)}function a6(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Ye("injectSelf");const{provides:r}=l;if(r&&n in r)return r[n]}function i6(n){for(;n;){if(window.getComputedStyle(n).position==="fixed")return!0;n=n.offsetParent}return!1}function Dt(n){const l=Ye("useRender");l.render=n}const oo=Symbol.for("vuetify:defaults");function h6(n){return Lt(n)}function i2(){const n=de(oo);if(!n)throw new Error("[Vuetify] Could not find defaults instance");return n}function Te(n,l){const r=i2(),h=Lt(n),c=q(()=>{if(je(l==null?void 0:l.disabled))return r.value;const v=je(l==null?void 0:l.scoped),k=je(l==null?void 0:l.reset),x=je(l==null?void 0:l.root);if(h.value==null&&!(v||k||x))return r.value;let I=Nn(h.value,{prev:r.value});if(v)return I;if(k||x){const S=Number(k||1/0);for(let $=0;$<=S&&!(!I||!("prev"in I));$++)I=I.prev;return I&&typeof x=="string"&&x in I&&(I=Nn(Nn(I,{prev:I}),I[x])),I}return I.prev?Nn(I.prev,I):I});return Se(oo,c),c}function d6(n,l){var r,h;return typeof((r=n.props)==null?void 0:r[l])<"u"||typeof((h=n.props)==null?void 0:h[vr(l)])<"u"}function c6(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1?arguments[1]:void 0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:i2();const h=Ye("useDefaults");if(l=l??h.type.name??h.type.__name,!l)throw new Error("[Vuetify] Could not determine component name");const c=q(()=>{var x;return(x=r.value)==null?void 0:x[n._as??l]}),g=new Proxy(n,{get(x,I){var $,B,P,D;const S=Reflect.get(x,I);return I==="class"||I==="style"?[($=c.value)==null?void 0:$[I],S].filter(F=>F!=null):typeof I=="string"&&!d6(h.vnode,I)?((B=c.value)==null?void 0:B[I])??((D=(P=r.value)==null?void 0:P.global)==null?void 0:D[I])??S:S}}),v=Wt();bn(()=>{if(c.value){const x=Object.entries(c.value).filter(I=>{let[S]=I;return S.startsWith(S[0].toUpperCase())});v.value=x.length?Object.fromEntries(x):void 0}else v.value=void 0});function k(){const x=a6(oo,h);Se(oo,q(()=>v.value?Nn((x==null?void 0:x.value)??{},v.value):x==null?void 0:x.value))}return{props:g,provideSubDefaults:k}}const ni=["sm","md","lg","xl","xxl"],O0=Symbol.for("vuetify:display"),zd={mobileBreakpoint:"lg",thresholds:{xs:0,sm:600,md:960,lg:1280,xl:1920,xxl:2560}},u6=function(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:zd;return Nn(zd,n)};function Id(n){return ze&&!n?window.innerWidth:typeof n=="object"&&n.clientWidth||0}function yd(n){return ze&&!n?window.innerHeight:typeof n=="object"&&n.clientHeight||0}function Cd(n){const l=ze&&!n?window.navigator.userAgent:"ssr";function r(D){return!!l.match(D)}const h=r(/android/i),c=r(/iphone|ipad|ipod/i),g=r(/cordova/i),v=r(/electron/i),k=r(/chrome/i),x=r(/edge/i),I=r(/firefox/i),S=r(/opera/i),$=r(/win/i),B=r(/mac/i),P=r(/linux/i);return{android:h,ios:c,cordova:g,electron:v,chrome:k,edge:x,firefox:I,opera:S,win:$,mac:B,linux:P,touch:Ck,ssr:l==="ssr"}}function p6(n,l){const{thresholds:r,mobileBreakpoint:h}=u6(n),c=Wt(yd(l)),g=Wt(Cd(l)),v=Ze({}),k=Wt(Id(l));function x(){c.value=yd(),k.value=Id()}function I(){x(),g.value=Cd()}return bn(()=>{const S=k.value=r.xxl,X=S?"xs":$?"sm":B?"md":P?"lg":D?"xl":"xxl",R=typeof h=="number"?h:r[h],H=k.valueLn(d2,{...n,class:"mdi"})},ee=[String,Function,Object,Array],F0=Symbol.for("vuetify:icons"),li=mt({icon:{type:ee},tag:{type:String,required:!0}},"icon"),R0=Bt()({name:"VComponentIcon",props:li(),setup(n,l){let{slots:r}=l;return()=>{const h=n.icon;return t(n.tag,null,{default:()=>{var c;return[n.icon?t(h,null,null):(c=r.default)==null?void 0:c.call(r)]}})}}}),h2=Fn({name:"VSvgIcon",inheritAttrs:!1,props:li(),setup(n,l){let{attrs:r}=l;return()=>t(n.tag,o(r,{style:null}),{default:()=>[t("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(n.icon)?n.icon.map(h=>Array.isArray(h)?t("path",{d:h[0],"fill-opacity":h[1]},null):t("path",{d:h},null)):t("path",{d:n.icon},null)])]})}}),v6=Fn({name:"VLigatureIcon",props:li(),setup(n){return()=>t(n.tag,null,{default:()=>[n.icon]})}}),d2=Fn({name:"VClassIcon",props:li(),setup(n){return()=>t(n.tag,{class:n.icon},null)}}),f6={svg:{component:h2},class:{component:d2}};function m6(n){return Nn({defaultSet:"mdi",sets:{...f6,mdi:w6},aliases:{...g6,vuetify:["M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z",["M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z",.6]],"vuetify-outline":"svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z"}},n)}const k6=n=>{const l=de(F0);if(!l)throw new Error("Missing Vuetify Icons provide!");return{iconData:q(()=>{var x;const h=je(n);if(!h)return{component:R0};let c=h;if(typeof c=="string"&&(c=c.trim(),c.startsWith("$")&&(c=(x=l.aliases)==null?void 0:x[c.slice(1)])),!c)throw new Error(`Could not find aliased icon "${h}"`);if(Array.isArray(c))return{component:h2,icon:c};if(typeof c!="string")return{component:R0,icon:c};const g=Object.keys(l.sets).find(I=>typeof c=="string"&&c.startsWith(`${I}:`)),v=g?c.slice(g.length+1):c;return{component:l.sets[g??l.defaultSet].component,icon:v}})}},b6={badge:"Badge",open:"Open",close:"Close",dataIterator:{noResultsText:"No matching records found",loadingText:"Loading items..."},dataTable:{itemsPerPageText:"Rows per page:",ariaLabel:{sortDescending:"Sorted descending.",sortAscending:"Sorted ascending.",sortNone:"Not sorted.",activateNone:"Activate to remove sorting.",activateDescending:"Activate to sort descending.",activateAscending:"Activate to sort ascending."},sortBy:"Sort by"},dataFooter:{itemsPerPageText:"Items per page:",itemsPerPageAll:"All",nextPage:"Next page",prevPage:"Previous page",firstPage:"First page",lastPage:"Last page",pageText:"{0}-{1} of {2}"},dateRangeInput:{divider:"to"},datePicker:{ok:"OK",cancel:"Cancel",range:{title:"Select dates",header:"Enter dates"},title:"Select date",header:"Enter date",input:{placeholder:"Enter date"}},noDataText:"No data available",carousel:{prev:"Previous visual",next:"Next visual",ariaLabel:{delimiter:"Carousel slide {0} of {1}"}},calendar:{moreEvents:"{0} more"},input:{clear:"Clear {0}",prependAction:"{0} prepended action",appendAction:"{0} appended action",otp:"Please enter OTP character {0}"},fileInput:{counter:"{0} files",counterSize:"{0} files ({1} in total)"},timePicker:{am:"AM",pm:"PM"},pagination:{ariaLabel:{root:"Pagination Navigation",next:"Next page",previous:"Previous page",page:"Go to page {0}",currentPage:"Page {0}, Current page",first:"First page",last:"Last page"}},stepper:{next:"Next",prev:"Previous"},rating:{ariaLabel:{item:"Rating {0} of {1}"}},loading:"Loading...",infiniteScroll:{loadMore:"Load more",empty:"No more"}},M6={af:!1,ar:!0,bg:!1,ca:!1,ckb:!1,cs:!1,de:!1,el:!1,en:!1,es:!1,et:!1,fa:!0,fi:!1,fr:!1,hr:!1,hu:!1,he:!0,id:!1,it:!1,ja:!1,ko:!1,lv:!1,lt:!1,nl:!1,no:!1,pl:!1,pt:!1,ro:!1,ru:!1,sk:!1,sl:!1,srCyrl:!1,srLatn:!1,sv:!1,th:!1,tr:!1,az:!1,uk:!1,vi:!1,zhHans:!1,zhHant:!1};function Zl(n,l){let r;function h(){r=io(),r.run(()=>l.length?l(()=>{r==null||r.stop(),h()}):l())}_t(n,c=>{c&&!r?h():c||(r==null||r.stop(),r=void 0)},{immediate:!0}),sn(()=>{r==null||r.stop()})}function ne(n,l,r){let h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:$=>$,c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:$=>$;const g=Ye("useProxiedModel"),v=Lt(n[l]!==void 0?n[l]:r),k=vr(l),I=q(k!==l?()=>{var $,B,P,D;return n[l],!!((($=g.vnode.props)!=null&&$.hasOwnProperty(l)||(B=g.vnode.props)!=null&&B.hasOwnProperty(k))&&((P=g.vnode.props)!=null&&P.hasOwnProperty(`onUpdate:${l}`)||(D=g.vnode.props)!=null&&D.hasOwnProperty(`onUpdate:${k}`)))}:()=>{var $,B;return n[l],!!(($=g.vnode.props)!=null&&$.hasOwnProperty(l)&&((B=g.vnode.props)!=null&&B.hasOwnProperty(`onUpdate:${l}`)))});Zl(()=>!I.value,()=>{_t(()=>n[l],$=>{v.value=$})});const S=q({get(){const $=n[l];return h(I.value?$:v.value)},set($){const B=c($),P=le(I.value?n[l]:v.value);P===B||h(P)===$||(v.value=B,g==null||g.emit(`update:${l}`,B))}});return Object.defineProperty(S,"externalValue",{get:()=>I.value?n[l]:v.value}),S}const Sd="$vuetify.",$d=(n,l)=>n.replace(/\{(\d+)\}/g,(r,h)=>String(l[+h])),qp=(n,l,r)=>function(h){for(var c=arguments.length,g=new Array(c>1?c-1:0),v=1;vnew Intl.NumberFormat([n.value,l.value],h).format(r)}function Wi(n,l,r){const h=ne(n,l,n[l]??r.value);return h.value=n[l]??r.value,_t(r,c=>{n[l]==null&&(h.value=r.value)}),h}function Up(n){return l=>{const r=Wi(l,"locale",n.current),h=Wi(l,"fallback",n.fallback),c=Wi(l,"messages",n.messages);return{name:"vuetify",current:r,fallback:h,messages:c,t:qp(r,h,c),n:Yp(r,h),provide:Up({current:r,fallback:h,messages:c})}}}function x6(n){const l=Wt((n==null?void 0:n.locale)??"en"),r=Wt((n==null?void 0:n.fallback)??"en"),h=Lt({en:b6,...n==null?void 0:n.messages});return{name:"vuetify",current:l,fallback:r,messages:h,t:qp(l,r,h),n:Yp(l,r),provide:Up({current:l,fallback:r,messages:h})}}const so=Symbol.for("vuetify:locale");function z6(n){return n.name!=null}function I6(n){const l=n!=null&&n.adapter&&z6(n==null?void 0:n.adapter)?n==null?void 0:n.adapter:x6(n),r=C6(l,n);return{...l,...r}}function Rn(){const n=de(so);if(!n)throw new Error("[Vuetify] Could not find injected locale instance");return n}function y6(n){const l=de(so);if(!l)throw new Error("[Vuetify] Could not find injected locale instance");const r=l.provide(n),h=S6(r,l.rtl,n),c={...r,...h};return Se(so,c),c}function C6(n,l){const r=Lt((l==null?void 0:l.rtl)??M6),h=q(()=>r.value[n.current.value]??!1);return{isRtl:h,rtl:r,rtlClasses:q(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function S6(n,l,r){const h=q(()=>r.rtl??l.value[n.current.value]??!1);return{isRtl:h,rtl:l,rtlClasses:q(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Ue(){const n=de(so);if(!n)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:n.isRtl,rtlClasses:n.rtlClasses}}const is=Symbol.for("vuetify:theme"),ue=mt({theme:String},"theme"),Bo={defaultTheme:"light",variations:{colors:[],lighten:0,darken:0},themes:{light:{dark:!1,colors:{background:"#FFFFFF",surface:"#FFFFFF","surface-variant":"#424242","on-surface-variant":"#EEEEEE",primary:"#6200EE","primary-darken-1":"#3700B3",secondary:"#03DAC6","secondary-darken-1":"#018786",error:"#B00020",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#000000","border-opacity":.12,"high-emphasis-opacity":.87,"medium-emphasis-opacity":.6,"disabled-opacity":.38,"idle-opacity":.04,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.12,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#F5F5F5","theme-on-code":"#000000"}},dark:{dark:!0,colors:{background:"#121212",surface:"#212121","surface-variant":"#BDBDBD","on-surface-variant":"#424242",primary:"#BB86FC","primary-darken-1":"#3700B3",secondary:"#03DAC5","secondary-darken-1":"#03DAC5",error:"#CF6679",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#FFFFFF","border-opacity":.12,"high-emphasis-opacity":1,"medium-emphasis-opacity":.7,"disabled-opacity":.5,"idle-opacity":.1,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.16,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#343434","theme-on-code":"#CCCCCC"}}}};function $6(){var r,h;let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Bo;if(!n)return{...Bo,isDisabled:!0};const l={};for(const[c,g]of Object.entries(n.themes??{})){const v=g.dark||c==="dark"?(r=Bo.themes)==null?void 0:r.dark:(h=Bo.themes)==null?void 0:h.light;l[c]=Nn(v,g)}return Nn(Bo,{...n,themes:l})}function A6(n){const l=$6(n),r=Lt(l.defaultTheme),h=Lt(l.themes),c=q(()=>{const S={};for(const[$,B]of Object.entries(h.value)){const P=S[$]={...B,colors:{...B.colors}};if(l.variations)for(const D of l.variations.colors){const F=P.colors[D];if(F)for(const X of["lighten","darken"]){const R=X==="lighten"?e6:n6;for(const H of gl(l.variations[X],1))P.colors[`${D}-${X}-${H}`]=Tp(R(Yn(F),H))}}for(const D of Object.keys(P.colors)){if(/^on-[a-z]/.test(D)||P.colors[`on-${D}`])continue;const F=`on-${D}`,X=Yn(P.colors[D]);P.colors[F]=_p(X)}}return S}),g=q(()=>c.value[r.value]),v=q(()=>{const S=[];g.value.dark&&ar(S,":root",["color-scheme: dark"]),ar(S,":root",Ad(g.value));for(const[D,F]of Object.entries(c.value))ar(S,`.v-theme--${D}`,[`color-scheme: ${F.dark?"dark":"normal"}`,...Ad(F)]);const $=[],B=[],P=new Set(Object.values(c.value).flatMap(D=>Object.keys(D.colors)));for(const D of P)/^on-[a-z]/.test(D)?ar(B,`.${D}`,[`color: rgb(var(--v-theme-${D})) !important`]):(ar($,`.bg-${D}`,[`--v-theme-overlay-multiplier: var(--v-theme-${D}-overlay-multiplier)`,`background-color: rgb(var(--v-theme-${D})) !important`,`color: rgb(var(--v-theme-on-${D})) !important`]),ar(B,`.text-${D}`,[`color: rgb(var(--v-theme-${D})) !important`]),ar(B,`.border-${D}`,[`--v-border-color: var(--v-theme-${D})`]));return S.push(...$,...B),S.map((D,F)=>F===0?D:` ${D}`).join("")});function k(){return{style:[{children:v.value,id:"vuetify-theme-stylesheet",nonce:l.cspNonce||!1}]}}function x(S){if(l.isDisabled)return;const $=S._context.provides.usehead;if($)if($.push){const B=$.push(k);ze&&_t(v,()=>{B.patch(k)})}else ze?($.addHeadObjs(q(k)),bn(()=>$.updateDOM())):$.addHeadObjs(k());else{let P=function(){if(typeof document<"u"&&!B){const D=document.createElement("style");D.type="text/css",D.id="vuetify-theme-stylesheet",l.cspNonce&&D.setAttribute("nonce",l.cspNonce),B=D,document.head.appendChild(B)}B&&(B.innerHTML=v.value)},B=ze?document.getElementById("vuetify-theme-stylesheet"):null;ze?_t(v,P,{immediate:!0}):P()}}const I=q(()=>l.isDisabled?void 0:`v-theme--${r.value}`);return{install:x,isDisabled:l.isDisabled,name:r,themes:h,current:g,computedThemes:c,themeClasses:I,styles:v,global:{name:r,current:g}}}function ve(n){Ye("provideTheme");const l=de(is,null);if(!l)throw new Error("Could not find Vuetify theme injection");const r=q(()=>n.theme??(l==null?void 0:l.name.value)),h=q(()=>l.isDisabled?void 0:`v-theme--${r.value}`),c={...l,name:r,themeClasses:h};return Se(is,c),c}function Gp(){Ye("useTheme");const n=de(is,null);if(!n)throw new Error("Could not find Vuetify theme injection");return n}function ar(n,l,r){n.push(`${l} { -`,...r.map(h=>` ${h}; -`),`} -`)}function Ad(n){const l=n.dark?2:1,r=n.dark?1:2,h=[];for(const[c,g]of Object.entries(n.colors)){const v=Yn(g);h.push(`--v-theme-${c}: ${v.r},${v.g},${v.b}`),c.startsWith("on-")||h.push(`--v-theme-${c}-overlay-multiplier: ${D0(g)>.18?l:r}`)}for(const[c,g]of Object.entries(n.variables)){const v=typeof g=="string"&&g.startsWith("#")?Yn(g):void 0,k=v?`${v.r}, ${v.g}, ${v.b}`:void 0;h.push(`--v-${c}: ${k??g}`)}return h}const T0={"001":1,AD:1,AE:6,AF:6,AG:0,AI:1,AL:1,AM:1,AN:1,AR:1,AS:0,AT:1,AU:1,AX:1,AZ:1,BA:1,BD:0,BE:1,BG:1,BH:6,BM:1,BN:1,BR:0,BS:0,BT:0,BW:0,BY:1,BZ:0,CA:0,CH:1,CL:1,CM:1,CN:1,CO:0,CR:1,CY:1,CZ:1,DE:1,DJ:6,DK:1,DM:0,DO:0,DZ:6,EC:1,EE:1,EG:6,ES:1,ET:0,FI:1,FJ:1,FO:1,FR:1,GB:1,"GB-alt-variant":0,GE:1,GF:1,GP:1,GR:1,GT:0,GU:0,HK:0,HN:0,HR:1,HU:1,ID:0,IE:1,IL:0,IN:0,IQ:6,IR:6,IS:1,IT:1,JM:0,JO:6,JP:0,KE:0,KG:1,KH:0,KR:0,KW:6,KZ:1,LA:0,LB:1,LI:1,LK:1,LT:1,LU:1,LV:1,LY:6,MC:1,MD:1,ME:1,MH:0,MK:1,MM:0,MN:1,MO:0,MQ:1,MT:0,MV:5,MX:0,MY:1,MZ:0,NI:0,NL:1,NO:1,NP:0,NZ:1,OM:6,PA:0,PE:0,PH:0,PK:0,PL:1,PR:0,PT:0,PY:0,QA:6,RE:1,RO:1,RS:1,RU:1,SA:0,SD:6,SE:1,SG:0,SI:1,SK:1,SM:1,SV:0,SY:6,TH:0,TJ:1,TM:1,TR:1,TT:0,TW:0,UA:1,UM:0,US:0,UY:1,UZ:1,VA:1,VE:0,VI:0,VN:1,WS:0,XK:1,YE:0,ZA:0,ZW:0};function B6(n,l){const r=[];let h=[];const c=Zp(n),g=Kp(n),v=c.getDay()-T0[l.slice(-2).toUpperCase()],k=g.getDay()-T0[l.slice(-2).toUpperCase()];for(let x=0;x{const h=new Date(Bd);return h.setDate(Bd.getDate()+l+r),new Intl.DateTimeFormat(n,{weekday:"narrow"}).format(h)})}function L6(n,l,r){const h=new Date(n);let c={};switch(l){case"fullDateWithWeekday":c={weekday:"long",day:"numeric",month:"long",year:"numeric"};break;case"normalDateWithWeekday":c={weekday:"short",day:"numeric",month:"short"};break;case"keyboardDate":c={};break;case"monthAndDate":c={month:"long",day:"numeric"};break;case"monthAndYear":c={month:"long",year:"numeric"};break;case"dayOfMonth":c={day:"numeric"};break;default:c={timeZone:"UTC",timeZoneName:"short"}}return new Intl.DateTimeFormat(r,c).format(h)}function D6(n,l){const r=new Date(n);return r.setDate(r.getDate()+l),r}function O6(n,l){const r=new Date(n);return r.setMonth(r.getMonth()+l),r}function F6(n){return n.getFullYear()}function R6(n){return n.getMonth()}function T6(n){return new Date(n.getFullYear(),0,1)}function E6(n){return new Date(n.getFullYear(),11,31)}function V6(n,l){return E0(n,l[0])&&W6(n,l[1])}function _6(n){const l=new Date(n);return l instanceof Date&&!isNaN(l.getTime())}function E0(n,l){return n.getTime()>l.getTime()}function W6(n,l){return n.getTime()1&&arguments[1]!==void 0?arguments[1]:"content";const r=Lt(),h=Lt();if(ze){const c=new ResizeObserver(g=>{n==null||n(g,c),g.length&&(l==="content"?h.value=g[0].contentRect:h.value=g[0].target.getBoundingClientRect())});Qe(()=>{c.disconnect()}),_t(r,(g,v)=>{v&&(c.unobserve(N0(v)),h.value=void 0),g&&c.observe(N0(g))},{flush:"post"})}return{resizeRef:r,contentRect:uo(h)}}const xa=Symbol.for("vuetify:layout"),Qp=Symbol.for("vuetify:layout-item"),jd=1e3,Jp=mt({overlaps:{type:Array,default:()=>[]},fullHeight:Boolean},"layout"),go=mt({name:{type:String},order:{type:[Number,String],default:0},absolute:Boolean},"layout-item");function K6(){const n=de(xa);if(!n)throw new Error("[Vuetify] Could not find injected layout");return{getLayoutItem:n.getLayoutItem,mainRect:n.mainRect,mainStyles:n.mainStyles}}function wo(n){const l=de(xa);if(!l)throw new Error("[Vuetify] Could not find injected layout");const r=n.id??`layout-item-${hn()}`,h=Ye("useLayoutItem");Se(Qp,{id:r});const c=Wt(!1);Nh(()=>c.value=!0),Hh(()=>c.value=!1);const{layoutItemStyles:g,layoutItemScrimStyles:v}=l.register(h,{...n,active:q(()=>c.value?!1:n.active.value),id:r});return Qe(()=>l.unregister(r)),{layoutItemStyles:g,layoutRect:l.layoutRect,layoutItemScrimStyles:v}}const Q6=(n,l,r,h)=>{let c={top:0,left:0,right:0,bottom:0};const g=[{id:"",layer:{...c}}];for(const v of n){const k=l.get(v),x=r.get(v),I=h.get(v);if(!k||!x||!I)continue;const S={...c,[k.value]:parseInt(c[k.value],10)+(I.value?parseInt(x.value,10):0)};g.push({id:v,layer:S}),c=S}return g};function t4(n){const l=de(xa,null),r=q(()=>l?l.rootZIndex.value-100:jd),h=Lt([]),c=Ze(new Map),g=Ze(new Map),v=Ze(new Map),k=Ze(new Map),x=Ze(new Map),{resizeRef:I,contentRect:S}=sl(),$=q(()=>{const tt=new Map,nt=n.overlaps??[];for(const Y of nt.filter(G=>G.includes(":"))){const[G,et]=Y.split(":");if(!h.value.includes(G)||!h.value.includes(et))continue;const st=c.get(G),rt=c.get(et),ht=g.get(G),dt=g.get(et);!st||!rt||!ht||!dt||(tt.set(et,{position:st.value,amount:parseInt(ht.value,10)}),tt.set(G,{position:rt.value,amount:-parseInt(dt.value,10)}))}return tt}),B=q(()=>{const tt=[...new Set([...v.values()].map(Y=>Y.value))].sort((Y,G)=>Y-G),nt=[];for(const Y of tt){const G=h.value.filter(et=>{var st;return((st=v.get(et))==null?void 0:st.value)===Y});nt.push(...G)}return Q6(nt,c,g,k)}),P=q(()=>!Array.from(x.values()).some(tt=>tt.value)),D=q(()=>B.value[B.value.length-1].layer),F=q(()=>({"--v-layout-left":qt(D.value.left),"--v-layout-right":qt(D.value.right),"--v-layout-top":qt(D.value.top),"--v-layout-bottom":qt(D.value.bottom),...P.value?void 0:{transition:"none"}})),X=q(()=>B.value.slice(1).map((tt,nt)=>{let{id:Y}=tt;const{layer:G}=B.value[nt],et=g.get(Y),st=c.get(Y);return{id:Y,...G,size:Number(et.value),position:st.value}})),R=tt=>X.value.find(nt=>nt.id===tt),H=Ye("createLayout"),U=Wt(!1);Ve(()=>{U.value=!0}),Se(xa,{register:(tt,nt)=>{let{id:Y,order:G,position:et,layoutSize:st,elementSize:rt,active:ht,disableTransitions:dt,absolute:Ct}=nt;v.set(Y,G),c.set(Y,et),g.set(Y,st),k.set(Y,ht),dt&&x.set(Y,dt);const wt=qo(Qp,H==null?void 0:H.vnode).indexOf(tt);wt>-1?h.value.splice(wt,0,Y):h.value.push(Y);const gt=q(()=>X.value.findIndex(Ft=>Ft.id===Y)),It=q(()=>r.value+B.value.length*2-gt.value*2),At=q(()=>{const Ft=et.value==="left"||et.value==="right",Qt=et.value==="right",Jt=et.value==="bottom",Et={[et.value]:0,zIndex:It.value,transform:`translate${Ft?"X":"Y"}(${(ht.value?0:-110)*(Qt||Jt?-1:1)}%)`,position:Ct.value||r.value!==jd?"absolute":"fixed",...P.value?void 0:{transition:"none"}};if(!U.value)return Et;const ut=X.value[gt.value];if(!ut)throw new Error(`[Vuetify] Could not find layout item "${Y}"`);const pt=$.value.get(Y);return pt&&(ut[pt.position]+=pt.amount),{...Et,height:Ft?`calc(100% - ${ut.top}px - ${ut.bottom}px)`:rt.value?`${rt.value}px`:void 0,left:Qt?void 0:`${ut.left}px`,right:Qt?`${ut.right}px`:void 0,top:et.value!=="bottom"?`${ut.top}px`:void 0,bottom:et.value!=="top"?`${ut.bottom}px`:void 0,width:Ft?rt.value?`${rt.value}px`:void 0:`calc(100% - ${ut.left}px - ${ut.right}px)`}}),Tt=q(()=>({zIndex:It.value-1}));return{layoutItemStyles:At,layoutItemScrimStyles:Tt,zIndex:It}},unregister:tt=>{v.delete(tt),c.delete(tt),g.delete(tt),k.delete(tt),x.delete(tt),h.value=h.value.filter(nt=>nt!==tt)},mainRect:D,mainStyles:F,getLayoutItem:R,items:X,layoutRect:S,rootZIndex:r});const W=q(()=>["v-layout",{"v-layout--full-height":n.fullHeight}]),_=q(()=>({zIndex:r.value,position:l?"relative":void 0,overflow:l?"hidden":void 0}));return{layoutClasses:W,layoutStyles:_,getLayoutItem:R,items:X,layoutRect:S,layoutRef:I}}function e4(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const{blueprint:l,...r}=n,h=Nn(l,r),{aliases:c={},components:g={},directives:v={}}=h,k=h6(h.defaults),x=p6(h.display,h.ssr),I=A6(h.theme),S=m6(h.icons),$=I6(h.locale),B=Z6(h.date);return{install:D=>{for(const F in v)D.directive(F,v[F]);for(const F in g)D.component(F,g[F]);for(const F in c)D.component(F,Fn({...c[F],name:F,aliasName:c[F].name}));if(I.install(D),D.provide(oo,k),D.provide(O0,x),D.provide(is,I),D.provide(F0,S),D.provide(so,$),D.provide(Nd,B),ze&&h.ssr)if(D.$nuxt)D.$nuxt.hook("app:suspense:resolve",()=>{x.update()});else{const{mount:F}=D;D.mount=function(){const X=F(...arguments);return we(()=>x.update()),D.mount=F,X}}hn.reset(),D.mixin({computed:{$vuetify(){return Ze({defaults:Tr.call(this,oo),display:Tr.call(this,O0),theme:Tr.call(this,is),icons:Tr.call(this,F0),locale:Tr.call(this,so),date:Tr.call(this,Nd)})}}})},defaults:k,display:x,theme:I,icons:S,locale:$,date:B}}const J6="3.3.14";e4.version=J6;function Tr(n){var h,c;const l=this.$,r=((h=l.parent)==null?void 0:h.provides)??((c=l.vnode.appContext)==null?void 0:c.provides);if(r&&n in r)return r[n]}const t7=mt({...Xt(),...Jp({fullHeight:!0}),...ue()},"VApp"),e7=Bt()({name:"VApp",props:t7(),setup(n,l){let{slots:r}=l;const h=ve(n),{layoutClasses:c,layoutStyles:g,getLayoutItem:v,items:k,layoutRef:x}=t4(n),{rtlClasses:I}=Ue();return Dt(()=>{var S;return t("div",{ref:x,class:["v-application",h.themeClasses.value,c.value,I.value,n.class],style:[g.value,n.style]},[t("div",{class:"v-application__wrap"},[(S=r.default)==null?void 0:S.call(r)])])}),{getLayoutItem:v,items:k,theme:h}}});const re=mt({tag:{type:String,default:"div"}},"tag"),n4=mt({text:String,...Xt(),...re()},"VToolbarTitle"),c2=Bt()({name:"VToolbarTitle",props:n4(),setup(n,l){let{slots:r}=l;return Dt(()=>{const h=!!(r.default||r.text||n.text);return t(n.tag,{class:["v-toolbar-title",n.class],style:n.style},{default:()=>{var c;return[h&&t("div",{class:"v-toolbar-title__placeholder"},[r.text?r.text():n.text,(c=r.default)==null?void 0:c.call(r)])]}})}),{}}}),n7=mt({disabled:Boolean,group:Boolean,hideOnLeave:Boolean,leaveAbsolute:Boolean,mode:String,origin:String},"transition");function $n(n,l,r){return Bt()({name:n,props:n7({mode:r,origin:l}),setup(h,c){let{slots:g}=c;const v={onBeforeEnter(k){h.origin&&(k.style.transformOrigin=h.origin)},onLeave(k){if(h.leaveAbsolute){const{offsetTop:x,offsetLeft:I,offsetWidth:S,offsetHeight:$}=k;k._transitionInitialStyles={position:k.style.position,top:k.style.top,left:k.style.left,width:k.style.width,height:k.style.height},k.style.position="absolute",k.style.top=`${x}px`,k.style.left=`${I}px`,k.style.width=`${S}px`,k.style.height=`${$}px`}h.hideOnLeave&&k.style.setProperty("display","none","important")},onAfterLeave(k){if(h.leaveAbsolute&&(k!=null&&k._transitionInitialStyles)){const{position:x,top:I,left:S,width:$,height:B}=k._transitionInitialStyles;delete k._transitionInitialStyles,k.style.position=x||"",k.style.top=I||"",k.style.left=S||"",k.style.width=$||"",k.style.height=B||""}}};return()=>{const k=h.group?Hu:Zn;return Ln(k,{name:h.disabled?"":n,css:!h.disabled,...h.group?void 0:{mode:h.mode},...h.disabled?{}:v},g.default)}}})}function l4(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"in-out";return Bt()({name:n,props:{mode:{type:String,default:r},disabled:Boolean},setup(h,c){let{slots:g}=c;return()=>Ln(Zn,{name:h.disabled?"":n,css:!h.disabled,...h.disabled?{}:l},g.default)}})}function r4(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";const r=(arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1)?"width":"height",h=Sn(`offset-${r}`);return{onBeforeEnter(v){v._parent=v.parentNode,v._initialStyle={transition:v.style.transition,overflow:v.style.overflow,[r]:v.style[r]}},onEnter(v){const k=v._initialStyle;v.style.setProperty("transition","none","important"),v.style.overflow="hidden";const x=`${v[h]}px`;v.style[r]="0",v.offsetHeight,v.style.transition=k.transition,n&&v._parent&&v._parent.classList.add(n),requestAnimationFrame(()=>{v.style[r]=x})},onAfterEnter:g,onEnterCancelled:g,onLeave(v){v._initialStyle={transition:"",overflow:v.style.overflow,[r]:v.style[r]},v.style.overflow="hidden",v.style[r]=`${v[h]}px`,v.offsetHeight,requestAnimationFrame(()=>v.style[r]="0")},onAfterLeave:c,onLeaveCancelled:c};function c(v){n&&v._parent&&v._parent.classList.remove(n),g(v)}function g(v){const k=v._initialStyle[r];v.style.overflow=v._initialStyle.overflow,k!=null&&(v.style[r]=k),delete v._initialStyle}}const l7=mt({target:Object},"v-dialog-transition"),ri=Bt()({name:"VDialogTransition",props:l7(),setup(n,l){let{slots:r}=l;const h={onBeforeEnter(c){c.style.pointerEvents="none",c.style.visibility="hidden"},async onEnter(c,g){var B;await new Promise(P=>requestAnimationFrame(P)),await new Promise(P=>requestAnimationFrame(P)),c.style.visibility="";const{x:v,y:k,sx:x,sy:I,speed:S}=Ld(n.target,c),$=ur(c,[{transform:`translate(${v}px, ${k}px) scale(${x}, ${I})`,opacity:0},{}],{duration:225*S,easing:r6});(B=Pd(c))==null||B.forEach(P=>{ur(P,[{opacity:0},{opacity:0,offset:.33},{}],{duration:225*2*S,easing:as})}),$.finished.then(()=>g())},onAfterEnter(c){c.style.removeProperty("pointer-events")},onBeforeLeave(c){c.style.pointerEvents="none"},async onLeave(c,g){var B;await new Promise(P=>requestAnimationFrame(P));const{x:v,y:k,sx:x,sy:I,speed:S}=Ld(n.target,c);ur(c,[{},{transform:`translate(${v}px, ${k}px) scale(${x}, ${I})`,opacity:0}],{duration:125*S,easing:o6}).finished.then(()=>g()),(B=Pd(c))==null||B.forEach(P=>{ur(P,[{},{opacity:0,offset:.2},{opacity:0}],{duration:125*2*S,easing:as})})},onAfterLeave(c){c.style.removeProperty("pointer-events")}};return()=>n.target?t(Zn,o({name:"dialog-transition"},h,{css:!1}),r):t(Zn,{name:"dialog-transition"},r)}});function Pd(n){var r;const l=(r=n.querySelector(":scope > .v-card, :scope > .v-sheet, :scope > .v-list"))==null?void 0:r.children;return l&&[...l]}function Ld(n,l){const r=n.getBoundingClientRect(),h=l2(l),[c,g]=getComputedStyle(l).transformOrigin.split(" ").map(R=>parseFloat(R)),[v,k]=getComputedStyle(l).getPropertyValue("--v-overlay-anchor-origin").split(" ");let x=r.left+r.width/2;v==="left"||k==="left"?x-=r.width/2:(v==="right"||k==="right")&&(x+=r.width/2);let I=r.top+r.height/2;v==="top"||k==="top"?I-=r.height/2:(v==="bottom"||k==="bottom")&&(I+=r.height/2);const S=r.width/h.width,$=r.height/h.height,B=Math.max(1,S,$),P=S/B||0,D=$/B||0,F=h.width*h.height/(window.innerWidth*window.innerHeight),X=F>.12?Math.min(1.5,(F-.12)*10+1):1;return{x:x-(c+h.left),y:I-(g+h.top),sx:P,sy:D,speed:X}}const r7=$n("fab-transition","center center","out-in"),o7=$n("dialog-bottom-transition"),s7=$n("dialog-top-transition"),V0=$n("fade-transition"),u2=$n("scale-transition"),a7=$n("scroll-x-transition"),i7=$n("scroll-x-reverse-transition"),h7=$n("scroll-y-transition"),d7=$n("scroll-y-reverse-transition"),c7=$n("slide-x-transition"),u7=$n("slide-x-reverse-transition"),p2=$n("slide-y-transition"),p7=$n("slide-y-reverse-transition"),oi=l4("expand-transition",r4()),g2=l4("expand-x-transition",r4("",!0)),g7=mt({defaults:Object,disabled:Boolean,reset:[Number,String],root:[Boolean,String],scoped:Boolean},"VDefaultsProvider"),ke=Bt(!1)({name:"VDefaultsProvider",props:g7(),setup(n,l){let{slots:r}=l;const{defaults:h,disabled:c,reset:g,root:v,scoped:k}=vs(n);return Te(h,{reset:g,root:v,scoped:k,disabled:c}),()=>{var x;return(x=r.default)==null?void 0:x.call(r)}}});const Tn=mt({height:[Number,String],maxHeight:[Number,String],maxWidth:[Number,String],minHeight:[Number,String],minWidth:[Number,String],width:[Number,String]},"dimension");function En(n){return{dimensionStyles:q(()=>({height:qt(n.height),maxHeight:qt(n.maxHeight),maxWidth:qt(n.maxWidth),minHeight:qt(n.minHeight),minWidth:qt(n.minWidth),width:qt(n.width)}))}}function w7(n){return{aspectStyles:q(()=>{const l=Number(n.aspectRatio);return l?{paddingBottom:String(1/l*100)+"%"}:void 0})}}const o4=mt({aspectRatio:[String,Number],contentClass:String,inline:Boolean,...Xt(),...Tn()},"VResponsive"),_0=Bt()({name:"VResponsive",props:o4(),setup(n,l){let{slots:r}=l;const{aspectStyles:h}=w7(n),{dimensionStyles:c}=En(n);return Dt(()=>{var g;return t("div",{class:["v-responsive",{"v-responsive--inline":n.inline},n.class],style:[c.value,n.style]},[t("div",{class:"v-responsive__sizer",style:h.value},null),(g=r.additional)==null?void 0:g.call(r),r.default&&t("div",{class:["v-responsive__content",n.contentClass]},[r.default()])])}),{}}}),Sl=mt({transition:{type:[Boolean,String,Object],default:"fade-transition",validator:n=>n!==!0}},"transition"),Un=(n,l)=>{let{slots:r}=l;const{transition:h,disabled:c,...g}=n,{component:v=Zn,...k}=typeof h=="object"?h:{};return Ln(v,o(typeof h=="string"?{name:c?"":h}:k,g,{disabled:c}),r)};function v7(n,l){if(!Jh)return;const r=l.modifiers||{},h=l.value,{handler:c,options:g}=typeof h=="object"?h:{handler:h,options:{}},v=new IntersectionObserver(function(){var $;let k=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],x=arguments.length>1?arguments[1]:void 0;const I=($=n._observe)==null?void 0:$[l.instance.$.uid];if(!I)return;const S=k.some(B=>B.isIntersecting);c&&(!r.quiet||I.init)&&(!r.once||S||I.init)&&c(S,k,x),S&&r.once?s4(n,l):I.init=!0},g);n._observe=Object(n._observe),n._observe[l.instance.$.uid]={init:!1,observer:v},v.observe(n)}function s4(n,l){var h;const r=(h=n._observe)==null?void 0:h[l.instance.$.uid];r&&(r.observer.unobserve(n),delete n._observe[l.instance.$.uid])}const a4={mounted:v7,unmounted:s4},si=a4,i4=mt({alt:String,cover:Boolean,eager:Boolean,gradient:String,lazySrc:String,options:{type:Object,default:()=>({root:void 0,rootMargin:void 0,threshold:void 0})},sizes:String,src:{type:[String,Object],default:""},srcset:String,...o4(),...Xt(),...Sl()},"VImg"),xr=Bt()({name:"VImg",directives:{intersect:si},props:i4(),emits:{loadstart:n=>!0,load:n=>!0,error:n=>!0},setup(n,l){let{emit:r,slots:h}=l;const c=Wt(""),g=Lt(),v=Wt(n.eager?"loading":"idle"),k=Wt(),x=Wt(),I=q(()=>n.src&&typeof n.src=="object"?{src:n.src.src,srcset:n.srcset||n.src.srcset,lazySrc:n.lazySrc||n.src.lazySrc,aspect:Number(n.aspectRatio||n.src.aspect||0)}:{src:n.src,srcset:n.srcset,lazySrc:n.lazySrc,aspect:Number(n.aspectRatio||0)}),S=q(()=>I.value.aspect||k.value/x.value||0);_t(()=>n.src,()=>{$(v.value!=="idle")}),_t(S,(Y,G)=>{!Y&&G&&g.value&&X(g.value)}),Ms(()=>$());function $(Y){if(!(n.eager&&Y)&&!(Jh&&!Y&&!n.eager)){if(v.value="loading",I.value.lazySrc){const G=new Image;G.src=I.value.lazySrc,X(G,null)}I.value.src&&we(()=>{var G,et;if(r("loadstart",((G=g.value)==null?void 0:G.currentSrc)||I.value.src),(et=g.value)!=null&&et.complete){if(g.value.naturalWidth||P(),v.value==="error")return;S.value||X(g.value,null),B()}else S.value||X(g.value),D()})}}function B(){var Y;D(),v.value="loaded",r("load",((Y=g.value)==null?void 0:Y.currentSrc)||I.value.src)}function P(){var Y;v.value="error",r("error",((Y=g.value)==null?void 0:Y.currentSrc)||I.value.src)}function D(){const Y=g.value;Y&&(c.value=Y.currentSrc||Y.src)}let F=-1;function X(Y){let G=arguments.length>1&&arguments[1]!==void 0?arguments[1]:100;const et=()=>{clearTimeout(F);const{naturalHeight:st,naturalWidth:rt}=Y;st||rt?(k.value=rt,x.value=st):!Y.complete&&v.value==="loading"&&G!=null?F=window.setTimeout(et,G):(Y.currentSrc.endsWith(".svg")||Y.currentSrc.startsWith("data:image/svg+xml"))&&(k.value=1,x.value=1)};et()}const R=q(()=>({"v-img__img--cover":n.cover,"v-img__img--contain":!n.cover})),H=()=>{var et;if(!I.value.src||v.value==="idle")return null;const Y=t("img",{class:["v-img__img",R.value],src:I.value.src,srcset:I.value.srcset,alt:n.alt,sizes:n.sizes,ref:g,onLoad:B,onError:P},null),G=(et=h.sources)==null?void 0:et.call(h);return t(Un,{transition:n.transition,appear:!0},{default:()=>[$e(G?t("picture",{class:"v-img__picture"},[G,Y]):Y,[[Dn,v.value==="loaded"]])]})},U=()=>t(Un,{transition:n.transition},{default:()=>[I.value.lazySrc&&v.value!=="loaded"&&t("img",{class:["v-img__img","v-img__img--preload",R.value],src:I.value.lazySrc,alt:n.alt},null)]}),W=()=>h.placeholder?t(Un,{transition:n.transition,appear:!0},{default:()=>[(v.value==="loading"||v.value==="error"&&!h.error)&&t("div",{class:"v-img__placeholder"},[h.placeholder()])]}):null,_=()=>h.error?t(Un,{transition:n.transition,appear:!0},{default:()=>[v.value==="error"&&t("div",{class:"v-img__error"},[h.error()])]}):null,tt=()=>n.gradient?t("div",{class:"v-img__gradient",style:{backgroundImage:`linear-gradient(${n.gradient})`}},null):null,nt=Wt(!1);{const Y=_t(S,G=>{G&&(requestAnimationFrame(()=>{requestAnimationFrame(()=>{nt.value=!0})}),Y())})}return Dt(()=>{const[Y]=_0.filterProps(n);return $e(t(_0,o({class:["v-img",{"v-img--booting":!nt.value},n.class],style:[{width:qt(n.width==="auto"?k.value:n.width)},n.style]},Y,{aspectRatio:S.value,"aria-label":n.alt,role:n.alt?"img":void 0}),{additional:()=>t(Kt,null,[t(H,null,null),t(U,null,null),t(tt,null,null),t(W,null,null),t(_,null,null)]),default:h.default}),[[Mn("intersect"),{handler:$,options:n.options},null,{once:!0}]])}),{currentSrc:c,image:g,state:v,naturalWidth:k,naturalHeight:x}}}),An=mt({border:[Boolean,Number,String]},"border");function Vn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();return{borderClasses:q(()=>{const h=Me(n)?n.value:n.border,c=[];if(h===!0||h==="")c.push(`${l}--border`);else if(typeof h=="string"||h===0)for(const g of String(h).split(" "))c.push(`border-${g}`);return c})}}function w2(n){return e2(()=>{const l=[],r={};if(n.value.background)if(bd(n.value.background)){if(r.backgroundColor=n.value.background,!n.value.text){const h=_p(r.backgroundColor);r.color=h,r.caretColor=h}}else l.push(`bg-${n.value.background}`);return n.value.text&&(bd(n.value.text)?(r.color=n.value.text,r.caretColor=n.value.text):l.push(`text-${n.value.text}`)),{colorClasses:l,colorStyles:r}})}function an(n,l){const r=q(()=>({text:Me(n)?n.value:l?n[l]:null})),{colorClasses:h,colorStyles:c}=w2(r);return{textColorClasses:h,textColorStyles:c}}function Pe(n,l){const r=q(()=>({background:Me(n)?n.value:l?n[l]:null})),{colorClasses:h,colorStyles:c}=w2(r);return{backgroundColorClasses:h,backgroundColorStyles:c}}const _e=mt({elevation:{type:[Number,String],validator(n){const l=parseInt(n);return!isNaN(l)&&l>=0&&l<=24}}},"elevation");function Je(n){return{elevationClasses:q(()=>{const r=Me(n)?n.value:n.elevation,h=[];return r==null||h.push(`elevation-${r}`),h})}}const Ce=mt({rounded:{type:[Boolean,Number,String],default:void 0}},"rounded");function Ne(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();return{roundedClasses:q(()=>{const h=Me(n)?n.value:n.rounded,c=[];if(h===!0||h==="")c.push(`${l}--rounded`);else if(typeof h=="string"||h===0)for(const g of String(h).split(" "))c.push(`rounded-${g}`);return c})}}const f7=[null,"prominent","default","comfortable","compact"],h4=mt({absolute:Boolean,collapse:Boolean,color:String,density:{type:String,default:"default",validator:n=>f7.includes(n)},extended:Boolean,extensionHeight:{type:[Number,String],default:48},flat:Boolean,floating:Boolean,height:{type:[Number,String],default:64},image:String,title:String,...An(),...Xt(),..._e(),...Ce(),...re({tag:"header"}),...ue()},"VToolbar"),W0=Bt()({name:"VToolbar",props:h4(),setup(n,l){var P;let{slots:r}=l;const{backgroundColorClasses:h,backgroundColorStyles:c}=Pe(Ht(n,"color")),{borderClasses:g}=Vn(n),{elevationClasses:v}=Je(n),{roundedClasses:k}=Ne(n),{themeClasses:x}=ve(n),{rtlClasses:I}=Ue(),S=Wt(!!(n.extended||(P=r.extension)!=null&&P.call(r))),$=q(()=>parseInt(Number(n.height)+(n.density==="prominent"?Number(n.height):0)-(n.density==="comfortable"?8:0)-(n.density==="compact"?16:0),10)),B=q(()=>S.value?parseInt(Number(n.extensionHeight)+(n.density==="prominent"?Number(n.extensionHeight):0)-(n.density==="comfortable"?4:0)-(n.density==="compact"?8:0),10):0);return Te({VBtn:{variant:"text"}}),Dt(()=>{var R;const D=!!(n.title||r.title),F=!!(r.image||n.image),X=(R=r.extension)==null?void 0:R.call(r);return S.value=!!(n.extended||X),t(n.tag,{class:["v-toolbar",{"v-toolbar--absolute":n.absolute,"v-toolbar--collapse":n.collapse,"v-toolbar--flat":n.flat,"v-toolbar--floating":n.floating,[`v-toolbar--density-${n.density}`]:!0},h.value,g.value,v.value,k.value,x.value,I.value,n.class],style:[c.value,n.style]},{default:()=>[F&&t("div",{key:"image",class:"v-toolbar__image"},[r.image?t(ke,{key:"image-defaults",disabled:!n.image,defaults:{VImg:{cover:!0,src:n.image}}},r.image):t(xr,{key:"image-img",cover:!0,src:n.image},null)]),t(ke,{defaults:{VTabs:{height:qt($.value)}}},{default:()=>{var H,U,W;return[t("div",{class:"v-toolbar__content",style:{height:qt($.value)}},[r.prepend&&t("div",{class:"v-toolbar__prepend"},[(H=r.prepend)==null?void 0:H.call(r)]),D&&t(c2,{key:"title",text:n.title},{text:r.title}),(U=r.default)==null?void 0:U.call(r),r.append&&t("div",{class:"v-toolbar__append"},[(W=r.append)==null?void 0:W.call(r)])])]}}),t(ke,{defaults:{VTabs:{height:qt(B.value)}}},{default:()=>[t(oi,null,{default:()=>[S.value&&t("div",{class:"v-toolbar__extension",style:{height:qt(B.value)}},[X])]})]})]})}),{contentHeight:$,extensionHeight:B}}}),m7=mt({scrollTarget:{type:String},scrollThreshold:{type:[String,Number],default:300}},"scroll");function k7(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};const{canScroll:r}=l;let h=0;const c=Lt(null),g=Wt(0),v=Wt(0),k=Wt(0),x=Wt(!1),I=Wt(!1),S=q(()=>Number(n.scrollThreshold)),$=q(()=>rn((S.value-g.value)/S.value||0)),B=()=>{const P=c.value;!P||r&&!r.value||(h=g.value,g.value="window"in P?P.pageYOffset:P.scrollTop,I.value=g.value{v.value=v.value||g.value}),_t(x,()=>{v.value=0}),Ve(()=>{_t(()=>n.scrollTarget,P=>{var F;const D=P?document.querySelector(P):window;D&&D!==c.value&&((F=c.value)==null||F.removeEventListener("scroll",B),c.value=D,c.value.addEventListener("scroll",B,{passive:!0}))},{immediate:!0})}),Qe(()=>{var P;(P=c.value)==null||P.removeEventListener("scroll",B)}),r&&_t(r,B,{immediate:!0}),{scrollThreshold:S,currentScroll:g,currentThreshold:k,isScrollActive:x,scrollRatio:$,isScrollingUp:I,savedScroll:v}}function Br(){const n=Wt(!1);return Ve(()=>{window.requestAnimationFrame(()=>{n.value=!0})}),{ssrBootStyles:q(()=>n.value?void 0:{transition:"none !important"}),isBooted:uo(n)}}const b7=mt({scrollBehavior:String,modelValue:{type:Boolean,default:!0},location:{type:String,default:"top",validator:n=>["top","bottom"].includes(n)},...h4(),...go(),...m7(),height:{type:[Number,String],default:64}},"VAppBar"),M7=Bt()({name:"VAppBar",props:b7(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=Lt(),c=ne(n,"modelValue"),g=q(()=>{var H;const R=new Set(((H=n.scrollBehavior)==null?void 0:H.split(" "))??[]);return{hide:R.has("hide"),inverted:R.has("inverted"),collapse:R.has("collapse"),elevate:R.has("elevate"),fadeImage:R.has("fade-image")}}),v=q(()=>{const R=g.value;return R.hide||R.inverted||R.collapse||R.elevate||R.fadeImage||!c.value}),{currentScroll:k,scrollThreshold:x,isScrollingUp:I,scrollRatio:S}=k7(n,{canScroll:v}),$=q(()=>n.collapse||g.value.collapse&&(g.value.inverted?S.value>0:S.value===0)),B=q(()=>n.flat||g.value.elevate&&(g.value.inverted?k.value>0:k.value===0)),P=q(()=>g.value.fadeImage?g.value.inverted?1-S.value:S.value:void 0),D=q(()=>{var U,W;if(g.value.hide&&g.value.inverted)return 0;const R=((U=h.value)==null?void 0:U.contentHeight)??0,H=((W=h.value)==null?void 0:W.extensionHeight)??0;return R+H});Zl(q(()=>!!n.scrollBehavior),()=>{bn(()=>{g.value.hide?g.value.inverted?c.value=k.value>x.value:c.value=I.value||k.valueparseInt(n.order,10)),position:Ht(n,"location"),layoutSize:D,elementSize:Wt(void 0),active:c,absolute:Ht(n,"absolute")});return Dt(()=>{const[R]=W0.filterProps(n);return t(W0,o({ref:h,class:["v-app-bar",{"v-app-bar--bottom":n.location==="bottom"},n.class],style:[{...X.value,"--v-toolbar-image-opacity":P.value,height:void 0,...F.value},n.style]},R,{collapse:$.value,flat:B.value}),r)}),{}}});const x7=[null,"default","comfortable","compact"],We=mt({density:{type:String,default:"default",validator:n=>x7.includes(n)}},"density");function dn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();return{densityClasses:q(()=>`${l}--density-${n.density}`)}}const z7=["elevated","flat","tonal","outlined","text","plain"];function Hr(n,l){return t(Kt,null,[n&&t("span",{key:"overlay",class:`${l}__overlay`},null),t("span",{key:"underlay",class:`${l}__underlay`},null)])}const _n=mt({color:String,variant:{type:String,default:"elevated",validator:n=>z7.includes(n)}},"variant");function Nr(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();const r=q(()=>{const{variant:g}=je(n);return`${l}--variant-${g}`}),{colorClasses:h,colorStyles:c}=w2(q(()=>{const{variant:g,color:v}=je(n);return{[["elevated","flat"].includes(g)?"background":"text"]:v}}));return{colorClasses:h,colorStyles:c,variantClasses:r}}const d4=mt({divided:Boolean,...An(),...Xt(),...We(),..._e(),...Ce(),...re(),...ue(),..._n()},"VBtnGroup"),X0=Bt()({name:"VBtnGroup",props:d4(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{densityClasses:c}=dn(n),{borderClasses:g}=Vn(n),{elevationClasses:v}=Je(n),{roundedClasses:k}=Ne(n);Te({VBtn:{height:"auto",color:Ht(n,"color"),density:Ht(n,"density"),flat:!0,variant:Ht(n,"variant")}}),Dt(()=>t(n.tag,{class:["v-btn-group",{"v-btn-group--divided":n.divided},h.value,g.value,c.value,v.value,k.value,n.class],style:n.style},r))}}),vo=mt({modelValue:{type:null,default:void 0},multiple:Boolean,mandatory:[Boolean,String],max:Number,selectedClass:String,disabled:Boolean},"group"),fo=mt({value:null,disabled:Boolean,selectedClass:String},"group-item");function mo(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;const h=Ye("useGroupItem");if(!h)throw new Error("[Vuetify] useGroupItem composable must be used inside a component setup function");const c=hn();Se(Symbol.for(`${l.description}:id`),c);const g=de(l,null);if(!g){if(!r)return g;throw new Error(`[Vuetify] Could not find useGroup injection with symbol ${l.description}`)}const v=Ht(n,"value"),k=q(()=>!!(g.disabled.value||n.disabled));g.register({id:c,value:v,disabled:k},h),Qe(()=>{g.unregister(c)});const x=q(()=>g.isSelected(c)),I=q(()=>x.value&&[g.selectedClass.value,n.selectedClass]);return _t(x,S=>{h.emit("group:selected",{value:S})}),{id:c,isSelected:x,toggle:()=>g.select(c,!x.value),select:S=>g.select(c,S),selectedClass:I,value:v,disabled:k,group:g}}function jr(n,l){let r=!1;const h=Ze([]),c=ne(n,"modelValue",[],B=>B==null?[]:c4(h,Pn(B)),B=>{const P=y7(h,B);return n.multiple?P:P[0]}),g=Ye("useGroup");function v(B,P){const D=B,F=Symbol.for(`${l.description}:id`),R=qo(F,g==null?void 0:g.vnode).indexOf(P);R>-1?h.splice(R,0,D):h.push(D)}function k(B){if(r)return;x();const P=h.findIndex(D=>D.id===B);h.splice(P,1)}function x(){const B=h.find(P=>!P.disabled);B&&n.mandatory==="force"&&!c.value.length&&(c.value=[B.id])}Ve(()=>{x()}),Qe(()=>{r=!0});function I(B,P){const D=h.find(F=>F.id===B);if(!(P&&(D!=null&&D.disabled)))if(n.multiple){const F=c.value.slice(),X=F.findIndex(H=>H===B),R=~X;if(P=P??!R,R&&n.mandatory&&F.length<=1||!R&&n.max!=null&&F.length+1>n.max)return;X<0&&P?F.push(B):X>=0&&!P&&F.splice(X,1),c.value=F}else{const F=c.value.includes(B);if(n.mandatory&&F)return;c.value=P??!F?[B]:[]}}function S(B){if(n.multiple,c.value.length){const P=c.value[0],D=h.findIndex(R=>R.id===P);let F=(D+B)%h.length,X=h[F];for(;X.disabled&&F!==D;)F=(F+B)%h.length,X=h[F];if(X.disabled)return;c.value=[h[F].id]}else{const P=h.find(D=>!D.disabled);P&&(c.value=[P.id])}}const $={register:v,unregister:k,selected:c,select:I,disabled:Ht(n,"disabled"),prev:()=>S(h.length-1),next:()=>S(1),isSelected:B=>c.value.includes(B),selectedClass:q(()=>n.selectedClass),items:q(()=>h),getItemIndex:B=>I7(h,B)};return Se(l,$),$}function I7(n,l){const r=c4(n,[l]);return r.length?n.findIndex(h=>h.id===r[0]):-1}function c4(n,l){const r=[];return l.forEach(h=>{const c=n.find(v=>Sr(h,v.value)),g=n[h];(c==null?void 0:c.value)!=null?r.push(c.id):g!=null&&r.push(g.id)}),r}function y7(n,l){const r=[];return l.forEach(h=>{const c=n.findIndex(g=>g.id===h);if(~c){const g=n[c];r.push(g.value!=null?g.value:c)}}),r}const v2=Symbol.for("vuetify:v-btn-toggle"),C7=mt({...d4(),...vo()},"VBtnToggle"),S7=Bt()({name:"VBtnToggle",props:C7(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{isSelected:h,next:c,prev:g,select:v,selected:k}=jr(n,v2);return Dt(()=>{const[x]=X0.filterProps(n);return t(X0,o({class:["v-btn-toggle",n.class]},x,{style:n.style}),{default:()=>{var I;return[(I=r.default)==null?void 0:I.call(r,{isSelected:h,next:c,prev:g,select:v,selected:k})]}})}),{next:c,prev:g,select:v}}});const $7=["x-small","small","default","large","x-large"],$l=mt({size:{type:[String,Number],default:"default"}},"size");function ko(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();return e2(()=>{let r,h;return ma($7,n.size)?r=`${l}--size-${n.size}`:n.size&&(h={width:qt(n.size),height:qt(n.size)}),{sizeClasses:r,sizeStyles:h}})}const A7=mt({color:String,start:Boolean,end:Boolean,icon:ee,...Xt(),...$l(),...re({tag:"i"}),...ue()},"VIcon"),xe=Bt()({name:"VIcon",props:A7(),setup(n,l){let{attrs:r,slots:h}=l;const c=Lt(),{themeClasses:g}=ve(n),{iconData:v}=k6(q(()=>c.value||n.icon)),{sizeClasses:k}=ko(n),{textColorClasses:x,textColorStyles:I}=an(Ht(n,"color"));return Dt(()=>{var $,B;const S=($=h.default)==null?void 0:$.call(h);return S&&(c.value=(B=Ap(S).filter(P=>P.type===Xl&&P.children&&typeof P.children=="string")[0])==null?void 0:B.children),t(v.value.component,{tag:n.tag,icon:v.value.icon,class:["v-icon","notranslate",g.value,k.value,x.value,{"v-icon--clickable":!!r.onClick,"v-icon--start":n.start,"v-icon--end":n.end},n.class],style:[k.value?void 0:{fontSize:qt(n.size),height:qt(n.size),width:qt(n.size)},I.value,n.style],role:r.onClick?"button":void 0,"aria-hidden":!r.onClick},{default:()=>[S]})}),{}}});function f2(n,l){const r=Lt(),h=Wt(!1);if(Jh){const c=new IntersectionObserver(g=>{n==null||n(g,c),h.value=!!g.find(v=>v.isIntersecting)},l);Qe(()=>{c.disconnect()}),_t(r,(g,v)=>{v&&(c.unobserve(v),h.value=!1),g&&c.observe(g)},{flush:"post"})}return{intersectionRef:r,isIntersecting:h}}const B7=mt({bgColor:String,color:String,indeterminate:[Boolean,String],modelValue:{type:[Number,String],default:0},rotate:{type:[Number,String],default:0},width:{type:[Number,String],default:4},...Xt(),...$l(),...re({tag:"div"}),...ue()},"VProgressCircular"),m2=Bt()({name:"VProgressCircular",props:B7(),setup(n,l){let{slots:r}=l;const h=20,c=2*Math.PI*h,g=Lt(),{themeClasses:v}=ve(n),{sizeClasses:k,sizeStyles:x}=ko(n),{textColorClasses:I,textColorStyles:S}=an(Ht(n,"color")),{textColorClasses:$,textColorStyles:B}=an(Ht(n,"bgColor")),{intersectionRef:P,isIntersecting:D}=f2(),{resizeRef:F,contentRect:X}=sl(),R=q(()=>Math.max(0,Math.min(100,parseFloat(n.modelValue)))),H=q(()=>Number(n.width)),U=q(()=>x.value?Number(n.size):X.value?X.value.width:Math.max(H.value,32)),W=q(()=>h/(1-H.value/U.value)*2),_=q(()=>H.value/U.value*W.value),tt=q(()=>qt((100-R.value)/100*c));return bn(()=>{P.value=g.value,F.value=g.value}),Dt(()=>t(n.tag,{ref:g,class:["v-progress-circular",{"v-progress-circular--indeterminate":!!n.indeterminate,"v-progress-circular--visible":D.value,"v-progress-circular--disable-shrink":n.indeterminate==="disable-shrink"},v.value,k.value,I.value,n.class],style:[x.value,S.value,n.style],role:"progressbar","aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":n.indeterminate?void 0:R.value},{default:()=>[t("svg",{style:{transform:`rotate(calc(-90deg + ${Number(n.rotate)}deg))`},xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${W.value} ${W.value}`},[t("circle",{class:["v-progress-circular__underlay",$.value],style:B.value,fill:"transparent",cx:"50%",cy:"50%",r:h,"stroke-width":_.value,"stroke-dasharray":c,"stroke-dashoffset":0},null),t("circle",{class:"v-progress-circular__overlay",fill:"transparent",cx:"50%",cy:"50%",r:h,"stroke-width":_.value,"stroke-dasharray":c,"stroke-dashoffset":tt.value},null)]),r.default&&t("div",{class:"v-progress-circular__content"},[r.default({value:R.value})])]})),{}}});const Dd={center:"center",top:"bottom",bottom:"top",left:"right",right:"left"},Ql=mt({location:String},"location");function Jl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,r=arguments.length>2?arguments[2]:void 0;const{isRtl:h}=Ue();return{locationStyles:q(()=>{if(!n.location)return{};const{side:g,align:v}=P0(n.location.split(" ").length>1?n.location:`${n.location} center`,h.value);function k(I){return r?r(I):0}const x={};return g!=="center"&&(l?x[Dd[g]]=`calc(100% - ${k(g)}px)`:x[g]=0),v!=="center"?l?x[Dd[v]]=`calc(100% - ${k(v)}px)`:x[v]=0:(g==="center"?x.top=x.left="50%":x[{top:"left",bottom:"left",left:"top",right:"top"}[g]]="50%",x.transform={top:"translateX(-50%)",bottom:"translateX(-50%)",left:"translateY(-50%)",right:"translateY(-50%)",center:"translate(-50%, -50%)"}[g]),x})}}const H7=mt({absolute:Boolean,active:{type:Boolean,default:!0},bgColor:String,bgOpacity:[Number,String],bufferValue:{type:[Number,String],default:0},clickable:Boolean,color:String,height:{type:[Number,String],default:4},indeterminate:Boolean,max:{type:[Number,String],default:100},modelValue:{type:[Number,String],default:0},reverse:Boolean,stream:Boolean,striped:Boolean,roundedBar:Boolean,...Xt(),...Ql({location:"top"}),...Ce(),...re(),...ue()},"VProgressLinear"),k2=Bt()({name:"VProgressLinear",props:H7(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{isRtl:c,rtlClasses:g}=Ue(),{themeClasses:v}=ve(n),{locationStyles:k}=Jl(n),{textColorClasses:x,textColorStyles:I}=an(n,"color"),{backgroundColorClasses:S,backgroundColorStyles:$}=Pe(q(()=>n.bgColor||n.color)),{backgroundColorClasses:B,backgroundColorStyles:P}=Pe(n,"color"),{roundedClasses:D}=Ne(n),{intersectionRef:F,isIntersecting:X}=f2(),R=q(()=>parseInt(n.max,10)),H=q(()=>parseInt(n.height,10)),U=q(()=>parseFloat(n.bufferValue)/R.value*100),W=q(()=>parseFloat(h.value)/R.value*100),_=q(()=>c.value!==n.reverse),tt=q(()=>n.indeterminate?"fade-transition":"slide-x-transition"),nt=q(()=>n.bgOpacity==null?n.bgOpacity:parseFloat(n.bgOpacity));function Y(G){if(!F.value)return;const{left:et,right:st,width:rt}=F.value.getBoundingClientRect(),ht=_.value?rt-G.clientX+(st-rt):G.clientX-et;h.value=Math.round(ht/rt*R.value)}return Dt(()=>t(n.tag,{ref:F,class:["v-progress-linear",{"v-progress-linear--absolute":n.absolute,"v-progress-linear--active":n.active&&X.value,"v-progress-linear--reverse":_.value,"v-progress-linear--rounded":n.rounded,"v-progress-linear--rounded-bar":n.roundedBar,"v-progress-linear--striped":n.striped},D.value,v.value,g.value,n.class],style:[{bottom:n.location==="bottom"?0:void 0,top:n.location==="top"?0:void 0,height:n.active?qt(H.value):0,"--v-progress-linear-height":qt(H.value),...k.value},n.style],role:"progressbar","aria-hidden":n.active?"false":"true","aria-valuemin":"0","aria-valuemax":n.max,"aria-valuenow":n.indeterminate?void 0:W.value,onClick:n.clickable&&Y},{default:()=>[n.stream&&t("div",{key:"stream",class:["v-progress-linear__stream",x.value],style:{...I.value,[_.value?"left":"right"]:qt(-H.value),borderTop:`${qt(H.value/2)} dotted`,opacity:nt.value,top:`calc(50% - ${qt(H.value/4)})`,width:qt(100-U.value,"%"),"--v-progress-linear-stream-to":qt(H.value*(_.value?1:-1))}},null),t("div",{class:["v-progress-linear__background",S.value],style:[$.value,{opacity:nt.value,width:qt(n.stream?U.value:100,"%")}]},null),t(Zn,{name:tt.value},{default:()=>[n.indeterminate?t("div",{class:"v-progress-linear__indeterminate"},[["long","short"].map(G=>t("div",{key:G,class:["v-progress-linear__indeterminate",G,B.value],style:P.value},null))]):t("div",{class:["v-progress-linear__determinate",B.value],style:[P.value,{width:qt(W.value,"%")}]},null)]}),r.default&&t("div",{class:"v-progress-linear__content"},[r.default({value:W.value,buffer:U.value})])]})),{}}}),b2=mt({loading:[Boolean,String]},"loader");function ai(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();return{loaderClasses:q(()=>({[`${l}--loading`]:n.loading}))}}function M2(n,l){var h;let{slots:r}=l;return t("div",{class:`${n.name}__loader`},[((h=r.default)==null?void 0:h.call(r,{color:n.color,isActive:n.active}))||t(k2,{active:n.active,color:n.color,height:"2",indeterminate:!0},null)])}const N7=["static","relative","fixed","absolute","sticky"],bo=mt({position:{type:String,validator:n=>N7.includes(n)}},"position");function Mo(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();return{positionClasses:q(()=>n.position?`${l}--${n.position}`:void 0)}}function u4(){var n,l;return(l=(n=Ye("useRouter"))==null?void 0:n.proxy)==null?void 0:l.$router}function Ss(n,l){const r=Xc("RouterLink"),h=q(()=>!!(n.href||n.to)),c=q(()=>(h==null?void 0:h.value)||id(l,"click")||id(n,"click"));if(typeof r=="string")return{isLink:h,isClickable:c,href:Ht(n,"href")};const g=n.to?r.useLink(n):void 0;return{isLink:h,isClickable:c,route:g==null?void 0:g.route,navigate:g==null?void 0:g.navigate,isActive:g&&q(()=>{var v,k;return n.exact?(v=g.isExactActive)==null?void 0:v.value:(k=g.isActive)==null?void 0:k.value}),href:q(()=>n.to?g==null?void 0:g.route.value.href:n.href)}}const $s=mt({href:String,replace:Boolean,to:[String,Object],exact:Boolean},"router");let Xi=!1;function j7(n,l){let r=!1,h,c;ze&&(we(()=>{window.addEventListener("popstate",g),h=n==null?void 0:n.beforeEach((v,k,x)=>{Xi?r?l(x):x():setTimeout(()=>r?l(x):x()),Xi=!0}),c=n==null?void 0:n.afterEach(()=>{Xi=!1})}),sn(()=>{window.removeEventListener("popstate",g),h==null||h(),c==null||c()}));function g(v){var k;(k=v.state)!=null&&k.replaced||(r=!0,setTimeout(()=>r=!1))}}function P7(n,l){_t(()=>{var r;return(r=n.isActive)==null?void 0:r.value},r=>{n.isLink.value&&r&&l&&we(()=>{l(!0)})},{immediate:!0})}const q0=Symbol("rippleStop"),L7=80;function Od(n,l){n.style.transform=l,n.style.webkitTransform=l}function Y0(n){return n.constructor.name==="TouchEvent"}function p4(n){return n.constructor.name==="KeyboardEvent"}const D7=function(n,l){var $;let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},h=0,c=0;if(!p4(n)){const B=l.getBoundingClientRect(),P=Y0(n)?n.touches[n.touches.length-1]:n;h=P.clientX-B.left,c=P.clientY-B.top}let g=0,v=.3;($=l._ripple)!=null&&$.circle?(v=.15,g=l.clientWidth/2,g=r.center?g:g+Math.sqrt((h-g)**2+(c-g)**2)/4):g=Math.sqrt(l.clientWidth**2+l.clientHeight**2)/2;const k=`${(l.clientWidth-g*2)/2}px`,x=`${(l.clientHeight-g*2)/2}px`,I=r.center?k:`${h-g}px`,S=r.center?x:`${c-g}px`;return{radius:g,scale:v,x:I,y:S,centerX:k,centerY:x}},za={show(n,l){var P;let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!((P=l==null?void 0:l._ripple)!=null&&P.enabled))return;const h=document.createElement("span"),c=document.createElement("span");h.appendChild(c),h.className="v-ripple__container",r.class&&(h.className+=` ${r.class}`);const{radius:g,scale:v,x:k,y:x,centerX:I,centerY:S}=D7(n,l,r),$=`${g*2}px`;c.className="v-ripple__animation",c.style.width=$,c.style.height=$,l.appendChild(h);const B=window.getComputedStyle(l);B&&B.position==="static"&&(l.style.position="relative",l.dataset.previousPosition="static"),c.classList.add("v-ripple__animation--enter"),c.classList.add("v-ripple__animation--visible"),Od(c,`translate(${k}, ${x}) scale3d(${v},${v},${v})`),c.dataset.activated=String(performance.now()),setTimeout(()=>{c.classList.remove("v-ripple__animation--enter"),c.classList.add("v-ripple__animation--in"),Od(c,`translate(${I}, ${S}) scale3d(1,1,1)`)},0)},hide(n){var g;if(!((g=n==null?void 0:n._ripple)!=null&&g.enabled))return;const l=n.getElementsByClassName("v-ripple__animation");if(l.length===0)return;const r=l[l.length-1];if(r.dataset.isHiding)return;r.dataset.isHiding="true";const h=performance.now()-Number(r.dataset.activated),c=Math.max(250-h,0);setTimeout(()=>{r.classList.remove("v-ripple__animation--in"),r.classList.add("v-ripple__animation--out"),setTimeout(()=>{var k;n.getElementsByClassName("v-ripple__animation").length===1&&n.dataset.previousPosition&&(n.style.position=n.dataset.previousPosition,delete n.dataset.previousPosition),((k=r.parentNode)==null?void 0:k.parentNode)===n&&n.removeChild(r.parentNode)},300)},c)}};function g4(n){return typeof n>"u"||!!n}function hs(n){const l={},r=n.currentTarget;if(!(!(r!=null&&r._ripple)||r._ripple.touched||n[q0])){if(n[q0]=!0,Y0(n))r._ripple.touched=!0,r._ripple.isTouch=!0;else if(r._ripple.isTouch)return;if(l.center=r._ripple.centered||p4(n),r._ripple.class&&(l.class=r._ripple.class),Y0(n)){if(r._ripple.showTimerCommit)return;r._ripple.showTimerCommit=()=>{za.show(n,r,l)},r._ripple.showTimer=window.setTimeout(()=>{var h;(h=r==null?void 0:r._ripple)!=null&&h.showTimerCommit&&(r._ripple.showTimerCommit(),r._ripple.showTimerCommit=null)},L7)}else za.show(n,r,l)}}function Fd(n){n[q0]=!0}function yn(n){const l=n.currentTarget;if(l!=null&&l._ripple){if(window.clearTimeout(l._ripple.showTimer),n.type==="touchend"&&l._ripple.showTimerCommit){l._ripple.showTimerCommit(),l._ripple.showTimerCommit=null,l._ripple.showTimer=window.setTimeout(()=>{yn(n)});return}window.setTimeout(()=>{l._ripple&&(l._ripple.touched=!1)}),za.hide(l)}}function w4(n){const l=n.currentTarget;l!=null&&l._ripple&&(l._ripple.showTimerCommit&&(l._ripple.showTimerCommit=null),window.clearTimeout(l._ripple.showTimer))}let ds=!1;function v4(n){!ds&&(n.keyCode===rd.enter||n.keyCode===rd.space)&&(ds=!0,hs(n))}function f4(n){ds=!1,yn(n)}function m4(n){ds&&(ds=!1,yn(n))}function k4(n,l,r){const{value:h,modifiers:c}=l,g=g4(h);if(g||za.hide(n),n._ripple=n._ripple??{},n._ripple.enabled=g,n._ripple.centered=c.center,n._ripple.circle=c.circle,H0(h)&&h.class&&(n._ripple.class=h.class),g&&!r){if(c.stop){n.addEventListener("touchstart",Fd,{passive:!0}),n.addEventListener("mousedown",Fd);return}n.addEventListener("touchstart",hs,{passive:!0}),n.addEventListener("touchend",yn,{passive:!0}),n.addEventListener("touchmove",w4,{passive:!0}),n.addEventListener("touchcancel",yn),n.addEventListener("mousedown",hs),n.addEventListener("mouseup",yn),n.addEventListener("mouseleave",yn),n.addEventListener("keydown",v4),n.addEventListener("keyup",f4),n.addEventListener("blur",m4),n.addEventListener("dragstart",yn,{passive:!0})}else!g&&r&&b4(n)}function b4(n){n.removeEventListener("mousedown",hs),n.removeEventListener("touchstart",hs),n.removeEventListener("touchend",yn),n.removeEventListener("touchmove",w4),n.removeEventListener("touchcancel",yn),n.removeEventListener("mouseup",yn),n.removeEventListener("mouseleave",yn),n.removeEventListener("keydown",v4),n.removeEventListener("keyup",f4),n.removeEventListener("dragstart",yn),n.removeEventListener("blur",m4)}function O7(n,l){k4(n,l,!1)}function F7(n){delete n._ripple,b4(n)}function R7(n,l){if(l.value===l.oldValue)return;const r=g4(l.oldValue);k4(n,l,r)}const tr={mounted:O7,unmounted:F7,updated:R7},x2=mt({active:{type:Boolean,default:void 0},symbol:{type:null,default:v2},flat:Boolean,icon:[Boolean,String,Function,Object],prependIcon:ee,appendIcon:ee,block:Boolean,stacked:Boolean,ripple:{type:[Boolean,Object],default:!0},text:String,...An(),...Xt(),...We(),...Tn(),..._e(),...fo(),...b2(),...Ql(),...bo(),...Ce(),...$s(),...$l(),...re({tag:"button"}),...ue(),..._n({variant:"elevated"})},"VBtn"),pn=Bt()({name:"VBtn",directives:{Ripple:tr},props:x2(),emits:{"group:selected":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const{themeClasses:c}=ve(n),{borderClasses:g}=Vn(n),{colorClasses:v,colorStyles:k,variantClasses:x}=Nr(n),{densityClasses:I}=dn(n),{dimensionStyles:S}=En(n),{elevationClasses:$}=Je(n),{loaderClasses:B}=ai(n),{locationStyles:P}=Jl(n),{positionClasses:D}=Mo(n),{roundedClasses:F}=Ne(n),{sizeClasses:X,sizeStyles:R}=ko(n),H=mo(n,n.symbol,!1),U=Ss(n,r),W=q(()=>{var G;return n.active!==void 0?n.active:U.isLink.value?(G=U.isActive)==null?void 0:G.value:H==null?void 0:H.isSelected.value}),_=q(()=>(H==null?void 0:H.disabled.value)||n.disabled),tt=q(()=>n.variant==="elevated"&&!(n.disabled||n.flat||n.border)),nt=q(()=>{if(n.value!==void 0)return Object(n.value)===n.value?JSON.stringify(n.value,null,0):n.value});function Y(G){var et;_.value||U.isLink.value&&(G.metaKey||G.ctrlKey||G.shiftKey||G.button!==0||r.target==="_blank")||((et=U.navigate)==null||et.call(U,G),H==null||H.toggle())}return P7(U,H==null?void 0:H.select),Dt(()=>{var dt,Ct;const G=U.isLink.value?"a":n.tag,et=!!(n.prependIcon||h.prepend),st=!!(n.appendIcon||h.append),rt=!!(n.icon&&n.icon!==!0),ht=(H==null?void 0:H.isSelected.value)&&(!U.isLink.value||((dt=U.isActive)==null?void 0:dt.value))||!H||((Ct=U.isActive)==null?void 0:Ct.value);return $e(t(G,{type:G==="a"?void 0:"button",class:["v-btn",H==null?void 0:H.selectedClass.value,{"v-btn--active":W.value,"v-btn--block":n.block,"v-btn--disabled":_.value,"v-btn--elevated":tt.value,"v-btn--flat":n.flat,"v-btn--icon":!!n.icon,"v-btn--loading":n.loading,"v-btn--stacked":n.stacked},c.value,g.value,ht?v.value:void 0,I.value,$.value,B.value,D.value,F.value,X.value,x.value,n.class],style:[ht?k.value:void 0,S.value,P.value,R.value,n.style],disabled:_.value||void 0,href:U.href.value,onClick:Y,value:nt.value},{default:()=>{var xt;return[Hr(!0,"v-btn"),!n.icon&&et&&t("span",{key:"prepend",class:"v-btn__prepend"},[h.prepend?t(ke,{key:"prepend-defaults",disabled:!n.prependIcon,defaults:{VIcon:{icon:n.prependIcon}}},h.prepend):t(xe,{key:"prepend-icon",icon:n.prependIcon},null)]),t("span",{class:"v-btn__content","data-no-activator":""},[!h.default&&rt?t(xe,{key:"content-icon",icon:n.icon},null):t(ke,{key:"content-defaults",disabled:!rt,defaults:{VIcon:{icon:n.icon}}},{default:()=>{var wt;return[((wt=h.default)==null?void 0:wt.call(h))??n.text]}})]),!n.icon&&st&&t("span",{key:"append",class:"v-btn__append"},[h.append?t(ke,{key:"append-defaults",disabled:!n.appendIcon,defaults:{VIcon:{icon:n.appendIcon}}},h.append):t(xe,{key:"append-icon",icon:n.appendIcon},null)]),!!n.loading&&t("span",{key:"loader",class:"v-btn__loader"},[((xt=h.loader)==null?void 0:xt.call(h))??t(m2,{color:typeof n.loading=="boolean"?void 0:n.loading,indeterminate:!0,size:"23",width:"2"},null)])]}}),[[Mn("ripple"),!_.value&&n.ripple,null]])}),{}}}),T7=mt({...x2({icon:"$menu",variant:"text"})},"VAppBarNavIcon"),E7=Bt()({name:"VAppBarNavIcon",props:T7(),setup(n,l){let{slots:r}=l;return Dt(()=>t(pn,o(n,{class:["v-app-bar-nav-icon"]}),r)),{}}}),V7=Bt()({name:"VAppBarTitle",props:n4(),setup(n,l){let{slots:r}=l;return Dt(()=>t(c2,o(n,{class:"v-app-bar-title"}),r)),{}}});const M4=Qn("v-alert-title"),_7=["success","info","warning","error"],W7=mt({border:{type:[Boolean,String],validator:n=>typeof n=="boolean"||["top","end","bottom","start"].includes(n)},borderColor:String,closable:Boolean,closeIcon:{type:ee,default:"$close"},closeLabel:{type:String,default:"$vuetify.close"},icon:{type:[Boolean,String,Function,Object],default:null},modelValue:{type:Boolean,default:!0},prominent:Boolean,title:String,text:String,type:{type:String,validator:n=>_7.includes(n)},...Xt(),...We(),...Tn(),..._e(),...Ql(),...bo(),...Ce(),...re(),...ue(),..._n({variant:"flat"})},"VAlert"),X7=Bt()({name:"VAlert",props:W7(),emits:{"click:close":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{emit:r,slots:h}=l;const c=ne(n,"modelValue"),g=q(()=>{if(n.icon!==!1)return n.type?n.icon??`$${n.type}`:n.icon}),v=q(()=>({color:n.color??n.type,variant:n.variant})),{themeClasses:k}=ve(n),{colorClasses:x,colorStyles:I,variantClasses:S}=Nr(v),{densityClasses:$}=dn(n),{dimensionStyles:B}=En(n),{elevationClasses:P}=Je(n),{locationStyles:D}=Jl(n),{positionClasses:F}=Mo(n),{roundedClasses:X}=Ne(n),{textColorClasses:R,textColorStyles:H}=an(Ht(n,"borderColor")),{t:U}=Rn(),W=q(()=>({"aria-label":U(n.closeLabel),onClick(_){c.value=!1,r("click:close",_)}}));return()=>{const _=!!(h.prepend||g.value),tt=!!(h.title||n.title),nt=!!(h.close||n.closable);return c.value&&t(n.tag,{class:["v-alert",n.border&&{"v-alert--border":!!n.border,[`v-alert--border-${n.border===!0?"start":n.border}`]:!0},{"v-alert--prominent":n.prominent},k.value,x.value,$.value,P.value,F.value,X.value,S.value,n.class],style:[I.value,B.value,D.value,n.style],role:"alert"},{default:()=>{var Y,G;return[Hr(!1,"v-alert"),n.border&&t("div",{key:"border",class:["v-alert__border",R.value],style:H.value},null),_&&t("div",{key:"prepend",class:"v-alert__prepend"},[h.prepend?t(ke,{key:"prepend-defaults",disabled:!g.value,defaults:{VIcon:{density:n.density,icon:g.value,size:n.prominent?44:28}}},h.prepend):t(xe,{key:"prepend-icon",density:n.density,icon:g.value,size:n.prominent?44:28},null)]),t("div",{class:"v-alert__content"},[tt&&t(M4,{key:"title"},{default:()=>{var et;return[((et=h.title)==null?void 0:et.call(h))??n.title]}}),((Y=h.text)==null?void 0:Y.call(h))??n.text,(G=h.default)==null?void 0:G.call(h)]),h.append&&t("div",{key:"append",class:"v-alert__append"},[h.append()]),nt&&t("div",{key:"close",class:"v-alert__close"},[h.close?t(ke,{key:"close-defaults",defaults:{VBtn:{icon:n.closeIcon,size:"x-small",variant:"text"}}},{default:()=>{var et;return[(et=h.close)==null?void 0:et.call(h,{props:W.value})]}}):t(pn,o({key:"close-btn",icon:n.closeIcon,size:"x-small",variant:"text"},W.value),null)])]}})}}});const q7=mt({text:String,clickable:Boolean,...Xt(),...ue()},"VLabel"),xo=Bt()({name:"VLabel",props:q7(),setup(n,l){let{slots:r}=l;return Dt(()=>{var h;return t("label",{class:["v-label",{"v-label--clickable":n.clickable},n.class],style:n.style},[n.text,(h=r.default)==null?void 0:h.call(r)])}),{}}});const x4=Symbol.for("vuetify:selection-control-group"),z2=mt({color:String,disabled:{type:Boolean,default:null},defaultsTarget:String,error:Boolean,id:String,inline:Boolean,falseIcon:ee,trueIcon:ee,ripple:{type:Boolean,default:!0},multiple:{type:Boolean,default:null},name:String,readonly:Boolean,modelValue:null,type:String,valueComparator:{type:Function,default:Sr},...Xt(),...We(),...ue()},"SelectionControlGroup"),Y7=mt({...z2({defaultsTarget:"VSelectionControl"})},"VSelectionControlGroup"),z4=Bt()({name:"VSelectionControlGroup",props:Y7(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),c=hn(),g=q(()=>n.id||`v-selection-control-group-${c}`),v=q(()=>n.name||g.value),k=new Set;return Se(x4,{modelValue:h,forceUpdate:()=>{k.forEach(x=>x())},onForceUpdate:x=>{k.add(x),sn(()=>{k.delete(x)})}}),Te({[n.defaultsTarget]:{color:Ht(n,"color"),disabled:Ht(n,"disabled"),density:Ht(n,"density"),error:Ht(n,"error"),inline:Ht(n,"inline"),modelValue:h,multiple:q(()=>!!n.multiple||n.multiple==null&&Array.isArray(h.value)),name:v,falseIcon:Ht(n,"falseIcon"),trueIcon:Ht(n,"trueIcon"),readonly:Ht(n,"readonly"),ripple:Ht(n,"ripple"),type:Ht(n,"type"),valueComparator:Ht(n,"valueComparator")}}),Dt(()=>{var x;return t("div",{class:["v-selection-control-group",{"v-selection-control-group--inline":n.inline},n.class],style:n.style,role:n.type==="radio"?"radiogroup":void 0},[(x=r.default)==null?void 0:x.call(r)])}),{}}}),ii=mt({label:String,trueValue:null,falseValue:null,value:null,...Xt(),...z2()},"VSelectionControl");function U7(n){const l=de(x4,void 0),{densityClasses:r}=dn(n),h=ne(n,"modelValue"),c=q(()=>n.trueValue!==void 0?n.trueValue:n.value!==void 0?n.value:!0),g=q(()=>n.falseValue!==void 0?n.falseValue:!1),v=q(()=>!!n.multiple||n.multiple==null&&Array.isArray(h.value)),k=q({get(){const $=l?l.modelValue.value:h.value;return v.value?$.some(B=>n.valueComparator(B,c.value)):n.valueComparator($,c.value)},set($){if(n.readonly)return;const B=$?c.value:g.value;let P=B;v.value&&(P=$?[...Pn(h.value),B]:Pn(h.value).filter(D=>!n.valueComparator(D,c.value))),l?l.modelValue.value=P:h.value=P}}),{textColorClasses:x,textColorStyles:I}=an(q(()=>k.value&&!n.error&&!n.disabled?n.color:void 0)),S=q(()=>k.value?n.trueIcon:n.falseIcon);return{group:l,densityClasses:r,trueValue:c,falseValue:g,model:k,textColorClasses:x,textColorStyles:I,icon:S}}const zr=Bt()({name:"VSelectionControl",directives:{Ripple:tr},inheritAttrs:!1,props:ii(),emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const{group:c,densityClasses:g,icon:v,model:k,textColorClasses:x,textColorStyles:I,trueValue:S}=U7(n),$=hn(),B=q(()=>n.id||`input-${$}`),P=Wt(!1),D=Wt(!1),F=Lt();c==null||c.onForceUpdate(()=>{F.value&&(F.value.checked=k.value)});function X(U){P.value=!0,ro(U.target,":focus-visible")!==!1&&(D.value=!0)}function R(){P.value=!1,D.value=!1}function H(U){n.readonly&&c&&we(()=>c.forceUpdate()),k.value=U.target.checked}return Dt(()=>{var nt,Y;const U=h.label?h.label({label:n.label,props:{for:B.value}}):n.label,[W,_]=$r(r),tt=t("input",o({ref:F,checked:k.value,disabled:!!(n.readonly||n.disabled),id:B.value,onBlur:R,onFocus:X,onInput:H,"aria-disabled":!!(n.readonly||n.disabled),type:n.type,value:S.value,name:n.name,"aria-checked":n.type==="checkbox"?k.value:void 0},_),null);return t("div",o({class:["v-selection-control",{"v-selection-control--dirty":k.value,"v-selection-control--disabled":n.disabled,"v-selection-control--error":n.error,"v-selection-control--focused":P.value,"v-selection-control--focus-visible":D.value,"v-selection-control--inline":n.inline},g.value,n.class]},W,{style:n.style}),[t("div",{class:["v-selection-control__wrapper",x.value],style:I.value},[(nt=h.default)==null?void 0:nt.call(h),$e(t("div",{class:["v-selection-control__input"]},[((Y=h.input)==null?void 0:Y.call(h,{model:k,textColorClasses:x,textColorStyles:I,inputNode:tt,icon:v.value,props:{onFocus:X,onBlur:R,id:B.value}}))??t(Kt,null,[v.value&&t(xe,{key:"icon",icon:v.value},null),tt])]),[[Mn("ripple"),n.ripple&&[!n.disabled&&!n.readonly,null,["center","circle"]]]])]),U&&t(xo,{for:B.value,clickable:!0,onClick:G=>G.stopPropagation()},{default:()=>[U]})])}),{isFocused:P,input:F}}}),I4=mt({indeterminate:Boolean,indeterminateIcon:{type:ee,default:"$checkboxIndeterminate"},...ii({falseIcon:"$checkboxOff",trueIcon:"$checkboxOn"})},"VCheckboxBtn"),ao=Bt()({name:"VCheckboxBtn",props:I4(),emits:{"update:modelValue":n=>!0,"update:indeterminate":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"indeterminate"),c=ne(n,"modelValue");function g(x){h.value&&(h.value=!1)}const v=q(()=>h.value?n.indeterminateIcon:n.falseIcon),k=q(()=>h.value?n.indeterminateIcon:n.trueIcon);return Dt(()=>{const x=On(zr.filterProps(n)[0],["modelValue"]);return t(zr,o(x,{modelValue:c.value,"onUpdate:modelValue":[I=>c.value=I,g],class:["v-checkbox-btn",n.class],style:n.style,type:"checkbox",falseIcon:v.value,trueIcon:k.value,"aria-checked":h.value?"mixed":void 0}),r)}),{}}});function y4(n){const{t:l}=Rn();function r(h){let{name:c}=h;const g={prepend:"prependAction",prependInner:"prependAction",append:"appendAction",appendInner:"appendAction",clear:"clear"}[c],v=n[`onClick:${c}`],k=v&&g?l(`$vuetify.input.${g}`,n.label??""):void 0;return t(xe,{icon:n[`${c}Icon`],"aria-label":k,onClick:v},null)}return{InputIcon:r}}const G7=mt({active:Boolean,color:String,messages:{type:[Array,String],default:()=>[]},...Xt(),...Sl({transition:{component:p2,leaveAbsolute:!0,group:!0}})},"VMessages"),C4=Bt()({name:"VMessages",props:G7(),setup(n,l){let{slots:r}=l;const h=q(()=>Pn(n.messages)),{textColorClasses:c,textColorStyles:g}=an(q(()=>n.color));return Dt(()=>t(Un,{transition:n.transition,tag:"div",class:["v-messages",c.value,n.class],style:[g.value,n.style],role:"alert","aria-live":"polite"},{default:()=>[n.active&&h.value.map((v,k)=>t("div",{class:"v-messages__message",key:`${k}-${h.value}`},[r.message?r.message({message:v}):v]))]})),{}}}),hi=mt({focused:Boolean,"onUpdate:focused":ol()},"focus");function er(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();const r=ne(n,"focused"),h=q(()=>({[`${l}--focused`]:r.value}));function c(){r.value=!0}function g(){r.value=!1}return{focusClasses:h,isFocused:r,focus:c,blur:g}}const S4=Symbol.for("vuetify:form"),Z7=mt({disabled:Boolean,fastFail:Boolean,readonly:Boolean,modelValue:{type:Boolean,default:null},validateOn:{type:String,default:"input"}},"form");function K7(n){const l=ne(n,"modelValue"),r=q(()=>n.disabled),h=q(()=>n.readonly),c=Wt(!1),g=Lt([]),v=Lt([]);async function k(){const S=[];let $=!0;v.value=[],c.value=!0;for(const B of g.value){const P=await B.validate();if(P.length>0&&($=!1,S.push({id:B.id,errorMessages:P})),!$&&n.fastFail)break}return v.value=S,c.value=!1,{valid:$,errors:v.value}}function x(){g.value.forEach(S=>S.reset())}function I(){g.value.forEach(S=>S.resetValidation())}return _t(g,()=>{let S=0,$=0;const B=[];for(const P of g.value)P.isValid===!1?($++,B.push({id:P.id,errorMessages:P.errorMessages})):P.isValid===!0&&S++;v.value=B,l.value=$>0?!1:S===g.value.length?!0:null},{deep:!0}),Se(S4,{register:S=>{let{id:$,validate:B,reset:P,resetValidation:D}=S;g.value.some(F=>F.id===$),g.value.push({id:$,validate:B,reset:P,resetValidation:D,isValid:null,errorMessages:[]})},unregister:S=>{g.value=g.value.filter($=>$.id!==S)},update:(S,$,B)=>{const P=g.value.find(D=>D.id===S);P&&(P.isValid=$,P.errorMessages=B)},isDisabled:r,isReadonly:h,isValidating:c,isValid:l,items:g,validateOn:Ht(n,"validateOn")}),{errors:v,isDisabled:r,isReadonly:h,isValidating:c,isValid:l,items:g,validate:k,reset:x,resetValidation:I}}function di(){return de(S4,null)}const $4=mt({disabled:{type:Boolean,default:null},error:Boolean,errorMessages:{type:[Array,String],default:()=>[]},maxErrors:{type:[Number,String],default:1},name:String,label:String,readonly:{type:Boolean,default:null},rules:{type:Array,default:()=>[]},modelValue:null,validateOn:String,validationValue:null,...hi()},"validation");function A4(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl(),r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:hn();const h=ne(n,"modelValue"),c=q(()=>n.validationValue===void 0?h.value:n.validationValue),g=di(),v=Lt([]),k=Wt(!0),x=q(()=>!!(Pn(h.value===""?null:h.value).length||Pn(c.value===""?null:c.value).length)),I=q(()=>!!(n.disabled??(g==null?void 0:g.isDisabled.value))),S=q(()=>!!(n.readonly??(g==null?void 0:g.isReadonly.value))),$=q(()=>n.errorMessages.length?Pn(n.errorMessages).slice(0,Math.max(0,+n.maxErrors)):v.value),B=q(()=>{let W=(n.validateOn??(g==null?void 0:g.validateOn.value))||"input";W==="lazy"&&(W="input lazy");const _=new Set((W==null?void 0:W.split(" "))??[]);return{blur:_.has("blur")||_.has("input"),input:_.has("input"),submit:_.has("submit"),lazy:_.has("lazy")}}),P=q(()=>n.error||n.errorMessages.length?!1:n.rules.length?k.value?v.value.length||B.value.lazy?null:!0:!v.value.length:!0),D=Wt(!1),F=q(()=>({[`${l}--error`]:P.value===!1,[`${l}--dirty`]:x.value,[`${l}--disabled`]:I.value,[`${l}--readonly`]:S.value})),X=q(()=>n.name??je(r));Ms(()=>{g==null||g.register({id:X.value,validate:U,reset:R,resetValidation:H})}),Qe(()=>{g==null||g.unregister(X.value)}),Ve(async()=>{B.value.lazy||await U(!0),g==null||g.update(X.value,P.value,$.value)}),Zl(()=>B.value.input,()=>{_t(c,()=>{if(c.value!=null)U();else if(n.focused){const W=_t(()=>n.focused,_=>{_||U(),W()})}})}),Zl(()=>B.value.blur,()=>{_t(()=>n.focused,W=>{W||U()})}),_t(P,()=>{g==null||g.update(X.value,P.value,$.value)});function R(){h.value=null,we(H)}function H(){k.value=!0,B.value.lazy?v.value=[]:U(!0)}async function U(){let W=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1;const _=[];D.value=!0;for(const tt of n.rules){if(_.length>=+(n.maxErrors??1))break;const Y=await(typeof tt=="function"?tt:()=>tt)(c.value);if(Y!==!0){if(Y!==!1&&typeof Y!="string"){console.warn(`${Y} is not a valid value. Rule functions must return boolean true or a string.`);continue}_.push(Y||"")}}return v.value=_,D.value=!1,k.value=W,v.value}return{errorMessages:$,isDirty:x,isDisabled:I,isReadonly:S,isPristine:k,isValid:P,isValidating:D,reset:R,resetValidation:H,validate:U,validationClasses:F}}const Al=mt({id:String,appendIcon:ee,centerAffix:{type:Boolean,default:!0},prependIcon:ee,hideDetails:[Boolean,String],hint:String,persistentHint:Boolean,messages:{type:[Array,String],default:()=>[]},direction:{type:String,default:"horizontal",validator:n=>["horizontal","vertical"].includes(n)},"onClick:prepend":ol(),"onClick:append":ol(),...Xt(),...We(),...$4()},"VInput"),Ke=Bt()({name:"VInput",props:{...Al()},emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:r,slots:h,emit:c}=l;const{densityClasses:g}=dn(n),{rtlClasses:v}=Ue(),{InputIcon:k}=y4(n),x=hn(),I=q(()=>n.id||`input-${x}`),S=q(()=>`${I.value}-messages`),{errorMessages:$,isDirty:B,isDisabled:P,isReadonly:D,isPristine:F,isValid:X,isValidating:R,reset:H,resetValidation:U,validate:W,validationClasses:_}=A4(n,"v-input",I),tt=q(()=>({id:I,messagesId:S,isDirty:B,isDisabled:P,isReadonly:D,isPristine:F,isValid:X,isValidating:R,reset:H,resetValidation:U,validate:W})),nt=q(()=>{var Y;return(Y=n.errorMessages)!=null&&Y.length||!F.value&&$.value.length?$.value:n.hint&&(n.persistentHint||n.focused)?n.hint:n.messages});return Dt(()=>{var rt,ht,dt,Ct;const Y=!!(h.prepend||n.prependIcon),G=!!(h.append||n.appendIcon),et=nt.value.length>0,st=!n.hideDetails||n.hideDetails==="auto"&&(et||!!h.details);return t("div",{class:["v-input",`v-input--${n.direction}`,{"v-input--center-affix":n.centerAffix},g.value,v.value,_.value,n.class],style:n.style},[Y&&t("div",{key:"prepend",class:"v-input__prepend"},[(rt=h.prepend)==null?void 0:rt.call(h,tt.value),n.prependIcon&&t(k,{key:"prepend-icon",name:"prepend"},null)]),h.default&&t("div",{class:"v-input__control"},[(ht=h.default)==null?void 0:ht.call(h,tt.value)]),G&&t("div",{key:"append",class:"v-input__append"},[n.appendIcon&&t(k,{key:"append-icon",name:"append"},null),(dt=h.append)==null?void 0:dt.call(h,tt.value)]),st&&t("div",{class:"v-input__details"},[t(C4,{id:S.value,active:et,messages:nt.value},{message:h.message}),(Ct=h.details)==null?void 0:Ct.call(h,tt.value)])])}),{reset:H,resetValidation:U,validate:W}}}),Q7=mt({...Al(),...On(I4(),["inline"])},"VCheckbox"),J7=Bt()({name:"VCheckbox",inheritAttrs:!1,props:Q7(),emits:{"update:modelValue":n=>!0,"update:focused":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const c=ne(n,"modelValue"),{isFocused:g,focus:v,blur:k}=er(n),x=hn(),I=q(()=>n.id||`checkbox-${x}`);return Dt(()=>{const[S,$]=$r(r),[B,P]=Ke.filterProps(n),[D,F]=ao.filterProps(n);return t(Ke,o({class:["v-checkbox",n.class]},S,B,{modelValue:c.value,"onUpdate:modelValue":X=>c.value=X,id:I.value,focused:g.value,style:n.style}),{...h,default:X=>{let{id:R,messagesId:H,isDisabled:U,isReadonly:W}=X;return t(ao,o(D,{id:R.value,"aria-describedby":H.value,disabled:U.value,readonly:W.value},$,{modelValue:c.value,"onUpdate:modelValue":_=>c.value=_,onFocus:v,onBlur:k}),h)}})}),{}}});const tb=mt({start:Boolean,end:Boolean,icon:ee,image:String,...Xt(),...We(),...Ce(),...$l(),...re(),...ue(),..._n({variant:"flat"})},"VAvatar"),Kl=Bt()({name:"VAvatar",props:tb(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{colorClasses:c,colorStyles:g,variantClasses:v}=Nr(n),{densityClasses:k}=dn(n),{roundedClasses:x}=Ne(n),{sizeClasses:I,sizeStyles:S}=ko(n);return Dt(()=>t(n.tag,{class:["v-avatar",{"v-avatar--start":n.start,"v-avatar--end":n.end},h.value,c.value,k.value,x.value,I.value,v.value,n.class],style:[g.value,S.value,n.style]},{default:()=>{var $;return[n.image?t(xr,{key:"image",src:n.image,alt:"",cover:!0},null):n.icon?t(xe,{key:"icon",icon:n.icon},null):($=r.default)==null?void 0:$.call(r),Hr(!1,"v-avatar")]}})),{}}});const B4=Symbol.for("vuetify:v-chip-group"),eb=mt({column:Boolean,filter:Boolean,valueComparator:{type:Function,default:Sr},...Xt(),...vo({selectedClass:"v-chip--selected"}),...re(),...ue(),..._n({variant:"tonal"})},"VChipGroup"),nb=Bt()({name:"VChipGroup",props:eb(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{isSelected:c,select:g,next:v,prev:k,selected:x}=jr(n,B4);return Te({VChip:{color:Ht(n,"color"),disabled:Ht(n,"disabled"),filter:Ht(n,"filter"),variant:Ht(n,"variant")}}),Dt(()=>t(n.tag,{class:["v-chip-group",{"v-chip-group--column":n.column},h.value,n.class],style:n.style},{default:()=>{var I;return[(I=r.default)==null?void 0:I.call(r,{isSelected:c,select:g,next:v,prev:k,selected:x.value})]}})),{}}}),lb=mt({activeClass:String,appendAvatar:String,appendIcon:ee,closable:Boolean,closeIcon:{type:ee,default:"$delete"},closeLabel:{type:String,default:"$vuetify.close"},draggable:Boolean,filter:Boolean,filterIcon:{type:String,default:"$complete"},label:Boolean,link:{type:Boolean,default:void 0},pill:Boolean,prependAvatar:String,prependIcon:ee,ripple:{type:[Boolean,Object],default:!0},text:String,modelValue:{type:Boolean,default:!0},onClick:ol(),onClickOnce:ol(),...An(),...Xt(),...We(),..._e(),...fo(),...Ce(),...$s(),...$l(),...re({tag:"span"}),...ue(),..._n({variant:"tonal"})},"VChip"),As=Bt()({name:"VChip",directives:{Ripple:tr},props:lb(),emits:{"click:close":n=>!0,"update:modelValue":n=>!0,"group:selected":n=>!0,click:n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const{t:g}=Rn(),{borderClasses:v}=Vn(n),{colorClasses:k,colorStyles:x,variantClasses:I}=Nr(n),{densityClasses:S}=dn(n),{elevationClasses:$}=Je(n),{roundedClasses:B}=Ne(n),{sizeClasses:P}=ko(n),{themeClasses:D}=ve(n),F=ne(n,"modelValue"),X=mo(n,B4,!1),R=Ss(n,r),H=q(()=>n.link!==!1&&R.isLink.value),U=q(()=>!n.disabled&&n.link!==!1&&(!!X||n.link||R.isClickable.value)),W=q(()=>({"aria-label":g(n.closeLabel),onClick(nt){nt.stopPropagation(),F.value=!1,h("click:close",nt)}}));function _(nt){var Y;h("click",nt),U.value&&((Y=R.navigate)==null||Y.call(R,nt),X==null||X.toggle())}function tt(nt){(nt.key==="Enter"||nt.key===" ")&&(nt.preventDefault(),_(nt))}return()=>{const nt=R.isLink.value?"a":n.tag,Y=!!(n.appendIcon||n.appendAvatar),G=!!(Y||c.append),et=!!(c.close||n.closable),st=!!(c.filter||n.filter)&&X,rt=!!(n.prependIcon||n.prependAvatar),ht=!!(rt||c.prepend),dt=!X||X.isSelected.value;return F.value&&$e(t(nt,{class:["v-chip",{"v-chip--disabled":n.disabled,"v-chip--label":n.label,"v-chip--link":U.value,"v-chip--filter":st,"v-chip--pill":n.pill},D.value,v.value,dt?k.value:void 0,S.value,$.value,B.value,P.value,I.value,X==null?void 0:X.selectedClass.value,n.class],style:[dt?x.value:void 0,n.style],disabled:n.disabled||void 0,draggable:n.draggable,href:R.href.value,tabindex:U.value?0:void 0,onClick:_,onKeydown:U.value&&!H.value&&tt},{default:()=>{var Ct;return[Hr(U.value,"v-chip"),st&&t(g2,{key:"filter"},{default:()=>[$e(t("div",{class:"v-chip__filter"},[c.filter?t(ke,{key:"filter-defaults",disabled:!n.filterIcon,defaults:{VIcon:{icon:n.filterIcon}}},c.filter):t(xe,{key:"filter-icon",icon:n.filterIcon},null)]),[[Dn,X.isSelected.value]])]}),ht&&t("div",{key:"prepend",class:"v-chip__prepend"},[c.prepend?t(ke,{key:"prepend-defaults",disabled:!rt,defaults:{VAvatar:{image:n.prependAvatar,start:!0},VIcon:{icon:n.prependIcon,start:!0}}},c.prepend):t(Kt,null,[n.prependIcon&&t(xe,{key:"prepend-icon",icon:n.prependIcon,start:!0},null),n.prependAvatar&&t(Kl,{key:"prepend-avatar",image:n.prependAvatar,start:!0},null)])]),t("div",{class:"v-chip__content"},[((Ct=c.default)==null?void 0:Ct.call(c,{isSelected:X==null?void 0:X.isSelected.value,selectedClass:X==null?void 0:X.selectedClass.value,select:X==null?void 0:X.select,toggle:X==null?void 0:X.toggle,value:X==null?void 0:X.value.value,disabled:n.disabled}))??n.text]),G&&t("div",{key:"append",class:"v-chip__append"},[c.append?t(ke,{key:"append-defaults",disabled:!Y,defaults:{VAvatar:{end:!0,image:n.appendAvatar},VIcon:{end:!0,icon:n.appendIcon}}},c.append):t(Kt,null,[n.appendIcon&&t(xe,{key:"append-icon",end:!0,icon:n.appendIcon},null),n.appendAvatar&&t(Kl,{key:"append-avatar",end:!0,image:n.appendAvatar},null)])]),et&&t("div",o({key:"close",class:"v-chip__close"},W.value),[c.close?t(ke,{key:"close-defaults",defaults:{VIcon:{icon:n.closeIcon,size:"x-small"}}},c.close):t(xe,{key:"close-icon",icon:n.closeIcon,size:"x-small"},null)])]}}),[[Mn("ripple"),U.value&&n.ripple,null]])}}});const U0=Symbol.for("vuetify:list");function H4(){const n=de(U0,{hasPrepend:Wt(!1),updateHasPrepend:()=>null}),l={hasPrepend:Wt(!1),updateHasPrepend:r=>{r&&(l.hasPrepend.value=r)}};return Se(U0,l),n}function N4(){return de(U0,null)}const rb={open:n=>{let{id:l,value:r,opened:h,parents:c}=n;if(r){const g=new Set;g.add(l);let v=c.get(l);for(;v!=null;)g.add(v),v=c.get(v);return g}else return h.delete(l),h},select:()=>null},j4={open:n=>{let{id:l,value:r,opened:h,parents:c}=n;if(r){let g=c.get(l);for(h.add(l);g!=null&&g!==l;)h.add(g),g=c.get(g);return h}else h.delete(l);return h},select:()=>null},ob={open:j4.open,select:n=>{let{id:l,value:r,opened:h,parents:c}=n;if(!r)return h;const g=[];let v=c.get(l);for(;v!=null;)g.push(v),v=c.get(v);return new Set(g)}},I2=n=>{const l={select:r=>{let{id:h,value:c,selected:g}=r;if(h=le(h),n&&!c){const v=Array.from(g.entries()).reduce((k,x)=>{let[I,S]=x;return S==="on"?[...k,I]:k},[]);if(v.length===1&&v[0]===h)return g}return g.set(h,c?"on":"off"),g},in:(r,h,c)=>{let g=new Map;for(const v of r||[])g=l.select({id:v,value:!0,selected:new Map(g),children:h,parents:c});return g},out:r=>{const h=[];for(const[c,g]of r.entries())g==="on"&&h.push(c);return h}};return l},P4=n=>{const l=I2(n);return{select:h=>{let{selected:c,id:g,...v}=h;g=le(g);const k=c.has(g)?new Map([[g,c.get(g)]]):new Map;return l.select({...v,id:g,selected:k})},in:(h,c,g)=>{let v=new Map;return h!=null&&h.length&&(v=l.in(h.slice(0,1),c,g)),v},out:(h,c,g)=>l.out(h,c,g)}},sb=n=>{const l=I2(n);return{select:h=>{let{id:c,selected:g,children:v,...k}=h;return c=le(c),v.has(c)?g:l.select({id:c,selected:g,children:v,...k})},in:l.in,out:l.out}},ab=n=>{const l=P4(n);return{select:h=>{let{id:c,selected:g,children:v,...k}=h;return c=le(c),v.has(c)?g:l.select({id:c,selected:g,children:v,...k})},in:l.in,out:l.out}},ib=n=>{const l={select:r=>{let{id:h,value:c,selected:g,children:v,parents:k}=r;h=le(h);const x=new Map(g),I=[h];for(;I.length;){const $=I.shift();g.set($,c?"on":"off"),v.has($)&&I.push(...v.get($))}let S=k.get(h);for(;S;){const $=v.get(S),B=$.every(D=>g.get(D)==="on"),P=$.every(D=>!g.has(D)||g.get(D)==="off");g.set(S,B?"on":P?"off":"indeterminate"),S=k.get(S)}return n&&!c&&Array.from(g.entries()).reduce((B,P)=>{let[D,F]=P;return F==="on"?[...B,D]:B},[]).length===0?x:g},in:(r,h,c)=>{let g=new Map;for(const v of r||[])g=l.select({id:v,value:!0,selected:new Map(g),children:h,parents:c});return g},out:(r,h)=>{const c=[];for(const[g,v]of r.entries())v==="on"&&!h.has(g)&&c.push(g);return c}};return l},cs=Symbol.for("vuetify:nested"),L4={id:Wt(),root:{register:()=>null,unregister:()=>null,parents:Lt(new Map),children:Lt(new Map),open:()=>null,openOnSelect:()=>null,select:()=>null,opened:Lt(new Set),selected:Lt(new Map),selectedValues:Lt([])}},hb=mt({selectStrategy:[String,Function],openStrategy:[String,Object],opened:Array,selected:Array,mandatory:Boolean},"nested"),db=n=>{let l=!1;const r=Lt(new Map),h=Lt(new Map),c=ne(n,"opened",n.opened,$=>new Set($),$=>[...$.values()]),g=q(()=>{if(typeof n.selectStrategy=="object")return n.selectStrategy;switch(n.selectStrategy){case"single-leaf":return ab(n.mandatory);case"leaf":return sb(n.mandatory);case"independent":return I2(n.mandatory);case"single-independent":return P4(n.mandatory);case"classic":default:return ib(n.mandatory)}}),v=q(()=>{if(typeof n.openStrategy=="object")return n.openStrategy;switch(n.openStrategy){case"list":return ob;case"single":return rb;case"multiple":default:return j4}}),k=ne(n,"selected",n.selected,$=>g.value.in($,r.value,h.value),$=>g.value.out($,r.value,h.value));Qe(()=>{l=!0});function x($){const B=[];let P=$;for(;P!=null;)B.unshift(P),P=h.value.get(P);return B}const I=Ye("nested"),S={id:Wt(),root:{opened:c,selected:k,selectedValues:q(()=>{const $=[];for(const[B,P]of k.value.entries())P==="on"&&$.push(B);return $}),register:($,B,P)=>{B&&$!==B&&h.value.set($,B),P&&r.value.set($,[]),B!=null&&r.value.set(B,[...r.value.get(B)||[],$])},unregister:$=>{if(l)return;r.value.delete($);const B=h.value.get($);if(B){const P=r.value.get(B)??[];r.value.set(B,P.filter(D=>D!==$))}h.value.delete($),c.value.delete($)},open:($,B,P)=>{I.emit("click:open",{id:$,value:B,path:x($),event:P});const D=v.value.open({id:$,value:B,opened:new Set(c.value),children:r.value,parents:h.value,event:P});D&&(c.value=D)},openOnSelect:($,B,P)=>{const D=v.value.select({id:$,value:B,selected:new Map(k.value),opened:new Set(c.value),children:r.value,parents:h.value,event:P});D&&(c.value=D)},select:($,B,P)=>{I.emit("click:select",{id:$,value:B,path:x($),event:P});const D=g.value.select({id:$,value:B,selected:new Map(k.value),children:r.value,parents:h.value,event:P});D&&(k.value=D),S.root.openOnSelect($,B,P)},children:r,parents:h}};return Se(cs,S),S.root},D4=(n,l)=>{const r=de(cs,L4),h=Symbol(hn()),c=q(()=>n.value!==void 0?n.value:h),g={...r,id:c,open:(v,k)=>r.root.open(c.value,v,k),openOnSelect:(v,k)=>r.root.openOnSelect(c.value,v,k),isOpen:q(()=>r.root.opened.value.has(c.value)),parent:q(()=>r.root.parents.value.get(c.value)),select:(v,k)=>r.root.select(c.value,v,k),isSelected:q(()=>r.root.selected.value.get(le(c.value))==="on"),isIndeterminate:q(()=>r.root.selected.value.get(c.value)==="indeterminate"),isLeaf:q(()=>!r.root.children.value.get(c.value)),isGroupActivator:r.isGroupActivator};return!r.isGroupActivator&&r.root.register(c.value,r.id.value,l),Qe(()=>{!r.isGroupActivator&&r.root.unregister(c.value)}),l&&Se(cs,g),g},cb=()=>{const n=de(cs,L4);Se(cs,{...n,isGroupActivator:!0})},ub=Fn({name:"VListGroupActivator",setup(n,l){let{slots:r}=l;return cb(),()=>{var h;return(h=r.default)==null?void 0:h.call(r)}}}),pb=mt({activeColor:String,baseColor:String,color:String,collapseIcon:{type:ee,default:"$collapse"},expandIcon:{type:ee,default:"$expand"},prependIcon:ee,appendIcon:ee,fluid:Boolean,subgroup:Boolean,title:String,value:null,...Xt(),...re()},"VListGroup"),G0=Bt()({name:"VListGroup",props:pb(),setup(n,l){let{slots:r}=l;const{isOpen:h,open:c,id:g}=D4(Ht(n,"value"),!0),v=q(()=>`v-list-group--id-${String(g.value)}`),k=N4(),{isBooted:x}=Br();function I(P){c(!h.value,P)}const S=q(()=>({onClick:I,class:"v-list-group__header",id:v.value})),$=q(()=>h.value?n.collapseIcon:n.expandIcon),B=q(()=>({VListItem:{active:h.value,activeColor:n.activeColor,baseColor:n.baseColor,color:n.color,prependIcon:n.prependIcon||n.subgroup&&$.value,appendIcon:n.appendIcon||!n.subgroup&&$.value,title:n.title,value:n.value}}));return Dt(()=>t(n.tag,{class:["v-list-group",{"v-list-group--prepend":k==null?void 0:k.hasPrepend.value,"v-list-group--fluid":n.fluid,"v-list-group--subgroup":n.subgroup,"v-list-group--open":h.value},n.class],style:n.style},{default:()=>[r.activator&&t(ke,{defaults:B.value},{default:()=>[t(ub,null,{default:()=>[r.activator({props:S.value,isOpen:h.value})]})]}),t(Un,{transition:{component:oi},disabled:!x.value},{default:()=>{var P;return[$e(t("div",{class:"v-list-group__items",role:"group","aria-labelledby":v.value},[(P=r.default)==null?void 0:P.call(r)]),[[Dn,h.value]])]}})]})),{}}});const O4=Qn("v-list-item-subtitle"),F4=Qn("v-list-item-title"),gb=mt({active:{type:Boolean,default:void 0},activeClass:String,activeColor:String,appendAvatar:String,appendIcon:ee,baseColor:String,disabled:Boolean,lines:String,link:{type:Boolean,default:void 0},nav:Boolean,prependAvatar:String,prependIcon:ee,ripple:{type:[Boolean,Object],default:!0},subtitle:[String,Number,Boolean],title:[String,Number,Boolean],value:null,onClick:ol(),onClickOnce:ol(),...An(),...Xt(),...We(),...Tn(),..._e(),...Ce(),...$s(),...re(),...ue(),..._n({variant:"text"})},"VListItem"),Ml=Bt()({name:"VListItem",directives:{Ripple:tr},props:gb(),emits:{click:n=>!0},setup(n,l){let{attrs:r,slots:h,emit:c}=l;const g=Ss(n,r),v=q(()=>n.value===void 0?g.href.value:n.value),{select:k,isSelected:x,isIndeterminate:I,isGroupActivator:S,root:$,parent:B,openOnSelect:P}=D4(v,!1),D=N4(),F=q(()=>{var gt;return n.active!==!1&&(n.active||((gt=g.isActive)==null?void 0:gt.value)||x.value)}),X=q(()=>n.link!==!1&&g.isLink.value),R=q(()=>!n.disabled&&n.link!==!1&&(n.link||g.isClickable.value||n.value!=null&&!!D)),H=q(()=>n.rounded||n.nav),U=q(()=>n.color??n.activeColor),W=q(()=>({color:F.value?U.value??n.baseColor:n.baseColor,variant:n.variant}));_t(()=>{var gt;return(gt=g.isActive)==null?void 0:gt.value},gt=>{gt&&B.value!=null&&$.open(B.value,!0),gt&&P(gt)},{immediate:!0});const{themeClasses:_}=ve(n),{borderClasses:tt}=Vn(n),{colorClasses:nt,colorStyles:Y,variantClasses:G}=Nr(W),{densityClasses:et}=dn(n),{dimensionStyles:st}=En(n),{elevationClasses:rt}=Je(n),{roundedClasses:ht}=Ne(H),dt=q(()=>n.lines?`v-list-item--${n.lines}-line`:void 0),Ct=q(()=>({isActive:F.value,select:k,isSelected:x.value,isIndeterminate:I.value}));function xt(gt){var It;c("click",gt),!(S||!R.value)&&((It=g.navigate)==null||It.call(g,gt),n.value!=null&&k(!x.value,gt))}function wt(gt){(gt.key==="Enter"||gt.key===" ")&&(gt.preventDefault(),xt(gt))}return Dt(()=>{const gt=X.value?"a":n.tag,It=h.title||n.title,At=h.subtitle||n.subtitle,Tt=!!(n.appendAvatar||n.appendIcon),Ft=!!(Tt||h.append),Qt=!!(n.prependAvatar||n.prependIcon),Jt=!!(Qt||h.prepend);return D==null||D.updateHasPrepend(Jt),n.activeColor&&Xk("active-color",["color","base-color"]),$e(t(gt,{class:["v-list-item",{"v-list-item--active":F.value,"v-list-item--disabled":n.disabled,"v-list-item--link":R.value,"v-list-item--nav":n.nav,"v-list-item--prepend":!Jt&&(D==null?void 0:D.hasPrepend.value),[`${n.activeClass}`]:n.activeClass&&F.value},_.value,tt.value,nt.value,et.value,rt.value,dt.value,ht.value,G.value,n.class],style:[Y.value,st.value,n.style],href:g.href.value,tabindex:R.value?D?-2:0:void 0,onClick:xt,onKeydown:R.value&&!X.value&&wt},{default:()=>{var Et;return[Hr(R.value||F.value,"v-list-item"),Jt&&t("div",{key:"prepend",class:"v-list-item__prepend"},[h.prepend?t(ke,{key:"prepend-defaults",disabled:!Qt,defaults:{VAvatar:{density:n.density,image:n.prependAvatar},VIcon:{density:n.density,icon:n.prependIcon},VListItemAction:{start:!0}}},{default:()=>{var ut;return[(ut=h.prepend)==null?void 0:ut.call(h,Ct.value)]}}):t(Kt,null,[n.prependAvatar&&t(Kl,{key:"prepend-avatar",density:n.density,image:n.prependAvatar},null),n.prependIcon&&t(xe,{key:"prepend-icon",density:n.density,icon:n.prependIcon},null)]),t("div",{class:"v-list-item__spacer"},null)]),t("div",{class:"v-list-item__content","data-no-activator":""},[It&&t(F4,{key:"title"},{default:()=>{var ut;return[((ut=h.title)==null?void 0:ut.call(h,{title:n.title}))??n.title]}}),At&&t(O4,{key:"subtitle"},{default:()=>{var ut;return[((ut=h.subtitle)==null?void 0:ut.call(h,{subtitle:n.subtitle}))??n.subtitle]}}),(Et=h.default)==null?void 0:Et.call(h,Ct.value)]),Ft&&t("div",{key:"append",class:"v-list-item__append"},[h.append?t(ke,{key:"append-defaults",disabled:!Tt,defaults:{VAvatar:{density:n.density,image:n.appendAvatar},VIcon:{density:n.density,icon:n.appendIcon},VListItemAction:{end:!0}}},{default:()=>{var ut;return[(ut=h.append)==null?void 0:ut.call(h,Ct.value)]}}):t(Kt,null,[n.appendIcon&&t(xe,{key:"append-icon",density:n.density,icon:n.appendIcon},null),n.appendAvatar&&t(Kl,{key:"append-avatar",density:n.density,image:n.appendAvatar},null)]),t("div",{class:"v-list-item__spacer"},null)])]}}),[[Mn("ripple"),R.value&&n.ripple]])}),{}}}),wb=mt({color:String,inset:Boolean,sticky:Boolean,title:String,...Xt(),...re()},"VListSubheader"),R4=Bt()({name:"VListSubheader",props:wb(),setup(n,l){let{slots:r}=l;const{textColorClasses:h,textColorStyles:c}=an(Ht(n,"color"));return Dt(()=>{const g=!!(r.default||n.title);return t(n.tag,{class:["v-list-subheader",{"v-list-subheader--inset":n.inset,"v-list-subheader--sticky":n.sticky},h.value,n.class],style:[{textColorStyles:c},n.style]},{default:()=>{var v;return[g&&t("div",{class:"v-list-subheader__text"},[((v=r.default)==null?void 0:v.call(r))??n.title])]}})}),{}}});const vb=mt({color:String,inset:Boolean,length:[Number,String],thickness:[Number,String],vertical:Boolean,...Xt(),...ue()},"VDivider"),T4=Bt()({name:"VDivider",props:vb(),setup(n,l){let{attrs:r}=l;const{themeClasses:h}=ve(n),{textColorClasses:c,textColorStyles:g}=an(Ht(n,"color")),v=q(()=>{const k={};return n.length&&(k[n.vertical?"maxHeight":"maxWidth"]=qt(n.length)),n.thickness&&(k[n.vertical?"borderRightWidth":"borderTopWidth"]=qt(n.thickness)),k});return Dt(()=>t("hr",{class:[{"v-divider":!0,"v-divider--inset":n.inset,"v-divider--vertical":n.vertical},h.value,c.value,n.class],style:[v.value,g.value,n.style],"aria-orientation":!r.role||r.role==="separator"?n.vertical?"vertical":"horizontal":void 0,role:`${r.role||"separator"}`},null)),{}}}),fb=mt({items:Array},"VListChildren"),E4=Bt()({name:"VListChildren",props:fb(),setup(n,l){let{slots:r}=l;return H4(),()=>{var h,c;return((h=r.default)==null?void 0:h.call(r))??((c=n.items)==null?void 0:c.map(g=>{var P,D;let{children:v,props:k,type:x,raw:I}=g;if(x==="divider")return((P=r.divider)==null?void 0:P.call(r,{props:k}))??t(T4,k,null);if(x==="subheader")return((D=r.subheader)==null?void 0:D.call(r,{props:k}))??t(R4,k,null);const S={subtitle:r.subtitle?F=>{var X;return(X=r.subtitle)==null?void 0:X.call(r,{...F,item:I})}:void 0,prepend:r.prepend?F=>{var X;return(X=r.prepend)==null?void 0:X.call(r,{...F,item:I})}:void 0,append:r.append?F=>{var X;return(X=r.append)==null?void 0:X.call(r,{...F,item:I})}:void 0,title:r.title?F=>{var X;return(X=r.title)==null?void 0:X.call(r,{...F,item:I})}:void 0},[$,B]=G0.filterProps(k);return v?t(G0,o({value:k==null?void 0:k.value},$),{activator:F=>{let{props:X}=F;return r.header?r.header({props:{...k,...X}}):t(Ml,o(k,X),S)},default:()=>t(E4,{items:v},r)}):r.item?r.item({props:k}):t(Ml,k,S)}))}}}),V4=mt({items:{type:Array,default:()=>[]},itemTitle:{type:[String,Array,Function],default:"title"},itemValue:{type:[String,Array,Function],default:"value"},itemChildren:{type:[Boolean,String,Array,Function],default:"children"},itemProps:{type:[Boolean,String,Array,Function],default:"props"},returnObject:Boolean},"list-items");function qr(n,l){const r=ln(l,n.itemTitle,l),h=n.returnObject?l:ln(l,n.itemValue,r),c=ln(l,n.itemChildren),g=n.itemProps===!0?typeof l=="object"&&l!=null&&!Array.isArray(l)?"children"in l?Mr(l,["children"])[1]:l:void 0:ln(l,n.itemProps),v={title:r,value:h,...g};return{title:String(v.title??""),value:v.value,props:v,children:Array.isArray(c)?_4(n,c):void 0,raw:l}}function _4(n,l){const r=[];for(const h of l)r.push(qr(n,h));return r}function y2(n){const l=q(()=>_4(n,n.items));return mb(l,r=>qr(n,r))}function mb(n,l){function r(c){return c.filter(g=>g!==null||n.value.some(v=>v.value===null)).map(g=>n.value.find(k=>Sr(g,k.value))??l(g))}function h(c){return c.map(g=>{let{value:v}=g;return v})}return{items:n,transformIn:r,transformOut:h}}function kb(n){return typeof n=="string"||typeof n=="number"||typeof n=="boolean"}function bb(n,l){const r=ln(l,n.itemType,"item"),h=kb(l)?l:ln(l,n.itemTitle),c=ln(l,n.itemValue,void 0),g=ln(l,n.itemChildren),v=n.itemProps===!0?Mr(l,["children"])[1]:ln(l,n.itemProps),k={title:h,value:c,...v};return{type:r,title:k.title,value:k.value,props:k,children:r==="item"&&g?W4(n,g):void 0,raw:l}}function W4(n,l){const r=[];for(const h of l)r.push(bb(n,h));return r}function Mb(n){return{items:q(()=>W4(n,n.items))}}const xb=mt({baseColor:String,activeColor:String,activeClass:String,bgColor:String,disabled:Boolean,lines:{type:[Boolean,String],default:"one"},nav:Boolean,...hb({selectStrategy:"single-leaf",openStrategy:"list"}),...An(),...Xt(),...We(),...Tn(),..._e(),itemType:{type:String,default:"type"},...V4(),...Ce(),...re(),...ue(),..._n({variant:"text"})},"VList"),ci=Bt()({name:"VList",props:xb(),emits:{"update:selected":n=>!0,"update:opened":n=>!0,"click:open":n=>!0,"click:select":n=>!0},setup(n,l){let{slots:r}=l;const{items:h}=Mb(n),{themeClasses:c}=ve(n),{backgroundColorClasses:g,backgroundColorStyles:v}=Pe(Ht(n,"bgColor")),{borderClasses:k}=Vn(n),{densityClasses:x}=dn(n),{dimensionStyles:I}=En(n),{elevationClasses:S}=Je(n),{roundedClasses:$}=Ne(n),{open:B,select:P}=db(n),D=q(()=>n.lines?`v-list--${n.lines}-line`:void 0),F=Ht(n,"activeColor"),X=Ht(n,"baseColor"),R=Ht(n,"color");H4(),Te({VListGroup:{activeColor:F,baseColor:X,color:R},VListItem:{activeClass:Ht(n,"activeClass"),activeColor:F,baseColor:X,color:R,density:Ht(n,"density"),disabled:Ht(n,"disabled"),lines:Ht(n,"lines"),nav:Ht(n,"nav"),variant:Ht(n,"variant")}});const H=Wt(!1),U=Lt();function W(G){H.value=!0}function _(G){H.value=!1}function tt(G){var et;!H.value&&!(G.relatedTarget&&((et=U.value)!=null&&et.contains(G.relatedTarget)))&&Y()}function nt(G){if(U.value){if(G.key==="ArrowDown")Y("next");else if(G.key==="ArrowUp")Y("prev");else if(G.key==="Home")Y("first");else if(G.key==="End")Y("last");else return;G.preventDefault()}}function Y(G){if(U.value)return ka(U.value,G)}return Dt(()=>t(n.tag,{ref:U,class:["v-list",{"v-list--disabled":n.disabled,"v-list--nav":n.nav},c.value,g.value,k.value,x.value,S.value,D.value,$.value,n.class],style:[v.value,I.value,n.style],tabindex:n.disabled||H.value?-1:0,role:"listbox","aria-activedescendant":void 0,onFocusin:W,onFocusout:_,onFocus:tt,onKeydown:nt},{default:()=>[t(E4,{items:h.value},r)]})),{open:B,select:P,focus:Y}}}),zb=Qn("v-list-img"),Ib=mt({start:Boolean,end:Boolean,...Xt(),...re()},"VListItemAction"),yb=Bt()({name:"VListItemAction",props:Ib(),setup(n,l){let{slots:r}=l;return Dt(()=>t(n.tag,{class:["v-list-item-action",{"v-list-item-action--start":n.start,"v-list-item-action--end":n.end},n.class],style:n.style},r)),{}}}),Cb=mt({start:Boolean,end:Boolean,...Xt(),...re()},"VListItemMedia"),Sb=Bt()({name:"VListItemMedia",props:Cb(),setup(n,l){let{slots:r}=l;return Dt(()=>t(n.tag,{class:["v-list-item-media",{"v-list-item-media--start":n.start,"v-list-item-media--end":n.end},n.class],style:n.style},r)),{}}});function qi(n,l){return{x:n.x+l.x,y:n.y+l.y}}function $b(n,l){return{x:n.x-l.x,y:n.y-l.y}}function Rd(n,l){if(n.side==="top"||n.side==="bottom"){const{side:r,align:h}=n,c=h==="left"?0:h==="center"?l.width/2:h==="right"?l.width:h,g=r==="top"?0:r==="bottom"?l.height:r;return qi({x:c,y:g},l)}else if(n.side==="left"||n.side==="right"){const{side:r,align:h}=n,c=r==="left"?0:r==="right"?l.width:r,g=h==="top"?0:h==="center"?l.height/2:h==="bottom"?l.height:h;return qi({x:c,y:g},l)}return qi({x:l.width/2,y:l.height/2},l)}const X4={static:Hb,connected:jb},Ab=mt({locationStrategy:{type:[String,Function],default:"static",validator:n=>typeof n=="function"||n in X4},location:{type:String,default:"bottom"},origin:{type:String,default:"auto"},offset:[Number,String,Array]},"VOverlay-location-strategies");function Bb(n,l){const r=Lt({}),h=Lt();ze&&(Zl(()=>!!(l.isActive.value&&n.locationStrategy),g=>{var v,k;_t(()=>n.locationStrategy,g),sn(()=>{h.value=void 0}),typeof n.locationStrategy=="function"?h.value=(v=n.locationStrategy(l,n,r))==null?void 0:v.updateLocation:h.value=(k=X4[n.locationStrategy](l,n,r))==null?void 0:k.updateLocation}),window.addEventListener("resize",c,{passive:!0}),sn(()=>{window.removeEventListener("resize",c),h.value=void 0}));function c(g){var v;(v=h.value)==null||v.call(h,g)}return{contentStyles:r,updateLocation:h}}function Hb(){}function Nb(n,l){l?n.style.removeProperty("left"):n.style.removeProperty("right");const r=l2(n);return l?r.x+=parseFloat(n.style.right||0):r.x-=parseFloat(n.style.left||0),r.y-=parseFloat(n.style.top||0),r}function jb(n,l,r){i6(n.activatorEl.value)&&Object.assign(r.value,{position:"fixed",top:0,[n.isRtl.value?"right":"left"]:0});const{preferredAnchor:c,preferredOrigin:g}=e2(()=>{const D=P0(l.location,n.isRtl.value),F=l.origin==="overlap"?D:l.origin==="auto"?Vi(D):P0(l.origin,n.isRtl.value);return D.side===F.side&&D.align===_i(F).align?{preferredAnchor:hd(D),preferredOrigin:hd(F)}:{preferredAnchor:D,preferredOrigin:F}}),[v,k,x,I]=["minWidth","minHeight","maxWidth","maxHeight"].map(D=>q(()=>{const F=parseFloat(l[D]);return isNaN(F)?1/0:F})),S=q(()=>{if(Array.isArray(l.offset))return l.offset;if(typeof l.offset=="string"){const D=l.offset.split(" ").map(parseFloat);return D.length<2&&D.push(0),D}return typeof l.offset=="number"?[l.offset,0]:[0,0]});let $=!1;const B=new ResizeObserver(()=>{$&&P()});_t([n.activatorEl,n.contentEl],(D,F)=>{let[X,R]=D,[H,U]=F;H&&B.unobserve(H),X&&B.observe(X),U&&B.unobserve(U),R&&B.observe(R)},{immediate:!0}),sn(()=>{B.disconnect()});function P(){if($=!1,requestAnimationFrame(()=>{requestAnimationFrame(()=>$=!0)}),!n.activatorEl.value||!n.contentEl.value)return;const D=n.activatorEl.value.getBoundingClientRect(),F=Nb(n.contentEl.value,n.isRtl.value),X=Ma(n.contentEl.value),R=12;X.length||(X.push(document.documentElement),n.contentEl.value.style.top&&n.contentEl.value.style.left||(F.x-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-x")||0),F.y-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-y")||0)));const H=X.reduce((st,rt)=>{const ht=rt.getBoundingClientRect(),dt=new Kr({x:rt===document.documentElement?0:ht.x,y:rt===document.documentElement?0:ht.y,width:rt.clientWidth,height:rt.clientHeight});return st?new Kr({x:Math.max(st.left,dt.left),y:Math.max(st.top,dt.top),width:Math.min(st.right,dt.right)-Math.max(st.left,dt.left),height:Math.min(st.bottom,dt.bottom)-Math.max(st.top,dt.top)}):dt},void 0);H.x+=R,H.y+=R,H.width-=R*2,H.height-=R*2;let U={anchor:c.value,origin:g.value};function W(st){const rt=new Kr(F),ht=Rd(st.anchor,D),dt=Rd(st.origin,rt);let{x:Ct,y:xt}=$b(ht,dt);switch(st.anchor.side){case"top":xt-=S.value[0];break;case"bottom":xt+=S.value[0];break;case"left":Ct-=S.value[0];break;case"right":Ct+=S.value[0];break}switch(st.anchor.align){case"top":xt-=S.value[1];break;case"bottom":xt+=S.value[1];break;case"left":Ct-=S.value[1];break;case"right":Ct+=S.value[1];break}return rt.x+=Ct,rt.y+=xt,rt.width=Math.min(rt.width,x.value),rt.height=Math.min(rt.height,I.value),{overflows:cd(rt,H),x:Ct,y:xt}}let _=0,tt=0;const nt={x:0,y:0},Y={x:!1,y:!1};let G=-1;for(;!(G++>10);){const{x:st,y:rt,overflows:ht}=W(U);_+=st,tt+=rt,F.x+=st,F.y+=rt;{const dt=dd(U.anchor),Ct=ht.x.before||ht.x.after,xt=ht.y.before||ht.y.after;let wt=!1;if(["x","y"].forEach(gt=>{if(gt==="x"&&Ct&&!Y.x||gt==="y"&&xt&&!Y.y){const It={anchor:{...U.anchor},origin:{...U.origin}},At=gt==="x"?dt==="y"?_i:Vi:dt==="y"?Vi:_i;It.anchor=At(It.anchor),It.origin=At(It.origin);const{overflows:Tt}=W(It);(Tt[gt].before<=ht[gt].before&&Tt[gt].after<=ht[gt].after||Tt[gt].before+Tt[gt].after<(ht[gt].before+ht[gt].after)/2)&&(U=It,wt=Y[gt]=!0)}}),wt)continue}ht.x.before&&(_+=ht.x.before,F.x+=ht.x.before),ht.x.after&&(_-=ht.x.after,F.x-=ht.x.after),ht.y.before&&(tt+=ht.y.before,F.y+=ht.y.before),ht.y.after&&(tt-=ht.y.after,F.y-=ht.y.after);{const dt=cd(F,H);nt.x=H.width-dt.x.before-dt.x.after,nt.y=H.height-dt.y.before-dt.y.after,_+=dt.x.before,F.x+=dt.x.before,tt+=dt.y.before,F.y+=dt.y.before}break}const et=dd(U.anchor);return Object.assign(r.value,{"--v-overlay-anchor-origin":`${U.anchor.side} ${U.anchor.align}`,transformOrigin:`${U.origin.side} ${U.origin.align}`,top:qt(Yi(tt)),left:n.isRtl.value?void 0:qt(Yi(_)),right:n.isRtl.value?qt(Yi(-_)):void 0,minWidth:qt(et==="y"?Math.min(v.value,D.width):v.value),maxWidth:qt(Td(rn(nt.x,v.value===1/0?0:v.value,x.value))),maxHeight:qt(Td(rn(nt.y,k.value===1/0?0:k.value,I.value)))}),{available:nt,contentBox:F}}return _t(()=>[c.value,g.value,l.offset,l.minWidth,l.minHeight,l.maxWidth,l.maxHeight],()=>P()),we(()=>{const D=P();if(!D)return;const{available:F,contentBox:X}=D;X.height>F.y&&requestAnimationFrame(()=>{P(),requestAnimationFrame(()=>{P()})})}),{updateLocation:P}}function Yi(n){return Math.round(n*devicePixelRatio)/devicePixelRatio}function Td(n){return Math.ceil(n*devicePixelRatio)/devicePixelRatio}let Z0=!0;const Ia=[];function Pb(n){!Z0||Ia.length?(Ia.push(n),K0()):(Z0=!1,n(),K0())}let Ed=-1;function K0(){cancelAnimationFrame(Ed),Ed=requestAnimationFrame(()=>{const n=Ia.shift();n&&n(),Ia.length?K0():Z0=!0})}const ha={none:null,close:Ob,block:Fb,reposition:Rb},Lb=mt({scrollStrategy:{type:[String,Function],default:"block",validator:n=>typeof n=="function"||n in ha}},"VOverlay-scroll-strategies");function Db(n,l){if(!ze)return;let r;bn(async()=>{r==null||r.stop(),l.isActive.value&&n.scrollStrategy&&(r=io(),await we(),r.active&&r.run(()=>{var h;typeof n.scrollStrategy=="function"?n.scrollStrategy(l,n,r):(h=ha[n.scrollStrategy])==null||h.call(ha,l,n,r)}))}),sn(()=>{r==null||r.stop()})}function Ob(n){function l(r){n.isActive.value=!1}q4(n.activatorEl.value??n.contentEl.value,l)}function Fb(n,l){var v;const r=(v=n.root.value)==null?void 0:v.offsetParent,h=[...new Set([...Ma(n.activatorEl.value,l.contained?r:void 0),...Ma(n.contentEl.value,l.contained?r:void 0)])].filter(k=>!k.classList.contains("v-overlay-scroll-blocked")),c=window.innerWidth-document.documentElement.offsetWidth,g=(k=>a2(k)&&k)(r||document.documentElement);g&&n.root.value.classList.add("v-overlay--scroll-blocked"),h.forEach((k,x)=>{k.style.setProperty("--v-body-scroll-x",qt(-k.scrollLeft)),k.style.setProperty("--v-body-scroll-y",qt(-k.scrollTop)),k!==document.documentElement&&k.style.setProperty("--v-scrollbar-offset",qt(c)),k.classList.add("v-overlay-scroll-blocked")}),sn(()=>{h.forEach((k,x)=>{const I=parseFloat(k.style.getPropertyValue("--v-body-scroll-x")),S=parseFloat(k.style.getPropertyValue("--v-body-scroll-y"));k.style.removeProperty("--v-body-scroll-x"),k.style.removeProperty("--v-body-scroll-y"),k.style.removeProperty("--v-scrollbar-offset"),k.classList.remove("v-overlay-scroll-blocked"),k.scrollLeft=-I,k.scrollTop=-S}),g&&n.root.value.classList.remove("v-overlay--scroll-blocked")})}function Rb(n,l,r){let h=!1,c=-1,g=-1;function v(k){Pb(()=>{var S,$;const x=performance.now();($=(S=n.updateLocation).value)==null||$.call(S,k),h=(performance.now()-x)/(1e3/60)>2})}g=(typeof requestIdleCallback>"u"?k=>k():requestIdleCallback)(()=>{r.run(()=>{q4(n.activatorEl.value??n.contentEl.value,k=>{h?(cancelAnimationFrame(c),c=requestAnimationFrame(()=>{c=requestAnimationFrame(()=>{v(k)})})):v(k)})})}),sn(()=>{typeof cancelIdleCallback<"u"&&cancelIdleCallback(g),cancelAnimationFrame(c)})}function q4(n,l){const r=[document,...Ma(n)];r.forEach(h=>{h.addEventListener("scroll",l,{passive:!0})}),sn(()=>{r.forEach(h=>{h.removeEventListener("scroll",l)})})}const Q0=Symbol.for("vuetify:v-menu"),Y4=mt({closeDelay:[Number,String],openDelay:[Number,String]},"delay");function U4(n,l){const r={},h=c=>()=>{if(!ze)return Promise.resolve(!0);const g=c==="openDelay";return r.closeDelay&&window.clearTimeout(r.closeDelay),delete r.closeDelay,r.openDelay&&window.clearTimeout(r.openDelay),delete r.openDelay,new Promise(v=>{const k=parseInt(n[c]??0,10);r[c]=window.setTimeout(()=>{l==null||l(g),v(g)},k)})};return{runCloseDelay:h("closeDelay"),runOpenDelay:h("openDelay")}}const Tb=mt({activator:[String,Object],activatorProps:{type:Object,default:()=>({})},openOnClick:{type:Boolean,default:void 0},openOnHover:Boolean,openOnFocus:{type:Boolean,default:void 0},closeOnContentClick:Boolean,...Y4()},"VOverlay-activator");function Eb(n,l){let{isActive:r,isTop:h}=l;const c=Lt();let g=!1,v=!1,k=!0;const x=q(()=>n.openOnFocus||n.openOnFocus==null&&n.openOnHover),I=q(()=>n.openOnClick||n.openOnClick==null&&!n.openOnHover&&!x.value),{runOpenDelay:S,runCloseDelay:$}=U4(n,U=>{U===(n.openOnHover&&g||x.value&&v)&&!(n.openOnHover&&r.value&&!h.value)&&(r.value!==U&&(k=!0),r.value=U)}),B={onClick:U=>{U.stopPropagation(),c.value=U.currentTarget||U.target,r.value=!r.value},onMouseenter:U=>{var W;(W=U.sourceCapabilities)!=null&&W.firesTouchEvents||(g=!0,c.value=U.currentTarget||U.target,S())},onMouseleave:U=>{g=!1,$()},onFocus:U=>{ro(U.target,":focus-visible")!==!1&&(v=!0,U.stopPropagation(),c.value=U.currentTarget||U.target,S())},onBlur:U=>{v=!1,U.stopPropagation(),$()}},P=q(()=>{const U={};return I.value&&(U.onClick=B.onClick),n.openOnHover&&(U.onMouseenter=B.onMouseenter,U.onMouseleave=B.onMouseleave),x.value&&(U.onFocus=B.onFocus,U.onBlur=B.onBlur),U}),D=q(()=>{const U={};if(n.openOnHover&&(U.onMouseenter=()=>{g=!0,S()},U.onMouseleave=()=>{g=!1,$()}),x.value&&(U.onFocusin=()=>{v=!0,S()},U.onFocusout=()=>{v=!1,$()}),n.closeOnContentClick){const W=de(Q0,null);U.onClick=()=>{r.value=!1,W==null||W.closeParents()}}return U}),F=q(()=>{const U={};return n.openOnHover&&(U.onMouseenter=()=>{k&&(g=!0,k=!1,S())},U.onMouseleave=()=>{g=!1,$()}),U});_t(h,U=>{U&&(n.openOnHover&&!g&&(!x.value||!v)||x.value&&!v&&(!n.openOnHover||!g))&&(r.value=!1)});const X=Lt();bn(()=>{X.value&&we(()=>{c.value=N0(X.value)})});const R=Ye("useActivator");let H;return _t(()=>!!n.activator,U=>{U&&ze?(H=io(),H.run(()=>{Vb(n,R,{activatorEl:c,activatorEvents:P})})):H&&H.stop()},{flush:"post",immediate:!0}),sn(()=>{H==null||H.stop()}),{activatorEl:c,activatorRef:X,activatorEvents:P,contentEvents:D,scrimEvents:F}}function Vb(n,l,r){let{activatorEl:h,activatorEvents:c}=r;_t(()=>n.activator,(x,I)=>{if(I&&x!==I){const S=k(I);S&&v(S)}x&&we(()=>g())},{immediate:!0}),_t(()=>n.activatorProps,()=>{g()}),sn(()=>{v()});function g(){let x=arguments.length>0&&arguments[0]!==void 0?arguments[0]:k(),I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:n.activatorProps;x&&Dk(x,o(c.value,I))}function v(){let x=arguments.length>0&&arguments[0]!==void 0?arguments[0]:k(),I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:n.activatorProps;x&&Ok(x,o(c.value,I))}function k(){var S,$;let x=arguments.length>0&&arguments[0]!==void 0?arguments[0]:n.activator,I;if(x)if(x==="parent"){let B=($=(S=l==null?void 0:l.proxy)==null?void 0:S.$el)==null?void 0:$.parentNode;for(;B.hasAttribute("data-no-activator");)B=B.parentNode;I=B}else typeof x=="string"?I=document.querySelector(x):"$el"in x?I=x.$el:I=x;return h.value=(I==null?void 0:I.nodeType)===Node.ELEMENT_NODE?I:null,h.value}}function G4(){if(!ze)return Wt(!1);const{ssr:n}=Ar();if(n){const l=Wt(!1);return Ve(()=>{l.value=!0}),l}else return Wt(!0)}const ui=mt({eager:Boolean},"lazy");function C2(n,l){const r=Wt(!1),h=q(()=>r.value||n.eager||l.value);_t(l,()=>r.value=!0);function c(){n.eager||(r.value=!1)}return{isBooted:r,hasContent:h,onAfterLeave:c}}function zo(){const l=Ye("useScopeId").vnode.scopeId;return{scopeId:l?{[l]:""}:void 0}}const Vd=Symbol.for("vuetify:stack"),Ho=Ze([]);function _b(n,l,r){const h=Ye("useStack"),c=!r,g=de(Vd,void 0),v=Ze({activeChildren:new Set});Se(Vd,v);const k=Wt(+l.value);Zl(n,()=>{var $;const S=($=Ho.at(-1))==null?void 0:$[1];k.value=S?S+10:+l.value,c&&Ho.push([h.uid,k.value]),g==null||g.activeChildren.add(h.uid),sn(()=>{if(c){const B=le(Ho).findIndex(P=>P[0]===h.uid);Ho.splice(B,1)}g==null||g.activeChildren.delete(h.uid)})});const x=Wt(!0);c&&bn(()=>{var $;const S=(($=Ho.at(-1))==null?void 0:$[0])===h.uid;setTimeout(()=>x.value=S)});const I=q(()=>!v.activeChildren.size);return{globalTop:uo(x),localTop:I,stackStyles:q(()=>({zIndex:k.value}))}}function Wb(n){return{teleportTarget:q(()=>{const r=n.value;if(r===!0||!ze)return;const h=r===!1?document.body:typeof r=="string"?document.querySelector(r):r;if(h==null)return;let c=h.querySelector(":scope > .v-overlay-container");return c||(c=document.createElement("div"),c.className="v-overlay-container",h.appendChild(c)),c})}}function Xb(){return!0}function Z4(n,l,r){if(!n||K4(n,r)===!1)return!1;const h=Wp(l);if(typeof ShadowRoot<"u"&&h instanceof ShadowRoot&&h.host===n.target)return!1;const c=(typeof r.value=="object"&&r.value.include||(()=>[]))();return c.push(l),!c.some(g=>g==null?void 0:g.contains(n.target))}function K4(n,l){return(typeof l.value=="object"&&l.value.closeConditional||Xb)(n)}function qb(n,l,r){const h=typeof r.value=="function"?r.value:r.value.handler;l._clickOutside.lastMousedownWasOutside&&Z4(n,l,r)&&setTimeout(()=>{K4(n,r)&&h&&h(n)},0)}function _d(n,l){const r=Wp(n);l(document),typeof ShadowRoot<"u"&&r instanceof ShadowRoot&&l(r)}const Q4={mounted(n,l){const r=c=>qb(c,n,l),h=c=>{n._clickOutside.lastMousedownWasOutside=Z4(c,n,l)};_d(n,c=>{c.addEventListener("click",r,!0),c.addEventListener("mousedown",h,!0)}),n._clickOutside||(n._clickOutside={lastMousedownWasOutside:!1}),n._clickOutside[l.instance.$.uid]={onClick:r,onMousedown:h}},unmounted(n,l){n._clickOutside&&(_d(n,r=>{var g;if(!r||!((g=n._clickOutside)!=null&&g[l.instance.$.uid]))return;const{onClick:h,onMousedown:c}=n._clickOutside[l.instance.$.uid];r.removeEventListener("click",h,!0),r.removeEventListener("mousedown",c,!0)}),delete n._clickOutside[l.instance.$.uid])}};function Yb(n){const{modelValue:l,color:r,...h}=n;return t(Zn,{name:"fade-transition",appear:!0},{default:()=>[n.modelValue&&t("div",o({class:["v-overlay__scrim",n.color.backgroundColorClasses.value],style:n.color.backgroundColorStyles.value},h),null)]})}const Bs=mt({absolute:Boolean,attach:[Boolean,String,Object],closeOnBack:{type:Boolean,default:!0},contained:Boolean,contentClass:null,contentProps:null,disabled:Boolean,noClickAnimation:Boolean,modelValue:Boolean,persistent:Boolean,scrim:{type:[Boolean,String],default:!0},zIndex:{type:[Number,String],default:2e3},...Tb(),...Xt(),...Tn(),...ui(),...Ab(),...Lb(),...ue(),...Sl()},"VOverlay"),xl=Bt()({name:"VOverlay",directives:{ClickOutside:Q4},inheritAttrs:!1,props:{_disableGlobalStack:Boolean,...Bs()},emits:{"click:outside":n=>!0,"update:modelValue":n=>!0,afterLeave:()=>!0},setup(n,l){let{slots:r,attrs:h,emit:c}=l;const g=ne(n,"modelValue"),v=q({get:()=>g.value,set:It=>{It&&n.disabled||(g.value=It)}}),{teleportTarget:k}=Wb(q(()=>n.attach||n.contained)),{themeClasses:x}=ve(n),{rtlClasses:I,isRtl:S}=Ue(),{hasContent:$,onAfterLeave:B}=C2(n,v),P=Pe(q(()=>typeof n.scrim=="string"?n.scrim:null)),{globalTop:D,localTop:F,stackStyles:X}=_b(v,Ht(n,"zIndex"),n._disableGlobalStack),{activatorEl:R,activatorRef:H,activatorEvents:U,contentEvents:W,scrimEvents:_}=Eb(n,{isActive:v,isTop:F}),{dimensionStyles:tt}=En(n),nt=G4(),{scopeId:Y}=zo();_t(()=>n.disabled,It=>{It&&(v.value=!1)});const G=Lt(),et=Lt(),{contentStyles:st,updateLocation:rt}=Bb(n,{isRtl:S,contentEl:et,activatorEl:R,isActive:v});Db(n,{root:G,contentEl:et,activatorEl:R,isActive:v,updateLocation:rt});function ht(It){c("click:outside",It),n.persistent?gt():v.value=!1}function dt(){return v.value&&D.value}ze&&_t(v,It=>{It?window.addEventListener("keydown",Ct):window.removeEventListener("keydown",Ct)},{immediate:!0});function Ct(It){var At,Tt;It.key==="Escape"&&D.value&&(n.persistent?gt():(v.value=!1,(At=et.value)!=null&&At.contains(document.activeElement)&&((Tt=R.value)==null||Tt.focus())))}const xt=u4();Zl(()=>n.closeOnBack,()=>{j7(xt,It=>{D.value&&v.value?(It(!1),n.persistent?gt():v.value=!1):It()})});const wt=Lt();_t(()=>v.value&&(n.absolute||n.contained)&&k.value==null,It=>{if(It){const At=s2(G.value);At&&At!==document.scrollingElement&&(wt.value=At.scrollTop)}});function gt(){n.noClickAnimation||et.value&&ur(et.value,[{transformOrigin:"center"},{transform:"scale(1.03)"},{transformOrigin:"center"}],{duration:150,easing:as})}return Dt(()=>{var It;return t(Kt,null,[(It=r.activator)==null?void 0:It.call(r,{isActive:v.value,props:o({ref:H},U.value,n.activatorProps)}),nt.value&&$.value&&t(ou,{disabled:!k.value,to:k.value},{default:()=>[t("div",o({class:["v-overlay",{"v-overlay--absolute":n.absolute||n.contained,"v-overlay--active":v.value,"v-overlay--contained":n.contained},x.value,I.value,n.class],style:[X.value,{top:qt(wt.value)},n.style],ref:G},Y,h),[t(Yb,o({color:P,modelValue:v.value&&!!n.scrim},_.value),null),t(Un,{appear:!0,persisted:!0,transition:n.transition,target:R.value,onAfterLeave:()=>{B(),c("afterLeave")}},{default:()=>{var At;return[$e(t("div",o({ref:et,class:["v-overlay__content",n.contentClass],style:[tt.value,st.value]},W.value,n.contentProps),[(At=r.default)==null?void 0:At.call(r,{isActive:v})]),[[Dn,v.value],[Mn("click-outside"),{handler:ht,closeConditional:dt,include:()=>[R.value]}]])]}})])]})])}),{activatorEl:R,animateClick:gt,contentEl:et,globalTop:D,localTop:F,updateLocation:rt}}}),Ui=Symbol("Forwarded refs");function Gi(n,l){let r=n;for(;r;){const h=Reflect.getOwnPropertyDescriptor(r,l);if(h)return h;r=Object.getPrototypeOf(r)}}function Jn(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{scopeId:c}=zo(),g=hn(),v=q(()=>n.id||`v-menu-${g}`),k=Lt(),x=de(Q0,null),I=Wt(0);Se(Q0,{register(){++I.value},unregister(){--I.value},closeParents(){setTimeout(()=>{I.value||(h.value=!1,x==null||x.closeParents())},40)}});async function S(F){var H,U,W;const X=F.relatedTarget,R=F.target;await we(),h.value&&X!==R&&((H=k.value)!=null&&H.contentEl)&&((U=k.value)!=null&&U.globalTop)&&![document,k.value.contentEl].includes(R)&&!k.value.contentEl.contains(R)&&((W=ss(k.value.contentEl)[0])==null||W.focus())}_t(h,F=>{F?(x==null||x.register(),document.addEventListener("focusin",S,{once:!0})):(x==null||x.unregister(),document.removeEventListener("focusin",S))});function $(){x==null||x.closeParents()}function B(F){var X,R,H;n.disabled||F.key==="Tab"&&(Hp(ss((X=k.value)==null?void 0:X.contentEl,!1),F.shiftKey?"prev":"next",W=>W.tabIndex>=0)||(h.value=!1,(H=(R=k.value)==null?void 0:R.activatorEl)==null||H.focus()))}function P(F){var R;if(n.disabled)return;const X=(R=k.value)==null?void 0:R.contentEl;X&&h.value?F.key==="ArrowDown"?(F.preventDefault(),ka(X,"next")):F.key==="ArrowUp"&&(F.preventDefault(),ka(X,"prev")):["ArrowDown","ArrowUp"].includes(F.key)&&(h.value=!0,F.preventDefault(),setTimeout(()=>setTimeout(()=>P(F))))}const D=q(()=>o({"aria-haspopup":"menu","aria-expanded":String(h.value),"aria-owns":v.value,onKeydown:P},n.activatorProps));return Dt(()=>{const[F]=xl.filterProps(n);return t(xl,o({ref:k,class:["v-menu",n.class],style:n.style},F,{modelValue:h.value,"onUpdate:modelValue":X=>h.value=X,absolute:!0,activatorProps:D.value,"onClick:outside":$,onKeydown:B},c),{activator:r.activator,default:function(){for(var X=arguments.length,R=new Array(X),H=0;H{var U;return[(U=r.default)==null?void 0:U.call(r,...R)]}})}})}),Jn({id:v,ΨopenChildren:I},k)}});const Gb=mt({active:Boolean,max:[Number,String],value:{type:[Number,String],default:0},...Xt(),...Sl({transition:{component:p2}})},"VCounter"),gi=Bt()({name:"VCounter",functional:!0,props:Gb(),setup(n,l){let{slots:r}=l;const h=q(()=>n.max?`${n.value} / ${n.max}`:String(n.value));return Dt(()=>t(Un,{transition:n.transition},{default:()=>[$e(t("div",{class:["v-counter",n.class],style:n.style},[r.default?r.default({counter:h.value,max:n.max,value:n.value}):h.value]),[[Dn,n.active]])]})),{}}});const Zb=mt({floating:Boolean,...Xt()},"VFieldLabel"),Lo=Bt()({name:"VFieldLabel",props:Zb(),setup(n,l){let{slots:r}=l;return Dt(()=>t(xo,{class:["v-field-label",{"v-field-label--floating":n.floating},n.class],style:n.style,"aria-hidden":n.floating||void 0},r)),{}}}),Kb=["underlined","outlined","filled","solo","solo-inverted","solo-filled","plain"],wi=mt({appendInnerIcon:ee,bgColor:String,clearable:Boolean,clearIcon:{type:ee,default:"$clear"},active:Boolean,centerAffix:{type:Boolean,default:void 0},color:String,baseColor:String,dirty:Boolean,disabled:{type:Boolean,default:null},error:Boolean,flat:Boolean,label:String,persistentClear:Boolean,prependInnerIcon:ee,reverse:Boolean,singleLine:Boolean,variant:{type:String,default:"filled",validator:n=>Kb.includes(n)},"onClick:clear":ol(),"onClick:appendInner":ol(),"onClick:prependInner":ol(),...Xt(),...b2(),...Ce(),...ue()},"VField"),Hs=Bt()({name:"VField",inheritAttrs:!1,props:{id:String,...hi(),...wi()},emits:{"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const{themeClasses:g}=ve(n),{loaderClasses:v}=ai(n),{focusClasses:k,isFocused:x,focus:I,blur:S}=er(n),{InputIcon:$}=y4(n),{roundedClasses:B}=Ne(n),{rtlClasses:P}=Ue(),D=q(()=>n.dirty||n.active),F=q(()=>!n.singleLine&&!!(n.label||c.label)),X=hn(),R=q(()=>n.id||`input-${X}`),H=q(()=>`${R.value}-messages`),U=Lt(),W=Lt(),_=Lt(),tt=q(()=>["plain","underlined"].includes(n.variant)),{backgroundColorClasses:nt,backgroundColorStyles:Y}=Pe(Ht(n,"bgColor")),{textColorClasses:G,textColorStyles:et}=an(q(()=>n.error||n.disabled?void 0:D.value&&x.value?n.color:n.baseColor));_t(D,ht=>{if(F.value){const dt=U.value.$el,Ct=W.value.$el;requestAnimationFrame(()=>{const xt=l2(dt),wt=Ct.getBoundingClientRect(),gt=wt.x-xt.x,It=wt.y-xt.y-(xt.height/2-wt.height/2),At=wt.width/.75,Tt=Math.abs(At-xt.width)>1?{maxWidth:qt(At)}:void 0,Ft=getComputedStyle(dt),Qt=getComputedStyle(Ct),Jt=parseFloat(Ft.transitionDuration)*1e3||150,Et=parseFloat(Qt.getPropertyValue("--v-field-label-scale")),ut=Qt.getPropertyValue("color");dt.style.visibility="visible",Ct.style.visibility="hidden",ur(dt,{transform:`translate(${gt}px, ${It}px) scale(${Et})`,color:ut,...Tt},{duration:Jt,easing:as,direction:ht?"normal":"reverse"}).finished.then(()=>{dt.style.removeProperty("visibility"),Ct.style.removeProperty("visibility")})})}},{flush:"post"});const st=q(()=>({isActive:D,isFocused:x,controlRef:_,blur:S,focus:I}));function rt(ht){ht.target!==document.activeElement&&ht.preventDefault()}return Dt(()=>{var gt,It,At;const ht=n.variant==="outlined",dt=c["prepend-inner"]||n.prependInnerIcon,Ct=!!(n.clearable||c.clear),xt=!!(c["append-inner"]||n.appendInnerIcon||Ct),wt=c.label?c.label({...st.value,label:n.label,props:{for:R.value}}):n.label;return t("div",o({class:["v-field",{"v-field--active":D.value,"v-field--appended":xt,"v-field--center-affix":n.centerAffix??!tt.value,"v-field--disabled":n.disabled,"v-field--dirty":n.dirty,"v-field--error":n.error,"v-field--flat":n.flat,"v-field--has-background":!!n.bgColor,"v-field--persistent-clear":n.persistentClear,"v-field--prepended":dt,"v-field--reverse":n.reverse,"v-field--single-line":n.singleLine,"v-field--no-label":!wt,[`v-field--variant-${n.variant}`]:!0},g.value,nt.value,k.value,v.value,B.value,P.value,n.class],style:[Y.value,n.style],onClick:rt},r),[t("div",{class:"v-field__overlay"},null),t(M2,{name:"v-field",active:!!n.loading,color:n.error?"error":typeof n.loading=="string"?n.loading:n.color},{default:c.loader}),dt&&t("div",{key:"prepend",class:"v-field__prepend-inner"},[n.prependInnerIcon&&t($,{key:"prepend-icon",name:"prependInner"},null),(gt=c["prepend-inner"])==null?void 0:gt.call(c,st.value)]),t("div",{class:"v-field__field","data-no-activator":""},[["filled","solo","solo-inverted","solo-filled"].includes(n.variant)&&F.value&&t(Lo,{key:"floating-label",ref:W,class:[G.value],floating:!0,for:R.value,style:et.value},{default:()=>[wt]}),t(Lo,{ref:U,for:R.value},{default:()=>[wt]}),(It=c.default)==null?void 0:It.call(c,{...st.value,props:{id:R.value,class:"v-field__input","aria-describedby":H.value},focus:I,blur:S})]),Ct&&t(g2,{key:"clear"},{default:()=>[$e(t("div",{class:"v-field__clearable",onMousedown:Tt=>{Tt.preventDefault(),Tt.stopPropagation()}},[c.clear?c.clear():t($,{name:"clear"},null)]),[[Dn,n.dirty]])]}),xt&&t("div",{key:"append",class:"v-field__append-inner"},[(At=c["append-inner"])==null?void 0:At.call(c,st.value),n.appendInnerIcon&&t($,{key:"append-icon",name:"appendInner"},null)]),t("div",{class:["v-field__outline",G.value],style:et.value},[ht&&t(Kt,null,[t("div",{class:"v-field__outline__start"},null),F.value&&t("div",{class:"v-field__outline__notch"},[t(Lo,{ref:W,floating:!0,for:R.value},{default:()=>[wt]})]),t("div",{class:"v-field__outline__end"},null)]),tt.value&&F.value&&t(Lo,{ref:W,floating:!0,for:R.value},{default:()=>[wt]})])])}),{controlRef:_}}});function S2(n){const l=Object.keys(Hs.props).filter(r=>!t2(r)&&r!=="class"&&r!=="style");return Mr(n,l)}const Qb=["color","file","time","date","datetime-local","week","month"],vi=mt({autofocus:Boolean,counter:[Boolean,Number,String],counterValue:Function,prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,suffix:String,role:String,type:{type:String,default:"text"},modelModifiers:Object,...Al(),...wi()},"VTextField"),Ir=Bt()({name:"VTextField",directives:{Intersect:si},inheritAttrs:!1,props:vi(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const g=ne(n,"modelValue"),{isFocused:v,focus:k,blur:x}=er(n),I=q(()=>typeof n.counterValue=="function"?n.counterValue(g.value):(g.value??"").toString().length),S=q(()=>{if(r.maxlength)return r.maxlength;if(!(!n.counter||typeof n.counter!="number"&&typeof n.counter!="string"))return n.counter}),$=q(()=>["plain","underlined"].includes(n.variant));function B(tt,nt){var Y,G;!n.autofocus||!tt||(G=(Y=nt[0].target)==null?void 0:Y.focus)==null||G.call(Y)}const P=Lt(),D=Lt(),F=Lt(),X=q(()=>Qb.includes(n.type)||n.persistentPlaceholder||v.value||n.active);function R(){var tt;F.value!==document.activeElement&&((tt=F.value)==null||tt.focus()),v.value||k()}function H(tt){h("mousedown:control",tt),tt.target!==F.value&&(R(),tt.preventDefault())}function U(tt){R(),h("click:control",tt)}function W(tt){tt.stopPropagation(),R(),we(()=>{g.value=null,n2(n["onClick:clear"],tt)})}function _(tt){var Y;const nt=tt.target;if(g.value=nt.value,(Y=n.modelModifiers)!=null&&Y.trim&&["text","search","password","tel","url"].includes(n.type)){const G=[nt.selectionStart,nt.selectionEnd];we(()=>{nt.selectionStart=G[0],nt.selectionEnd=G[1]})}}return Dt(()=>{const tt=!!(c.counter||n.counter||n.counterValue),nt=!!(tt||c.details),[Y,G]=$r(r),[{modelValue:et,...st}]=Ke.filterProps(n),[rt]=S2(n);return t(Ke,o({ref:P,modelValue:g.value,"onUpdate:modelValue":ht=>g.value=ht,class:["v-text-field",{"v-text-field--prefixed":n.prefix,"v-text-field--suffixed":n.suffix,"v-text-field--plain-underlined":["plain","underlined"].includes(n.variant)},n.class],style:n.style},Y,st,{centerAffix:!$.value,focused:v.value}),{...c,default:ht=>{let{id:dt,isDisabled:Ct,isDirty:xt,isReadonly:wt,isValid:gt}=ht;return t(Hs,o({ref:D,onMousedown:H,onClick:U,"onClick:clear":W,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"],role:n.role},rt,{id:dt.value,active:X.value||xt.value,dirty:xt.value||n.dirty,disabled:Ct.value,focused:v.value,error:gt.value===!1}),{...c,default:It=>{let{props:{class:At,...Tt}}=It;const Ft=$e(t("input",o({ref:F,value:g.value,onInput:_,autofocus:n.autofocus,readonly:wt.value,disabled:Ct.value,name:n.name,placeholder:n.placeholder,size:1,type:n.type,onFocus:R,onBlur:x},Tt,G),null),[[Mn("intersect"),{handler:B},null,{once:!0}]]);return t(Kt,null,[n.prefix&&t("span",{class:"v-text-field__prefix"},[t("span",{class:"v-text-field__prefix__text"},[n.prefix])]),c.default?t("div",{class:At,"data-no-activator":""},[c.default(),Ft]):Gn(Ft,{class:At}),n.suffix&&t("span",{class:"v-text-field__suffix"},[t("span",{class:"v-text-field__suffix__text"},[n.suffix])])])}})},details:nt?ht=>{var dt;return t(Kt,null,[(dt=c.details)==null?void 0:dt.call(c,ht),tt&&t(Kt,null,[t("span",null,null),t(gi,{active:n.persistentCounter||v.value,value:I.value,max:S.value},c.counter)])])}:void 0})}),Jn({},P,D,F)}});const Jb=mt({renderless:Boolean,...Xt()},"VVirtualScrollItem"),t8=Bt()({name:"VVirtualScrollItem",inheritAttrs:!1,props:Jb(),emits:{"update:height":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const{resizeRef:g,contentRect:v}=sl(void 0,"border");_t(()=>{var k;return(k=v.value)==null?void 0:k.height},k=>{k!=null&&h("update:height",k)}),Dt(()=>{var k,x;return n.renderless?t(Kt,null,[(k=c.default)==null?void 0:k.call(c,{itemRef:g})]):t("div",o({ref:g,class:["v-virtual-scroll__item",n.class],style:n.style},r),[(x=c.default)==null?void 0:x.call(c)])})}}),Wd=-1,Xd=1,e8=mt({itemHeight:{type:[Number,String],default:48}},"virtual");function n8(n,l,r){const h=Wt(0),c=Wt(n.itemHeight),g=q({get:()=>parseInt(c.value??0,10),set(nt){c.value=nt}}),v=Lt(),{resizeRef:k,contentRect:x}=sl();bn(()=>{k.value=v.value});const I=Ar(),S=new Map;let $=Array.from({length:l.value.length});const B=q(()=>{const nt=(!x.value||v.value===document.documentElement?I.height.value:x.value.height)-((r==null?void 0:r.value)??0);return Math.ceil(nt/g.value*1.7+1)});function P(nt,Y){g.value=Math.max(g.value,Y),$[nt]=Y,S.set(l.value[nt],Y)}function D(nt){return $.slice(0,nt).reduce((Y,G)=>Y+(G||g.value),0)}function F(nt){const Y=l.value.length;let G=0,et=0;for(;et=ht&&(h.value=rn(rt,0,l.value.length-B.value)),X=Y}function H(nt){if(!v.value)return;const Y=D(nt);v.value.scrollTop=Y}const U=q(()=>Math.min(l.value.length,h.value+B.value)),W=q(()=>l.value.slice(h.value,U.value).map((nt,Y)=>({raw:nt,index:Y+h.value}))),_=q(()=>D(h.value)),tt=q(()=>D(l.value.length)-D(U.value));return _t(()=>l.value.length,()=>{$=gl(l.value.length).map(()=>g.value),S.forEach((nt,Y)=>{const G=l.value.indexOf(Y);G===-1?S.delete(Y):$[G]=nt})}),{containerRef:v,computedItems:W,itemHeight:g,paddingTop:_,paddingBottom:tt,scrollToIndex:H,handleScroll:R,handleItemResize:P}}const l8=mt({items:{type:Array,default:()=>[]},renderless:Boolean,...e8(),...Xt(),...Tn()},"VVirtualScroll"),fi=Bt()({name:"VVirtualScroll",props:l8(),setup(n,l){let{slots:r}=l;const h=Ye("VVirtualScroll"),{dimensionStyles:c}=En(n),{containerRef:g,handleScroll:v,handleItemResize:k,scrollToIndex:x,paddingTop:I,paddingBottom:S,computedItems:$}=n8(n,Ht(n,"items"));return Zl(()=>n.renderless,()=>{Ve(()=>{var B;g.value=s2(h.vnode.el,!0),(B=g.value)==null||B.addEventListener("scroll",v)}),sn(()=>{var B;(B=g.value)==null||B.removeEventListener("scroll",v)})}),Dt(()=>{const B=$.value.map(P=>t(t8,{key:P.index,renderless:n.renderless,"onUpdate:height":D=>k(P.index,D)},{default:D=>{var F;return(F=r.default)==null?void 0:F.call(r,{item:P.raw,index:P.index,...D})}}));return n.renderless?t(Kt,null,[t("div",{class:"v-virtual-scroll__spacer",style:{paddingTop:qt(I.value)}},null),B,t("div",{class:"v-virtual-scroll__spacer",style:{paddingBottom:qt(S.value)}},null)]):t("div",{ref:g,class:["v-virtual-scroll",n.class],onScroll:v,style:[c.value,n.style]},[t("div",{class:"v-virtual-scroll__container",style:{paddingTop:qt(I.value),paddingBottom:qt(S.value)}},[B])])}),{scrollToIndex:x}}});function $2(n,l){const r=Wt(!1);let h;function c(k){cancelAnimationFrame(h),r.value=!0,h=requestAnimationFrame(()=>{h=requestAnimationFrame(()=>{r.value=!1})})}async function g(){await new Promise(k=>requestAnimationFrame(k)),await new Promise(k=>requestAnimationFrame(k)),await new Promise(k=>requestAnimationFrame(k)),await new Promise(k=>{if(r.value){const x=_t(r,()=>{x(),k()})}else k()})}async function v(k){var S,$;if(k.key==="Tab"&&((S=l.value)==null||S.focus()),!["PageDown","PageUp","Home","End"].includes(k.key))return;const x=($=n.value)==null?void 0:$.$el;if(!x)return;(k.key==="Home"||k.key==="End")&&x.scrollTo({top:k.key==="Home"?0:x.scrollHeight,behavior:"smooth"}),await g();const I=x.querySelectorAll(":scope > :not(.v-virtual-scroll__spacer)");if(k.key==="PageDown"||k.key==="Home"){const B=x.getBoundingClientRect().top;for(const P of I)if(P.getBoundingClientRect().top>=B){P.focus();break}}else{const B=x.getBoundingClientRect().bottom;for(const P of[...I].reverse())if(P.getBoundingClientRect().bottom<=B){P.focus();break}}}return{onListScroll:c,onListKeydown:v}}const A2=mt({chips:Boolean,closableChips:Boolean,closeText:{type:String,default:"$vuetify.close"},openText:{type:String,default:"$vuetify.open"},eager:Boolean,hideNoData:Boolean,hideSelected:Boolean,menu:Boolean,menuIcon:{type:ee,default:"$dropdown"},menuProps:{type:Object},multiple:Boolean,noDataText:{type:String,default:"$vuetify.noDataText"},openOnClear:Boolean,valueComparator:{type:Function,default:Sr},itemColor:String,...V4({itemChildren:!1})},"Select"),r8=mt({...A2(),...On(vi({modelValue:null,role:"button"}),["validationValue","dirty","appendInnerIcon"]),...Sl({transition:{component:ri}})},"VSelect"),o8=Bt()({name:"VSelect",props:r8(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,"update:menu":n=>!0},setup(n,l){let{slots:r}=l;const{t:h}=Rn(),c=Lt(),g=Lt(),v=Lt(),k=ne(n,"menu"),x=q({get:()=>k.value,set:wt=>{var gt;k.value&&!wt&&((gt=g.value)!=null&>.ΨopenChildren)||(k.value=wt)}}),{items:I,transformIn:S,transformOut:$}=y2(n),B=ne(n,"modelValue",[],wt=>S(wt===null?[null]:Pn(wt)),wt=>{const gt=$(wt);return n.multiple?gt:gt[0]??null}),P=di(),D=q(()=>B.value.map(wt=>I.value.find(gt=>{const It=ln(gt.raw,n.itemValue),At=ln(wt.raw,n.itemValue);return It===void 0||At===void 0?!1:n.returnObject?n.valueComparator(It,At):n.valueComparator(gt.value,wt.value)})||wt)),F=q(()=>D.value.map(wt=>wt.props.value)),X=Wt(!1),R=q(()=>x.value?n.closeText:n.openText);let H="",U;const W=q(()=>n.hideSelected?I.value.filter(wt=>!D.value.some(gt=>gt===wt)):I.value),_=q(()=>n.hideNoData&&!I.value.length||n.readonly||(P==null?void 0:P.isReadonly.value)),tt=Lt(),{onListScroll:nt,onListKeydown:Y}=$2(tt,c);function G(wt){n.openOnClear&&(x.value=!0)}function et(){_.value||(x.value=!x.value)}function st(wt){var Ft,Qt;if(!wt.key||n.readonly||P!=null&&P.isReadonly.value)return;["Enter"," ","ArrowDown","ArrowUp","Home","End"].includes(wt.key)&&wt.preventDefault(),["Enter","ArrowDown"," "].includes(wt.key)&&(x.value=!0),["Escape","Tab"].includes(wt.key)&&(x.value=!1),wt.key==="Home"?(Ft=tt.value)==null||Ft.focus("first"):wt.key==="End"&&((Qt=tt.value)==null||Qt.focus("last"));const gt=1e3;function It(Jt){const Et=Jt.key.length===1,ut=!Jt.ctrlKey&&!Jt.metaKey&&!Jt.altKey;return Et&&ut}if(n.multiple||!It(wt))return;const At=performance.now();At-U>gt&&(H=""),H+=wt.key.toLowerCase(),U=At;const Tt=I.value.find(Jt=>Jt.title.toLowerCase().startsWith(H));Tt!==void 0&&(B.value=[Tt])}function rt(wt){if(n.multiple){const gt=F.value.findIndex(It=>n.valueComparator(It,wt.value));if(gt===-1)B.value=[...B.value,wt];else{const It=[...B.value];It.splice(gt,1),B.value=It}}else B.value=[wt],x.value=!1}function ht(wt){var gt;(gt=tt.value)!=null&>.$el.contains(wt.relatedTarget)||(x.value=!1)}function dt(){var wt;X.value&&((wt=c.value)==null||wt.focus())}function Ct(wt){X.value=!0}function xt(wt){if(wt==null)B.value=[];else if(ro(c.value,":autofill")||ro(c.value,":-webkit-autofill")){const gt=I.value.find(It=>It.title===wt);gt&&rt(gt)}else c.value&&(c.value.value="")}return _t(x,()=>{if(!n.hideSelected&&x.value&&D.value.length){const wt=W.value.findIndex(gt=>D.value.some(It=>gt.value===It.value));ze&&window.requestAnimationFrame(()=>{var gt;wt>=0&&((gt=v.value)==null||gt.scrollToIndex(wt))})}}),Dt(()=>{const wt=!!(n.chips||r.chip),gt=!!(!n.hideNoData||W.value.length||r["prepend-item"]||r["append-item"]||r["no-data"]),It=B.value.length>0,[At]=Ir.filterProps(n),Tt=It||!X.value&&n.label&&!n.persistentPlaceholder?void 0:n.placeholder;return t(Ir,o({ref:c},At,{modelValue:B.value.map(Ft=>Ft.props.value).join(", "),"onUpdate:modelValue":xt,focused:X.value,"onUpdate:focused":Ft=>X.value=Ft,validationValue:B.externalValue,dirty:It,class:["v-select",{"v-select--active-menu":x.value,"v-select--chips":!!n.chips,[`v-select--${n.multiple?"multiple":"single"}`]:!0,"v-select--selected":B.value.length,"v-select--selection-slot":!!r.selection},n.class],style:n.style,inputmode:"none",placeholder:Tt,"onClick:clear":G,"onMousedown:control":et,onBlur:ht,onKeydown:st,"aria-label":h(R.value),title:h(R.value)}),{...r,default:()=>t(Kt,null,[t(pi,o({ref:g,modelValue:x.value,"onUpdate:modelValue":Ft=>x.value=Ft,activator:"parent",contentClass:"v-select__content",disabled:_.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:dt},n.menuProps),{default:()=>[gt&&t(ci,{ref:tt,selected:F.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:Ft=>Ft.preventDefault(),onKeydown:Y,onFocusin:Ct,onScrollPassive:nt,tabindex:"-1",color:n.itemColor??n.color},{default:()=>{var Ft,Qt,Jt;return[(Ft=r["prepend-item"])==null?void 0:Ft.call(r),!W.value.length&&!n.hideNoData&&(((Qt=r["no-data"])==null?void 0:Qt.call(r))??t(Ml,{title:h(n.noDataText)},null)),t(fi,{ref:v,renderless:!0,items:W.value},{default:Et=>{var bt;let{item:ut,index:pt,itemRef:Nt}=Et;const jt=o(ut.props,{ref:Nt,key:pt,onClick:()=>rt(ut)});return((bt=r.item)==null?void 0:bt.call(r,{item:ut,index:pt,props:jt}))??t(Ml,jt,{prepend:ft=>{let{isSelected:J}=ft;return t(Kt,null,[n.multiple&&!n.hideSelected?t(ao,{key:ut.value,modelValue:J,ripple:!1,tabindex:"-1"},null):void 0,ut.props.prependIcon&&t(xe,{icon:ut.props.prependIcon},null)])}})}}),(Jt=r["append-item"])==null?void 0:Jt.call(r)]}})]}),D.value.map((Ft,Qt)=>{var ut;function Jt(pt){pt.stopPropagation(),pt.preventDefault(),rt(Ft)}const Et={"onClick:close":Jt,onMousedown(pt){pt.preventDefault(),pt.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return t("div",{key:Ft.value,class:"v-select__selection"},[wt?r.chip?t(ke,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:Ft.title}}},{default:()=>{var pt;return[(pt=r.chip)==null?void 0:pt.call(r,{item:Ft,index:Qt,props:Et})]}}):t(As,o({key:"chip",closable:n.closableChips,size:"small",text:Ft.title},Et),null):((ut=r.selection)==null?void 0:ut.call(r,{item:Ft,index:Qt}))??t("span",{class:"v-select__selection-text"},[Ft.title,n.multiple&&Qtn==null||l==null?-1:n.toString().toLocaleLowerCase().indexOf(l.toString().toLocaleLowerCase()),J4=mt({customFilter:Function,customKeyFilter:Object,filterKeys:[Array,String],filterMode:{type:String,default:"intersection"},noFilter:Boolean},"filter");function a8(n,l,r){var k;const h=[],c=(r==null?void 0:r.default)??s8,g=r!=null&&r.filterKeys?Pn(r.filterKeys):!1,v=Object.keys((r==null?void 0:r.customKeyFilter)??{}).length;if(!(n!=null&&n.length))return h;t:for(let x=0;xh!=null&&h.transform?je(l).map(h==null?void 0:h.transform):je(l));bn(()=>{const x=typeof r=="function"?r():je(r),I=typeof x!="string"&&typeof x!="number"?"":String(x),S=a8(v.value,I,{customKeyFilter:n.customKeyFilter,default:n.customFilter,filterKeys:n.filterKeys,filterMode:n.filterMode,noFilter:n.noFilter}),$=je(l),B=[],P=new Map;S.forEach(D=>{let{index:F,matches:X}=D;const R=$[F];B.push(R),P.set(R.value,X)}),c.value=B,g.value=P});function k(x){return g.value.get(x.value)}return{filteredItems:c,filteredMatches:g,getMatches:k}}function i8(n,l,r){if(l==null)return n;if(Array.isArray(l))throw new Error("Multiple matches is not implemented");return typeof l=="number"&&~l?t(Kt,null,[t("span",{class:"v-autocomplete__unmask"},[n.substr(0,l)]),t("span",{class:"v-autocomplete__mask"},[n.substr(l,r)]),t("span",{class:"v-autocomplete__unmask"},[n.substr(l+r)])]):n}const h8=mt({autoSelectFirst:{type:[Boolean,String]},search:String,...J4({filterKeys:["title"]}),...A2(),...On(vi({modelValue:null,role:"combobox"}),["validationValue","dirty","appendInnerIcon"]),...Sl({transition:!1})},"VAutocomplete"),d8=Bt()({name:"VAutocomplete",props:h8(),emits:{"update:focused":n=>!0,"update:search":n=>!0,"update:modelValue":n=>!0,"update:menu":n=>!0},setup(n,l){let{slots:r}=l;const{t:h}=Rn(),c=Lt(),g=Wt(!1),v=Wt(!0),k=Wt(!1),x=Lt(),I=Lt(),S=ne(n,"menu"),$=q({get:()=>S.value,set:bt=>{var ft;S.value&&!bt&&((ft=x.value)!=null&&ft.ΨopenChildren)||(S.value=bt)}}),B=Wt(-1),P=q(()=>{var bt;return(bt=c.value)==null?void 0:bt.color}),D=q(()=>$.value?n.closeText:n.openText),{items:F,transformIn:X,transformOut:R}=y2(n),{textColorClasses:H,textColorStyles:U}=an(P),W=ne(n,"search",""),_=ne(n,"modelValue",[],bt=>X(bt===null?[null]:Pn(bt)),bt=>{const ft=R(bt);return n.multiple?ft:ft[0]??null}),tt=di(),{filteredItems:nt,getMatches:Y}=tg(n,F,()=>v.value?"":W.value),G=q(()=>_.value.map(bt=>F.value.find(ft=>{const J=ln(ft.raw,n.itemValue),lt=ln(bt.raw,n.itemValue);return J===void 0||lt===void 0?!1:n.returnObject?n.valueComparator(J,lt):n.valueComparator(ft.value,bt.value)})||bt)),et=q(()=>n.hideSelected?nt.value.filter(bt=>!G.value.some(ft=>ft.value===bt.value)):nt.value),st=q(()=>G.value.map(bt=>bt.props.value)),rt=q(()=>G.value[B.value]),ht=q(()=>{var ft;return(n.autoSelectFirst===!0||n.autoSelectFirst==="exact"&&W.value===((ft=et.value[0])==null?void 0:ft.title))&&et.value.length>0&&!v.value&&!k.value}),dt=q(()=>n.hideNoData&&!F.value.length||n.readonly||(tt==null?void 0:tt.isReadonly.value)),Ct=Lt(),{onListScroll:xt,onListKeydown:wt}=$2(Ct,c);function gt(bt){n.openOnClear&&($.value=!0),W.value=""}function It(){dt.value||($.value=!0)}function At(bt){dt.value||(g.value&&(bt.preventDefault(),bt.stopPropagation()),$.value=!$.value)}function Tt(bt){var lt,at,ct;if(n.readonly||tt!=null&&tt.isReadonly.value)return;const ft=c.value.selectionStart,J=st.value.length;if((B.value>-1||["Enter","ArrowDown","ArrowUp"].includes(bt.key))&&bt.preventDefault(),["Enter","ArrowDown"].includes(bt.key)&&($.value=!0),["Escape"].includes(bt.key)&&($.value=!1),ht.value&&["Enter","Tab"].includes(bt.key)&&jt(et.value[0]),bt.key==="ArrowDown"&&ht.value&&((lt=Ct.value)==null||lt.focus("next")),!!n.multiple){if(["Backspace","Delete"].includes(bt.key)){if(B.value<0){bt.key==="Backspace"&&!W.value&&(B.value=J-1);return}const kt=B.value;rt.value&&jt(rt.value),B.value=kt>=J-1?J-2:kt}if(bt.key==="ArrowLeft"){if(B.value<0&&ft>0)return;const kt=B.value>-1?B.value-1:J-1;G.value[kt]?B.value=kt:(B.value=-1,c.value.setSelectionRange((at=W.value)==null?void 0:at.length,(ct=W.value)==null?void 0:ct.length))}if(bt.key==="ArrowRight"){if(B.value<0)return;const kt=B.value+1;G.value[kt]?B.value=kt:(B.value=-1,c.value.setSelectionRange(0,0))}}}function Ft(bt){W.value=bt.target.value}function Qt(bt){if(ro(c.value,":autofill")||ro(c.value,":-webkit-autofill")){const ft=F.value.find(J=>J.title===bt.target.value);ft&&jt(ft)}}function Jt(){var bt;g.value&&(v.value=!0,(bt=c.value)==null||bt.focus())}function Et(bt){g.value=!0,setTimeout(()=>{k.value=!0})}function ut(bt){k.value=!1}function pt(bt){(bt==null||bt===""&&!n.multiple)&&(_.value=[])}const Nt=Wt(!1);function jt(bt){if(n.multiple){const ft=st.value.findIndex(J=>n.valueComparator(J,bt.value));if(ft===-1)_.value=[..._.value,bt];else{const J=[..._.value];J.splice(ft,1),_.value=J}}else _.value=[bt],Nt.value=!0,W.value=bt.title,$.value=!1,v.value=!0,we(()=>Nt.value=!1)}return _t(g,(bt,ft)=>{var J;bt!==ft&&(bt?(Nt.value=!0,W.value=n.multiple?"":String(((J=G.value.at(-1))==null?void 0:J.props.title)??""),v.value=!0,we(()=>Nt.value=!1)):(!n.multiple&&!W.value?_.value=[]:ht.value&&!k.value&&!G.value.some(lt=>{let{value:at}=lt;return at===et.value[0].value})&&jt(et.value[0]),$.value=!1,W.value="",B.value=-1))}),_t(W,bt=>{!g.value||Nt.value||(bt&&($.value=!0),v.value=!bt)}),_t($,()=>{if(!n.hideSelected&&$.value&&G.value.length){const bt=et.value.findIndex(ft=>G.value.some(J=>ft.value===J.value));ze&&window.requestAnimationFrame(()=>{var ft;bt>=0&&((ft=I.value)==null||ft.scrollToIndex(bt))})}}),Dt(()=>{const bt=!!(n.chips||r.chip),ft=!!(!n.hideNoData||et.value.length||r["prepend-item"]||r["append-item"]||r["no-data"]),J=_.value.length>0,[lt]=Ir.filterProps(n);return t(Ir,o({ref:c},lt,{modelValue:W.value,"onUpdate:modelValue":pt,focused:g.value,"onUpdate:focused":at=>g.value=at,validationValue:_.externalValue,dirty:J,onInput:Ft,onChange:Qt,class:["v-autocomplete",`v-autocomplete--${n.multiple?"multiple":"single"}`,{"v-autocomplete--active-menu":$.value,"v-autocomplete--chips":!!n.chips,"v-autocomplete--selection-slot":!!r.selection,"v-autocomplete--selecting-index":B.value>-1},n.class],style:n.style,readonly:n.readonly,placeholder:J?void 0:n.placeholder,"onClick:clear":gt,"onMousedown:control":It,onKeydown:Tt}),{...r,default:()=>t(Kt,null,[t(pi,o({ref:x,modelValue:$.value,"onUpdate:modelValue":at=>$.value=at,activator:"parent",contentClass:"v-autocomplete__content",disabled:dt.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:Jt},n.menuProps),{default:()=>[ft&&t(ci,{ref:Ct,selected:st.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:at=>at.preventDefault(),onKeydown:wt,onFocusin:Et,onFocusout:ut,onScrollPassive:xt,tabindex:"-1",color:n.itemColor??n.color},{default:()=>{var at,ct,kt;return[(at=r["prepend-item"])==null?void 0:at.call(r),!et.value.length&&!n.hideNoData&&(((ct=r["no-data"])==null?void 0:ct.call(r))??t(Ml,{title:h(n.noDataText)},null)),t(fi,{ref:I,renderless:!0,items:et.value},{default:yt=>{var Zt;let{item:Ot,index:$t,itemRef:Rt}=yt;const Pt=o(Ot.props,{ref:Rt,key:$t,active:ht.value&&$t===0?!0:void 0,onClick:()=>jt(Ot)});return((Zt=r.item)==null?void 0:Zt.call(r,{item:Ot,index:$t,props:Pt}))??t(Ml,Pt,{prepend:Ut=>{let{isSelected:Gt}=Ut;return t(Kt,null,[n.multiple&&!n.hideSelected?t(ao,{key:Ot.value,modelValue:Gt,ripple:!1,tabindex:"-1"},null):void 0,Ot.props.prependIcon&&t(xe,{icon:Ot.props.prependIcon},null)])},title:()=>{var Ut,Gt;return v.value?Ot.title:i8(Ot.title,(Ut=Y(Ot))==null?void 0:Ut.title,((Gt=W.value)==null?void 0:Gt.length)??0)}})}}),(kt=r["append-item"])==null?void 0:kt.call(r)]}})]}),G.value.map((at,ct)=>{var Ot;function kt($t){$t.stopPropagation(),$t.preventDefault(),jt(at)}const yt={"onClick:close":kt,onMousedown($t){$t.preventDefault(),$t.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return t("div",{key:at.value,class:["v-autocomplete__selection",ct===B.value&&["v-autocomplete__selection--selected",H.value]],style:ct===B.value?U.value:{}},[bt?r.chip?t(ke,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:at.title}}},{default:()=>{var $t;return[($t=r.chip)==null?void 0:$t.call(r,{item:at,index:ct,props:yt})]}}):t(As,o({key:"chip",closable:n.closableChips,size:"small",text:at.title},yt),null):((Ot=r.selection)==null?void 0:Ot.call(r,{item:at,index:ct}))??t("span",{class:"v-autocomplete__selection-text"},[at.title,n.multiple&&ct(n.floating?n.dot?2:4:n.dot?8:12)+(["top","bottom"].includes(S)?+(n.offsetY??0):["left","right"].includes(S)?+(n.offsetX??0):0));return Dt(()=>{const S=Number(n.content),$=!n.max||isNaN(S)?n.content:S<=+n.max?S:`${n.max}+`,[B,P]=Mr(l.attrs,["aria-atomic","aria-label","aria-live","role","title"]);return t(n.tag,o({class:["v-badge",{"v-badge--bordered":n.bordered,"v-badge--dot":n.dot,"v-badge--floating":n.floating,"v-badge--inline":n.inline},n.class]},P,{style:n.style}),{default:()=>{var D,F;return[t("div",{class:"v-badge__wrapper"},[(F=(D=l.slots).default)==null?void 0:F.call(D),t(Un,{transition:n.transition},{default:()=>{var X,R;return[$e(t("span",o({class:["v-badge__badge",x.value,r.value,c.value,v.value],style:[h.value,k.value,n.inline?{}:I.value],"aria-atomic":"true","aria-label":g(n.label,S),"aria-live":"polite",role:"status"},B),[n.dot?void 0:l.slots.badge?(R=(X=l.slots).badge)==null?void 0:R.call(X):n.icon?t(xe,{icon:n.icon},null):$]),[[Dn,n.modelValue]])]}})])]}})}),{}}});const p8=mt({color:String,density:String,...Xt()},"VBannerActions"),eg=Bt()({name:"VBannerActions",props:p8(),setup(n,l){let{slots:r}=l;return Te({VBtn:{color:n.color,density:n.density,variant:"text"}}),Dt(()=>{var h;return t("div",{class:["v-banner-actions",n.class],style:n.style},[(h=r.default)==null?void 0:h.call(r)])}),{}}}),ng=Qn("v-banner-text"),g8=mt({avatar:String,color:String,icon:ee,lines:String,stacked:Boolean,sticky:Boolean,text:String,...An(),...Xt(),...We(),...Tn(),..._e(),...Ql(),...bo(),...Ce(),...re(),...ue()},"VBanner"),w8=Bt()({name:"VBanner",props:g8(),setup(n,l){let{slots:r}=l;const{borderClasses:h}=Vn(n),{densityClasses:c}=dn(n),{mobile:g}=Ar(),{dimensionStyles:v}=En(n),{elevationClasses:k}=Je(n),{locationStyles:x}=Jl(n),{positionClasses:I}=Mo(n),{roundedClasses:S}=Ne(n),{themeClasses:$}=ve(n),B=Ht(n,"color"),P=Ht(n,"density");Te({VBannerActions:{color:B,density:P}}),Dt(()=>{const D=!!(n.text||r.text),F=!!(n.avatar||n.icon),X=!!(F||r.prepend);return t(n.tag,{class:["v-banner",{"v-banner--stacked":n.stacked||g.value,"v-banner--sticky":n.sticky,[`v-banner--${n.lines}-line`]:!!n.lines},h.value,c.value,k.value,I.value,S.value,$.value,n.class],style:[v.value,x.value,n.style],role:"banner"},{default:()=>{var R;return[X&&t("div",{key:"prepend",class:"v-banner__prepend"},[r.prepend?t(ke,{key:"prepend-defaults",disabled:!F,defaults:{VAvatar:{color:B.value,density:P.value,icon:n.icon,image:n.avatar}}},r.prepend):t(Kl,{key:"prepend-avatar",color:B.value,density:P.value,icon:n.icon,image:n.avatar},null)]),t("div",{class:"v-banner__content"},[D&&t(ng,{key:"text"},{default:()=>{var H;return[((H=r.text)==null?void 0:H.call(r))??n.text]}}),(R=r.default)==null?void 0:R.call(r)]),r.actions&&t(eg,{key:"actions"},r.actions)]}})})}});const v8=mt({bgColor:String,color:String,grow:Boolean,mode:{type:String,validator:n=>!n||["horizontal","shift"].includes(n)},height:{type:[Number,String],default:56},active:{type:Boolean,default:!0},...An(),...Xt(),...We(),..._e(),...Ce(),...go({name:"bottom-navigation"}),...re({tag:"header"}),...vo({modelValue:!0,selectedClass:"v-btn--selected"}),...ue()},"VBottomNavigation"),f8=Bt()({name:"VBottomNavigation",props:v8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=Gp(),{borderClasses:c}=Vn(n),{backgroundColorClasses:g,backgroundColorStyles:v}=Pe(Ht(n,"bgColor")),{densityClasses:k}=dn(n),{elevationClasses:x}=Je(n),{roundedClasses:I}=Ne(n),{ssrBootStyles:S}=Br(),$=q(()=>Number(n.height)-(n.density==="comfortable"?8:0)-(n.density==="compact"?16:0)),B=Ht(n,"active"),{layoutItemStyles:P}=wo({id:n.name,order:q(()=>parseInt(n.order,10)),position:q(()=>"bottom"),layoutSize:q(()=>B.value?$.value:0),elementSize:$,active:B,absolute:Ht(n,"absolute")});return jr(n,v2),Te({VBtn:{color:Ht(n,"color"),density:Ht(n,"density"),stacked:q(()=>n.mode!=="horizontal"),variant:"text"}},{scoped:!0}),Dt(()=>t(n.tag,{class:["v-bottom-navigation",{"v-bottom-navigation--active":B.value,"v-bottom-navigation--grow":n.grow,"v-bottom-navigation--shift":n.mode==="shift"},h.value,g.value,c.value,k.value,x.value,I.value,n.class],style:[v.value,P.value,{height:qt($.value),transform:`translateY(${qt(B.value?0:100,"%")})`},S.value,n.style]},{default:()=>[r.default&&t("div",{class:"v-bottom-navigation__content"},[r.default()])]})),{}}});const m8=mt({divider:[Number,String],...Xt()},"VBreadcrumbsDivider"),lg=Bt()({name:"VBreadcrumbsDivider",props:m8(),setup(n,l){let{slots:r}=l;return Dt(()=>{var h;return t("li",{class:["v-breadcrumbs-divider",n.class],style:n.style},[((h=r==null?void 0:r.default)==null?void 0:h.call(r))??n.divider])}),{}}}),k8=mt({active:Boolean,activeClass:String,activeColor:String,color:String,disabled:Boolean,title:String,...Xt(),...$s(),...re({tag:"li"})},"VBreadcrumbsItem"),rg=Bt()({name:"VBreadcrumbsItem",props:k8(),setup(n,l){let{slots:r,attrs:h}=l;const c=Ss(n,h),g=q(()=>{var I;return n.active||((I=c.isActive)==null?void 0:I.value)}),v=q(()=>g.value?n.activeColor:n.color),{textColorClasses:k,textColorStyles:x}=an(v);return Dt(()=>t(n.tag,{class:["v-breadcrumbs-item",{"v-breadcrumbs-item--active":g.value,"v-breadcrumbs-item--disabled":n.disabled,[`${n.activeClass}`]:g.value&&n.activeClass},k.value,n.class],style:[x.value,n.style],"aria-current":g.value?"page":void 0},{default:()=>{var I,S;return[c.isLink.value?t("a",{class:"v-breadcrumbs-item--link",href:c.href.value,"aria-current":g.value?"page":void 0,onClick:c.navigate},[((S=r.default)==null?void 0:S.call(r))??n.title]):((I=r.default)==null?void 0:I.call(r))??n.title]}})),{}}}),b8=mt({activeClass:String,activeColor:String,bgColor:String,color:String,disabled:Boolean,divider:{type:String,default:"/"},icon:ee,items:{type:Array,default:()=>[]},...Xt(),...We(),...Ce(),...re({tag:"ul"})},"VBreadcrumbs"),M8=Bt()({name:"VBreadcrumbs",props:b8(),setup(n,l){let{slots:r}=l;const{backgroundColorClasses:h,backgroundColorStyles:c}=Pe(Ht(n,"bgColor")),{densityClasses:g}=dn(n),{roundedClasses:v}=Ne(n);Te({VBreadcrumbsDivider:{divider:Ht(n,"divider")},VBreadcrumbsItem:{activeClass:Ht(n,"activeClass"),activeColor:Ht(n,"activeColor"),color:Ht(n,"color"),disabled:Ht(n,"disabled")}});const k=q(()=>n.items.map(x=>typeof x=="string"?{item:{title:x},raw:x}:{item:x,raw:x}));return Dt(()=>{const x=!!(r.prepend||n.icon);return t(n.tag,{class:["v-breadcrumbs",h.value,g.value,v.value,n.class],style:[c.value,n.style]},{default:()=>{var I;return[x&&t("li",{key:"prepend",class:"v-breadcrumbs__prepend"},[r.prepend?t(ke,{key:"prepend-defaults",disabled:!n.icon,defaults:{VIcon:{icon:n.icon,start:!0}}},r.prepend):t(xe,{key:"prepend-icon",start:!0,icon:n.icon},null)]),k.value.map((S,$,B)=>{let{item:P,raw:D}=S;return t(Kt,null,[t(rg,o({key:P.title,disabled:$>=B.length-1},P),{default:r.title?()=>{var F;return(F=r.title)==null?void 0:F.call(r,{item:D,index:$})}:void 0}),${var F;return(F=r.divider)==null?void 0:F.call(r,{item:D,index:$})}:void 0})])}),(I=r.default)==null?void 0:I.call(r)]}})}),{}}});const og=Bt()({name:"VCardActions",props:Xt(),setup(n,l){let{slots:r}=l;return Te({VBtn:{variant:"text"}}),Dt(()=>{var h;return t("div",{class:["v-card-actions",n.class],style:n.style},[(h=r.default)==null?void 0:h.call(r)])}),{}}}),sg=Qn("v-card-subtitle"),ag=Qn("v-card-title"),x8=mt({appendAvatar:String,appendIcon:ee,prependAvatar:String,prependIcon:ee,subtitle:String,title:String,...Xt(),...We()},"VCardItem"),ig=Bt()({name:"VCardItem",props:x8(),setup(n,l){let{slots:r}=l;return Dt(()=>{var I;const h=!!(n.prependAvatar||n.prependIcon),c=!!(h||r.prepend),g=!!(n.appendAvatar||n.appendIcon),v=!!(g||r.append),k=!!(n.title||r.title),x=!!(n.subtitle||r.subtitle);return t("div",{class:["v-card-item",n.class],style:n.style},[c&&t("div",{key:"prepend",class:"v-card-item__prepend"},[r.prepend?t(ke,{key:"prepend-defaults",disabled:!h,defaults:{VAvatar:{density:n.density,icon:n.prependIcon,image:n.prependAvatar}}},r.prepend):h&&t(Kl,{key:"prepend-avatar",density:n.density,icon:n.prependIcon,image:n.prependAvatar},null)]),t("div",{class:"v-card-item__content"},[k&&t(ag,{key:"title"},{default:()=>{var S;return[((S=r.title)==null?void 0:S.call(r))??n.title]}}),x&&t(sg,{key:"subtitle"},{default:()=>{var S;return[((S=r.subtitle)==null?void 0:S.call(r))??n.subtitle]}}),(I=r.default)==null?void 0:I.call(r)]),v&&t("div",{key:"append",class:"v-card-item__append"},[r.append?t(ke,{key:"append-defaults",disabled:!g,defaults:{VAvatar:{density:n.density,icon:n.appendIcon,image:n.appendAvatar}}},r.append):g&&t(Kl,{key:"append-avatar",density:n.density,icon:n.appendIcon,image:n.appendAvatar},null)])])}),{}}}),hg=Qn("v-card-text"),z8=mt({appendAvatar:String,appendIcon:ee,disabled:Boolean,flat:Boolean,hover:Boolean,image:String,link:{type:Boolean,default:void 0},prependAvatar:String,prependIcon:ee,ripple:{type:[Boolean,Object],default:!0},subtitle:String,text:String,title:String,...An(),...Xt(),...We(),...Tn(),..._e(),...b2(),...Ql(),...bo(),...Ce(),...$s(),...re(),...ue(),..._n({variant:"elevated"})},"VCard"),I8=Bt()({name:"VCard",directives:{Ripple:tr},props:z8(),setup(n,l){let{attrs:r,slots:h}=l;const{themeClasses:c}=ve(n),{borderClasses:g}=Vn(n),{colorClasses:v,colorStyles:k,variantClasses:x}=Nr(n),{densityClasses:I}=dn(n),{dimensionStyles:S}=En(n),{elevationClasses:$}=Je(n),{loaderClasses:B}=ai(n),{locationStyles:P}=Jl(n),{positionClasses:D}=Mo(n),{roundedClasses:F}=Ne(n),X=Ss(n,r),R=q(()=>n.link!==!1&&X.isLink.value),H=q(()=>!n.disabled&&n.link!==!1&&(n.link||X.isClickable.value));return Dt(()=>{const U=R.value?"a":n.tag,W=!!(h.title||n.title),_=!!(h.subtitle||n.subtitle),tt=W||_,nt=!!(h.append||n.appendAvatar||n.appendIcon),Y=!!(h.prepend||n.prependAvatar||n.prependIcon),G=!!(h.image||n.image),et=tt||Y||nt,st=!!(h.text||n.text);return $e(t(U,{class:["v-card",{"v-card--disabled":n.disabled,"v-card--flat":n.flat,"v-card--hover":n.hover&&!(n.disabled||n.flat),"v-card--link":H.value},c.value,g.value,v.value,I.value,$.value,B.value,D.value,F.value,x.value,n.class],style:[k.value,S.value,P.value,n.style],href:X.href.value,onClick:H.value&&X.navigate,tabindex:n.disabled?-1:void 0},{default:()=>{var rt;return[G&&t("div",{key:"image",class:"v-card__image"},[h.image?t(ke,{key:"image-defaults",disabled:!n.image,defaults:{VImg:{cover:!0,src:n.image}}},h.image):t(xr,{key:"image-img",cover:!0,src:n.image},null)]),t(M2,{name:"v-card",active:!!n.loading,color:typeof n.loading=="boolean"?void 0:n.loading},{default:h.loader}),et&&t(ig,{key:"item",prependAvatar:n.prependAvatar,prependIcon:n.prependIcon,title:n.title,subtitle:n.subtitle,appendAvatar:n.appendAvatar,appendIcon:n.appendIcon},{default:h.item,prepend:h.prepend,title:h.title,subtitle:h.subtitle,append:h.append}),st&&t(hg,{key:"text"},{default:()=>{var ht;return[((ht=h.text)==null?void 0:ht.call(h))??n.text]}}),(rt=h.default)==null?void 0:rt.call(h),h.actions&&t(og,null,{default:h.actions}),Hr(H.value,"v-card")]}}),[[Mn("ripple"),H.value&&n.ripple]])}),{}}});const y8=n=>{const{touchstartX:l,touchendX:r,touchstartY:h,touchendY:c}=n,g=.5,v=16;n.offsetX=r-l,n.offsetY=c-h,Math.abs(n.offsetY)l+v&&n.right(n)),Math.abs(n.offsetX)h+v&&n.down(n))};function C8(n,l){var h;const r=n.changedTouches[0];l.touchstartX=r.clientX,l.touchstartY=r.clientY,(h=l.start)==null||h.call(l,{originalEvent:n,...l})}function S8(n,l){var h;const r=n.changedTouches[0];l.touchendX=r.clientX,l.touchendY=r.clientY,(h=l.end)==null||h.call(l,{originalEvent:n,...l}),y8(l)}function $8(n,l){var h;const r=n.changedTouches[0];l.touchmoveX=r.clientX,l.touchmoveY=r.clientY,(h=l.move)==null||h.call(l,{originalEvent:n,...l})}function A8(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const l={touchstartX:0,touchstartY:0,touchendX:0,touchendY:0,touchmoveX:0,touchmoveY:0,offsetX:0,offsetY:0,left:n.left,right:n.right,up:n.up,down:n.down,start:n.start,move:n.move,end:n.end};return{touchstart:r=>C8(r,l),touchend:r=>S8(r,l),touchmove:r=>$8(r,l)}}function B8(n,l){var k;const r=l.value,h=r!=null&&r.parent?n.parentElement:n,c=(r==null?void 0:r.options)??{passive:!0},g=(k=l.instance)==null?void 0:k.$.uid;if(!h||!g)return;const v=A8(l.value);h._touchHandlers=h._touchHandlers??Object.create(null),h._touchHandlers[g]=v,Sp(v).forEach(x=>{h.addEventListener(x,v[x],c)})}function H8(n,l){var g,v;const r=(g=l.value)!=null&&g.parent?n.parentElement:n,h=(v=l.instance)==null?void 0:v.$.uid;if(!(r!=null&&r._touchHandlers)||!h)return;const c=r._touchHandlers[h];Sp(c).forEach(k=>{r.removeEventListener(k,c[k])}),delete r._touchHandlers[h]}const B2={mounted:B8,unmounted:H8},N8=B2,dg=Symbol.for("vuetify:v-window"),cg=Symbol.for("vuetify:v-window-group"),ug=mt({continuous:Boolean,nextIcon:{type:[Boolean,String,Function,Object],default:"$next"},prevIcon:{type:[Boolean,String,Function,Object],default:"$prev"},reverse:Boolean,showArrows:{type:[Boolean,String],validator:n=>typeof n=="boolean"||n==="hover"},touch:{type:[Object,Boolean],default:void 0},direction:{type:String,default:"horizontal"},modelValue:null,disabled:Boolean,selectedClass:{type:String,default:"v-window-item--active"},mandatory:{type:[Boolean,String],default:"force"},...Xt(),...re(),...ue()},"VWindow"),J0=Bt()({name:"VWindow",directives:{Touch:B2},props:ug(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{isRtl:c}=Ue(),{t:g}=Rn(),v=jr(n,cg),k=Lt(),x=q(()=>c.value?!n.reverse:n.reverse),I=Wt(!1),S=q(()=>{const W=n.direction==="vertical"?"y":"x",tt=(x.value?!I.value:I.value)?"-reverse":"";return`v-window-${W}${tt}-transition`}),$=Wt(0),B=Lt(void 0),P=q(()=>v.items.value.findIndex(W=>v.selected.value.includes(W.id)));_t(P,(W,_)=>{const tt=v.items.value.length,nt=tt-1;tt<=2?I.value=W<_:W===nt&&_===0?I.value=!0:W===0&&_===nt?I.value=!1:I.value=W<_}),Se(dg,{transition:S,isReversed:I,transitionCount:$,transitionHeight:B,rootRef:k});const D=q(()=>n.continuous||P.value!==0),F=q(()=>n.continuous||P.value!==v.items.value.length-1);function X(){D.value&&v.prev()}function R(){F.value&&v.next()}const H=q(()=>{const W=[],_={icon:c.value?n.nextIcon:n.prevIcon,class:`v-window__${x.value?"right":"left"}`,onClick:v.prev,ariaLabel:g("$vuetify.carousel.prev")};W.push(D.value?r.prev?r.prev({props:_}):t(pn,_,null):t("div",null,null));const tt={icon:c.value?n.prevIcon:n.nextIcon,class:`v-window__${x.value?"left":"right"}`,onClick:v.next,ariaLabel:g("$vuetify.carousel.next")};return W.push(F.value?r.next?r.next({props:tt}):t(pn,tt,null):t("div",null,null)),W}),U=q(()=>n.touch===!1?n.touch:{...{left:()=>{x.value?X():R()},right:()=>{x.value?R():X()},start:_=>{let{originalEvent:tt}=_;tt.stopPropagation()}},...n.touch===!0?{}:n.touch});return Dt(()=>$e(t(n.tag,{ref:k,class:["v-window",{"v-window--show-arrows-on-hover":n.showArrows==="hover"},h.value,n.class],style:n.style},{default:()=>{var W,_;return[t("div",{class:"v-window__container",style:{height:B.value}},[(W=r.default)==null?void 0:W.call(r,{group:v}),n.showArrows!==!1&&t("div",{class:"v-window__controls"},[H.value])]),(_=r.additional)==null?void 0:_.call(r,{group:v})]}}),[[Mn("touch"),U.value]])),{group:v}}}),j8=mt({color:String,cycle:Boolean,delimiterIcon:{type:ee,default:"$delimiter"},height:{type:[Number,String],default:500},hideDelimiters:Boolean,hideDelimiterBackground:Boolean,interval:{type:[Number,String],default:6e3,validator:n=>Number(n)>0},progress:[Boolean,String],verticalDelimiters:[Boolean,String],...ug({continuous:!0,mandatory:"force",showArrows:!0})},"VCarousel"),P8=Bt()({name:"VCarousel",props:j8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{t:c}=Rn(),g=Lt();let v=-1;_t(h,x),_t(()=>n.interval,x),_t(()=>n.cycle,I=>{I?x():window.clearTimeout(v)}),Ve(k);function k(){!n.cycle||!g.value||(v=window.setTimeout(g.value.group.next,+n.interval>0?+n.interval:6e3))}function x(){window.clearTimeout(v),window.requestAnimationFrame(k)}return Dt(()=>{const[I]=J0.filterProps(n);return t(J0,o({ref:g},I,{modelValue:h.value,"onUpdate:modelValue":S=>h.value=S,class:["v-carousel",{"v-carousel--hide-delimiter-background":n.hideDelimiterBackground,"v-carousel--vertical-delimiters":n.verticalDelimiters},n.class],style:[{height:qt(n.height)},n.style]}),{default:r.default,additional:S=>{let{group:$}=S;return t(Kt,null,[!n.hideDelimiters&&t("div",{class:"v-carousel__controls",style:{left:n.verticalDelimiters==="left"&&n.verticalDelimiters?0:"auto",right:n.verticalDelimiters==="right"?0:"auto"}},[$.items.value.length>0&&t(ke,{defaults:{VBtn:{color:n.color,icon:n.delimiterIcon,size:"x-small",variant:"text"}},scoped:!0},{default:()=>[$.items.value.map((B,P)=>{const D={id:`carousel-item-${B.id}`,"aria-label":c("$vuetify.carousel.ariaLabel.delimiter",P+1,$.items.value.length),class:[$.isSelected(B.id)&&"v-btn--active"],onClick:()=>$.select(B.id,!0)};return r.item?r.item({props:D,item:B}):t(pn,o(B,D),null)})]})]),n.progress&&t(k2,{class:"v-carousel__progress",color:typeof n.progress=="string"?n.progress:void 0,modelValue:($.getItemIndex(h.value)+1)/$.items.value.length*100},null)])},prev:r.prev,next:r.next})}),{}}}),pg=mt({reverseTransition:{type:[Boolean,String],default:void 0},transition:{type:[Boolean,String],default:void 0},...Xt(),...fo(),...ui()},"VWindowItem"),th=Bt()({name:"VWindowItem",directives:{Touch:N8},props:pg(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const h=de(dg),c=mo(n,cg),{isBooted:g}=Br();if(!h||!c)throw new Error("[Vuetify] VWindowItem must be used inside VWindow");const v=Wt(!1),k=q(()=>g.value&&(h.isReversed.value?n.reverseTransition!==!1:n.transition!==!1));function x(){!v.value||!h||(v.value=!1,h.transitionCount.value>0&&(h.transitionCount.value-=1,h.transitionCount.value===0&&(h.transitionHeight.value=void 0)))}function I(){var D;v.value||!h||(v.value=!0,h.transitionCount.value===0&&(h.transitionHeight.value=qt((D=h.rootRef.value)==null?void 0:D.clientHeight)),h.transitionCount.value+=1)}function S(){x()}function $(D){v.value&&we(()=>{!k.value||!v.value||!h||(h.transitionHeight.value=qt(D.clientHeight))})}const B=q(()=>{const D=h.isReversed.value?n.reverseTransition:n.transition;return k.value?{name:typeof D!="string"?h.transition.value:D,onBeforeEnter:I,onAfterEnter:x,onEnterCancelled:S,onBeforeLeave:I,onAfterLeave:x,onLeaveCancelled:S,onEnter:$}:!1}),{hasContent:P}=C2(n,c.isSelected);return Dt(()=>t(Un,{transition:B.value,disabled:!g.value},{default:()=>{var D;return[$e(t("div",{class:["v-window-item",c.selectedClass.value,n.class],style:n.style},[P.value&&((D=r.default)==null?void 0:D.call(r))]),[[Dn,c.isSelected.value]])]}})),{groupItem:c}}}),L8=mt({...i4(),...pg()},"VCarouselItem"),D8=Bt()({name:"VCarouselItem",inheritAttrs:!1,props:L8(),setup(n,l){let{slots:r,attrs:h}=l;Dt(()=>{const[c]=xr.filterProps(n),[g]=th.filterProps(n);return t(th,o({class:"v-carousel-item"},g),{default:()=>[t(xr,o(h,c),r)]})})}});const O8=Qn("v-code");const F8=mt({color:{type:Object},disabled:Boolean,dotSize:{type:[Number,String],default:10},height:{type:[Number,String],default:150},width:{type:[Number,String],default:300},...Xt()},"VColorPickerCanvas"),R8=Fn({name:"VColorPickerCanvas",props:F8(),emits:{"update:color":n=>!0,"update:position":n=>!0},setup(n,l){let{emit:r}=l;const h=Wt(!1),c=Wt(!1),g=Lt({x:0,y:0}),v=q(()=>{const{x:R,y:H}=g.value,U=parseInt(n.dotSize,10)/2;return{width:qt(n.dotSize),height:qt(n.dotSize),transform:`translate(${qt(R-U)}, ${qt(H-U)})`}}),k=Lt(),x=Wt(parseFloat(n.width)),I=Wt(parseFloat(n.height)),{resizeRef:S}=sl(R=>{var W;if(!((W=S.value)!=null&&W.offsetParent))return;const{width:H,height:U}=R[0].contentRect;x.value=H,I.value=U});function $(R,H,U){const{left:W,top:_,width:tt,height:nt}=U;g.value={x:rn(R-W,0,tt),y:rn(H-_,0,nt)}}function B(R){n.disabled||!k.value||$(R.clientX,R.clientY,k.value.getBoundingClientRect())}function P(R){R.preventDefault(),!n.disabled&&(h.value=!0,window.addEventListener("mousemove",D),window.addEventListener("mouseup",F),window.addEventListener("touchmove",D),window.addEventListener("touchend",F))}function D(R){if(n.disabled||!k.value)return;h.value=!0;const H=Pk(R);$(H.clientX,H.clientY,k.value.getBoundingClientRect())}function F(){window.removeEventListener("mousemove",D),window.removeEventListener("mouseup",F),window.removeEventListener("touchmove",D),window.removeEventListener("touchend",F)}_t(g,()=>{var U,W;if(c.value){c.value=!1;return}if(!k.value)return;const{x:R,y:H}=g.value;r("update:color",{h:((U=n.color)==null?void 0:U.h)??0,s:rn(R,0,x.value)/x.value,v:1-rn(H,0,I.value)/I.value,a:((W=n.color)==null?void 0:W.a)??1})});function X(){var _;if(!k.value)return;const R=k.value,H=R.getContext("2d");if(!H)return;const U=H.createLinearGradient(0,0,R.width,0);U.addColorStop(0,"hsla(0, 0%, 100%, 1)"),U.addColorStop(1,`hsla(${((_=n.color)==null?void 0:_.h)??0}, 100%, 50%, 1)`),H.fillStyle=U,H.fillRect(0,0,R.width,R.height);const W=H.createLinearGradient(0,0,0,R.height);W.addColorStop(0,"hsla(0, 0%, 100%, 0)"),W.addColorStop(1,"hsla(0, 0%, 0%, 1)"),H.fillStyle=W,H.fillRect(0,0,R.width,R.height)}return _t(()=>{var R;return(R=n.color)==null?void 0:R.h},X,{immediate:!0}),_t(()=>[x.value,I.value],(R,H)=>{X(),g.value={x:g.value.x*R[0]/H[0],y:g.value.y*R[1]/H[1]}},{flush:"post"}),_t(()=>n.color,()=>{if(h.value){h.value=!1;return}c.value=!0,g.value=n.color?{x:n.color.s*x.value,y:(1-n.color.v)*I.value}:{x:0,y:0}},{deep:!0,immediate:!0}),Ve(()=>X()),Dt(()=>t("div",{ref:S,class:["v-color-picker-canvas",n.class],style:n.style,onClick:B,onMousedown:P,onTouchstart:P},[t("canvas",{ref:k,width:x.value,height:I.value},null),n.color&&t("div",{class:["v-color-picker-canvas__dot",{"v-color-picker-canvas__dot--disabled":n.disabled}],style:v.value},null)])),{}}});function T8(n,l){if(l){const{a:r,...h}=n;return h}return n}function E8(n,l){if(l==null||typeof l=="string"){const r=Vp(n);return n.a===1?r.slice(0,7):r}if(typeof l=="object"){let r;return cr(l,["r","g","b"])?r=bl(n):cr(l,["h","s","l"])?r=Op(n):cr(l,["h","s","v"])&&(r=n),T8(r,!cr(l,["a"])&&n.a===1)}return n}const Yo={h:0,s:0,v:1,a:1},eh={inputProps:{type:"number",min:0},inputs:[{label:"R",max:255,step:1,getValue:n=>Math.round(n.r),getColor:(n,l)=>({...n,r:Number(l)})},{label:"G",max:255,step:1,getValue:n=>Math.round(n.g),getColor:(n,l)=>({...n,g:Number(l)})},{label:"B",max:255,step:1,getValue:n=>Math.round(n.b),getColor:(n,l)=>({...n,b:Number(l)})},{label:"A",max:1,step:.01,getValue:n=>{let{a:l}=n;return l!=null?Math.round(l*100)/100:1},getColor:(n,l)=>({...n,a:Number(l)})}],to:bl,from:ei};var rc;const V8={...eh,inputs:(rc=eh.inputs)==null?void 0:rc.slice(0,3)},nh={inputProps:{type:"number",min:0},inputs:[{label:"H",max:360,step:1,getValue:n=>Math.round(n.h),getColor:(n,l)=>({...n,h:Number(l)})},{label:"S",max:1,step:.01,getValue:n=>Math.round(n.s*100)/100,getColor:(n,l)=>({...n,s:Number(l)})},{label:"L",max:1,step:.01,getValue:n=>Math.round(n.l*100)/100,getColor:(n,l)=>({...n,l:Number(l)})},{label:"A",max:1,step:.01,getValue:n=>{let{a:l}=n;return l!=null?Math.round(l*100)/100:1},getColor:(n,l)=>({...n,a:Number(l)})}],to:Op,from:o2},_8={...nh,inputs:nh.inputs.slice(0,3)},gg={inputProps:{type:"text"},inputs:[{label:"HEXA",getValue:n=>n,getColor:(n,l)=>l}],to:Vp,from:Jk},W8={...gg,inputs:[{label:"HEX",getValue:n=>n.slice(0,7),getColor:(n,l)=>l}]},fr={rgb:V8,rgba:eh,hsl:_8,hsla:nh,hex:W8,hexa:gg},X8=n=>{let{label:l,...r}=n;return t("div",{class:"v-color-picker-edit__input"},[t("input",r,null),t("span",null,[l])])},q8=mt({color:Object,disabled:Boolean,mode:{type:String,default:"rgba",validator:n=>Object.keys(fr).includes(n)},modes:{type:Array,default:()=>Object.keys(fr),validator:n=>Array.isArray(n)&&n.every(l=>Object.keys(fr).includes(l))},...Xt()},"VColorPickerEdit"),Y8=Fn({name:"VColorPickerEdit",props:q8(),emits:{"update:color":n=>!0,"update:mode":n=>!0},setup(n,l){let{emit:r}=l;const h=q(()=>n.modes.map(g=>({...fr[g],name:g}))),c=q(()=>{var k;const g=h.value.find(x=>x.name===n.mode);if(!g)return[];const v=n.color?g.to(n.color):null;return(k=g.inputs)==null?void 0:k.map(x=>{let{getValue:I,getColor:S,...$}=x;return{...g.inputProps,...$,disabled:n.disabled,value:v&&I(v),onChange:B=>{const P=B.target;P&&r("update:color",g.from(S(v??Yo,P.value)))}}})});return Dt(()=>{var g;return t("div",{class:["v-color-picker-edit",n.class],style:n.style},[(g=c.value)==null?void 0:g.map(v=>t(X8,v,null)),h.value.length>1&&t(pn,{icon:"$unfold",size:"x-small",variant:"plain",onClick:()=>{const v=h.value.findIndex(k=>k.name===n.mode);r("update:mode",h.value[(v+1)%h.value.length].name)}},null)])}),{}}});const H2=Symbol.for("vuetify:v-slider");function lh(n,l,r){const h=r==="vertical",c=l.getBoundingClientRect(),g="touches"in n?n.touches[0]:n;return h?g.clientY-(c.top+c.height/2):g.clientX-(c.left+c.width/2)}function U8(n,l){return"touches"in n&&n.touches.length?n.touches[0][l]:"changedTouches"in n&&n.changedTouches.length?n.changedTouches[0][l]:n[l]}const wg=mt({disabled:{type:Boolean,default:null},error:Boolean,readonly:{type:Boolean,default:null},max:{type:[Number,String],default:100},min:{type:[Number,String],default:0},step:{type:[Number,String],default:0},thumbColor:String,thumbLabel:{type:[Boolean,String],default:void 0,validator:n=>typeof n=="boolean"||n==="always"},thumbSize:{type:[Number,String],default:20},showTicks:{type:[Boolean,String],default:!1,validator:n=>typeof n=="boolean"||n==="always"},ticks:{type:[Array,Object]},tickSize:{type:[Number,String],default:2},color:String,trackColor:String,trackFillColor:String,trackSize:{type:[Number,String],default:4},direction:{type:String,default:"horizontal",validator:n=>["vertical","horizontal"].includes(n)},reverse:Boolean,...Ce(),..._e({elevation:2})},"Slider"),vg=n=>{const l=q(()=>parseFloat(n.min)),r=q(()=>parseFloat(n.max)),h=q(()=>+n.step>0?parseFloat(n.step):0),c=q(()=>Math.max(od(h.value),od(l.value)));function g(v){if(v=parseFloat(v),h.value<=0)return v;const k=rn(v,l.value,r.value),x=l.value%h.value,I=Math.round((k-x)/h.value)*h.value+x;return parseFloat(Math.min(I,r.value).toFixed(c.value))}return{min:l,max:r,step:h,decimals:c,roundValue:g}},fg=n=>{let{props:l,steps:r,onSliderStart:h,onSliderMove:c,onSliderEnd:g,getActiveThumb:v}=n;const{isRtl:k}=Ue(),x=Ht(l,"reverse"),I=q(()=>{let ut=k.value?"rtl":"ltr";return l.reverse&&(ut=ut==="rtl"?"ltr":"rtl"),ut}),{min:S,max:$,step:B,decimals:P,roundValue:D}=r,F=q(()=>parseInt(l.thumbSize,10)),X=q(()=>parseInt(l.tickSize,10)),R=q(()=>parseInt(l.trackSize,10)),H=q(()=>($.value-S.value)/B.value),U=Ht(l,"disabled"),W=q(()=>l.direction==="vertical"),_=q(()=>l.error||l.disabled?void 0:l.thumbColor??l.color),tt=q(()=>l.error||l.disabled?void 0:l.trackColor??l.color),nt=q(()=>l.error||l.disabled?void 0:l.trackFillColor??l.color),Y=Wt(!1),G=Wt(0),et=Lt(),st=Lt();function rt(ut){var ct;const pt=l.direction==="vertical",Nt=pt?"top":"left",jt=pt?"height":"width",bt=pt?"clientY":"clientX",{[Nt]:ft,[jt]:J}=(ct=et.value)==null?void 0:ct.$el.getBoundingClientRect(),lt=U8(ut,bt);let at=Math.min(Math.max((lt-ft-G.value)/J,0),1)||0;return(pt||I.value==="rtl")&&(at=1-at),D(S.value+at*($.value-S.value))}const ht=ut=>{g({value:rt(ut)}),Y.value=!1,G.value=0},dt=ut=>{st.value=v(ut),st.value&&(st.value.focus(),Y.value=!0,st.value.contains(ut.target)?G.value=lh(ut,st.value,l.direction):(G.value=0,c({value:rt(ut)})),h({value:rt(ut)}))},Ct={passive:!0,capture:!0};function xt(ut){c({value:rt(ut)})}function wt(ut){ut.stopPropagation(),ut.preventDefault(),ht(ut),window.removeEventListener("mousemove",xt,Ct),window.removeEventListener("mouseup",wt)}function gt(ut){var pt;ht(ut),window.removeEventListener("touchmove",xt,Ct),(pt=ut.target)==null||pt.removeEventListener("touchend",gt)}function It(ut){var pt;dt(ut),window.addEventListener("touchmove",xt,Ct),(pt=ut.target)==null||pt.addEventListener("touchend",gt,{passive:!1})}function At(ut){ut.preventDefault(),dt(ut),window.addEventListener("mousemove",xt,Ct),window.addEventListener("mouseup",wt,{passive:!1})}const Tt=ut=>{const pt=(ut-S.value)/($.value-S.value)*100;return rn(isNaN(pt)?0:pt,0,100)},Ft=Ht(l,"showTicks"),Qt=q(()=>Ft.value?l.ticks?Array.isArray(l.ticks)?l.ticks.map(ut=>({value:ut,position:Tt(ut),label:ut.toString()})):Object.keys(l.ticks).map(ut=>({value:parseFloat(ut),position:Tt(parseFloat(ut)),label:l.ticks[ut]})):H.value!==1/0?gl(H.value+1).map(ut=>{const pt=S.value+ut*B.value;return{value:pt,position:Tt(pt)}}):[]:[]),Jt=q(()=>Qt.value.some(ut=>{let{label:pt}=ut;return!!pt})),Et={activeThumbRef:st,color:Ht(l,"color"),decimals:P,disabled:U,direction:Ht(l,"direction"),elevation:Ht(l,"elevation"),hasLabels:Jt,horizontalDirection:I,isReversed:x,min:S,max:$,mousePressed:Y,numTicks:H,onSliderMousedown:At,onSliderTouchstart:It,parsedTicks:Qt,parseMouseMove:rt,position:Tt,readonly:Ht(l,"readonly"),rounded:Ht(l,"rounded"),roundValue:D,showTicks:Ft,startOffset:G,step:B,thumbSize:F,thumbColor:_,thumbLabel:Ht(l,"thumbLabel"),ticks:Ht(l,"ticks"),tickSize:X,trackColor:tt,trackContainerRef:et,trackFillColor:nt,trackSize:R,vertical:W};return Se(H2,Et),Et},G8=mt({focused:Boolean,max:{type:Number,required:!0},min:{type:Number,required:!0},modelValue:{type:Number,required:!0},position:{type:Number,required:!0},ripple:{type:[Boolean,Object],default:!0},...Xt()},"VSliderThumb"),rh=Bt()({name:"VSliderThumb",directives:{Ripple:tr},props:G8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r,emit:h}=l;const c=de(H2),{rtlClasses:g}=Ue();if(!c)throw new Error("[Vuetify] v-slider-thumb must be used inside v-slider or v-range-slider");const{thumbColor:v,step:k,vertical:x,disabled:I,thumbSize:S,thumbLabel:$,direction:B,readonly:P,elevation:D,isReversed:F,horizontalDirection:X,mousePressed:R,decimals:H}=c,{textColorClasses:U,textColorStyles:W}=an(v),{pageup:_,pagedown:tt,end:nt,home:Y,left:G,right:et,down:st,up:rt}=j0,ht=[_,tt,nt,Y,G,et,st,rt],dt=q(()=>k.value?[1,2,3]:[1,5,10]);function Ct(wt,gt){if(!ht.includes(wt.key))return;wt.preventDefault();const It=k.value||.1,At=(n.max-n.min)/It;if([G,et,st,rt].includes(wt.key)){const Ft=(X.value==="rtl"?[G,rt]:[et,rt]).includes(wt.key)?1:-1,Qt=wt.shiftKey?2:wt.ctrlKey?1:0;gt=gt+Ft*It*dt.value[Qt]}else if(wt.key===Y)gt=n.min;else if(wt.key===nt)gt=n.max;else{const Tt=wt.key===tt?1:-1;gt=gt-Tt*It*(At>100?At/10:10)}return Math.max(n.min,Math.min(n.max,gt))}function xt(wt){const gt=Ct(wt,n.modelValue);gt!=null&&h("update:modelValue",gt)}return Dt(()=>{const wt=qt(x.value||F.value?100-n.position:n.position,"%"),{elevationClasses:gt}=Je(q(()=>I.value?void 0:D.value));return t("div",{class:["v-slider-thumb",{"v-slider-thumb--focused":n.focused,"v-slider-thumb--pressed":n.focused&&R.value},n.class,g.value],style:[{"--v-slider-thumb-position":wt,"--v-slider-thumb-size":qt(S.value)},n.style],role:"slider",tabindex:I.value?-1:0,"aria-valuemin":n.min,"aria-valuemax":n.max,"aria-valuenow":n.modelValue,"aria-readonly":!!P.value,"aria-orientation":B.value,onKeydown:P.value?void 0:xt},[t("div",{class:["v-slider-thumb__surface",U.value,gt.value],style:{...W.value}},null),$e(t("div",{class:["v-slider-thumb__ripple",U.value],style:W.value},null),[[Mn("ripple"),n.ripple,null,{circle:!0,center:!0}]]),t(u2,{origin:"bottom center"},{default:()=>{var It;return[$e(t("div",{class:"v-slider-thumb__label-container"},[t("div",{class:["v-slider-thumb__label"]},[t("div",null,[((It=r["thumb-label"])==null?void 0:It.call(r,{modelValue:n.modelValue}))??n.modelValue.toFixed(k.value?H.value:1)])])]),[[Dn,$.value&&n.focused||$.value==="always"]])]}})])}),{}}});const Z8=mt({start:{type:Number,required:!0},stop:{type:Number,required:!0},...Xt()},"VSliderTrack"),mg=Bt()({name:"VSliderTrack",props:Z8(),emits:{},setup(n,l){let{slots:r}=l;const h=de(H2);if(!h)throw new Error("[Vuetify] v-slider-track must be inside v-slider or v-range-slider");const{color:c,horizontalDirection:g,parsedTicks:v,rounded:k,showTicks:x,tickSize:I,trackColor:S,trackFillColor:$,trackSize:B,vertical:P,min:D,max:F}=h,{roundedClasses:X}=Ne(k),{backgroundColorClasses:R,backgroundColorStyles:H}=Pe($),{backgroundColorClasses:U,backgroundColorStyles:W}=Pe(S),_=q(()=>`inset-${P.value?"block-end":"inline-start"}`),tt=q(()=>P.value?"height":"width"),nt=q(()=>({[_.value]:"0%",[tt.value]:"100%"})),Y=q(()=>n.stop-n.start),G=q(()=>({[_.value]:qt(n.start,"%"),[tt.value]:qt(Y.value,"%")})),et=q(()=>x.value?(P.value?v.value.slice().reverse():v.value).map((rt,ht)=>{var xt;const dt=P.value?"bottom":"margin-inline-start",Ct=rt.value!==D.value&&rt.value!==F.value?qt(rt.position,"%"):void 0;return t("div",{key:rt.value,class:["v-slider-track__tick",{"v-slider-track__tick--filled":rt.position>=n.start&&rt.position<=n.stop,"v-slider-track__tick--first":rt.value===D.value,"v-slider-track__tick--last":rt.value===F.value}],style:{[dt]:Ct}},[(rt.label||r["tick-label"])&&t("div",{class:"v-slider-track__tick-label"},[((xt=r["tick-label"])==null?void 0:xt.call(r,{tick:rt,index:ht}))??rt.label])])}):[]);return Dt(()=>t("div",{class:["v-slider-track",X.value,n.class],style:[{"--v-slider-track-size":qt(B.value),"--v-slider-tick-size":qt(I.value),direction:P.value?void 0:g.value},n.style]},[t("div",{class:["v-slider-track__background",U.value,{"v-slider-track__background--opacity":!!c.value||!$.value}],style:{...nt.value,...W.value}},null),t("div",{class:["v-slider-track__fill",R.value],style:{...G.value,...H.value}},null),x.value&&t("div",{class:["v-slider-track__ticks",{"v-slider-track__ticks--always-show":x.value==="always"}]},[et.value])])),{}}}),K8=mt({...hi(),...wg(),...Al(),modelValue:{type:[Number,String],default:0}},"VSlider"),oh=Bt()({name:"VSlider",props:K8(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,start:n=>!0,end:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const c=Lt(),{rtlClasses:g}=Ue(),v=vg(n),k=ne(n,"modelValue",void 0,tt=>v.roundValue(tt??v.min.value)),{min:x,max:I,mousePressed:S,roundValue:$,onSliderMousedown:B,onSliderTouchstart:P,trackContainerRef:D,position:F,hasLabels:X,readonly:R}=fg({props:n,steps:v,onSliderStart:()=>{h("start",k.value)},onSliderEnd:tt=>{let{value:nt}=tt;const Y=$(nt);k.value=Y,h("end",Y)},onSliderMove:tt=>{let{value:nt}=tt;return k.value=$(nt)},getActiveThumb:()=>{var tt;return(tt=c.value)==null?void 0:tt.$el}}),{isFocused:H,focus:U,blur:W}=er(n),_=q(()=>F(k.value));return Dt(()=>{const[tt,nt]=Ke.filterProps(n),Y=!!(n.label||r.label||r.prepend);return t(Ke,o({class:["v-slider",{"v-slider--has-labels":!!r["tick-label"]||X.value,"v-slider--focused":H.value,"v-slider--pressed":S.value,"v-slider--disabled":n.disabled},g.value,n.class],style:n.style},tt,{focused:H.value}),{...r,prepend:Y?G=>{var et,st;return t(Kt,null,[((et=r.label)==null?void 0:et.call(r,G))??n.label?t(xo,{id:G.id.value,class:"v-slider__label",text:n.label},null):void 0,(st=r.prepend)==null?void 0:st.call(r,G)])}:void 0,default:G=>{let{id:et,messagesId:st}=G;return t("div",{class:"v-slider__container",onMousedown:R.value?void 0:B,onTouchstartPassive:R.value?void 0:P},[t("input",{id:et.value,name:n.name||et.value,disabled:!!n.disabled,readonly:!!n.readonly,tabindex:"-1",value:k.value},null),t(mg,{ref:D,start:0,stop:_.value},{"tick-label":r["tick-label"]}),t(rh,{ref:c,"aria-describedby":st.value,focused:H.value,min:x.value,max:I.value,modelValue:k.value,"onUpdate:modelValue":rt=>k.value=rt,position:_.value,elevation:n.elevation,onFocus:U,onBlur:W},{"thumb-label":r["thumb-label"]})])}})}),{}}}),Q8=mt({color:{type:Object},disabled:Boolean,hideAlpha:Boolean,...Xt()},"VColorPickerPreview"),J8=Fn({name:"VColorPickerPreview",props:Q8(),emits:{"update:color":n=>!0},setup(n,l){let{emit:r}=l;return Dt(()=>{var h,c;return t("div",{class:["v-color-picker-preview",{"v-color-picker-preview--hide-alpha":n.hideAlpha},n.class],style:n.style},[t("div",{class:"v-color-picker-preview__dot"},[t("div",{style:{background:Rp(n.color??Yo)}},null)]),t("div",{class:"v-color-picker-preview__sliders"},[t(oh,{class:"v-color-picker-preview__track v-color-picker-preview__hue",modelValue:(h=n.color)==null?void 0:h.h,"onUpdate:modelValue":g=>r("update:color",{...n.color??Yo,h:g}),step:0,min:0,max:360,disabled:n.disabled,thumbSize:14,trackSize:8,trackFillColor:"white",hideDetails:!0},null),!n.hideAlpha&&t(oh,{class:"v-color-picker-preview__track v-color-picker-preview__alpha",modelValue:((c=n.color)==null?void 0:c.a)??1,"onUpdate:modelValue":g=>r("update:color",{...n.color??Yo,a:g}),step:1/256,min:0,max:1,disabled:n.disabled,thumbSize:14,trackSize:8,trackFillColor:"white",hideDetails:!0},null)])])}),{}}});const t9=Object.freeze({base:"#f44336",lighten5:"#ffebee",lighten4:"#ffcdd2",lighten3:"#ef9a9a",lighten2:"#e57373",lighten1:"#ef5350",darken1:"#e53935",darken2:"#d32f2f",darken3:"#c62828",darken4:"#b71c1c",accent1:"#ff8a80",accent2:"#ff5252",accent3:"#ff1744",accent4:"#d50000"}),e9=Object.freeze({base:"#e91e63",lighten5:"#fce4ec",lighten4:"#f8bbd0",lighten3:"#f48fb1",lighten2:"#f06292",lighten1:"#ec407a",darken1:"#d81b60",darken2:"#c2185b",darken3:"#ad1457",darken4:"#880e4f",accent1:"#ff80ab",accent2:"#ff4081",accent3:"#f50057",accent4:"#c51162"}),n9=Object.freeze({base:"#9c27b0",lighten5:"#f3e5f5",lighten4:"#e1bee7",lighten3:"#ce93d8",lighten2:"#ba68c8",lighten1:"#ab47bc",darken1:"#8e24aa",darken2:"#7b1fa2",darken3:"#6a1b9a",darken4:"#4a148c",accent1:"#ea80fc",accent2:"#e040fb",accent3:"#d500f9",accent4:"#aa00ff"}),l9=Object.freeze({base:"#673ab7",lighten5:"#ede7f6",lighten4:"#d1c4e9",lighten3:"#b39ddb",lighten2:"#9575cd",lighten1:"#7e57c2",darken1:"#5e35b1",darken2:"#512da8",darken3:"#4527a0",darken4:"#311b92",accent1:"#b388ff",accent2:"#7c4dff",accent3:"#651fff",accent4:"#6200ea"}),r9=Object.freeze({base:"#3f51b5",lighten5:"#e8eaf6",lighten4:"#c5cae9",lighten3:"#9fa8da",lighten2:"#7986cb",lighten1:"#5c6bc0",darken1:"#3949ab",darken2:"#303f9f",darken3:"#283593",darken4:"#1a237e",accent1:"#8c9eff",accent2:"#536dfe",accent3:"#3d5afe",accent4:"#304ffe"}),o9=Object.freeze({base:"#2196f3",lighten5:"#e3f2fd",lighten4:"#bbdefb",lighten3:"#90caf9",lighten2:"#64b5f6",lighten1:"#42a5f5",darken1:"#1e88e5",darken2:"#1976d2",darken3:"#1565c0",darken4:"#0d47a1",accent1:"#82b1ff",accent2:"#448aff",accent3:"#2979ff",accent4:"#2962ff"}),s9=Object.freeze({base:"#03a9f4",lighten5:"#e1f5fe",lighten4:"#b3e5fc",lighten3:"#81d4fa",lighten2:"#4fc3f7",lighten1:"#29b6f6",darken1:"#039be5",darken2:"#0288d1",darken3:"#0277bd",darken4:"#01579b",accent1:"#80d8ff",accent2:"#40c4ff",accent3:"#00b0ff",accent4:"#0091ea"}),a9=Object.freeze({base:"#00bcd4",lighten5:"#e0f7fa",lighten4:"#b2ebf2",lighten3:"#80deea",lighten2:"#4dd0e1",lighten1:"#26c6da",darken1:"#00acc1",darken2:"#0097a7",darken3:"#00838f",darken4:"#006064",accent1:"#84ffff",accent2:"#18ffff",accent3:"#00e5ff",accent4:"#00b8d4"}),i9=Object.freeze({base:"#009688",lighten5:"#e0f2f1",lighten4:"#b2dfdb",lighten3:"#80cbc4",lighten2:"#4db6ac",lighten1:"#26a69a",darken1:"#00897b",darken2:"#00796b",darken3:"#00695c",darken4:"#004d40",accent1:"#a7ffeb",accent2:"#64ffda",accent3:"#1de9b6",accent4:"#00bfa5"}),h9=Object.freeze({base:"#4caf50",lighten5:"#e8f5e9",lighten4:"#c8e6c9",lighten3:"#a5d6a7",lighten2:"#81c784",lighten1:"#66bb6a",darken1:"#43a047",darken2:"#388e3c",darken3:"#2e7d32",darken4:"#1b5e20",accent1:"#b9f6ca",accent2:"#69f0ae",accent3:"#00e676",accent4:"#00c853"}),d9=Object.freeze({base:"#8bc34a",lighten5:"#f1f8e9",lighten4:"#dcedc8",lighten3:"#c5e1a5",lighten2:"#aed581",lighten1:"#9ccc65",darken1:"#7cb342",darken2:"#689f38",darken3:"#558b2f",darken4:"#33691e",accent1:"#ccff90",accent2:"#b2ff59",accent3:"#76ff03",accent4:"#64dd17"}),c9=Object.freeze({base:"#cddc39",lighten5:"#f9fbe7",lighten4:"#f0f4c3",lighten3:"#e6ee9c",lighten2:"#dce775",lighten1:"#d4e157",darken1:"#c0ca33",darken2:"#afb42b",darken3:"#9e9d24",darken4:"#827717",accent1:"#f4ff81",accent2:"#eeff41",accent3:"#c6ff00",accent4:"#aeea00"}),u9=Object.freeze({base:"#ffeb3b",lighten5:"#fffde7",lighten4:"#fff9c4",lighten3:"#fff59d",lighten2:"#fff176",lighten1:"#ffee58",darken1:"#fdd835",darken2:"#fbc02d",darken3:"#f9a825",darken4:"#f57f17",accent1:"#ffff8d",accent2:"#ffff00",accent3:"#ffea00",accent4:"#ffd600"}),p9=Object.freeze({base:"#ffc107",lighten5:"#fff8e1",lighten4:"#ffecb3",lighten3:"#ffe082",lighten2:"#ffd54f",lighten1:"#ffca28",darken1:"#ffb300",darken2:"#ffa000",darken3:"#ff8f00",darken4:"#ff6f00",accent1:"#ffe57f",accent2:"#ffd740",accent3:"#ffc400",accent4:"#ffab00"}),g9=Object.freeze({base:"#ff9800",lighten5:"#fff3e0",lighten4:"#ffe0b2",lighten3:"#ffcc80",lighten2:"#ffb74d",lighten1:"#ffa726",darken1:"#fb8c00",darken2:"#f57c00",darken3:"#ef6c00",darken4:"#e65100",accent1:"#ffd180",accent2:"#ffab40",accent3:"#ff9100",accent4:"#ff6d00"}),w9=Object.freeze({base:"#ff5722",lighten5:"#fbe9e7",lighten4:"#ffccbc",lighten3:"#ffab91",lighten2:"#ff8a65",lighten1:"#ff7043",darken1:"#f4511e",darken2:"#e64a19",darken3:"#d84315",darken4:"#bf360c",accent1:"#ff9e80",accent2:"#ff6e40",accent3:"#ff3d00",accent4:"#dd2c00"}),v9=Object.freeze({base:"#795548",lighten5:"#efebe9",lighten4:"#d7ccc8",lighten3:"#bcaaa4",lighten2:"#a1887f",lighten1:"#8d6e63",darken1:"#6d4c41",darken2:"#5d4037",darken3:"#4e342e",darken4:"#3e2723"}),f9=Object.freeze({base:"#607d8b",lighten5:"#eceff1",lighten4:"#cfd8dc",lighten3:"#b0bec5",lighten2:"#90a4ae",lighten1:"#78909c",darken1:"#546e7a",darken2:"#455a64",darken3:"#37474f",darken4:"#263238"}),m9=Object.freeze({base:"#9e9e9e",lighten5:"#fafafa",lighten4:"#f5f5f5",lighten3:"#eeeeee",lighten2:"#e0e0e0",lighten1:"#bdbdbd",darken1:"#757575",darken2:"#616161",darken3:"#424242",darken4:"#212121"}),k9=Object.freeze({black:"#000000",white:"#ffffff",transparent:"#ffffff00"}),b9=Object.freeze({red:t9,pink:e9,purple:n9,deepPurple:l9,indigo:r9,blue:o9,lightBlue:s9,cyan:a9,teal:i9,green:h9,lightGreen:d9,lime:c9,yellow:u9,amber:p9,orange:g9,deepOrange:w9,brown:v9,blueGrey:f9,grey:m9,shades:k9}),M9=mt({swatches:{type:Array,default:()=>x9(b9)},disabled:Boolean,color:Object,maxHeight:[Number,String],...Xt()},"VColorPickerSwatches");function x9(n){return Object.keys(n).map(l=>{const r=n[l];return r.base?[r.base,r.darken4,r.darken3,r.darken2,r.darken1,r.lighten1,r.lighten2,r.lighten3,r.lighten4,r.lighten5]:[r.black,r.white,r.transparent]})}const z9=Fn({name:"VColorPickerSwatches",props:M9(),emits:{"update:color":n=>!0},setup(n,l){let{emit:r}=l;return Dt(()=>t("div",{class:["v-color-picker-swatches",n.class],style:[{maxHeight:qt(n.maxHeight)},n.style]},[t("div",null,[n.swatches.map(h=>t("div",{class:"v-color-picker-swatches__swatch"},[h.map(c=>{const g=Yn(c),v=ei(g),k=Fp(g);return t("div",{class:"v-color-picker-swatches__color",onClick:()=>v&&r("update:color",v)},[t("div",{style:{background:k}},[n.color&&Sr(n.color,v)?t(xe,{size:"x-small",icon:"$success",color:l6(c,"#FFFFFF")>2?"white":"black"},null):void 0])])})]))])])),{}}});const kg=mt({color:String,...An(),...Xt(),...Tn(),..._e(),...Ql(),...bo(),...Ce(),...re(),...ue()},"VSheet"),sh=Bt()({name:"VSheet",props:kg(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{backgroundColorClasses:c,backgroundColorStyles:g}=Pe(Ht(n,"color")),{borderClasses:v}=Vn(n),{dimensionStyles:k}=En(n),{elevationClasses:x}=Je(n),{locationStyles:I}=Jl(n),{positionClasses:S}=Mo(n),{roundedClasses:$}=Ne(n);return Dt(()=>t(n.tag,{class:["v-sheet",h.value,c.value,v.value,x.value,S.value,$.value,n.class],style:[g.value,k.value,I.value,n.style]},r)),{}}}),I9=mt({canvasHeight:{type:[String,Number],default:150},disabled:Boolean,dotSize:{type:[Number,String],default:10},hideCanvas:Boolean,hideSliders:Boolean,hideInputs:Boolean,mode:{type:String,default:"rgba",validator:n=>Object.keys(fr).includes(n)},modes:{type:Array,default:()=>Object.keys(fr),validator:n=>Array.isArray(n)&&n.every(l=>Object.keys(fr).includes(l))},showSwatches:Boolean,swatches:Array,swatchesMaxHeight:{type:[Number,String],default:150},modelValue:{type:[Object,String]},...On(kg({width:300}),["height","location","minHeight","maxHeight","minWidth","maxWidth"])},"VColorPicker"),y9=Fn({name:"VColorPicker",props:I9(),emits:{"update:modelValue":n=>!0,"update:mode":n=>!0},setup(n){const l=ne(n,"mode"),r=Lt(null),h=ne(n,"modelValue",void 0,v=>{if(v==null||v==="")return null;let k;try{k=ei(Yn(v))}catch{return null}return r.value&&(k={...k,h:r.value.h},r.value=null),k},v=>v?E8(v,n.modelValue):null),{rtlClasses:c}=Ue(),g=v=>{h.value=v,r.value=v};return Ve(()=>{n.modes.includes(l.value)||(l.value=n.modes[0])}),Te({VSlider:{color:void 0,trackColor:void 0,trackFillColor:void 0}}),Dt(()=>{const[v]=sh.filterProps(n);return t(sh,o({rounded:n.rounded,elevation:n.elevation,theme:n.theme,class:["v-color-picker",c.value,n.class],style:[{"--v-color-picker-color-hsv":Rp({...h.value??Yo,a:1})},n.style]},v,{maxWidth:n.width}),{default:()=>[!n.hideCanvas&&t(R8,{key:"canvas",color:h.value,"onUpdate:color":g,disabled:n.disabled,dotSize:n.dotSize,width:n.width,height:n.canvasHeight},null),(!n.hideSliders||!n.hideInputs)&&t("div",{key:"controls",class:"v-color-picker__controls"},[!n.hideSliders&&t(J8,{key:"preview",color:h.value,"onUpdate:color":g,hideAlpha:!l.value.endsWith("a"),disabled:n.disabled},null),!n.hideInputs&&t(Y8,{key:"edit",modes:n.modes,mode:l.value,"onUpdate:mode":k=>l.value=k,color:h.value,"onUpdate:color":g,disabled:n.disabled},null)]),n.showSwatches&&t(z9,{key:"swatches",color:h.value,"onUpdate:color":g,maxHeight:n.swatchesMaxHeight,swatches:n.swatches,disabled:n.disabled},null)]})}),{}}});function C9(n,l,r){if(l==null)return n;if(Array.isArray(l))throw new Error("Multiple matches is not implemented");return typeof l=="number"&&~l?t(Kt,null,[t("span",{class:"v-combobox__unmask"},[n.substr(0,l)]),t("span",{class:"v-combobox__mask"},[n.substr(l,r)]),t("span",{class:"v-combobox__unmask"},[n.substr(l+r)])]):n}const S9=mt({autoSelectFirst:{type:[Boolean,String]},delimiters:Array,...J4({filterKeys:["title"]}),...A2({hideNoData:!0,returnObject:!0}),...On(vi({modelValue:null,role:"combobox"}),["validationValue","dirty","appendInnerIcon"]),...Sl({transition:!1})},"VCombobox"),$9=Bt()({name:"VCombobox",props:S9(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,"update:search":n=>!0,"update:menu":n=>!0},setup(n,l){var bt;let{emit:r,slots:h}=l;const{t:c}=Rn(),g=Lt(),v=Wt(!1),k=Wt(!0),x=Wt(!1),I=Lt(),S=Lt(),$=ne(n,"menu"),B=q({get:()=>$.value,set:ft=>{var J;$.value&&!ft&&((J=I.value)!=null&&J.ΨopenChildren)||($.value=ft)}}),P=Wt(-1);let D=!1;const F=q(()=>{var ft;return(ft=g.value)==null?void 0:ft.color}),X=q(()=>B.value?n.closeText:n.openText),{items:R,transformIn:H,transformOut:U}=y2(n),{textColorClasses:W,textColorStyles:_}=an(F),tt=ne(n,"modelValue",[],ft=>H(Pn(ft)),ft=>{const J=U(ft);return n.multiple?J:J[0]??null}),nt=di(),Y=Wt(n.multiple?"":((bt=tt.value[0])==null?void 0:bt.title)??""),G=q({get:()=>Y.value,set:ft=>{var J;if(Y.value=ft,n.multiple||(tt.value=[qr(n,ft)]),ft&&n.multiple&&((J=n.delimiters)!=null&&J.length)){const lt=ft.split(new RegExp(`(?:${n.delimiters.join("|")})+`));lt.length>1&&(lt.forEach(at=>{at=at.trim(),at&&ut(qr(n,at))}),Y.value="")}ft||(P.value=-1),k.value=!ft}});_t(Y,ft=>{D?we(()=>D=!1):v.value&&!B.value&&(B.value=!0),r("update:search",ft)}),_t(tt,ft=>{var J;n.multiple||(Y.value=((J=ft[0])==null?void 0:J.title)??"")});const{filteredItems:et,getMatches:st}=tg(n,R,()=>k.value?"":G.value),rt=q(()=>tt.value.map(ft=>R.value.find(J=>{const lt=ln(J.raw,n.itemValue),at=ln(ft.raw,n.itemValue);return lt===void 0||at===void 0?!1:n.returnObject?n.valueComparator(lt,at):n.valueComparator(J.value,ft.value)})||ft)),ht=q(()=>n.hideSelected?et.value.filter(ft=>!rt.value.some(J=>J.value===ft.value)):et.value),dt=q(()=>rt.value.map(ft=>ft.props.value)),Ct=q(()=>rt.value[P.value]),xt=q(()=>{var J;return(n.autoSelectFirst===!0||n.autoSelectFirst==="exact"&&G.value===((J=ht.value[0])==null?void 0:J.title))&&ht.value.length>0&&!k.value&&!x.value}),wt=q(()=>n.hideNoData&&!R.value.length||n.readonly||(nt==null?void 0:nt.isReadonly.value)),gt=Lt(),{onListScroll:It,onListKeydown:At}=$2(gt,g);function Tt(ft){D=!0,n.openOnClear&&(B.value=!0)}function Ft(){wt.value||(B.value=!0)}function Qt(ft){wt.value||(v.value&&(ft.preventDefault(),ft.stopPropagation()),B.value=!B.value)}function Jt(ft){var at;if(n.readonly||nt!=null&&nt.isReadonly.value)return;const J=g.value.selectionStart,lt=dt.value.length;if((P.value>-1||["Enter","ArrowDown","ArrowUp"].includes(ft.key))&&ft.preventDefault(),["Enter","ArrowDown"].includes(ft.key)&&(B.value=!0),["Escape"].includes(ft.key)&&(B.value=!1),["Enter","Escape","Tab"].includes(ft.key)&&(xt.value&&["Enter","Tab"].includes(ft.key)&&ut(et.value[0]),k.value=!0),ft.key==="ArrowDown"&&xt.value&&((at=gt.value)==null||at.focus("next")),!!n.multiple){if(["Backspace","Delete"].includes(ft.key)){if(P.value<0){ft.key==="Backspace"&&!G.value&&(P.value=lt-1);return}const ct=P.value;Ct.value&&ut(Ct.value),P.value=ct>=lt-1?lt-2:ct}if(ft.key==="ArrowLeft"){if(P.value<0&&J>0)return;const ct=P.value>-1?P.value-1:lt-1;rt.value[ct]?P.value=ct:(P.value=-1,g.value.setSelectionRange(G.value.length,G.value.length))}if(ft.key==="ArrowRight"){if(P.value<0)return;const ct=P.value+1;rt.value[ct]?P.value=ct:(P.value=-1,g.value.setSelectionRange(0,0))}ft.key==="Enter"&&G.value&&(ut(qr(n,G.value)),G.value="")}}function Et(){var ft;v.value&&(k.value=!0,(ft=g.value)==null||ft.focus())}function ut(ft){if(n.multiple){const J=dt.value.findIndex(lt=>n.valueComparator(lt,ft.value));if(J===-1)tt.value=[...tt.value,ft];else{const lt=[...tt.value];lt.splice(J,1),tt.value=lt}G.value=""}else tt.value=[ft],Y.value=ft.title,we(()=>{B.value=!1,k.value=!0})}function pt(ft){v.value=!0,setTimeout(()=>{x.value=!0})}function Nt(ft){x.value=!1}function jt(ft){(ft==null||ft===""&&!n.multiple)&&(tt.value=[])}return _t(et,ft=>{!ft.length&&n.hideNoData&&(B.value=!1)}),_t(v,(ft,J)=>{ft||ft===J||(P.value=-1,B.value=!1,xt.value&&!x.value&&!rt.value.some(lt=>{let{value:at}=lt;return at===ht.value[0].value})?ut(ht.value[0]):n.multiple&&G.value&&(tt.value=[...tt.value,qr(n,G.value)],G.value=""))}),_t(B,()=>{if(!n.hideSelected&&B.value&&rt.value.length){const ft=ht.value.findIndex(J=>rt.value.some(lt=>J.value===lt.value));ze&&window.requestAnimationFrame(()=>{var J;ft>=0&&((J=S.value)==null||J.scrollToIndex(ft))})}}),Dt(()=>{const ft=!!(n.chips||h.chip),J=!!(!n.hideNoData||ht.value.length||h["prepend-item"]||h["append-item"]||h["no-data"]),lt=tt.value.length>0,[at]=Ir.filterProps(n);return t(Ir,o({ref:g},at,{modelValue:G.value,"onUpdate:modelValue":[ct=>G.value=ct,jt],focused:v.value,"onUpdate:focused":ct=>v.value=ct,validationValue:tt.externalValue,dirty:lt,class:["v-combobox",{"v-combobox--active-menu":B.value,"v-combobox--chips":!!n.chips,"v-combobox--selection-slot":!!h.selection,"v-combobox--selecting-index":P.value>-1,[`v-combobox--${n.multiple?"multiple":"single"}`]:!0},n.class],style:n.style,readonly:n.readonly,placeholder:lt?void 0:n.placeholder,"onClick:clear":Tt,"onMousedown:control":Ft,onKeydown:Jt}),{...h,default:()=>t(Kt,null,[t(pi,o({ref:I,modelValue:B.value,"onUpdate:modelValue":ct=>B.value=ct,activator:"parent",contentClass:"v-combobox__content",disabled:wt.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:Et},n.menuProps),{default:()=>[J&&t(ci,{ref:gt,selected:dt.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:ct=>ct.preventDefault(),onKeydown:At,onFocusin:pt,onFocusout:Nt,onScrollPassive:It,tabindex:"-1",color:n.itemColor??n.color},{default:()=>{var ct,kt,yt;return[(ct=h["prepend-item"])==null?void 0:ct.call(h),!ht.value.length&&!n.hideNoData&&(((kt=h["no-data"])==null?void 0:kt.call(h))??t(Ml,{title:c(n.noDataText)},null)),t(fi,{ref:S,renderless:!0,items:ht.value},{default:Ot=>{var Ut;let{item:$t,index:Rt,itemRef:Pt}=Ot;const Zt=o($t.props,{ref:Pt,key:Rt,active:xt.value&&Rt===0?!0:void 0,onClick:()=>ut($t)});return((Ut=h.item)==null?void 0:Ut.call(h,{item:$t,index:Rt,props:Zt}))??t(Ml,Zt,{prepend:Gt=>{let{isSelected:te}=Gt;return t(Kt,null,[n.multiple&&!n.hideSelected?t(ao,{key:$t.value,modelValue:te,ripple:!1,tabindex:"-1"},null):void 0,$t.props.prependIcon&&t(xe,{icon:$t.props.prependIcon},null)])},title:()=>{var Gt,te;return k.value?$t.title:C9($t.title,(Gt=st($t))==null?void 0:Gt.title,((te=G.value)==null?void 0:te.length)??0)}})}}),(yt=h["append-item"])==null?void 0:yt.call(h)]}})]}),rt.value.map((ct,kt)=>{var $t;function yt(Rt){Rt.stopPropagation(),Rt.preventDefault(),ut(ct)}const Ot={"onClick:close":yt,onMousedown(Rt){Rt.preventDefault(),Rt.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return t("div",{key:ct.value,class:["v-combobox__selection",kt===P.value&&["v-combobox__selection--selected",W.value]],style:kt===P.value?_.value:{}},[ft?h.chip?t(ke,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:ct.title}}},{default:()=>{var Rt;return[(Rt=h.chip)==null?void 0:Rt.call(h,{item:ct,index:kt,props:Ot})]}}):t(As,o({key:"chip",closable:n.closableChips,size:"small",text:ct.title},Ot),null):(($t=h.selection)==null?void 0:$t.call(h,{item:ct,index:kt}))??t("span",{class:"v-combobox__selection-text"},[ct.title,n.multiple&&kt!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{scopeId:c}=zo(),g=Lt();function v(x){var $,B;const I=x.relatedTarget,S=x.target;if(I!==S&&(($=g.value)!=null&&$.contentEl)&&((B=g.value)!=null&&B.globalTop)&&![document,g.value.contentEl].includes(S)&&!g.value.contentEl.contains(S)){const P=ss(g.value.contentEl);if(!P.length)return;const D=P[0],F=P[P.length-1];I===D?F.focus():D.focus()}}ze&&_t(()=>h.value&&n.retainFocus,x=>{x?document.addEventListener("focusin",v):document.removeEventListener("focusin",v)},{immediate:!0}),_t(h,async x=>{var I,S;await we(),x?(I=g.value.contentEl)==null||I.focus({preventScroll:!0}):(S=g.value.activatorEl)==null||S.focus({preventScroll:!0})});const k=q(()=>o({"aria-haspopup":"dialog","aria-expanded":String(h.value)},n.activatorProps));return Dt(()=>{const[x]=xl.filterProps(n);return t(xl,o({ref:g,class:["v-dialog",{"v-dialog--fullscreen":n.fullscreen,"v-dialog--scrollable":n.scrollable},n.class],style:n.style},x,{modelValue:h.value,"onUpdate:modelValue":I=>h.value=I,"aria-modal":"true",activatorProps:k.value,role:"dialog"},c),{activator:r.activator,default:function(){for(var I=arguments.length,S=new Array(I),$=0;${var B;return[(B=r.default)==null?void 0:B.call(r,...S)]}})}})}),Jn({},g)}});const us=Symbol.for("vuetify:v-expansion-panel"),H9=["default","accordion","inset","popout"],N9=mt({color:String,variant:{type:String,default:"default",validator:n=>H9.includes(n)},readonly:Boolean,...Xt(),...vo(),...re(),...ue()},"VExpansionPanels"),j9=Bt()({name:"VExpansionPanels",props:N9(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;jr(n,us);const{themeClasses:h}=ve(n),c=q(()=>n.variant&&`v-expansion-panels--variant-${n.variant}`);return Te({VExpansionPanel:{color:Ht(n,"color")},VExpansionPanelTitle:{readonly:Ht(n,"readonly")}}),Dt(()=>t(n.tag,{class:["v-expansion-panels",h.value,c.value,n.class],style:n.style},r)),{}}}),P9=mt({...Xt(),...ui()},"VExpansionPanelText"),bg=Bt()({name:"VExpansionPanelText",props:P9(),setup(n,l){let{slots:r}=l;const h=de(us);if(!h)throw new Error("[Vuetify] v-expansion-panel-text needs to be placed inside v-expansion-panel");const{hasContent:c,onAfterLeave:g}=C2(n,h.isSelected);return Dt(()=>t(oi,{onAfterLeave:g},{default:()=>{var v;return[$e(t("div",{class:["v-expansion-panel-text",n.class],style:n.style},[r.default&&c.value&&t("div",{class:"v-expansion-panel-text__wrapper"},[(v=r.default)==null?void 0:v.call(r)])]),[[Dn,h.isSelected.value]])]}})),{}}}),Mg=mt({color:String,expandIcon:{type:ee,default:"$expand"},collapseIcon:{type:ee,default:"$collapse"},hideActions:Boolean,ripple:{type:[Boolean,Object],default:!1},readonly:Boolean,...Xt()},"VExpansionPanelTitle"),xg=Bt()({name:"VExpansionPanelTitle",directives:{Ripple:tr},props:Mg(),setup(n,l){let{slots:r}=l;const h=de(us);if(!h)throw new Error("[Vuetify] v-expansion-panel-title needs to be placed inside v-expansion-panel");const{backgroundColorClasses:c,backgroundColorStyles:g}=Pe(n,"color"),v=q(()=>({collapseIcon:n.collapseIcon,disabled:h.disabled.value,expanded:h.isSelected.value,expandIcon:n.expandIcon,readonly:n.readonly}));return Dt(()=>{var k;return $e(t("button",{class:["v-expansion-panel-title",{"v-expansion-panel-title--active":h.isSelected.value},c.value,n.class],style:[g.value,n.style],type:"button",tabindex:h.disabled.value?-1:void 0,disabled:h.disabled.value,"aria-expanded":h.isSelected.value,onClick:n.readonly?void 0:h.toggle},[t("span",{class:"v-expansion-panel-title__overlay"},null),(k=r.default)==null?void 0:k.call(r,v.value),!n.hideActions&&t("span",{class:"v-expansion-panel-title__icon"},[r.actions?r.actions(v.value):t(xe,{icon:h.isSelected.value?n.collapseIcon:n.expandIcon},null)])]),[[Mn("ripple"),n.ripple]])}),{}}}),L9=mt({title:String,text:String,bgColor:String,...Xt(),..._e(),...fo(),...ui(),...Ce(),...re(),...Mg()},"VExpansionPanel"),D9=Bt()({name:"VExpansionPanel",props:L9(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const h=mo(n,us),{backgroundColorClasses:c,backgroundColorStyles:g}=Pe(n,"bgColor"),{elevationClasses:v}=Je(n),{roundedClasses:k}=Ne(n),x=q(()=>(h==null?void 0:h.disabled.value)||n.disabled),I=q(()=>h.group.items.value.reduce((B,P,D)=>(h.group.selected.value.includes(P.id)&&B.push(D),B),[])),S=q(()=>{const B=h.group.items.value.findIndex(P=>P.id===h.id);return!h.isSelected.value&&I.value.some(P=>P-B===1)}),$=q(()=>{const B=h.group.items.value.findIndex(P=>P.id===h.id);return!h.isSelected.value&&I.value.some(P=>P-B===-1)});return Se(us,h),Te({VExpansionPanelText:{eager:Ht(n,"eager")}}),Dt(()=>{const B=!!(r.text||n.text),P=!!(r.title||n.title);return t(n.tag,{class:["v-expansion-panel",{"v-expansion-panel--active":h.isSelected.value,"v-expansion-panel--before-active":S.value,"v-expansion-panel--after-active":$.value,"v-expansion-panel--disabled":x.value},k.value,c.value,n.class],style:[g.value,n.style]},{default:()=>{var D;return[t("div",{class:["v-expansion-panel__shadow",...v.value]},null),P&&t(xg,{key:"title",collapseIcon:n.collapseIcon,color:n.color,expandIcon:n.expandIcon,hideActions:n.hideActions,ripple:n.ripple},{default:()=>[r.title?r.title():n.title]}),B&&t(bg,{key:"text"},{default:()=>[r.text?r.text():n.text]}),(D=r.default)==null?void 0:D.call(r)]}})}),{}}});const O9=mt({chips:Boolean,counter:Boolean,counterSizeString:{type:String,default:"$vuetify.fileInput.counterSize"},counterString:{type:String,default:"$vuetify.fileInput.counter"},multiple:Boolean,showSize:{type:[Boolean,Number],default:!1,validator:n=>typeof n=="boolean"||[1e3,1024].includes(n)},...Al({prependIcon:"$file"}),modelValue:{type:Array,default:()=>[],validator:n=>Pn(n).every(l=>l!=null&&typeof l=="object")},...wi({clearable:!0})},"VFileInput"),F9=Bt()({name:"VFileInput",inheritAttrs:!1,props:O9(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const{t:g}=Rn(),v=ne(n,"modelValue"),{isFocused:k,focus:x,blur:I}=er(n),S=q(()=>typeof n.showSize!="boolean"?n.showSize:void 0),$=q(()=>(v.value??[]).reduce((G,et)=>{let{size:st=0}=et;return G+st},0)),B=q(()=>ad($.value,S.value)),P=q(()=>(v.value??[]).map(G=>{const{name:et="",size:st=0}=G;return n.showSize?`${et} (${ad(st,S.value)})`:et})),D=q(()=>{var et;const G=((et=v.value)==null?void 0:et.length)??0;return n.showSize?g(n.counterSizeString,G,B.value):g(n.counterString,G)}),F=Lt(),X=Lt(),R=Lt(),H=q(()=>k.value||n.active),U=q(()=>["plain","underlined"].includes(n.variant));function W(){var G;R.value!==document.activeElement&&((G=R.value)==null||G.focus()),k.value||x()}function _(G){nt(G)}function tt(G){h("mousedown:control",G)}function nt(G){var et;(et=R.value)==null||et.click(),h("click:control",G)}function Y(G){G.stopPropagation(),W(),we(()=>{v.value=[],n2(n["onClick:clear"],G)})}return _t(v,G=>{(!Array.isArray(G)||!G.length)&&R.value&&(R.value.value="")}),Dt(()=>{const G=!!(c.counter||n.counter),et=!!(G||c.details),[st,rt]=$r(r),[{modelValue:ht,...dt}]=Ke.filterProps(n),[Ct]=S2(n);return t(Ke,o({ref:F,modelValue:v.value,"onUpdate:modelValue":xt=>v.value=xt,class:["v-file-input",{"v-text-field--plain-underlined":U.value},n.class],style:n.style,"onClick:prepend":_},st,dt,{centerAffix:!U.value,focused:k.value}),{...c,default:xt=>{let{id:wt,isDisabled:gt,isDirty:It,isReadonly:At,isValid:Tt}=xt;return t(Hs,o({ref:X,"prepend-icon":n.prependIcon,onMousedown:tt,onClick:nt,"onClick:clear":Y,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"]},Ct,{id:wt.value,active:H.value||It.value,dirty:It.value,disabled:gt.value,focused:k.value,error:Tt.value===!1}),{...c,default:Ft=>{var Et;let{props:{class:Qt,...Jt}}=Ft;return t(Kt,null,[t("input",o({ref:R,type:"file",readonly:At.value,disabled:gt.value,multiple:n.multiple,name:n.name,onClick:ut=>{ut.stopPropagation(),At.value&&ut.preventDefault(),W()},onChange:ut=>{if(!ut.target)return;const pt=ut.target;v.value=[...pt.files??[]]},onFocus:W,onBlur:I},Jt,rt),null),t("div",{class:Qt},[!!((Et=v.value)!=null&&Et.length)&&(c.selection?c.selection({fileNames:P.value,totalBytes:$.value,totalBytesReadable:B.value}):n.chips?P.value.map(ut=>t(As,{key:ut,size:"small",color:n.color},{default:()=>[ut]})):P.value.join(", "))])])}})},details:et?xt=>{var wt,gt;return t(Kt,null,[(wt=c.details)==null?void 0:wt.call(c,xt),G&&t(Kt,null,[t("span",null,null),t(gi,{active:!!((gt=v.value)!=null&>.length),value:D.value},c.counter)])])}:void 0})}),Jn({},F,X,R)}});const R9=mt({app:Boolean,color:String,height:{type:[Number,String],default:"auto"},...An(),...Xt(),..._e(),...go(),...Ce(),...re({tag:"footer"}),...ue()},"VFooter"),T9=Bt()({name:"VFooter",props:R9(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{backgroundColorClasses:c,backgroundColorStyles:g}=Pe(Ht(n,"color")),{borderClasses:v}=Vn(n),{elevationClasses:k}=Je(n),{roundedClasses:x}=Ne(n),I=Wt(32),{resizeRef:S}=sl(P=>{P.length&&(I.value=P[0].target.clientHeight)}),$=q(()=>n.height==="auto"?I.value:parseInt(n.height,10)),{layoutItemStyles:B}=wo({id:n.name,order:q(()=>parseInt(n.order,10)),position:q(()=>"bottom"),layoutSize:$,elementSize:q(()=>n.height==="auto"?void 0:$.value),active:q(()=>n.app),absolute:Ht(n,"absolute")});return Dt(()=>t(n.tag,{ref:S,class:["v-footer",h.value,c.value,v.value,k.value,x.value,n.class],style:[g.value,n.app?B.value:{height:qt(n.height)},n.style]},r)),{}}}),E9=mt({...Xt(),...Z7()},"VForm"),V9=Bt()({name:"VForm",props:E9(),emits:{"update:modelValue":n=>!0,submit:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const c=K7(n),g=Lt();function v(x){x.preventDefault(),c.reset()}function k(x){const I=x,S=c.validate();I.then=S.then.bind(S),I.catch=S.catch.bind(S),I.finally=S.finally.bind(S),h("submit",I),I.defaultPrevented||S.then($=>{var P;let{valid:B}=$;B&&((P=g.value)==null||P.submit())}),I.preventDefault()}return Dt(()=>{var x;return t("form",{ref:g,class:["v-form",n.class],style:n.style,novalidate:!0,onReset:v,onSubmit:k},[(x=r.default)==null?void 0:x.call(r,c)])}),Jn(c,g)}});const _9=mt({fluid:{type:Boolean,default:!1},...Xt(),...re()},"VContainer"),W9=Bt()({name:"VContainer",props:_9(),setup(n,l){let{slots:r}=l;const{rtlClasses:h}=Ue();return Dt(()=>t(n.tag,{class:["v-container",{"v-container--fluid":n.fluid},h.value,n.class],style:n.style},r)),{}}}),zg=(()=>ni.reduce((n,l)=>(n[l]={type:[Boolean,String,Number],default:!1},n),{}))(),Ig=(()=>ni.reduce((n,l)=>{const r="offset"+Il(l);return n[r]={type:[String,Number],default:null},n},{}))(),yg=(()=>ni.reduce((n,l)=>{const r="order"+Il(l);return n[r]={type:[String,Number],default:null},n},{}))(),qd={col:Object.keys(zg),offset:Object.keys(Ig),order:Object.keys(yg)};function X9(n,l,r){let h=n;if(!(r==null||r===!1)){if(l){const c=l.replace(n,"");h+=`-${c}`}return n==="col"&&(h="v-"+h),n==="col"&&(r===""||r===!0)||(h+=`-${r}`),h.toLowerCase()}}const q9=["auto","start","end","center","baseline","stretch"],Y9=mt({cols:{type:[Boolean,String,Number],default:!1},...zg,offset:{type:[String,Number],default:null},...Ig,order:{type:[String,Number],default:null},...yg,alignSelf:{type:String,default:null,validator:n=>q9.includes(n)},...Xt(),...re()},"VCol"),U9=Bt()({name:"VCol",props:Y9(),setup(n,l){let{slots:r}=l;const h=q(()=>{const c=[];let g;for(g in qd)qd[g].forEach(k=>{const x=n[k],I=X9(g,k,x);I&&c.push(I)});const v=c.some(k=>k.startsWith("v-col-"));return c.push({"v-col":!v||!n.cols,[`v-col-${n.cols}`]:n.cols,[`offset-${n.offset}`]:n.offset,[`order-${n.order}`]:n.order,[`align-self-${n.alignSelf}`]:n.alignSelf}),c});return()=>{var c;return Ln(n.tag,{class:[h.value,n.class],style:n.style},(c=r.default)==null?void 0:c.call(r))}}}),N2=["start","end","center"],Cg=["space-between","space-around","space-evenly"];function j2(n,l){return ni.reduce((r,h)=>{const c=n+Il(h);return r[c]=l(),r},{})}const G9=[...N2,"baseline","stretch"],Sg=n=>G9.includes(n),$g=j2("align",()=>({type:String,default:null,validator:Sg})),Z9=[...N2,...Cg],Ag=n=>Z9.includes(n),Bg=j2("justify",()=>({type:String,default:null,validator:Ag})),K9=[...N2,...Cg,"stretch"],Hg=n=>K9.includes(n),Ng=j2("alignContent",()=>({type:String,default:null,validator:Hg})),Yd={align:Object.keys($g),justify:Object.keys(Bg),alignContent:Object.keys(Ng)},Q9={align:"align",justify:"justify",alignContent:"align-content"};function J9(n,l,r){let h=Q9[n];if(r!=null){if(l){const c=l.replace(n,"");h+=`-${c}`}return h+=`-${r}`,h.toLowerCase()}}const tM=mt({dense:Boolean,noGutters:Boolean,align:{type:String,default:null,validator:Sg},...$g,justify:{type:String,default:null,validator:Ag},...Bg,alignContent:{type:String,default:null,validator:Hg},...Ng,...Xt(),...re()},"VRow"),eM=Bt()({name:"VRow",props:tM(),setup(n,l){let{slots:r}=l;const h=q(()=>{const c=[];let g;for(g in Yd)Yd[g].forEach(v=>{const k=n[v],x=J9(g,v,k);x&&c.push(x)});return c.push({"v-row--no-gutters":n.noGutters,"v-row--dense":n.dense,[`align-${n.align}`]:n.align,[`justify-${n.justify}`]:n.justify,[`align-content-${n.alignContent}`]:n.alignContent}),c});return()=>{var c;return Ln(n.tag,{class:["v-row",h.value,n.class],style:n.style},(c=r.default)==null?void 0:c.call(r))}}}),nM=Qn("v-spacer","div","VSpacer"),lM=mt({disabled:Boolean,modelValue:{type:Boolean,default:void 0},...Y4()},"VHover"),rM=Bt()({name:"VHover",props:lM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{runOpenDelay:c,runCloseDelay:g}=U4(n,v=>!n.disabled&&(h.value=v));return()=>{var v;return(v=r.default)==null?void 0:v.call(r,{isHovering:h.value,props:{onMouseenter:c,onMouseleave:g}})}}});const jg=Symbol.for("vuetify:v-item-group"),oM=mt({...Xt(),...vo({selectedClass:"v-item--selected"}),...re(),...ue()},"VItemGroup"),sM=Bt()({name:"VItemGroup",props:oM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{isSelected:c,select:g,next:v,prev:k,selected:x}=jr(n,jg);return()=>t(n.tag,{class:["v-item-group",h.value,n.class],style:n.style},{default:()=>{var I;return[(I=r.default)==null?void 0:I.call(r,{isSelected:c,select:g,next:v,prev:k,selected:x.value})]}})}}),aM=Bt()({name:"VItem",props:fo(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const{isSelected:h,select:c,toggle:g,selectedClass:v,value:k,disabled:x}=mo(n,jg);return()=>{var I;return(I=r.default)==null?void 0:I.call(r,{isSelected:h.value,selectedClass:v.value,select:c,toggle:g,value:k.value,disabled:x.value})}}});const iM=Qn("v-kbd");const hM=mt({...Xt(),...Jp()},"VLayout"),dM=Bt()({name:"VLayout",props:hM(),setup(n,l){let{slots:r}=l;const{layoutClasses:h,layoutStyles:c,getLayoutItem:g,items:v,layoutRef:k}=t4(n);return Dt(()=>{var x;return t("div",{ref:k,class:[h.value,n.class],style:[c.value,n.style]},[(x=r.default)==null?void 0:x.call(r)])}),{getLayoutItem:g,items:v}}});const cM=mt({position:{type:String,required:!0},size:{type:[Number,String],default:300},modelValue:Boolean,...Xt(),...go()},"VLayoutItem"),uM=Bt()({name:"VLayoutItem",props:cM(),setup(n,l){let{slots:r}=l;const{layoutItemStyles:h}=wo({id:n.name,order:q(()=>parseInt(n.order,10)),position:Ht(n,"position"),elementSize:Ht(n,"size"),layoutSize:Ht(n,"size"),active:Ht(n,"modelValue"),absolute:Ht(n,"absolute")});return()=>{var c;return t("div",{class:["v-layout-item",n.class],style:[h.value,n.style]},[(c=r.default)==null?void 0:c.call(r)])}}}),pM=mt({modelValue:Boolean,options:{type:Object,default:()=>({root:void 0,rootMargin:void 0,threshold:void 0})},...Xt(),...Tn(),...re(),...Sl({transition:"fade-transition"})},"VLazy"),gM=Bt()({name:"VLazy",directives:{intersect:si},props:pM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{dimensionStyles:h}=En(n),c=ne(n,"modelValue");function g(v){c.value||(c.value=v)}return Dt(()=>$e(t(n.tag,{class:["v-lazy",n.class],style:[h.value,n.style]},{default:()=>[c.value&&t(Un,{transition:n.transition,appear:!0},{default:()=>{var v;return[(v=r.default)==null?void 0:v.call(r)]}})]}),[[Mn("intersect"),{handler:g,options:n.options},null]])),{}}});const wM=mt({locale:String,fallbackLocale:String,messages:Object,rtl:{type:Boolean,default:void 0},...Xt()},"VLocaleProvider"),vM=Bt()({name:"VLocaleProvider",props:wM(),setup(n,l){let{slots:r}=l;const{rtlClasses:h}=y6(n);return Dt(()=>{var c;return t("div",{class:["v-locale-provider",h.value,n.class],style:n.style},[(c=r.default)==null?void 0:c.call(r)])}),{}}});const fM=mt({scrollable:Boolean,...Xt(),...re({tag:"main"})},"VMain"),mM=Bt()({name:"VMain",props:fM(),setup(n,l){let{slots:r}=l;const{mainStyles:h}=K6(),{ssrBootStyles:c}=Br();return Dt(()=>t(n.tag,{class:["v-main",{"v-main--scrollable":n.scrollable},n.class],style:[h.value,c.value,n.style]},{default:()=>{var g,v;return[n.scrollable?t("div",{class:"v-main__scroller"},[(g=r.default)==null?void 0:g.call(r)]):(v=r.default)==null?void 0:v.call(r)]}})),{}}});function kM(n){let{rootEl:l,isSticky:r,layoutItemStyles:h}=n;const c=Wt(!1),g=Wt(0),v=q(()=>{const I=typeof c.value=="boolean"?"top":c.value;return[r.value?{top:"auto",bottom:"auto",height:void 0}:void 0,c.value?{[I]:qt(g.value)}:{top:h.value.top}]});Ve(()=>{_t(r,I=>{I?window.addEventListener("scroll",x,{passive:!0}):window.removeEventListener("scroll",x)},{immediate:!0})}),Qe(()=>{window.removeEventListener("scroll",x)});let k=0;function x(){const I=k>window.scrollY?"up":"down",S=l.value.getBoundingClientRect(),$=parseFloat(h.value.top??0),B=window.scrollY-Math.max(0,g.value-$),P=S.height+Math.max(g.value,$)-window.scrollY-window.innerHeight,D=parseFloat(getComputedStyle(l.value).getPropertyValue("--v-body-scroll-y"))||0;S.height0;r--){if(n[r].t===n[r-1].t)continue;const h=Ud(l),c=(n[r].d-n[r-1].d)/(n[r].t-n[r-1].t);l+=(c-h)*Math.abs(c),r===n.length-1&&(l*=.5)}return Ud(l)*1e3}function xM(){const n={};function l(c){Array.from(c.changedTouches).forEach(g=>{(n[g.identifier]??(n[g.identifier]=new jk(MM))).push([c.timeStamp,g])})}function r(c){Array.from(c.changedTouches).forEach(g=>{delete n[g.identifier]})}function h(c){var I;const g=(I=n[c])==null?void 0:I.values().reverse();if(!g)throw new Error(`No samples for touch id ${c}`);const v=g[0],k=[],x=[];for(const S of g){if(v[0]-S[0]>bM)break;k.push({t:S[0],d:S[1].clientX}),x.push({t:S[0],d:S[1].clientY})}return{x:Gd(k),y:Gd(x),get direction(){const{x:S,y:$}=this,[B,P]=[Math.abs(S),Math.abs($)];return B>P&&S>=0?"right":B>P&&S<=0?"left":P>B&&$>=0?"down":P>B&&$<=0?"up":zM()}}}return{addMovement:l,endTouch:r,getVelocity:h}}function zM(){throw new Error}function IM(n){let{isActive:l,isTemporary:r,width:h,touchless:c,position:g}=n;Ve(()=>{window.addEventListener("touchstart",R,{passive:!0}),window.addEventListener("touchmove",H,{passive:!1}),window.addEventListener("touchend",U,{passive:!0})}),Qe(()=>{window.removeEventListener("touchstart",R),window.removeEventListener("touchmove",H),window.removeEventListener("touchend",U)});const v=q(()=>["left","right"].includes(g.value)),{addMovement:k,endTouch:x,getVelocity:I}=xM();let S=!1;const $=Wt(!1),B=Wt(0),P=Wt(0);let D;function F(_,tt){return(g.value==="left"?_:g.value==="right"?document.documentElement.clientWidth-_:g.value==="top"?_:g.value==="bottom"?document.documentElement.clientHeight-_:Er())-(tt?h.value:0)}function X(_){let tt=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;const nt=g.value==="left"?(_-P.value)/h.value:g.value==="right"?(document.documentElement.clientWidth-_-P.value)/h.value:g.value==="top"?(_-P.value)/h.value:g.value==="bottom"?(document.documentElement.clientHeight-_-P.value)/h.value:Er();return tt?Math.max(0,Math.min(1,nt)):nt}function R(_){if(c.value)return;const tt=_.changedTouches[0].clientX,nt=_.changedTouches[0].clientY,Y=25,G=g.value==="left"?ttdocument.documentElement.clientWidth-Y:g.value==="top"?ntdocument.documentElement.clientHeight-Y:Er(),et=l.value&&(g.value==="left"?ttdocument.documentElement.clientWidth-h.value:g.value==="top"?ntdocument.documentElement.clientHeight-h.value:Er());(G||et||l.value&&r.value)&&(S=!0,D=[tt,nt],P.value=F(v.value?tt:nt,l.value),B.value=X(v.value?tt:nt),x(_),k(_))}function H(_){const tt=_.changedTouches[0].clientX,nt=_.changedTouches[0].clientY;if(S){if(!_.cancelable){S=!1;return}const G=Math.abs(tt-D[0]),et=Math.abs(nt-D[1]);(v.value?G>et&&G>3:et>G&&et>3)?($.value=!0,S=!1):(v.value?et:G)>3&&(S=!1)}if(!$.value)return;_.preventDefault(),k(_);const Y=X(v.value?tt:nt,!1);B.value=Math.max(0,Math.min(1,Y)),Y>1?P.value=F(v.value?tt:nt,!0):Y<0&&(P.value=F(v.value?tt:nt,!1))}function U(_){if(S=!1,!$.value)return;k(_),$.value=!1;const tt=I(_.changedTouches[0].identifier),nt=Math.abs(tt.x),Y=Math.abs(tt.y);(v.value?nt>Y&&nt>400:Y>nt&&Y>3)?l.value=tt.direction===({left:"right",right:"left",top:"down",bottom:"up"}[g.value]||Er()):l.value=B.value>.5}const W=q(()=>$.value?{transform:g.value==="left"?`translateX(calc(-100% + ${B.value*h.value}px))`:g.value==="right"?`translateX(calc(100% - ${B.value*h.value}px))`:g.value==="top"?`translateY(calc(-100% + ${B.value*h.value}px))`:g.value==="bottom"?`translateY(calc(100% - ${B.value*h.value}px))`:Er(),transition:"none"}:void 0);return{isDragging:$,dragProgress:B,dragStyles:W}}function Er(){throw new Error}const yM=["start","end","left","right","top","bottom"],CM=mt({color:String,disableResizeWatcher:Boolean,disableRouteWatcher:Boolean,expandOnHover:Boolean,floating:Boolean,modelValue:{type:Boolean,default:null},permanent:Boolean,rail:{type:Boolean,default:null},railWidth:{type:[Number,String],default:56},scrim:{type:[Boolean,String],default:!0},image:String,temporary:Boolean,touchless:Boolean,width:{type:[Number,String],default:256},location:{type:String,default:"start",validator:n=>yM.includes(n)},sticky:Boolean,...An(),...Xt(),..._e(),...go(),...Ce(),...re({tag:"nav"}),...ue()},"VNavigationDrawer"),SM=Bt()({name:"VNavigationDrawer",props:CM(),emits:{"update:modelValue":n=>!0,"update:rail":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const{isRtl:g}=Ue(),{themeClasses:v}=ve(n),{borderClasses:k}=Vn(n),{backgroundColorClasses:x,backgroundColorStyles:I}=Pe(Ht(n,"color")),{elevationClasses:S}=Je(n),{mobile:$}=Ar(),{roundedClasses:B}=Ne(n),P=u4(),D=ne(n,"modelValue",null,It=>!!It),{ssrBootStyles:F}=Br(),{scopeId:X}=zo(),R=Lt(),H=Wt(!1),U=q(()=>n.rail&&n.expandOnHover&&H.value?Number(n.width):Number(n.rail?n.railWidth:n.width)),W=q(()=>L0(n.location,g.value)),_=q(()=>!n.permanent&&($.value||n.temporary)),tt=q(()=>n.sticky&&!_.value&&W.value!=="bottom");n.expandOnHover&&n.rail!=null&&_t(H,It=>h("update:rail",!It)),n.disableResizeWatcher||_t(_,It=>!n.permanent&&we(()=>D.value=!It)),!n.disableRouteWatcher&&P&&_t(P.currentRoute,()=>_.value&&(D.value=!1)),_t(()=>n.permanent,It=>{It&&(D.value=!0)}),Ms(()=>{n.modelValue!=null||_.value||(D.value=n.permanent||!$.value)});const{isDragging:nt,dragProgress:Y,dragStyles:G}=IM({isActive:D,isTemporary:_,width:U,touchless:Ht(n,"touchless"),position:W}),et=q(()=>{const It=_.value?0:n.rail&&n.expandOnHover?Number(n.railWidth):U.value;return nt.value?It*Y.value:It}),{layoutItemStyles:st,layoutItemScrimStyles:rt}=wo({id:n.name,order:q(()=>parseInt(n.order,10)),position:W,layoutSize:et,elementSize:U,active:q(()=>D.value||nt.value),disableTransitions:q(()=>nt.value),absolute:q(()=>n.absolute||tt.value&&typeof ht.value!="string")}),{isStuck:ht,stickyStyles:dt}=kM({rootEl:R,isSticky:tt,layoutItemStyles:st}),Ct=Pe(q(()=>typeof n.scrim=="string"?n.scrim:null)),xt=q(()=>({...nt.value?{opacity:Y.value*.2,transition:"none"}:void 0,...rt.value}));Te({VList:{bgColor:"transparent"}});function wt(){H.value=!0}function gt(){H.value=!1}return Dt(()=>{const It=c.image||n.image;return t(Kt,null,[t(n.tag,o({ref:R,onMouseenter:wt,onMouseleave:gt,class:["v-navigation-drawer",`v-navigation-drawer--${W.value}`,{"v-navigation-drawer--expand-on-hover":n.expandOnHover,"v-navigation-drawer--floating":n.floating,"v-navigation-drawer--is-hovering":H.value,"v-navigation-drawer--rail":n.rail,"v-navigation-drawer--temporary":_.value,"v-navigation-drawer--active":D.value,"v-navigation-drawer--sticky":tt.value},v.value,x.value,k.value,S.value,B.value,n.class],style:[I.value,st.value,G.value,F.value,dt.value,n.style]},X,r),{default:()=>{var At,Tt,Ft,Qt;return[It&&t("div",{key:"image",class:"v-navigation-drawer__img"},[c.image?(At=c.image)==null?void 0:At.call(c,{image:n.image}):t("img",{src:n.image,alt:""},null)]),c.prepend&&t("div",{class:"v-navigation-drawer__prepend"},[(Tt=c.prepend)==null?void 0:Tt.call(c)]),t("div",{class:"v-navigation-drawer__content"},[(Ft=c.default)==null?void 0:Ft.call(c)]),c.append&&t("div",{class:"v-navigation-drawer__append"},[(Qt=c.append)==null?void 0:Qt.call(c)])]}}),t(Zn,{name:"fade-transition"},{default:()=>[_.value&&(nt.value||D.value)&&!!n.scrim&&t("div",o({class:["v-navigation-drawer__scrim",Ct.backgroundColorClasses.value],style:[xt.value,Ct.backgroundColorStyles.value],onClick:()=>D.value=!1},X),null)]})])}),{isStuck:ht}}}),$M=Fn({name:"VNoSsr",setup(n,l){let{slots:r}=l;const h=G4();return()=>{var c;return h.value&&((c=r.default)==null?void 0:c.call(r))}}});function AM(){const n=Lt([]);jh(()=>n.value=[]);function l(r,h){n.value[h]=r}return{refs:n,updateRef:l}}const BM=mt({activeColor:String,start:{type:[Number,String],default:1},modelValue:{type:Number,default:n=>n.start},disabled:Boolean,length:{type:[Number,String],default:1,validator:n=>n%1===0},totalVisible:[Number,String],firstIcon:{type:ee,default:"$first"},prevIcon:{type:ee,default:"$prev"},nextIcon:{type:ee,default:"$next"},lastIcon:{type:ee,default:"$last"},ariaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.root"},pageAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.page"},currentPageAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.currentPage"},firstAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.first"},previousAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.previous"},nextAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.next"},lastAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.last"},ellipsis:{type:String,default:"..."},showFirstLastPage:Boolean,...An(),...Xt(),...We(),..._e(),...Ce(),...$l(),...re({tag:"nav"}),...ue(),..._n({variant:"text"})},"VPagination"),HM=Bt()({name:"VPagination",props:BM(),emits:{"update:modelValue":n=>!0,first:n=>!0,prev:n=>!0,next:n=>!0,last:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const c=ne(n,"modelValue"),{t:g,n:v}=Rn(),{isRtl:k}=Ue(),{themeClasses:x}=ve(n),{width:I}=Ar(),S=Wt(-1);Te(void 0,{scoped:!0});const{resizeRef:$}=sl(Y=>{if(!Y.length)return;const{target:G,contentRect:et}=Y[0],st=G.querySelector(".v-pagination__list > *");if(!st)return;const rt=et.width,ht=st.offsetWidth+parseFloat(getComputedStyle(st).marginRight)*2;S.value=F(rt,ht)}),B=q(()=>parseInt(n.length,10)),P=q(()=>parseInt(n.start,10)),D=q(()=>n.totalVisible?parseInt(n.totalVisible,10):S.value>=0?S.value:F(I.value,58));function F(Y,G){const et=n.showFirstLastPage?5:3;return Math.max(0,Math.floor(+((Y-G*et)/G).toFixed(2)))}const X=q(()=>{if(B.value<=0||isNaN(B.value)||B.value>Number.MAX_SAFE_INTEGER)return[];if(D.value<=1)return[c.value];if(B.value<=D.value)return gl(B.value,P.value);const Y=D.value%2===0,G=Y?D.value/2:Math.floor(D.value/2),et=Y?G:G+1,st=B.value-G;if(et-c.value>=0)return[...gl(Math.max(1,D.value-1),P.value),n.ellipsis,B.value];if(c.value-st>=(Y?1:0)){const rt=D.value-1,ht=B.value-rt+P.value;return[P.value,n.ellipsis,...gl(rt,ht)]}else{const rt=Math.max(1,D.value-3),ht=rt===1?c.value:c.value-Math.ceil(rt/2)+P.value;return[P.value,n.ellipsis,...gl(rt,ht),n.ellipsis,B.value]}});function R(Y,G,et){Y.preventDefault(),c.value=G,et&&h(et,G)}const{refs:H,updateRef:U}=AM();Te({VPaginationBtn:{color:Ht(n,"color"),border:Ht(n,"border"),density:Ht(n,"density"),size:Ht(n,"size"),variant:Ht(n,"variant"),rounded:Ht(n,"rounded"),elevation:Ht(n,"elevation")}});const W=q(()=>X.value.map((Y,G)=>{const et=st=>U(st,G);if(typeof Y=="string")return{isActive:!1,key:`ellipsis-${G}`,page:Y,props:{ref:et,ellipsis:!0,icon:!0,disabled:!0}};{const st=Y===c.value;return{isActive:st,key:Y,page:v(Y),props:{ref:et,ellipsis:!1,icon:!0,disabled:!!n.disabled||+n.length<2,color:st?n.activeColor:n.color,ariaCurrent:st,ariaLabel:g(st?n.currentPageAriaLabel:n.pageAriaLabel,Y),onClick:rt=>R(rt,Y)}}}})),_=q(()=>{const Y=!!n.disabled||c.value<=P.value,G=!!n.disabled||c.value>=P.value+B.value-1;return{first:n.showFirstLastPage?{icon:k.value?n.lastIcon:n.firstIcon,onClick:et=>R(et,P.value,"first"),disabled:Y,ariaLabel:g(n.firstAriaLabel),ariaDisabled:Y}:void 0,prev:{icon:k.value?n.nextIcon:n.prevIcon,onClick:et=>R(et,c.value-1,"prev"),disabled:Y,ariaLabel:g(n.previousAriaLabel),ariaDisabled:Y},next:{icon:k.value?n.prevIcon:n.nextIcon,onClick:et=>R(et,c.value+1,"next"),disabled:G,ariaLabel:g(n.nextAriaLabel),ariaDisabled:G},last:n.showFirstLastPage?{icon:k.value?n.firstIcon:n.lastIcon,onClick:et=>R(et,P.value+B.value-1,"last"),disabled:G,ariaLabel:g(n.lastAriaLabel),ariaDisabled:G}:void 0}});function tt(){var G;const Y=c.value-P.value;(G=H.value[Y])==null||G.$el.focus()}function nt(Y){Y.key===j0.left&&!n.disabled&&c.value>+n.start?(c.value=c.value-1,we(tt)):Y.key===j0.right&&!n.disabled&&c.valuet(n.tag,{ref:$,class:["v-pagination",x.value,n.class],style:n.style,role:"navigation","aria-label":g(n.ariaLabel),onKeydown:nt,"data-test":"v-pagination-root"},{default:()=>[t("ul",{class:"v-pagination__list"},[n.showFirstLastPage&&t("li",{key:"first",class:"v-pagination__first","data-test":"v-pagination-first"},[r.first?r.first(_.value.first):t(pn,o({_as:"VPaginationBtn"},_.value.first),null)]),t("li",{key:"prev",class:"v-pagination__prev","data-test":"v-pagination-prev"},[r.prev?r.prev(_.value.prev):t(pn,o({_as:"VPaginationBtn"},_.value.prev),null)]),W.value.map((Y,G)=>t("li",{key:Y.key,class:["v-pagination__item",{"v-pagination__item--is-active":Y.isActive}],"data-test":"v-pagination-item"},[r.item?r.item(Y):t(pn,o({_as:"VPaginationBtn"},Y.props),{default:()=>[Y.page]})])),t("li",{key:"next",class:"v-pagination__next","data-test":"v-pagination-next"},[r.next?r.next(_.value.next):t(pn,o({_as:"VPaginationBtn"},_.value.next),null)]),n.showFirstLastPage&&t("li",{key:"last",class:"v-pagination__last","data-test":"v-pagination-last"},[r.last?r.last(_.value.last):t(pn,o({_as:"VPaginationBtn"},_.value.last),null)])])]})),{}}});function NM(n){return Math.floor(Math.abs(n))*Math.sign(n)}const jM=mt({scale:{type:[Number,String],default:.5},...Xt()},"VParallax"),PM=Bt()({name:"VParallax",props:jM(),setup(n,l){let{slots:r}=l;const{intersectionRef:h,isIntersecting:c}=f2(),{resizeRef:g,contentRect:v}=sl(),{height:k}=Ar(),x=Lt();bn(()=>{var P;h.value=g.value=(P=x.value)==null?void 0:P.$el});let I;_t(c,P=>{P?(I=s2(h.value),I=I===document.scrollingElement?document:I,I.addEventListener("scroll",B,{passive:!0}),B()):I.removeEventListener("scroll",B)}),Qe(()=>{I==null||I.removeEventListener("scroll",B)}),_t(k,B),_t(()=>{var P;return(P=v.value)==null?void 0:P.height},B);const S=q(()=>1-rn(+n.scale));let $=-1;function B(){c.value&&(cancelAnimationFrame($),$=requestAnimationFrame(()=>{var _;const P=((_=x.value)==null?void 0:_.$el).querySelector(".v-img__img");if(!P)return;const D=I instanceof Document?document.documentElement.clientHeight:I.clientHeight,F=I instanceof Document?window.scrollY:I.scrollTop,X=h.value.getBoundingClientRect().top+F,R=v.value.height,H=X+(R-D)/2,U=NM((F-H)*S.value),W=Math.max(1,(S.value*(D-R)+R)/R);P.style.setProperty("transform",`translateY(${U}px) scale(${W})`)}))}return Dt(()=>t(xr,{class:["v-parallax",{"v-parallax--active":c.value},n.class],style:n.style,ref:x,cover:!0,onLoadstart:B,onLoad:B},r)),{}}}),LM=mt({...ii({falseIcon:"$radioOff",trueIcon:"$radioOn"})},"VRadio"),DM=Bt()({name:"VRadio",props:LM(),setup(n,l){let{slots:r}=l;return Dt(()=>t(zr,o(n,{class:["v-radio",n.class],style:n.style,type:"radio"}),r)),{}}});const OM=mt({height:{type:[Number,String],default:"auto"},...Al(),...On(z2(),["multiple"]),trueIcon:{type:ee,default:"$radioOn"},falseIcon:{type:ee,default:"$radioOff"},type:{type:String,default:"radio"}},"VRadioGroup"),FM=Bt()({name:"VRadioGroup",inheritAttrs:!1,props:OM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const c=hn(),g=q(()=>n.id||`radio-group-${c}`),v=ne(n,"modelValue");return Dt(()=>{const[k,x]=$r(r),[I,S]=Ke.filterProps(n),[$,B]=zr.filterProps(n),P=h.label?h.label({label:n.label,props:{for:g.value}}):n.label;return t(Ke,o({class:["v-radio-group",n.class],style:n.style},k,I,{modelValue:v.value,"onUpdate:modelValue":D=>v.value=D,id:g.value}),{...h,default:D=>{let{id:F,messagesId:X,isDisabled:R,isReadonly:H}=D;return t(Kt,null,[P&&t(xo,{id:F.value},{default:()=>[P]}),t(z4,o($,{id:F.value,"aria-describedby":X.value,defaultsTarget:"VRadio",trueIcon:n.trueIcon,falseIcon:n.falseIcon,type:n.type,disabled:R.value,readonly:H.value,"aria-labelledby":P?F.value:void 0,multiple:!1},x,{modelValue:v.value,"onUpdate:modelValue":U=>v.value=U}),h)])}})}),{}}}),RM=mt({...hi(),...Al(),...wg(),strict:Boolean,modelValue:{type:Array,default:()=>[0,0]}},"VRangeSlider"),TM=Bt()({name:"VRangeSlider",props:RM(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,end:n=>!0,start:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const c=Lt(),g=Lt(),v=Lt(),{rtlClasses:k}=Ue();function x(G){if(!c.value||!g.value)return;const et=lh(G,c.value.$el,n.direction),st=lh(G,g.value.$el,n.direction),rt=Math.abs(et),ht=Math.abs(st);return rtG!=null&&G.length?G.map(et=>I.roundValue(et)):[0,0]),{activeThumbRef:$,hasLabels:B,max:P,min:D,mousePressed:F,onSliderMousedown:X,onSliderTouchstart:R,position:H,trackContainerRef:U}=fg({props:n,steps:I,onSliderStart:()=>{h("start",S.value)},onSliderEnd:G=>{var rt;let{value:et}=G;const st=$.value===((rt=c.value)==null?void 0:rt.$el)?[et,S.value[1]]:[S.value[0],et];!n.strict&&st[0]{var ht,dt,Ct,xt;let{value:et}=G;const[st,rt]=S.value;!n.strict&&st===rt&&st!==D.value&&($.value=et>st?(ht=g.value)==null?void 0:ht.$el:(dt=c.value)==null?void 0:dt.$el,(Ct=$.value)==null||Ct.focus()),$.value===((xt=c.value)==null?void 0:xt.$el)?S.value=[Math.min(et,rt),rt]:S.value=[st,Math.max(st,et)]},getActiveThumb:x}),{isFocused:W,focus:_,blur:tt}=er(n),nt=q(()=>H(S.value[0])),Y=q(()=>H(S.value[1]));return Dt(()=>{const[G,et]=Ke.filterProps(n),st=!!(n.label||r.label||r.prepend);return t(Ke,o({class:["v-slider","v-range-slider",{"v-slider--has-labels":!!r["tick-label"]||B.value,"v-slider--focused":W.value,"v-slider--pressed":F.value,"v-slider--disabled":n.disabled},k.value,n.class],style:n.style,ref:v},G,{focused:W.value}),{...r,prepend:st?rt=>{var ht,dt;return t(Kt,null,[((ht=r.label)==null?void 0:ht.call(r,rt))??n.label?t(xo,{class:"v-slider__label",text:n.label},null):void 0,(dt=r.prepend)==null?void 0:dt.call(r,rt)])}:void 0,default:rt=>{var Ct,xt;let{id:ht,messagesId:dt}=rt;return t("div",{class:"v-slider__container",onMousedown:X,onTouchstartPassive:R},[t("input",{id:`${ht.value}_start`,name:n.name||ht.value,disabled:!!n.disabled,readonly:!!n.readonly,tabindex:"-1",value:S.value[0]},null),t("input",{id:`${ht.value}_stop`,name:n.name||ht.value,disabled:!!n.disabled,readonly:!!n.readonly,tabindex:"-1",value:S.value[1]},null),t(mg,{ref:U,start:nt.value,stop:Y.value},{"tick-label":r["tick-label"]}),t(rh,{ref:c,"aria-describedby":dt.value,focused:W&&$.value===((Ct=c.value)==null?void 0:Ct.$el),modelValue:S.value[0],"onUpdate:modelValue":wt=>S.value=[wt,S.value[1]],onFocus:wt=>{var gt,It,At,Tt;_(),$.value=(gt=c.value)==null?void 0:gt.$el,S.value[0]===S.value[1]&&S.value[1]===D.value&&wt.relatedTarget!==((It=g.value)==null?void 0:It.$el)&&((At=c.value)==null||At.$el.blur(),(Tt=g.value)==null||Tt.$el.focus())},onBlur:()=>{tt(),$.value=void 0},min:D.value,max:S.value[1],position:nt.value},{"thumb-label":r["thumb-label"]}),t(rh,{ref:g,"aria-describedby":dt.value,focused:W&&$.value===((xt=g.value)==null?void 0:xt.$el),modelValue:S.value[1],"onUpdate:modelValue":wt=>S.value=[S.value[0],wt],onFocus:wt=>{var gt,It,At,Tt;_(),$.value=(gt=g.value)==null?void 0:gt.$el,S.value[0]===S.value[1]&&S.value[0]===P.value&&wt.relatedTarget!==((It=c.value)==null?void 0:It.$el)&&((At=g.value)==null||At.$el.blur(),(Tt=c.value)==null||Tt.$el.focus())},onBlur:()=>{tt(),$.value=void 0},min:S.value[0],max:P.value,position:Y.value},{"thumb-label":r["thumb-label"]})])}})}),{}}});const EM=mt({name:String,itemAriaLabel:{type:String,default:"$vuetify.rating.ariaLabel.item"},activeColor:String,color:String,clearable:Boolean,disabled:Boolean,emptyIcon:{type:ee,default:"$ratingEmpty"},fullIcon:{type:ee,default:"$ratingFull"},halfIncrements:Boolean,hover:Boolean,length:{type:[Number,String],default:5},readonly:Boolean,modelValue:{type:[Number,String],default:0},itemLabels:Array,itemLabelPosition:{type:String,default:"top",validator:n=>["top","bottom"].includes(n)},ripple:Boolean,...Xt(),...We(),...$l(),...re(),...ue()},"VRating"),VM=Bt()({name:"VRating",props:EM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{t:h}=Rn(),{themeClasses:c}=ve(n),g=ne(n,"modelValue"),v=q(()=>rn(parseFloat(g.value),0,+n.length)),k=q(()=>gl(Number(n.length),1)),x=q(()=>k.value.flatMap(F=>n.halfIncrements?[F-.5,F]:[F])),I=Wt(-1),S=q(()=>x.value.map(F=>{const X=n.hover&&I.value>-1,R=v.value>=F,H=I.value>=F,W=(X?H:R)?n.fullIcon:n.emptyIcon,_=n.activeColor??n.color,tt=R||H?_:n.color;return{isFilled:R,isHovered:H,icon:W,color:tt}})),$=q(()=>[0,...x.value].map(F=>{function X(){I.value=F}function R(){I.value=-1}function H(){n.disabled||n.readonly||(g.value=v.value===F&&n.clearable?0:F)}return{onMouseenter:n.hover?X:void 0,onMouseleave:n.hover?R:void 0,onClick:H}})),B=q(()=>n.name??`v-rating-${hn()}`);function P(F){var Y,G;let{value:X,index:R,showStar:H=!0}=F;const{onMouseenter:U,onMouseleave:W,onClick:_}=$.value[R+1],tt=`${B.value}-${String(X).replace(".","-")}`,nt={color:(Y=S.value[R])==null?void 0:Y.color,density:n.density,disabled:n.disabled,icon:(G=S.value[R])==null?void 0:G.icon,ripple:n.ripple,size:n.size,variant:"plain"};return t(Kt,null,[t("label",{for:tt,class:{"v-rating__item--half":n.halfIncrements&&X%1>0,"v-rating__item--full":n.halfIncrements&&X%1===0},onMouseenter:U,onMouseleave:W,onClick:_},[t("span",{class:"v-rating__hidden"},[h(n.itemAriaLabel,X,n.length)]),H?r.item?r.item({...S.value[R],props:nt,value:X,index:R,rating:v.value}):t(pn,o({"aria-label":h(n.itemAriaLabel,X,n.length)},nt),null):void 0]),t("input",{class:"v-rating__hidden",name:B.value,id:tt,type:"radio",value:X,checked:v.value===X,tabindex:-1,readonly:n.readonly,disabled:n.disabled},null)])}function D(F){return r["item-label"]?r["item-label"](F):F.label?t("span",null,[F.label]):t("span",null,[e(" ")])}return Dt(()=>{var X;const F=!!((X=n.itemLabels)!=null&&X.length)||r["item-label"];return t(n.tag,{class:["v-rating",{"v-rating--hover":n.hover,"v-rating--readonly":n.readonly},c.value,n.class],style:n.style},{default:()=>[t(P,{value:0,index:-1,showStar:!1},null),k.value.map((R,H)=>{var U,W;return t("div",{class:"v-rating__wrapper"},[F&&n.itemLabelPosition==="top"?D({value:R,index:H,label:(U=n.itemLabels)==null?void 0:U[H]}):void 0,t("div",{class:"v-rating__item"},[n.halfIncrements?t(Kt,null,[t(P,{value:R-.5,index:H*2},null),t(P,{value:R,index:H*2+1},null)]):t(P,{value:R,index:H},null)]),F&&n.itemLabelPosition==="bottom"?D({value:R,index:H,label:(W=n.itemLabels)==null?void 0:W[H]}):void 0])})]})}),{}}});function Zd(n){const r=Math.abs(n);return Math.sign(n)*(r/((1/.501-2)*(1-r)+1))}function Kd(n){let{selectedElement:l,containerSize:r,contentSize:h,isRtl:c,currentScrollOffset:g,isHorizontal:v}=n;const k=v?l.clientWidth:l.clientHeight,x=v?l.offsetLeft:l.offsetTop,I=c&&v?h-x-k:x,S=r+g,$=k+I,B=k*.4;return I<=g?g=Math.max(I-B,0):S<=$&&(g=Math.min(g-(S-$-B),h-r)),g}function _M(n){let{selectedElement:l,containerSize:r,contentSize:h,isRtl:c,isHorizontal:g}=n;const v=g?l.clientWidth:l.clientHeight,k=g?l.offsetLeft:l.offsetTop,x=c&&g?h-k-v/2-r/2:k+v/2-r/2;return Math.min(h-r,Math.max(0,x))}const Pg=Symbol.for("vuetify:v-slide-group"),Lg=mt({centerActive:Boolean,direction:{type:String,default:"horizontal"},symbol:{type:null,default:Pg},nextIcon:{type:ee,default:"$next"},prevIcon:{type:ee,default:"$prev"},showArrows:{type:[Boolean,String],validator:n=>typeof n=="boolean"||["always","desktop","mobile"].includes(n)},...Xt(),...re(),...vo({selectedClass:"v-slide-group-item--active"})},"VSlideGroup"),ah=Bt()({name:"VSlideGroup",props:Lg(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{isRtl:h}=Ue(),{mobile:c}=Ar(),g=jr(n,n.symbol),v=Wt(!1),k=Wt(0),x=Wt(0),I=Wt(0),S=q(()=>n.direction==="horizontal"),{resizeRef:$,contentRect:B}=sl(),{resizeRef:P,contentRect:D}=sl(),F=q(()=>g.selected.value.length?g.items.value.findIndex(At=>At.id===g.selected.value[0]):-1),X=q(()=>g.selected.value.length?g.items.value.findIndex(At=>At.id===g.selected.value[g.selected.value.length-1]):-1);if(ze){let At=-1;_t(()=>[g.selected.value,B.value,D.value,S.value],()=>{cancelAnimationFrame(At),At=requestAnimationFrame(()=>{if(B.value&&D.value){const Tt=S.value?"width":"height";x.value=B.value[Tt],I.value=D.value[Tt],v.value=x.value+1=0&&P.value){const Tt=P.value.children[X.value];F.value===0||!v.value?k.value=0:n.centerActive?k.value=_M({selectedElement:Tt,containerSize:x.value,contentSize:I.value,isRtl:h.value,isHorizontal:S.value}):v.value&&(k.value=Kd({selectedElement:Tt,containerSize:x.value,contentSize:I.value,isRtl:h.value,currentScrollOffset:k.value,isHorizontal:S.value}))}})})}const R=Wt(!1);let H=0,U=0;function W(At){const Tt=S.value?"clientX":"clientY";U=(h.value&&S.value?-1:1)*k.value,H=At.touches[0][Tt],R.value=!0}function _(At){if(!v.value)return;const Tt=S.value?"clientX":"clientY",Ft=h.value&&S.value?-1:1;k.value=Ft*(U+H-At.touches[0][Tt])}function tt(At){const Tt=I.value-x.value;k.value<0||!v.value?k.value=0:k.value>=Tt&&(k.value=Tt),R.value=!1}function nt(){$.value&&($.value[S.value?"scrollLeft":"scrollTop"]=0)}const Y=Wt(!1);function G(At){if(Y.value=!0,!(!v.value||!P.value)){for(const Tt of At.composedPath())for(const Ft of P.value.children)if(Ft===Tt){k.value=Kd({selectedElement:Ft,containerSize:x.value,contentSize:I.value,isRtl:h.value,currentScrollOffset:k.value,isHorizontal:S.value});return}}}function et(At){Y.value=!1}function st(At){var Tt;!Y.value&&!(At.relatedTarget&&((Tt=P.value)!=null&&Tt.contains(At.relatedTarget)))&&ht()}function rt(At){P.value&&(S.value?At.key==="ArrowRight"?ht(h.value?"prev":"next"):At.key==="ArrowLeft"&&ht(h.value?"next":"prev"):At.key==="ArrowDown"?ht("next"):At.key==="ArrowUp"&&ht("prev"),At.key==="Home"?ht("first"):At.key==="End"&&ht("last"))}function ht(At){var Tt,Ft,Qt,Jt,Et;if(P.value)if(!At)(Tt=ss(P.value)[0])==null||Tt.focus();else if(At==="next"){const ut=(Ft=P.value.querySelector(":focus"))==null?void 0:Ft.nextElementSibling;ut?ut.focus():ht("first")}else if(At==="prev"){const ut=(Qt=P.value.querySelector(":focus"))==null?void 0:Qt.previousElementSibling;ut?ut.focus():ht("last")}else At==="first"?(Jt=P.value.firstElementChild)==null||Jt.focus():At==="last"&&((Et=P.value.lastElementChild)==null||Et.focus())}function dt(At){const Tt=k.value+(At==="prev"?-1:1)*x.value;k.value=rn(Tt,0,I.value-x.value)}const Ct=q(()=>{let At=k.value>I.value-x.value?-(I.value-x.value)+Zd(I.value-x.value-k.value):-k.value;k.value<=0&&(At=Zd(-k.value));const Tt=h.value&&S.value?-1:1;return{transform:`translate${S.value?"X":"Y"}(${Tt*At}px)`,transition:R.value?"none":"",willChange:R.value?"transform":""}}),xt=q(()=>({next:g.next,prev:g.prev,select:g.select,isSelected:g.isSelected})),wt=q(()=>{switch(n.showArrows){case"always":return!0;case"desktop":return!c.value;case!0:return v.value||Math.abs(k.value)>0;case"mobile":return c.value||v.value||Math.abs(k.value)>0;default:return!c.value&&(v.value||Math.abs(k.value)>0)}}),gt=q(()=>Math.abs(k.value)>0),It=q(()=>I.value>Math.abs(k.value)+x.value);return Dt(()=>t(n.tag,{class:["v-slide-group",{"v-slide-group--vertical":!S.value,"v-slide-group--has-affixes":wt.value,"v-slide-group--is-overflowing":v.value},n.class],style:n.style,tabindex:Y.value||g.selected.value.length?-1:0,onFocus:st},{default:()=>{var At,Tt,Ft;return[wt.value&&t("div",{key:"prev",class:["v-slide-group__prev",{"v-slide-group__prev--disabled":!gt.value}],onClick:()=>dt("prev")},[((At=r.prev)==null?void 0:At.call(r,xt.value))??t(V0,null,{default:()=>[t(xe,{icon:h.value?n.nextIcon:n.prevIcon},null)]})]),t("div",{key:"container",ref:$,class:"v-slide-group__container",onScroll:nt},[t("div",{ref:P,class:"v-slide-group__content",style:Ct.value,onTouchstartPassive:W,onTouchmovePassive:_,onTouchendPassive:tt,onFocusin:G,onFocusout:et,onKeydown:rt},[(Tt=r.default)==null?void 0:Tt.call(r,xt.value)])]),wt.value&&t("div",{key:"next",class:["v-slide-group__next",{"v-slide-group__next--disabled":!It.value}],onClick:()=>dt("next")},[((Ft=r.next)==null?void 0:Ft.call(r,xt.value))??t(V0,null,{default:()=>[t(xe,{icon:h.value?n.prevIcon:n.nextIcon},null)]})])]}})),{selected:g.selected,scrollTo:dt,scrollOffset:k,focus:ht}}}),WM=Bt()({name:"VSlideGroupItem",props:fo(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const h=mo(n,Pg);return()=>{var c;return(c=r.default)==null?void 0:c.call(r,{isSelected:h.isSelected.value,select:h.select,toggle:h.toggle,selectedClass:h.selectedClass.value})}}});const XM=mt({multiLine:Boolean,timeout:{type:[Number,String],default:5e3},vertical:Boolean,...Ql({location:"bottom"}),...bo(),...Ce(),..._n(),...ue(),...On(Bs({transition:"v-snackbar-transition"}),["persistent","noClickAnimation","scrim","scrollStrategy"])},"VSnackbar"),qM=Bt()({name:"VSnackbar",props:XM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{locationStyles:c}=Jl(n),{positionClasses:g}=Mo(n),{scopeId:v}=zo(),{themeClasses:k}=ve(n),{colorClasses:x,colorStyles:I,variantClasses:S}=Nr(n),{roundedClasses:$}=Ne(n),B=Lt();_t(h,D),_t(()=>n.timeout,D),Ve(()=>{h.value&&D()});let P=-1;function D(){window.clearTimeout(P);const X=Number(n.timeout);!h.value||X===-1||(P=window.setTimeout(()=>{h.value=!1},X))}function F(){window.clearTimeout(P)}return Dt(()=>{const[X]=xl.filterProps(n);return t(xl,o({ref:B,class:["v-snackbar",{"v-snackbar--active":h.value,"v-snackbar--multi-line":n.multiLine&&!n.vertical,"v-snackbar--vertical":n.vertical},g.value,n.class],style:n.style},X,{modelValue:h.value,"onUpdate:modelValue":R=>h.value=R,contentProps:o({class:["v-snackbar__wrapper",k.value,x.value,$.value,S.value],style:[c.value,I.value],onPointerenter:F,onPointerleave:D},X.contentProps),persistent:!0,noClickAnimation:!0,scrim:!1,scrollStrategy:"none",_disableGlobalStack:!0},v),{default:()=>[Hr(!1,"v-snackbar"),r.default&&t("div",{class:"v-snackbar__content",role:"status","aria-live":"polite"},[r.default()]),r.actions&&t(ke,{defaults:{VBtn:{variant:"text",ripple:!1}}},{default:()=>[t("div",{class:"v-snackbar__actions"},[r.actions()])]})],activator:r.activator})}),Jn({},B)}});const YM=mt({indeterminate:Boolean,inset:Boolean,flat:Boolean,loading:{type:[Boolean,String],default:!1},...Al(),...ii()},"VSwitch"),UM=Bt()({name:"VSwitch",inheritAttrs:!1,props:YM(),emits:{"update:focused":n=>!0,"update:modelValue":()=>!0,"update:indeterminate":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const c=ne(n,"indeterminate"),g=ne(n,"modelValue"),{loaderClasses:v}=ai(n),{isFocused:k,focus:x,blur:I}=er(n),S=Lt(),$=q(()=>typeof n.loading=="string"&&n.loading!==""?n.loading:n.color),B=hn(),P=q(()=>n.id||`switch-${B}`);function D(){c.value&&(c.value=!1)}function F(X){var R,H;X.stopPropagation(),X.preventDefault(),(H=(R=S.value)==null?void 0:R.input)==null||H.click()}return Dt(()=>{const[X,R]=$r(r),[H,U]=Ke.filterProps(n),[W,_]=zr.filterProps(n);return t(Ke,o({class:["v-switch",{"v-switch--inset":n.inset},{"v-switch--indeterminate":c.value},v.value,n.class],style:n.style},X,H,{id:P.value,focused:k.value}),{...h,default:tt=>{let{id:nt,messagesId:Y,isDisabled:G,isReadonly:et,isValid:st}=tt;return t(zr,o({ref:S},W,{modelValue:g.value,"onUpdate:modelValue":[rt=>g.value=rt,D],id:nt.value,"aria-describedby":Y.value,type:"checkbox","aria-checked":c.value?"mixed":void 0,disabled:G.value,readonly:et.value,onFocus:x,onBlur:I},R),{...h,default:()=>t("div",{class:"v-switch__track",onClick:F},null),input:rt=>{let{inputNode:ht,icon:dt}=rt;return t(Kt,null,[ht,t("div",{class:["v-switch__thumb",{"v-switch__thumb--filled":dt||n.loading}]},[t(u2,null,{default:()=>[n.loading?t(M2,{name:"v-switch",active:!0,color:st.value===!1?void 0:$.value},{default:Ct=>h.loader?h.loader(Ct):t(m2,{active:Ct.isActive,color:Ct.color,indeterminate:!0,size:"16",width:"2"},null)}):dt&&t(xe,{key:dt,icon:dt,size:"x-small"},null)]})])])}})}})}),{}}});const GM=mt({color:String,height:[Number,String],window:Boolean,...Xt(),..._e(),...go(),...Ce(),...re(),...ue()},"VSystemBar"),ZM=Bt()({name:"VSystemBar",props:GM(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{backgroundColorClasses:c,backgroundColorStyles:g}=Pe(Ht(n,"color")),{elevationClasses:v}=Je(n),{roundedClasses:k}=Ne(n),{ssrBootStyles:x}=Br(),I=q(()=>n.height??(n.window?32:24)),{layoutItemStyles:S}=wo({id:n.name,order:q(()=>parseInt(n.order,10)),position:Wt("top"),layoutSize:I,elementSize:I,active:q(()=>!0),absolute:Ht(n,"absolute")});return Dt(()=>t(n.tag,{class:["v-system-bar",{"v-system-bar--window":n.window},h.value,c.value,v.value,k.value,n.class],style:[g.value,S.value,x.value,n.style]},r)),{}}});const Dg=Symbol.for("vuetify:v-tabs"),KM=mt({fixed:Boolean,sliderColor:String,hideSlider:Boolean,direction:{type:String,default:"horizontal"},...On(x2({selectedClass:"v-tab--selected",variant:"text"}),["active","block","flat","location","position","symbol"])},"VTab"),Og=Bt()({name:"VTab",props:KM(),setup(n,l){let{slots:r,attrs:h}=l;const{textColorClasses:c,textColorStyles:g}=an(n,"sliderColor"),v=q(()=>n.direction==="horizontal"),k=Wt(!1),x=Lt(),I=Lt();function S($){var P,D;let{value:B}=$;if(k.value=B,B){const F=(D=(P=x.value)==null?void 0:P.$el.parentElement)==null?void 0:D.querySelector(".v-tab--selected .v-tab__slider"),X=I.value;if(!F||!X)return;const R=getComputedStyle(F).color,H=F.getBoundingClientRect(),U=X.getBoundingClientRect(),W=v.value?"x":"y",_=v.value?"X":"Y",tt=v.value?"right":"bottom",nt=v.value?"width":"height",Y=H[W],G=U[W],et=Y>G?H[tt]-U[tt]:H[W]-U[W],st=Math.sign(et)>0?v.value?"right":"bottom":Math.sign(et)<0?v.value?"left":"top":"center",ht=(Math.abs(et)+(Math.sign(et)<0?H[nt]:U[nt]))/Math.max(H[nt],U[nt]),dt=H[nt]/U[nt],Ct=1.5;ur(X,{backgroundColor:[R,"currentcolor"],transform:[`translate${_}(${et}px) scale${_}(${dt})`,`translate${_}(${et/Ct}px) scale${_}(${(ht-1)/Ct+1})`,"none"],transformOrigin:Array(3).fill(st)},{duration:225,easing:as})}}return Dt(()=>{const[$]=pn.filterProps(n);return t(pn,o({symbol:Dg,ref:x,class:["v-tab",n.class],style:n.style,tabindex:k.value?0:-1,role:"tab","aria-selected":String(k.value),active:!1,block:n.fixed,maxWidth:n.fixed?300:void 0,rounded:0},$,h,{"onGroup:selected":S}),{default:()=>{var B;return[((B=r.default)==null?void 0:B.call(r))??n.text,!n.hideSlider&&t("div",{ref:I,class:["v-tab__slider",c.value],style:g.value},null)]}})}),{}}});function QM(n){return n?n.map(l=>typeof l=="string"?{title:l,value:l}:l):[]}const JM=mt({alignTabs:{type:String,default:"start"},color:String,fixedTabs:Boolean,items:{type:Array,default:()=>[]},stacked:Boolean,bgColor:String,grow:Boolean,height:{type:[Number,String],default:void 0},hideSlider:Boolean,sliderColor:String,...Lg({mandatory:"force"}),...We(),...re()},"VTabs"),tx=Bt()({name:"VTabs",props:JM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),c=q(()=>QM(n.items)),{densityClasses:g}=dn(n),{backgroundColorClasses:v,backgroundColorStyles:k}=Pe(Ht(n,"bgColor"));return Te({VTab:{color:Ht(n,"color"),direction:Ht(n,"direction"),stacked:Ht(n,"stacked"),fixed:Ht(n,"fixedTabs"),sliderColor:Ht(n,"sliderColor"),hideSlider:Ht(n,"hideSlider")}}),Dt(()=>{const[x]=ah.filterProps(n);return t(ah,o(x,{modelValue:h.value,"onUpdate:modelValue":I=>h.value=I,class:["v-tabs",`v-tabs--${n.direction}`,`v-tabs--align-tabs-${n.alignTabs}`,{"v-tabs--fixed-tabs":n.fixedTabs,"v-tabs--grow":n.grow,"v-tabs--stacked":n.stacked},g.value,v.value,n.class],style:[{"--v-tabs-height":qt(n.height)},k.value,n.style],role:"tablist",symbol:Dg}),{default:()=>[r.default?r.default():c.value.map(I=>t(Og,o(I,{key:I.title}),null))]})}),{}}});const ex=mt({fixedHeader:Boolean,fixedFooter:Boolean,height:[Number,String],hover:Boolean,...Xt(),...We(),...re(),...ue()},"VTable"),nx=Bt()({name:"VTable",props:ex(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{densityClasses:c}=dn(n);return Dt(()=>t(n.tag,{class:["v-table",{"v-table--fixed-height":!!n.height,"v-table--fixed-header":n.fixedHeader,"v-table--fixed-footer":n.fixedFooter,"v-table--has-top":!!r.top,"v-table--has-bottom":!!r.bottom,"v-table--hover":n.hover},h.value,c.value,n.class],style:n.style},{default:()=>{var g,v,k;return[(g=r.top)==null?void 0:g.call(r),r.default?t("div",{class:"v-table__wrapper",style:{height:qt(n.height)}},[t("table",null,[r.default()])]):(v=r.wrapper)==null?void 0:v.call(r),(k=r.bottom)==null?void 0:k.call(r)]}})),{}}});const lx=mt({autoGrow:Boolean,autofocus:Boolean,counter:[Boolean,Number,String],counterValue:Function,prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,noResize:Boolean,rows:{type:[Number,String],default:5,validator:n=>!isNaN(parseFloat(n))},maxRows:{type:[Number,String],validator:n=>!isNaN(parseFloat(n))},suffix:String,modelModifiers:Object,...Al(),...wi()},"VTextarea"),rx=Bt()({name:"VTextarea",directives:{Intersect:si},inheritAttrs:!1,props:lx(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const g=ne(n,"modelValue"),{isFocused:v,focus:k,blur:x}=er(n),I=q(()=>typeof n.counterValue=="function"?n.counterValue(g.value):(g.value||"").toString().length),S=q(()=>{if(r.maxlength)return r.maxlength;if(!(!n.counter||typeof n.counter!="number"&&typeof n.counter!="string"))return n.counter});function $(st,rt){var ht,dt;!n.autofocus||!st||(dt=(ht=rt[0].target)==null?void 0:ht.focus)==null||dt.call(ht)}const B=Lt(),P=Lt(),D=Wt(""),F=Lt(),X=q(()=>n.persistentPlaceholder||v.value||n.active);function R(){var st;F.value!==document.activeElement&&((st=F.value)==null||st.focus()),v.value||k()}function H(st){R(),h("click:control",st)}function U(st){h("mousedown:control",st)}function W(st){st.stopPropagation(),R(),we(()=>{g.value="",n2(n["onClick:clear"],st)})}function _(st){var ht;const rt=st.target;if(g.value=rt.value,(ht=n.modelModifiers)!=null&&ht.trim){const dt=[rt.selectionStart,rt.selectionEnd];we(()=>{rt.selectionStart=dt[0],rt.selectionEnd=dt[1]})}}const tt=Lt(),nt=Lt(+n.rows),Y=q(()=>["plain","underlined"].includes(n.variant));bn(()=>{n.autoGrow||(nt.value=+n.rows)});function G(){n.autoGrow&&we(()=>{if(!tt.value||!P.value)return;const st=getComputedStyle(tt.value),rt=getComputedStyle(P.value.$el),ht=parseFloat(st.getPropertyValue("--v-field-padding-top"))+parseFloat(st.getPropertyValue("--v-input-padding-top"))+parseFloat(st.getPropertyValue("--v-field-padding-bottom")),dt=tt.value.scrollHeight,Ct=parseFloat(st.lineHeight),xt=Math.max(parseFloat(n.rows)*Ct+ht,parseFloat(rt.getPropertyValue("--v-input-control-height"))),wt=parseFloat(n.maxRows)*Ct+ht||1/0,gt=rn(dt??0,xt,wt);nt.value=Math.floor((gt-ht)/Ct),D.value=qt(gt)})}Ve(G),_t(g,G),_t(()=>n.rows,G),_t(()=>n.maxRows,G),_t(()=>n.density,G);let et;return _t(tt,st=>{st?(et=new ResizeObserver(G),et.observe(tt.value)):et==null||et.disconnect()}),Qe(()=>{et==null||et.disconnect()}),Dt(()=>{const st=!!(c.counter||n.counter||n.counterValue),rt=!!(st||c.details),[ht,dt]=$r(r),[{modelValue:Ct,...xt}]=Ke.filterProps(n),[wt]=S2(n);return t(Ke,o({ref:B,modelValue:g.value,"onUpdate:modelValue":gt=>g.value=gt,class:["v-textarea v-text-field",{"v-textarea--prefixed":n.prefix,"v-textarea--suffixed":n.suffix,"v-text-field--prefixed":n.prefix,"v-text-field--suffixed":n.suffix,"v-textarea--auto-grow":n.autoGrow,"v-textarea--no-resize":n.noResize||n.autoGrow,"v-text-field--plain-underlined":Y.value},n.class],style:n.style},ht,xt,{centerAffix:nt.value===1&&!Y.value,focused:v.value}),{...c,default:gt=>{let{isDisabled:It,isDirty:At,isReadonly:Tt,isValid:Ft}=gt;return t(Hs,o({ref:P,style:{"--v-textarea-control-height":D.value},onClick:H,onMousedown:U,"onClick:clear":W,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"]},wt,{active:X.value||At.value,centerAffix:nt.value===1&&!Y.value,dirty:At.value||n.dirty,disabled:It.value,focused:v.value,error:Ft.value===!1}),{...c,default:Qt=>{let{props:{class:Jt,...Et}}=Qt;return t(Kt,null,[n.prefix&&t("span",{class:"v-text-field__prefix"},[n.prefix]),$e(t("textarea",o({ref:F,class:Jt,value:g.value,onInput:_,autofocus:n.autofocus,readonly:Tt.value,disabled:It.value,placeholder:n.placeholder,rows:n.rows,name:n.name,onFocus:R,onBlur:x},Et,dt),null),[[Mn("intersect"),{handler:$},null,{once:!0}]]),n.autoGrow&&$e(t("textarea",{class:[Jt,"v-textarea__sizer"],"onUpdate:modelValue":ut=>g.value=ut,ref:tt,readonly:!0,"aria-hidden":"true"},null),[[ls,g.value]]),n.suffix&&t("span",{class:"v-text-field__suffix"},[n.suffix])])}})},details:rt?gt=>{var It;return t(Kt,null,[(It=c.details)==null?void 0:It.call(c,gt),st&&t(Kt,null,[t("span",null,null),t(gi,{active:n.persistentCounter||v.value,value:I.value,max:S.value},c.counter)])])}:void 0})}),Jn({},B,P,F)}});const ox=mt({withBackground:Boolean,...Xt(),...ue(),...re()},"VThemeProvider"),sx=Bt()({name:"VThemeProvider",props:ox(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n);return()=>{var c;return n.withBackground?t(n.tag,{class:["v-theme-provider",h.value,n.class],style:n.style},{default:()=>{var g;return[(g=r.default)==null?void 0:g.call(r)]}}):(c=r.default)==null?void 0:c.call(r)}}});const ax=mt({align:{type:String,default:"center",validator:n=>["center","start"].includes(n)},direction:{type:String,default:"vertical",validator:n=>["vertical","horizontal"].includes(n)},justify:{type:String,default:"auto",validator:n=>["auto","center"].includes(n)},side:{type:String,validator:n=>n==null||["start","end"].includes(n)},lineInset:{type:[String,Number],default:0},lineThickness:{type:[String,Number],default:2},lineColor:String,truncateLine:{type:String,validator:n=>["start","end","both"].includes(n)},...Xt(),...We(),...re(),...ue()},"VTimeline"),ix=Bt()({name:"VTimeline",props:ax(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{densityClasses:c}=dn(n),{rtlClasses:g}=Ue();Te({VTimelineDivider:{lineColor:Ht(n,"lineColor")},VTimelineItem:{density:Ht(n,"density"),lineInset:Ht(n,"lineInset")}});const v=q(()=>{const x=n.side?n.side:n.density!=="default"?"end":null;return x&&`v-timeline--side-${x}`}),k=q(()=>{const x=["v-timeline--truncate-line-start","v-timeline--truncate-line-end"];switch(n.truncateLine){case"both":return x;case"start":return x[0];case"end":return x[1];default:return null}});return Dt(()=>t(n.tag,{class:["v-timeline",`v-timeline--${n.direction}`,`v-timeline--align-${n.align}`,`v-timeline--justify-${n.justify}`,k.value,{"v-timeline--inset-line":!!n.lineInset},h.value,c.value,v.value,g.value,n.class],style:[{"--v-timeline-line-thickness":qt(n.lineThickness)},n.style]},r)),{}}}),hx=mt({dotColor:String,fillDot:Boolean,hideDot:Boolean,icon:ee,iconColor:String,lineColor:String,...Xt(),...Ce(),...$l(),..._e()},"VTimelineDivider"),dx=Bt()({name:"VTimelineDivider",props:hx(),setup(n,l){let{slots:r}=l;const{sizeClasses:h,sizeStyles:c}=ko(n,"v-timeline-divider__dot"),{backgroundColorStyles:g,backgroundColorClasses:v}=Pe(Ht(n,"dotColor")),{roundedClasses:k}=Ne(n,"v-timeline-divider__dot"),{elevationClasses:x}=Je(n),{backgroundColorClasses:I,backgroundColorStyles:S}=Pe(Ht(n,"lineColor"));return Dt(()=>t("div",{class:["v-timeline-divider",{"v-timeline-divider--fill-dot":n.fillDot},n.class],style:n.style},[t("div",{class:["v-timeline-divider__before",I.value],style:S.value},null),!n.hideDot&&t("div",{key:"dot",class:["v-timeline-divider__dot",x.value,k.value,h.value],style:c.value},[t("div",{class:["v-timeline-divider__inner-dot",v.value,k.value],style:g.value},[r.default?t(ke,{key:"icon-defaults",disabled:!n.icon,defaults:{VIcon:{color:n.iconColor,icon:n.icon,size:n.size}}},r.default):t(xe,{key:"icon",color:n.iconColor,icon:n.icon,size:n.size},null)])]),t("div",{class:["v-timeline-divider__after",I.value],style:S.value},null)])),{}}}),cx=mt({density:String,dotColor:String,fillDot:Boolean,hideDot:Boolean,hideOpposite:{type:Boolean,default:void 0},icon:ee,iconColor:String,lineInset:[Number,String],...Xt(),...Tn(),..._e(),...Ce(),...$l(),...re()},"VTimelineItem"),ux=Bt()({name:"VTimelineItem",props:cx(),setup(n,l){let{slots:r}=l;const{dimensionStyles:h}=En(n),c=Wt(0),g=Lt();return _t(g,v=>{var k;v&&(c.value=((k=v.$el.querySelector(".v-timeline-divider__dot"))==null?void 0:k.getBoundingClientRect().width)??0)},{flush:"post"}),Dt(()=>{var v,k;return t("div",{class:["v-timeline-item",{"v-timeline-item--fill-dot":n.fillDot},n.class],style:[{"--v-timeline-dot-size":qt(c.value),"--v-timeline-line-inset":n.lineInset?`calc(var(--v-timeline-dot-size) / 2 + ${qt(n.lineInset)})`:qt(0)},n.style]},[t("div",{class:"v-timeline-item__body",style:h.value},[(v=r.default)==null?void 0:v.call(r)]),t(dx,{ref:g,hideDot:n.hideDot,icon:n.icon,iconColor:n.iconColor,size:n.size,elevation:n.elevation,dotColor:n.dotColor,fillDot:n.fillDot,rounded:n.rounded},{default:r.icon}),n.density!=="compact"&&t("div",{class:"v-timeline-item__opposite"},[!n.hideOpposite&&((k=r.opposite)==null?void 0:k.call(r))])])}),{}}}),px=mt({...Xt(),..._n({variant:"text"})},"VToolbarItems"),gx=Bt()({name:"VToolbarItems",props:px(),setup(n,l){let{slots:r}=l;return Te({VBtn:{color:Ht(n,"color"),height:"inherit",variant:Ht(n,"variant")}}),Dt(()=>{var h;return t("div",{class:["v-toolbar-items",n.class],style:n.style},[(h=r.default)==null?void 0:h.call(r)])}),{}}});const wx=mt({id:String,text:String,...On(Bs({closeOnBack:!1,location:"end",locationStrategy:"connected",eager:!0,minWidth:0,offset:10,openOnClick:!1,openOnHover:!0,origin:"auto",scrim:!1,scrollStrategy:"reposition",transition:!1}),["absolute","persistent"])},"VTooltip"),vx=Bt()({name:"VTooltip",props:wx(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{scopeId:c}=zo(),g=hn(),v=q(()=>n.id||`v-tooltip-${g}`),k=Lt(),x=q(()=>n.location.split(" ").length>1?n.location:n.location+" center"),I=q(()=>n.origin==="auto"||n.origin==="overlap"||n.origin.split(" ").length>1||n.location.split(" ").length>1?n.origin:n.origin+" center"),S=q(()=>n.transition?n.transition:h.value?"scale-transition":"fade-transition"),$=q(()=>o({"aria-describedby":v.value},n.activatorProps));return Dt(()=>{const[B]=xl.filterProps(n);return t(xl,o({ref:k,class:["v-tooltip",n.class],style:n.style,id:v.value},B,{modelValue:h.value,"onUpdate:modelValue":P=>h.value=P,transition:S.value,absolute:!0,location:x.value,origin:I.value,persistent:!0,role:"tooltip",activatorProps:$.value,_disableGlobalStack:!0},c),{activator:r.activator,default:function(){var X;for(var P=arguments.length,D=new Array(P),F=0;F!0},setup(n,l){let{slots:r}=l;const h=A4(n,"validation");return()=>{var c;return(c=r.default)==null?void 0:c.call(r,h)}}}),mx=Object.freeze(Object.defineProperty({__proto__:null,VAlert:X7,VAlertTitle:M4,VApp:e7,VAppBar:M7,VAppBarNavIcon:E7,VAppBarTitle:V7,VAutocomplete:d8,VAvatar:Kl,VBadge:u8,VBanner:w8,VBannerActions:eg,VBannerText:ng,VBottomNavigation:f8,VBreadcrumbs:M8,VBreadcrumbsDivider:lg,VBreadcrumbsItem:rg,VBtn:pn,VBtnGroup:X0,VBtnToggle:S7,VCard:I8,VCardActions:og,VCardItem:ig,VCardSubtitle:sg,VCardText:hg,VCardTitle:ag,VCarousel:P8,VCarouselItem:D8,VCheckbox:J7,VCheckboxBtn:ao,VChip:As,VChipGroup:nb,VClassIcon:d2,VCode:O8,VCol:U9,VColorPicker:y9,VCombobox:$9,VComponentIcon:R0,VContainer:W9,VCounter:gi,VDefaultsProvider:ke,VDialog:B9,VDialogBottomTransition:o7,VDialogTopTransition:s7,VDialogTransition:ri,VDivider:T4,VExpandTransition:oi,VExpandXTransition:g2,VExpansionPanel:D9,VExpansionPanelText:bg,VExpansionPanelTitle:xg,VExpansionPanels:j9,VFabTransition:r7,VFadeTransition:V0,VField:Hs,VFieldLabel:Lo,VFileInput:F9,VFooter:T9,VForm:V9,VHover:rM,VIcon:xe,VImg:xr,VInput:Ke,VItem:aM,VItemGroup:sM,VKbd:iM,VLabel:xo,VLayout:dM,VLayoutItem:uM,VLazy:gM,VLigatureIcon:v6,VList:ci,VListGroup:G0,VListImg:zb,VListItem:Ml,VListItemAction:yb,VListItemMedia:Sb,VListItemSubtitle:O4,VListItemTitle:F4,VListSubheader:R4,VLocaleProvider:vM,VMain:mM,VMenu:pi,VMessages:C4,VNavigationDrawer:SM,VNoSsr:$M,VOverlay:xl,VPagination:HM,VParallax:PM,VProgressCircular:m2,VProgressLinear:k2,VRadio:DM,VRadioGroup:FM,VRangeSlider:TM,VRating:VM,VResponsive:_0,VRow:eM,VScaleTransition:u2,VScrollXReverseTransition:i7,VScrollXTransition:a7,VScrollYReverseTransition:d7,VScrollYTransition:h7,VSelect:o8,VSelectionControl:zr,VSelectionControlGroup:z4,VSheet:sh,VSlideGroup:ah,VSlideGroupItem:WM,VSlideXReverseTransition:u7,VSlideXTransition:c7,VSlideYReverseTransition:p7,VSlideYTransition:p2,VSlider:oh,VSnackbar:qM,VSpacer:nM,VSvgIcon:h2,VSwitch:UM,VSystemBar:ZM,VTab:Og,VTable:nx,VTabs:tx,VTextField:Ir,VTextarea:rx,VThemeProvider:sx,VTimeline:ix,VTimelineItem:ux,VToolbar:W0,VToolbarItems:gx,VToolbarTitle:c2,VTooltip:vx,VValidation:fx,VVirtualScroll:fi,VWindow:J0,VWindowItem:th},Symbol.toStringTag,{value:"Module"}));function kx(n,l){const r=l.modifiers||{},h=l.value,{once:c,immediate:g,...v}=r,k=!Object.keys(v).length,{handler:x,options:I}=typeof h=="object"?h:{handler:h,options:{attributes:(v==null?void 0:v.attr)??k,characterData:(v==null?void 0:v.char)??k,childList:(v==null?void 0:v.child)??k,subtree:(v==null?void 0:v.sub)??k}},S=new MutationObserver(function(){let $=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],B=arguments.length>1?arguments[1]:void 0;x==null||x($,B),c&&Fg(n,l)});g&&(x==null||x([],S)),n._mutate=Object(n._mutate),n._mutate[l.instance.$.uid]={observer:S},S.observe(n,I)}function Fg(n,l){var r;(r=n._mutate)!=null&&r[l.instance.$.uid]&&(n._mutate[l.instance.$.uid].observer.disconnect(),delete n._mutate[l.instance.$.uid])}const bx={mounted:kx,unmounted:Fg};function Mx(n,l){var c,g;const r=l.value,h={passive:!((c=l.modifiers)!=null&&c.active)};window.addEventListener("resize",r,h),n._onResize=Object(n._onResize),n._onResize[l.instance.$.uid]={handler:r,options:h},(g=l.modifiers)!=null&&g.quiet||r()}function xx(n,l){var c;if(!((c=n._onResize)!=null&&c[l.instance.$.uid]))return;const{handler:r,options:h}=n._onResize[l.instance.$.uid];window.removeEventListener("resize",r,h),delete n._onResize[l.instance.$.uid]}const zx={mounted:Mx,unmounted:xx};function Rg(n,l){const{self:r=!1}=l.modifiers??{},h=l.value,c=typeof h=="object"&&h.options||{passive:!0},g=typeof h=="function"||"handleEvent"in h?h:h.handler,v=r?n:l.arg?document.querySelector(l.arg):window;v&&(v.addEventListener("scroll",g,c),n._onScroll=Object(n._onScroll),n._onScroll[l.instance.$.uid]={handler:g,options:c,target:r?void 0:v})}function Tg(n,l){var g;if(!((g=n._onScroll)!=null&&g[l.instance.$.uid]))return;const{handler:r,options:h,target:c=n}=n._onScroll[l.instance.$.uid];c.removeEventListener("scroll",r,h),delete n._onScroll[l.instance.$.uid]}function Ix(n,l){l.value!==l.oldValue&&(Tg(n,l),Rg(n,l))}const yx={mounted:Rg,unmounted:Tg,updated:Ix},Cx=Object.freeze(Object.defineProperty({__proto__:null,ClickOutside:Q4,Intersect:a4,Mutate:bx,Resize:zx,Ripple:tr,Scroll:yx,Touch:B2},Symbol.toStringTag,{value:"Module"})),Sx={name:"PurpleTheme",dark:!1,variables:{"border-color":"#1e88e5","carousel-control-size":10},colors:{primary:"#1e88e5",secondary:"#5e35b1",info:"#03c9d7",success:"#00c853",accent:"#FFAB91",warning:"#ffc107",error:"#f44336",lightprimary:"#eef2f6",lightsecondary:"#ede7f6",lightsuccess:"#b9f6ca",lighterror:"#f9d8d8",lightwarning:"#fff8e1",darkText:"#212121",lightText:"#616161",darkprimary:"#1565c0",darksecondary:"#4527a0",borderLight:"#d0d0d0",inputBorder:"#787878",containerBg:"#eef2f6",surface:"#fff","on-surface-variant":"#fff",facebook:"#4267b2",twitter:"#1da1f2",linkedin:"#0e76a8",gray100:"#fafafa",primary200:"#90caf9",secondary200:"#b39ddb"}},$x=e4({components:mx,directives:Cx,theme:{defaultTheme:"PurpleTheme",themes:{PurpleTheme:Sx}},defaults:{VBtn:{},VCard:{rounded:"md"},VTextField:{rounded:"lg"},VTooltip:{location:"top"}}});/*! - * perfect-scrollbar v1.5.3 - * Copyright 2021 Hyunje Jun, MDBootstrap and Contributors - * Licensed under MIT - */function ll(n){return getComputedStyle(n)}function vn(n,l){for(var r in l){var h=l[r];typeof h=="number"&&(h=h+"px"),n.style[r]=h}return n}function Qs(n){var l=document.createElement("div");return l.className=n,l}var Qd=typeof Element<"u"&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function El(n,l){if(!Qd)throw new Error("No element matching method supported");return Qd.call(n,l)}function Yr(n){n.remove?n.remove():n.parentNode&&n.parentNode.removeChild(n)}function Jd(n,l){return Array.prototype.filter.call(n.children,function(r){return El(r,l)})}var De={main:"ps",rtl:"ps__rtl",element:{thumb:function(n){return"ps__thumb-"+n},rail:function(n){return"ps__rail-"+n},consuming:"ps__child--consume"},state:{focus:"ps--focus",clicking:"ps--clicking",active:function(n){return"ps--active-"+n},scrolling:function(n){return"ps--scrolling-"+n}}},Eg={x:null,y:null};function Vg(n,l){var r=n.element.classList,h=De.state.scrolling(l);r.contains(h)?clearTimeout(Eg[l]):r.add(h)}function _g(n,l){Eg[l]=setTimeout(function(){return n.isAlive&&n.element.classList.remove(De.state.scrolling(l))},n.settings.scrollingThreshold)}function Ax(n,l){Vg(n,l),_g(n,l)}var Ns=function(l){this.element=l,this.handlers={}},Wg={isEmpty:{configurable:!0}};Ns.prototype.bind=function(l,r){typeof this.handlers[l]>"u"&&(this.handlers[l]=[]),this.handlers[l].push(r),this.element.addEventListener(l,r,!1)};Ns.prototype.unbind=function(l,r){var h=this;this.handlers[l]=this.handlers[l].filter(function(c){return r&&c!==r?!0:(h.element.removeEventListener(l,c,!1),!1)})};Ns.prototype.unbindAll=function(){for(var l in this.handlers)this.unbind(l)};Wg.isEmpty.get=function(){var n=this;return Object.keys(this.handlers).every(function(l){return n.handlers[l].length===0})};Object.defineProperties(Ns.prototype,Wg);var Io=function(){this.eventElements=[]};Io.prototype.eventElement=function(l){var r=this.eventElements.filter(function(h){return h.element===l})[0];return r||(r=new Ns(l),this.eventElements.push(r)),r};Io.prototype.bind=function(l,r,h){this.eventElement(l).bind(r,h)};Io.prototype.unbind=function(l,r,h){var c=this.eventElement(l);c.unbind(r,h),c.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(c),1)};Io.prototype.unbindAll=function(){this.eventElements.forEach(function(l){return l.unbindAll()}),this.eventElements=[]};Io.prototype.once=function(l,r,h){var c=this.eventElement(l),g=function(v){c.unbind(r,g),h(v)};c.bind(r,g)};function Js(n){if(typeof window.CustomEvent=="function")return new CustomEvent(n);var l=document.createEvent("CustomEvent");return l.initCustomEvent(n,!1,!1,void 0),l}function ya(n,l,r,h,c){h===void 0&&(h=!0),c===void 0&&(c=!1);var g;if(l==="top")g=["contentHeight","containerHeight","scrollTop","y","up","down"];else if(l==="left")g=["contentWidth","containerWidth","scrollLeft","x","left","right"];else throw new Error("A proper axis should be provided");Bx(n,r,g,h,c)}function Bx(n,l,r,h,c){var g=r[0],v=r[1],k=r[2],x=r[3],I=r[4],S=r[5];h===void 0&&(h=!0),c===void 0&&(c=!1);var $=n.element;n.reach[x]=null,$[k]<1&&(n.reach[x]="start"),$[k]>n[g]-n[v]-1&&(n.reach[x]="end"),l&&($.dispatchEvent(Js("ps-scroll-"+x)),l<0?$.dispatchEvent(Js("ps-scroll-"+I)):l>0&&$.dispatchEvent(Js("ps-scroll-"+S)),h&&Ax(n,x)),n.reach[x]&&(l||c)&&$.dispatchEvent(Js("ps-"+x+"-reach-"+n.reach[x]))}function He(n){return parseInt(n,10)||0}function Hx(n){return El(n,"input,[contenteditable]")||El(n,"select,[contenteditable]")||El(n,"textarea,[contenteditable]")||El(n,"button,[contenteditable]")}function Nx(n){var l=ll(n);return He(l.width)+He(l.paddingLeft)+He(l.paddingRight)+He(l.borderLeftWidth)+He(l.borderRightWidth)}var Xr={isWebKit:typeof document<"u"&&"WebkitAppearance"in document.documentElement.style,supportsTouch:typeof window<"u"&&("ontouchstart"in window||"maxTouchPoints"in window.navigator&&window.navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:typeof navigator<"u"&&navigator.msMaxTouchPoints,isChrome:typeof navigator<"u"&&/Chrome/i.test(navigator&&navigator.userAgent)};function zl(n){var l=n.element,r=Math.floor(l.scrollTop),h=l.getBoundingClientRect();n.containerWidth=Math.round(h.width),n.containerHeight=Math.round(h.height),n.contentWidth=l.scrollWidth,n.contentHeight=l.scrollHeight,l.contains(n.scrollbarXRail)||(Jd(l,De.element.rail("x")).forEach(function(c){return Yr(c)}),l.appendChild(n.scrollbarXRail)),l.contains(n.scrollbarYRail)||(Jd(l,De.element.rail("y")).forEach(function(c){return Yr(c)}),l.appendChild(n.scrollbarYRail)),!n.settings.suppressScrollX&&n.containerWidth+n.settings.scrollXMarginOffset=n.railXWidth-n.scrollbarXWidth&&(n.scrollbarXLeft=n.railXWidth-n.scrollbarXWidth),n.scrollbarYTop>=n.railYHeight-n.scrollbarYHeight&&(n.scrollbarYTop=n.railYHeight-n.scrollbarYHeight),jx(l,n),n.scrollbarXActive?l.classList.add(De.state.active("x")):(l.classList.remove(De.state.active("x")),n.scrollbarXWidth=0,n.scrollbarXLeft=0,l.scrollLeft=n.isRtl===!0?n.contentWidth:0),n.scrollbarYActive?l.classList.add(De.state.active("y")):(l.classList.remove(De.state.active("y")),n.scrollbarYHeight=0,n.scrollbarYTop=0,l.scrollTop=0)}function tc(n,l){return n.settings.minScrollbarLength&&(l=Math.max(l,n.settings.minScrollbarLength)),n.settings.maxScrollbarLength&&(l=Math.min(l,n.settings.maxScrollbarLength)),l}function jx(n,l){var r={width:l.railXWidth},h=Math.floor(n.scrollTop);l.isRtl?r.left=l.negativeScrollAdjustment+n.scrollLeft+l.containerWidth-l.contentWidth:r.left=n.scrollLeft,l.isScrollbarXUsingBottom?r.bottom=l.scrollbarXBottom-h:r.top=l.scrollbarXTop+h,vn(l.scrollbarXRail,r);var c={top:h,height:l.railYHeight};l.isScrollbarYUsingRight?l.isRtl?c.right=l.contentWidth-(l.negativeScrollAdjustment+n.scrollLeft)-l.scrollbarYRight-l.scrollbarYOuterWidth-9:c.right=l.scrollbarYRight-n.scrollLeft:l.isRtl?c.left=l.negativeScrollAdjustment+n.scrollLeft+l.containerWidth*2-l.contentWidth-l.scrollbarYLeft-l.scrollbarYOuterWidth:c.left=l.scrollbarYLeft+n.scrollLeft,vn(l.scrollbarYRail,c),vn(l.scrollbarX,{left:l.scrollbarXLeft,width:l.scrollbarXWidth-l.railBorderXWidth}),vn(l.scrollbarY,{top:l.scrollbarYTop,height:l.scrollbarYHeight-l.railBorderYWidth})}function Px(n){n.element,n.event.bind(n.scrollbarY,"mousedown",function(l){return l.stopPropagation()}),n.event.bind(n.scrollbarYRail,"mousedown",function(l){var r=l.pageY-window.pageYOffset-n.scrollbarYRail.getBoundingClientRect().top,h=r>n.scrollbarYTop?1:-1;n.element.scrollTop+=h*n.containerHeight,zl(n),l.stopPropagation()}),n.event.bind(n.scrollbarX,"mousedown",function(l){return l.stopPropagation()}),n.event.bind(n.scrollbarXRail,"mousedown",function(l){var r=l.pageX-window.pageXOffset-n.scrollbarXRail.getBoundingClientRect().left,h=r>n.scrollbarXLeft?1:-1;n.element.scrollLeft+=h*n.containerWidth,zl(n),l.stopPropagation()})}function Lx(n){ec(n,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),ec(n,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])}function ec(n,l){var r=l[0],h=l[1],c=l[2],g=l[3],v=l[4],k=l[5],x=l[6],I=l[7],S=l[8],$=n.element,B=null,P=null,D=null;function F(H){H.touches&&H.touches[0]&&(H[c]=H.touches[0].pageY),$[x]=B+D*(H[c]-P),Vg(n,I),zl(n),H.stopPropagation(),H.type.startsWith("touch")&&H.changedTouches.length>1&&H.preventDefault()}function X(){_g(n,I),n[S].classList.remove(De.state.clicking),n.event.unbind(n.ownerDocument,"mousemove",F)}function R(H,U){B=$[x],U&&H.touches&&(H[c]=H.touches[0].pageY),P=H[c],D=(n[h]-n[r])/(n[g]-n[k]),U?n.event.bind(n.ownerDocument,"touchmove",F):(n.event.bind(n.ownerDocument,"mousemove",F),n.event.once(n.ownerDocument,"mouseup",X),H.preventDefault()),n[S].classList.add(De.state.clicking),H.stopPropagation()}n.event.bind(n[v],"mousedown",function(H){R(H)}),n.event.bind(n[v],"touchstart",function(H){R(H,!0)})}function Dx(n){var l=n.element,r=function(){return El(l,":hover")},h=function(){return El(n.scrollbarX,":focus")||El(n.scrollbarY,":focus")};function c(g,v){var k=Math.floor(l.scrollTop);if(g===0){if(!n.scrollbarYActive)return!1;if(k===0&&v>0||k>=n.contentHeight-n.containerHeight&&v<0)return!n.settings.wheelPropagation}var x=l.scrollLeft;if(v===0){if(!n.scrollbarXActive)return!1;if(x===0&&g<0||x>=n.contentWidth-n.containerWidth&&g>0)return!n.settings.wheelPropagation}return!0}n.event.bind(n.ownerDocument,"keydown",function(g){if(!(g.isDefaultPrevented&&g.isDefaultPrevented()||g.defaultPrevented)&&!(!r()&&!h())){var v=document.activeElement?document.activeElement:n.ownerDocument.activeElement;if(v){if(v.tagName==="IFRAME")v=v.contentDocument.activeElement;else for(;v.shadowRoot;)v=v.shadowRoot.activeElement;if(Hx(v))return}var k=0,x=0;switch(g.which){case 37:g.metaKey?k=-n.contentWidth:g.altKey?k=-n.containerWidth:k=-30;break;case 38:g.metaKey?x=n.contentHeight:g.altKey?x=n.containerHeight:x=30;break;case 39:g.metaKey?k=n.contentWidth:g.altKey?k=n.containerWidth:k=30;break;case 40:g.metaKey?x=-n.contentHeight:g.altKey?x=-n.containerHeight:x=-30;break;case 32:g.shiftKey?x=n.containerHeight:x=-n.containerHeight;break;case 33:x=n.containerHeight;break;case 34:x=-n.containerHeight;break;case 36:x=n.contentHeight;break;case 35:x=-n.contentHeight;break;default:return}n.settings.suppressScrollX&&k!==0||n.settings.suppressScrollY&&x!==0||(l.scrollTop-=x,l.scrollLeft+=k,zl(n),c(k,x)&&g.preventDefault())}})}function Ox(n){var l=n.element;function r(v,k){var x=Math.floor(l.scrollTop),I=l.scrollTop===0,S=x+l.offsetHeight===l.scrollHeight,$=l.scrollLeft===0,B=l.scrollLeft+l.offsetWidth===l.scrollWidth,P;return Math.abs(k)>Math.abs(v)?P=I||S:P=$||B,P?!n.settings.wheelPropagation:!0}function h(v){var k=v.deltaX,x=-1*v.deltaY;return(typeof k>"u"||typeof x>"u")&&(k=-1*v.wheelDeltaX/6,x=v.wheelDeltaY/6),v.deltaMode&&v.deltaMode===1&&(k*=10,x*=10),k!==k&&x!==x&&(k=0,x=v.wheelDelta),v.shiftKey?[-x,-k]:[k,x]}function c(v,k,x){if(!Xr.isWebKit&&l.querySelector("select:focus"))return!0;if(!l.contains(v))return!1;for(var I=v;I&&I!==l;){if(I.classList.contains(De.element.consuming))return!0;var S=ll(I);if(x&&S.overflowY.match(/(scroll|auto)/)){var $=I.scrollHeight-I.clientHeight;if($>0&&(I.scrollTop>0&&x<0||I.scrollTop<$&&x>0))return!0}if(k&&S.overflowX.match(/(scroll|auto)/)){var B=I.scrollWidth-I.clientWidth;if(B>0&&(I.scrollLeft>0&&k<0||I.scrollLeft0))return!0}I=I.parentNode}return!1}function g(v){var k=h(v),x=k[0],I=k[1];if(!c(v.target,x,I)){var S=!1;n.settings.useBothWheelAxes?n.scrollbarYActive&&!n.scrollbarXActive?(I?l.scrollTop-=I*n.settings.wheelSpeed:l.scrollTop+=x*n.settings.wheelSpeed,S=!0):n.scrollbarXActive&&!n.scrollbarYActive&&(x?l.scrollLeft+=x*n.settings.wheelSpeed:l.scrollLeft-=I*n.settings.wheelSpeed,S=!0):(l.scrollTop-=I*n.settings.wheelSpeed,l.scrollLeft+=x*n.settings.wheelSpeed),zl(n),S=S||r(x,I),S&&!v.ctrlKey&&(v.stopPropagation(),v.preventDefault())}}typeof window.onwheel<"u"?n.event.bind(l,"wheel",g):typeof window.onmousewheel<"u"&&n.event.bind(l,"mousewheel",g)}function Fx(n){if(!Xr.supportsTouch&&!Xr.supportsIePointer)return;var l=n.element;function r(D,F){var X=Math.floor(l.scrollTop),R=l.scrollLeft,H=Math.abs(D),U=Math.abs(F);if(U>H){if(F<0&&X===n.contentHeight-n.containerHeight||F>0&&X===0)return window.scrollY===0&&F>0&&Xr.isChrome}else if(H>U&&(D<0&&R===n.contentWidth-n.containerWidth||D>0&&R===0))return!0;return!0}function h(D,F){l.scrollTop-=F,l.scrollLeft-=D,zl(n)}var c={},g=0,v={},k=null;function x(D){return D.targetTouches?D.targetTouches[0]:D}function I(D){return D.pointerType&&D.pointerType==="pen"&&D.buttons===0?!1:!!(D.targetTouches&&D.targetTouches.length===1||D.pointerType&&D.pointerType!=="mouse"&&D.pointerType!==D.MSPOINTER_TYPE_MOUSE)}function S(D){if(I(D)){var F=x(D);c.pageX=F.pageX,c.pageY=F.pageY,g=new Date().getTime(),k!==null&&clearInterval(k)}}function $(D,F,X){if(!l.contains(D))return!1;for(var R=D;R&&R!==l;){if(R.classList.contains(De.element.consuming))return!0;var H=ll(R);if(X&&H.overflowY.match(/(scroll|auto)/)){var U=R.scrollHeight-R.clientHeight;if(U>0&&(R.scrollTop>0&&X<0||R.scrollTop0))return!0}if(F&&H.overflowX.match(/(scroll|auto)/)){var W=R.scrollWidth-R.clientWidth;if(W>0&&(R.scrollLeft>0&&F<0||R.scrollLeft0))return!0}R=R.parentNode}return!1}function B(D){if(I(D)){var F=x(D),X={pageX:F.pageX,pageY:F.pageY},R=X.pageX-c.pageX,H=X.pageY-c.pageY;if($(D.target,R,H))return;h(R,H),c=X;var U=new Date().getTime(),W=U-g;W>0&&(v.x=R/W,v.y=H/W,g=U),r(R,H)&&D.preventDefault()}}function P(){n.settings.swipeEasing&&(clearInterval(k),k=setInterval(function(){if(n.isInitialized){clearInterval(k);return}if(!v.x&&!v.y){clearInterval(k);return}if(Math.abs(v.x)<.01&&Math.abs(v.y)<.01){clearInterval(k);return}if(!n.element){clearInterval(k);return}h(v.x*30,v.y*30),v.x*=.8,v.y*=.8},10))}Xr.supportsTouch?(n.event.bind(l,"touchstart",S),n.event.bind(l,"touchmove",B),n.event.bind(l,"touchend",P)):Xr.supportsIePointer&&(window.PointerEvent?(n.event.bind(l,"pointerdown",S),n.event.bind(l,"pointermove",B),n.event.bind(l,"pointerup",P)):window.MSPointerEvent&&(n.event.bind(l,"MSPointerDown",S),n.event.bind(l,"MSPointerMove",B),n.event.bind(l,"MSPointerUp",P)))}var Rx=function(){return{handlers:["click-rail","drag-thumb","keyboard","wheel","touch"],maxScrollbarLength:null,minScrollbarLength:null,scrollingThreshold:1e3,scrollXMarginOffset:0,scrollYMarginOffset:0,suppressScrollX:!1,suppressScrollY:!1,swipeEasing:!0,useBothWheelAxes:!1,wheelPropagation:!0,wheelSpeed:1}},Tx={"click-rail":Px,"drag-thumb":Lx,keyboard:Dx,wheel:Ox,touch:Fx},js=function(l,r){var h=this;if(r===void 0&&(r={}),typeof l=="string"&&(l=document.querySelector(l)),!l||!l.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");this.element=l,l.classList.add(De.main),this.settings=Rx();for(var c in r)this.settings[c]=r[c];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var g=function(){return l.classList.add(De.state.focus)},v=function(){return l.classList.remove(De.state.focus)};this.isRtl=ll(l).direction==="rtl",this.isRtl===!0&&l.classList.add(De.rtl),this.isNegativeScroll=function(){var I=l.scrollLeft,S=null;return l.scrollLeft=-1,S=l.scrollLeft<0,l.scrollLeft=I,S}(),this.negativeScrollAdjustment=this.isNegativeScroll?l.scrollWidth-l.clientWidth:0,this.event=new Io,this.ownerDocument=l.ownerDocument||document,this.scrollbarXRail=Qs(De.element.rail("x")),l.appendChild(this.scrollbarXRail),this.scrollbarX=Qs(De.element.thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",g),this.event.bind(this.scrollbarX,"blur",v),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var k=ll(this.scrollbarXRail);this.scrollbarXBottom=parseInt(k.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=He(k.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=He(k.borderLeftWidth)+He(k.borderRightWidth),vn(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=He(k.marginLeft)+He(k.marginRight),vn(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=Qs(De.element.rail("y")),l.appendChild(this.scrollbarYRail),this.scrollbarY=Qs(De.element.thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",g),this.event.bind(this.scrollbarY,"blur",v),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var x=ll(this.scrollbarYRail);this.scrollbarYRight=parseInt(x.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=He(x.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?Nx(this.scrollbarY):null,this.railBorderYWidth=He(x.borderTopWidth)+He(x.borderBottomWidth),vn(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=He(x.marginTop)+He(x.marginBottom),vn(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:l.scrollLeft<=0?"start":l.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:l.scrollTop<=0?"start":l.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(I){return Tx[I](h)}),this.lastScrollTop=Math.floor(l.scrollTop),this.lastScrollLeft=l.scrollLeft,this.event.bind(this.element,"scroll",function(I){return h.onScroll(I)}),zl(this)};js.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,vn(this.scrollbarXRail,{display:"block"}),vn(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=He(ll(this.scrollbarXRail).marginLeft)+He(ll(this.scrollbarXRail).marginRight),this.railYMarginHeight=He(ll(this.scrollbarYRail).marginTop)+He(ll(this.scrollbarYRail).marginBottom),vn(this.scrollbarXRail,{display:"none"}),vn(this.scrollbarYRail,{display:"none"}),zl(this),ya(this,"top",0,!1,!0),ya(this,"left",0,!1,!0),vn(this.scrollbarXRail,{display:""}),vn(this.scrollbarYRail,{display:""}))};js.prototype.onScroll=function(l){this.isAlive&&(zl(this),ya(this,"top",this.element.scrollTop-this.lastScrollTop),ya(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)};js.prototype.destroy=function(){this.isAlive&&(this.event.unbindAll(),Yr(this.scrollbarX),Yr(this.scrollbarY),Yr(this.scrollbarXRail),Yr(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)};js.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(l){return!l.match(/^ps([-_].+|)$/)}).join(" ")};const nc=["scroll","ps-scroll-y","ps-scroll-x","ps-scroll-up","ps-scroll-down","ps-scroll-left","ps-scroll-right","ps-y-reach-start","ps-y-reach-end","ps-x-reach-start","ps-x-reach-end"];var Vr={name:"PerfectScrollbar",props:{options:{type:Object,required:!1,default:()=>{}},tag:{type:String,required:!1,default:"div"},watchOptions:{type:Boolean,required:!1,default:!1}},emits:nc,data(){return{ps:null}},watch:{watchOptions(n){!n&&this.watcher?this.watcher():this.createWatcher()}},mounted(){this.create(),this.watchOptions&&this.createWatcher()},updated(){this.$nextTick(()=>{this.update()})},beforeUnmount(){this.destroy()},methods:{create(){this.ps&&this.$isServer||(this.ps=new js(this.$el,this.options),nc.forEach(n=>{this.ps.element.addEventListener(n,l=>this.$emit(n,l))}))},createWatcher(){this.watcher=this.$watch("options",()=>{this.destroy(),this.create()},{deep:!0})},update(){this.ps&&this.ps.update()},destroy(){this.ps&&(this.ps.destroy(),this.ps=null)}},render(){return Ln(this.tag,{class:"ps"},this.$slots.default&&this.$slots.default())}},Ex={install:(n,l)=>{l&&(l.name&&typeof l.name=="string"&&(Vr.name=l.name),l.options&&typeof l.options=="object"&&(Vr.props.options.default=()=>l.options),l.tag&&typeof l.tag=="string"&&(Vr.props.tag.default=l.tag),l.watchOptions&&typeof l.watchOptions=="boolean"&&(Vr.props.watchOptions=l.watchOptions)),n.component(Vr.name,Vr)}},eOt=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Vx(n){return n&&n.__esModule&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n}function _x(n){if(n.__esModule)return n;var l=n.default;if(typeof l=="function"){var r=function h(){return this instanceof h?Reflect.construct(l,arguments,this.constructor):l.apply(this,arguments)};r.prototype=l.prototype}else r={};return Object.defineProperty(r,"__esModule",{value:!0}),Object.keys(n).forEach(function(h){var c=Object.getOwnPropertyDescriptor(n,h);Object.defineProperty(r,h,c.get?c:{enumerable:!0,get:function(){return n[h]}})}),r}var Xg={exports:{}};const Wx=_x(Xf);var ta={exports:{}};/*! - * ApexCharts v3.42.0 - * (c) 2018-2023 ApexCharts - * Released under the MIT License. - */var lc;function Xx(){return lc||(lc=1,function(n,l){function r(T,s){var a=Object.keys(T);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(T);s&&(i=i.filter(function(d){return Object.getOwnPropertyDescriptor(T,d).enumerable})),a.push.apply(a,i)}return a}function h(T){for(var s=1;s"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var a,i=S(T);if(s){var d=S(this).constructor;a=Reflect.construct(i,arguments,d)}else a=i.apply(this,arguments);return B(this,a)}}function D(T,s){return function(a){if(Array.isArray(a))return a}(T)||function(a,i){var d=a==null?null:typeof Symbol<"u"&&a[Symbol.iterator]||a["@@iterator"];if(d!=null){var u,p,w=[],f=!0,b=!1;try{for(d=d.call(a);!(f=(u=d.next()).done)&&(w.push(u.value),!i||w.length!==i);f=!0);}catch(M){b=!0,p=M}finally{try{f||d.return==null||d.return()}finally{if(b)throw p}}return w}}(T,s)||X(T,s)||function(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}()}function F(T){return function(s){if(Array.isArray(s))return R(s)}(T)||function(s){if(typeof Symbol<"u"&&s[Symbol.iterator]!=null||s["@@iterator"]!=null)return Array.from(s)}(T)||X(T)||function(){throw new TypeError(`Invalid attempt to spread non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}()}function X(T,s){if(T){if(typeof T=="string")return R(T,s);var a=Object.prototype.toString.call(T).slice(8,-1);return a==="Object"&&T.constructor&&(a=T.constructor.name),a==="Map"||a==="Set"?Array.from(T):a==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?R(T,s):void 0}}function R(T,s){(s==null||s>T.length)&&(s=T.length);for(var a=0,i=new Array(s);a>16,w=i>>8&255,f=255&i;return"#"+(16777216+65536*(Math.round((d-p)*u)+p)+256*(Math.round((d-w)*u)+w)+(Math.round((d-f)*u)+f)).toString(16).slice(1)}},{key:"shadeColor",value:function(s,a){return T.isColorHex(a)?this.shadeHexColor(s,a):this.shadeRGBColor(s,a)}}],[{key:"bind",value:function(s,a){return function(){return s.apply(a,arguments)}}},{key:"isObject",value:function(s){return s&&c(s)==="object"&&!Array.isArray(s)&&s!=null}},{key:"is",value:function(s,a){return Object.prototype.toString.call(a)==="[object "+s+"]"}},{key:"listToArray",value:function(s){var a,i=[];for(a=0;a1&&arguments[1]!==void 0?arguments[1]:2;return parseFloat(s.toPrecision(a))}},{key:"randomId",value:function(){return(Math.random()+1).toString(36).substring(4)}},{key:"noExponents",value:function(s){var a=String(s).split(/[eE]/);if(a.length===1)return a[0];var i="",d=s<0?"-":"",u=a[0].replace(".",""),p=Number(a[1])+1;if(p<0){for(i=d+"0.";p++;)i+="0";return i+u.replace(/^-/,"")}for(p-=u.length;p--;)i+="0";return u+i}},{key:"getDimensions",value:function(s){var a=getComputedStyle(s,null),i=s.clientHeight,d=s.clientWidth;return i-=parseFloat(a.paddingTop)+parseFloat(a.paddingBottom),[d-=parseFloat(a.paddingLeft)+parseFloat(a.paddingRight),i]}},{key:"getBoundingClientRect",value:function(s){var a=s.getBoundingClientRect();return{top:a.top,right:a.right,bottom:a.bottom,left:a.left,width:s.clientWidth,height:s.clientHeight,x:a.left,y:a.top}}},{key:"getLargestStringFromArr",value:function(s){return s.reduce(function(a,i){return Array.isArray(i)&&(i=i.reduce(function(d,u){return d.length>u.length?d:u})),a.length>i.length?a:i},0)}},{key:"hexToRgba",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"#999999",a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:.6;s.substring(0,1)!=="#"&&(s="#999999");var i=s.replace("#","");i=i.match(new RegExp("(.{"+i.length/3+"})","g"));for(var d=0;d1&&arguments[1]!==void 0?arguments[1]:"x",i=s.toString().slice();return i=i.replace(/[` ~!@#$%^&*()|+\=?;:'",.<>{}[\]\\/]/gi,a)}},{key:"negToZero",value:function(s){return s<0?0:s}},{key:"moveIndexInArray",value:function(s,a,i){if(i>=s.length)for(var d=i-s.length+1;d--;)s.push(void 0);return s.splice(i,0,s.splice(a,1)[0]),s}},{key:"extractNumber",value:function(s){return parseFloat(s.replace(/[^\d.]*/g,""))}},{key:"findAncestor",value:function(s,a){for(;(s=s.parentElement)&&!s.classList.contains(a););return s}},{key:"setELstyles",value:function(s,a){for(var i in a)a.hasOwnProperty(i)&&(s.style.key=a[i])}},{key:"isNumber",value:function(s){return!isNaN(s)&&parseFloat(Number(s))===s&&!isNaN(parseInt(s,10))}},{key:"isFloat",value:function(s){return Number(s)===s&&s%1!=0}},{key:"isSafari",value:function(){return/^((?!chrome|android).)*safari/i.test(navigator.userAgent)}},{key:"isFirefox",value:function(){return navigator.userAgent.toLowerCase().indexOf("firefox")>-1}},{key:"isIE11",value:function(){if(window.navigator.userAgent.indexOf("MSIE")!==-1||window.navigator.appVersion.indexOf("Trident/")>-1)return!0}},{key:"isIE",value:function(){var s=window.navigator.userAgent,a=s.indexOf("MSIE ");if(a>0)return parseInt(s.substring(a+5,s.indexOf(".",a)),10);if(s.indexOf("Trident/")>0){var i=s.indexOf("rv:");return parseInt(s.substring(i+3,s.indexOf(".",i)),10)}var d=s.indexOf("Edge/");return d>0&&parseInt(s.substring(d+5,s.indexOf(".",d)),10)}}]),T}(),U=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.setEasingFunctions()}return k(T,[{key:"setEasingFunctions",value:function(){var s;if(!this.w.globals.easing){switch(this.w.config.chart.animations.easing){case"linear":s="-";break;case"easein":s="<";break;case"easeout":s=">";break;case"easeinout":default:s="<>";break;case"swing":s=function(a){var i=1.70158;return(a-=1)*a*((i+1)*a+i)+1};break;case"bounce":s=function(a){return a<1/2.75?7.5625*a*a:a<2/2.75?7.5625*(a-=1.5/2.75)*a+.75:a<2.5/2.75?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375};break;case"elastic":s=function(a){return a===!!a?a:Math.pow(2,-10*a)*Math.sin((a-.075)*(2*Math.PI)/.3)+1}}this.w.globals.easing=s}}},{key:"animateLine",value:function(s,a,i,d){s.attr(a).animate(d).attr(i)}},{key:"animateMarker",value:function(s,a,i,d,u,p){a||(a=0),s.attr({r:a,width:a,height:a}).animate(d,u).attr({r:i,width:i.width,height:i.height}).afterAll(function(){p()})}},{key:"animateCircle",value:function(s,a,i,d,u){s.attr({r:a.r,cx:a.cx,cy:a.cy}).animate(d,u).attr({r:i.r,cx:i.cx,cy:i.cy})}},{key:"animateRect",value:function(s,a,i,d,u){s.attr(a).animate(d).attr(i).afterAll(function(){return u()})}},{key:"animatePathsGradually",value:function(s){var a=s.el,i=s.realIndex,d=s.j,u=s.fill,p=s.pathFrom,w=s.pathTo,f=s.speed,b=s.delay,M=this.w,z=0;M.config.chart.animations.animateGradually.enabled&&(z=M.config.chart.animations.animateGradually.delay),M.config.chart.animations.dynamicAnimation.enabled&&M.globals.dataChanged&&M.config.chart.type!=="bar"&&(z=0),this.morphSVG(a,i,d,M.config.chart.type!=="line"||M.globals.comboCharts?u:"stroke",p,w,f,b*z)}},{key:"showDelayedElements",value:function(){this.w.globals.delayedElements.forEach(function(s){var a=s.el;a.classList.remove("apexcharts-element-hidden"),a.classList.add("apexcharts-hidden-element-shown")})}},{key:"animationCompleted",value:function(s){var a=this.w;a.globals.animationEnded||(a.globals.animationEnded=!0,this.showDelayedElements(),typeof a.config.chart.events.animationEnd=="function"&&a.config.chart.events.animationEnd(this.ctx,{el:s,w:a}))}},{key:"morphSVG",value:function(s,a,i,d,u,p,w,f){var b=this,M=this.w;u||(u=s.attr("pathFrom")),p||(p=s.attr("pathTo"));var z=function(y){return M.config.chart.type==="radar"&&(w=1),"M 0 ".concat(M.globals.gridHeight)};(!u||u.indexOf("undefined")>-1||u.indexOf("NaN")>-1)&&(u=z()),(!p||p.indexOf("undefined")>-1||p.indexOf("NaN")>-1)&&(p=z()),M.globals.shouldAnimate||(w=1),s.plot(u).animate(1,M.globals.easing,f).plot(u).animate(w,M.globals.easing,f).plot(p).afterAll(function(){H.isNumber(i)?i===M.globals.series[M.globals.maxValsInArrayIndex].length-2&&M.globals.shouldAnimate&&b.animationCompleted(s):d!=="none"&&M.globals.shouldAnimate&&(!M.globals.comboCharts&&a===M.globals.series.length-1||M.globals.comboCharts)&&b.animationCompleted(s),b.showDelayedElements()})}}]),T}(),W=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"getDefaultFilter",value:function(s,a){var i=this.w;s.unfilter(!0),new window.SVG.Filter().size("120%","180%","-5%","-40%"),i.config.states.normal.filter!=="none"?this.applyFilter(s,a,i.config.states.normal.filter.type,i.config.states.normal.filter.value):i.config.chart.dropShadow.enabled&&this.dropShadow(s,i.config.chart.dropShadow,a)}},{key:"addNormalFilter",value:function(s,a){var i=this.w;i.config.chart.dropShadow.enabled&&!s.node.classList.contains("apexcharts-marker")&&this.dropShadow(s,i.config.chart.dropShadow,a)}},{key:"addLightenFilter",value:function(s,a,i){var d=this,u=this.w,p=i.intensity;s.unfilter(!0),new window.SVG.Filter,s.filter(function(w){var f=u.config.chart.dropShadow;(f.enabled?d.addShadow(w,a,f):w).componentTransfer({rgb:{type:"linear",slope:1.5,intercept:p}})}),s.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(s.filterer.node)}},{key:"addDarkenFilter",value:function(s,a,i){var d=this,u=this.w,p=i.intensity;s.unfilter(!0),new window.SVG.Filter,s.filter(function(w){var f=u.config.chart.dropShadow;(f.enabled?d.addShadow(w,a,f):w).componentTransfer({rgb:{type:"linear",slope:p}})}),s.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(s.filterer.node)}},{key:"applyFilter",value:function(s,a,i){var d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:.5;switch(i){case"none":this.addNormalFilter(s,a);break;case"lighten":this.addLightenFilter(s,a,{intensity:d});break;case"darken":this.addDarkenFilter(s,a,{intensity:d})}}},{key:"addShadow",value:function(s,a,i){var d=i.blur,u=i.top,p=i.left,w=i.color,f=i.opacity,b=s.flood(Array.isArray(w)?w[a]:w,f).composite(s.sourceAlpha,"in").offset(p,u).gaussianBlur(d).merge(s.source);return s.blend(s.source,b)}},{key:"dropShadow",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,d=a.top,u=a.left,p=a.blur,w=a.color,f=a.opacity,b=a.noUserSpaceOnUse,M=this.w;return s.unfilter(!0),H.isIE()&&M.config.chart.type==="radialBar"||(w=Array.isArray(w)?w[i]:w,s.filter(function(z){var y=null;y=H.isSafari()||H.isFirefox()||H.isIE()?z.flood(w,f).composite(z.sourceAlpha,"in").offset(u,d).gaussianBlur(p):z.flood(w,f).composite(z.sourceAlpha,"in").offset(u,d).gaussianBlur(p).merge(z.source),z.blend(z.source,y)}),b||s.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(s.filterer.node)),s}},{key:"setSelectionFilter",value:function(s,a,i){var d=this.w;if(d.globals.selectedDataPoints[a]!==void 0&&d.globals.selectedDataPoints[a].indexOf(i)>-1){s.node.setAttribute("selected",!0);var u=d.config.states.active.filter;u!=="none"&&this.applyFilter(s,a,u.type,u.value)}}},{key:"_scaleFilterSize",value:function(s){(function(a){for(var i in a)a.hasOwnProperty(i)&&s.setAttribute(i,a[i])})({width:"200%",height:"200%",x:"-50%",y:"-50%"})}}]),T}(),_=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"roundPathCorners",value:function(s,a){function i(Q,ot,it){var vt=ot.x-Q.x,zt=ot.y-Q.y,Mt=Math.sqrt(vt*vt+zt*zt);return d(Q,ot,Math.min(1,it/Mt))}function d(Q,ot,it){return{x:Q.x+(ot.x-Q.x)*it,y:Q.y+(ot.y-Q.y)*it}}function u(Q,ot){Q.length>2&&(Q[Q.length-2]=ot.x,Q[Q.length-1]=ot.y)}function p(Q){return{x:parseFloat(Q[Q.length-2]),y:parseFloat(Q[Q.length-1])}}s.indexOf("NaN")>-1&&(s="");var w=s.split(/[,\s]/).reduce(function(Q,ot){var it=ot.match("([a-zA-Z])(.+)");return it?(Q.push(it[1]),Q.push(it[2])):Q.push(ot),Q},[]).reduce(function(Q,ot){return parseFloat(ot)==ot&&Q.length?Q[Q.length-1].push(ot):Q.push([ot]),Q},[]),f=[];if(w.length>1){var b=p(w[0]),M=null;w[w.length-1][0]=="Z"&&w[0].length>2&&(M=["L",b.x,b.y],w[w.length-1]=M),f.push(w[0]);for(var z=1;z2&&A[0]=="L"&&N.length>2&&N[0]=="L"){var L,O,V=p(y),Z=p(A),m=p(N);L=i(Z,V,a),O=i(Z,m,a),u(A,L),A.origPoint=Z,f.push(A);var C=d(L,Z,.5),j=d(Z,O,.5),E=["C",C.x,C.y,j.x,j.y,O.x,O.y];E.origPoint=Z,f.push(E)}else f.push(A)}if(M){var K=p(f[f.length-1]);f.push(["Z"]),u(f[0],K)}}else f=w;return f.reduce(function(Q,ot){return Q+ot.join(" ")+" "},"")}},{key:"drawLine",value:function(s,a,i,d){var u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:"#a8a8a8",p=arguments.length>5&&arguments[5]!==void 0?arguments[5]:0,w=arguments.length>6&&arguments[6]!==void 0?arguments[6]:null,f=arguments.length>7&&arguments[7]!==void 0?arguments[7]:"butt";return this.w.globals.dom.Paper.line().attr({x1:s,y1:a,x2:i,y2:d,stroke:u,"stroke-dasharray":p,"stroke-width":w,"stroke-linecap":f})}},{key:"drawRect",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:0,p=arguments.length>5&&arguments[5]!==void 0?arguments[5]:"#fefefe",w=arguments.length>6&&arguments[6]!==void 0?arguments[6]:1,f=arguments.length>7&&arguments[7]!==void 0?arguments[7]:null,b=arguments.length>8&&arguments[8]!==void 0?arguments[8]:null,M=arguments.length>9&&arguments[9]!==void 0?arguments[9]:0,z=this.w.globals.dom.Paper.rect();return z.attr({x:s,y:a,width:i>0?i:0,height:d>0?d:0,rx:u,ry:u,opacity:w,"stroke-width":f!==null?f:0,stroke:b!==null?b:"none","stroke-dasharray":M}),z.node.setAttribute("fill",p),z}},{key:"drawPolygon",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"#e1e1e1",i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:"none";return this.w.globals.dom.Paper.polygon(s).attr({fill:d,stroke:a,"stroke-width":i})}},{key:"drawCircle",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;s<0&&(s=0);var i=this.w.globals.dom.Paper.circle(2*s);return a!==null&&i.attr(a),i}},{key:"drawPath",value:function(s){var a=s.d,i=a===void 0?"":a,d=s.stroke,u=d===void 0?"#a8a8a8":d,p=s.strokeWidth,w=p===void 0?1:p,f=s.fill,b=s.fillOpacity,M=b===void 0?1:b,z=s.strokeOpacity,y=z===void 0?1:z,A=s.classes,N=s.strokeLinecap,L=N===void 0?null:N,O=s.strokeDashArray,V=O===void 0?0:O,Z=this.w;return L===null&&(L=Z.config.stroke.lineCap),(i.indexOf("undefined")>-1||i.indexOf("NaN")>-1)&&(i="M 0 ".concat(Z.globals.gridHeight)),Z.globals.dom.Paper.path(i).attr({fill:f,"fill-opacity":M,stroke:u,"stroke-opacity":y,"stroke-linecap":L,"stroke-width":w,"stroke-dasharray":V,class:A})}},{key:"group",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,a=this.w.globals.dom.Paper.group();return s!==null&&a.attr(s),a}},{key:"move",value:function(s,a){var i=["M",s,a].join(" ");return i}},{key:"line",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,d=null;return i===null?d=[" L",s,a].join(" "):i==="H"?d=[" H",s].join(" "):i==="V"&&(d=[" V",a].join(" ")),d}},{key:"curve",value:function(s,a,i,d,u,p){var w=["C",s,a,i,d,u,p].join(" ");return w}},{key:"quadraticCurve",value:function(s,a,i,d){return["Q",s,a,i,d].join(" ")}},{key:"arc",value:function(s,a,i,d,u,p,w){var f="A";arguments.length>7&&arguments[7]!==void 0&&arguments[7]&&(f="a");var b=[f,s,a,i,d,u,p,w].join(" ");return b}},{key:"renderPaths",value:function(s){var a,i=s.j,d=s.realIndex,u=s.pathFrom,p=s.pathTo,w=s.stroke,f=s.strokeWidth,b=s.strokeLinecap,M=s.fill,z=s.animationDelay,y=s.initialSpeed,A=s.dataChangeSpeed,N=s.className,L=s.shouldClipToGrid,O=L===void 0||L,V=s.bindEventsOnPaths,Z=V===void 0||V,m=s.drawShadow,C=m===void 0||m,j=this.w,E=new W(this.ctx),K=new U(this.ctx),Q=this.w.config.chart.animations.enabled,ot=Q&&this.w.config.chart.animations.dynamicAnimation.enabled,it=!!(Q&&!j.globals.resized||ot&&j.globals.dataChanged&&j.globals.shouldAnimate);it?a=u:(a=p,j.globals.animationEnded=!0);var vt=j.config.stroke.dashArray,zt=0;zt=Array.isArray(vt)?vt[d]:j.config.stroke.dashArray;var Mt=this.drawPath({d:a,stroke:w,strokeWidth:f,fill:M,fillOpacity:1,classes:N,strokeLinecap:b,strokeDashArray:zt});if(Mt.attr("index",d),O&&Mt.attr({"clip-path":"url(#gridRectMask".concat(j.globals.cuid,")")}),j.config.states.normal.filter.type!=="none")E.getDefaultFilter(Mt,d);else if(j.config.chart.dropShadow.enabled&&C&&(!j.config.chart.dropShadow.enabledOnSeries||j.config.chart.dropShadow.enabledOnSeries&&j.config.chart.dropShadow.enabledOnSeries.indexOf(d)!==-1)){var Vt=j.config.chart.dropShadow;E.dropShadow(Mt,Vt,d)}Z&&(Mt.node.addEventListener("mouseenter",this.pathMouseEnter.bind(this,Mt)),Mt.node.addEventListener("mouseleave",this.pathMouseLeave.bind(this,Mt)),Mt.node.addEventListener("mousedown",this.pathMouseDown.bind(this,Mt))),Mt.attr({pathTo:p,pathFrom:u});var Yt={el:Mt,j:i,realIndex:d,pathFrom:u,pathTo:p,fill:M,strokeWidth:f,delay:z};return!Q||j.globals.resized||j.globals.dataChanged?!j.globals.resized&&j.globals.dataChanged||K.showDelayedElements():K.animatePathsGradually(h(h({},Yt),{},{speed:y})),j.globals.dataChanged&&ot&&it&&K.animatePathsGradually(h(h({},Yt),{},{speed:A})),Mt}},{key:"drawPattern",value:function(s,a,i){var d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:"#a8a8a8",u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:0;return this.w.globals.dom.Paper.pattern(a,i,function(p){s==="horizontalLines"?p.line(0,0,i,0).stroke({color:d,width:u+1}):s==="verticalLines"?p.line(0,0,0,a).stroke({color:d,width:u+1}):s==="slantedLines"?p.line(0,0,a,i).stroke({color:d,width:u}):s==="squares"?p.rect(a,i).fill("none").stroke({color:d,width:u}):s==="circles"&&p.circle(a).fill("none").stroke({color:d,width:u})})}},{key:"drawGradient",value:function(s,a,i,d,u){var p,w=arguments.length>5&&arguments[5]!==void 0?arguments[5]:null,f=arguments.length>6&&arguments[6]!==void 0?arguments[6]:null,b=arguments.length>7&&arguments[7]!==void 0?arguments[7]:null,M=arguments.length>8&&arguments[8]!==void 0?arguments[8]:0,z=this.w;a.length<9&&a.indexOf("#")===0&&(a=H.hexToRgba(a,d)),i.length<9&&i.indexOf("#")===0&&(i=H.hexToRgba(i,u));var y=0,A=1,N=1,L=null;f!==null&&(y=f[0]!==void 0?f[0]/100:0,A=f[1]!==void 0?f[1]/100:1,N=f[2]!==void 0?f[2]/100:1,L=f[3]!==void 0?f[3]/100:null);var O=!(z.config.chart.type!=="donut"&&z.config.chart.type!=="pie"&&z.config.chart.type!=="polarArea"&&z.config.chart.type!=="bubble");if(p=b===null||b.length===0?z.globals.dom.Paper.gradient(O?"radial":"linear",function(m){m.at(y,a,d),m.at(A,i,u),m.at(N,i,u),L!==null&&m.at(L,a,d)}):z.globals.dom.Paper.gradient(O?"radial":"linear",function(m){(Array.isArray(b[M])?b[M]:b).forEach(function(C){m.at(C.offset/100,C.color,C.opacity)})}),O){var V=z.globals.gridWidth/2,Z=z.globals.gridHeight/2;z.config.chart.type!=="bubble"?p.attr({gradientUnits:"userSpaceOnUse",cx:V,cy:Z,r:w}):p.attr({cx:.5,cy:.5,r:.8,fx:.2,fy:.2})}else s==="vertical"?p.from(0,0).to(0,1):s==="diagonal"?p.from(0,0).to(1,1):s==="horizontal"?p.from(0,1).to(1,1):s==="diagonal2"&&p.from(1,0).to(0,1);return p}},{key:"getTextBasedOnMaxWidth",value:function(s){var a=s.text,i=s.maxWidth,d=s.fontSize,u=s.fontFamily,p=this.getTextRects(a,d,u),w=p.width/a.length,f=Math.floor(i/w);return i-1){var f=i.globals.selectedDataPoints[u].indexOf(p);i.globals.selectedDataPoints[u].splice(f,1)}}else{if(!i.config.states.active.allowMultipleDataPointsSelection&&i.globals.selectedDataPoints.length>0){i.globals.selectedDataPoints=[];var b=i.globals.dom.Paper.select(".apexcharts-series path").members,M=i.globals.dom.Paper.select(".apexcharts-series circle, .apexcharts-series rect").members,z=function(N){Array.prototype.forEach.call(N,function(L){L.node.setAttribute("selected","false"),d.getDefaultFilter(L,u)})};z(b),z(M)}s.node.setAttribute("selected","true"),w="true",i.globals.selectedDataPoints[u]===void 0&&(i.globals.selectedDataPoints[u]=[]),i.globals.selectedDataPoints[u].push(p)}if(w==="true"){var y=i.config.states.active.filter;if(y!=="none")d.applyFilter(s,u,y.type,y.value);else if(i.config.states.hover.filter!=="none"&&!i.globals.isTouchDevice){var A=i.config.states.hover.filter;d.applyFilter(s,u,A.type,A.value)}}else i.config.states.active.filter.type!=="none"&&(i.config.states.hover.filter.type==="none"||i.globals.isTouchDevice?d.getDefaultFilter(s,u):(A=i.config.states.hover.filter,d.applyFilter(s,u,A.type,A.value)));typeof i.config.chart.events.dataPointSelection=="function"&&i.config.chart.events.dataPointSelection(a,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:u,dataPointIndex:p,w:i}),a&&this.ctx.events.fireEvent("dataPointSelection",[a,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:u,dataPointIndex:p,w:i}])}},{key:"rotateAroundCenter",value:function(s){var a={};return s&&typeof s.getBBox=="function"&&(a=s.getBBox()),{x:a.x+a.width/2,y:a.y+a.height/2}}},{key:"getTextRects",value:function(s,a,i,d){var u=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],p=this.w,w=this.drawText({x:-200,y:-200,text:s,textAnchor:"start",fontSize:a,fontFamily:i,foreColor:"#fff",opacity:0});d&&w.attr("transform",d),p.globals.dom.Paper.add(w);var f=w.bbox();return u||(f=w.node.getBoundingClientRect()),w.remove(),{width:f.width,height:f.height}}},{key:"placeTextWithEllipsis",value:function(s,a,i){if(typeof s.getComputedTextLength=="function"&&(s.textContent=a,a.length>0&&s.getComputedTextLength()>=i/1.1)){for(var d=a.length-3;d>0;d-=3)if(s.getSubStringLength(0,d)<=i/1.1)return void(s.textContent=a.substring(0,d)+"...");s.textContent="."}}}],[{key:"setAttrs",value:function(s,a){for(var i in a)a.hasOwnProperty(i)&&s.setAttribute(i,a[i])}}]),T}(),tt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"getStackedSeriesTotals",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=this.w,i=[];if(a.globals.series.length===0)return i;for(var d=0;d0&&arguments[0]!==void 0?arguments[0]:null;return s===null?this.w.config.series.reduce(function(a,i){return a+i},0):this.w.globals.series[s].reduce(function(a,i){return a+i},0)}},{key:"isSeriesNull",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null;return(s===null?this.w.config.series.filter(function(a){return a!==null}):this.w.config.series[s].data.filter(function(a){return a!==null})).length===0}},{key:"seriesHaveSameValues",value:function(s){return this.w.globals.series[s].every(function(a,i,d){return a===d[0]})}},{key:"getCategoryLabels",value:function(s){var a=this.w,i=s.slice();return a.config.xaxis.convertedCatToNumeric&&(i=s.map(function(d,u){return a.config.xaxis.labels.formatter(d-a.globals.minX+1)})),i}},{key:"getLargestSeries",value:function(){var s=this.w;s.globals.maxValsInArrayIndex=s.globals.series.map(function(a){return a.length}).indexOf(Math.max.apply(Math,s.globals.series.map(function(a){return a.length})))}},{key:"getLargestMarkerSize",value:function(){var s=this.w,a=0;return s.globals.markers.size.forEach(function(i){a=Math.max(a,i)}),s.config.markers.discrete&&s.config.markers.discrete.length&&s.config.markers.discrete.forEach(function(i){a=Math.max(a,i.size)}),a>0&&(a+=s.config.markers.hover.sizeOffset+1),s.globals.markers.largestSize=a,a}},{key:"getSeriesTotals",value:function(){var s=this.w;s.globals.seriesTotals=s.globals.series.map(function(a,i){var d=0;if(Array.isArray(a))for(var u=0;us&&i.globals.seriesX[u][w]0&&(a=!0),{comboBarCount:i,comboCharts:a}}},{key:"extendArrayProps",value:function(s,a,i){return a.yaxis&&(a=s.extendYAxis(a,i)),a.annotations&&(a.annotations.yaxis&&(a=s.extendYAxisAnnotations(a)),a.annotations.xaxis&&(a=s.extendXAxisAnnotations(a)),a.annotations.points&&(a=s.extendPointAnnotations(a))),a}}]),T}(),nt=function(){function T(s){g(this,T),this.w=s.w,this.annoCtx=s}return k(T,[{key:"setOrientations",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,i=this.w;if(s.label.orientation==="vertical"){var d=a!==null?a:0,u=i.globals.dom.baseEl.querySelector(".apexcharts-xaxis-annotations .apexcharts-xaxis-annotation-label[rel='".concat(d,"']"));if(u!==null){var p=u.getBoundingClientRect();u.setAttribute("x",parseFloat(u.getAttribute("x"))-p.height+4),s.label.position==="top"?u.setAttribute("y",parseFloat(u.getAttribute("y"))+p.width):u.setAttribute("y",parseFloat(u.getAttribute("y"))-p.width);var w=this.annoCtx.graphics.rotateAroundCenter(u),f=w.x,b=w.y;u.setAttribute("transform","rotate(-90 ".concat(f," ").concat(b,")"))}}}},{key:"addBackgroundToAnno",value:function(s,a){var i=this.w;if(!s||a.label.text===void 0||a.label.text!==void 0&&!String(a.label.text).trim())return null;var d=i.globals.dom.baseEl.querySelector(".apexcharts-grid").getBoundingClientRect(),u=s.getBoundingClientRect(),p=a.label.style.padding.left,w=a.label.style.padding.right,f=a.label.style.padding.top,b=a.label.style.padding.bottom;a.label.orientation==="vertical"&&(f=a.label.style.padding.left,b=a.label.style.padding.right,p=a.label.style.padding.top,w=a.label.style.padding.bottom);var M=u.left-d.left-p,z=u.top-d.top-f,y=this.annoCtx.graphics.drawRect(M-i.globals.barPadForNumericAxis,z,u.width+p+w,u.height+f+b,a.label.borderRadius,a.label.style.background,1,a.label.borderWidth,a.label.borderColor,0);return a.id&&y.node.classList.add(a.id),y}},{key:"annotationsBackground",value:function(){var s=this,a=this.w,i=function(d,u,p){var w=a.globals.dom.baseEl.querySelector(".apexcharts-".concat(p,"-annotations .apexcharts-").concat(p,"-annotation-label[rel='").concat(u,"']"));if(w){var f=w.parentNode,b=s.addBackgroundToAnno(w,d);b&&(f.insertBefore(b.node,w),d.label.mouseEnter&&b.node.addEventListener("mouseenter",d.label.mouseEnter.bind(s,d)),d.label.mouseLeave&&b.node.addEventListener("mouseleave",d.label.mouseLeave.bind(s,d)),d.label.click&&b.node.addEventListener("click",d.label.click.bind(s,d)))}};a.config.annotations.xaxis.map(function(d,u){i(d,u,"xaxis")}),a.config.annotations.yaxis.map(function(d,u){i(d,u,"yaxis")}),a.config.annotations.points.map(function(d,u){i(d,u,"point")})}},{key:"getY1Y2",value:function(s,a){var i,d=s==="y1"?a.y:a.y2,u=this.w;if(this.annoCtx.invertAxis){var p=u.globals.labels.indexOf(d);u.config.xaxis.convertedCatToNumeric&&(p=u.globals.categoryLabels.indexOf(d));var w=u.globals.dom.baseEl.querySelector(".apexcharts-yaxis-texts-g text:nth-child("+(p+1)+")");w&&(i=parseFloat(w.getAttribute("y")))}else{var f;u.config.yaxis[a.yAxisIndex].logarithmic?f=(d=new tt(this.annoCtx.ctx).getLogVal(d,a.yAxisIndex))/u.globals.yLogRatio[a.yAxisIndex]:f=(d-u.globals.minYArr[a.yAxisIndex])/(u.globals.yRange[a.yAxisIndex]/u.globals.gridHeight),i=u.globals.gridHeight-f,!a.marker||a.y!==void 0&&a.y!==null||(i=0),u.config.yaxis[a.yAxisIndex]&&u.config.yaxis[a.yAxisIndex].reversed&&(i=f)}return typeof d=="string"&&d.indexOf("px")>-1&&(i=parseFloat(d)),i}},{key:"getX1X2",value:function(s,a){var i=this.w,d=this.annoCtx.invertAxis?i.globals.minY:i.globals.minX,u=this.annoCtx.invertAxis?i.globals.maxY:i.globals.maxX,p=this.annoCtx.invertAxis?i.globals.yRange[0]:i.globals.xRange,w=(a.x-d)/(p/i.globals.gridWidth);this.annoCtx.inversedReversedAxis&&(w=(u-a.x)/(p/i.globals.gridWidth)),i.config.xaxis.type!=="category"&&!i.config.xaxis.convertedCatToNumeric||this.annoCtx.invertAxis||i.globals.dataFormatXNumeric||(w=this.getStringX(a.x));var f=(a.x2-d)/(p/i.globals.gridWidth);return this.annoCtx.inversedReversedAxis&&(f=(u-a.x2)/(p/i.globals.gridWidth)),i.config.xaxis.type!=="category"&&!i.config.xaxis.convertedCatToNumeric||this.annoCtx.invertAxis||i.globals.dataFormatXNumeric||(f=this.getStringX(a.x2)),a.x!==void 0&&a.x!==null||!a.marker||(w=i.globals.gridWidth),s==="x1"&&typeof a.x=="string"&&a.x.indexOf("px")>-1&&(w=parseFloat(a.x)),s==="x2"&&typeof a.x2=="string"&&a.x2.indexOf("px")>-1&&(f=parseFloat(a.x2)),s==="x1"?w:f}},{key:"getStringX",value:function(s){var a=this.w,i=s;a.config.xaxis.convertedCatToNumeric&&a.globals.categoryLabels.length&&(s=a.globals.categoryLabels.indexOf(s)+1);var d=a.globals.labels.indexOf(s),u=a.globals.dom.baseEl.querySelector(".apexcharts-xaxis-texts-g text:nth-child("+(d+1)+")");return u&&(i=parseFloat(u.getAttribute("x"))),i}}]),T}(),Y=function(){function T(s){g(this,T),this.w=s.w,this.annoCtx=s,this.invertAxis=this.annoCtx.invertAxis,this.helpers=new nt(this.annoCtx)}return k(T,[{key:"addXaxisAnnotation",value:function(s,a,i){var d,u=this.w,p=this.helpers.getX1X2("x1",s),w=s.label.text,f=s.strokeDashArray;if(H.isNumber(p)){if(s.x2===null||s.x2===void 0){var b=this.annoCtx.graphics.drawLine(p+s.offsetX,0+s.offsetY,p+s.offsetX,u.globals.gridHeight+s.offsetY,s.borderColor,f,s.borderWidth);a.appendChild(b.node),s.id&&b.node.classList.add(s.id)}else{if((d=this.helpers.getX1X2("x2",s))w){var M=w;w=d,d=M}var z=this.annoCtx.graphics.drawRect(0+s.offsetX,d+s.offsetY,this._getYAxisAnnotationWidth(s),w-d,0,s.fillColor,s.opacity,1,s.borderColor,p);z.node.classList.add("apexcharts-annotation-rect"),z.attr("clip-path","url(#gridRectMask".concat(u.globals.cuid,")")),a.appendChild(z.node),s.id&&z.node.classList.add(s.id)}var y=s.label.position==="right"?u.globals.gridWidth:s.label.position==="center"?u.globals.gridWidth/2:0,A=this.annoCtx.graphics.drawText({x:y+s.label.offsetX,y:(d??w)+s.label.offsetY-3,text:f,textAnchor:s.label.textAnchor,fontSize:s.label.style.fontSize,fontFamily:s.label.style.fontFamily,fontWeight:s.label.style.fontWeight,foreColor:s.label.style.color,cssClass:"apexcharts-yaxis-annotation-label ".concat(s.label.style.cssClass," ").concat(s.id?s.id:"")});A.attr({rel:i}),a.appendChild(A.node)}},{key:"_getYAxisAnnotationWidth",value:function(s){var a=this.w;return a.globals.gridWidth,(s.width.indexOf("%")>-1?a.globals.gridWidth*parseInt(s.width,10)/100:parseInt(s.width,10))+s.offsetX}},{key:"drawYAxisAnnotations",value:function(){var s=this,a=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-yaxis-annotations"});return a.config.annotations.yaxis.map(function(d,u){s.addYaxisAnnotation(d,i.node,u)}),i}}]),T}(),et=function(){function T(s){g(this,T),this.w=s.w,this.annoCtx=s,this.helpers=new nt(this.annoCtx)}return k(T,[{key:"addPointAnnotation",value:function(s,a,i){this.w;var d=this.helpers.getX1X2("x1",s),u=this.helpers.getY1Y2("y1",s);if(H.isNumber(d)){var p={pSize:s.marker.size,pointStrokeWidth:s.marker.strokeWidth,pointFillColor:s.marker.fillColor,pointStrokeColor:s.marker.strokeColor,shape:s.marker.shape,pRadius:s.marker.radius,class:"apexcharts-point-annotation-marker ".concat(s.marker.cssClass," ").concat(s.id?s.id:"")},w=this.annoCtx.graphics.drawMarker(d+s.marker.offsetX,u+s.marker.offsetY,p);a.appendChild(w.node);var f=s.label.text?s.label.text:"",b=this.annoCtx.graphics.drawText({x:d+s.label.offsetX,y:u+s.label.offsetY-s.marker.size-parseFloat(s.label.style.fontSize)/1.6,text:f,textAnchor:s.label.textAnchor,fontSize:s.label.style.fontSize,fontFamily:s.label.style.fontFamily,fontWeight:s.label.style.fontWeight,foreColor:s.label.style.color,cssClass:"apexcharts-point-annotation-label ".concat(s.label.style.cssClass," ").concat(s.id?s.id:"")});if(b.attr({rel:i}),a.appendChild(b.node),s.customSVG.SVG){var M=this.annoCtx.graphics.group({class:"apexcharts-point-annotations-custom-svg "+s.customSVG.cssClass});M.attr({transform:"translate(".concat(d+s.customSVG.offsetX,", ").concat(u+s.customSVG.offsetY,")")}),M.node.innerHTML=s.customSVG.SVG,a.appendChild(M.node)}if(s.image.path){var z=s.image.width?s.image.width:20,y=s.image.height?s.image.height:20;w=this.annoCtx.addImage({x:d+s.image.offsetX-z/2,y:u+s.image.offsetY-y/2,width:z,height:y,path:s.image.path,appendTo:".apexcharts-point-annotations"})}s.mouseEnter&&w.node.addEventListener("mouseenter",s.mouseEnter.bind(this,s)),s.mouseLeave&&w.node.addEventListener("mouseleave",s.mouseLeave.bind(this,s)),s.click&&w.node.addEventListener("click",s.click.bind(this,s))}}},{key:"drawPointAnnotations",value:function(){var s=this,a=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-point-annotations"});return a.config.annotations.points.map(function(d,u){s.addPointAnnotation(d,i.node,u)}),i}}]),T}(),st={name:"en",options:{months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],toolbar:{exportToSVG:"Download SVG",exportToPNG:"Download PNG",exportToCSV:"Download CSV",menu:"Menu",selection:"Selection",selectionZoom:"Selection Zoom",zoomIn:"Zoom In",zoomOut:"Zoom Out",pan:"Panning",reset:"Reset Zoom"}}},rt=function(){function T(){g(this,T),this.yAxis={show:!0,showAlways:!1,showForNullSeries:!0,seriesName:void 0,opposite:!1,reversed:!1,logarithmic:!1,logBase:10,tickAmount:void 0,forceNiceScale:!1,max:void 0,min:void 0,floating:!1,decimalsInFloat:void 0,labels:{show:!0,minWidth:0,maxWidth:160,offsetX:0,offsetY:0,align:void 0,rotate:0,padding:20,style:{colors:[],fontSize:"11px",fontWeight:400,fontFamily:void 0,cssClass:""},formatter:void 0},axisBorder:{show:!1,color:"#e0e0e0",width:1,offsetX:0,offsetY:0},axisTicks:{show:!1,color:"#e0e0e0",width:6,offsetX:0,offsetY:0},title:{text:void 0,rotate:-90,offsetY:0,offsetX:0,style:{color:void 0,fontSize:"11px",fontWeight:900,fontFamily:void 0,cssClass:""}},tooltip:{enabled:!1,offsetX:0},crosshairs:{show:!0,position:"front",stroke:{color:"#b6b6b6",width:1,dashArray:0}}},this.pointAnnotation={id:void 0,x:0,y:null,yAxisIndex:0,seriesIndex:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,marker:{size:4,fillColor:"#fff",strokeWidth:2,strokeColor:"#333",shape:"circle",offsetX:0,offsetY:0,radius:2,cssClass:""},label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",offsetX:0,offsetY:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}},customSVG:{SVG:void 0,cssClass:void 0,offsetX:0,offsetY:0},image:{path:void 0,width:20,height:20,offsetX:0,offsetY:0}},this.yAxisAnnotation={id:void 0,y:0,y2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,width:"100%",yAxisIndex:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"end",position:"right",offsetX:0,offsetY:-3,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.xAxisAnnotation={id:void 0,x:0,x2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",orientation:"vertical",position:"top",offsetX:0,offsetY:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.text={x:0,y:0,text:"",textAnchor:"start",foreColor:void 0,fontSize:"13px",fontFamily:void 0,fontWeight:400,appendTo:".apexcharts-annotations",backgroundColor:"transparent",borderColor:"#c2c2c2",borderRadius:0,borderWidth:0,paddingLeft:4,paddingRight:4,paddingTop:2,paddingBottom:2}}return k(T,[{key:"init",value:function(){return{annotations:{yaxis:[this.yAxisAnnotation],xaxis:[this.xAxisAnnotation],points:[this.pointAnnotation],texts:[],images:[],shapes:[]},chart:{animations:{enabled:!0,easing:"easeinout",speed:800,animateGradually:{delay:150,enabled:!0},dynamicAnimation:{enabled:!0,speed:350}},background:"transparent",locales:[st],defaultLocale:"en",dropShadow:{enabled:!1,enabledOnSeries:void 0,top:2,left:2,blur:4,color:"#000",opacity:.35},events:{animationEnd:void 0,beforeMount:void 0,mounted:void 0,updated:void 0,click:void 0,mouseMove:void 0,mouseLeave:void 0,xAxisLabelClick:void 0,legendClick:void 0,markerClick:void 0,selection:void 0,dataPointSelection:void 0,dataPointMouseEnter:void 0,dataPointMouseLeave:void 0,beforeZoom:void 0,beforeResetZoom:void 0,zoomed:void 0,scrolled:void 0,brushScrolled:void 0},foreColor:"#373d3f",fontFamily:"Helvetica, Arial, sans-serif",height:"auto",parentHeightOffset:15,redrawOnParentResize:!0,redrawOnWindowResize:!0,id:void 0,group:void 0,offsetX:0,offsetY:0,selection:{enabled:!1,type:"x",fill:{color:"#24292e",opacity:.1},stroke:{width:1,color:"#24292e",opacity:.4,dashArray:3},xaxis:{min:void 0,max:void 0},yaxis:{min:void 0,max:void 0}},sparkline:{enabled:!1},brush:{enabled:!1,autoScaleYaxis:!0,target:void 0,targets:void 0},stacked:!1,stackType:"normal",toolbar:{show:!0,offsetX:0,offsetY:0,tools:{download:!0,selection:!0,zoom:!0,zoomin:!0,zoomout:!0,pan:!0,reset:!0,customIcons:[]},export:{csv:{filename:void 0,columnDelimiter:",",headerCategory:"category",headerValue:"value",dateFormatter:function(s){return new Date(s).toDateString()}},png:{filename:void 0},svg:{filename:void 0}},autoSelected:"zoom"},type:"line",width:"100%",zoom:{enabled:!0,type:"x",autoScaleYaxis:!1,zoomedArea:{fill:{color:"#90CAF9",opacity:.4},stroke:{color:"#0D47A1",opacity:.4,width:1}}}},plotOptions:{area:{fillTo:"origin"},bar:{horizontal:!1,columnWidth:"70%",barHeight:"70%",distributed:!1,borderRadius:0,borderRadiusApplication:"around",borderRadiusWhenStacked:"last",rangeBarOverlap:!0,rangeBarGroupRows:!1,hideZeroBarsWhenGrouped:!1,isDumbbell:!1,dumbbellColors:void 0,isFunnel:!1,isFunnel3d:!0,colors:{ranges:[],backgroundBarColors:[],backgroundBarOpacity:1,backgroundBarRadius:0},dataLabels:{position:"top",maxItems:100,hideOverflowingLabels:!0,orientation:"horizontal",total:{enabled:!1,formatter:void 0,offsetX:0,offsetY:0,style:{color:"#373d3f",fontSize:"12px",fontFamily:void 0,fontWeight:600}}}},bubble:{zScaling:!0,minBubbleRadius:void 0,maxBubbleRadius:void 0},candlestick:{colors:{upward:"#00B746",downward:"#EF403C"},wick:{useFillColor:!0}},boxPlot:{colors:{upper:"#00E396",lower:"#008FFB"}},heatmap:{radius:2,enableShades:!0,shadeIntensity:.5,reverseNegativeShade:!1,distributed:!1,useFillColorAsStroke:!1,colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},treemap:{enableShades:!0,shadeIntensity:.5,distributed:!1,reverseNegativeShade:!1,useFillColorAsStroke:!1,dataLabels:{format:"scale"},colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},radialBar:{inverseOrder:!1,startAngle:0,endAngle:360,offsetX:0,offsetY:0,hollow:{margin:5,size:"50%",background:"transparent",image:void 0,imageWidth:150,imageHeight:150,imageOffsetX:0,imageOffsetY:0,imageClipped:!0,position:"front",dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},track:{show:!0,startAngle:void 0,endAngle:void 0,background:"#f2f2f2",strokeWidth:"97%",opacity:1,margin:5,dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},dataLabels:{show:!0,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:0,formatter:function(s){return s}},value:{show:!0,fontSize:"14px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:16,formatter:function(s){return s+"%"}},total:{show:!1,label:"Total",fontSize:"16px",fontWeight:600,fontFamily:void 0,color:void 0,formatter:function(s){return s.globals.seriesTotals.reduce(function(a,i){return a+i},0)/s.globals.series.length+"%"}}}},pie:{customScale:1,offsetX:0,offsetY:0,startAngle:0,endAngle:360,expandOnClick:!0,dataLabels:{offset:0,minAngleToShowLabel:10},donut:{size:"65%",background:"transparent",labels:{show:!1,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:-10,formatter:function(s){return s}},value:{show:!0,fontSize:"20px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:10,formatter:function(s){return s}},total:{show:!1,showAlways:!1,label:"Total",fontSize:"16px",fontWeight:400,fontFamily:void 0,color:void 0,formatter:function(s){return s.globals.seriesTotals.reduce(function(a,i){return a+i},0)}}}}},polarArea:{rings:{strokeWidth:1,strokeColor:"#e8e8e8"},spokes:{strokeWidth:1,connectorColors:"#e8e8e8"}},radar:{size:void 0,offsetX:0,offsetY:0,polygons:{strokeWidth:1,strokeColors:"#e8e8e8",connectorColors:"#e8e8e8",fill:{colors:void 0}}}},colors:void 0,dataLabels:{enabled:!0,enabledOnSeries:void 0,formatter:function(s){return s!==null?s:""},textAnchor:"middle",distributed:!1,offsetX:0,offsetY:0,style:{fontSize:"12px",fontFamily:void 0,fontWeight:600,colors:void 0},background:{enabled:!0,foreColor:"#fff",borderRadius:2,padding:4,opacity:.9,borderWidth:1,borderColor:"#fff",dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},fill:{type:"solid",colors:void 0,opacity:.85,gradient:{shade:"dark",type:"horizontal",shadeIntensity:.5,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[0,50,100],colorStops:[]},image:{src:[],width:void 0,height:void 0},pattern:{style:"squares",width:6,height:6,strokeWidth:2}},forecastDataPoints:{count:0,fillOpacity:.5,strokeWidth:void 0,dashArray:4},grid:{show:!0,borderColor:"#e0e0e0",strokeDashArray:0,position:"back",xaxis:{lines:{show:!1}},yaxis:{lines:{show:!0}},row:{colors:void 0,opacity:.5},column:{colors:void 0,opacity:.5},padding:{top:0,right:10,bottom:0,left:12}},labels:[],legend:{show:!0,showForSingleSeries:!1,showForNullSeries:!0,showForZeroSeries:!0,floating:!1,position:"bottom",horizontalAlign:"center",inverseOrder:!1,fontSize:"12px",fontFamily:void 0,fontWeight:400,width:void 0,height:void 0,formatter:void 0,tooltipHoverFormatter:void 0,offsetX:-20,offsetY:4,customLegendItems:[],labels:{colors:void 0,useSeriesColors:!1},markers:{width:12,height:12,strokeWidth:0,fillColors:void 0,strokeColor:"#fff",radius:12,customHTML:void 0,offsetX:0,offsetY:0,onClick:void 0},itemMargin:{horizontal:5,vertical:2},onItemClick:{toggleDataSeries:!0},onItemHover:{highlightDataSeries:!0}},markers:{discrete:[],size:0,colors:void 0,strokeColors:"#fff",strokeWidth:2,strokeOpacity:.9,strokeDashArray:0,fillOpacity:1,shape:"circle",width:8,height:8,radius:2,offsetX:0,offsetY:0,onClick:void 0,onDblClick:void 0,showNullDataPoints:!0,hover:{size:void 0,sizeOffset:3}},noData:{text:void 0,align:"center",verticalAlign:"middle",offsetX:0,offsetY:0,style:{color:void 0,fontSize:"14px",fontFamily:void 0}},responsive:[],series:void 0,states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"lighten",value:.1}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"darken",value:.5}}},title:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:0,floating:!1,style:{fontSize:"14px",fontWeight:900,fontFamily:void 0,color:void 0}},subtitle:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:30,floating:!1,style:{fontSize:"12px",fontWeight:400,fontFamily:void 0,color:void 0}},stroke:{show:!0,curve:"smooth",lineCap:"butt",width:2,colors:void 0,dashArray:0,fill:{type:"solid",colors:void 0,opacity:.85,gradient:{shade:"dark",type:"horizontal",shadeIntensity:.5,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[0,50,100],colorStops:[]}}},tooltip:{enabled:!0,enabledOnSeries:void 0,shared:!0,followCursor:!1,intersect:!1,inverseOrder:!1,custom:void 0,fillSeriesColor:!1,theme:"light",cssClass:"",style:{fontSize:"12px",fontFamily:void 0},onDatasetHover:{highlightDataSeries:!1},x:{show:!0,format:"dd MMM",formatter:void 0},y:{formatter:void 0,title:{formatter:function(s){return s?s+": ":""}}},z:{formatter:void 0,title:"Size: "},marker:{show:!0,fillColors:void 0},items:{display:"flex"},fixed:{enabled:!1,position:"topRight",offsetX:0,offsetY:0}},xaxis:{type:"category",categories:[],convertedCatToNumeric:!1,offsetX:0,offsetY:0,overwriteCategories:void 0,labels:{show:!0,rotate:-45,rotateAlways:!1,hideOverlappingLabels:!0,trim:!1,minHeight:void 0,maxHeight:120,showDuplicates:!0,style:{colors:[],fontSize:"12px",fontWeight:400,fontFamily:void 0,cssClass:""},offsetX:0,offsetY:0,format:void 0,formatter:void 0,datetimeUTC:!0,datetimeFormatter:{year:"yyyy",month:"MMM 'yy",day:"dd MMM",hour:"HH:mm",minute:"HH:mm:ss",second:"HH:mm:ss"}},group:{groups:[],style:{colors:[],fontSize:"12px",fontWeight:400,fontFamily:void 0,cssClass:""}},axisBorder:{show:!0,color:"#e0e0e0",width:"100%",height:1,offsetX:0,offsetY:0},axisTicks:{show:!0,color:"#e0e0e0",height:6,offsetX:0,offsetY:0},tickAmount:void 0,tickPlacement:"on",min:void 0,max:void 0,range:void 0,floating:!1,decimalsInFloat:void 0,position:"bottom",title:{text:void 0,offsetX:0,offsetY:0,style:{color:void 0,fontSize:"12px",fontWeight:900,fontFamily:void 0,cssClass:""}},crosshairs:{show:!0,width:1,position:"back",opacity:.9,stroke:{color:"#b6b6b6",width:1,dashArray:3},fill:{type:"solid",color:"#B1B9C4",gradient:{colorFrom:"#D8E3F0",colorTo:"#BED1E6",stops:[0,100],opacityFrom:.4,opacityTo:.5}},dropShadow:{enabled:!1,left:0,top:0,blur:1,opacity:.4}},tooltip:{enabled:!0,offsetY:0,formatter:void 0,style:{fontSize:"12px",fontFamily:void 0}}},yaxis:this.yAxis,theme:{mode:"light",palette:"palette1",monochrome:{enabled:!1,color:"#008FFB",shadeTo:"light",shadeIntensity:.65}}}}}]),T}(),ht=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.graphics=new _(this.ctx),this.w.globals.isBarHorizontal&&(this.invertAxis=!0),this.helpers=new nt(this),this.xAxisAnnotations=new Y(this),this.yAxisAnnotations=new G(this),this.pointsAnnotations=new et(this),this.w.globals.isBarHorizontal&&this.w.config.yaxis[0].reversed&&(this.inversedReversedAxis=!0),this.xDivision=this.w.globals.gridWidth/this.w.globals.dataPoints}return k(T,[{key:"drawAxesAnnotations",value:function(){var s=this.w;if(s.globals.axisCharts){for(var a=this.yAxisAnnotations.drawYAxisAnnotations(),i=this.xAxisAnnotations.drawXAxisAnnotations(),d=this.pointsAnnotations.drawPointAnnotations(),u=s.config.chart.animations.enabled,p=[a,i,d],w=[i.node,a.node,d.node],f=0;f<3;f++)s.globals.dom.elGraphical.add(p[f]),!u||s.globals.resized||s.globals.dataChanged||s.config.chart.type!=="scatter"&&s.config.chart.type!=="bubble"&&s.globals.dataPoints>1&&w[f].classList.add("apexcharts-element-hidden"),s.globals.delayedElements.push({el:w[f],index:0});this.helpers.annotationsBackground()}}},{key:"drawImageAnnos",value:function(){var s=this;this.w.config.annotations.images.map(function(a,i){s.addImage(a,i)})}},{key:"drawTextAnnos",value:function(){var s=this;this.w.config.annotations.texts.map(function(a,i){s.addText(a,i)})}},{key:"addXaxisAnnotation",value:function(s,a,i){this.xAxisAnnotations.addXaxisAnnotation(s,a,i)}},{key:"addYaxisAnnotation",value:function(s,a,i){this.yAxisAnnotations.addYaxisAnnotation(s,a,i)}},{key:"addPointAnnotation",value:function(s,a,i){this.pointsAnnotations.addPointAnnotation(s,a,i)}},{key:"addText",value:function(s,a){var i=s.x,d=s.y,u=s.text,p=s.textAnchor,w=s.foreColor,f=s.fontSize,b=s.fontFamily,M=s.fontWeight,z=s.cssClass,y=s.backgroundColor,A=s.borderWidth,N=s.strokeDashArray,L=s.borderRadius,O=s.borderColor,V=s.appendTo,Z=V===void 0?".apexcharts-annotations":V,m=s.paddingLeft,C=m===void 0?4:m,j=s.paddingRight,E=j===void 0?4:j,K=s.paddingBottom,Q=K===void 0?2:K,ot=s.paddingTop,it=ot===void 0?2:ot,vt=this.w,zt=this.graphics.drawText({x:i,y:d,text:u,textAnchor:p||"start",fontSize:f||"12px",fontWeight:M||"regular",fontFamily:b||vt.config.chart.fontFamily,foreColor:w||vt.config.chart.foreColor,cssClass:z}),Mt=vt.globals.dom.baseEl.querySelector(Z);Mt&&Mt.appendChild(zt.node);var Vt=zt.bbox();if(u){var Yt=this.graphics.drawRect(Vt.x-C,Vt.y-it,Vt.width+C+E,Vt.height+Q+it,L,y||"transparent",1,A,O,N);Mt.insertBefore(Yt.node,zt.node)}}},{key:"addImage",value:function(s,a){var i=this.w,d=s.path,u=s.x,p=u===void 0?0:u,w=s.y,f=w===void 0?0:w,b=s.width,M=b===void 0?20:b,z=s.height,y=z===void 0?20:z,A=s.appendTo,N=A===void 0?".apexcharts-annotations":A,L=i.globals.dom.Paper.image(d);L.size(M,y).move(p,f);var O=i.globals.dom.baseEl.querySelector(N);return O&&O.appendChild(L.node),L}},{key:"addXaxisAnnotationExternal",value:function(s,a,i){return this.addAnnotationExternal({params:s,pushToMemory:a,context:i,type:"xaxis",contextMethod:i.addXaxisAnnotation}),i}},{key:"addYaxisAnnotationExternal",value:function(s,a,i){return this.addAnnotationExternal({params:s,pushToMemory:a,context:i,type:"yaxis",contextMethod:i.addYaxisAnnotation}),i}},{key:"addPointAnnotationExternal",value:function(s,a,i){return this.invertAxis===void 0&&(this.invertAxis=i.w.globals.isBarHorizontal),this.addAnnotationExternal({params:s,pushToMemory:a,context:i,type:"point",contextMethod:i.addPointAnnotation}),i}},{key:"addAnnotationExternal",value:function(s){var a=s.params,i=s.pushToMemory,d=s.context,u=s.type,p=s.contextMethod,w=d,f=w.w,b=f.globals.dom.baseEl.querySelector(".apexcharts-".concat(u,"-annotations")),M=b.childNodes.length+1,z=new rt,y=Object.assign({},u==="xaxis"?z.xAxisAnnotation:u==="yaxis"?z.yAxisAnnotation:z.pointAnnotation),A=H.extend(y,a);switch(u){case"xaxis":this.addXaxisAnnotation(A,b,M);break;case"yaxis":this.addYaxisAnnotation(A,b,M);break;case"point":this.addPointAnnotation(A,b,M)}var N=f.globals.dom.baseEl.querySelector(".apexcharts-".concat(u,"-annotations .apexcharts-").concat(u,"-annotation-label[rel='").concat(M,"']")),L=this.helpers.addBackgroundToAnno(N,A);return L&&b.insertBefore(L.node,N),i&&f.globals.memory.methodsToExec.push({context:w,id:A.id?A.id:H.randomId(),method:p,label:"addAnnotation",params:a}),d}},{key:"clearAnnotations",value:function(s){var a=s.w,i=a.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis-annotations, .apexcharts-xaxis-annotations, .apexcharts-point-annotations");a.globals.memory.methodsToExec.map(function(d,u){d.label!=="addText"&&d.label!=="addAnnotation"||a.globals.memory.methodsToExec.splice(u,1)}),i=H.listToArray(i),Array.prototype.forEach.call(i,function(d){for(;d.firstChild;)d.removeChild(d.firstChild)})}},{key:"removeAnnotation",value:function(s,a){var i=s.w,d=i.globals.dom.baseEl.querySelectorAll(".".concat(a));d&&(i.globals.memory.methodsToExec.map(function(u,p){u.id===a&&i.globals.memory.methodsToExec.splice(p,1)}),Array.prototype.forEach.call(d,function(u){u.parentElement.removeChild(u)}))}}]),T}(),dt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.months31=[1,3,5,7,8,10,12],this.months30=[2,4,6,9,11],this.daysCntOfYear=[0,31,59,90,120,151,181,212,243,273,304,334]}return k(T,[{key:"isValidDate",value:function(s){return!isNaN(this.parseDate(s))}},{key:"getTimeStamp",value:function(s){return Date.parse(s)?this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(s).toISOString().substr(0,25)).getTime():new Date(s).getTime():s}},{key:"getDate",value:function(s){return this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(s).toUTCString()):new Date(s)}},{key:"parseDate",value:function(s){var a=Date.parse(s);if(!isNaN(a))return this.getTimeStamp(s);var i=Date.parse(s.replace(/-/g,"/").replace(/[a-z]+/gi," "));return i=this.getTimeStamp(i)}},{key:"parseDateWithTimezone",value:function(s){return Date.parse(s.replace(/-/g,"/").replace(/[a-z]+/gi," "))}},{key:"formatDate",value:function(s,a){var i=this.w.globals.locale,d=this.w.config.xaxis.labels.datetimeUTC,u=["\0"].concat(F(i.months)),p=[""].concat(F(i.shortMonths)),w=[""].concat(F(i.days)),f=[""].concat(F(i.shortDays));function b(Q,ot){var it=Q+"";for(ot=ot||2;it.length12?A-12:A===0?12:A;a=(a=(a=(a=a.replace(/(^|[^\\])HH+/g,"$1"+b(A))).replace(/(^|[^\\])H/g,"$1"+A)).replace(/(^|[^\\])hh+/g,"$1"+b(N))).replace(/(^|[^\\])h/g,"$1"+N);var L=d?s.getUTCMinutes():s.getMinutes();a=(a=a.replace(/(^|[^\\])mm+/g,"$1"+b(L))).replace(/(^|[^\\])m/g,"$1"+L);var O=d?s.getUTCSeconds():s.getSeconds();a=(a=a.replace(/(^|[^\\])ss+/g,"$1"+b(O))).replace(/(^|[^\\])s/g,"$1"+O);var V=d?s.getUTCMilliseconds():s.getMilliseconds();a=a.replace(/(^|[^\\])fff+/g,"$1"+b(V,3)),V=Math.round(V/10),a=a.replace(/(^|[^\\])ff/g,"$1"+b(V)),V=Math.round(V/10);var Z=A<12?"AM":"PM";a=(a=(a=a.replace(/(^|[^\\])f/g,"$1"+V)).replace(/(^|[^\\])TT+/g,"$1"+Z)).replace(/(^|[^\\])T/g,"$1"+Z.charAt(0));var m=Z.toLowerCase();a=(a=a.replace(/(^|[^\\])tt+/g,"$1"+m)).replace(/(^|[^\\])t/g,"$1"+m.charAt(0));var C=-s.getTimezoneOffset(),j=d||!C?"Z":C>0?"+":"-";if(!d){var E=(C=Math.abs(C))%60;j+=b(Math.floor(C/60))+":"+b(E)}a=a.replace(/(^|[^\\])K/g,"$1"+j);var K=(d?s.getUTCDay():s.getDay())+1;return a=(a=(a=(a=(a=a.replace(new RegExp(w[0],"g"),w[K])).replace(new RegExp(f[0],"g"),f[K])).replace(new RegExp(u[0],"g"),u[z])).replace(new RegExp(p[0],"g"),p[z])).replace(/\\(.)/g,"$1")}},{key:"getTimeUnitsfromTimestamp",value:function(s,a,i){var d=this.w;d.config.xaxis.min!==void 0&&(s=d.config.xaxis.min),d.config.xaxis.max!==void 0&&(a=d.config.xaxis.max);var u=this.getDate(s),p=this.getDate(a),w=this.formatDate(u,"yyyy MM dd HH mm ss fff").split(" "),f=this.formatDate(p,"yyyy MM dd HH mm ss fff").split(" ");return{minMillisecond:parseInt(w[6],10),maxMillisecond:parseInt(f[6],10),minSecond:parseInt(w[5],10),maxSecond:parseInt(f[5],10),minMinute:parseInt(w[4],10),maxMinute:parseInt(f[4],10),minHour:parseInt(w[3],10),maxHour:parseInt(f[3],10),minDate:parseInt(w[2],10),maxDate:parseInt(f[2],10),minMonth:parseInt(w[1],10)-1,maxMonth:parseInt(f[1],10)-1,minYear:parseInt(w[0],10),maxYear:parseInt(f[0],10)}}},{key:"isLeapYear",value:function(s){return s%4==0&&s%100!=0||s%400==0}},{key:"calculcateLastDaysOfMonth",value:function(s,a,i){return this.determineDaysOfMonths(s,a)-i}},{key:"determineDaysOfYear",value:function(s){var a=365;return this.isLeapYear(s)&&(a=366),a}},{key:"determineRemainingDaysOfYear",value:function(s,a,i){var d=this.daysCntOfYear[a]+i;return a>1&&this.isLeapYear()&&d++,d}},{key:"determineDaysOfMonths",value:function(s,a){var i=30;switch(s=H.monthMod(s),!0){case this.months30.indexOf(s)>-1:s===2&&(i=this.isLeapYear(a)?29:28);break;case this.months31.indexOf(s)>-1:default:i=31}return i}}]),T}(),Ct=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.tooltipKeyFormat="dd MMM"}return k(T,[{key:"xLabelFormat",value:function(s,a,i,d){var u=this.w;if(u.config.xaxis.type==="datetime"&&u.config.xaxis.labels.formatter===void 0&&u.config.tooltip.x.formatter===void 0){var p=new dt(this.ctx);return p.formatDate(p.getDate(a),u.config.tooltip.x.format)}return s(a,i,d)}},{key:"defaultGeneralFormatter",value:function(s){return Array.isArray(s)?s.map(function(a){return a}):s}},{key:"defaultYFormatter",value:function(s,a,i){var d=this.w;return H.isNumber(s)&&(s=d.globals.yValueDecimal!==0?s.toFixed(a.decimalsInFloat!==void 0?a.decimalsInFloat:d.globals.yValueDecimal):d.globals.maxYArr[i]-d.globals.minYArr[i]<5?s.toFixed(1):s.toFixed(0)),s}},{key:"setLabelFormatters",value:function(){var s=this,a=this.w;return a.globals.xaxisTooltipFormatter=function(i){return s.defaultGeneralFormatter(i)},a.globals.ttKeyFormatter=function(i){return s.defaultGeneralFormatter(i)},a.globals.ttZFormatter=function(i){return i},a.globals.legendFormatter=function(i){return s.defaultGeneralFormatter(i)},a.config.xaxis.labels.formatter!==void 0?a.globals.xLabelFormatter=a.config.xaxis.labels.formatter:a.globals.xLabelFormatter=function(i){if(H.isNumber(i)){if(!a.config.xaxis.convertedCatToNumeric&&a.config.xaxis.type==="numeric"){if(H.isNumber(a.config.xaxis.decimalsInFloat))return i.toFixed(a.config.xaxis.decimalsInFloat);var d=a.globals.maxX-a.globals.minX;return d>0&&d<100?i.toFixed(1):i.toFixed(0)}return a.globals.isBarHorizontal&&a.globals.maxY-a.globals.minYArr<4?i.toFixed(1):i.toFixed(0)}return i},typeof a.config.tooltip.x.formatter=="function"?a.globals.ttKeyFormatter=a.config.tooltip.x.formatter:a.globals.ttKeyFormatter=a.globals.xLabelFormatter,typeof a.config.xaxis.tooltip.formatter=="function"&&(a.globals.xaxisTooltipFormatter=a.config.xaxis.tooltip.formatter),(Array.isArray(a.config.tooltip.y)||a.config.tooltip.y.formatter!==void 0)&&(a.globals.ttVal=a.config.tooltip.y),a.config.tooltip.z.formatter!==void 0&&(a.globals.ttZFormatter=a.config.tooltip.z.formatter),a.config.legend.formatter!==void 0&&(a.globals.legendFormatter=a.config.legend.formatter),a.config.yaxis.forEach(function(i,d){i.labels.formatter!==void 0?a.globals.yLabelFormatters[d]=i.labels.formatter:a.globals.yLabelFormatters[d]=function(u){return a.globals.xyCharts?Array.isArray(u)?u.map(function(p){return s.defaultYFormatter(p,i,d)}):s.defaultYFormatter(u,i,d):u}}),a.globals}},{key:"heatmapLabelFormatters",value:function(){var s=this.w;if(s.config.chart.type==="heatmap"){s.globals.yAxisScale[0].result=s.globals.seriesNames.slice();var a=s.globals.seriesNames.reduce(function(i,d){return i.length>d.length?i:d},0);s.globals.yAxisScale[0].niceMax=a,s.globals.yAxisScale[0].niceMin=a}}}]),T}(),xt=function(T){var s,a=T.isTimeline,i=T.ctx,d=T.seriesIndex,u=T.dataPointIndex,p=T.y1,w=T.y2,f=T.w,b=f.globals.seriesRangeStart[d][u],M=f.globals.seriesRangeEnd[d][u],z=f.globals.labels[u],y=f.config.series[d].name?f.config.series[d].name:"",A=f.globals.ttKeyFormatter,N=f.config.tooltip.y.title.formatter,L={w:f,seriesIndex:d,dataPointIndex:u,start:b,end:M};typeof N=="function"&&(y=N(y,L)),(s=f.config.series[d].data[u])!==null&&s!==void 0&&s.x&&(z=f.config.series[d].data[u].x),a||f.config.xaxis.type==="datetime"&&(z=new Ct(i).xLabelFormat(f.globals.ttKeyFormatter,z,z,{i:void 0,dateFormatter:new dt(i).formatDate,w:f})),typeof A=="function"&&(z=A(z,L)),Number.isFinite(p)&&Number.isFinite(w)&&(b=p,M=w);var O="",V="",Z=f.globals.colors[d];if(f.config.tooltip.x.formatter===void 0)if(f.config.xaxis.type==="datetime"){var m=new dt(i);O=m.formatDate(m.getDate(b),f.config.tooltip.x.format),V=m.formatDate(m.getDate(M),f.config.tooltip.x.format)}else O=b,V=M;else O=f.config.tooltip.x.formatter(b),V=f.config.tooltip.x.formatter(M);return{start:b,end:M,startVal:O,endVal:V,ylabel:z,color:Z,seriesName:y}},wt=function(T){var s=T.color,a=T.seriesName,i=T.ylabel,d=T.start,u=T.end,p=T.seriesIndex,w=T.dataPointIndex,f=T.ctx.tooltip.tooltipLabels.getFormatters(p);d=f.yLbFormatter(d),u=f.yLbFormatter(u);var b=f.yLbFormatter(T.w.globals.series[p][w]),M=` - `.concat(d,` - - - `).concat(u,` - `);return'
'+(a||"")+'
'+i+": "+(T.w.globals.comboCharts?T.w.config.series[p].type==="rangeArea"||T.w.config.series[p].type==="rangeBar"?M:"".concat(b,""):M)+"
"},gt=function(){function T(s){g(this,T),this.opts=s}return k(T,[{key:"hideYAxis",value:function(){this.opts.yaxis[0].show=!1,this.opts.yaxis[0].title.text="",this.opts.yaxis[0].axisBorder.show=!1,this.opts.yaxis[0].axisTicks.show=!1,this.opts.yaxis[0].floating=!0}},{key:"line",value:function(){return{chart:{animations:{easing:"swing"}},dataLabels:{enabled:!1},stroke:{width:5,curve:"straight"},markers:{size:0,hover:{sizeOffset:6}},xaxis:{crosshairs:{width:1}}}}},{key:"sparkline",value:function(s){return this.hideYAxis(),H.extend(s,{grid:{show:!1,padding:{left:0,right:0,top:0,bottom:0}},legend:{show:!1},xaxis:{labels:{show:!1},tooltip:{enabled:!1},axisBorder:{show:!1},axisTicks:{show:!1}},chart:{toolbar:{show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1}})}},{key:"bar",value:function(){return{chart:{stacked:!1,animations:{easing:"swing"}},plotOptions:{bar:{dataLabels:{position:"center"}}},dataLabels:{style:{colors:["#fff"]},background:{enabled:!1}},stroke:{width:0,lineCap:"round"},fill:{opacity:.85},legend:{markers:{shape:"square",radius:2,size:8}},tooltip:{shared:!1,intersect:!0},xaxis:{tooltip:{enabled:!1},tickPlacement:"between",crosshairs:{width:"barWidth",position:"back",fill:{type:"gradient"},dropShadow:{enabled:!1},stroke:{width:0}}}}}},{key:"funnel",value:function(){return this.hideYAxis(),h(h({},this.bar()),{},{chart:{animations:{easing:"linear",speed:800,animateGradually:{enabled:!1}}},plotOptions:{bar:{horizontal:!0,borderRadiusApplication:"around",borderRadius:0,dataLabels:{position:"center"}}},grid:{show:!1,padding:{left:0,right:0}},xaxis:{labels:{show:!1},tooltip:{enabled:!1},axisBorder:{show:!1},axisTicks:{show:!1}}})}},{key:"candlestick",value:function(){var s=this;return{stroke:{width:1,colors:["#333"]},fill:{opacity:1},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(a){var i=a.seriesIndex,d=a.dataPointIndex,u=a.w;return s._getBoxTooltip(u,i,d,["Open","High","","Low","Close"],"candlestick")}},states:{active:{filter:{type:"none"}}},xaxis:{crosshairs:{width:1}}}}},{key:"boxPlot",value:function(){var s=this;return{chart:{animations:{dynamicAnimation:{enabled:!1}}},stroke:{width:1,colors:["#24292e"]},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(a){var i=a.seriesIndex,d=a.dataPointIndex,u=a.w;return s._getBoxTooltip(u,i,d,["Minimum","Q1","Median","Q3","Maximum"],"boxPlot")}},markers:{size:5,strokeWidth:1,strokeColors:"#111"},xaxis:{crosshairs:{width:1}}}}},{key:"rangeBar",value:function(){return{chart:{animations:{animateGradually:!1}},stroke:{width:0,lineCap:"square"},plotOptions:{bar:{borderRadius:0,dataLabels:{position:"center"}}},dataLabels:{enabled:!1,formatter:function(s,a){a.ctx;var i=a.seriesIndex,d=a.dataPointIndex,u=a.w,p=function(){var w=u.globals.seriesRangeStart[i][d];return u.globals.seriesRangeEnd[i][d]-w};return u.globals.comboCharts?u.config.series[i].type==="rangeBar"||u.config.series[i].type==="rangeArea"?p():s:p()},background:{enabled:!1},style:{colors:["#fff"]}},markers:{size:10},tooltip:{shared:!1,followCursor:!0,custom:function(s){return s.w.config.plotOptions&&s.w.config.plotOptions.bar&&s.w.config.plotOptions.bar.horizontal?function(a){var i=xt(h(h({},a),{},{isTimeline:!0})),d=i.color,u=i.seriesName,p=i.ylabel,w=i.startVal,f=i.endVal;return wt(h(h({},a),{},{color:d,seriesName:u,ylabel:p,start:w,end:f}))}(s):function(a){var i=xt(a),d=i.color,u=i.seriesName,p=i.ylabel,w=i.start,f=i.end;return wt(h(h({},a),{},{color:d,seriesName:u,ylabel:p,start:w,end:f}))}(s)}},xaxis:{tickPlacement:"between",tooltip:{enabled:!1},crosshairs:{stroke:{width:0}}}}}},{key:"dumbbell",value:function(s){var a,i;return(a=s.plotOptions.bar)!==null&&a!==void 0&&a.barHeight||(s.plotOptions.bar.barHeight=2),(i=s.plotOptions.bar)!==null&&i!==void 0&&i.columnWidth||(s.plotOptions.bar.columnWidth=2),s}},{key:"area",value:function(){return{stroke:{width:4,fill:{type:"solid",gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.65,opacityTo:.5,stops:[0,100,100]}}},fill:{type:"gradient",gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.65,opacityTo:.5,stops:[0,100,100]}},markers:{size:0,hover:{sizeOffset:6}},tooltip:{followCursor:!1}}}},{key:"rangeArea",value:function(){return{stroke:{curve:"straight",width:0},fill:{type:"solid",opacity:.6},markers:{size:0},states:{hover:{filter:{type:"none"}},active:{filter:{type:"none"}}},tooltip:{intersect:!1,shared:!0,followCursor:!0,custom:function(s){return function(a){var i=xt(a),d=i.color,u=i.seriesName,p=i.ylabel,w=i.start,f=i.end;return wt(h(h({},a),{},{color:d,seriesName:u,ylabel:p,start:w,end:f}))}(s)}}}}},{key:"brush",value:function(s){return H.extend(s,{chart:{toolbar:{autoSelected:"selection",show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1},stroke:{width:1},tooltip:{enabled:!1},xaxis:{tooltip:{enabled:!1}}})}},{key:"stacked100",value:function(s){s.dataLabels=s.dataLabels||{},s.dataLabels.formatter=s.dataLabels.formatter||void 0;var a=s.dataLabels.formatter;return s.yaxis.forEach(function(i,d){s.yaxis[d].min=0,s.yaxis[d].max=100}),s.chart.type==="bar"&&(s.dataLabels.formatter=a||function(i){return typeof i=="number"&&i?i.toFixed(0)+"%":i}),s}},{key:"stackedBars",value:function(){var s=this.bar();return h(h({},s),{},{plotOptions:h(h({},s.plotOptions),{},{bar:h(h({},s.plotOptions.bar),{},{borderRadiusApplication:"end",borderRadiusWhenStacked:"last"})})})}},{key:"convertCatToNumeric",value:function(s){return s.xaxis.convertedCatToNumeric=!0,s}},{key:"convertCatToNumericXaxis",value:function(s,a,i){s.xaxis.type="numeric",s.xaxis.labels=s.xaxis.labels||{},s.xaxis.labels.formatter=s.xaxis.labels.formatter||function(p){return H.isNumber(p)?Math.floor(p):p};var d=s.xaxis.labels.formatter,u=s.xaxis.categories&&s.xaxis.categories.length?s.xaxis.categories:s.labels;return i&&i.length&&(u=i.map(function(p){return Array.isArray(p)?p:String(p)})),u&&u.length&&(s.xaxis.labels.formatter=function(p){return H.isNumber(p)?d(u[Math.floor(p)-1]):d(p)}),s.xaxis.categories=[],s.labels=[],s.xaxis.tickAmount=s.xaxis.tickAmount||"dataPoints",s}},{key:"bubble",value:function(){return{dataLabels:{style:{colors:["#fff"]}},tooltip:{shared:!1,intersect:!0},xaxis:{crosshairs:{width:0}},fill:{type:"solid",gradient:{shade:"light",inverse:!0,shadeIntensity:.55,opacityFrom:.4,opacityTo:.8}}}}},{key:"scatter",value:function(){return{dataLabels:{enabled:!1},tooltip:{shared:!1,intersect:!0},markers:{size:6,strokeWidth:1,hover:{sizeOffset:2}}}}},{key:"heatmap",value:function(){return{chart:{stacked:!1},fill:{opacity:1},dataLabels:{style:{colors:["#fff"]}},stroke:{colors:["#fff"]},tooltip:{followCursor:!0,marker:{show:!1},x:{show:!1}},legend:{position:"top",markers:{shape:"square",size:10,offsetY:2}},grid:{padding:{right:20}}}}},{key:"treemap",value:function(){return{chart:{zoom:{enabled:!1}},dataLabels:{style:{fontSize:14,fontWeight:600,colors:["#fff"]}},stroke:{show:!0,width:2,colors:["#fff"]},legend:{show:!1},fill:{gradient:{stops:[0,100]}},tooltip:{followCursor:!0,x:{show:!1}},grid:{padding:{left:0,right:0}},xaxis:{crosshairs:{show:!1},tooltip:{enabled:!1}}}}},{key:"pie",value:function(){return{chart:{toolbar:{show:!1}},plotOptions:{pie:{donut:{labels:{show:!1}}}},dataLabels:{formatter:function(s){return s.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",stops:[0,100]}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"donut",value:function(){return{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(s){return s.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",shadeIntensity:.35,stops:[80,100],opacityFrom:1,opacityTo:1}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"polarArea",value:function(){return this.opts.yaxis[0].tickAmount=this.opts.yaxis[0].tickAmount?this.opts.yaxis[0].tickAmount:6,{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(s){return s.toFixed(1)+"%"},enabled:!1},stroke:{show:!0,width:2},fill:{opacity:.7},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"radar",value:function(){return this.opts.yaxis[0].labels.offsetY=this.opts.yaxis[0].labels.offsetY?this.opts.yaxis[0].labels.offsetY:6,{dataLabels:{enabled:!1,style:{fontSize:"11px"}},stroke:{width:2},markers:{size:3,strokeWidth:1,strokeOpacity:1},fill:{opacity:.2},tooltip:{shared:!1,intersect:!0,followCursor:!0},grid:{show:!1},xaxis:{labels:{formatter:function(s){return s},style:{colors:["#a8a8a8"],fontSize:"11px"}},tooltip:{enabled:!1},crosshairs:{show:!1}}}}},{key:"radialBar",value:function(){return{chart:{animations:{dynamicAnimation:{enabled:!0,speed:800}},toolbar:{show:!1}},fill:{gradient:{shade:"dark",shadeIntensity:.4,inverseColors:!1,type:"diagonal2",opacityFrom:1,opacityTo:1,stops:[70,98,100]}},legend:{show:!1,position:"right"},tooltip:{enabled:!1,fillSeriesColor:!0}}}},{key:"_getBoxTooltip",value:function(s,a,i,d,u){var p=s.globals.seriesCandleO[a][i],w=s.globals.seriesCandleH[a][i],f=s.globals.seriesCandleM[a][i],b=s.globals.seriesCandleL[a][i],M=s.globals.seriesCandleC[a][i];return s.config.series[a].type&&s.config.series[a].type!==u?`
- `.concat(s.config.series[a].name?s.config.series[a].name:"series-"+(a+1),": ").concat(s.globals.series[a][i],` -
`):'
')+"
".concat(d[0],': ')+p+"
"+"
".concat(d[1],': ')+w+"
"+(f?"
".concat(d[2],': ')+f+"
":"")+"
".concat(d[3],': ')+b+"
"+"
".concat(d[4],': ')+M+"
"}}]),T}(),It=function(){function T(s){g(this,T),this.opts=s}return k(T,[{key:"init",value:function(s){var a=s.responsiveOverride,i=this.opts,d=new rt,u=new gt(i);this.chartType=i.chart.type,i=this.extendYAxis(i),i=this.extendAnnotations(i);var p=d.init(),w={};if(i&&c(i)==="object"){var f,b,M,z,y,A,N,L,O={};O=["line","area","bar","candlestick","boxPlot","rangeBar","rangeArea","bubble","scatter","heatmap","treemap","pie","polarArea","donut","radar","radialBar"].indexOf(i.chart.type)!==-1?u[i.chart.type]():u.line(),(f=i.plotOptions)!==null&&f!==void 0&&(b=f.bar)!==null&&b!==void 0&&b.isFunnel&&(O=u.funnel()),i.chart.stacked&&i.chart.type==="bar"&&(O=u.stackedBars()),(M=i.chart.brush)!==null&&M!==void 0&&M.enabled&&(O=u.brush(O)),i.chart.stacked&&i.chart.stackType==="100%"&&(i=u.stacked100(i)),(z=i.plotOptions)!==null&&z!==void 0&&(y=z.bar)!==null&&y!==void 0&&y.isDumbbell&&(i=u.dumbbell(i)),this.checkForDarkTheme(window.Apex),this.checkForDarkTheme(i),i.xaxis=i.xaxis||window.Apex.xaxis||{},a||(i.xaxis.convertedCatToNumeric=!1),((A=(i=this.checkForCatToNumericXAxis(this.chartType,O,i)).chart.sparkline)!==null&&A!==void 0&&A.enabled||(N=window.Apex.chart)!==null&&N!==void 0&&(L=N.sparkline)!==null&&L!==void 0&&L.enabled)&&(O=u.sparkline(O)),w=H.extend(p,O)}var V=H.extend(w,window.Apex);return p=H.extend(V,i),p=this.handleUserInputErrors(p)}},{key:"checkForCatToNumericXAxis",value:function(s,a,i){var d,u,p=new gt(i),w=(s==="bar"||s==="boxPlot")&&((d=i.plotOptions)===null||d===void 0||(u=d.bar)===null||u===void 0?void 0:u.horizontal),f=s==="pie"||s==="polarArea"||s==="donut"||s==="radar"||s==="radialBar"||s==="heatmap",b=i.xaxis.type!=="datetime"&&i.xaxis.type!=="numeric",M=i.xaxis.tickPlacement?i.xaxis.tickPlacement:a.xaxis&&a.xaxis.tickPlacement;return w||f||!b||M==="between"||(i=p.convertCatToNumeric(i)),i}},{key:"extendYAxis",value:function(s,a){var i=new rt;(s.yaxis===void 0||!s.yaxis||Array.isArray(s.yaxis)&&s.yaxis.length===0)&&(s.yaxis={}),s.yaxis.constructor!==Array&&window.Apex.yaxis&&window.Apex.yaxis.constructor!==Array&&(s.yaxis=H.extend(s.yaxis,window.Apex.yaxis)),s.yaxis.constructor!==Array?s.yaxis=[H.extend(i.yAxis,s.yaxis)]:s.yaxis=H.extendArray(s.yaxis,i.yAxis);var d=!1;s.yaxis.forEach(function(p){p.logarithmic&&(d=!0)});var u=s.series;return a&&!u&&(u=a.config.series),d&&u.length!==s.yaxis.length&&u.length&&(s.yaxis=u.map(function(p,w){if(p.name||(u[w].name="series-".concat(w+1)),s.yaxis[w])return s.yaxis[w].seriesName=u[w].name,s.yaxis[w];var f=H.extend(i.yAxis,s.yaxis[0]);return f.show=!1,f})),d&&u.length>1&&u.length!==s.yaxis.length&&console.warn("A multi-series logarithmic chart should have equal number of series and y-axes. Please make sure to equalize both."),s}},{key:"extendAnnotations",value:function(s){return s.annotations===void 0&&(s.annotations={},s.annotations.yaxis=[],s.annotations.xaxis=[],s.annotations.points=[]),s=this.extendYAxisAnnotations(s),s=this.extendXAxisAnnotations(s),s=this.extendPointAnnotations(s)}},{key:"extendYAxisAnnotations",value:function(s){var a=new rt;return s.annotations.yaxis=H.extendArray(s.annotations.yaxis!==void 0?s.annotations.yaxis:[],a.yAxisAnnotation),s}},{key:"extendXAxisAnnotations",value:function(s){var a=new rt;return s.annotations.xaxis=H.extendArray(s.annotations.xaxis!==void 0?s.annotations.xaxis:[],a.xAxisAnnotation),s}},{key:"extendPointAnnotations",value:function(s){var a=new rt;return s.annotations.points=H.extendArray(s.annotations.points!==void 0?s.annotations.points:[],a.pointAnnotation),s}},{key:"checkForDarkTheme",value:function(s){s.theme&&s.theme.mode==="dark"&&(s.tooltip||(s.tooltip={}),s.tooltip.theme!=="light"&&(s.tooltip.theme="dark"),s.chart.foreColor||(s.chart.foreColor="#f6f7f8"),s.chart.background||(s.chart.background="#424242"),s.theme.palette||(s.theme.palette="palette4"))}},{key:"handleUserInputErrors",value:function(s){var a=s;if(a.tooltip.shared&&a.tooltip.intersect)throw new Error("tooltip.shared cannot be enabled when tooltip.intersect is true. Turn off any other option by setting it to false.");if(a.chart.type==="bar"&&a.plotOptions.bar.horizontal){if(a.yaxis.length>1)throw new Error("Multiple Y Axis for bars are not supported. Switch to column chart by setting plotOptions.bar.horizontal=false");a.yaxis[0].reversed&&(a.yaxis[0].opposite=!0),a.xaxis.tooltip.enabled=!1,a.yaxis[0].tooltip.enabled=!1,a.chart.zoom.enabled=!1}return a.chart.type!=="bar"&&a.chart.type!=="rangeBar"||a.tooltip.shared&&a.xaxis.crosshairs.width==="barWidth"&&a.series.length>1&&(a.xaxis.crosshairs.width="tickWidth"),a.chart.type!=="candlestick"&&a.chart.type!=="boxPlot"||a.yaxis[0].reversed&&(console.warn("Reversed y-axis in ".concat(a.chart.type," chart is not supported.")),a.yaxis[0].reversed=!1),a}}]),T}(),At=function(){function T(){g(this,T)}return k(T,[{key:"initGlobalVars",value:function(s){s.series=[],s.seriesCandleO=[],s.seriesCandleH=[],s.seriesCandleM=[],s.seriesCandleL=[],s.seriesCandleC=[],s.seriesRangeStart=[],s.seriesRangeEnd=[],s.seriesRange=[],s.seriesPercent=[],s.seriesGoals=[],s.seriesX=[],s.seriesZ=[],s.seriesNames=[],s.seriesTotals=[],s.seriesLog=[],s.seriesColors=[],s.stackedSeriesTotals=[],s.seriesXvalues=[],s.seriesYvalues=[],s.labels=[],s.hasXaxisGroups=!1,s.groups=[],s.hasSeriesGroups=!1,s.seriesGroups=[],s.categoryLabels=[],s.timescaleLabels=[],s.noLabelsProvided=!1,s.resizeTimer=null,s.selectionResizeTimer=null,s.delayedElements=[],s.pointsArray=[],s.dataLabelsRects=[],s.isXNumeric=!1,s.skipLastTimelinelabel=!1,s.skipFirstTimelinelabel=!1,s.isDataXYZ=!1,s.isMultiLineX=!1,s.isMultipleYAxis=!1,s.maxY=-Number.MAX_VALUE,s.minY=Number.MIN_VALUE,s.minYArr=[],s.maxYArr=[],s.maxX=-Number.MAX_VALUE,s.minX=Number.MAX_VALUE,s.initialMaxX=-Number.MAX_VALUE,s.initialMinX=Number.MAX_VALUE,s.maxDate=0,s.minDate=Number.MAX_VALUE,s.minZ=Number.MAX_VALUE,s.maxZ=-Number.MAX_VALUE,s.minXDiff=Number.MAX_VALUE,s.yAxisScale=[],s.xAxisScale=null,s.xAxisTicksPositions=[],s.yLabelsCoords=[],s.yTitleCoords=[],s.barPadForNumericAxis=0,s.padHorizontal=0,s.xRange=0,s.yRange=[],s.zRange=0,s.dataPoints=0,s.xTickAmount=0}},{key:"globalVars",value:function(s){return{chartID:null,cuid:null,events:{beforeMount:[],mounted:[],updated:[],clicked:[],selection:[],dataPointSelection:[],zoomed:[],scrolled:[]},colors:[],clientX:null,clientY:null,fill:{colors:[]},stroke:{colors:[]},dataLabels:{style:{colors:[]}},radarPolygons:{fill:{colors:[]}},markers:{colors:[],size:s.markers.size,largestSize:0},animationEnded:!1,isTouchDevice:"ontouchstart"in window||navigator.msMaxTouchPoints,isDirty:!1,isExecCalled:!1,initialConfig:null,initialSeries:[],lastXAxis:[],lastYAxis:[],columnSeries:null,labels:[],timescaleLabels:[],noLabelsProvided:!1,allSeriesCollapsed:!1,collapsedSeries:[],collapsedSeriesIndices:[],ancillaryCollapsedSeries:[],ancillaryCollapsedSeriesIndices:[],risingSeries:[],dataFormatXNumeric:!1,capturedSeriesIndex:-1,capturedDataPointIndex:-1,selectedDataPoints:[],goldenPadding:35,invalidLogScale:!1,ignoreYAxisIndexes:[],yAxisSameScaleIndices:[],maxValsInArrayIndex:0,radialSize:0,selection:void 0,zoomEnabled:s.chart.toolbar.autoSelected==="zoom"&&s.chart.toolbar.tools.zoom&&s.chart.zoom.enabled,panEnabled:s.chart.toolbar.autoSelected==="pan"&&s.chart.toolbar.tools.pan,selectionEnabled:s.chart.toolbar.autoSelected==="selection"&&s.chart.toolbar.tools.selection,yaxis:null,mousedown:!1,lastClientPosition:{},visibleXRange:void 0,yValueDecimal:0,total:0,SVGNS:"http://www.w3.org/2000/svg",svgWidth:0,svgHeight:0,noData:!1,locale:{},dom:{},memory:{methodsToExec:[]},shouldAnimate:!0,skipLastTimelinelabel:!1,skipFirstTimelinelabel:!1,delayedElements:[],axisCharts:!0,isDataXYZ:!1,resized:!1,resizeTimer:null,comboCharts:!1,dataChanged:!1,previousPaths:[],allSeriesHasEqualX:!0,pointsArray:[],dataLabelsRects:[],lastDrawnDataLabelsIndexes:[],hasNullValues:!1,easing:null,zoomed:!1,gridWidth:0,gridHeight:0,rotateXLabels:!1,defaultLabels:!1,xLabelFormatter:void 0,yLabelFormatters:[],xaxisTooltipFormatter:void 0,ttKeyFormatter:void 0,ttVal:void 0,ttZFormatter:void 0,LINE_HEIGHT_RATIO:1.618,xAxisLabelsHeight:0,xAxisGroupLabelsHeight:0,xAxisLabelsWidth:0,yAxisLabelsWidth:0,scaleX:1,scaleY:1,translateX:0,translateY:0,translateYAxisX:[],yAxisWidths:[],translateXAxisY:0,translateXAxisX:0,tooltip:null}}},{key:"init",value:function(s){var a=this.globalVars(s);return this.initGlobalVars(a),a.initialConfig=H.extend({},s),a.initialSeries=H.clone(s.series),a.lastXAxis=H.clone(a.initialConfig.xaxis),a.lastYAxis=H.clone(a.initialConfig.yaxis),a}}]),T}(),Tt=function(){function T(s){g(this,T),this.opts=s}return k(T,[{key:"init",value:function(){var s=new It(this.opts).init({responsiveOverride:!1});return{config:s,globals:new At().init(s)}}}]),T}(),Ft=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.opts=null,this.seriesIndex=0}return k(T,[{key:"clippedImgArea",value:function(s){var a=this.w,i=a.config,d=parseInt(a.globals.gridWidth,10),u=parseInt(a.globals.gridHeight,10),p=d>u?d:u,w=s.image,f=0,b=0;s.width===void 0&&s.height===void 0?i.fill.image.width!==void 0&&i.fill.image.height!==void 0?(f=i.fill.image.width+1,b=i.fill.image.height):(f=p+1,b=p):(f=s.width,b=s.height);var M=document.createElementNS(a.globals.SVGNS,"pattern");_.setAttrs(M,{id:s.patternID,patternUnits:s.patternUnits?s.patternUnits:"userSpaceOnUse",width:f+"px",height:b+"px"});var z=document.createElementNS(a.globals.SVGNS,"image");M.appendChild(z),z.setAttributeNS(window.SVG.xlink,"href",w),_.setAttrs(z,{x:0,y:0,preserveAspectRatio:"none",width:f+"px",height:b+"px"}),z.style.opacity=s.opacity,a.globals.dom.elDefs.node.appendChild(M)}},{key:"getSeriesIndex",value:function(s){var a=this.w,i=a.config.chart.type;return(i==="bar"||i==="rangeBar")&&a.config.plotOptions.bar.distributed||i==="heatmap"||i==="treemap"?this.seriesIndex=s.seriesNumber:this.seriesIndex=s.seriesNumber%a.globals.series.length,this.seriesIndex}},{key:"fillPath",value:function(s){var a=this.w;this.opts=s;var i,d,u,p=this.w.config;this.seriesIndex=this.getSeriesIndex(s);var w=this.getFillColors()[this.seriesIndex];a.globals.seriesColors[this.seriesIndex]!==void 0&&(w=a.globals.seriesColors[this.seriesIndex]),typeof w=="function"&&(w=w({seriesIndex:this.seriesIndex,dataPointIndex:s.dataPointIndex,value:s.value,w:a}));var f=s.fillType?s.fillType:this.getFillType(this.seriesIndex),b=Array.isArray(p.fill.opacity)?p.fill.opacity[this.seriesIndex]:p.fill.opacity;s.color&&(w=s.color);var M=w;if(w.indexOf("rgb")===-1?w.length<9&&(M=H.hexToRgba(w,b)):w.indexOf("rgba")>-1&&(b=H.getOpacityFromRGBA(w)),s.opacity&&(b=s.opacity),f==="pattern"&&(d=this.handlePatternFill({fillConfig:s.fillConfig,patternFill:d,fillColor:w,fillOpacity:b,defaultColor:M})),f==="gradient"&&(u=this.handleGradientFill({fillConfig:s.fillConfig,fillColor:w,fillOpacity:b,i:this.seriesIndex})),f==="image"){var z=p.fill.image.src,y=s.patternID?s.patternID:"";this.clippedImgArea({opacity:b,image:Array.isArray(z)?s.seriesNumber-1&&(A=H.getOpacityFromRGBA(y));var N=p.gradient.opacityTo===void 0?i:Array.isArray(p.gradient.opacityTo)?p.gradient.opacityTo[u]:p.gradient.opacityTo;if(p.gradient.gradientToColors===void 0||p.gradient.gradientToColors.length===0)w=p.gradient.shade==="dark"?M.shadeColor(-1*parseFloat(p.gradient.shadeIntensity),a.indexOf("rgb")>-1?H.rgb2hex(a):a):M.shadeColor(parseFloat(p.gradient.shadeIntensity),a.indexOf("rgb")>-1?H.rgb2hex(a):a);else if(p.gradient.gradientToColors[f.seriesNumber]){var L=p.gradient.gradientToColors[f.seriesNumber];w=L,L.indexOf("rgba")>-1&&(N=H.getOpacityFromRGBA(L))}else w=a;if(p.gradient.gradientFrom&&(y=p.gradient.gradientFrom),p.gradient.gradientTo&&(w=p.gradient.gradientTo),p.gradient.inverseColors){var O=y;y=w,w=O}return y.indexOf("rgb")>-1&&(y=H.rgb2hex(y)),w.indexOf("rgb")>-1&&(w=H.rgb2hex(w)),b.drawGradient(z,y,w,A,N,f.size,p.gradient.stops,p.gradient.colorStops,u)}}]),T}(),Qt=function(){function T(s,a){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"setGlobalMarkerSize",value:function(){var s=this.w;if(s.globals.markers.size=Array.isArray(s.config.markers.size)?s.config.markers.size:[s.config.markers.size],s.globals.markers.size.length>0){if(s.globals.markers.size.length4&&arguments[4]!==void 0&&arguments[4],w=this.w,f=a,b=s,M=null,z=new _(this.ctx),y=w.config.markers.discrete&&w.config.markers.discrete.length;if((w.globals.markers.size[a]>0||p||y)&&(M=z.group({class:p||y?"":"apexcharts-series-markers"})).attr("clip-path","url(#gridRectMarkerMask".concat(w.globals.cuid,")")),Array.isArray(b.x))for(var A=0;A0:w.config.markers.size>0)||p||y){H.isNumber(b.y[A])?L+=" w".concat(H.randomId()):L="apexcharts-nullpoint";var O=this.getMarkerConfig({cssClass:L,seriesIndex:a,dataPointIndex:N});w.config.series[f].data[N]&&(w.config.series[f].data[N].fillColor&&(O.pointFillColor=w.config.series[f].data[N].fillColor),w.config.series[f].data[N].strokeColor&&(O.pointStrokeColor=w.config.series[f].data[N].strokeColor)),d&&(O.pSize=d),(b.x[A]<0||b.x[A]>w.globals.gridWidth||b.y[A]<0||b.y[A]>w.globals.gridHeight)&&(O.pSize=0),(u=z.drawMarker(b.x[A],b.y[A],O)).attr("rel",N),u.attr("j",N),u.attr("index",a),u.node.setAttribute("default-marker-size",O.pSize),new W(this.ctx).setSelectionFilter(u,a,N),this.addEvents(u),M&&M.add(u)}else w.globals.pointsArray[a]===void 0&&(w.globals.pointsArray[a]=[]),w.globals.pointsArray[a].push([b.x[A],b.y[A]])}return M}},{key:"getMarkerConfig",value:function(s){var a=s.cssClass,i=s.seriesIndex,d=s.dataPointIndex,u=d===void 0?null:d,p=s.finishRadius,w=p===void 0?null:p,f=this.w,b=this.getMarkerStyle(i),M=f.globals.markers.size[i],z=f.config.markers;return u!==null&&z.discrete.length&&z.discrete.map(function(y){y.seriesIndex===i&&y.dataPointIndex===u&&(b.pointStrokeColor=y.strokeColor,b.pointFillColor=y.fillColor,M=y.size,b.pointShape=y.shape)}),{pSize:w===null?M:w,pRadius:z.radius,width:Array.isArray(z.width)?z.width[i]:z.width,height:Array.isArray(z.height)?z.height[i]:z.height,pointStrokeWidth:Array.isArray(z.strokeWidth)?z.strokeWidth[i]:z.strokeWidth,pointStrokeColor:b.pointStrokeColor,pointFillColor:b.pointFillColor,shape:b.pointShape||(Array.isArray(z.shape)?z.shape[i]:z.shape),class:a,pointStrokeOpacity:Array.isArray(z.strokeOpacity)?z.strokeOpacity[i]:z.strokeOpacity,pointStrokeDashArray:Array.isArray(z.strokeDashArray)?z.strokeDashArray[i]:z.strokeDashArray,pointFillOpacity:Array.isArray(z.fillOpacity)?z.fillOpacity[i]:z.fillOpacity,seriesIndex:i}}},{key:"addEvents",value:function(s){var a=this.w,i=new _(this.ctx);s.node.addEventListener("mouseenter",i.pathMouseEnter.bind(this.ctx,s)),s.node.addEventListener("mouseleave",i.pathMouseLeave.bind(this.ctx,s)),s.node.addEventListener("mousedown",i.pathMouseDown.bind(this.ctx,s)),s.node.addEventListener("click",a.config.markers.onClick),s.node.addEventListener("dblclick",a.config.markers.onDblClick),s.node.addEventListener("touchstart",i.pathMouseDown.bind(this.ctx,s),{passive:!0})}},{key:"getMarkerStyle",value:function(s){var a=this.w,i=a.globals.markers.colors,d=a.config.markers.strokeColor||a.config.markers.strokeColors;return{pointStrokeColor:Array.isArray(d)?d[s]:d,pointFillColor:Array.isArray(i)?i[s]:i}}}]),T}(),Jt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled}return k(T,[{key:"draw",value:function(s,a,i){var d=this.w,u=new _(this.ctx),p=i.realIndex,w=i.pointsPos,f=i.zRatio,b=i.elParent,M=u.group({class:"apexcharts-series-markers apexcharts-series-".concat(d.config.chart.type)});if(M.attr("clip-path","url(#gridRectMarkerMask".concat(d.globals.cuid,")")),Array.isArray(w.x))for(var z=0;zO.maxBubbleRadius&&(L=O.maxBubbleRadius)}d.config.chart.animations.enabled||(N=L);var V=w.x[z],Z=w.y[z];if(N=N||0,Z!==null&&d.globals.series[p][y]!==void 0||(A=!1),A){var m=this.drawPoint(V,Z,N,L,p,y,a);M.add(m)}b.add(M)}}},{key:"drawPoint",value:function(s,a,i,d,u,p,w){var f=this.w,b=u,M=new U(this.ctx),z=new W(this.ctx),y=new Ft(this.ctx),A=new Qt(this.ctx),N=new _(this.ctx),L=A.getMarkerConfig({cssClass:"apexcharts-marker",seriesIndex:b,dataPointIndex:p,finishRadius:f.config.chart.type==="bubble"||f.globals.comboCharts&&f.config.series[u]&&f.config.series[u].type==="bubble"?d:null});d=L.pSize;var O,V=y.fillPath({seriesNumber:u,dataPointIndex:p,color:L.pointFillColor,patternUnits:"objectBoundingBox",value:f.globals.series[u][w]});if(L.shape==="circle"?O=N.drawCircle(i):L.shape!=="square"&&L.shape!=="rect"||(O=N.drawRect(0,0,L.width-L.pointStrokeWidth/2,L.height-L.pointStrokeWidth/2,L.pRadius)),f.config.series[b].data[p]&&f.config.series[b].data[p].fillColor&&(V=f.config.series[b].data[p].fillColor),O.attr({x:s-L.width/2-L.pointStrokeWidth/2,y:a-L.height/2-L.pointStrokeWidth/2,cx:s,cy:a,fill:V,"fill-opacity":L.pointFillOpacity,stroke:L.pointStrokeColor,r:d,"stroke-width":L.pointStrokeWidth,"stroke-dasharray":L.pointStrokeDashArray,"stroke-opacity":L.pointStrokeOpacity}),f.config.chart.dropShadow.enabled){var Z=f.config.chart.dropShadow;z.dropShadow(O,Z,u)}if(!this.initialAnim||f.globals.dataChanged||f.globals.resized)f.globals.animationEnded=!0;else{var m=f.config.chart.animations.speed;M.animateMarker(O,0,L.shape==="circle"?d:{width:L.width,height:L.height},m,f.globals.easing,function(){window.setTimeout(function(){M.animationCompleted(O)},100)})}if(f.globals.dataChanged&&L.shape==="circle")if(this.dynamicAnim){var C,j,E,K,Q=f.config.chart.animations.dynamicAnimation.speed;(K=f.globals.previousPaths[u]&&f.globals.previousPaths[u][w])!=null&&(C=K.x,j=K.y,E=K.r!==void 0?K.r:d);for(var ot=0;otf.globals.gridHeight+y&&(a=f.globals.gridHeight+y/2),f.globals.dataLabelsRects[d]===void 0&&(f.globals.dataLabelsRects[d]=[]),f.globals.dataLabelsRects[d].push({x:s,y:a,width:z,height:y});var A=f.globals.dataLabelsRects[d].length-2,N=f.globals.lastDrawnDataLabelsIndexes[d]!==void 0?f.globals.lastDrawnDataLabelsIndexes[d][f.globals.lastDrawnDataLabelsIndexes[d].length-1]:0;if(f.globals.dataLabelsRects[d][A]!==void 0){var L=f.globals.dataLabelsRects[d][N];(s>L.x+L.width+2||a>L.y+L.height+2||s+za.globals.gridWidth+O.textRects.width+10)&&(f="");var V=a.globals.dataLabels.style.colors[p];((a.config.chart.type==="bar"||a.config.chart.type==="rangeBar")&&a.config.plotOptions.bar.distributed||a.config.dataLabels.distributed)&&(V=a.globals.dataLabels.style.colors[w]),typeof V=="function"&&(V=V({series:a.globals.series,seriesIndex:p,dataPointIndex:w,w:a})),A&&(V=A);var Z=y.offsetX,m=y.offsetY;if(a.config.chart.type!=="bar"&&a.config.chart.type!=="rangeBar"||(Z=0,m=0),O.drawnextLabel){var C=i.drawText({width:100,height:parseInt(y.style.fontSize,10),x:d+Z,y:u+m,foreColor:V,textAnchor:b||y.textAnchor,text:f,fontSize:M||y.style.fontSize,fontFamily:y.style.fontFamily,fontWeight:y.style.fontWeight||"normal"});if(C.attr({class:"apexcharts-datalabel",cx:d,cy:u}),y.dropShadow.enabled){var j=y.dropShadow;new W(this.ctx).dropShadow(C,j)}z.add(C),a.globals.lastDrawnDataLabelsIndexes[p]===void 0&&(a.globals.lastDrawnDataLabelsIndexes[p]=[]),a.globals.lastDrawnDataLabelsIndexes[p].push(w)}}}},{key:"addBackgroundToDataLabel",value:function(s,a){var i=this.w,d=i.config.dataLabels.background,u=d.padding,p=d.padding/2,w=a.width,f=a.height,b=new _(this.ctx).drawRect(a.x-u,a.y-p/2,w+2*u,f+p,d.borderRadius,i.config.chart.background==="transparent"?"#fff":i.config.chart.background,d.opacity,d.borderWidth,d.borderColor);return d.dropShadow.enabled&&new W(this.ctx).dropShadow(b,d.dropShadow),b}},{key:"dataLabelsBackground",value:function(){var s=this.w;if(s.config.chart.type!=="bubble")for(var a=s.globals.dom.baseEl.querySelectorAll(".apexcharts-datalabels text"),i=0;i0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w,u=H.clone(d.globals.initialSeries);d.globals.previousPaths=[],i?(d.globals.collapsedSeries=[],d.globals.ancillaryCollapsedSeries=[],d.globals.collapsedSeriesIndices=[],d.globals.ancillaryCollapsedSeriesIndices=[]):u=this.emptyCollapsedSeries(u),d.config.series=u,s&&(a&&(d.globals.zoomed=!1,this.ctx.updateHelpers.revertDefaultAxisMinMax()),this.ctx.updateHelpers._updateSeries(u,d.config.chart.animations.dynamicAnimation.enabled))}},{key:"emptyCollapsedSeries",value:function(s){for(var a=this.w,i=0;i-1&&(s[i].data=[]);return s}},{key:"toggleSeriesOnHover",value:function(s,a){var i=this.w;a||(a=s.target);var d=i.globals.dom.baseEl.querySelectorAll(".apexcharts-series, .apexcharts-datalabels");if(s.type==="mousemove"){var u=parseInt(a.getAttribute("rel"),10)-1,p=null,w=null;i.globals.axisCharts||i.config.chart.type==="radialBar"?i.globals.axisCharts?(p=i.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(u,"']")),w=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels[data\\:realIndex='".concat(u,"']"))):p=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(u+1,"']")):p=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(u+1,"'] path"));for(var f=0;f=f.from&&M<=f.to&&u[b].classList.remove(i.legendInactiveClass)}}(d.config.plotOptions.heatmap.colorScale.ranges[w])}else s.type==="mouseout"&&p("remove")}},{key:"getActiveConfigSeriesIndex",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"asc",a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],i=this.w,d=0;if(i.config.series.length>1){for(var u=i.config.series.map(function(w,f){return w.data&&w.data.length>0&&i.globals.collapsedSeriesIndices.indexOf(f)===-1&&(!i.globals.comboCharts||a.length===0||a.length&&a.indexOf(i.config.series[f].type)>-1)?f:-1}),p=s==="asc"?0:u.length-1;s==="asc"?p=0;s==="asc"?p++:p--)if(u[p]!==-1){d=u[p];break}}return d}},{key:"getBarSeriesIndices",value:function(){return this.w.globals.comboCharts?this.w.config.series.map(function(s,a){return s.type==="bar"||s.type==="column"?a:-1}).filter(function(s){return s!==-1}):this.w.config.series.map(function(s,a){return a})}},{key:"getPreviousPaths",value:function(){var s=this.w;function a(p,w,f){for(var b=p[w].childNodes,M={type:f,paths:[],realIndex:p[w].getAttribute("data:realIndex")},z=0;z0)for(var d=function(p){for(var w=s.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(s.config.chart.type," .apexcharts-series[data\\:realIndex='").concat(p,"'] rect")),f=[],b=function(z){var y=function(N){return w[z].getAttribute(N)},A={x:parseFloat(y("x")),y:parseFloat(y("y")),width:parseFloat(y("width")),height:parseFloat(y("height"))};f.push({rect:A,color:w[z].getAttribute("color")})},M=0;M0)for(var d=0;d0?a:[]});return s}}]),T}(),pt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.twoDSeries=[],this.threeDSeries=[],this.twoDSeriesX=[],this.seriesGoals=[],this.coreUtils=new tt(this.ctx)}return k(T,[{key:"isMultiFormat",value:function(){return this.isFormatXY()||this.isFormat2DArray()}},{key:"isFormatXY",value:function(){var s=this.w.config.series.slice(),a=new ut(this.ctx);if(this.activeSeriesIndex=a.getActiveConfigSeriesIndex(),s[this.activeSeriesIndex].data!==void 0&&s[this.activeSeriesIndex].data.length>0&&s[this.activeSeriesIndex].data[0]!==null&&s[this.activeSeriesIndex].data[0].x!==void 0&&s[this.activeSeriesIndex].data[0]!==null)return!0}},{key:"isFormat2DArray",value:function(){var s=this.w.config.series.slice(),a=new ut(this.ctx);if(this.activeSeriesIndex=a.getActiveConfigSeriesIndex(),s[this.activeSeriesIndex].data!==void 0&&s[this.activeSeriesIndex].data.length>0&&s[this.activeSeriesIndex].data[0]!==void 0&&s[this.activeSeriesIndex].data[0]!==null&&s[this.activeSeriesIndex].data[0].constructor===Array)return!0}},{key:"handleFormat2DArray",value:function(s,a){for(var i=this.w.config,d=this.w.globals,u=i.chart.type==="boxPlot"||i.series[a].type==="boxPlot",p=0;p=5?this.twoDSeries.push(H.parseNumber(s[a].data[p][4])):this.twoDSeries.push(H.parseNumber(s[a].data[p][1])),d.dataFormatXNumeric=!0),i.xaxis.type==="datetime"){var w=new Date(s[a].data[p][0]);w=new Date(w).getTime(),this.twoDSeriesX.push(w)}else this.twoDSeriesX.push(s[a].data[p][0]);for(var f=0;f-1&&(p=this.activeSeriesIndex);for(var w=0;w1&&arguments[1]!==void 0?arguments[1]:this.ctx,u=this.w.config,p=this.w.globals,w=new dt(d),f=u.labels.length>0?u.labels.slice():u.xaxis.categories.slice();if(p.isRangeBar=u.chart.type==="rangeBar"&&p.isBarHorizontal,p.hasXaxisGroups=u.xaxis.type==="category"&&u.xaxis.group.groups.length>0,p.hasXaxisGroups&&(p.groups=u.xaxis.group.groups),p.hasSeriesGroups=(a=s[0])===null||a===void 0?void 0:a.group,p.hasSeriesGroups){var b=[],M=F(new Set(s.map(function(N){return N.group})));s.forEach(function(N,L){var O=M.indexOf(N.group);b[O]||(b[O]=[]),b[O].push(N.name)}),p.seriesGroups=b}for(var z=function(){for(var N=0;N0&&(this.twoDSeriesX=f,p.seriesX.push(this.twoDSeriesX))),p.labels.push(this.twoDSeriesX);var A=s[y].data.map(function(N){return H.parseNumber(N)});p.series.push(A)}p.seriesZ.push(this.threeDSeries),s[y].name!==void 0?p.seriesNames.push(s[y].name):p.seriesNames.push("series-"+parseInt(y+1,10)),s[y].color!==void 0?p.seriesColors.push(s[y].color):p.seriesColors.push(void 0)}return this.w}},{key:"parseDataNonAxisCharts",value:function(s){var a=this.w.globals,i=this.w.config;a.series=s.slice(),a.seriesNames=i.labels.slice();for(var d=0;d0?i.labels=a.xaxis.categories:a.labels.length>0?i.labels=a.labels.slice():this.fallbackToCategory?(i.labels=i.labels[0],i.seriesRange.length&&(i.seriesRange.map(function(d){d.forEach(function(u){i.labels.indexOf(u.x)<0&&u.x&&i.labels.push(u.x)})}),i.labels=Array.from(new Set(i.labels.map(JSON.stringify)),JSON.parse)),a.xaxis.convertedCatToNumeric&&(new gt(a).convertCatToNumericXaxis(a,this.ctx,i.seriesX[0]),this._generateExternalLabels(s))):this._generateExternalLabels(s)}},{key:"_generateExternalLabels",value:function(s){var a=this.w.globals,i=this.w.config,d=[];if(a.axisCharts){if(a.series.length>0)if(this.isFormatXY())for(var u=i.series.map(function(z,y){return z.data.filter(function(A,N,L){return L.findIndex(function(O){return O.x===A.x})===N})}),p=u.reduce(function(z,y,A,N){return N[z].length>y.length?z:A},0),w=0;w4&&arguments[4]!==void 0?arguments[4]:[],p=arguments.length>5&&arguments[5]!==void 0?arguments[5]:"12px",w=!(arguments.length>6&&arguments[6]!==void 0)||arguments[6],f=this.w,b=s[d]===void 0?"":s[d],M=b,z=f.globals.xLabelFormatter,y=f.config.xaxis.labels.formatter,A=!1,N=new Ct(this.ctx),L=b;w&&(M=N.xLabelFormat(z,b,L,{i:d,dateFormatter:new dt(this.ctx).formatDate,w:f}),y!==void 0&&(M=y(b,s[d],{i:d,dateFormatter:new dt(this.ctx).formatDate,w:f})));var O,V;a.length>0?(O=a[d].unit,V=null,a.forEach(function(j){j.unit==="month"?V="year":j.unit==="day"?V="month":j.unit==="hour"?V="day":j.unit==="minute"&&(V="hour")}),A=V===O,i=a[d].position,M=a[d].value):f.config.xaxis.type==="datetime"&&y===void 0&&(M=""),M===void 0&&(M=""),M=Array.isArray(M)?M:M.toString();var Z=new _(this.ctx),m={};m=f.globals.rotateXLabels&&w?Z.getTextRects(M,parseInt(p,10),null,"rotate(".concat(f.config.xaxis.labels.rotate," 0 0)"),!1):Z.getTextRects(M,parseInt(p,10));var C=!f.config.xaxis.labels.showDuplicates&&this.ctx.timeScale;return!Array.isArray(M)&&(M.indexOf("NaN")===0||M.toLowerCase().indexOf("invalid")===0||M.toLowerCase().indexOf("infinity")>=0||u.indexOf(M)>=0&&C)&&(M=""),{x:i,text:M,textRect:m,isBold:A}}},{key:"checkLabelBasedOnTickamount",value:function(s,a,i){var d=this.w,u=d.config.xaxis.tickAmount;return u==="dataPoints"&&(u=Math.round(d.globals.gridWidth/120)),u>i||s%Math.round(i/(u+1))==0||(a.text=""),a}},{key:"checkForOverflowingLabels",value:function(s,a,i,d,u){var p=this.w;if(s===0&&p.globals.skipFirstTimelinelabel&&(a.text=""),s===i-1&&p.globals.skipLastTimelinelabel&&(a.text=""),p.config.xaxis.labels.hideOverlappingLabels&&d.length>0){var w=u[u.length-1];a.x0){f.config.yaxis[u].opposite===!0&&(s+=d.width);for(var z=a;z>=0;z--){var y=M+a/10+f.config.yaxis[u].labels.offsetY-1;f.globals.isBarHorizontal&&(y=p*z),f.config.chart.type==="heatmap"&&(y+=p/2);var A=b.drawLine(s+i.offsetX-d.width+d.offsetX,y+d.offsetY,s+i.offsetX+d.offsetX,y+d.offsetY,d.color);w.add(A),M+=p}}}}]),T}(),jt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"scaleSvgNode",value:function(s,a){var i=parseFloat(s.getAttributeNS(null,"width")),d=parseFloat(s.getAttributeNS(null,"height"));s.setAttributeNS(null,"width",i*a),s.setAttributeNS(null,"height",d*a),s.setAttributeNS(null,"viewBox","0 0 "+i+" "+d)}},{key:"fixSvgStringForIe11",value:function(s){if(!H.isIE11())return s.replace(/ /g," ");var a=0,i=s.replace(/xmlns="http:\/\/www.w3.org\/2000\/svg"/g,function(d){return++a===2?'xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev"':d});return i=(i=i.replace(/xmlns:NS\d+=""/g,"")).replace(/NS\d+:(\w+:\w+=")/g,"$1")}},{key:"getSvgString",value:function(s){s==null&&(s=1);var a=this.w.globals.dom.Paper.svg();if(s!==1){var i=this.w.globals.dom.Paper.node.cloneNode(!0);this.scaleSvgNode(i,s),a=new XMLSerializer().serializeToString(i)}return this.fixSvgStringForIe11(a)}},{key:"cleanup",value:function(){var s=this.w,a=s.globals.dom.baseEl.getElementsByClassName("apexcharts-xcrosshairs"),i=s.globals.dom.baseEl.getElementsByClassName("apexcharts-ycrosshairs"),d=s.globals.dom.baseEl.querySelectorAll(".apexcharts-zoom-rect, .apexcharts-selection-rect");Array.prototype.forEach.call(d,function(u){u.setAttribute("width",0)}),a&&a[0]&&(a[0].setAttribute("x",-500),a[0].setAttribute("x1",-500),a[0].setAttribute("x2",-500)),i&&i[0]&&(i[0].setAttribute("y",-100),i[0].setAttribute("y1",-100),i[0].setAttribute("y2",-100))}},{key:"svgUrl",value:function(){this.cleanup();var s=this.getSvgString(),a=new Blob([s],{type:"image/svg+xml;charset=utf-8"});return URL.createObjectURL(a)}},{key:"dataURI",value:function(s){var a=this;return new Promise(function(i){var d=a.w,u=s?s.scale||s.width/d.globals.svgWidth:1;a.cleanup();var p=document.createElement("canvas");p.width=d.globals.svgWidth*u,p.height=parseInt(d.globals.dom.elWrap.style.height,10)*u;var w=d.config.chart.background==="transparent"?"#fff":d.config.chart.background,f=p.getContext("2d");f.fillStyle=w,f.fillRect(0,0,p.width*u,p.height*u);var b=a.getSvgString(u);if(window.canvg&&H.isIE11()){var M=window.canvg.Canvg.fromString(f,b,{ignoreClear:!0,ignoreDimensions:!0});M.start();var z=p.msToBlob();M.stop(),i({blob:z})}else{var y="data:image/svg+xml,"+encodeURIComponent(b),A=new Image;A.crossOrigin="anonymous",A.onload=function(){if(f.drawImage(A,0,0),p.msToBlob){var N=p.msToBlob();i({blob:N})}else{var L=p.toDataURL("image/png");i({imgURI:L})}},A.src=y}})}},{key:"exportToSVG",value:function(){this.triggerDownload(this.svgUrl(),this.w.config.chart.toolbar.export.svg.filename,".svg")}},{key:"exportToPng",value:function(){var s=this;this.dataURI().then(function(a){var i=a.imgURI,d=a.blob;d?navigator.msSaveOrOpenBlob(d,s.w.globals.chartID+".png"):s.triggerDownload(i,s.w.config.chart.toolbar.export.png.filename,".png")})}},{key:"exportToCSV",value:function(s){var a=this,i=s.series,d=s.fileName,u=s.columnDelimiter,p=u===void 0?",":u,w=s.lineDelimiter,f=w===void 0?` -`:w,b=this.w;i||(i=b.config.series);var M=[],z=[],y="",A=b.globals.series.map(function(m,C){return b.globals.collapsedSeriesIndices.indexOf(C)===-1?m:[]}),N=Math.max.apply(Math,F(i.map(function(m){return m.data?m.data.length:0}))),L=new pt(this.ctx),O=new Nt(this.ctx),V=function(m){var C="";if(b.globals.axisCharts){if(b.config.xaxis.type==="category"||b.config.xaxis.convertedCatToNumeric)if(b.globals.isBarHorizontal){var j=b.globals.yLabelFormatters[0],E=new ut(a.ctx).getActiveConfigSeriesIndex();C=j(b.globals.labels[m],{seriesIndex:E,dataPointIndex:m,w:b})}else C=O.getLabel(b.globals.labels,b.globals.timescaleLabels,0,m).text;b.config.xaxis.type==="datetime"&&(b.config.xaxis.categories.length?C=b.config.xaxis.categories[m]:b.config.labels.length&&(C=b.config.labels[m]))}else C=b.config.labels[m];return Array.isArray(C)&&(C=C.join(" ")),H.isNumber(C)?C:C.split(p).join("")},Z=function(m,C){if(M.length&&C===0&&z.push(M.join(p)),m.data){m.data=m.data.length&&m.data||F(Array(N)).map(function(){return""});for(var j=0;j=10?b.config.chart.toolbar.export.csv.dateFormatter(E):H.isNumber(E)?E:E.split(p).join("")));for(var K=0;K0&&!i.globals.isBarHorizontal&&(this.xaxisLabels=i.globals.timescaleLabels.slice()),i.config.xaxis.overwriteCategories&&(this.xaxisLabels=i.config.xaxis.overwriteCategories),this.drawnLabels=[],this.drawnLabelsRects=[],i.config.xaxis.position==="top"?this.offY=0:this.offY=i.globals.gridHeight+1,this.offY=this.offY+i.config.xaxis.axisBorder.offsetY,this.isCategoryBarHorizontal=i.config.chart.type==="bar"&&i.config.plotOptions.bar.horizontal,this.xaxisFontSize=i.config.xaxis.labels.style.fontSize,this.xaxisFontFamily=i.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=i.config.xaxis.labels.style.colors,this.xaxisBorderWidth=i.config.xaxis.axisBorder.width,this.isCategoryBarHorizontal&&(this.xaxisBorderWidth=i.config.yaxis[0].axisBorder.width.toString()),this.xaxisBorderWidth.indexOf("%")>-1?this.xaxisBorderWidth=i.globals.gridWidth*parseInt(this.xaxisBorderWidth,10)/100:this.xaxisBorderWidth=parseInt(this.xaxisBorderWidth,10),this.xaxisBorderHeight=i.config.xaxis.axisBorder.height,this.yaxis=i.config.yaxis[0]}return k(T,[{key:"drawXaxis",value:function(){var s=this.w,a=new _(this.ctx),i=a.group({class:"apexcharts-xaxis",transform:"translate(".concat(s.config.xaxis.offsetX,", ").concat(s.config.xaxis.offsetY,")")}),d=a.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(s.globals.translateXAxisX,", ").concat(s.globals.translateXAxisY,")")});i.add(d);for(var u=[],p=0;p6&&arguments[6]!==void 0?arguments[6]:{},M=[],z=[],y=this.w,A=b.xaxisFontSize||this.xaxisFontSize,N=b.xaxisFontFamily||this.xaxisFontFamily,L=b.xaxisForeColors||this.xaxisForeColors,O=b.fontWeight||y.config.xaxis.labels.style.fontWeight,V=b.cssClass||y.config.xaxis.labels.style.cssClass,Z=y.globals.padHorizontal,m=d.length,C=y.config.xaxis.type==="category"?y.globals.dataPoints:m;if(C===0&&m>C&&(C=m),u){var j=C>1?C-1:C;w=y.globals.gridWidth/j,Z=Z+p(0,w)/2+y.config.xaxis.labels.offsetX}else w=y.globals.gridWidth/C,Z=Z+p(0,w)+y.config.xaxis.labels.offsetX;for(var E=function(Q){var ot=Z-p(Q,w)/2+y.config.xaxis.labels.offsetX;Q===0&&m===1&&w/2===Z&&C===1&&(ot=y.globals.gridWidth/2);var it=f.axesUtils.getLabel(d,y.globals.timescaleLabels,ot,Q,M,A,s),vt=28;if(y.globals.rotateXLabels&&s&&(vt=22),y.config.xaxis.title.text&&y.config.xaxis.position==="top"&&(vt+=parseFloat(y.config.xaxis.title.style.fontSize)+2),s||(vt=vt+parseFloat(A)+(y.globals.xAxisLabelsHeight-y.globals.xAxisGroupLabelsHeight)+(y.globals.rotateXLabels?10:0)),it=y.config.xaxis.tickAmount!==void 0&&y.config.xaxis.tickAmount!=="dataPoints"&&y.config.xaxis.type!=="datetime"?f.axesUtils.checkLabelBasedOnTickamount(Q,it,m):f.axesUtils.checkForOverflowingLabels(Q,it,m,M,z),y.config.xaxis.labels.show){var zt=a.drawText({x:it.x,y:f.offY+y.config.xaxis.labels.offsetY+vt-(y.config.xaxis.position==="top"?y.globals.xAxisHeight+y.config.xaxis.axisTicks.height-2:0),text:it.text,textAnchor:"middle",fontWeight:it.isBold?600:O,fontSize:A,fontFamily:N,foreColor:Array.isArray(L)?s&&y.config.xaxis.convertedCatToNumeric?L[y.globals.minX+Q-1]:L[Q]:L,isPlainText:!1,cssClass:(s?"apexcharts-xaxis-label ":"apexcharts-xaxis-group-label ")+V});if(i.add(zt),zt.on("click",function(Vt){if(typeof y.config.chart.events.xAxisLabelClick=="function"){var Yt=Object.assign({},y,{labelIndex:Q});y.config.chart.events.xAxisLabelClick(Vt,f.ctx,Yt)}}),s){var Mt=document.createElementNS(y.globals.SVGNS,"title");Mt.textContent=Array.isArray(it.text)?it.text.join(" "):it.text,zt.node.appendChild(Mt),it.text!==""&&(M.push(it.text),z.push(it))}}Qd.globals.gridWidth)){var p=this.offY+d.config.xaxis.axisTicks.offsetY;if(a=a+p+d.config.xaxis.axisTicks.height,d.config.xaxis.position==="top"&&(a=p-d.config.xaxis.axisTicks.height),d.config.xaxis.axisTicks.show){var w=new _(this.ctx).drawLine(s+d.config.xaxis.axisTicks.offsetX,p+d.config.xaxis.offsetY,u+d.config.xaxis.axisTicks.offsetX,a+d.config.xaxis.offsetY,d.config.xaxis.axisTicks.color);i.add(w),w.node.classList.add("apexcharts-xaxis-tick")}}}},{key:"getXAxisTicksPositions",value:function(){var s=this.w,a=[],i=this.xaxisLabels.length,d=s.globals.padHorizontal;if(s.globals.timescaleLabels.length>0)for(var u=0;u0){var M=u[u.length-1].getBBox(),z=u[0].getBBox();M.x<-20&&u[u.length-1].parentNode.removeChild(u[u.length-1]),z.x+z.width>s.globals.gridWidth&&!s.globals.isBarHorizontal&&u[0].parentNode.removeChild(u[0]);for(var y=0;y0&&(this.xaxisLabels=a.globals.timescaleLabels.slice())}return k(T,[{key:"drawGridArea",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,a=this.w,i=new _(this.ctx);s===null&&(s=i.group({class:"apexcharts-grid"}));var d=i.drawLine(a.globals.padHorizontal,1,a.globals.padHorizontal,a.globals.gridHeight,"transparent"),u=i.drawLine(a.globals.padHorizontal,a.globals.gridHeight,a.globals.gridWidth,a.globals.gridHeight,"transparent");return s.add(u),s.add(d),s}},{key:"drawGrid",value:function(){var s=null;return this.w.globals.axisCharts&&(s=this.renderGrid(),this.drawGridArea(s.el)),s}},{key:"createGridMask",value:function(){var s=this.w,a=s.globals,i=new _(this.ctx),d=Array.isArray(s.config.stroke.width)?0:s.config.stroke.width;if(Array.isArray(s.config.stroke.width)){var u=0;s.config.stroke.width.forEach(function(z){u=Math.max(u,z)}),d=u}a.dom.elGridRectMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elGridRectMask.setAttribute("id","gridRectMask".concat(a.cuid)),a.dom.elGridRectMarkerMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elGridRectMarkerMask.setAttribute("id","gridRectMarkerMask".concat(a.cuid)),a.dom.elForecastMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elForecastMask.setAttribute("id","forecastMask".concat(a.cuid)),a.dom.elNonForecastMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elNonForecastMask.setAttribute("id","nonForecastMask".concat(a.cuid));var p=s.config.chart.type,w=0,f=0;(p==="bar"||p==="rangeBar"||p==="candlestick"||p==="boxPlot"||s.globals.comboBarCount>0)&&s.globals.isXNumeric&&!s.globals.isBarHorizontal&&(w=s.config.grid.padding.left,f=s.config.grid.padding.right,a.barPadForNumericAxis>w&&(w=a.barPadForNumericAxis,f=a.barPadForNumericAxis)),a.dom.elGridRect=i.drawRect(-d/2-w-2,-d/2,a.gridWidth+d+f+w+4,a.gridHeight+d,0,"#fff");var b=s.globals.markers.largestSize+1;a.dom.elGridRectMarker=i.drawRect(2*-b,2*-b,a.gridWidth+4*b,a.gridHeight+4*b,0,"#fff"),a.dom.elGridRectMask.appendChild(a.dom.elGridRect.node),a.dom.elGridRectMarkerMask.appendChild(a.dom.elGridRectMarker.node);var M=a.dom.baseEl.querySelector("defs");M.appendChild(a.dom.elGridRectMask),M.appendChild(a.dom.elForecastMask),M.appendChild(a.dom.elNonForecastMask),M.appendChild(a.dom.elGridRectMarkerMask)}},{key:"_drawGridLines",value:function(s){var a=s.i,i=s.x1,d=s.y1,u=s.x2,p=s.y2,w=s.xCount,f=s.parent,b=this.w;if(!(a===0&&b.globals.skipFirstTimelinelabel||a===w-1&&b.globals.skipLastTimelinelabel&&!b.config.xaxis.labels.formatter||b.config.chart.type==="radar")){b.config.grid.xaxis.lines.show&&this._drawGridLine({i:a,x1:i,y1:d,x2:u,y2:p,xCount:w,parent:f});var M=0;if(b.globals.hasXaxisGroups&&b.config.xaxis.tickPlacement==="between"){var z=b.globals.groups;if(z){for(var y=0,A=0;y2));u++);return!s.globals.isBarHorizontal||this.isRangeBar?(i=this.xaxisLabels.length,this.isRangeBar&&(i--,d=s.globals.labels.length,s.config.xaxis.tickAmount&&s.config.xaxis.labels.formatter&&(i=s.config.xaxis.tickAmount)),this._drawXYLines({xCount:i,tickAmount:d})):(i=d,d=s.globals.xTickAmount,this._drawInvertedXYLines({xCount:i,tickAmount:d})),this.drawGridBands(i,d),{el:this.elg,elGridBorders:this.elGridBorders,xAxisTickWidth:s.globals.gridWidth/i}}},{key:"drawGridBands",value:function(s,a){var i=this.w;if(i.config.grid.row.colors!==void 0&&i.config.grid.row.colors.length>0)for(var d=0,u=i.globals.gridHeight/a,p=i.globals.gridWidth,w=0,f=0;w=i.config.grid.row.colors.length&&(f=0),this._drawGridBandRect({c:f,x1:0,y1:d,x2:p,y2:u,type:"row"}),d+=i.globals.gridHeight/a;if(i.config.grid.column.colors!==void 0&&i.config.grid.column.colors.length>0)for(var b=i.globals.isBarHorizontal||i.config.xaxis.type!=="category"&&!i.config.xaxis.convertedCatToNumeric?s:s-1,M=i.globals.padHorizontal,z=i.globals.padHorizontal+i.globals.gridWidth/b,y=i.globals.gridHeight,A=0,N=0;A=i.config.grid.column.colors.length&&(N=0),this._drawGridBandRect({c:N,x1:M,y1:0,x2:z,y2:y,type:"column"}),M+=i.globals.gridWidth/b}}]),T}(),J=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"niceScale",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:10,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,u=arguments.length>4?arguments[4]:void 0,p=this.w,w=Math.abs(a-s);if((i=this._adjustTicksForSmallRange(i,d,w))==="dataPoints"&&(i=p.globals.dataPoints-1),s===Number.MIN_VALUE&&a===0||!H.isNumber(s)&&!H.isNumber(a)||s===Number.MIN_VALUE&&a===-Number.MAX_VALUE)return s=0,a=i,this.linearScale(s,a,i);s>a?(console.warn("axis.min cannot be greater than axis.max"),a=s+.1):s===a&&(s=s===0?0:s-.5,a=a===0?2:a+.5);var f=[];w<1&&u&&(p.config.chart.type==="candlestick"||p.config.series[d].type==="candlestick"||p.config.chart.type==="boxPlot"||p.config.series[d].type==="boxPlot"||p.globals.isRangeData)&&(a*=1.01);var b=i+1;b<2?b=2:b>2&&(b-=2);var M=w/b,z=Math.floor(H.log10(M)),y=Math.pow(10,z),A=Math.round(M/y);A<1&&(A=1);var N=A*y,L=N*Math.floor(s/N),O=N*Math.ceil(a/N),V=L;if(u&&w>2){for(;f.push(H.stripNumber(V,7)),!((V+=N)>O););return{result:f,niceMin:f[0],niceMax:f[f.length-1]}}var Z=s;(f=[]).push(H.stripNumber(Z,7));for(var m=Math.abs(a-s)/i,C=0;C<=i;C++)Z+=m,f.push(Z);return f[f.length-2]>=a&&f.pop(),{result:f,niceMin:f[0],niceMax:f[f.length-1]}}},{key:"linearScale",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:10,d=arguments.length>3?arguments[3]:void 0,u=Math.abs(a-s);(i=this._adjustTicksForSmallRange(i,d,u))==="dataPoints"&&(i=this.w.globals.dataPoints-1);var p=u/i;i===Number.MAX_VALUE&&(i=10,p=1);for(var w=[],f=s;i>=0;)w.push(f),f+=p,i-=1;return{result:w,niceMin:w[0],niceMax:w[w.length-1]}}},{key:"logarithmicScaleNice",value:function(s,a,i){a<=0&&(a=Math.max(s,i)),s<=0&&(s=Math.min(a,i));for(var d=[],u=Math.ceil(Math.log(a)/Math.log(i)+1),p=Math.floor(Math.log(s)/Math.log(i));p5)d.allSeriesCollapsed=!1,d.yAxisScale[s]=this.logarithmicScale(a,i,p.logBase),d.yAxisScale[s]=p.forceNiceScale?this.logarithmicScaleNice(a,i,p.logBase):this.logarithmicScale(a,i,p.logBase);else if(i!==-Number.MAX_VALUE&&H.isNumber(i))if(d.allSeriesCollapsed=!1,p.min===void 0&&p.max===void 0||p.forceNiceScale){var f=u.yaxis[s].max===void 0&&u.yaxis[s].min===void 0||u.yaxis[s].forceNiceScale;d.yAxisScale[s]=this.niceScale(a,i,p.tickAmount?p.tickAmount:w<5&&w>1?w+1:5,s,f)}else d.yAxisScale[s]=this.linearScale(a,i,p.tickAmount,s);else d.yAxisScale[s]=this.linearScale(0,5,5)}},{key:"setXScale",value:function(s,a){var i=this.w,d=i.globals,u=i.config.xaxis,p=Math.abs(a-s);return a!==-Number.MAX_VALUE&&H.isNumber(a)?d.xAxisScale=this.linearScale(s,a,u.tickAmount?u.tickAmount:p<5&&p>1?p+1:5,0):d.xAxisScale=this.linearScale(0,5,5),d.xAxisScale}},{key:"setMultipleYScales",value:function(){var s=this,a=this.w.globals,i=this.w.config,d=a.minYArr.concat([]),u=a.maxYArr.concat([]),p=[];i.yaxis.forEach(function(w,f){var b=f;i.series.forEach(function(y,A){y.name===w.seriesName&&(b=A,f!==A?p.push({index:A,similarIndex:f,alreadyExists:!0}):p.push({index:A}))});var M=d[b],z=u[b];s.setYScaleForIndex(f,M,z)}),this.sameScaleInMultipleAxes(d,u,p)}},{key:"sameScaleInMultipleAxes",value:function(s,a,i){var d=this,u=this.w.config,p=this.w.globals,w=[];i.forEach(function(L){L.alreadyExists&&(w[L.index]===void 0&&(w[L.index]=[]),w[L.index].push(L.index),w[L.index].push(L.similarIndex))}),p.yAxisSameScaleIndices=w,w.forEach(function(L,O){w.forEach(function(V,Z){var m,C;O!==Z&&(m=L,C=V,m.filter(function(j){return C.indexOf(j)!==-1})).length>0&&(w[O]=w[O].concat(w[Z]))})});var f=w.map(function(L){return L.filter(function(O,V){return L.indexOf(O)===V})}).map(function(L){return L.sort()});w=w.filter(function(L){return!!L});var b=f.slice(),M=b.map(function(L){return JSON.stringify(L)});b=b.filter(function(L,O){return M.indexOf(JSON.stringify(L))===O});var z=[],y=[];s.forEach(function(L,O){b.forEach(function(V,Z){V.indexOf(O)>-1&&(z[Z]===void 0&&(z[Z]=[],y[Z]=[]),z[Z].push({key:O,value:L}),y[Z].push({key:O,value:a[O]}))})});var A=Array.apply(null,Array(b.length)).map(Number.prototype.valueOf,Number.MIN_VALUE),N=Array.apply(null,Array(b.length)).map(Number.prototype.valueOf,-Number.MAX_VALUE);z.forEach(function(L,O){L.forEach(function(V,Z){A[O]=Math.min(V.value,A[O])})}),y.forEach(function(L,O){L.forEach(function(V,Z){N[O]=Math.max(V.value,N[O])})}),s.forEach(function(L,O){y.forEach(function(V,Z){var m=A[Z],C=N[Z];u.chart.stacked&&(C=0,V.forEach(function(j,E){j.value!==-Number.MAX_VALUE&&(C+=j.value),m!==Number.MIN_VALUE&&(m+=z[Z][E].value)})),V.forEach(function(j,E){V[E].key===O&&(u.yaxis[O].min!==void 0&&(m=typeof u.yaxis[O].min=="function"?u.yaxis[O].min(p.minY):u.yaxis[O].min),u.yaxis[O].max!==void 0&&(C=typeof u.yaxis[O].max=="function"?u.yaxis[O].max(p.maxY):u.yaxis[O].max),d.setYScaleForIndex(O,m,C))})})})}},{key:"autoScaleY",value:function(s,a,i){s||(s=this);var d=s.w;if(d.globals.isMultipleYAxis||d.globals.collapsedSeries.length)return console.warn("autoScaleYaxis is not supported in a multi-yaxis chart."),a;var u=d.globals.seriesX[0],p=d.config.chart.stacked;return a.forEach(function(w,f){for(var b=0,M=0;M=i.xaxis.min){b=M;break}var z,y,A=d.globals.minYArr[f],N=d.globals.maxYArr[f],L=d.globals.stackedSeriesTotals;d.globals.series.forEach(function(O,V){var Z=O[b];p?(Z=L[b],z=y=Z,L.forEach(function(m,C){u[C]<=i.xaxis.max&&u[C]>=i.xaxis.min&&(m>y&&m!==null&&(y=m),O[C]=i.xaxis.min){var j=m,E=m;d.globals.series.forEach(function(K,Q){m!==null&&(j=Math.min(K[C],j),E=Math.max(K[C],E))}),E>y&&E!==null&&(y=E),jA&&(z=A),a.length>1?(a[V].min=w.min===void 0?z:w.min,a[V].max=w.max===void 0?y:w.max):(a[0].min=w.min===void 0?z:w.min,a[0].max=w.max===void 0?y:w.max)})}),a}}]),T}(),lt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.scales=new J(s)}return k(T,[{key:"init",value:function(){this.setYRange(),this.setXRange(),this.setZRange()}},{key:"getMinYMaxY",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Number.MAX_VALUE,i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:-Number.MAX_VALUE,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:null,u=this.w.config,p=this.w.globals,w=-Number.MAX_VALUE,f=Number.MIN_VALUE;d===null&&(d=s+1);var b=p.series,M=b,z=b;u.chart.type==="candlestick"?(M=p.seriesCandleL,z=p.seriesCandleH):u.chart.type==="boxPlot"?(M=p.seriesCandleO,z=p.seriesCandleC):p.isRangeData&&(M=p.seriesRangeStart,z=p.seriesRangeEnd);for(var y=s;yM[y][A]&&M[y][A]<0&&(f=M[y][A])):p.hasNullValues=!0}}return u.chart.type==="rangeBar"&&p.seriesRangeStart.length&&p.isBarHorizontal&&(f=a),u.chart.type==="bar"&&(f<0&&w<0&&(w=0),f===Number.MIN_VALUE&&(f=0)),{minY:f,maxY:w,lowestY:a,highestY:i}}},{key:"setYRange",value:function(){var s=this.w.globals,a=this.w.config;s.maxY=-Number.MAX_VALUE,s.minY=Number.MIN_VALUE;var i=Number.MAX_VALUE;if(s.isMultipleYAxis)for(var d=0;d=0&&i<=10||a.yaxis[0].min!==void 0||a.yaxis[0].max!==void 0)&&(w=0),s.minY=i-5*w/100,i>0&&s.minY<0&&(s.minY=0),s.maxY=s.maxY+5*w/100}return a.yaxis.forEach(function(f,b){f.max!==void 0&&(typeof f.max=="number"?s.maxYArr[b]=f.max:typeof f.max=="function"&&(s.maxYArr[b]=f.max(s.isMultipleYAxis?s.maxYArr[b]:s.maxY)),s.maxY=s.maxYArr[b]),f.min!==void 0&&(typeof f.min=="number"?s.minYArr[b]=f.min:typeof f.min=="function"&&(s.minYArr[b]=f.min(s.isMultipleYAxis?s.minYArr[b]===Number.MIN_VALUE?0:s.minYArr[b]:s.minY)),s.minY=s.minYArr[b])}),s.isBarHorizontal&&["min","max"].forEach(function(f){a.xaxis[f]!==void 0&&typeof a.xaxis[f]=="number"&&(f==="min"?s.minY=a.xaxis[f]:s.maxY=a.xaxis[f])}),s.isMultipleYAxis?(this.scales.setMultipleYScales(),s.minY=i,s.yAxisScale.forEach(function(f,b){s.minYArr[b]=f.niceMin,s.maxYArr[b]=f.niceMax})):(this.scales.setYScaleForIndex(0,s.minY,s.maxY),s.minY=s.yAxisScale[0].niceMin,s.maxY=s.yAxisScale[0].niceMax,s.minYArr[0]=s.yAxisScale[0].niceMin,s.maxYArr[0]=s.yAxisScale[0].niceMax),{minY:s.minY,maxY:s.maxY,minYArr:s.minYArr,maxYArr:s.maxYArr,yAxisScale:s.yAxisScale}}},{key:"setXRange",value:function(){var s=this.w.globals,a=this.w.config,i=a.xaxis.type==="numeric"||a.xaxis.type==="datetime"||a.xaxis.type==="category"&&!s.noLabelsProvided||s.noLabelsProvided||s.isXNumeric;if(s.isXNumeric&&function(){for(var w=0;ws.dataPoints&&s.dataPoints!==0&&(d=s.dataPoints-1)):a.xaxis.tickAmount==="dataPoints"?(s.series.length>1&&(d=s.series[s.maxValsInArrayIndex].length-1),s.isXNumeric&&(d=s.maxX-s.minX-1)):d=a.xaxis.tickAmount,s.xTickAmount=d,a.xaxis.max!==void 0&&typeof a.xaxis.max=="number"&&(s.maxX=a.xaxis.max),a.xaxis.min!==void 0&&typeof a.xaxis.min=="number"&&(s.minX=a.xaxis.min),a.xaxis.range!==void 0&&(s.minX=s.maxX-a.xaxis.range),s.minX!==Number.MAX_VALUE&&s.maxX!==-Number.MAX_VALUE)if(a.xaxis.convertedCatToNumeric&&!s.dataFormatXNumeric){for(var u=[],p=s.minX-1;p0&&(s.xAxisScale=this.scales.linearScale(1,s.labels.length,d-1),s.seriesX=s.labels.slice());i&&(s.labels=s.xAxisScale.result.slice())}return s.isBarHorizontal&&s.labels.length&&(s.xTickAmount=s.labels.length),this._handleSingleDataPoint(),this._getMinXDiff(),{minX:s.minX,maxX:s.maxX}}},{key:"setZRange",value:function(){var s=this.w.globals;if(s.isDataXYZ){for(var a=0;a0){var w=u-d[p-1];w>0&&(s.minXDiff=Math.min(w,s.minXDiff))}}),s.dataPoints!==1&&s.minXDiff!==Number.MAX_VALUE||(s.minXDiff=.5)})}},{key:"_setStackedMinMax",value:function(){var s=this,a=this.w.globals;if(a.series.length){var i=a.seriesGroups;i.length||(i=[this.w.config.series.map(function(p){return p.name})]);var d={},u={};i.forEach(function(p){d[p]=[],u[p]=[],s.w.config.series.map(function(w,f){return p.indexOf(w.name)>-1?f:null}).filter(function(w){return w!==null}).forEach(function(w){for(var f=0;f0?d[p][f]+=parseFloat(a.series[w][f])+1e-4:u[p][f]+=parseFloat(a.series[w][f]))})}),Object.entries(d).forEach(function(p){var w=D(p,1)[0];d[w].forEach(function(f,b){a.maxY=Math.max(a.maxY,d[w][b]),a.minY=Math.min(a.minY,u[w][b])})})}}}]),T}(),at=function(){function T(s,a){g(this,T),this.ctx=s,this.elgrid=a,this.w=s.w;var i=this.w;this.xaxisFontSize=i.config.xaxis.labels.style.fontSize,this.axisFontFamily=i.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=i.config.xaxis.labels.style.colors,this.isCategoryBarHorizontal=i.config.chart.type==="bar"&&i.config.plotOptions.bar.horizontal,this.xAxisoffX=0,i.config.xaxis.position==="bottom"&&(this.xAxisoffX=i.globals.gridHeight),this.drawnLabels=[],this.axesUtils=new Nt(s)}return k(T,[{key:"drawYaxis",value:function(s){var a=this,i=this.w,d=new _(this.ctx),u=i.config.yaxis[s].labels.style,p=u.fontSize,w=u.fontFamily,f=u.fontWeight,b=d.group({class:"apexcharts-yaxis",rel:s,transform:"translate("+i.globals.translateYAxisX[s]+", 0)"});if(this.axesUtils.isYAxisHidden(s))return b;var M=d.group({class:"apexcharts-yaxis-texts-g"});b.add(M);var z=i.globals.yAxisScale[s].result.length-1,y=i.globals.gridHeight/z,A=i.globals.translateY,N=i.globals.yLabelFormatters[s],L=i.globals.yAxisScale[s].result.slice();L=this.axesUtils.checkForReversedLabels(s,L);var O="";if(i.config.yaxis[s].labels.show)for(var V=function(ot){var it=L[ot];it=N(it,ot,i);var vt=i.config.yaxis[s].labels.padding;i.config.yaxis[s].opposite&&i.config.yaxis.length!==0&&(vt*=-1);var zt="end";i.config.yaxis[s].opposite&&(zt="start"),i.config.yaxis[s].labels.align==="left"?zt="start":i.config.yaxis[s].labels.align==="center"?zt="middle":i.config.yaxis[s].labels.align==="right"&&(zt="end");var Mt=a.axesUtils.getYAxisForeColor(u.colors,s),Vt=d.drawText({x:vt,y:A+z/10+i.config.yaxis[s].labels.offsetY+1,text:it,textAnchor:zt,fontSize:p,fontFamily:w,fontWeight:f,maxWidth:i.config.yaxis[s].labels.maxWidth,foreColor:Array.isArray(Mt)?Mt[ot]:Mt,isPlainText:!1,cssClass:"apexcharts-yaxis-label "+u.cssClass});ot===z&&(O=Vt),M.add(Vt);var Yt=document.createElementNS(i.globals.SVGNS,"title");if(Yt.textContent=Array.isArray(it)?it.join(" "):it,Vt.node.appendChild(Yt),i.config.yaxis[s].labels.rotate!==0){var ie=d.rotateAroundCenter(O.node),he=d.rotateAroundCenter(Vt.node);Vt.node.setAttribute("transform","rotate(".concat(i.config.yaxis[s].labels.rotate," ").concat(ie.x," ").concat(he.y,")"))}A+=y},Z=z;Z>=0;Z--)V(Z);if(i.config.yaxis[s].title.text!==void 0){var m=d.group({class:"apexcharts-yaxis-title"}),C=0;i.config.yaxis[s].opposite&&(C=i.globals.translateYAxisX[s]);var j=d.drawText({x:C,y:i.globals.gridHeight/2+i.globals.translateY+i.config.yaxis[s].title.offsetY,text:i.config.yaxis[s].title.text,textAnchor:"end",foreColor:i.config.yaxis[s].title.style.color,fontSize:i.config.yaxis[s].title.style.fontSize,fontWeight:i.config.yaxis[s].title.style.fontWeight,fontFamily:i.config.yaxis[s].title.style.fontFamily,cssClass:"apexcharts-yaxis-title-text "+i.config.yaxis[s].title.style.cssClass});m.add(j),b.add(m)}var E=i.config.yaxis[s].axisBorder,K=31+E.offsetX;if(i.config.yaxis[s].opposite&&(K=-31-E.offsetX),E.show){var Q=d.drawLine(K,i.globals.translateY+E.offsetY-2,K,i.globals.gridHeight+i.globals.translateY+E.offsetY+2,E.color,0,E.width);b.add(Q)}return i.config.yaxis[s].axisTicks.show&&this.axesUtils.drawYAxisTicks(K,z,E,i.config.yaxis[s].axisTicks,s,y,b),b}},{key:"drawYaxisInversed",value:function(s){var a=this.w,i=new _(this.ctx),d=i.group({class:"apexcharts-xaxis apexcharts-yaxis-inversed"}),u=i.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(a.globals.translateXAxisX,", ").concat(a.globals.translateXAxisY,")")});d.add(u);var p=a.globals.yAxisScale[s].result.length-1,w=a.globals.gridWidth/p+.1,f=w+a.config.xaxis.labels.offsetX,b=a.globals.xLabelFormatter,M=a.globals.yAxisScale[s].result.slice(),z=a.globals.timescaleLabels;z.length>0&&(this.xaxisLabels=z.slice(),p=(M=z.slice()).length),M=this.axesUtils.checkForReversedLabels(s,M);var y=z.length;if(a.config.xaxis.labels.show)for(var A=y?0:p;y?A=0;y?A++:A--){var N=M[A];N=b(N,A,a);var L=a.globals.gridWidth+a.globals.padHorizontal-(f-w+a.config.xaxis.labels.offsetX);if(z.length){var O=this.axesUtils.getLabel(M,z,L,A,this.drawnLabels,this.xaxisFontSize);L=O.x,N=O.text,this.drawnLabels.push(O.text),A===0&&a.globals.skipFirstTimelinelabel&&(N=""),A===M.length-1&&a.globals.skipLastTimelinelabel&&(N="")}var V=i.drawText({x:L,y:this.xAxisoffX+a.config.xaxis.labels.offsetY+30-(a.config.xaxis.position==="top"?a.globals.xAxisHeight+a.config.xaxis.axisTicks.height-2:0),text:N,textAnchor:"middle",foreColor:Array.isArray(this.xaxisForeColors)?this.xaxisForeColors[s]:this.xaxisForeColors,fontSize:this.xaxisFontSize,fontFamily:this.xaxisFontFamily,fontWeight:a.config.xaxis.labels.style.fontWeight,isPlainText:!1,cssClass:"apexcharts-xaxis-label "+a.config.xaxis.labels.style.cssClass});u.add(V),V.tspan(N);var Z=document.createElementNS(a.globals.SVGNS,"title");Z.textContent=N,V.node.appendChild(Z),f+=w}return this.inversedYAxisTitleText(d),this.inversedYAxisBorder(d),d}},{key:"inversedYAxisBorder",value:function(s){var a=this.w,i=new _(this.ctx),d=a.config.xaxis.axisBorder;if(d.show){var u=0;a.config.chart.type==="bar"&&a.globals.isXNumeric&&(u-=15);var p=i.drawLine(a.globals.padHorizontal+u+d.offsetX,this.xAxisoffX,a.globals.gridWidth,this.xAxisoffX,d.color,0,d.height);this.elgrid&&this.elgrid.elGridBorders&&a.config.grid.show?this.elgrid.elGridBorders.add(p):s.add(p)}}},{key:"inversedYAxisTitleText",value:function(s){var a=this.w,i=new _(this.ctx);if(a.config.xaxis.title.text!==void 0){var d=i.group({class:"apexcharts-xaxis-title apexcharts-yaxis-title-inversed"}),u=i.drawText({x:a.globals.gridWidth/2+a.config.xaxis.title.offsetX,y:this.xAxisoffX+parseFloat(this.xaxisFontSize)+parseFloat(a.config.xaxis.title.style.fontSize)+a.config.xaxis.title.offsetY+20,text:a.config.xaxis.title.text,textAnchor:"middle",fontSize:a.config.xaxis.title.style.fontSize,fontFamily:a.config.xaxis.title.style.fontFamily,fontWeight:a.config.xaxis.title.style.fontWeight,foreColor:a.config.xaxis.title.style.color,cssClass:"apexcharts-xaxis-title-text "+a.config.xaxis.title.style.cssClass});d.add(u),s.add(d)}}},{key:"yAxisTitleRotate",value:function(s,a){var i=this.w,d=new _(this.ctx),u={width:0,height:0},p={width:0,height:0},w=i.globals.dom.baseEl.querySelector(" .apexcharts-yaxis[rel='".concat(s,"'] .apexcharts-yaxis-texts-g"));w!==null&&(u=w.getBoundingClientRect());var f=i.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(s,"'] .apexcharts-yaxis-title text"));if(f!==null&&(p=f.getBoundingClientRect()),f!==null){var b=this.xPaddingForYAxisTitle(s,u,p,a);f.setAttribute("x",b.xPos-(a?10:0))}if(f!==null){var M=d.rotateAroundCenter(f);f.setAttribute("transform","rotate(".concat(a?-1*i.config.yaxis[s].title.rotate:i.config.yaxis[s].title.rotate," ").concat(M.x," ").concat(M.y,")"))}}},{key:"xPaddingForYAxisTitle",value:function(s,a,i,d){var u=this.w,p=0,w=0,f=10;return u.config.yaxis[s].title.text===void 0||s<0?{xPos:w,padd:0}:(d?(w=a.width+u.config.yaxis[s].title.offsetX+i.width/2+f/2,(p+=1)===0&&(w-=f/2)):(w=-1*a.width+u.config.yaxis[s].title.offsetX+f/2+i.width/2,u.globals.isBarHorizontal&&(f=25,w=-1*a.width-u.config.yaxis[s].title.offsetX-f)),{xPos:w,padd:f})}},{key:"setYAxisXPosition",value:function(s,a){var i=this.w,d=0,u=0,p=18,w=1;i.config.yaxis.length>1&&(this.multipleYs=!0),i.config.yaxis.map(function(f,b){var M=i.globals.ignoreYAxisIndexes.indexOf(b)>-1||!f.show||f.floating||s[b].width===0,z=s[b].width+a[b].width;f.opposite?i.globals.isBarHorizontal?(u=i.globals.gridWidth+i.globals.translateX-1,i.globals.translateYAxisX[b]=u-f.labels.offsetX):(u=i.globals.gridWidth+i.globals.translateX+w,M||(w=w+z+20),i.globals.translateYAxisX[b]=u-f.labels.offsetX+20):(d=i.globals.translateX-p,M||(p=p+z+20),i.globals.translateYAxisX[b]=d+f.labels.offsetX)})}},{key:"setYAxisTextAlignments",value:function(){var s=this.w,a=s.globals.dom.baseEl.getElementsByClassName("apexcharts-yaxis");(a=H.listToArray(a)).forEach(function(i,d){var u=s.config.yaxis[d];if(u&&!u.floating&&u.labels.align!==void 0){var p=s.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(d,"'] .apexcharts-yaxis-texts-g")),w=s.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis[rel='".concat(d,"'] .apexcharts-yaxis-label"));w=H.listToArray(w);var f=p.getBoundingClientRect();u.labels.align==="left"?(w.forEach(function(b,M){b.setAttribute("text-anchor","start")}),u.opposite||p.setAttribute("transform","translate(-".concat(f.width,", 0)"))):u.labels.align==="center"?(w.forEach(function(b,M){b.setAttribute("text-anchor","middle")}),p.setAttribute("transform","translate(".concat(f.width/2*(u.opposite?1:-1),", 0)"))):u.labels.align==="right"&&(w.forEach(function(b,M){b.setAttribute("text-anchor","end")}),u.opposite&&p.setAttribute("transform","translate(".concat(f.width,", 0)")))}})}}]),T}(),ct=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.documentEvent=H.bind(this.documentEvent,this)}return k(T,[{key:"addEventListener",value:function(s,a){var i=this.w;i.globals.events.hasOwnProperty(s)?i.globals.events[s].push(a):i.globals.events[s]=[a]}},{key:"removeEventListener",value:function(s,a){var i=this.w;if(i.globals.events.hasOwnProperty(s)){var d=i.globals.events[s].indexOf(a);d!==-1&&i.globals.events[s].splice(d,1)}}},{key:"fireEvent",value:function(s,a){var i=this.w;if(i.globals.events.hasOwnProperty(s)){a&&a.length||(a=[]);for(var d=i.globals.events[s],u=d.length,p=0;p0&&(a=this.w.config.chart.locales.concat(window.Apex.chart.locales));var i=a.filter(function(u){return u.name===s})[0];if(!i)throw new Error("Wrong locale name provided. Please make sure you set the correct locale name in options");var d=H.extend(st,i);this.w.globals.locale=d.options}}]),T}(),yt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"drawAxis",value:function(s,a){var i,d,u=this,p=this.w.globals,w=this.w.config,f=new bt(this.ctx,a),b=new at(this.ctx,a);p.axisCharts&&s!=="radar"&&(p.isBarHorizontal?(d=b.drawYaxisInversed(0),i=f.drawXaxisInversed(0),p.dom.elGraphical.add(i),p.dom.elGraphical.add(d)):(i=f.drawXaxis(),p.dom.elGraphical.add(i),w.yaxis.map(function(M,z){if(p.ignoreYAxisIndexes.indexOf(z)===-1&&(d=b.drawYaxis(z),p.dom.Paper.add(d),u.w.config.grid.position==="back")){var y=p.dom.Paper.children()[1];y.remove(),p.dom.Paper.add(y)}})))}}]),T}(),Ot=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"drawXCrosshairs",value:function(){var s=this.w,a=new _(this.ctx),i=new W(this.ctx),d=s.config.xaxis.crosshairs.fill.gradient,u=s.config.xaxis.crosshairs.dropShadow,p=s.config.xaxis.crosshairs.fill.type,w=d.colorFrom,f=d.colorTo,b=d.opacityFrom,M=d.opacityTo,z=d.stops,y=u.enabled,A=u.left,N=u.top,L=u.blur,O=u.color,V=u.opacity,Z=s.config.xaxis.crosshairs.fill.color;if(s.config.xaxis.crosshairs.show){p==="gradient"&&(Z=a.drawGradient("vertical",w,f,b,M,null,z,null));var m=a.drawRect();s.config.xaxis.crosshairs.width===1&&(m=a.drawLine());var C=s.globals.gridHeight;(!H.isNumber(C)||C<0)&&(C=0);var j=s.config.xaxis.crosshairs.width;(!H.isNumber(j)||j<0)&&(j=0),m.attr({class:"apexcharts-xcrosshairs",x:0,y:0,y2:C,width:j,height:C,fill:Z,filter:"none","fill-opacity":s.config.xaxis.crosshairs.opacity,stroke:s.config.xaxis.crosshairs.stroke.color,"stroke-width":s.config.xaxis.crosshairs.stroke.width,"stroke-dasharray":s.config.xaxis.crosshairs.stroke.dashArray}),y&&(m=i.dropShadow(m,{left:A,top:N,blur:L,color:O,opacity:V})),s.globals.dom.elGraphical.add(m)}}},{key:"drawYCrosshairs",value:function(){var s=this.w,a=new _(this.ctx),i=s.config.yaxis[0].crosshairs,d=s.globals.barPadForNumericAxis;if(s.config.yaxis[0].crosshairs.show){var u=a.drawLine(-d,0,s.globals.gridWidth+d,0,i.stroke.color,i.stroke.dashArray,i.stroke.width);u.attr({class:"apexcharts-ycrosshairs"}),s.globals.dom.elGraphical.add(u)}var p=a.drawLine(-d,0,s.globals.gridWidth+d,0,i.stroke.color,0,0);p.attr({class:"apexcharts-ycrosshairs-hidden"}),s.globals.dom.elGraphical.add(p)}}]),T}(),$t=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"checkResponsiveConfig",value:function(s){var a=this,i=this.w,d=i.config;if(d.responsive.length!==0){var u=d.responsive.slice();u.sort(function(b,M){return b.breakpoint>M.breakpoint?1:M.breakpoint>b.breakpoint?-1:0}).reverse();var p=new It({}),w=function(){var b=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},M=u[0].breakpoint,z=window.innerWidth>0?window.innerWidth:screen.width;if(z>M){var y=tt.extendArrayProps(p,i.globals.initialConfig,i);b=H.extend(y,b),b=H.extend(i.config,b),a.overrideResponsiveOptions(b)}else for(var A=0;A0&&typeof i.config.colors[0]=="function"&&(i.globals.colors=i.config.series.map(function(N,L){var O=i.config.colors[L];return O||(O=i.config.colors[0]),typeof O=="function"?(a.isColorFn=!0,O({value:i.globals.axisCharts?i.globals.series[L][0]?i.globals.series[L][0]:0:i.globals.series[L],seriesIndex:L,dataPointIndex:L,w:i})):O}))),i.globals.seriesColors.map(function(N,L){N&&(i.globals.colors[L]=N)}),i.config.theme.monochrome.enabled){var u=[],p=i.globals.series.length;(this.isBarDistributed||this.isHeatmapDistributed)&&(p=i.globals.series[0].length*i.globals.series.length);for(var w=i.config.theme.monochrome.color,f=1/(p/i.config.theme.monochrome.shadeIntensity),b=i.config.theme.monochrome.shadeTo,M=0,z=0;z2&&arguments[2]!==void 0?arguments[2]:null,d=this.w,u=a||d.globals.series.length;if(i===null&&(i=this.isBarDistributed||this.isHeatmapDistributed||d.config.chart.type==="heatmap"&&d.config.plotOptions.heatmap.colorScale.inverse),i&&d.globals.series.length&&(u=d.globals.series[d.globals.maxValsInArrayIndex].length*d.globals.series.length),s.lengths.globals.svgWidth&&(this.dCtx.lgRect.width=s.globals.svgWidth/1.5),this.dCtx.lgRect}},{key:"getLargestStringFromMultiArr",value:function(s,a){var i=s;if(this.w.globals.isMultiLineX){var d=a.map(function(p,w){return Array.isArray(p)?p.length:1}),u=Math.max.apply(Math,F(d));i=a[d.indexOf(u)]}return i}}]),T}(),Ut=function(){function T(s){g(this,T),this.w=s.w,this.dCtx=s}return k(T,[{key:"getxAxisLabelsCoords",value:function(){var s,a=this.w,i=a.globals.labels.slice();if(a.config.xaxis.convertedCatToNumeric&&i.length===0&&(i=a.globals.categoryLabels),a.globals.timescaleLabels.length>0){var d=this.getxAxisTimeScaleLabelsCoords();s={width:d.width,height:d.height},a.globals.rotateXLabels=!1}else{this.dCtx.lgWidthForSideLegends=a.config.legend.position!=="left"&&a.config.legend.position!=="right"||a.config.legend.floating?0:this.dCtx.lgRect.width;var u=a.globals.xLabelFormatter,p=H.getLargestStringFromArr(i),w=this.dCtx.dimHelpers.getLargestStringFromMultiArr(p,i);a.globals.isBarHorizontal&&(w=p=a.globals.yAxisScale[0].result.reduce(function(N,L){return N.length>L.length?N:L},0));var f=new Ct(this.dCtx.ctx),b=p;p=f.xLabelFormat(u,p,b,{i:void 0,dateFormatter:new dt(this.dCtx.ctx).formatDate,w:a}),w=f.xLabelFormat(u,w,b,{i:void 0,dateFormatter:new dt(this.dCtx.ctx).formatDate,w:a}),(a.config.xaxis.convertedCatToNumeric&&p===void 0||String(p).trim()==="")&&(w=p="1");var M=new _(this.dCtx.ctx),z=M.getTextRects(p,a.config.xaxis.labels.style.fontSize),y=z;if(p!==w&&(y=M.getTextRects(w,a.config.xaxis.labels.style.fontSize)),(s={width:z.width>=y.width?z.width:y.width,height:z.height>=y.height?z.height:y.height}).width*i.length>a.globals.svgWidth-this.dCtx.lgWidthForSideLegends-this.dCtx.yAxisWidth-this.dCtx.gridPad.left-this.dCtx.gridPad.right&&a.config.xaxis.labels.rotate!==0||a.config.xaxis.labels.rotateAlways){if(!a.globals.isBarHorizontal){a.globals.rotateXLabels=!0;var A=function(N){return M.getTextRects(N,a.config.xaxis.labels.style.fontSize,a.config.xaxis.labels.style.fontFamily,"rotate(".concat(a.config.xaxis.labels.rotate," 0 0)"),!1)};z=A(p),p!==w&&(y=A(w)),s.height=(z.height>y.height?z.height:y.height)/1.5,s.width=z.width>y.width?z.width:y.width}}else a.globals.rotateXLabels=!1}return a.config.xaxis.labels.show||(s={width:0,height:0}),{width:s.width,height:s.height}}},{key:"getxAxisGroupLabelsCoords",value:function(){var s,a=this.w;if(!a.globals.hasXaxisGroups)return{width:0,height:0};var i,d=((s=a.config.xaxis.group.style)===null||s===void 0?void 0:s.fontSize)||a.config.xaxis.labels.style.fontSize,u=a.globals.groups.map(function(z){return z.title}),p=H.getLargestStringFromArr(u),w=this.dCtx.dimHelpers.getLargestStringFromMultiArr(p,u),f=new _(this.dCtx.ctx),b=f.getTextRects(p,d),M=b;return p!==w&&(M=f.getTextRects(w,d)),i={width:b.width>=M.width?b.width:M.width,height:b.height>=M.height?b.height:M.height},a.config.xaxis.labels.show||(i={width:0,height:0}),{width:i.width,height:i.height}}},{key:"getxAxisTitleCoords",value:function(){var s=this.w,a=0,i=0;if(s.config.xaxis.title.text!==void 0){var d=new _(this.dCtx.ctx).getTextRects(s.config.xaxis.title.text,s.config.xaxis.title.style.fontSize);a=d.width,i=d.height}return{width:a,height:i}}},{key:"getxAxisTimeScaleLabelsCoords",value:function(){var s,a=this.w;this.dCtx.timescaleLabels=a.globals.timescaleLabels.slice();var i=this.dCtx.timescaleLabels.map(function(u){return u.value}),d=i.reduce(function(u,p){return u===void 0?(console.error("You have possibly supplied invalid Date format. Please supply a valid JavaScript Date"),0):u.length>p.length?u:p},0);return 1.05*(s=new _(this.dCtx.ctx).getTextRects(d,a.config.xaxis.labels.style.fontSize)).width*i.length>a.globals.gridWidth&&a.config.xaxis.labels.rotate!==0&&(a.globals.overlappingXLabels=!0),s}},{key:"additionalPaddingXLabels",value:function(s){var a=this,i=this.w,d=i.globals,u=i.config,p=u.xaxis.type,w=s.width;d.skipLastTimelinelabel=!1,d.skipFirstTimelinelabel=!1;var f=i.config.yaxis[0].opposite&&i.globals.isBarHorizontal,b=function(M,z){u.yaxis.length>1&&function(y){return d.collapsedSeriesIndices.indexOf(y)!==-1}(z)||function(y){if(a.dCtx.timescaleLabels&&a.dCtx.timescaleLabels.length){var A=a.dCtx.timescaleLabels[0],N=a.dCtx.timescaleLabels[a.dCtx.timescaleLabels.length-1].position+w/1.75-a.dCtx.yAxisWidthRight,L=A.position-w/1.75+a.dCtx.yAxisWidthLeft,O=i.config.legend.position==="right"&&a.dCtx.lgRect.width>0?a.dCtx.lgRect.width:0;N>d.svgWidth-d.translateX-O&&(d.skipLastTimelinelabel=!0),L<-(y.show&&!y.floating||u.chart.type!=="bar"&&u.chart.type!=="candlestick"&&u.chart.type!=="rangeBar"&&u.chart.type!=="boxPlot"?10:w/1.75)&&(d.skipFirstTimelinelabel=!0)}else p==="datetime"?a.dCtx.gridPad.rightString(f.niceMax).length?z:f.niceMax,A=M(y,{seriesIndex:w,dataPointIndex:-1,w:a}),N=A;if(A!==void 0&&A.length!==0||(A=y),a.globals.isBarHorizontal){d=0;var L=a.globals.labels.slice();A=M(A=H.getLargestStringFromArr(L),{seriesIndex:w,dataPointIndex:-1,w:a}),N=s.dCtx.dimHelpers.getLargestStringFromMultiArr(A,L)}var O=new _(s.dCtx.ctx),V="rotate(".concat(p.labels.rotate," 0 0)"),Z=O.getTextRects(A,p.labels.style.fontSize,p.labels.style.fontFamily,V,!1),m=Z;A!==N&&(m=O.getTextRects(N,p.labels.style.fontSize,p.labels.style.fontFamily,V,!1)),i.push({width:(b>m.width||b>Z.width?b:m.width>Z.width?m.width:Z.width)+d,height:m.height>Z.height?m.height:Z.height})}else i.push({width:0,height:0})}),i}},{key:"getyAxisTitleCoords",value:function(){var s=this,a=this.w,i=[];return a.config.yaxis.map(function(d,u){if(d.show&&d.title.text!==void 0){var p=new _(s.dCtx.ctx),w="rotate(".concat(d.title.rotate," 0 0)"),f=p.getTextRects(d.title.text,d.title.style.fontSize,d.title.style.fontFamily,w,!1);i.push({width:f.width,height:f.height})}else i.push({width:0,height:0})}),i}},{key:"getTotalYAxisWidth",value:function(){var s=this.w,a=0,i=0,d=0,u=s.globals.yAxisScale.length>1?10:0,p=new Nt(this.dCtx.ctx),w=function(f,b){var M=s.config.yaxis[b].floating,z=0;f.width>0&&!M?(z=f.width+u,function(y){return s.globals.ignoreYAxisIndexes.indexOf(y)>-1}(b)&&(z=z-f.width-u)):z=M||p.isYAxisHidden(b)?0:5,s.config.yaxis[b].opposite?d+=z:i+=z,a+=z};return s.globals.yLabelsCoords.map(function(f,b){w(f,b)}),s.globals.yTitleCoords.map(function(f,b){w(f,b)}),s.globals.isBarHorizontal&&!s.config.yaxis[0].floating&&(a=s.globals.yLabelsCoords[0].width+s.globals.yTitleCoords[0].width+15),this.dCtx.yAxisWidthLeft=i,this.dCtx.yAxisWidthRight=d,a}}]),T}(),te=function(){function T(s){g(this,T),this.w=s.w,this.dCtx=s}return k(T,[{key:"gridPadForColumnsInNumericAxis",value:function(s){var a=this.w;if(a.globals.noData||a.globals.allSeriesCollapsed)return 0;var i=function(M){return M==="bar"||M==="rangeBar"||M==="candlestick"||M==="boxPlot"},d=a.config.chart.type,u=0,p=i(d)?a.config.series.length:1;if(a.globals.comboBarCount>0&&(p=a.globals.comboBarCount),a.globals.collapsedSeries.forEach(function(M){i(M.type)&&(p-=1)}),a.config.chart.stacked&&(p=1),(i(d)||a.globals.comboBarCount>0)&&a.globals.isXNumeric&&!a.globals.isBarHorizontal&&p>0){var w,f,b=Math.abs(a.globals.initialMaxX-a.globals.initialMinX);b<=3&&(b=a.globals.dataPoints),w=b/s,a.globals.minXDiff&&a.globals.minXDiff/w>0&&(f=a.globals.minXDiff/w),f>s/2&&(f/=2),(u=f/p*parseInt(a.config.plotOptions.bar.columnWidth,10)/100)<1&&(u=1),u=u/(p>1?1:1.5)+5,a.globals.barPadForNumericAxis=u}return u}},{key:"gridPadFortitleSubtitle",value:function(){var s=this,a=this.w,i=a.globals,d=this.dCtx.isSparkline||!a.globals.axisCharts?0:10;["title","subtitle"].forEach(function(w){a.config[w].text!==void 0?d+=a.config[w].margin:d+=s.dCtx.isSparkline||!a.globals.axisCharts?0:5}),!a.config.legend.show||a.config.legend.position!=="bottom"||a.config.legend.floating||a.globals.axisCharts||(d+=10);var u=this.dCtx.dimHelpers.getTitleSubtitleCoords("title"),p=this.dCtx.dimHelpers.getTitleSubtitleCoords("subtitle");i.gridHeight=i.gridHeight-u.height-p.height-d,i.translateY=i.translateY+u.height+p.height+d}},{key:"setGridXPosForDualYAxis",value:function(s,a){var i=this.w,d=new Nt(this.dCtx.ctx);i.config.yaxis.map(function(u,p){i.globals.ignoreYAxisIndexes.indexOf(p)!==-1||u.floating||d.isYAxisHidden(p)||(u.opposite&&(i.globals.translateX=i.globals.translateX-(a[p].width+s[p].width)-parseInt(i.config.yaxis[p].labels.style.fontSize,10)/1.2-12),i.globals.translateX<2&&(i.globals.translateX=2))})}}]),T}(),ae=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.lgRect={},this.yAxisWidth=0,this.yAxisWidthLeft=0,this.yAxisWidthRight=0,this.xAxisHeight=0,this.isSparkline=this.w.config.chart.sparkline.enabled,this.dimHelpers=new Zt(this),this.dimYAxis=new Gt(this),this.dimXAxis=new Ut(this),this.dimGrid=new te(this),this.lgWidthForSideLegends=0,this.gridPad=this.w.config.grid.padding,this.xPadRight=0,this.xPadLeft=0}return k(T,[{key:"plotCoords",value:function(){var s=this,a=this.w,i=a.globals;this.lgRect=this.dimHelpers.getLegendsRect(),this.isSparkline&&(a.config.markers.discrete.length>0||a.config.markers.size>0)&&Object.entries(this.gridPad).forEach(function(u){var p=D(u,2),w=p[0],f=p[1];s.gridPad[w]=Math.max(f,s.w.globals.markers.largestSize/1.5)}),i.axisCharts?this.setDimensionsForAxisCharts():this.setDimensionsForNonAxisCharts(),this.dimGrid.gridPadFortitleSubtitle(),i.gridHeight=i.gridHeight-this.gridPad.top-this.gridPad.bottom,i.gridWidth=i.gridWidth-this.gridPad.left-this.gridPad.right-this.xPadRight-this.xPadLeft;var d=this.dimGrid.gridPadForColumnsInNumericAxis(i.gridWidth);i.gridWidth=i.gridWidth-2*d,i.translateX=i.translateX+this.gridPad.left+this.xPadLeft+(d>0?d+4:0),i.translateY=i.translateY+this.gridPad.top}},{key:"setDimensionsForAxisCharts",value:function(){var s=this,a=this.w,i=a.globals,d=this.dimYAxis.getyAxisLabelsCoords(),u=this.dimYAxis.getyAxisTitleCoords();a.globals.yLabelsCoords=[],a.globals.yTitleCoords=[],a.config.yaxis.map(function(A,N){a.globals.yLabelsCoords.push({width:d[N].width,index:N}),a.globals.yTitleCoords.push({width:u[N].width,index:N})}),this.yAxisWidth=this.dimYAxis.getTotalYAxisWidth();var p=this.dimXAxis.getxAxisLabelsCoords(),w=this.dimXAxis.getxAxisGroupLabelsCoords(),f=this.dimXAxis.getxAxisTitleCoords();this.conditionalChecksForAxisCoords(p,f,w),i.translateXAxisY=a.globals.rotateXLabels?this.xAxisHeight/8:-4,i.translateXAxisX=a.globals.rotateXLabels&&a.globals.isXNumeric&&a.config.xaxis.labels.rotate<=-45?-this.xAxisWidth/4:0,a.globals.isBarHorizontal&&(i.rotateXLabels=!1,i.translateXAxisY=parseInt(a.config.xaxis.labels.style.fontSize,10)/1.5*-1),i.translateXAxisY=i.translateXAxisY+a.config.xaxis.labels.offsetY,i.translateXAxisX=i.translateXAxisX+a.config.xaxis.labels.offsetX;var b=this.yAxisWidth,M=this.xAxisHeight;i.xAxisLabelsHeight=this.xAxisHeight-f.height,i.xAxisGroupLabelsHeight=i.xAxisLabelsHeight-p.height,i.xAxisLabelsWidth=this.xAxisWidth,i.xAxisHeight=this.xAxisHeight;var z=10;(a.config.chart.type==="radar"||this.isSparkline)&&(b=0,M=i.goldenPadding),this.isSparkline&&(this.lgRect={height:0,width:0}),(this.isSparkline||a.config.chart.type==="treemap")&&(b=0,M=0,z=0),this.isSparkline||this.dimXAxis.additionalPaddingXLabels(p);var y=function(){i.translateX=b,i.gridHeight=i.svgHeight-s.lgRect.height-M-(s.isSparkline||a.config.chart.type==="treemap"?0:a.globals.rotateXLabels?10:15),i.gridWidth=i.svgWidth-b};switch(a.config.xaxis.position==="top"&&(z=i.xAxisHeight-a.config.xaxis.axisTicks.height-5),a.config.legend.position){case"bottom":i.translateY=z,y();break;case"top":i.translateY=this.lgRect.height+z,y();break;case"left":i.translateY=z,i.translateX=this.lgRect.width+b,i.gridHeight=i.svgHeight-M-12,i.gridWidth=i.svgWidth-this.lgRect.width-b;break;case"right":i.translateY=z,i.translateX=b,i.gridHeight=i.svgHeight-M-12,i.gridWidth=i.svgWidth-this.lgRect.width-b-5;break;default:throw new Error("Legend position not supported")}this.dimGrid.setGridXPosForDualYAxis(u,d),new at(this.ctx).setYAxisXPosition(d,u)}},{key:"setDimensionsForNonAxisCharts",value:function(){var s=this.w,a=s.globals,i=s.config,d=0;s.config.legend.show&&!s.config.legend.floating&&(d=20);var u=i.chart.type==="pie"||i.chart.type==="polarArea"||i.chart.type==="donut"?"pie":"radialBar",p=i.plotOptions[u].offsetY,w=i.plotOptions[u].offsetX;if(!i.legend.show||i.legend.floating)return a.gridHeight=a.svgHeight-i.grid.padding.left+i.grid.padding.right,a.gridWidth=a.gridHeight,a.translateY=p,void(a.translateX=w+(a.svgWidth-a.gridWidth)/2);switch(i.legend.position){case"bottom":a.gridHeight=a.svgHeight-this.lgRect.height-a.goldenPadding,a.gridWidth=a.svgWidth,a.translateY=p-10,a.translateX=w+(a.svgWidth-a.gridWidth)/2;break;case"top":a.gridHeight=a.svgHeight-this.lgRect.height-a.goldenPadding,a.gridWidth=a.svgWidth,a.translateY=this.lgRect.height+p+10,a.translateX=w+(a.svgWidth-a.gridWidth)/2;break;case"left":a.gridWidth=a.svgWidth-this.lgRect.width-d,a.gridHeight=i.chart.height!=="auto"?a.svgHeight:a.gridWidth,a.translateY=p,a.translateX=w+this.lgRect.width+d;break;case"right":a.gridWidth=a.svgWidth-this.lgRect.width-d-5,a.gridHeight=i.chart.height!=="auto"?a.svgHeight:a.gridWidth,a.translateY=p,a.translateX=w+10;break;default:throw new Error("Legend position not supported")}}},{key:"conditionalChecksForAxisCoords",value:function(s,a,i){var d=this.w,u=d.globals.hasXaxisGroups?2:1,p=i.height+s.height+a.height,w=d.globals.isMultiLineX?1.2:d.globals.LINE_HEIGHT_RATIO,f=d.globals.rotateXLabels?22:10,b=d.globals.rotateXLabels&&d.config.legend.position==="bottom"?10:0;this.xAxisHeight=p*w+u*f+b,this.xAxisWidth=s.width,this.xAxisHeight-a.height>d.config.xaxis.labels.maxHeight&&(this.xAxisHeight=d.config.xaxis.labels.maxHeight),d.config.xaxis.labels.minHeight&&this.xAxisHeightz&&(this.yAxisWidth=z)}}]),T}(),be=function(){function T(s){g(this,T),this.w=s.w,this.lgCtx=s}return k(T,[{key:"getLegendStyles",value:function(){var s=document.createElement("style");s.setAttribute("type","text/css");var a=document.createTextNode(` - - .apexcharts-legend { - display: flex; - overflow: auto; - padding: 0 10px; - } - .apexcharts-legend.apx-legend-position-bottom, .apexcharts-legend.apx-legend-position-top { - flex-wrap: wrap - } - .apexcharts-legend.apx-legend-position-right, .apexcharts-legend.apx-legend-position-left { - flex-direction: column; - bottom: 0; - } - .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-left, .apexcharts-legend.apx-legend-position-top.apexcharts-align-left, .apexcharts-legend.apx-legend-position-right, .apexcharts-legend.apx-legend-position-left { - justify-content: flex-start; - } - .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-center, .apexcharts-legend.apx-legend-position-top.apexcharts-align-center { - justify-content: center; - } - .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-right, .apexcharts-legend.apx-legend-position-top.apexcharts-align-right { - justify-content: flex-end; - } - .apexcharts-legend-series { - cursor: pointer; - line-height: normal; - } - .apexcharts-legend.apx-legend-position-bottom .apexcharts-legend-series, .apexcharts-legend.apx-legend-position-top .apexcharts-legend-series{ - display: flex; - align-items: center; - } - .apexcharts-legend-text { - position: relative; - font-size: 14px; - } - .apexcharts-legend-text *, .apexcharts-legend-marker * { - pointer-events: none; - } - .apexcharts-legend-marker { - position: relative; - display: inline-block; - cursor: pointer; - margin-right: 3px; - border-style: solid; - } - - .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series, .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series{ - display: inline-block; - } - .apexcharts-legend-series.apexcharts-no-click { - cursor: auto; - } - .apexcharts-legend .apexcharts-hidden-zero-series, .apexcharts-legend .apexcharts-hidden-null-series { - display: none !important; - } - .apexcharts-inactive-legend { - opacity: 0.45; - }`);return s.appendChild(a),s}},{key:"getLegendBBox",value:function(){var s=this.w.globals.dom.baseEl.querySelector(".apexcharts-legend").getBoundingClientRect(),a=s.width;return{clwh:s.height,clww:a}}},{key:"appendToForeignObject",value:function(){this.w.globals.dom.elLegendForeign.appendChild(this.getLegendStyles())}},{key:"toggleDataSeries",value:function(s,a){var i=this,d=this.w;if(d.globals.axisCharts||d.config.chart.type==="radialBar"){d.globals.resized=!0;var u=null,p=null;d.globals.risingSeries=[],d.globals.axisCharts?(u=d.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(s,"']")),p=parseInt(u.getAttribute("data:realIndex"),10)):(u=d.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(s+1,"']")),p=parseInt(u.getAttribute("rel"),10)-1),a?[{cs:d.globals.collapsedSeries,csi:d.globals.collapsedSeriesIndices},{cs:d.globals.ancillaryCollapsedSeries,csi:d.globals.ancillaryCollapsedSeriesIndices}].forEach(function(M){i.riseCollapsedSeries(M.cs,M.csi,p)}):this.hideSeries({seriesEl:u,realIndex:p})}else{var w=d.globals.dom.Paper.select(" .apexcharts-series[rel='".concat(s+1,"'] path")),f=d.config.chart.type;if(f==="pie"||f==="polarArea"||f==="donut"){var b=d.config.plotOptions.pie.donut.labels;new _(this.lgCtx.ctx).pathMouseDown(w.members[0],null),this.lgCtx.ctx.pie.printDataLabelsInner(w.members[0].node,b)}w.fire("click")}}},{key:"hideSeries",value:function(s){var a=s.seriesEl,i=s.realIndex,d=this.w,u=H.clone(d.config.series);if(d.globals.axisCharts){var p=!1;if(d.config.yaxis[i]&&d.config.yaxis[i].show&&d.config.yaxis[i].showAlways&&(p=!0,d.globals.ancillaryCollapsedSeriesIndices.indexOf(i)<0&&(d.globals.ancillaryCollapsedSeries.push({index:i,data:u[i].data.slice(),type:a.parentNode.className.baseVal.split("-")[1]}),d.globals.ancillaryCollapsedSeriesIndices.push(i))),!p){d.globals.collapsedSeries.push({index:i,data:u[i].data.slice(),type:a.parentNode.className.baseVal.split("-")[1]}),d.globals.collapsedSeriesIndices.push(i);var w=d.globals.risingSeries.indexOf(i);d.globals.risingSeries.splice(w,1)}}else d.globals.collapsedSeries.push({index:i,data:u[i]}),d.globals.collapsedSeriesIndices.push(i);for(var f=a.childNodes,b=0;b0){for(var p=0;p-1&&(s[d].data=[])}):s.forEach(function(i,d){a.globals.collapsedSeriesIndices.indexOf(d)>-1&&(s[d]=0)}),s}}]),T}(),ge=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.onLegendClick=this.onLegendClick.bind(this),this.onLegendHovered=this.onLegendHovered.bind(this),this.isBarsDistributed=this.w.config.chart.type==="bar"&&this.w.config.plotOptions.bar.distributed&&this.w.config.series.length===1,this.legendHelpers=new be(this)}return k(T,[{key:"init",value:function(){var s=this.w,a=s.globals,i=s.config;if((i.legend.showForSingleSeries&&a.series.length===1||this.isBarsDistributed||a.series.length>1||!a.axisCharts)&&i.legend.show){for(;a.dom.elLegendWrap.firstChild;)a.dom.elLegendWrap.removeChild(a.dom.elLegendWrap.firstChild);this.drawLegends(),H.isIE11()?document.getElementsByTagName("head")[0].appendChild(this.legendHelpers.getLegendStyles()):this.legendHelpers.appendToForeignObject(),i.legend.position==="bottom"||i.legend.position==="top"?this.legendAlignHorizontal():i.legend.position!=="right"&&i.legend.position!=="left"||this.legendAlignVertical()}}},{key:"drawLegends",value:function(){var s=this,a=this.w,i=a.config.legend.fontFamily,d=a.globals.seriesNames,u=a.globals.colors.slice();if(a.config.chart.type==="heatmap"){var p=a.config.plotOptions.heatmap.colorScale.ranges;d=p.map(function(Mt){return Mt.name?Mt.name:Mt.from+" - "+Mt.to}),u=p.map(function(Mt){return Mt.color})}else this.isBarsDistributed&&(d=a.globals.labels.slice());a.config.legend.customLegendItems.length&&(d=a.config.legend.customLegendItems);for(var w=a.globals.legendFormatter,f=a.config.legend.inverseOrder,b=f?d.length-1:0;f?b>=0:b<=d.length-1;f?b--:b++){var M,z=w(d[b],{seriesIndex:b,w:a}),y=!1,A=!1;if(a.globals.collapsedSeries.length>0)for(var N=0;N0)for(var L=0;L0?b-10:0)+(M>0?M-10:0)}d.style.position="absolute",p=p+s+i.config.legend.offsetX,w=w+a+i.config.legend.offsetY,d.style.left=p+"px",d.style.top=w+"px",i.config.legend.position==="bottom"?(d.style.top="auto",d.style.bottom=5-i.config.legend.offsetY+"px"):i.config.legend.position==="right"&&(d.style.left="auto",d.style.right=25+i.config.legend.offsetX+"px"),["width","height"].forEach(function(z){d.style[z]&&(d.style[z]=parseInt(i.config.legend[z],10)+"px")})}},{key:"legendAlignHorizontal",value:function(){var s=this.w;s.globals.dom.elLegendWrap.style.right=0;var a=this.legendHelpers.getLegendBBox(),i=new ae(this.ctx),d=i.dimHelpers.getTitleSubtitleCoords("title"),u=i.dimHelpers.getTitleSubtitleCoords("subtitle"),p=0;s.config.legend.position==="bottom"?p=-a.clwh/1.8:s.config.legend.position==="top"&&(p=d.height+u.height+s.config.title.margin+s.config.subtitle.margin-10),this.setLegendWrapXY(20,p)}},{key:"legendAlignVertical",value:function(){var s=this.w,a=this.legendHelpers.getLegendBBox(),i=0;s.config.legend.position==="left"&&(i=20),s.config.legend.position==="right"&&(i=s.globals.svgWidth-a.clww-10),this.setLegendWrapXY(i,20)}},{key:"onLegendHovered",value:function(s){var a=this.w,i=s.target.classList.contains("apexcharts-legend-text")||s.target.classList.contains("apexcharts-legend-marker");if(a.config.chart.type==="heatmap"||this.isBarsDistributed){if(i){var d=parseInt(s.target.getAttribute("rel"),10)-1;this.ctx.events.fireEvent("legendHover",[this.ctx,d,this.w]),new ut(this.ctx).highlightRangeInSeries(s,s.target)}}else!s.target.classList.contains("apexcharts-inactive-legend")&&i&&new ut(this.ctx).toggleSeriesOnHover(s,s.target)}},{key:"onLegendClick",value:function(s){var a=this.w;if(!a.config.legend.customLegendItems.length&&(s.target.classList.contains("apexcharts-legend-text")||s.target.classList.contains("apexcharts-legend-marker"))){var i=parseInt(s.target.getAttribute("rel"),10)-1,d=s.target.getAttribute("data:collapsed")==="true",u=this.w.config.chart.events.legendClick;typeof u=="function"&&u(this.ctx,i,this.w),this.ctx.events.fireEvent("legendClick",[this.ctx,i,this.w]);var p=this.w.config.legend.markers.onClick;typeof p=="function"&&s.target.classList.contains("apexcharts-legend-marker")&&(p(this.ctx,i,this.w),this.ctx.events.fireEvent("legendMarkerClick",[this.ctx,i,this.w])),a.config.chart.type!=="treemap"&&a.config.chart.type!=="heatmap"&&!this.isBarsDistributed&&a.config.legend.onItemClick.toggleDataSeries&&this.legendHelpers.toggleDataSeries(i,d)}}}]),T}(),Ae=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w;var a=this.w;this.ev=this.w.config.chart.events,this.selectedClass="apexcharts-selected",this.localeValues=this.w.globals.locale.toolbar,this.minX=a.globals.minX,this.maxX=a.globals.maxX}return k(T,[{key:"createToolbar",value:function(){var s=this,a=this.w,i=function(){return document.createElement("div")},d=i();if(d.setAttribute("class","apexcharts-toolbar"),d.style.top=a.config.chart.toolbar.offsetY+"px",d.style.right=3-a.config.chart.toolbar.offsetX+"px",a.globals.dom.elWrap.appendChild(d),this.elZoom=i(),this.elZoomIn=i(),this.elZoomOut=i(),this.elPan=i(),this.elSelection=i(),this.elZoomReset=i(),this.elMenuIcon=i(),this.elMenu=i(),this.elCustomIcons=[],this.t=a.config.chart.toolbar.tools,Array.isArray(this.t.customIcons))for(var u=0;u - - - -`),w("zoomOut",this.elZoomOut,` - - - -`);var f=function(z){s.t[z]&&a.config.chart[z].enabled&&p.push({el:z==="zoom"?s.elZoom:s.elSelection,icon:typeof s.t[z]=="string"?s.t[z]:z==="zoom"?` - - - -`:` - - -`,title:s.localeValues[z==="zoom"?"selectionZoom":"selection"],class:a.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-".concat(z,"-icon")})};f("zoom"),f("selection"),this.t.pan&&a.config.chart.zoom.enabled&&p.push({el:this.elPan,icon:typeof this.t.pan=="string"?this.t.pan:` - - - - - - - -`,title:this.localeValues.pan,class:a.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-pan-icon"}),w("reset",this.elZoomReset,` - - -`),this.t.download&&p.push({el:this.elMenuIcon,icon:typeof this.t.download=="string"?this.t.download:'',title:this.localeValues.menu,class:"apexcharts-menu-icon"});for(var b=0;b0&&d.height>0&&this.slDraggableRect.selectize({points:"l, r",pointSize:8,pointType:"rect"}).resize({constraint:{minX:0,minY:0,maxX:i.globals.gridWidth,maxY:i.globals.gridHeight}}).on("resizing",this.selectionDragging.bind(this,"resizing"))}}},{key:"preselectedSelection",value:function(){var i=this.w,d=this.xyRatios;if(!i.globals.zoomEnabled){if(i.globals.selection!==void 0&&i.globals.selection!==null)this.drawSelectionRect(i.globals.selection);else if(i.config.chart.selection.xaxis.min!==void 0&&i.config.chart.selection.xaxis.max!==void 0){var u=(i.config.chart.selection.xaxis.min-i.globals.minX)/d.xRatio,p={x:u,y:0,width:i.globals.gridWidth-(i.globals.maxX-i.config.chart.selection.xaxis.max)/d.xRatio-u,height:i.globals.gridHeight,translateX:0,translateY:0,selectionEnabled:!0};this.drawSelectionRect(p),this.makeSelectionRectDraggable(),typeof i.config.chart.events.selection=="function"&&i.config.chart.events.selection(this.ctx,{xaxis:{min:i.config.chart.selection.xaxis.min,max:i.config.chart.selection.xaxis.max},yaxis:{}})}}}},{key:"drawSelectionRect",value:function(i){var d=i.x,u=i.y,p=i.width,w=i.height,f=i.translateX,b=f===void 0?0:f,M=i.translateY,z=M===void 0?0:M,y=this.w,A=this.zoomRect,N=this.selectionRect;if(this.dragged||y.globals.selection!==null){var L={transform:"translate("+b+", "+z+")"};y.globals.zoomEnabled&&this.dragged&&(p<0&&(p=1),A.attr({x:d,y:u,width:p,height:w,fill:y.config.chart.zoom.zoomedArea.fill.color,"fill-opacity":y.config.chart.zoom.zoomedArea.fill.opacity,stroke:y.config.chart.zoom.zoomedArea.stroke.color,"stroke-width":y.config.chart.zoom.zoomedArea.stroke.width,"stroke-opacity":y.config.chart.zoom.zoomedArea.stroke.opacity}),_.setAttrs(A.node,L)),y.globals.selectionEnabled&&(N.attr({x:d,y:u,width:p>0?p:0,height:w>0?w:0,fill:y.config.chart.selection.fill.color,"fill-opacity":y.config.chart.selection.fill.opacity,stroke:y.config.chart.selection.stroke.color,"stroke-width":y.config.chart.selection.stroke.width,"stroke-dasharray":y.config.chart.selection.stroke.dashArray,"stroke-opacity":y.config.chart.selection.stroke.opacity}),_.setAttrs(N.node,L))}}},{key:"hideSelectionRect",value:function(i){i&&i.attr({x:0,y:0,width:0,height:0})}},{key:"selectionDrawing",value:function(i){var d=i.context,u=i.zoomtype,p=this.w,w=d,f=this.gridRect.getBoundingClientRect(),b=w.startX-1,M=w.startY,z=!1,y=!1,A=w.clientX-f.left-b,N=w.clientY-f.top-M,L={};return Math.abs(A+b)>p.globals.gridWidth?A=p.globals.gridWidth-b:w.clientX-f.left<0&&(A=b),b>w.clientX-f.left&&(z=!0,A=Math.abs(A)),M>w.clientY-f.top&&(y=!0,N=Math.abs(N)),L=u==="x"?{x:z?b-A:b,y:0,width:A,height:p.globals.gridHeight}:u==="y"?{x:0,y:y?M-N:M,width:p.globals.gridWidth,height:N}:{x:z?b-A:b,y:y?M-N:M,width:A,height:N},w.drawSelectionRect(L),w.selectionDragging("resizing"),L}},{key:"selectionDragging",value:function(i,d){var u=this,p=this.w,w=this.xyRatios,f=this.selectionRect,b=0;i==="resizing"&&(b=30);var M=function(y){return parseFloat(f.node.getAttribute(y))},z={x:M("x"),y:M("y"),width:M("width"),height:M("height")};p.globals.selection=z,typeof p.config.chart.events.selection=="function"&&p.globals.selectionEnabled&&(clearTimeout(this.w.globals.selectionResizeTimer),this.w.globals.selectionResizeTimer=window.setTimeout(function(){var y=u.gridRect.getBoundingClientRect(),A=f.node.getBoundingClientRect(),N={xaxis:{min:p.globals.xAxisScale.niceMin+(A.left-y.left)*w.xRatio,max:p.globals.xAxisScale.niceMin+(A.right-y.left)*w.xRatio},yaxis:{min:p.globals.yAxisScale[0].niceMin+(y.bottom-A.bottom)*w.yRatio[0],max:p.globals.yAxisScale[0].niceMax-(A.top-y.top)*w.yRatio[0]}};p.config.chart.events.selection(u.ctx,N),p.config.chart.brush.enabled&&p.config.chart.events.brushScrolled!==void 0&&p.config.chart.events.brushScrolled(u.ctx,N)},b))}},{key:"selectionDrawn",value:function(i){var d=i.context,u=i.zoomtype,p=this.w,w=d,f=this.xyRatios,b=this.ctx.toolbar;if(w.startX>w.endX){var M=w.startX;w.startX=w.endX,w.endX=M}if(w.startY>w.endY){var z=w.startY;w.startY=w.endY,w.endY=z}var y=void 0,A=void 0;p.globals.isRangeBar?(y=p.globals.yAxisScale[0].niceMin+w.startX*f.invertedYRatio,A=p.globals.yAxisScale[0].niceMin+w.endX*f.invertedYRatio):(y=p.globals.xAxisScale.niceMin+w.startX*f.xRatio,A=p.globals.xAxisScale.niceMin+w.endX*f.xRatio);var N=[],L=[];if(p.config.yaxis.forEach(function(K,Q){N.push(p.globals.yAxisScale[Q].niceMax-f.yRatio[Q]*w.startY),L.push(p.globals.yAxisScale[Q].niceMax-f.yRatio[Q]*w.endY)}),w.dragged&&(w.dragX>10||w.dragY>10)&&y!==A){if(p.globals.zoomEnabled){var O=H.clone(p.globals.initialConfig.yaxis),V=H.clone(p.globals.initialConfig.xaxis);if(p.globals.zoomed=!0,p.config.xaxis.convertedCatToNumeric&&(y=Math.floor(y),A=Math.floor(A),y<1&&(y=1,A=p.globals.dataPoints),A-y<2&&(A=y+1)),u!=="xy"&&u!=="x"||(V={min:y,max:A}),u!=="xy"&&u!=="y"||O.forEach(function(K,Q){O[Q].min=L[Q],O[Q].max=N[Q]}),p.config.chart.zoom.autoScaleYaxis){var Z=new J(w.ctx);O=Z.autoScaleY(w.ctx,O,{xaxis:V})}if(b){var m=b.getBeforeZoomRange(V,O);m&&(V=m.xaxis?m.xaxis:V,O=m.yaxis?m.yaxis:O)}var C={xaxis:V};p.config.chart.group||(C.yaxis=O),w.ctx.updateHelpers._updateOptions(C,!1,w.w.config.chart.animations.dynamicAnimation.enabled),typeof p.config.chart.events.zoomed=="function"&&b.zoomCallback(V,O)}else if(p.globals.selectionEnabled){var j,E=null;j={min:y,max:A},u!=="xy"&&u!=="y"||(E=H.clone(p.config.yaxis)).forEach(function(K,Q){E[Q].min=L[Q],E[Q].max=N[Q]}),p.globals.selection=w.selection,typeof p.config.chart.events.selection=="function"&&p.config.chart.events.selection(w.ctx,{xaxis:j,yaxis:E})}}}},{key:"panDragging",value:function(i){var d=i.context,u=this.w,p=d;if(u.globals.lastClientPosition.x!==void 0){var w=u.globals.lastClientPosition.x-p.clientX,f=u.globals.lastClientPosition.y-p.clientY;Math.abs(w)>Math.abs(f)&&w>0?this.moveDirection="left":Math.abs(w)>Math.abs(f)&&w<0?this.moveDirection="right":Math.abs(f)>Math.abs(w)&&f>0?this.moveDirection="up":Math.abs(f)>Math.abs(w)&&f<0&&(this.moveDirection="down")}u.globals.lastClientPosition={x:p.clientX,y:p.clientY};var b=u.globals.isRangeBar?u.globals.minY:u.globals.minX,M=u.globals.isRangeBar?u.globals.maxY:u.globals.maxX;u.config.xaxis.convertedCatToNumeric||p.panScrolled(b,M)}},{key:"delayedPanScrolled",value:function(){var i=this.w,d=i.globals.minX,u=i.globals.maxX,p=(i.globals.maxX-i.globals.minX)/2;this.moveDirection==="left"?(d=i.globals.minX+p,u=i.globals.maxX+p):this.moveDirection==="right"&&(d=i.globals.minX-p,u=i.globals.maxX-p),d=Math.floor(d),u=Math.floor(u),this.updateScrolledChart({xaxis:{min:d,max:u}},d,u)}},{key:"panScrolled",value:function(i,d){var u=this.w,p=this.xyRatios,w=H.clone(u.globals.initialConfig.yaxis),f=p.xRatio,b=u.globals.minX,M=u.globals.maxX;u.globals.isRangeBar&&(f=p.invertedYRatio,b=u.globals.minY,M=u.globals.maxY),this.moveDirection==="left"?(i=b+u.globals.gridWidth/15*f,d=M+u.globals.gridWidth/15*f):this.moveDirection==="right"&&(i=b-u.globals.gridWidth/15*f,d=M-u.globals.gridWidth/15*f),u.globals.isRangeBar||(iu.globals.initialMaxX)&&(i=b,d=M);var z={min:i,max:d};u.config.chart.zoom.autoScaleYaxis&&(w=new J(this.ctx).autoScaleY(this.ctx,w,{xaxis:z}));var y={xaxis:{min:i,max:d}};u.config.chart.group||(y.yaxis=w),this.updateScrolledChart(y,i,d)}},{key:"updateScrolledChart",value:function(i,d,u){var p=this.w;this.ctx.updateHelpers._updateOptions(i,!1,!1),typeof p.config.chart.events.scrolled=="function"&&p.config.chart.events.scrolled(this.ctx,{xaxis:{min:d,max:u}})}}]),a}(),hl=function(){function T(s){g(this,T),this.w=s.w,this.ttCtx=s,this.ctx=s.ctx}return k(T,[{key:"getNearestValues",value:function(s){var a=s.hoverArea,i=s.elGrid,d=s.clientX,u=s.clientY,p=this.w,w=i.getBoundingClientRect(),f=w.width,b=w.height,M=f/(p.globals.dataPoints-1),z=b/p.globals.dataPoints,y=this.hasBars();!p.globals.comboCharts&&!y||p.config.xaxis.convertedCatToNumeric||(M=f/p.globals.dataPoints);var A=d-w.left-p.globals.barPadForNumericAxis,N=u-w.top;A<0||N<0||A>f||N>b?(a.classList.remove("hovering-zoom"),a.classList.remove("hovering-pan")):p.globals.zoomEnabled?(a.classList.remove("hovering-pan"),a.classList.add("hovering-zoom")):p.globals.panEnabled&&(a.classList.remove("hovering-zoom"),a.classList.add("hovering-pan"));var L=Math.round(A/M),O=Math.floor(N/z);y&&!p.config.xaxis.convertedCatToNumeric&&(L=Math.ceil(A/M),L-=1);var V=null,Z=null,m=[],C=[];if(p.globals.seriesXvalues.forEach(function(Q){m.push([Q[0]+1e-6].concat(Q))}),p.globals.seriesYvalues.forEach(function(Q){C.push([Q[0]+1e-6].concat(Q))}),m=m.map(function(Q){return Q.filter(function(ot){return H.isNumber(ot)})}),C=C.map(function(Q){return Q.filter(function(ot){return H.isNumber(ot)})}),p.globals.isXNumeric){var j=this.ttCtx.getElGrid().getBoundingClientRect(),E=A*(j.width/f),K=N*(j.height/b);V=(Z=this.closestInMultiArray(E,K,m,C)).index,L=Z.j,V!==null&&(m=p.globals.seriesXvalues[V],L=(Z=this.closestInArray(E,m)).index)}return p.globals.capturedSeriesIndex=V===null?-1:V,(!L||L<1)&&(L=0),p.globals.isBarHorizontal?p.globals.capturedDataPointIndex=O:p.globals.capturedDataPointIndex=L,{capturedSeries:V,j:p.globals.isBarHorizontal?O:L,hoverX:A,hoverY:N}}},{key:"closestInMultiArray",value:function(s,a,i,d){var u=this.w,p=0,w=null,f=-1;u.globals.series.length>1?p=this.getFirstActiveXArray(i):w=0;var b=i[p][0],M=Math.abs(s-b);if(i.forEach(function(A){A.forEach(function(N,L){var O=Math.abs(s-N);O0?w:-1}),u=0;u0)for(var d=0;d *")):this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers-wrap > *")}},{key:"getAllMarkers",value:function(){var s=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers-wrap");(s=F(s)).sort(function(i,d){var u=Number(i.getAttribute("data:realIndex")),p=Number(d.getAttribute("data:realIndex"));return pu?-1:0});var a=[];return s.forEach(function(i){a.push(i.querySelector(".apexcharts-marker"))}),a}},{key:"hasMarkers",value:function(s){return this.getElMarkers(s).length>0}},{key:"getElBars",value:function(){return this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-bar-series, .apexcharts-candlestick-series, .apexcharts-boxPlot-series, .apexcharts-rangebar-series")}},{key:"hasBars",value:function(){return this.getElBars().length>0}},{key:"getHoverMarkerSize",value:function(s){var a=this.w,i=a.config.markers.hover.size;return i===void 0&&(i=a.globals.markers.size[s]+a.config.markers.hover.sizeOffset),i}},{key:"toggleAllTooltipSeriesGroups",value:function(s){var a=this.w,i=this.ttCtx;i.allTooltipSeriesGroups.length===0&&(i.allTooltipSeriesGroups=a.globals.dom.baseEl.querySelectorAll(".apexcharts-tooltip-series-group"));for(var d=i.allTooltipSeriesGroups,u=0;u ').concat(Q.attrs.name,""),K+="
".concat(Q.val,"
")}),m.innerHTML=E+"",C.innerHTML=K+""};w?b.globals.seriesGoals[a][i]&&Array.isArray(b.globals.seriesGoals[a][i])?j():(m.innerHTML="",C.innerHTML=""):j()}else m.innerHTML="",C.innerHTML="";L!==null&&(d[a].querySelector(".apexcharts-tooltip-text-z-label").innerHTML=b.config.tooltip.z.title,d[a].querySelector(".apexcharts-tooltip-text-z-value").innerHTML=L!==void 0?L:""),w&&O[0]&&(z==null||b.globals.ancillaryCollapsedSeriesIndices.indexOf(a)>-1||b.globals.collapsedSeriesIndices.indexOf(a)>-1?O[0].parentNode.style.display="none":O[0].parentNode.style.display=b.config.tooltip.items.display)}},{key:"toggleActiveInactiveSeries",value:function(s){var a=this.w;if(s)this.tooltipUtil.toggleAllTooltipSeriesGroups("enable");else{this.tooltipUtil.toggleAllTooltipSeriesGroups("disable");var i=a.globals.dom.baseEl.querySelector(".apexcharts-tooltip-series-group");i&&(i.classList.add("apexcharts-active"),i.style.display=a.config.tooltip.items.display)}}},{key:"getValuesToPrint",value:function(s){var a=s.i,i=s.j,d=this.w,u=this.ctx.series.filteredSeriesX(),p="",w="",f=null,b=null,M={series:d.globals.series,seriesIndex:a,dataPointIndex:i,w:d},z=d.globals.ttZFormatter;i===null?b=d.globals.series[a]:d.globals.isXNumeric&&d.config.chart.type!=="treemap"?(p=u[a][i],u[a].length===0&&(p=u[this.tooltipUtil.getFirstActiveXArray(u)][i])):p=d.globals.labels[i]!==void 0?d.globals.labels[i]:"";var y=p;return d.globals.isXNumeric&&d.config.xaxis.type==="datetime"?p=new Ct(this.ctx).xLabelFormat(d.globals.ttKeyFormatter,y,y,{i:void 0,dateFormatter:new dt(this.ctx).formatDate,w:this.w}):p=d.globals.isBarHorizontal?d.globals.yLabelFormatters[0](y,M):d.globals.xLabelFormatter(y,M),d.config.tooltip.x.formatter!==void 0&&(p=d.globals.ttKeyFormatter(y,M)),d.globals.seriesZ.length>0&&d.globals.seriesZ[a].length>0&&(f=z(d.globals.seriesZ[a][i],d)),w=typeof d.config.xaxis.tooltip.formatter=="function"?d.globals.xaxisTooltipFormatter(y,M):p,{val:Array.isArray(b)?b.join(" "):b,xVal:Array.isArray(p)?p.join(" "):p,xAxisTTVal:Array.isArray(w)?w.join(" "):w,zVal:f}}},{key:"handleCustomTooltip",value:function(s){var a=s.i,i=s.j,d=s.y1,u=s.y2,p=s.w,w=this.ttCtx.getElTooltip(),f=p.config.tooltip.custom;Array.isArray(f)&&f[a]&&(f=f[a]),w.innerHTML=f({ctx:this.ctx,series:p.globals.series,seriesIndex:a,dataPointIndex:i,y1:d,y2:u,w:p})}}]),T}(),Bl=function(){function T(s){g(this,T),this.ttCtx=s,this.ctx=s.ctx,this.w=s.w}return k(T,[{key:"moveXCrosshairs",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,i=this.ttCtx,d=this.w,u=i.getElXCrosshairs(),p=s-i.xcrosshairsWidth/2,w=d.globals.labels.slice().length;if(a!==null&&(p=d.globals.gridWidth/w*a),u===null||d.globals.isBarHorizontal||(u.setAttribute("x",p),u.setAttribute("x1",p),u.setAttribute("x2",p),u.setAttribute("y2",d.globals.gridHeight),u.classList.add("apexcharts-active")),p<0&&(p=0),p>d.globals.gridWidth&&(p=d.globals.gridWidth),i.isXAxisTooltipEnabled){var f=p;d.config.xaxis.crosshairs.width!=="tickWidth"&&d.config.xaxis.crosshairs.width!=="barWidth"||(f=p+i.xcrosshairsWidth/2),this.moveXAxisTooltip(f)}}},{key:"moveYCrosshairs",value:function(s){var a=this.ttCtx;a.ycrosshairs!==null&&_.setAttrs(a.ycrosshairs,{y1:s,y2:s}),a.ycrosshairsHidden!==null&&_.setAttrs(a.ycrosshairsHidden,{y1:s,y2:s})}},{key:"moveXAxisTooltip",value:function(s){var a=this.w,i=this.ttCtx;if(i.xaxisTooltip!==null&&i.xcrosshairsWidth!==0){i.xaxisTooltip.classList.add("apexcharts-active");var d=i.xaxisOffY+a.config.xaxis.tooltip.offsetY+a.globals.translateY+1+a.config.xaxis.offsetY;if(s-=i.xaxisTooltip.getBoundingClientRect().width/2,!isNaN(s)){s+=a.globals.translateX;var u;u=new _(this.ctx).getTextRects(i.xaxisTooltipText.innerHTML),i.xaxisTooltipText.style.minWidth=u.width+"px",i.xaxisTooltip.style.left=s+"px",i.xaxisTooltip.style.top=d+"px"}}}},{key:"moveYAxisTooltip",value:function(s){var a=this.w,i=this.ttCtx;i.yaxisTTEls===null&&(i.yaxisTTEls=a.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxistooltip"));var d=parseInt(i.ycrosshairsHidden.getAttribute("y1"),10),u=a.globals.translateY+d,p=i.yaxisTTEls[s].getBoundingClientRect().height,w=a.globals.translateYAxisX[s]-2;a.config.yaxis[s].opposite&&(w-=26),u-=p/2,a.globals.ignoreYAxisIndexes.indexOf(s)===-1?(i.yaxisTTEls[s].classList.add("apexcharts-active"),i.yaxisTTEls[s].style.top=u+"px",i.yaxisTTEls[s].style.left=w+a.config.yaxis[s].tooltip.offsetX+"px"):i.yaxisTTEls[s].classList.remove("apexcharts-active")}},{key:"moveTooltip",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,d=this.w,u=this.ttCtx,p=u.getElTooltip(),w=u.tooltipRect,f=i!==null?parseFloat(i):1,b=parseFloat(s)+f+5,M=parseFloat(a)+f/2;if(b>d.globals.gridWidth/2&&(b=b-w.ttWidth-f-10),b>d.globals.gridWidth-w.ttWidth-10&&(b=d.globals.gridWidth-w.ttWidth),b<-20&&(b=-20),d.config.tooltip.followCursor){var z=u.getElGrid().getBoundingClientRect();(b=u.e.clientX-z.left)>d.globals.gridWidth/2&&(b-=u.tooltipRect.ttWidth),(M=u.e.clientY+d.globals.translateY-z.top)>d.globals.gridHeight/2&&(M-=u.tooltipRect.ttHeight)}else d.globals.isBarHorizontal||w.ttHeight/2+M>d.globals.gridHeight&&(M=d.globals.gridHeight-w.ttHeight+d.globals.translateY);isNaN(b)||(b+=d.globals.translateX,p.style.left=b+"px",p.style.top=M+"px")}},{key:"moveMarkers",value:function(s,a){var i=this.w,d=this.ttCtx;if(i.globals.markers.size[s]>0)for(var u=i.globals.dom.baseEl.querySelectorAll(" .apexcharts-series[data\\:realIndex='".concat(s,"'] .apexcharts-marker")),p=0;p0&&(M.setAttribute("r",f),M.setAttribute("cx",i),M.setAttribute("cy",d)),this.moveXCrosshairs(i),p.fixedTooltip||this.moveTooltip(i,d,f)}}},{key:"moveDynamicPointsOnHover",value:function(s){var a,i=this.ttCtx,d=i.w,u=0,p=0,w=d.globals.pointsArray;a=new ut(this.ctx).getActiveConfigSeriesIndex("asc",["line","area","scatter","bubble"]);var f=i.tooltipUtil.getHoverMarkerSize(a);w[a]&&(u=w[a][s][0],p=w[a][s][1]);var b=i.tooltipUtil.getAllMarkers();if(b!==null)for(var M=0;M0?(b[M]&&b[M].setAttribute("r",f),b[M]&&b[M].setAttribute("cy",y)):b[M]&&b[M].setAttribute("r",0)}}this.moveXCrosshairs(u),i.fixedTooltip||this.moveTooltip(u,p||d.globals.gridHeight,f)}},{key:"moveStickyTooltipOverBars",value:function(s,a){var i=this.w,d=this.ttCtx,u=i.globals.columnSeries?i.globals.columnSeries.length:i.globals.series.length,p=u>=2&&u%2==0?Math.floor(u/2):Math.floor(u/2)+1;i.globals.isBarHorizontal&&(p=new ut(this.ctx).getActiveConfigSeriesIndex("desc")+1);var w=i.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[rel='".concat(p,"'] path[j='").concat(s,"'], .apexcharts-candlestick-series .apexcharts-series[rel='").concat(p,"'] path[j='").concat(s,"'], .apexcharts-boxPlot-series .apexcharts-series[rel='").concat(p,"'] path[j='").concat(s,"'], .apexcharts-rangebar-series .apexcharts-series[rel='").concat(p,"'] path[j='").concat(s,"']"));w||typeof a!="number"||(w=i.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[data\\:realIndex='".concat(a,"'] path[j='").concat(s,`'], - .apexcharts-candlestick-series .apexcharts-series[data\\:realIndex='`).concat(a,"'] path[j='").concat(s,`'], - .apexcharts-boxPlot-series .apexcharts-series[data\\:realIndex='`).concat(a,"'] path[j='").concat(s,`'], - .apexcharts-rangebar-series .apexcharts-series[data\\:realIndex='`).concat(a,"'] path[j='").concat(s,"']")));var f=w?parseFloat(w.getAttribute("cx")):0,b=w?parseFloat(w.getAttribute("cy")):0,M=w?parseFloat(w.getAttribute("barWidth")):0,z=d.getElGrid().getBoundingClientRect(),y=w&&(w.classList.contains("apexcharts-candlestick-area")||w.classList.contains("apexcharts-boxPlot-area"));i.globals.isXNumeric?(w&&!y&&(f-=u%2!=0?M/2:0),w&&y&&i.globals.comboCharts&&(f-=M/2)):i.globals.isBarHorizontal||(f=d.xAxisTicksPositions[s-1]+d.dataPointsDividedWidth/2,isNaN(f)&&(f=d.xAxisTicksPositions[s]-d.dataPointsDividedWidth/2)),i.globals.isBarHorizontal?b-=d.tooltipRect.ttHeight:i.config.tooltip.followCursor?b=d.e.clientY-z.top-d.tooltipRect.ttHeight/2:b+d.tooltipRect.ttHeight+15>i.globals.gridHeight&&(b=i.globals.gridHeight),i.globals.isBarHorizontal||this.moveXCrosshairs(f),d.fixedTooltip||this.moveTooltip(f,b||i.globals.gridHeight)}}]),T}(),Ls=function(){function T(s){g(this,T),this.w=s.w,this.ttCtx=s,this.ctx=s.ctx,this.tooltipPosition=new Bl(s)}return k(T,[{key:"drawDynamicPoints",value:function(){var s=this.w,a=new _(this.ctx),i=new Qt(this.ctx),d=s.globals.dom.baseEl.querySelectorAll(".apexcharts-series");d=F(d),s.config.chart.stacked&&d.sort(function(z,y){return parseFloat(z.getAttribute("data:realIndex"))-parseFloat(y.getAttribute("data:realIndex"))});for(var u=0;u2&&arguments[2]!==void 0?arguments[2]:null,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:null,u=this.w;u.config.chart.type!=="bubble"&&this.newPointSize(s,a);var p=a.getAttribute("cx"),w=a.getAttribute("cy");if(i!==null&&d!==null&&(p=i,w=d),this.tooltipPosition.moveXCrosshairs(p),!this.fixedTooltip){if(u.config.chart.type==="radar"){var f=this.ttCtx.getElGrid().getBoundingClientRect();p=this.ttCtx.e.clientX-f.left}this.tooltipPosition.moveTooltip(p,w,u.config.markers.hover.size)}}},{key:"enlargePoints",value:function(s){for(var a=this.w,i=this,d=this.ttCtx,u=s,p=a.globals.dom.baseEl.querySelectorAll(".apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker"),w=a.config.markers.hover.size,f=0;f=0?s[a].setAttribute("r",i):s[a].setAttribute("r",0)}}}]),T}(),cn=function(){function T(s){g(this,T),this.w=s.w;var a=this.w;this.ttCtx=s,this.isVerticalGroupedRangeBar=!a.globals.isBarHorizontal&&a.config.chart.type==="rangeBar"&&a.config.plotOptions.bar.rangeBarGroupRows}return k(T,[{key:"getAttr",value:function(s,a){return parseFloat(s.target.getAttribute(a))}},{key:"handleHeatTreeTooltip",value:function(s){var a=s.e,i=s.opt,d=s.x,u=s.y,p=s.type,w=this.ttCtx,f=this.w;if(a.target.classList.contains("apexcharts-".concat(p,"-rect"))){var b=this.getAttr(a,"i"),M=this.getAttr(a,"j"),z=this.getAttr(a,"cx"),y=this.getAttr(a,"cy"),A=this.getAttr(a,"width"),N=this.getAttr(a,"height");if(w.tooltipLabels.drawSeriesTexts({ttItems:i.ttItems,i:b,j:M,shared:!1,e:a}),f.globals.capturedSeriesIndex=b,f.globals.capturedDataPointIndex=M,d=z+w.tooltipRect.ttWidth/2+A,u=y+w.tooltipRect.ttHeight/2-N/2,w.tooltipPosition.moveXCrosshairs(z+A/2),d>f.globals.gridWidth/2&&(d=z-w.tooltipRect.ttWidth/2+A),w.w.config.tooltip.followCursor){var L=f.globals.dom.elWrap.getBoundingClientRect();d=f.globals.clientX-L.left-(d>f.globals.gridWidth/2?w.tooltipRect.ttWidth:0),u=f.globals.clientY-L.top-(u>f.globals.gridHeight/2?w.tooltipRect.ttHeight:0)}}return{x:d,y:u}}},{key:"handleMarkerTooltip",value:function(s){var a,i,d=s.e,u=s.opt,p=s.x,w=s.y,f=this.w,b=this.ttCtx;if(d.target.classList.contains("apexcharts-marker")){var M=parseInt(u.paths.getAttribute("cx"),10),z=parseInt(u.paths.getAttribute("cy"),10),y=parseFloat(u.paths.getAttribute("val"));if(i=parseInt(u.paths.getAttribute("rel"),10),a=parseInt(u.paths.parentNode.parentNode.parentNode.getAttribute("rel"),10)-1,b.intersect){var A=H.findAncestor(u.paths,"apexcharts-series");A&&(a=parseInt(A.getAttribute("data:realIndex"),10))}if(b.tooltipLabels.drawSeriesTexts({ttItems:u.ttItems,i:a,j:i,shared:!b.showOnIntersect&&f.config.tooltip.shared,e:d}),d.type==="mouseup"&&b.markerClick(d,a,i),f.globals.capturedSeriesIndex=a,f.globals.capturedDataPointIndex=i,p=M,w=z+f.globals.translateY-1.4*b.tooltipRect.ttHeight,b.w.config.tooltip.followCursor){var N=b.getElGrid().getBoundingClientRect();w=b.e.clientY+f.globals.translateY-N.top}y<0&&(w=z),b.marker.enlargeCurrentPoint(i,u.paths,p,w)}return{x:p,y:w}}},{key:"handleBarTooltip",value:function(s){var a,i,d=s.e,u=s.opt,p=this.w,w=this.ttCtx,f=w.getElTooltip(),b=0,M=0,z=0,y=this.getBarTooltipXY({e:d,opt:u});a=y.i;var A=y.barHeight,N=y.j;p.globals.capturedSeriesIndex=a,p.globals.capturedDataPointIndex=N,p.globals.isBarHorizontal&&w.tooltipUtil.hasBars()||!p.config.tooltip.shared?(M=y.x,z=y.y,i=Array.isArray(p.config.stroke.width)?p.config.stroke.width[a]:p.config.stroke.width,b=M):p.globals.comboCharts||p.config.tooltip.shared||(b/=2),isNaN(z)&&(z=p.globals.svgHeight-w.tooltipRect.ttHeight);var L=parseInt(u.paths.parentNode.getAttribute("data:realIndex"),10),O=p.globals.isMultipleYAxis?p.config.yaxis[L]&&p.config.yaxis[L].reversed:p.config.yaxis[0].reversed;if(M+w.tooltipRect.ttWidth>p.globals.gridWidth&&!O?M-=w.tooltipRect.ttWidth:M<0&&(M=0),w.w.config.tooltip.followCursor){var V=w.getElGrid().getBoundingClientRect();z=w.e.clientY-V.top}w.tooltip===null&&(w.tooltip=p.globals.dom.baseEl.querySelector(".apexcharts-tooltip")),p.config.tooltip.shared||(p.globals.comboBarCount>0?w.tooltipPosition.moveXCrosshairs(b+i/2):w.tooltipPosition.moveXCrosshairs(b)),!w.fixedTooltip&&(!p.config.tooltip.shared||p.globals.isBarHorizontal&&w.tooltipUtil.hasBars())&&(O&&(M-=w.tooltipRect.ttWidth)<0&&(M=0),!O||p.globals.isBarHorizontal&&w.tooltipUtil.hasBars()||(z=z+A-2*(p.globals.series[a][N]<0?A:0)),z=z+p.globals.translateY-w.tooltipRect.ttHeight/2,f.style.left=M+p.globals.translateX+"px",f.style.top=z+"px")}},{key:"getBarTooltipXY",value:function(s){var a=this,i=s.e,d=s.opt,u=this.w,p=null,w=this.ttCtx,f=0,b=0,M=0,z=0,y=0,A=i.target.classList;if(A.contains("apexcharts-bar-area")||A.contains("apexcharts-candlestick-area")||A.contains("apexcharts-boxPlot-area")||A.contains("apexcharts-rangebar-area")){var N=i.target,L=N.getBoundingClientRect(),O=d.elGrid.getBoundingClientRect(),V=L.height;y=L.height;var Z=L.width,m=parseInt(N.getAttribute("cx"),10),C=parseInt(N.getAttribute("cy"),10);z=parseFloat(N.getAttribute("barWidth"));var j=i.type==="touchmove"?i.touches[0].clientX:i.clientX;p=parseInt(N.getAttribute("j"),10),f=parseInt(N.parentNode.getAttribute("rel"),10)-1;var E=N.getAttribute("data-range-y1"),K=N.getAttribute("data-range-y2");u.globals.comboCharts&&(f=parseInt(N.parentNode.getAttribute("data:realIndex"),10));var Q=function(it){return u.globals.isXNumeric?m-Z/2:a.isVerticalGroupedRangeBar?m+Z/2:m-w.dataPointsDividedWidth+Z/2},ot=function(){return C-w.dataPointsDividedHeight+V/2-w.tooltipRect.ttHeight/2};w.tooltipLabels.drawSeriesTexts({ttItems:d.ttItems,i:f,j:p,y1:E?parseInt(E,10):null,y2:K?parseInt(K,10):null,shared:!w.showOnIntersect&&u.config.tooltip.shared,e:i}),u.config.tooltip.followCursor?u.globals.isBarHorizontal?(b=j-O.left+15,M=ot()):(b=Q(),M=i.clientY-O.top-w.tooltipRect.ttHeight/2-15):u.globals.isBarHorizontal?((b=m)0&&i.setAttribute("width",a.xcrosshairsWidth)}},{key:"handleYCrosshair",value:function(){var s=this.w,a=this.ttCtx;a.ycrosshairs=s.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs"),a.ycrosshairsHidden=s.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs-hidden")}},{key:"drawYaxisTooltipText",value:function(s,a,i){var d=this.ttCtx,u=this.w,p=u.globals.yLabelFormatters[s];if(d.yaxisTooltips[s]){var w=d.getElGrid().getBoundingClientRect(),f=(a-w.top)*i.yRatio[s],b=u.globals.maxYArr[s]-u.globals.minYArr[s],M=u.globals.minYArr[s]+(b-f);d.tooltipPosition.moveYCrosshairs(a-w.top),d.yaxisTooltipText[s].innerHTML=p(M),d.tooltipPosition.moveYAxisTooltip(s)}}}]),T}(),yo=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w;var a=this.w;this.tConfig=a.config.tooltip,this.tooltipUtil=new hl(this),this.tooltipLabels=new Ps(this),this.tooltipPosition=new Bl(this),this.marker=new Ls(this),this.intersect=new cn(this),this.axesTooltip=new Bn(this),this.showOnIntersect=this.tConfig.intersect,this.showTooltipTitle=this.tConfig.x.show,this.fixedTooltip=this.tConfig.fixed.enabled,this.xaxisTooltip=null,this.yaxisTTEls=null,this.isBarShared=!a.globals.isBarHorizontal&&this.tConfig.shared,this.lastHoverTime=Date.now()}return k(T,[{key:"getElTooltip",value:function(s){return s||(s=this),s.w.globals.dom.baseEl?s.w.globals.dom.baseEl.querySelector(".apexcharts-tooltip"):null}},{key:"getElXCrosshairs",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-xcrosshairs")}},{key:"getElGrid",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-grid")}},{key:"drawTooltip",value:function(s){var a=this.w;this.xyRatios=s,this.isXAxisTooltipEnabled=a.config.xaxis.tooltip.enabled&&a.globals.axisCharts,this.yaxisTooltips=a.config.yaxis.map(function(p,w){return!!(p.show&&p.tooltip.enabled&&a.globals.axisCharts)}),this.allTooltipSeriesGroups=[],a.globals.axisCharts||(this.showTooltipTitle=!1);var i=document.createElement("div");if(i.classList.add("apexcharts-tooltip"),a.config.tooltip.cssClass&&i.classList.add(a.config.tooltip.cssClass),i.classList.add("apexcharts-theme-".concat(this.tConfig.theme)),a.globals.dom.elWrap.appendChild(i),a.globals.axisCharts){this.axesTooltip.drawXaxisTooltip(),this.axesTooltip.drawYaxisTooltip(),this.axesTooltip.setXCrosshairWidth(),this.axesTooltip.handleYCrosshair();var d=new bt(this.ctx);this.xAxisTicksPositions=d.getXAxisTicksPositions()}if(!a.globals.comboCharts&&!this.tConfig.intersect&&a.config.chart.type!=="rangeBar"||this.tConfig.shared||(this.showOnIntersect=!0),a.config.markers.size!==0&&a.globals.markers.largestSize!==0||this.marker.drawDynamicPoints(this),a.globals.collapsedSeries.length!==a.globals.series.length){this.dataPointsDividedHeight=a.globals.gridHeight/a.globals.dataPoints,this.dataPointsDividedWidth=a.globals.gridWidth/a.globals.dataPoints,this.showTooltipTitle&&(this.tooltipTitle=document.createElement("div"),this.tooltipTitle.classList.add("apexcharts-tooltip-title"),this.tooltipTitle.style.fontFamily=this.tConfig.style.fontFamily||a.config.chart.fontFamily,this.tooltipTitle.style.fontSize=this.tConfig.style.fontSize,i.appendChild(this.tooltipTitle));var u=a.globals.series.length;(a.globals.xyCharts||a.globals.comboCharts)&&this.tConfig.shared&&(u=this.showOnIntersect?1:a.globals.series.length),this.legendLabels=a.globals.dom.baseEl.querySelectorAll(".apexcharts-legend-text"),this.ttItems=this.createTTElements(u),this.addSVGEvents()}}},{key:"createTTElements",value:function(s){for(var a=this,i=this.w,d=[],u=this.getElTooltip(),p=function(f){var b=document.createElement("div");b.classList.add("apexcharts-tooltip-series-group"),b.style.order=i.config.tooltip.inverseOrder?s-f:f+1,a.tConfig.shared&&a.tConfig.enabledOnSeries&&Array.isArray(a.tConfig.enabledOnSeries)&&a.tConfig.enabledOnSeries.indexOf(f)<0&&b.classList.add("apexcharts-tooltip-series-group-hidden");var M=document.createElement("span");M.classList.add("apexcharts-tooltip-marker"),M.style.backgroundColor=i.globals.colors[f],b.appendChild(M);var z=document.createElement("div");z.classList.add("apexcharts-tooltip-text"),z.style.fontFamily=a.tConfig.style.fontFamily||i.config.chart.fontFamily,z.style.fontSize=a.tConfig.style.fontSize,["y","goals","z"].forEach(function(y){var A=document.createElement("div");A.classList.add("apexcharts-tooltip-".concat(y,"-group"));var N=document.createElement("span");N.classList.add("apexcharts-tooltip-text-".concat(y,"-label")),A.appendChild(N);var L=document.createElement("span");L.classList.add("apexcharts-tooltip-text-".concat(y,"-value")),A.appendChild(L),z.appendChild(A)}),b.appendChild(z),u.appendChild(b),d.push(b)},w=0;w0&&this.addPathsEventListeners(N,z),this.tooltipUtil.hasBars()&&!this.tConfig.shared&&this.addDatapointEventsListeners(z)}}},{key:"drawFixedTooltipRect",value:function(){var s=this.w,a=this.getElTooltip(),i=a.getBoundingClientRect(),d=i.width+10,u=i.height+10,p=this.tConfig.fixed.offsetX,w=this.tConfig.fixed.offsetY,f=this.tConfig.fixed.position.toLowerCase();return f.indexOf("right")>-1&&(p=p+s.globals.svgWidth-d+10),f.indexOf("bottom")>-1&&(w=w+s.globals.svgHeight-u-10),a.style.left=p+"px",a.style.top=w+"px",{x:p,y:w,ttWidth:d,ttHeight:u}}},{key:"addDatapointEventsListeners",value:function(s){var a=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers .apexcharts-marker, .apexcharts-bar-area, .apexcharts-candlestick-area, .apexcharts-boxPlot-area, .apexcharts-rangebar-area");this.addPathsEventListeners(a,s)}},{key:"addPathsEventListeners",value:function(s,a){for(var i=this,d=function(p){var w={paths:s[p],tooltipEl:a.tooltipEl,tooltipY:a.tooltipY,tooltipX:a.tooltipX,elGrid:a.elGrid,hoverArea:a.hoverArea,ttItems:a.ttItems};["mousemove","mouseup","touchmove","mouseout","touchend"].map(function(f){return s[p].addEventListener(f,i.onSeriesHover.bind(i,w),{capture:!1,passive:!0})})},u=0;u=100?this.seriesHover(s,a):(clearTimeout(this.seriesHoverTimeout),this.seriesHoverTimeout=setTimeout(function(){i.seriesHover(s,a)},100-d))}},{key:"seriesHover",value:function(s,a){var i=this;this.lastHoverTime=Date.now();var d=[],u=this.w;u.config.chart.group&&(d=this.ctx.getGroupedCharts()),u.globals.axisCharts&&(u.globals.minX===-1/0&&u.globals.maxX===1/0||u.globals.dataPoints===0)||(d.length?d.forEach(function(p){var w=i.getElTooltip(p),f={paths:s.paths,tooltipEl:w,tooltipY:s.tooltipY,tooltipX:s.tooltipX,elGrid:s.elGrid,hoverArea:s.hoverArea,ttItems:p.w.globals.tooltip.ttItems};p.w.globals.minX===i.w.globals.minX&&p.w.globals.maxX===i.w.globals.maxX&&p.w.globals.tooltip.seriesHoverByContext({chartCtx:p,ttCtx:p.w.globals.tooltip,opt:f,e:a})}):this.seriesHoverByContext({chartCtx:this.ctx,ttCtx:this.w.globals.tooltip,opt:s,e:a}))}},{key:"seriesHoverByContext",value:function(s){var a=s.chartCtx,i=s.ttCtx,d=s.opt,u=s.e,p=a.w,w=this.getElTooltip();w&&(i.tooltipRect={x:0,y:0,ttWidth:w.getBoundingClientRect().width,ttHeight:w.getBoundingClientRect().height},i.e=u,i.tooltipUtil.hasBars()&&!p.globals.comboCharts&&!i.isBarShared&&this.tConfig.onDatasetHover.highlightDataSeries&&new ut(a).toggleSeriesOnHover(u,u.target.parentNode),i.fixedTooltip&&i.drawFixedTooltipRect(),p.globals.axisCharts?i.axisChartsTooltips({e:u,opt:d,tooltipRect:i.tooltipRect}):i.nonAxisChartsTooltips({e:u,opt:d,tooltipRect:i.tooltipRect}))}},{key:"axisChartsTooltips",value:function(s){var a,i,d=s.e,u=s.opt,p=this.w,w=u.elGrid.getBoundingClientRect(),f=d.type==="touchmove"?d.touches[0].clientX:d.clientX,b=d.type==="touchmove"?d.touches[0].clientY:d.clientY;if(this.clientY=b,this.clientX=f,p.globals.capturedSeriesIndex=-1,p.globals.capturedDataPointIndex=-1,bw.top+w.height)this.handleMouseOut(u);else{if(Array.isArray(this.tConfig.enabledOnSeries)&&!p.config.tooltip.shared){var M=parseInt(u.paths.getAttribute("index"),10);if(this.tConfig.enabledOnSeries.indexOf(M)<0)return void this.handleMouseOut(u)}var z=this.getElTooltip(),y=this.getElXCrosshairs(),A=p.globals.xyCharts||p.config.chart.type==="bar"&&!p.globals.isBarHorizontal&&this.tooltipUtil.hasBars()&&this.tConfig.shared||p.globals.comboCharts&&this.tooltipUtil.hasBars();if(d.type==="mousemove"||d.type==="touchmove"||d.type==="mouseup"){if(p.globals.collapsedSeries.length+p.globals.ancillaryCollapsedSeries.length===p.globals.series.length)return;y!==null&&y.classList.add("apexcharts-active");var N=this.yaxisTooltips.filter(function(V){return V===!0});if(this.ycrosshairs!==null&&N.length&&this.ycrosshairs.classList.add("apexcharts-active"),A&&!this.showOnIntersect)this.handleStickyTooltip(d,f,b,u);else if(p.config.chart.type==="heatmap"||p.config.chart.type==="treemap"){var L=this.intersect.handleHeatTreeTooltip({e:d,opt:u,x:a,y:i,type:p.config.chart.type});a=L.x,i=L.y,z.style.left=a+"px",z.style.top=i+"px"}else this.tooltipUtil.hasBars()&&this.intersect.handleBarTooltip({e:d,opt:u}),this.tooltipUtil.hasMarkers()&&this.intersect.handleMarkerTooltip({e:d,opt:u,x:a,y:i});if(this.yaxisTooltips.length)for(var O=0;Ob.width)this.handleMouseOut(d);else if(f!==null)this.handleStickyCapturedSeries(s,f,d,w);else if(this.tooltipUtil.isXoverlap(w)||u.globals.isBarHorizontal){var M=u.globals.series.findIndex(function(z,y){return!u.globals.collapsedSeriesIndices.includes(y)});this.create(s,this,M,w,d.ttItems)}}},{key:"handleStickyCapturedSeries",value:function(s,a,i,d){var u=this.w;if(!this.tConfig.shared&&u.globals.series[a][d]===null)return void this.handleMouseOut(i);if(u.globals.series[a][d]!==void 0)this.tConfig.shared&&this.tooltipUtil.isXoverlap(d)&&this.tooltipUtil.isInitialSeriesSameLen()?this.create(s,this,a,d,i.ttItems):this.create(s,this,a,d,i.ttItems,!1);else if(this.tooltipUtil.isXoverlap(d)){var p=u.globals.series.findIndex(function(w,f){return!u.globals.collapsedSeriesIndices.includes(f)});this.create(s,this,p,d,i.ttItems)}}},{key:"deactivateHoverFilter",value:function(){for(var s=this.w,a=new _(this.ctx),i=s.globals.dom.Paper.select(".apexcharts-bar-area"),d=0;d5&&arguments[5]!==void 0?arguments[5]:null,K=this.w,Q=a;s.type==="mouseup"&&this.markerClick(s,i,d),E===null&&(E=this.tConfig.shared);var ot=this.tooltipUtil.hasMarkers(i),it=this.tooltipUtil.getElBars();if(K.config.legend.tooltipHoverFormatter){var vt=K.config.legend.tooltipHoverFormatter,zt=Array.from(this.legendLabels);zt.forEach(function(Wn){var lr=Wn.getAttribute("data:default-text");Wn.innerHTML=decodeURIComponent(lr)});for(var Mt=0;Mt0?Q.marker.enlargePoints(d):Q.tooltipPosition.moveDynamicPointsOnHover(d);else if(this.tooltipUtil.hasBars()&&(this.barSeriesHeight=this.tooltipUtil.getBarsHeight(it),this.barSeriesHeight>0)){var Ie=new _(this.ctx),Be=K.globals.dom.Paper.select(".apexcharts-bar-area[j='".concat(d,"']"));this.deactivateHoverFilter(),this.tooltipPosition.moveStickyTooltipOverBars(d,i);for(var Le=0;Led.globals.gridHeight&&(L=d.globals.gridHeight-m)),{bcx:M,bcy:b,dataLabelsX:N,dataLabelsY:L,totalDataLabelsX:i,totalDataLabelsY:a,totalDataLabelsAnchor:"middle"}}},{key:"calculateBarsDataLabelsPosition",value:function(s){var a=this.w,i=s.x,d=s.i,u=s.j,p=s.realIndex,w=s.groupIndex,f=s.bcy,b=s.barHeight,M=s.barWidth,z=s.textRects,y=s.dataLabelsX,A=s.strokeWidth,N=s.dataLabelsConfig,L=s.barDataLabelsConfig,O=s.barTotalDataLabelsConfig,V=s.offX,Z=s.offY,m=a.globals.gridHeight/a.globals.dataPoints;M=Math.abs(M);var C,j,E=(f+=w!==-1?w*b:0)-(this.barCtx.isRangeBar?0:m)+b/2+z.height/2+Z-3,K="start",Q=this.barCtx.series[d][u]<0,ot=i;switch(this.barCtx.isReversed&&(ot=i+M-(Q?2*M:0),i=a.globals.gridWidth-M),L.position){case"center":y=Q?ot+M/2-V:Math.max(z.width/2,ot-M/2)+V;break;case"bottom":y=Q?ot+M-A-Math.round(z.width/2)-V:ot-M+A+Math.round(z.width/2)+V;break;case"top":y=Q?ot-A+Math.round(z.width/2)-V:ot-A-Math.round(z.width/2)+V}if(this.barCtx.lastActiveBarSerieIndex===p&&O.enabled){var it=new _(this.barCtx.ctx).getTextRects(this.getStackedTotalDataLabel({realIndex:p,j:u}),N.fontSize);Q?(C=ot-A+Math.round(it.width/2)-V-O.offsetX-15,K="end"):C=ot-A-Math.round(it.width/2)+V+O.offsetX+15,j=E+O.offsetY}return a.config.chart.stacked||(y<0?y=y+z.width+A:y+z.width/2>a.globals.gridWidth&&(y=a.globals.gridWidth-z.width-A)),{bcx:i,bcy:f,dataLabelsX:y,dataLabelsY:E,totalDataLabelsX:C,totalDataLabelsY:j,totalDataLabelsAnchor:K}}},{key:"drawCalculatedDataLabels",value:function(s){var a=s.x,i=s.y,d=s.val,u=s.i,p=s.j,w=s.textRects,f=s.barHeight,b=s.barWidth,M=s.dataLabelsConfig,z=this.w,y="rotate(0)";z.config.plotOptions.bar.dataLabels.orientation==="vertical"&&(y="rotate(-90, ".concat(a,", ").concat(i,")"));var A=new Et(this.barCtx.ctx),N=new _(this.barCtx.ctx),L=M.formatter,O=null,V=z.globals.collapsedSeriesIndices.indexOf(u)>-1;if(M.enabled&&!V){O=N.group({class:"apexcharts-data-labels",transform:y});var Z="";d!==void 0&&(Z=L(d,h(h({},z),{},{seriesIndex:u,dataPointIndex:p,w:z}))),!d&&z.config.plotOptions.bar.hideZeroBarsWhenGrouped&&(Z="");var m=z.globals.series[u][p]<0,C=z.config.plotOptions.bar.dataLabels.position;z.config.plotOptions.bar.dataLabels.orientation==="vertical"&&(C==="top"&&(M.textAnchor=m?"end":"start"),C==="center"&&(M.textAnchor="middle"),C==="bottom"&&(M.textAnchor=m?"end":"start")),this.barCtx.isRangeBar&&this.barCtx.barOptions.dataLabels.hideOverflowingLabels&&bMath.abs(b)&&(Z=""):w.height/1.6>Math.abs(f)&&(Z=""));var j=h({},M);this.barCtx.isHorizontal&&d<0&&(M.textAnchor==="start"?j.textAnchor="end":M.textAnchor==="end"&&(j.textAnchor="start")),A.plotDataLabelsText({x:a,y:i,text:Z,i:u,j:p,parent:O,dataLabelsConfig:j,alwaysDrawDataLabel:!0,offsetCorrection:!0})}return O}},{key:"drawTotalDataLabels",value:function(s){var a,i=s.x,d=s.y,u=s.val,p=s.realIndex,w=s.textAnchor,f=s.barTotalDataLabelsConfig,b=new _(this.barCtx.ctx);return f.enabled&&i!==void 0&&d!==void 0&&this.barCtx.lastActiveBarSerieIndex===p&&(a=b.drawText({x:i,y:d,foreColor:f.style.color,text:u,textAnchor:w,fontFamily:f.style.fontFamily,fontSize:f.style.fontSize,fontWeight:f.style.fontWeight})),a}}]),T}(),Ug=function(){function T(s){g(this,T),this.w=s.w,this.barCtx=s}return k(T,[{key:"initVariables",value:function(s){var a=this.w;this.barCtx.series=s,this.barCtx.totalItems=0,this.barCtx.seriesLen=0,this.barCtx.visibleI=-1,this.barCtx.visibleItems=1;for(var i=0;i0&&(this.barCtx.seriesLen=this.barCtx.seriesLen+1,this.barCtx.totalItems+=s[i].length),a.globals.isXNumeric)for(var d=0;da.globals.minX&&a.globals.seriesX[i][d]0&&(d=b.globals.minXDiff/y),(p=d/z*parseInt(this.barCtx.barOptions.columnWidth,10)/100)<1&&(p=1)}String(this.barCtx.barOptions.columnWidth).indexOf("%")===-1&&(p=parseInt(this.barCtx.barOptions.columnWidth,10)),w=b.globals.gridHeight-this.barCtx.baseLineY[this.barCtx.yaxisIndex]-(this.barCtx.isReversed?b.globals.gridHeight:0)+(this.barCtx.isReversed?2*this.barCtx.baseLineY[this.barCtx.yaxisIndex]:0),s=b.globals.padHorizontal+(d-p*this.barCtx.seriesLen)/2}return{x:s,y:a,yDivision:i,xDivision:d,barHeight:u,barWidth:p,zeroH:w,zeroW:f}}},{key:"initializeStackedPrevVars",value:function(s){var a=s.w;a.globals.hasSeriesGroups?a.globals.seriesGroups.forEach(function(i){s[i]||(s[i]={}),s[i].prevY=[],s[i].prevX=[],s[i].prevYF=[],s[i].prevXF=[],s[i].prevYVal=[],s[i].prevXVal=[]}):(s.prevY=[],s.prevX=[],s.prevYF=[],s.prevXF=[],s.prevYVal=[],s.prevXVal=[])}},{key:"initializeStackedXYVars",value:function(s){var a=s.w;a.globals.hasSeriesGroups?a.globals.seriesGroups.forEach(function(i){s[i]||(s[i]={}),s[i].xArrj=[],s[i].xArrjF=[],s[i].xArrjVal=[],s[i].yArrj=[],s[i].yArrjF=[],s[i].yArrjVal=[]}):(s.xArrj=[],s.xArrjF=[],s.xArrjVal=[],s.yArrj=[],s.yArrjF=[],s.yArrjVal=[])}},{key:"getPathFillColor",value:function(s,a,i,d){var u,p,w,f,b=this.w,M=new Ft(this.barCtx.ctx),z=null,y=this.barCtx.barOptions.distributed?i:a;return this.barCtx.barOptions.colors.ranges.length>0&&this.barCtx.barOptions.colors.ranges.map(function(A){s[a][i]>=A.from&&s[a][i]<=A.to&&(z=A.color)}),b.config.series[a].data[i]&&b.config.series[a].data[i].fillColor&&(z=b.config.series[a].data[i].fillColor),M.fillPath({seriesNumber:this.barCtx.barOptions.distributed?y:d,dataPointIndex:i,color:z,value:s[a][i],fillConfig:(u=b.config.series[a].data[i])===null||u===void 0?void 0:u.fill,fillType:(p=b.config.series[a].data[i])!==null&&p!==void 0&&(w=p.fill)!==null&&w!==void 0&&w.type?(f=b.config.series[a].data[i])===null||f===void 0?void 0:f.fill.type:b.config.fill.type})}},{key:"getStrokeWidth",value:function(s,a,i){var d=0,u=this.w;return this.barCtx.series[s][a]?this.barCtx.isNullValue=!1:this.barCtx.isNullValue=!0,u.config.stroke.show&&(this.barCtx.isNullValue||(d=Array.isArray(this.barCtx.strokeWidth)?this.barCtx.strokeWidth[i]:this.barCtx.strokeWidth)),d}},{key:"shouldApplyRadius",value:function(s){var a=this.w,i=!1;return a.config.plotOptions.bar.borderRadius>0&&(a.config.chart.stacked&&a.config.plotOptions.bar.borderRadiusWhenStacked==="last"?this.barCtx.lastActiveBarSerieIndex===s&&(i=!0):i=!0),i}},{key:"barBackground",value:function(s){var a=s.j,i=s.i,d=s.x1,u=s.x2,p=s.y1,w=s.y2,f=s.elSeries,b=this.w,M=new _(this.barCtx.ctx),z=new ut(this.barCtx.ctx).getActiveConfigSeriesIndex();if(this.barCtx.barOptions.colors.backgroundBarColors.length>0&&z===i){a>=this.barCtx.barOptions.colors.backgroundBarColors.length&&(a%=this.barCtx.barOptions.colors.backgroundBarColors.length);var y=this.barCtx.barOptions.colors.backgroundBarColors[a],A=M.drawRect(d!==void 0?d:0,p!==void 0?p:0,u!==void 0?u:b.globals.gridWidth,w!==void 0?w:b.globals.gridHeight,this.barCtx.barOptions.colors.backgroundBarRadius,y,this.barCtx.barOptions.colors.backgroundBarOpacity);f.add(A),A.node.classList.add("apexcharts-backgroundBar")}}},{key:"getColumnPaths",value:function(s){var a,i=s.barWidth,d=s.barXPosition,u=s.y1,p=s.y2,w=s.strokeWidth,f=s.seriesGroup,b=s.realIndex,M=s.i,z=s.j,y=s.w,A=new _(this.barCtx.ctx);(w=Array.isArray(w)?w[b]:w)||(w=0);var N=i,L=d;(a=y.config.series[b].data[z])!==null&&a!==void 0&&a.columnWidthOffset&&(L=d-y.config.series[b].data[z].columnWidthOffset/2,N=i+y.config.series[b].data[z].columnWidthOffset);var O=L,V=L+N;u+=.001,p+=.001;var Z=A.move(O,u),m=A.move(O,u),C=A.line(V-w,u);if(y.globals.previousPaths.length>0&&(m=this.barCtx.getPreviousPath(b,z,!1)),Z=Z+A.line(O,p)+A.line(V-w,p)+A.line(V-w,u)+(y.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),m=m+A.line(O,u)+C+C+C+C+C+A.line(O,u)+(y.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),this.shouldApplyRadius(b)&&(Z=A.roundPathCorners(Z,y.config.plotOptions.bar.borderRadius)),y.config.chart.stacked){var j=this.barCtx;y.globals.hasSeriesGroups&&f&&(j=this.barCtx[f]),j.yArrj.push(p),j.yArrjF.push(Math.abs(u-p)),j.yArrjVal.push(this.barCtx.series[M][z])}return{pathTo:Z,pathFrom:m}}},{key:"getBarpaths",value:function(s){var a,i=s.barYPosition,d=s.barHeight,u=s.x1,p=s.x2,w=s.strokeWidth,f=s.seriesGroup,b=s.realIndex,M=s.i,z=s.j,y=s.w,A=new _(this.barCtx.ctx);(w=Array.isArray(w)?w[b]:w)||(w=0);var N=i,L=d;(a=y.config.series[b].data[z])!==null&&a!==void 0&&a.barHeightOffset&&(N=i-y.config.series[b].data[z].barHeightOffset/2,L=d+y.config.series[b].data[z].barHeightOffset);var O=N,V=N+L;u+=.001,p+=.001;var Z=A.move(u,O),m=A.move(u,O);y.globals.previousPaths.length>0&&(m=this.barCtx.getPreviousPath(b,z,!1));var C=A.line(u,V-w);if(Z=Z+A.line(p,O)+A.line(p,V-w)+C+(y.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),m=m+A.line(u,O)+C+C+C+C+C+A.line(u,O)+(y.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),this.shouldApplyRadius(b)&&(Z=A.roundPathCorners(Z,y.config.plotOptions.bar.borderRadius)),y.config.chart.stacked){var j=this.barCtx;y.globals.hasSeriesGroups&&f&&(j=this.barCtx[f]),j.xArrj.push(p),j.xArrjF.push(Math.abs(u-p)),j.xArrjVal.push(this.barCtx.series[M][z])}return{pathTo:Z,pathFrom:m}}},{key:"checkZeroSeries",value:function(s){for(var a=s.series,i=this.w,d=0;d2&&arguments[2]!==void 0)||arguments[2]?a:null;return s!=null&&(i=a+s/this.barCtx.invertedYRatio-2*(this.barCtx.isReversed?s/this.barCtx.invertedYRatio:0)),i}},{key:"getYForValue",value:function(s,a){var i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2]?a:null;return s!=null&&(i=a-s/this.barCtx.yRatio[this.barCtx.yaxisIndex]+2*(this.barCtx.isReversed?s/this.barCtx.yRatio[this.barCtx.yaxisIndex]:0)),i}},{key:"getGoalValues",value:function(s,a,i,d,u){var p=this,w=this.w,f=[],b=function(y,A){var N;f.push((x(N={},s,s==="x"?p.getXForValue(y,a,!1):p.getYForValue(y,i,!1)),x(N,"attrs",A),N))};if(w.globals.seriesGoals[d]&&w.globals.seriesGoals[d][u]&&Array.isArray(w.globals.seriesGoals[d][u])&&w.globals.seriesGoals[d][u].forEach(function(y){b(y.value,y)}),this.barCtx.barOptions.isDumbbell&&w.globals.seriesRange.length){var M=this.barCtx.barOptions.dumbbellColors?this.barCtx.barOptions.dumbbellColors:w.globals.colors,z={strokeHeight:s==="x"?0:w.globals.markers.size[d],strokeWidth:s==="x"?w.globals.markers.size[d]:0,strokeDashArray:0,strokeLineCap:"round",strokeColor:Array.isArray(M[d])?M[d][0]:M[d]};b(w.globals.seriesRangeStart[d][u],z),b(w.globals.seriesRangeEnd[d][u],h(h({},z),{},{strokeColor:Array.isArray(M[d])?M[d][1]:M[d]}))}return f}},{key:"drawGoalLine",value:function(s){var a=s.barXPosition,i=s.barYPosition,d=s.goalX,u=s.goalY,p=s.barWidth,w=s.barHeight,f=new _(this.barCtx.ctx),b=f.group({className:"apexcharts-bar-goals-groups"});b.node.classList.add("apexcharts-element-hidden"),this.barCtx.w.globals.delayedElements.push({el:b.node}),b.attr("clip-path","url(#gridRectMarkerMask".concat(this.barCtx.w.globals.cuid,")"));var M=null;return this.barCtx.isHorizontal?Array.isArray(d)&&d.forEach(function(z){var y=z.attrs.strokeHeight!==void 0?z.attrs.strokeHeight:w/2,A=i+y+w/2;M=f.drawLine(z.x,A-2*y,z.x,A,z.attrs.strokeColor?z.attrs.strokeColor:void 0,z.attrs.strokeDashArray,z.attrs.strokeWidth?z.attrs.strokeWidth:2,z.attrs.strokeLineCap),b.add(M)}):Array.isArray(u)&&u.forEach(function(z){var y=z.attrs.strokeWidth!==void 0?z.attrs.strokeWidth:p/2,A=a+y+p/2;M=f.drawLine(A-2*y,z.y,A,z.y,z.attrs.strokeColor?z.attrs.strokeColor:void 0,z.attrs.strokeDashArray,z.attrs.strokeHeight?z.attrs.strokeHeight:2,z.attrs.strokeLineCap),b.add(M)}),b}},{key:"drawBarShadow",value:function(s){var a=s.prevPaths,i=s.currPaths,d=s.color,u=this.w,p=a.x,w=a.x1,f=a.barYPosition,b=i.x,M=i.x1,z=i.barYPosition,y=f+i.barHeight,A=new _(this.barCtx.ctx),N=new H,L=A.move(w,y)+A.line(p,y)+A.line(b,z)+A.line(M,z)+A.line(w,y)+(u.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z");return A.drawPath({d:L,fill:N.shadeColor(.5,H.rgb2hex(d)),stroke:"none",strokeWidth:0,fillOpacity:1,classes:"apexcharts-bar-shadows"})}}]),T}(),Lr=function(){function T(s,a){g(this,T),this.ctx=s,this.w=s.w;var i=this.w;this.barOptions=i.config.plotOptions.bar,this.isHorizontal=this.barOptions.horizontal,this.strokeWidth=i.config.stroke.width,this.isNullValue=!1,this.isRangeBar=i.globals.seriesRange.length&&this.isHorizontal,this.isVerticalGroupedRangeBar=!i.globals.isBarHorizontal&&i.globals.seriesRange.length&&i.config.plotOptions.bar.rangeBarGroupRows,this.isFunnel=this.barOptions.isFunnel,this.xyRatios=a,this.xyRatios!==null&&(this.xRatio=a.xRatio,this.initialXRatio=a.initialXRatio,this.yRatio=a.yRatio,this.invertedXRatio=a.invertedXRatio,this.invertedYRatio=a.invertedYRatio,this.baseLineY=a.baseLineY,this.baseLineInvertedY=a.baseLineInvertedY),this.yaxisIndex=0,this.seriesLen=0,this.pathArr=[];var d=new ut(this.ctx);this.lastActiveBarSerieIndex=d.getActiveConfigSeriesIndex("desc",["bar","column"]);var u=d.getBarSeriesIndices(),p=new tt(this.ctx);this.stackedSeriesTotals=p.getStackedSeriesTotals(this.w.config.series.map(function(w,f){return u.indexOf(f)===-1?f:-1}).filter(function(w){return w!==-1})),this.barHelpers=new Ug(this)}return k(T,[{key:"draw",value:function(s,a){var i=this.w,d=new _(this.ctx),u=new tt(this.ctx,i);s=u.getLogSeries(s),this.series=s,this.yRatio=u.getLogYRatios(this.yRatio),this.barHelpers.initVariables(s);var p=d.group({class:"apexcharts-bar-series apexcharts-plot-series"});i.config.dataLabels.enabled&&this.totalItems>this.barOptions.dataLabels.maxItems&&console.warn("WARNING: DataLabels are enabled but there are too many to display. This may cause performance issue when rendering.");for(var w=0,f=0;w0&&(this.visibleI=this.visibleI+1);var m=0,C=0;this.yRatio.length>1&&(this.yaxisIndex=V),this.isReversed=i.config.yaxis[this.yaxisIndex]&&i.config.yaxis[this.yaxisIndex].reversed;var j=this.barHelpers.initialPositions();N=j.y,m=j.barHeight,M=j.yDivision,y=j.zeroW,A=j.x,C=j.barWidth,b=j.xDivision,z=j.zeroH,this.horizontal||O.push(A+C/2);var E=d.group({class:"apexcharts-datalabels","data:realIndex":V});i.globals.delayedElements.push({el:E.node}),E.node.classList.add("apexcharts-element-hidden");var K=d.group({class:"apexcharts-bar-goals-markers"}),Q=d.group({class:"apexcharts-bar-shadows"});i.globals.delayedElements.push({el:Q.node}),Q.node.classList.add("apexcharts-element-hidden");for(var ot=0;ot0){var Vt=this.barHelpers.drawBarShadow({color:typeof Mt=="string"&&(Mt==null?void 0:Mt.indexOf("url"))===-1?Mt:H.hexToRgba(i.globals.colors[w]),prevPaths:this.pathArr[this.pathArr.length-1],currPaths:vt});Vt&&Q.add(Vt)}this.pathArr.push(vt);var Yt=this.barHelpers.drawGoalLine({barXPosition:vt.barXPosition,barYPosition:vt.barYPosition,goalX:vt.goalX,goalY:vt.goalY,barHeight:m,barWidth:C});Yt&&K.add(Yt),N=vt.y,A=vt.x,ot>0&&O.push(A+C/2),L.push(N),this.renderSeries({realIndex:V,pathFill:Mt,j:ot,i:w,pathFrom:vt.pathFrom,pathTo:vt.pathTo,strokeWidth:it,elSeries:Z,x:A,y:N,series:s,barHeight:vt.barHeight?vt.barHeight:m,barWidth:vt.barWidth?vt.barWidth:C,elDataLabelsWrap:E,elGoalsMarkers:K,elBarShadows:Q,visibleSeries:this.visibleI,type:"bar"})}i.globals.seriesXvalues[V]=O,i.globals.seriesYvalues[V]=L,p.add(Z)}return p}},{key:"renderSeries",value:function(s){var a=s.realIndex,i=s.pathFill,d=s.lineFill,u=s.j,p=s.i,w=s.groupIndex,f=s.pathFrom,b=s.pathTo,M=s.strokeWidth,z=s.elSeries,y=s.x,A=s.y,N=s.y1,L=s.y2,O=s.series,V=s.barHeight,Z=s.barWidth,m=s.barXPosition,C=s.barYPosition,j=s.elDataLabelsWrap,E=s.elGoalsMarkers,K=s.elBarShadows,Q=s.visibleSeries,ot=s.type,it=this.w,vt=new _(this.ctx);d||(d=this.barOptions.distributed?it.globals.stroke.colors[u]:it.globals.stroke.colors[a]),it.config.series[p].data[u]&&it.config.series[p].data[u].strokeColor&&(d=it.config.series[p].data[u].strokeColor),this.isNullValue&&(i="none");var zt=u/it.config.chart.animations.animateGradually.delay*(it.config.chart.animations.speed/it.globals.dataPoints)/2.4,Mt=vt.renderPaths({i:p,j:u,realIndex:a,pathFrom:f,pathTo:b,stroke:d,strokeWidth:M,strokeLineCap:it.config.stroke.lineCap,fill:i,animationDelay:zt,initialSpeed:it.config.chart.animations.speed,dataChangeSpeed:it.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(ot,"-area")});Mt.attr("clip-path","url(#gridRectMask".concat(it.globals.cuid,")"));var Vt=it.config.forecastDataPoints;Vt.count>0&&u>=it.globals.dataPoints-Vt.count&&(Mt.node.setAttribute("stroke-dasharray",Vt.dashArray),Mt.node.setAttribute("stroke-width",Vt.strokeWidth),Mt.node.setAttribute("fill-opacity",Vt.fillOpacity)),N!==void 0&&L!==void 0&&(Mt.attr("data-range-y1",N),Mt.attr("data-range-y2",L)),new W(this.ctx).setSelectionFilter(Mt,a,u),z.add(Mt);var Yt=new Yg(this).handleBarDataLabels({x:y,y:A,y1:N,y2:L,i:p,j:u,series:O,realIndex:a,groupIndex:w,barHeight:V,barWidth:Z,barXPosition:m,barYPosition:C,renderedPath:Mt,visibleSeries:Q});return Yt.dataLabels!==null&&j.add(Yt.dataLabels),Yt.totalDataLabels&&j.add(Yt.totalDataLabels),z.add(j),E&&z.add(E),K&&z.add(K),z}},{key:"drawBarPaths",value:function(s){var a,i=s.indexes,d=s.barHeight,u=s.strokeWidth,p=s.zeroW,w=s.x,f=s.y,b=s.yDivision,M=s.elSeries,z=this.w,y=i.i,A=i.j;if(z.globals.isXNumeric)a=(f=(z.globals.seriesX[y][A]-z.globals.minX)/this.invertedXRatio-d)+d*this.visibleI;else if(z.config.plotOptions.bar.hideZeroBarsWhenGrouped){var N=0,L=0;z.globals.seriesPercent.forEach(function(V,Z){V[A]&&N++,Z0&&(d=this.seriesLen*d/N),a=f+d*this.visibleI,a-=d*L}else a=f+d*this.visibleI;this.isFunnel&&(p-=(this.barHelpers.getXForValue(this.series[y][A],p)-p)/2),w=this.barHelpers.getXForValue(this.series[y][A],p);var O=this.barHelpers.getBarpaths({barYPosition:a,barHeight:d,x1:p,x2:w,strokeWidth:u,series:this.series,realIndex:i.realIndex,i:y,j:A,w:z});return z.globals.isXNumeric||(f+=b),this.barHelpers.barBackground({j:A,i:y,y1:a-d*this.visibleI,y2:d*this.seriesLen,elSeries:M}),{pathTo:O.pathTo,pathFrom:O.pathFrom,x1:p,x:w,y:f,goalX:this.barHelpers.getGoalValues("x",p,null,y,A),barYPosition:a,barHeight:d}}},{key:"drawColumnPaths",value:function(s){var a,i=s.indexes,d=s.x,u=s.y,p=s.xDivision,w=s.barWidth,f=s.zeroH,b=s.strokeWidth,M=s.elSeries,z=this.w,y=i.realIndex,A=i.i,N=i.j,L=i.bc;if(z.globals.isXNumeric){var O=y;z.globals.seriesX[y].length||(O=z.globals.maxValsInArrayIndex),z.globals.seriesX[O][N]&&(d=(z.globals.seriesX[O][N]-z.globals.minX)/this.xRatio-w*this.seriesLen/2),a=d+w*this.visibleI}else if(z.config.plotOptions.bar.hideZeroBarsWhenGrouped){var V=0,Z=0;z.globals.seriesPercent.forEach(function(C,j){C[N]&&V++,j0&&(w=this.seriesLen*w/V),a=d+w*this.visibleI,a-=w*Z}else a=d+w*this.visibleI;u=this.barHelpers.getYForValue(this.series[A][N],f);var m=this.barHelpers.getColumnPaths({barXPosition:a,barWidth:w,y1:f,y2:u,strokeWidth:b,series:this.series,realIndex:i.realIndex,i:A,j:N,w:z});return z.globals.isXNumeric||(d+=p),this.barHelpers.barBackground({bc:L,j:N,i:A,x1:a-b/2-w*this.visibleI,x2:w*this.seriesLen+b/2,elSeries:M}),{pathTo:m.pathTo,pathFrom:m.pathFrom,x:d,y:u,goalY:this.barHelpers.getGoalValues("y",null,f,A,N),barXPosition:a,barWidth:w}}},{key:"getPreviousPath",value:function(s,a){for(var i,d=this.w,u=0;u0&&parseInt(p.realIndex,10)===parseInt(s,10)&&d.globals.previousPaths[u].paths[a]!==void 0&&(i=d.globals.previousPaths[u].paths[a].d)}return i}}]),T}(),P2=function(T){I(a,Lr);var s=P(a);function a(){return g(this,a),s.apply(this,arguments)}return k(a,[{key:"draw",value:function(i,d){var u=this,p=this.w;this.graphics=new _(this.ctx),this.bar=new Lr(this.ctx,this.xyRatios);var w=new tt(this.ctx,p);i=w.getLogSeries(i),this.yRatio=w.getLogYRatios(this.yRatio),this.barHelpers.initVariables(i),p.config.chart.stackType==="100%"&&(i=p.globals.seriesPercent.slice()),this.series=i,this.barHelpers.initializeStackedPrevVars(this);for(var f=this.graphics.group({class:"apexcharts-bar-series apexcharts-plot-series"}),b=0,M=0,z=function(N,L){var O=void 0,V=void 0,Z=void 0,m=void 0,C=-1;u.groupCtx=u,p.globals.seriesGroups.forEach(function(Be,Le){Be.indexOf(p.config.series[N].name)>-1&&(C=Le)}),C!==-1&&(u.groupCtx=u[p.globals.seriesGroups[C]]);var j=[],E=[],K=p.globals.comboCharts?d[N]:N;u.yRatio.length>1&&(u.yaxisIndex=K),u.isReversed=p.config.yaxis[u.yaxisIndex]&&p.config.yaxis[u.yaxisIndex].reversed;var Q=u.graphics.group({class:"apexcharts-series",seriesName:H.escapeString(p.globals.seriesNames[K]),rel:N+1,"data:realIndex":K});u.ctx.series.addCollapsedClassToSeries(Q,K);var ot=u.graphics.group({class:"apexcharts-datalabels","data:realIndex":K}),it=u.graphics.group({class:"apexcharts-bar-goals-markers"}),vt=0,zt=0,Mt=u.initialPositions(b,M,O,V,Z,m);M=Mt.y,vt=Mt.barHeight,V=Mt.yDivision,m=Mt.zeroW,b=Mt.x,zt=Mt.barWidth,O=Mt.xDivision,Z=Mt.zeroH,u.barHelpers.initializeStackedXYVars(u),u.groupCtx.prevY.length===1&&u.groupCtx.prevY[0].every(function(Be){return isNaN(Be)})&&(u.groupCtx.prevY[0]=u.groupCtx.prevY[0].map(function(Be){return Z}),u.groupCtx.prevYF[0]=u.groupCtx.prevYF[0].map(function(Be){return 0}));for(var Vt=0;Vt1?(u=A.globals.minXDiff/this.xRatio)*parseInt(this.barOptions.columnWidth,10)/100:y*parseInt(A.config.plotOptions.bar.columnWidth,10)/100,String(A.config.plotOptions.bar.columnWidth).indexOf("%")===-1&&(y=parseInt(A.config.plotOptions.bar.columnWidth,10)),w=A.globals.gridHeight-this.baseLineY[this.yaxisIndex]-(this.isReversed?A.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),i=A.globals.padHorizontal+(u-y)/2),{x:i,y:d,yDivision:p,xDivision:u,barHeight:(b=A.globals.seriesGroups)!==null&&b!==void 0&&b.length?z/A.globals.seriesGroups.length:z,barWidth:(M=A.globals.seriesGroups)!==null&&M!==void 0&&M.length?y/A.globals.seriesGroups.length:y,zeroH:w,zeroW:f}}},{key:"drawStackedBarPaths",value:function(i){for(var d,u=i.indexes,p=i.barHeight,w=i.strokeWidth,f=i.zeroW,b=i.x,M=i.y,z=i.groupIndex,y=i.seriesGroup,A=i.yDivision,N=i.elSeries,L=this.w,O=M+(z!==-1?z*p:0),V=u.i,Z=u.j,m=0,C=0;C0){var E=f;this.groupCtx.prevXVal[j-1][Z]<0?E=this.series[V][Z]>=0?this.groupCtx.prevX[j-1][Z]+m-2*(this.isReversed?m:0):this.groupCtx.prevX[j-1][Z]:this.groupCtx.prevXVal[j-1][Z]>=0&&(E=this.series[V][Z]>=0?this.groupCtx.prevX[j-1][Z]:this.groupCtx.prevX[j-1][Z]-m+2*(this.isReversed?m:0)),d=E}else d=f;b=this.series[V][Z]===null?d:d+this.series[V][Z]/this.invertedYRatio-2*(this.isReversed?this.series[V][Z]/this.invertedYRatio:0);var K=this.barHelpers.getBarpaths({barYPosition:O,barHeight:p,x1:d,x2:b,strokeWidth:w,series:this.series,realIndex:u.realIndex,seriesGroup:y,i:V,j:Z,w:L});return this.barHelpers.barBackground({j:Z,i:V,y1:O,y2:p,elSeries:N}),M+=A,{pathTo:K.pathTo,pathFrom:K.pathFrom,goalX:this.barHelpers.getGoalValues("x",f,null,V,Z),barYPosition:O,x:b,y:M}}},{key:"drawStackedColumnPaths",value:function(i){var d=i.indexes,u=i.x,p=i.y,w=i.xDivision,f=i.barWidth,b=i.zeroH,M=i.groupIndex,z=i.seriesGroup,y=i.elSeries,A=this.w,N=d.i,L=d.j,O=d.bc;if(A.globals.isXNumeric){var V=A.globals.seriesX[N][L];V||(V=0),u=(V-A.globals.minX)/this.xRatio-f/2,A.globals.seriesGroups.length&&(u=(V-A.globals.minX)/this.xRatio-f/2*A.globals.seriesGroups.length)}for(var Z,m=u+(M!==-1?M*f:0),C=0,j=0;j0&&!A.globals.isXNumeric||E>0&&A.globals.isXNumeric&&A.globals.seriesX[N-1][L]===A.globals.seriesX[N][L]){var K,Q,ot,it=Math.min(this.yRatio.length+1,N+1);if(this.groupCtx.prevY[E-1]!==void 0&&this.groupCtx.prevY[E-1].length)for(var vt=1;vt=0?ot-C+2*(this.isReversed?C:0):ot;break}if(((Yt=this.groupCtx.prevYVal[E-Mt])===null||Yt===void 0?void 0:Yt[L])>=0){Q=this.series[N][L]>=0?ot:ot+C-2*(this.isReversed?C:0);break}}Q===void 0&&(Q=A.globals.gridHeight),Z=(K=this.groupCtx.prevYF[0])!==null&&K!==void 0&&K.every(function(he){return he===0})&&this.groupCtx.prevYF.slice(1,E).every(function(he){return he.every(function(ce){return isNaN(ce)})})?b:Q}else Z=b;p=this.series[N][L]?Z-this.series[N][L]/this.yRatio[this.yaxisIndex]+2*(this.isReversed?this.series[N][L]/this.yRatio[this.yaxisIndex]:0):Z;var ie=this.barHelpers.getColumnPaths({barXPosition:m,barWidth:f,y1:Z,y2:p,yRatio:this.yRatio[this.yaxisIndex],strokeWidth:this.strokeWidth,series:this.series,seriesGroup:z,realIndex:d.realIndex,i:N,j:L,w:A});return this.barHelpers.barBackground({bc:O,j:L,i:N,x1:m,x2:f,elSeries:y}),u+=w,{pathTo:ie.pathTo,pathFrom:ie.pathFrom,goalY:this.barHelpers.getGoalValues("y",null,b,N,L),barXPosition:m,x:A.globals.isXNumeric?u-w:u,y:p}}}]),a}(),mi=function(T){I(a,Lr);var s=P(a);function a(){return g(this,a),s.apply(this,arguments)}return k(a,[{key:"draw",value:function(i,d,u){var p=this,w=this.w,f=new _(this.ctx),b=w.globals.comboCharts?d:w.config.chart.type,M=new Ft(this.ctx);this.candlestickOptions=this.w.config.plotOptions.candlestick,this.boxOptions=this.w.config.plotOptions.boxPlot,this.isHorizontal=w.config.plotOptions.bar.horizontal;var z=new tt(this.ctx,w);i=z.getLogSeries(i),this.series=i,this.yRatio=z.getLogYRatios(this.yRatio),this.barHelpers.initVariables(i);for(var y=f.group({class:"apexcharts-".concat(b,"-series apexcharts-plot-series")}),A=function(L){p.isBoxPlot=w.config.chart.type==="boxPlot"||w.config.series[L].type==="boxPlot";var O,V,Z,m,C=void 0,j=void 0,E=[],K=[],Q=w.globals.comboCharts?u[L]:L,ot=f.group({class:"apexcharts-series",seriesName:H.escapeString(w.globals.seriesNames[Q]),rel:L+1,"data:realIndex":Q});p.ctx.series.addCollapsedClassToSeries(ot,Q),i[L].length>0&&(p.visibleI=p.visibleI+1);var it,vt;p.yRatio.length>1&&(p.yaxisIndex=Q);var zt=p.barHelpers.initialPositions();j=zt.y,it=zt.barHeight,V=zt.yDivision,m=zt.zeroW,C=zt.x,vt=zt.barWidth,O=zt.xDivision,Z=zt.zeroH,K.push(C+vt/2);for(var Mt=f.group({class:"apexcharts-datalabels","data:realIndex":Q}),Vt=function(ie){var he=p.barHelpers.getStrokeWidth(L,ie,Q),ce=null,Ie={indexes:{i:L,j:ie,realIndex:Q},x:C,y:j,strokeWidth:he,elSeries:ot};ce=p.isHorizontal?p.drawHorizontalBoxPaths(h(h({},Ie),{},{yDivision:V,barHeight:it,zeroW:m})):p.drawVerticalBoxPaths(h(h({},Ie),{},{xDivision:O,barWidth:vt,zeroH:Z})),j=ce.y,C=ce.x,ie>0&&K.push(C+vt/2),E.push(j),ce.pathTo.forEach(function(Be,Le){var Wn=!p.isBoxPlot&&p.candlestickOptions.wick.useFillColor?ce.color[Le]:w.globals.stroke.colors[L],lr=M.fillPath({seriesNumber:Q,dataPointIndex:ie,color:ce.color[Le],value:i[L][ie]});p.renderSeries({realIndex:Q,pathFill:lr,lineFill:Wn,j:ie,i:L,pathFrom:ce.pathFrom,pathTo:Be,strokeWidth:he,elSeries:ot,x:C,y:j,series:i,barHeight:it,barWidth:vt,elDataLabelsWrap:Mt,visibleSeries:p.visibleI,type:w.config.chart.type})})},Yt=0;YtC.c&&(N=!1);var K=Math.min(C.o,C.c),Q=Math.max(C.o,C.c),ot=C.m;M.globals.isXNumeric&&(u=(M.globals.seriesX[m][A]-M.globals.minX)/this.xRatio-w/2);var it=u+w*this.visibleI;this.series[y][A]===void 0||this.series[y][A]===null?(K=f,Q=f):(K=f-K/Z,Q=f-Q/Z,j=f-C.h/Z,E=f-C.l/Z,ot=f-C.m/Z);var vt=z.move(it,f),zt=z.move(it+w/2,K);return M.globals.previousPaths.length>0&&(zt=this.getPreviousPath(m,A,!0)),vt=this.isBoxPlot?[z.move(it,K)+z.line(it+w/2,K)+z.line(it+w/2,j)+z.line(it+w/4,j)+z.line(it+w-w/4,j)+z.line(it+w/2,j)+z.line(it+w/2,K)+z.line(it+w,K)+z.line(it+w,ot)+z.line(it,ot)+z.line(it,K+b/2),z.move(it,ot)+z.line(it+w,ot)+z.line(it+w,Q)+z.line(it+w/2,Q)+z.line(it+w/2,E)+z.line(it+w-w/4,E)+z.line(it+w/4,E)+z.line(it+w/2,E)+z.line(it+w/2,Q)+z.line(it,Q)+z.line(it,ot)+"z"]:[z.move(it,Q)+z.line(it+w/2,Q)+z.line(it+w/2,j)+z.line(it+w/2,Q)+z.line(it+w,Q)+z.line(it+w,K)+z.line(it+w/2,K)+z.line(it+w/2,E)+z.line(it+w/2,K)+z.line(it,K)+z.line(it,Q-b/2)],zt+=z.move(it,K),M.globals.isXNumeric||(u+=p),{pathTo:vt,pathFrom:zt,x:u,y:Q,barXPosition:it,color:this.isBoxPlot?V:N?[L]:[O]}}},{key:"drawHorizontalBoxPaths",value:function(i){var d=i.indexes;i.x;var u=i.y,p=i.yDivision,w=i.barHeight,f=i.zeroW,b=i.strokeWidth,M=this.w,z=new _(this.ctx),y=d.i,A=d.j,N=this.boxOptions.colors.lower;this.isBoxPlot&&(N=[this.boxOptions.colors.lower,this.boxOptions.colors.upper]);var L=this.invertedYRatio,O=d.realIndex,V=this.getOHLCValue(O,A),Z=f,m=f,C=Math.min(V.o,V.c),j=Math.max(V.o,V.c),E=V.m;M.globals.isXNumeric&&(u=(M.globals.seriesX[O][A]-M.globals.minX)/this.invertedXRatio-w/2);var K=u+w*this.visibleI;this.series[y][A]===void 0||this.series[y][A]===null?(C=f,j=f):(C=f+C/L,j=f+j/L,Z=f+V.h/L,m=f+V.l/L,E=f+V.m/L);var Q=z.move(f,K),ot=z.move(C,K+w/2);return M.globals.previousPaths.length>0&&(ot=this.getPreviousPath(O,A,!0)),Q=[z.move(C,K)+z.line(C,K+w/2)+z.line(Z,K+w/2)+z.line(Z,K+w/2-w/4)+z.line(Z,K+w/2+w/4)+z.line(Z,K+w/2)+z.line(C,K+w/2)+z.line(C,K+w)+z.line(E,K+w)+z.line(E,K)+z.line(C+b/2,K),z.move(E,K)+z.line(E,K+w)+z.line(j,K+w)+z.line(j,K+w/2)+z.line(m,K+w/2)+z.line(m,K+w-w/4)+z.line(m,K+w/4)+z.line(m,K+w/2)+z.line(j,K+w/2)+z.line(j,K)+z.line(E,K)+"z"],ot+=z.move(C,K),M.globals.isXNumeric||(u+=p),{pathTo:Q,pathFrom:ot,x:j,y:u,barYPosition:K,color:N}}},{key:"getOHLCValue",value:function(i,d){var u=this.w;return{o:this.isBoxPlot?u.globals.seriesCandleH[i][d]:u.globals.seriesCandleO[i][d],h:this.isBoxPlot?u.globals.seriesCandleO[i][d]:u.globals.seriesCandleH[i][d],m:u.globals.seriesCandleM[i][d],l:this.isBoxPlot?u.globals.seriesCandleC[i][d]:u.globals.seriesCandleL[i][d],c:this.isBoxPlot?u.globals.seriesCandleL[i][d]:u.globals.seriesCandleC[i][d]}}}]),a}(),L2=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"checkColorRange",value:function(){var s=this.w,a=!1,i=s.config.plotOptions[s.config.chart.type];return i.colorScale.ranges.length>0&&i.colorScale.ranges.map(function(d,u){d.from<=0&&(a=!0)}),a}},{key:"getShadeColor",value:function(s,a,i,d){var u=this.w,p=1,w=u.config.plotOptions[s].shadeIntensity,f=this.determineColor(s,a,i);u.globals.hasNegs||d?p=u.config.plotOptions[s].reverseNegativeShade?f.percent<0?f.percent/100*(1.25*w):(1-f.percent/100)*(1.25*w):f.percent<=0?1-(1+f.percent/100)*w:(1-f.percent/100)*w:(p=1-f.percent/100,s==="treemap"&&(p=(1-f.percent/100)*(1.25*w)));var b=f.color,M=new H;return u.config.plotOptions[s].enableShades&&(b=this.w.config.theme.mode==="dark"?H.hexToRgba(M.shadeColor(-1*p,f.color),u.config.fill.opacity):H.hexToRgba(M.shadeColor(p,f.color),u.config.fill.opacity)),{color:b,colorProps:f}}},{key:"determineColor",value:function(s,a,i){var d=this.w,u=d.globals.series[a][i],p=d.config.plotOptions[s],w=p.colorScale.inverse?i:a;p.distributed&&d.config.chart.type==="treemap"&&(w=i);var f=d.globals.colors[w],b=null,M=Math.min.apply(Math,F(d.globals.series[a])),z=Math.max.apply(Math,F(d.globals.series[a]));p.distributed||s!=="heatmap"||(M=d.globals.minY,z=d.globals.maxY),p.colorScale.min!==void 0&&(M=p.colorScale.mind.globals.maxY?p.colorScale.max:d.globals.maxY);var y=Math.abs(z)+Math.abs(M),A=100*u/(y===0?y-1e-6:y);return p.colorScale.ranges.length>0&&p.colorScale.ranges.map(function(N,L){if(u>=N.from&&u<=N.to){f=N.color,b=N.foreColor?N.foreColor:null,M=N.from,z=N.to;var O=Math.abs(z)+Math.abs(M);A=100*u/(O===0?O-1e-6:O)}}),{color:f,foreColor:b,percent:A}}},{key:"calculateDataLabels",value:function(s){var a=s.text,i=s.x,d=s.y,u=s.i,p=s.j,w=s.colorProps,f=s.fontSize,b=this.w.config.dataLabels,M=new _(this.ctx),z=new Et(this.ctx),y=null;if(b.enabled){y=M.group({class:"apexcharts-data-labels"});var A=b.offsetX,N=b.offsetY,L=i+A,O=d+parseFloat(b.style.fontSize)/3+N;z.plotDataLabelsText({x:L,y:O,text:a,i:u,j:p,color:w.foreColor,parent:y,fontSize:f,dataLabelsConfig:b})}return y}},{key:"addListeners",value:function(s){var a=new _(this.ctx);s.node.addEventListener("mouseenter",a.pathMouseEnter.bind(this,s)),s.node.addEventListener("mouseleave",a.pathMouseLeave.bind(this,s)),s.node.addEventListener("mousedown",a.pathMouseDown.bind(this,s))}}]),T}(),Gg=function(){function T(s,a){g(this,T),this.ctx=s,this.w=s.w,this.xRatio=a.xRatio,this.yRatio=a.yRatio,this.dynamicAnim=this.w.config.chart.animations.dynamicAnimation,this.helpers=new L2(s),this.rectRadius=this.w.config.plotOptions.heatmap.radius,this.strokeWidth=this.w.config.stroke.show?this.w.config.stroke.width:0}return k(T,[{key:"draw",value:function(s){var a=this.w,i=new _(this.ctx),d=i.group({class:"apexcharts-heatmap"});d.attr("clip-path","url(#gridRectMask".concat(a.globals.cuid,")"));var u=a.globals.gridWidth/a.globals.dataPoints,p=a.globals.gridHeight/a.globals.series.length,w=0,f=!1;this.negRange=this.helpers.checkColorRange();var b=s.slice();a.config.yaxis[0].reversed&&(f=!0,b.reverse());for(var M=f?0:b.length-1;f?M=0;f?M++:M--){var z=i.group({class:"apexcharts-series apexcharts-heatmap-series",seriesName:H.escapeString(a.globals.seriesNames[M]),rel:M+1,"data:realIndex":M});if(this.ctx.series.addCollapsedClassToSeries(z,M),a.config.chart.dropShadow.enabled){var y=a.config.chart.dropShadow;new W(this.ctx).dropShadow(z,y,M)}for(var A=0,N=a.config.plotOptions.heatmap.shadeIntensity,L=0;L-1&&this.pieClicked(y),i.config.dataLabels.enabled){var j=m.x,E=m.y,K=100*N/this.fullAngle+"%";if(N!==0&&i.config.plotOptions.pie.dataLabels.minAngleToShowLabelthis.fullAngle?a.endAngle=a.endAngle-(d+w):d+w=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle&&(f=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle-.01),Math.ceil(f)>this.fullAngle&&(f-=this.fullAngle);var b=Math.PI*(f-90)/180,M=a.centerX+u*Math.cos(w),z=a.centerY+u*Math.sin(w),y=a.centerX+u*Math.cos(b),A=a.centerY+u*Math.sin(b),N=H.polarToCartesian(a.centerX,a.centerY,a.donutSize,f),L=H.polarToCartesian(a.centerX,a.centerY,a.donutSize,p),O=d>180?1:0,V=["M",M,z,"A",u,u,0,O,1,y,A];return a.chartType==="donut"?[].concat(V,["L",N.x,N.y,"A",a.donutSize,a.donutSize,0,O,0,L.x,L.y,"L",M,z,"z"]).join(" "):a.chartType==="pie"||a.chartType==="polarArea"?[].concat(V,["L",a.centerX,a.centerY,"L",M,z]).join(" "):[].concat(V).join(" ")}},{key:"drawPolarElements",value:function(s){var a=this.w,i=new J(this.ctx),d=new _(this.ctx),u=new D2(this.ctx),p=d.group(),w=d.group(),f=i.niceScale(0,Math.ceil(this.maxY),a.config.yaxis[0].tickAmount,0,!0),b=f.result.reverse(),M=f.result.length;this.maxY=f.niceMax;for(var z=a.globals.radialSize,y=z/(M-1),A=0;A1&&s.total.show&&(u=s.total.color);var w=p.globals.dom.baseEl.querySelector(".apexcharts-datalabel-label"),f=p.globals.dom.baseEl.querySelector(".apexcharts-datalabel-value");i=(0,s.value.formatter)(i,p),d||typeof s.total.formatter!="function"||(i=s.total.formatter(p));var b=a===s.total.label;a=s.name.formatter(a,b,p),w!==null&&(w.textContent=a),f!==null&&(f.textContent=i),w!==null&&(w.style.fill=u)}},{key:"printDataLabelsInner",value:function(s,a){var i=this.w,d=s.getAttribute("data:value"),u=i.globals.seriesNames[parseInt(s.parentNode.getAttribute("rel"),10)-1];i.globals.series.length>1&&this.printInnerLabels(a,u,d,s);var p=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels-group");p!==null&&(p.style.opacity=1)}},{key:"drawSpokes",value:function(s){var a=this,i=this.w,d=new _(this.ctx),u=i.config.plotOptions.polarArea.spokes;if(u.strokeWidth!==0){for(var p=[],w=360/i.globals.series.length,f=0;f1)w&&!a.total.showAlways?b({makeSliceOut:!1,printLabel:!0}):this.printInnerLabels(a,a.total.label,a.total.formatter(u));else if(b({makeSliceOut:!1,printLabel:!0}),!w)if(u.globals.selectedDataPoints.length&&u.globals.series.length>1)if(u.globals.selectedDataPoints[0].length>0){var M=u.globals.selectedDataPoints[0],z=u.globals.dom.baseEl.querySelector(".apexcharts-".concat(this.chartType.toLowerCase(),"-slice-").concat(M));this.printDataLabelsInner(z,a)}else p&&u.globals.selectedDataPoints.length&&u.globals.selectedDataPoints[0].length===0&&(p.style.opacity=0);else p&&u.globals.series.length>1&&(p.style.opacity=0)}}]),T}(),Zg=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.chartType=this.w.config.chart.type,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled,this.animDur=0;var a=this.w;this.graphics=new _(this.ctx),this.lineColorArr=a.globals.stroke.colors!==void 0?a.globals.stroke.colors:a.globals.colors,this.defaultSize=a.globals.svgHeight0&&(E=a.getPreviousPath(V));for(var K=0;K=10?s.x>0?(i="start",d+=10):s.x<0&&(i="end",d-=10):i="middle",Math.abs(s.y)>=a-10&&(s.y<0?u-=10:s.y>0&&(u+=10)),{textAnchor:i,newX:d,newY:u}}},{key:"getPreviousPath",value:function(s){for(var a=this.w,i=null,d=0;d0&&parseInt(u.realIndex,10)===parseInt(s,10)&&a.globals.previousPaths[d].paths[0]!==void 0&&(i=a.globals.previousPaths[d].paths[0].d)}return i}},{key:"getDataPointsPos",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:this.dataPointsLen;s=s||[],a=a||[];for(var d=[],u=0;u=360&&(L=360-Math.abs(this.startAngle)-.1);var O=u.drawPath({d:"",stroke:A,strokeWidth:b*parseInt(y.strokeWidth,10)/100,fill:"none",strokeOpacity:y.opacity,classes:"apexcharts-radialbar-area"});if(y.dropShadow.enabled){var V=y.dropShadow;w.dropShadow(O,V)}z.add(O),O.attr("id","apexcharts-radialbarTrack-"+M),this.animatePaths(O,{centerX:i.centerX,centerY:i.centerY,endAngle:L,startAngle:N,size:i.size,i:M,totalItems:2,animBeginArr:0,dur:0,isTrack:!0,easing:d.globals.easing})}return p}},{key:"drawArcs",value:function(i){var d=this.w,u=new _(this.ctx),p=new Ft(this.ctx),w=new W(this.ctx),f=u.group(),b=this.getStrokeWidth(i);i.size=i.size-b/2;var M=d.config.plotOptions.radialBar.hollow.background,z=i.size-b*i.series.length-this.margin*i.series.length-b*parseInt(d.config.plotOptions.radialBar.track.strokeWidth,10)/100/2,y=z-d.config.plotOptions.radialBar.hollow.margin;d.config.plotOptions.radialBar.hollow.image!==void 0&&(M=this.drawHollowImage(i,f,z,M));var A=this.drawHollow({size:y,centerX:i.centerX,centerY:i.centerY,fill:M||"transparent"});if(d.config.plotOptions.radialBar.hollow.dropShadow.enabled){var N=d.config.plotOptions.radialBar.hollow.dropShadow;w.dropShadow(A,N)}var L=1;!this.radialDataLabels.total.show&&d.globals.series.length>1&&(L=0);var O=null;this.radialDataLabels.show&&(O=this.renderInnerDataLabels(this.radialDataLabels,{hollowSize:z,centerX:i.centerX,centerY:i.centerY,opacity:L})),d.config.plotOptions.radialBar.hollow.position==="back"&&(f.add(A),O&&f.add(O));var V=!1;d.config.plotOptions.radialBar.inverseOrder&&(V=!0);for(var Z=V?i.series.length-1:0;V?Z>=0:Z100?100:i.series[Z])/100,Q=Math.round(this.totalAngle*K)+this.startAngle,ot=void 0;d.globals.dataChanged&&(E=this.startAngle,ot=Math.round(this.totalAngle*H.negToZero(d.globals.previousPaths[Z])/100)+E),Math.abs(Q)+Math.abs(j)>=360&&(Q-=.01),Math.abs(ot)+Math.abs(E)>=360&&(ot-=.01);var it=Q-j,vt=Array.isArray(d.config.stroke.dashArray)?d.config.stroke.dashArray[Z]:d.config.stroke.dashArray,zt=u.drawPath({d:"",stroke:C,strokeWidth:b,fill:"none",fillOpacity:d.config.fill.opacity,classes:"apexcharts-radialbar-area apexcharts-radialbar-slice-"+Z,strokeDashArray:vt});if(_.setAttrs(zt.node,{"data:angle":it,"data:value":i.series[Z]}),d.config.chart.dropShadow.enabled){var Mt=d.config.chart.dropShadow;w.dropShadow(zt,Mt,Z)}w.setSelectionFilter(zt,0,Z),this.addListeners(zt,this.radialDataLabels),m.add(zt),zt.attr({index:0,j:Z});var Vt=0;!this.initialAnim||d.globals.resized||d.globals.dataChanged||(Vt=d.config.chart.animations.speed),d.globals.dataChanged&&(Vt=d.config.chart.animations.dynamicAnimation.speed),this.animDur=Vt/(1.2*i.series.length)+this.animDur,this.animBeginArr.push(this.animDur),this.animatePaths(zt,{centerX:i.centerX,centerY:i.centerY,endAngle:Q,startAngle:j,prevEndAngle:ot,prevStartAngle:E,size:i.size,i:Z,totalItems:2,animBeginArr:this.animBeginArr,dur:Vt,shouldSetPrevPaths:!0,easing:d.globals.easing})}return{g:f,elHollow:A,dataLabels:O}}},{key:"drawHollow",value:function(i){var d=new _(this.ctx).drawCircle(2*i.size);return d.attr({class:"apexcharts-radialbar-hollow",cx:i.centerX,cy:i.centerY,r:i.size,fill:i.fill}),d}},{key:"drawHollowImage",value:function(i,d,u,p){var w=this.w,f=new Ft(this.ctx),b=H.randomId(),M=w.config.plotOptions.radialBar.hollow.image;if(w.config.plotOptions.radialBar.hollow.imageClipped)f.clippedImgArea({width:u,height:u,image:M,patternID:"pattern".concat(w.globals.cuid).concat(b)}),p="url(#pattern".concat(w.globals.cuid).concat(b,")");else{var z=w.config.plotOptions.radialBar.hollow.imageWidth,y=w.config.plotOptions.radialBar.hollow.imageHeight;if(z===void 0&&y===void 0){var A=w.globals.dom.Paper.image(M).loaded(function(L){this.move(i.centerX-L.width/2+w.config.plotOptions.radialBar.hollow.imageOffsetX,i.centerY-L.height/2+w.config.plotOptions.radialBar.hollow.imageOffsetY)});d.add(A)}else{var N=w.globals.dom.Paper.image(M).loaded(function(L){this.move(i.centerX-z/2+w.config.plotOptions.radialBar.hollow.imageOffsetX,i.centerY-y/2+w.config.plotOptions.radialBar.hollow.imageOffsetY),this.size(z,y)});d.add(N)}}return p}},{key:"getStrokeWidth",value:function(i){var d=this.w;return i.size*(100-parseInt(d.config.plotOptions.radialBar.hollow.size,10))/100/(i.series.length+1)-this.margin}}]),a}(),Qg=function(T){I(a,Lr);var s=P(a);function a(){return g(this,a),s.apply(this,arguments)}return k(a,[{key:"draw",value:function(i,d){var u=this.w,p=new _(this.ctx);this.rangeBarOptions=this.w.config.plotOptions.rangeBar,this.series=i,this.seriesRangeStart=u.globals.seriesRangeStart,this.seriesRangeEnd=u.globals.seriesRangeEnd,this.barHelpers.initVariables(i);for(var w=p.group({class:"apexcharts-rangebar-series apexcharts-plot-series"}),f=0;f0&&(this.visibleI=this.visibleI+1);var V=0,Z=0;this.yRatio.length>1&&(this.yaxisIndex=L);var m=this.barHelpers.initialPositions();N=m.y,y=m.zeroW,A=m.x,Z=m.barWidth,V=m.barHeight,b=m.xDivision,M=m.yDivision,z=m.zeroH;for(var C=p.group({class:"apexcharts-datalabels","data:realIndex":L}),j=p.group({class:"apexcharts-rangebar-goals-markers"}),E=0;E0});return this.isHorizontal?(p=L.config.plotOptions.bar.rangeBarGroupRows?f+y*C:f+M*this.visibleI+y*C,j>-1&&!L.config.plotOptions.bar.rangeBarOverlap&&(O=L.globals.seriesRange[d][j].overlaps).indexOf(V)>-1&&(p=(M=N.barHeight/O.length)*this.visibleI+y*(100-parseInt(this.barOptions.barHeight,10))/100/2+M*(this.visibleI+O.indexOf(V))+y*C)):(C>-1&&(w=L.config.plotOptions.bar.rangeBarGroupRows?b+A*C:b+z*this.visibleI+A*C),j>-1&&!L.config.plotOptions.bar.rangeBarOverlap&&(O=L.globals.seriesRange[d][j].overlaps).indexOf(V)>-1&&(w=(z=N.barWidth/O.length)*this.visibleI+A*(100-parseInt(this.barOptions.barWidth,10))/100/2+z*(this.visibleI+O.indexOf(V))+A*C)),{barYPosition:p,barXPosition:w,barHeight:M,barWidth:z}}},{key:"drawRangeColumnPaths",value:function(i){var d=i.indexes,u=i.x,p=i.xDivision,w=i.barWidth,f=i.barXPosition,b=i.zeroH,M=this.w,z=d.i,y=d.j,A=this.yRatio[this.yaxisIndex],N=d.realIndex,L=this.getRangeValue(N,y),O=Math.min(L.start,L.end),V=Math.max(L.start,L.end);this.series[z][y]===void 0||this.series[z][y]===null?O=b:(O=b-O/A,V=b-V/A);var Z=Math.abs(V-O),m=this.barHelpers.getColumnPaths({barXPosition:f,barWidth:w,y1:O,y2:V,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,realIndex:d.realIndex,i:N,j:y,w:M});return M.globals.isXNumeric||(u+=p),{pathTo:m.pathTo,pathFrom:m.pathFrom,barHeight:Z,x:u,y:V,goalY:this.barHelpers.getGoalValues("y",null,b,z,y),barXPosition:f}}},{key:"drawRangeBarPaths",value:function(i){var d=i.indexes,u=i.y,p=i.y1,w=i.y2,f=i.yDivision,b=i.barHeight,M=i.barYPosition,z=i.zeroW,y=this.w,A=z+p/this.invertedYRatio,N=z+w/this.invertedYRatio,L=Math.abs(N-A),O=this.barHelpers.getBarpaths({barYPosition:M,barHeight:b,x1:A,x2:N,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,i:d.realIndex,realIndex:d.realIndex,j:d.j,w:y});return y.globals.isXNumeric||(u+=f),{pathTo:O.pathTo,pathFrom:O.pathFrom,barWidth:L,x:N,goalX:this.barHelpers.getGoalValues("x",z,null,d.realIndex,d.j),y:u}}},{key:"getRangeValue",value:function(i,d){var u=this.w;return{start:u.globals.seriesRangeStart[i][d],end:u.globals.seriesRangeEnd[i][d]}}}]),a}(),Jg=function(){function T(s){g(this,T),this.w=s.w,this.lineCtx=s}return k(T,[{key:"sameValueSeriesFix",value:function(s,a){var i=this.w;if((i.config.fill.type==="gradient"||i.config.fill.type[s]==="gradient")&&new tt(this.lineCtx.ctx,i).seriesHaveSameValues(s)){var d=a[s].slice();d[d.length-1]=d[d.length-1]+1e-6,a[s]=d}return a}},{key:"calculatePoints",value:function(s){var a=s.series,i=s.realIndex,d=s.x,u=s.y,p=s.i,w=s.j,f=s.prevY,b=this.w,M=[],z=[];if(w===0){var y=this.lineCtx.categoryAxisCorrection+b.config.markers.offsetX;b.globals.isXNumeric&&(y=(b.globals.seriesX[i][0]-b.globals.minX)/this.lineCtx.xRatio+b.config.markers.offsetX),M.push(y),z.push(H.isNumber(a[p][0])?f+b.config.markers.offsetY:null),M.push(d+b.config.markers.offsetX),z.push(H.isNumber(a[p][w+1])?u+b.config.markers.offsetY:null)}else M.push(d+b.config.markers.offsetX),z.push(H.isNumber(a[p][w+1])?u+b.config.markers.offsetY:null);return{x:M,y:z}}},{key:"checkPreviousPaths",value:function(s){for(var a=s.pathFromLine,i=s.pathFromArea,d=s.realIndex,u=this.w,p=0;p0&&parseInt(w.realIndex,10)===parseInt(d,10)&&(w.type==="line"?(this.lineCtx.appendPathFrom=!1,a=u.globals.previousPaths[p].paths[0].d):w.type==="area"&&(this.lineCtx.appendPathFrom=!1,i=u.globals.previousPaths[p].paths[0].d,u.config.stroke.show&&u.globals.previousPaths[p].paths[1]&&(a=u.globals.previousPaths[p].paths[1].d)))}return{pathFromLine:a,pathFromArea:i}}},{key:"determineFirstPrevY",value:function(s){var a,i=s.i,d=s.series,u=s.prevY,p=s.lineYPosition,w=this.w;if(((a=d[i])===null||a===void 0?void 0:a[0])!==void 0)u=(p=w.config.chart.stacked&&i>0?this.lineCtx.prevSeriesY[i-1][0]:this.lineCtx.zeroY)-d[i][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]+2*(this.lineCtx.isReversed?d[i][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]:0);else if(w.config.chart.stacked&&i>0&&d[i][0]===void 0){for(var f=i-1;f>=0;f--)if(d[f][0]!==null&&d[f][0]!==void 0){u=p=this.lineCtx.prevSeriesY[f][0];break}}return{prevY:u,lineYPosition:p}}}]),T}(),tw=function(T){for(var s,a,i,d,u=function(M){for(var z=[],y=M[0],A=M[1],N=z[0]=bi(y,A),L=1,O=M.length-1;L9&&(d=3*i/Math.sqrt(d),u[f]=d*s,u[f+1]=d*a);for(var b=0;b<=p;b++)d=(T[Math.min(p,b+1)][0]-T[Math.max(0,b-1)][0])/(6*(1+u[b]*u[b])),w.push([d||0,u[b]*d||0]);return w},ki=function(T){for(var s="",a=0;a4?(s+="C".concat(i[0],", ").concat(i[1]),s+=", ".concat(i[2],", ").concat(i[3]),s+=", ".concat(i[4],", ").concat(i[5])):d>2&&(s+="S".concat(i[0],", ").concat(i[1]),s+=", ".concat(i[2],", ").concat(i[3]))}return s},F2=function(T){var s=tw(T),a=T[1],i=T[0],d=[],u=s[1],p=s[0];d.push(i,[i[0]+p[0],i[1]+p[1],a[0]-u[0],a[1]-u[1],a[0],a[1]]);for(var w=2,f=s.length;w0&&(O=(u.globals.seriesX[y][0]-u.globals.minX)/this.xRatio),L.push(O);var V,Z=O,m=void 0,C=Z,j=this.zeroY,E=this.zeroY;j=this.lineHelpers.determineFirstPrevY({i:z,series:s,prevY:j,lineYPosition:0}).prevY,A.push(j),V=j,w==="rangeArea"&&(m=E=this.lineHelpers.determineFirstPrevY({i:z,series:d,prevY:E,lineYPosition:0}).prevY,N.push(E));var K={type:w,series:s,realIndex:y,i:z,x:O,y:1,pX:Z,pY:V,pathsFrom:this._calculatePathsFrom({type:w,series:s,i:z,realIndex:y,prevX:C,prevY:j,prevY2:E}),linePaths:[],areaPaths:[],seriesIndex:i,lineYPosition:0,xArrj:L,yArrj:A,y2Arrj:N,seriesRangeEnd:d},Q=this._iterateOverDataPoints(h(h({},K),{},{iterations:w==="rangeArea"?s[z].length-1:void 0,isRangeStart:!0}));if(w==="rangeArea"){var ot=this._calculatePathsFrom({series:d,i:z,realIndex:y,prevX:C,prevY:E}),it=this._iterateOverDataPoints(h(h({},K),{},{series:d,pY:m,pathsFrom:ot,iterations:d[z].length-1,isRangeStart:!1}));Q.linePaths[0]=it.linePath+Q.linePath,Q.pathFromLine=it.pathFromLine+Q.pathFromLine}this._handlePaths({type:w,realIndex:y,i:z,paths:Q}),this.elSeries.add(this.elPointsMain),this.elSeries.add(this.elDataLabelsWrap),M.push(this.elSeries)}if(u.config.chart.stacked)for(var vt=M.length;vt>0;vt--)f.add(M[vt-1]);else for(var zt=0;zt1&&(this.yaxisIndex=i),this.isReversed=d.config.yaxis[this.yaxisIndex]&&d.config.yaxis[this.yaxisIndex].reversed,this.zeroY=d.globals.gridHeight-this.baseLineY[this.yaxisIndex]-(this.isReversed?d.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),this.areaBottomY=this.zeroY,(this.zeroY>d.globals.gridHeight||d.config.plotOptions.area.fillTo==="end")&&(this.areaBottomY=d.globals.gridHeight),this.categoryAxisCorrection=this.xDivision/2,this.elSeries=u.group({class:"apexcharts-series",seriesName:H.escapeString(d.globals.seriesNames[i])}),this.elPointsMain=u.group({class:"apexcharts-series-markers-wrap","data:realIndex":i}),this.elDataLabelsWrap=u.group({class:"apexcharts-datalabels","data:realIndex":i});var p=s[a].length===d.globals.dataPoints;this.elSeries.attr({"data:longestSeries":p,rel:a+1,"data:realIndex":i}),this.appendPathFrom=!0}},{key:"_calculatePathsFrom",value:function(s){var a,i,d,u,p=s.type,w=s.series,f=s.i,b=s.realIndex,M=s.prevX,z=s.prevY,y=s.prevY2,A=this.w,N=new _(this.ctx);if(w[f][0]===null){for(var L=0;L0){var O=this.lineHelpers.checkPreviousPaths({pathFromLine:d,pathFromArea:u,realIndex:b});d=O.pathFromLine,u=O.pathFromArea}return{prevX:M,prevY:z,linePath:a,areaPath:i,pathFromLine:d,pathFromArea:u}}},{key:"_handlePaths",value:function(s){var a=s.type,i=s.realIndex,d=s.i,u=s.paths,p=this.w,w=new _(this.ctx),f=new Ft(this.ctx);this.prevSeriesY.push(u.yArrj),p.globals.seriesXvalues[i]=u.xArrj,p.globals.seriesYvalues[i]=u.yArrj;var b=p.config.forecastDataPoints;if(b.count>0&&a!=="rangeArea"){var M=p.globals.seriesXvalues[i][p.globals.seriesXvalues[i].length-b.count-1],z=w.drawRect(M,0,p.globals.gridWidth,p.globals.gridHeight,0);p.globals.dom.elForecastMask.appendChild(z.node);var y=w.drawRect(0,0,M,p.globals.gridHeight,0);p.globals.dom.elNonForecastMask.appendChild(y.node)}this.pointsChart||p.globals.delayedElements.push({el:this.elPointsMain.node,index:i});var A={i:d,realIndex:i,animationDelay:d,initialSpeed:p.config.chart.animations.speed,dataChangeSpeed:p.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(a)};if(a==="area")for(var N=f.fillPath({seriesNumber:i}),L=0;L0&&a!=="rangeArea"){var K=w.renderPaths(j);K.node.setAttribute("stroke-dasharray",b.dashArray),b.strokeWidth&&K.node.setAttribute("stroke-width",b.strokeWidth),this.elSeries.add(K),K.attr("clip-path","url(#forecastMask".concat(p.globals.cuid,")")),E.attr("clip-path","url(#nonForecastMask".concat(p.globals.cuid,")"))}}}}},{key:"_iterateOverDataPoints",value:function(s){var a=s.type,i=s.series,d=s.iterations,u=s.realIndex,p=s.i,w=s.x,f=s.y,b=s.pX,M=s.pY,z=s.pathsFrom,y=s.linePaths,A=s.areaPaths,N=s.seriesIndex,L=s.lineYPosition,O=s.xArrj,V=s.yArrj,Z=s.y2Arrj,m=s.isRangeStart,C=s.seriesRangeEnd,j=this.w,E=new _(this.ctx),K=this.yRatio,Q=z.prevY,ot=z.linePath,it=z.areaPath,vt=z.pathFromLine,zt=z.pathFromArea,Mt=H.isNumber(j.globals.minYArr[u])?j.globals.minYArr[u]:j.globals.minY;d||(d=j.globals.dataPoints>1?j.globals.dataPoints-1:j.globals.dataPoints);for(var Vt=f,Yt=0;Yt0&&j.globals.collapsedSeries.length-1){Le--;break}return Le>=0?Le:0}(p-1)][Yt+1]:L=this.zeroY:L=this.zeroY,ie?f=L-Mt/K[this.yaxisIndex]+2*(this.isReversed?Mt/K[this.yaxisIndex]:0):(f=L-i[p][Yt+1]/K[this.yaxisIndex]+2*(this.isReversed?i[p][Yt+1]/K[this.yaxisIndex]:0),a==="rangeArea"&&(Vt=L-C[p][Yt+1]/K[this.yaxisIndex]+2*(this.isReversed?C[p][Yt+1]/K[this.yaxisIndex]:0))),O.push(w),V.push(f),Z.push(Vt);var ce=this.lineHelpers.calculatePoints({series:i,x:w,y:f,realIndex:u,i:p,j:Yt,prevY:Q}),Ie=this._createPaths({type:a,series:i,i:p,realIndex:u,j:Yt,x:w,y:f,y2:Vt,xArrj:O,yArrj:V,y2Arrj:Z,pX:b,pY:M,linePath:ot,areaPath:it,linePaths:y,areaPaths:A,seriesIndex:N,isRangeStart:m});A=Ie.areaPaths,y=Ie.linePaths,b=Ie.pX,M=Ie.pY,it=Ie.areaPath,ot=Ie.linePath,!this.appendPathFrom||j.config.stroke.curve==="monotoneCubic"&&a==="rangeArea"||(vt+=E.line(w,this.zeroY),zt+=E.line(w,this.zeroY)),this.handleNullDataPoints(i,ce,p,Yt,u),this._handleMarkersAndLabels({type:a,pointsPos:ce,i:p,j:Yt,realIndex:u,isRangeStart:m})}return{yArrj:V,xArrj:O,pathFromArea:zt,areaPaths:A,pathFromLine:vt,linePaths:y,linePath:ot,areaPath:it}}},{key:"_handleMarkersAndLabels",value:function(s){var a=s.type,i=s.pointsPos,d=s.isRangeStart,u=s.i,p=s.j,w=s.realIndex,f=this.w,b=new Et(this.ctx);if(this.pointsChart)this.scatter.draw(this.elSeries,p,{realIndex:w,pointsPos:i,zRatio:this.zRatio,elParent:this.elPointsMain});else{f.globals.series[u].length>1&&this.elPointsMain.node.classList.add("apexcharts-element-hidden");var M=this.markers.plotChartMarkers(i,w,p+1);M!==null&&this.elPointsMain.add(M)}var z=b.drawDataLabel({type:a,isRangeStart:d,pos:i,i:w,j:p+1});z!==null&&this.elDataLabelsWrap.add(z)}},{key:"_createPaths",value:function(s){var a=s.type,i=s.series,d=s.i,u=s.realIndex,p=s.j,w=s.x,f=s.y,b=s.xArrj,M=s.yArrj,z=s.y2,y=s.y2Arrj,A=s.pX,N=s.pY,L=s.linePath,O=s.areaPath,V=s.linePaths,Z=s.areaPaths,m=s.seriesIndex,C=s.isRangeStart,j=this.w,E=new _(this.ctx),K=j.config.stroke.curve,Q=this.areaBottomY;if(Array.isArray(j.config.stroke.curve)&&(K=Array.isArray(m)?j.config.stroke.curve[m[d]]:j.config.stroke.curve[d]),(a==="rangeArea"&&(j.globals.hasNullValues||j.config.forecastDataPoints.count>0)||j.globals.hasNullValues)&&K==="monotoneCubic"&&(K="straight"),K==="smooth"){var ot=.35*(w-A);j.globals.hasNullValues?(i[d][p]!==null&&(i[d][p+1]!==null?(L=E.move(A,N)+E.curve(A+ot,N,w-ot,f,w+1,f),O=E.move(A+1,N)+E.curve(A+ot,N,w-ot,f,w+1,f)+E.line(w,Q)+E.line(A,Q)+"z"):(L=E.move(A,N),O=E.move(A,N)+"z")),V.push(L),Z.push(O)):(L+=E.curve(A+ot,N,w-ot,f,w,f),O+=E.curve(A+ot,N,w-ot,f,w,f)),A=w,N=f,p===i[d].length-2&&(O+=E.curve(A,N,w,f,w,Q)+E.move(w,f)+"z",a==="rangeArea"&&C?L+=E.curve(A,N,w,f,w,z)+E.move(w,z)+"z":j.globals.hasNullValues||(V.push(L),Z.push(O)))}else if(K==="monotoneCubic"){if(a==="rangeArea"?b.length===j.globals.dataPoints:p===i[d].length-2){var it=b.map(function(he,ce){return[b[ce],M[ce]]}),vt=F2(it);if(L+=ki(vt),O+=ki(vt),A=w,N=f,a==="rangeArea"&&C){L+=E.line(b[b.length-1],y[y.length-1]);var zt=b.slice().reverse(),Mt=y.slice().reverse(),Vt=zt.map(function(he,ce){return[zt[ce],Mt[ce]]}),Yt=F2(Vt);O=L+=ki(Yt)}else O+=E.curve(A,N,w,f,w,Q)+E.move(w,f)+"z";V.push(L),Z.push(O)}}else{if(i[d][p+1]===null){L+=E.move(w,f);var ie=j.globals.isXNumeric?(j.globals.seriesX[u][p]-j.globals.minX)/this.xRatio:w-this.xDivision;O=O+E.line(ie,Q)+E.move(w,f)+"z"}i[d][p]===null&&(L+=E.move(w,f),O+=E.move(w,Q)),K==="stepline"?(L=L+E.line(w,null,"H")+E.line(null,f,"V"),O=O+E.line(w,null,"H")+E.line(null,f,"V")):K==="straight"&&(L+=E.line(w,f),O+=E.line(w,f)),p===i[d].length-2&&(O=O+E.line(w,Q)+E.move(w,f)+"z",a==="rangeArea"&&C?L=L+E.line(w,z)+E.move(w,z)+"z":(V.push(L),Z.push(O)))}return{linePaths:V,areaPaths:Z,pX:A,pY:N,linePath:L,areaPath:O}}},{key:"handleNullDataPoints",value:function(s,a,i,d,u){var p=this.w;if(s[i][d]===null&&p.config.markers.showNullDataPoints||s[i].length===1){var w=this.markers.plotChartMarkers(a,u,d+1,this.strokeWidth-p.config.markers.strokeWidth/2,!0);w!==null&&this.elPointsMain.add(w)}}}]),T}();window.TreemapSquared={},window.TreemapSquared.generate=function(){function T(w,f,b,M){this.xoffset=w,this.yoffset=f,this.height=M,this.width=b,this.shortestEdge=function(){return Math.min(this.height,this.width)},this.getCoordinates=function(z){var y,A=[],N=this.xoffset,L=this.yoffset,O=u(z)/this.height,V=u(z)/this.width;if(this.width>=this.height)for(y=0;y=this.height){var A=z/this.height,N=this.width-A;y=new T(this.xoffset+A,this.yoffset,N,this.height)}else{var L=z/this.width,O=this.height-L;y=new T(this.xoffset,this.yoffset+L,this.width,O)}return y}}function s(w,f,b,M,z){M=M===void 0?0:M,z=z===void 0?0:z;var y=a(function(A,N){var L,O=[],V=N/u(A);for(L=0;L=m}(f,y=w[0],z)?(f.push(y),a(w.slice(1),f,b,M)):(A=b.cutArea(u(f),M),M.push(b.getCoordinates(f)),a(w,[],A,M)),M;M.push(b.getCoordinates(f))}function i(w,f){var b=Math.min.apply(Math,w),M=Math.max.apply(Math,w),z=u(w);return Math.max(Math.pow(f,2)*M/Math.pow(z,2),Math.pow(z,2)/(Math.pow(f,2)*b))}function d(w){return w&&w.constructor===Array}function u(w){var f,b=0;for(f=0;fp-d&&b.width<=w-u){var M=f.rotateAroundCenter(s.node);s.node.setAttribute("transform","rotate(-90 ".concat(M.x," ").concat(M.y,") translate(").concat(b.height/3,")"))}}},{key:"truncateLabels",value:function(s,a,i,d,u,p){var w=new _(this.ctx),f=w.getTextRects(s,a).width+this.w.config.stroke.width+5>u-i&&p-d>u-i?p-d:u-i,b=w.getTextBasedOnMaxWidth({text:s,maxWidth:f,fontSize:a});return s.length!==b.length&&f/a<5?"":b}},{key:"animateTreemap",value:function(s,a,i,d){var u=new U(this.ctx);u.animateRect(s,{x:a.x,y:a.y,width:a.width,height:a.height},{x:i.x,y:i.y,width:i.width,height:i.height},d,function(){u.animationCompleted(s)})}}]),T}(),nw=86400,lw=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.timeScaleArray=[],this.utc=this.w.config.xaxis.labels.datetimeUTC}return k(T,[{key:"calculateTimeScaleTicks",value:function(s,a){var i=this,d=this.w;if(d.globals.allSeriesCollapsed)return d.globals.labels=[],d.globals.timescaleLabels=[],[];var u=new dt(this.ctx),p=(a-s)/864e5;this.determineInterval(p),d.globals.disableZoomIn=!1,d.globals.disableZoomOut=!1,p<.00011574074074074075?d.globals.disableZoomIn=!0:p>5e4&&(d.globals.disableZoomOut=!0);var w=u.getTimeUnitsfromTimestamp(s,a,this.utc),f=d.globals.gridWidth/p,b=f/24,M=b/60,z=M/60,y=Math.floor(24*p),A=Math.floor(1440*p),N=Math.floor(p*nw),L=Math.floor(p),O=Math.floor(p/30),V=Math.floor(p/365),Z={minMillisecond:w.minMillisecond,minSecond:w.minSecond,minMinute:w.minMinute,minHour:w.minHour,minDate:w.minDate,minMonth:w.minMonth,minYear:w.minYear},m={firstVal:Z,currentMillisecond:Z.minMillisecond,currentSecond:Z.minSecond,currentMinute:Z.minMinute,currentHour:Z.minHour,currentMonthDate:Z.minDate,currentDate:Z.minDate,currentMonth:Z.minMonth,currentYear:Z.minYear,daysWidthOnXAxis:f,hoursWidthOnXAxis:b,minutesWidthOnXAxis:M,secondsWidthOnXAxis:z,numberOfSeconds:N,numberOfMinutes:A,numberOfHours:y,numberOfDays:L,numberOfMonths:O,numberOfYears:V};switch(this.tickInterval){case"years":this.generateYearScale(m);break;case"months":case"half_year":this.generateMonthScale(m);break;case"months_days":case"months_fortnight":case"days":case"week_days":this.generateDayScale(m);break;case"hours":this.generateHourScale(m);break;case"minutes_fives":case"minutes":this.generateMinuteScale(m);break;case"seconds_tens":case"seconds_fives":case"seconds":this.generateSecondScale(m)}var C=this.timeScaleArray.map(function(j){var E={position:j.position,unit:j.unit,year:j.year,day:j.day?j.day:1,hour:j.hour?j.hour:0,month:j.month+1};return j.unit==="month"?h(h({},E),{},{day:1,value:j.value+1}):j.unit==="day"||j.unit==="hour"?h(h({},E),{},{value:j.value}):j.unit==="minute"?h(h({},E),{},{value:j.value,minute:j.value}):j.unit==="second"?h(h({},E),{},{value:j.value,minute:j.minute,second:j.second}):j});return C.filter(function(j){var E=1,K=Math.ceil(d.globals.gridWidth/120),Q=j.value;d.config.xaxis.tickAmount!==void 0&&(K=d.config.xaxis.tickAmount),C.length>K&&(E=Math.floor(C.length/K));var ot=!1,it=!1;switch(i.tickInterval){case"years":j.unit==="year"&&(ot=!0);break;case"half_year":E=7,j.unit==="year"&&(ot=!0);break;case"months":E=1,j.unit==="year"&&(ot=!0);break;case"months_fortnight":E=15,j.unit!=="year"&&j.unit!=="month"||(ot=!0),Q===30&&(it=!0);break;case"months_days":E=10,j.unit==="month"&&(ot=!0),Q===30&&(it=!0);break;case"week_days":E=8,j.unit==="month"&&(ot=!0);break;case"days":E=1,j.unit==="month"&&(ot=!0);break;case"hours":j.unit==="day"&&(ot=!0);break;case"minutes_fives":case"seconds_fives":Q%5!=0&&(it=!0);break;case"seconds_tens":Q%10!=0&&(it=!0)}if(i.tickInterval==="hours"||i.tickInterval==="minutes_fives"||i.tickInterval==="seconds_tens"||i.tickInterval==="seconds_fives"){if(!it)return!0}else if((Q%E==0||ot)&&!it)return!0})}},{key:"recalcDimensionsBasedOnFormat",value:function(s,a){var i=this.w,d=this.formatDates(s),u=this.removeOverlappingTS(d);i.globals.timescaleLabels=u.slice(),new ae(this.ctx).plotCoords()}},{key:"determineInterval",value:function(s){var a=24*s,i=60*a;switch(!0){case s/365>5:this.tickInterval="years";break;case s>800:this.tickInterval="half_year";break;case s>180:this.tickInterval="months";break;case s>90:this.tickInterval="months_fortnight";break;case s>60:this.tickInterval="months_days";break;case s>30:this.tickInterval="week_days";break;case s>2:this.tickInterval="days";break;case a>2.4:this.tickInterval="hours";break;case i>15:this.tickInterval="minutes_fives";break;case i>5:this.tickInterval="minutes";break;case i>1:this.tickInterval="seconds_tens";break;case 60*i>20:this.tickInterval="seconds_fives";break;default:this.tickInterval="seconds"}}},{key:"generateYearScale",value:function(s){var a=s.firstVal,i=s.currentMonth,d=s.currentYear,u=s.daysWidthOnXAxis,p=s.numberOfYears,w=a.minYear,f=0,b=new dt(this.ctx),M="year";if(a.minDate>1||a.minMonth>0){var z=b.determineRemainingDaysOfYear(a.minYear,a.minMonth,a.minDate);f=(b.determineDaysOfYear(a.minYear)-z+1)*u,w=a.minYear+1,this.timeScaleArray.push({position:f,value:w,unit:M,year:w,month:H.monthMod(i+1)})}else a.minDate===1&&a.minMonth===0&&this.timeScaleArray.push({position:f,value:w,unit:M,year:d,month:H.monthMod(i+1)});for(var y=w,A=f,N=0;N1){b=(M.determineDaysOfMonths(d+1,a.minYear)-i+1)*p,f=H.monthMod(d+1);var A=u+y,N=H.monthMod(f),L=f;f===0&&(z="year",L=A,N=1,A+=y+=1),this.timeScaleArray.push({position:b,value:L,unit:z,year:A,month:N})}else this.timeScaleArray.push({position:b,value:f,unit:z,year:u,month:H.monthMod(d)});for(var O=f+1,V=b,Z=0,m=1;Zw.determineDaysOfMonths(C+1,j)&&(M=1,f="month",A=C+=1),C},y=(24-a.minHour)*u,A=b,N=z(M,i,d);a.minHour===0&&a.minDate===1?(y=0,A=H.monthMod(a.minMonth),f="month",M=a.minDate,p++):a.minDate!==1&&a.minHour===0&&a.minMinute===0&&(y=0,b=a.minDate,A=b,N=z(M=b,i,d)),this.timeScaleArray.push({position:y,value:A,unit:f,year:this._getYear(d,N,0),month:H.monthMod(N),day:M});for(var L=y,O=0;Of.determineDaysOfMonths(K+1,u)&&(O=1,K+=1),{month:K,date:O}},z=function(E,K){return E>f.determineDaysOfMonths(K+1,u)?K+=1:K},y=60-(a.minMinute+a.minSecond/60),A=y*p,N=a.minHour+1,L=N+1;y===60&&(A=0,L=(N=a.minHour)+1);var O=i,V=z(O,d);this.timeScaleArray.push({position:A,value:N,unit:b,day:O,hour:L,year:u,month:H.monthMod(V)});for(var Z=A,m=0;m=24&&(L=0,b="day",V=M(O+=1,V).month,V=z(O,V));var C=this._getYear(u,V,0);Z=60*p+Z;var j=L===0?O:L;this.timeScaleArray.push({position:Z,value:j,unit:b,hour:L,day:O,year:C,month:H.monthMod(V)}),L++}}},{key:"generateMinuteScale",value:function(s){for(var a=s.currentMillisecond,i=s.currentSecond,d=s.currentMinute,u=s.currentHour,p=s.currentDate,w=s.currentMonth,f=s.currentYear,b=s.minutesWidthOnXAxis,M=s.secondsWidthOnXAxis,z=s.numberOfMinutes,y=d+1,A=p,N=w,L=f,O=u,V=(60-i-a/1e3)*M,Z=0;Z=60&&(y=0,(O+=1)===24&&(O=0)),this.timeScaleArray.push({position:V,value:y,unit:"minute",hour:O,minute:y,day:A,year:this._getYear(L,N,0),month:H.monthMod(N)}),V+=b,y++}},{key:"generateSecondScale",value:function(s){for(var a=s.currentMillisecond,i=s.currentSecond,d=s.currentMinute,u=s.currentHour,p=s.currentDate,w=s.currentMonth,f=s.currentYear,b=s.secondsWidthOnXAxis,M=s.numberOfSeconds,z=i+1,y=d,A=p,N=w,L=f,O=u,V=(1e3-a)/1e3*b,Z=0;Z=60&&(z=0,++y>=60&&(y=0,++O===24&&(O=0))),this.timeScaleArray.push({position:V,value:z,unit:"second",hour:O,minute:y,second:z,day:A,year:this._getYear(L,N,0),month:H.monthMod(N)}),V+=b,z++}},{key:"createRawDateString",value:function(s,a){var i=s.year;return s.month===0&&(s.month=1),i+="-"+("0"+s.month.toString()).slice(-2),s.unit==="day"?i+=s.unit==="day"?"-"+("0"+a).slice(-2):"-01":i+="-"+("0"+(s.day?s.day:"1")).slice(-2),s.unit==="hour"?i+=s.unit==="hour"?"T"+("0"+a).slice(-2):"T00":i+="T"+("0"+(s.hour?s.hour:"0")).slice(-2),s.unit==="minute"?i+=":"+("0"+a).slice(-2):i+=":"+(s.minute?("0"+s.minute).slice(-2):"00"),s.unit==="second"?i+=":"+("0"+a).slice(-2):i+=":00",this.utc&&(i+=".000Z"),i}},{key:"formatDates",value:function(s){var a=this,i=this.w;return s.map(function(d){var u=d.value.toString(),p=new dt(a.ctx),w=a.createRawDateString(d,u),f=p.getDate(p.parseDate(w));if(a.utc||(f=p.getDate(p.parseDateWithTimezone(w))),i.config.xaxis.labels.format===void 0){var b="dd MMM",M=i.config.xaxis.labels.datetimeFormatter;d.unit==="year"&&(b=M.year),d.unit==="month"&&(b=M.month),d.unit==="day"&&(b=M.day),d.unit==="hour"&&(b=M.hour),d.unit==="minute"&&(b=M.minute),d.unit==="second"&&(b=M.second),u=p.formatDate(f,b)}else u=p.formatDate(f,i.config.xaxis.labels.format);return{dateString:w,position:d.position,value:u,unit:d.unit,year:d.year,month:d.month}})}},{key:"removeOverlappingTS",value:function(s){var a,i=this,d=new _(this.ctx),u=!1;s.length>0&&s[0].value&&s.every(function(f){return f.value.length===s[0].value.length})&&(u=!0,a=d.getTextRects(s[0].value).width);var p=0,w=s.map(function(f,b){if(b>0&&i.w.config.xaxis.labels.hideOverlappingLabels){var M=u?a:d.getTextRects(s[p].value).width,z=s[p].position;return f.position>z+M+10?(p=b,f):null}return f});return w=w.filter(function(f){return f!==null})}},{key:"_getYear",value:function(s,a,i){return s+Math.floor(a/12)+i}}]),T}(),rw=function(){function T(s,a){g(this,T),this.ctx=a,this.w=a.w,this.el=s}return k(T,[{key:"setupElements",value:function(){var s=this.w.globals,a=this.w.config,i=a.chart.type;s.axisCharts=["line","area","bar","rangeBar","rangeArea","candlestick","boxPlot","scatter","bubble","radar","heatmap","treemap"].indexOf(i)>-1,s.xyCharts=["line","area","bar","rangeBar","rangeArea","candlestick","boxPlot","scatter","bubble"].indexOf(i)>-1,s.isBarHorizontal=(a.chart.type==="bar"||a.chart.type==="rangeBar"||a.chart.type==="boxPlot")&&a.plotOptions.bar.horizontal,s.chartClass=".apexcharts"+s.chartID,s.dom.baseEl=this.el,s.dom.elWrap=document.createElement("div"),_.setAttrs(s.dom.elWrap,{id:s.chartClass.substring(1),class:"apexcharts-canvas "+s.chartClass.substring(1)}),this.el.appendChild(s.dom.elWrap),s.dom.Paper=new window.SVG.Doc(s.dom.elWrap),s.dom.Paper.attr({class:"apexcharts-svg","xmlns:data":"ApexChartsNS",transform:"translate(".concat(a.chart.offsetX,", ").concat(a.chart.offsetY,")")}),s.dom.Paper.node.style.background=a.chart.background,this.setSVGDimensions(),s.dom.elLegendForeign=document.createElementNS(s.SVGNS,"foreignObject"),_.setAttrs(s.dom.elLegendForeign,{x:0,y:0,width:s.svgWidth,height:s.svgHeight}),s.dom.elLegendWrap=document.createElement("div"),s.dom.elLegendWrap.classList.add("apexcharts-legend"),s.dom.elLegendWrap.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),s.dom.elLegendForeign.appendChild(s.dom.elLegendWrap),s.dom.Paper.node.appendChild(s.dom.elLegendForeign),s.dom.elGraphical=s.dom.Paper.group().attr({class:"apexcharts-inner apexcharts-graphical"}),s.dom.elDefs=s.dom.Paper.defs(),s.dom.Paper.add(s.dom.elGraphical),s.dom.elGraphical.add(s.dom.elDefs)}},{key:"plotChartType",value:function(s,a){var i=this.w,d=i.config,u=i.globals,p={series:[],i:[]},w={series:[],i:[]},f={series:[],i:[]},b={series:[],i:[]},M={series:[],i:[]},z={series:[],i:[]},y={series:[],i:[]},A={series:[],i:[]},N={series:[],seriesRangeEnd:[],i:[]};u.series.map(function(K,Q){var ot=0;s[Q].type!==void 0?(s[Q].type==="column"||s[Q].type==="bar"?(u.series.length>1&&d.plotOptions.bar.horizontal&&console.warn("Horizontal bars are not supported in a mixed/combo chart. Please turn off `plotOptions.bar.horizontal`"),M.series.push(K),M.i.push(Q),ot++,i.globals.columnSeries=M.series):s[Q].type==="area"?(w.series.push(K),w.i.push(Q),ot++):s[Q].type==="line"?(p.series.push(K),p.i.push(Q),ot++):s[Q].type==="scatter"?(f.series.push(K),f.i.push(Q)):s[Q].type==="bubble"?(b.series.push(K),b.i.push(Q),ot++):s[Q].type==="candlestick"?(z.series.push(K),z.i.push(Q),ot++):s[Q].type==="boxPlot"?(y.series.push(K),y.i.push(Q),ot++):s[Q].type==="rangeBar"?(A.series.push(K),A.i.push(Q),ot++):s[Q].type==="rangeArea"?(N.series.push(u.seriesRangeStart[Q]),N.seriesRangeEnd.push(u.seriesRangeEnd[Q]),N.i.push(Q),ot++):console.warn("You have specified an unrecognized chart type. Available types for this property are line/area/column/bar/scatter/bubble/candlestick/boxPlot/rangeBar/rangeArea"),ot>1&&(u.comboCharts=!0)):(p.series.push(K),p.i.push(Q))});var L=new Mi(this.ctx,a),O=new mi(this.ctx,a);this.ctx.pie=new O2(this.ctx);var V=new Kg(this.ctx);this.ctx.rangeBar=new Qg(this.ctx,a);var Z=new Zg(this.ctx),m=[];if(u.comboCharts){if(w.series.length>0&&m.push(L.draw(w.series,"area",w.i)),M.series.length>0)if(i.config.chart.stacked){var C=new P2(this.ctx,a);m.push(C.draw(M.series,M.i))}else this.ctx.bar=new Lr(this.ctx,a),m.push(this.ctx.bar.draw(M.series,M.i));if(N.series.length>0&&m.push(L.draw(N.series,"rangeArea",N.i,N.seriesRangeEnd)),p.series.length>0&&m.push(L.draw(p.series,"line",p.i)),z.series.length>0&&m.push(O.draw(z.series,"candlestick",z.i)),y.series.length>0&&m.push(O.draw(y.series,"boxPlot",y.i)),A.series.length>0&&m.push(this.ctx.rangeBar.draw(A.series,A.i)),f.series.length>0){var j=new Mi(this.ctx,a,!0);m.push(j.draw(f.series,"scatter",f.i))}if(b.series.length>0){var E=new Mi(this.ctx,a,!0);m.push(E.draw(b.series,"bubble",b.i))}}else switch(d.chart.type){case"line":m=L.draw(u.series,"line");break;case"area":m=L.draw(u.series,"area");break;case"bar":d.chart.stacked?m=new P2(this.ctx,a).draw(u.series):(this.ctx.bar=new Lr(this.ctx,a),m=this.ctx.bar.draw(u.series));break;case"candlestick":m=new mi(this.ctx,a).draw(u.series,"candlestick");break;case"boxPlot":m=new mi(this.ctx,a).draw(u.series,d.chart.type);break;case"rangeBar":m=this.ctx.rangeBar.draw(u.series);break;case"rangeArea":m=L.draw(u.seriesRangeStart,"rangeArea",void 0,u.seriesRangeEnd);break;case"heatmap":m=new Gg(this.ctx,a).draw(u.series);break;case"treemap":m=new ew(this.ctx,a).draw(u.series);break;case"pie":case"donut":case"polarArea":m=this.ctx.pie.draw(u.series);break;case"radialBar":m=V.draw(u.series);break;case"radar":m=Z.draw(u.series);break;default:m=L.draw(u.series)}return m}},{key:"setSVGDimensions",value:function(){var s=this.w.globals,a=this.w.config;s.svgWidth=a.chart.width,s.svgHeight=a.chart.height;var i=H.getDimensions(this.el),d=a.chart.width.toString().split(/[0-9]+/g).pop();d==="%"?H.isNumber(i[0])&&(i[0].width===0&&(i=H.getDimensions(this.el.parentNode)),s.svgWidth=i[0]*parseInt(a.chart.width,10)/100):d!=="px"&&d!==""||(s.svgWidth=parseInt(a.chart.width,10));var u=a.chart.height.toString().split(/[0-9]+/g).pop();if(s.svgHeight!=="auto"&&s.svgHeight!=="")if(u==="%"){var p=H.getDimensions(this.el.parentNode);s.svgHeight=p[1]*parseInt(a.chart.height,10)/100}else s.svgHeight=parseInt(a.chart.height,10);else s.axisCharts?s.svgHeight=s.svgWidth/1.61:s.svgHeight=s.svgWidth/1.2;if(s.svgWidth<0&&(s.svgWidth=0),s.svgHeight<0&&(s.svgHeight=0),_.setAttrs(s.dom.Paper.node,{width:s.svgWidth,height:s.svgHeight}),u!=="%"){var w=a.chart.sparkline.enabled?0:s.axisCharts?a.chart.parentHeightOffset:0;s.dom.Paper.node.parentNode.parentNode.style.minHeight=s.svgHeight+w+"px"}s.dom.elWrap.style.width=s.svgWidth+"px",s.dom.elWrap.style.height=s.svgHeight+"px"}},{key:"shiftGraphPosition",value:function(){var s=this.w.globals,a=s.translateY,i={transform:"translate("+s.translateX+", "+a+")"};_.setAttrs(s.dom.elGraphical.node,i)}},{key:"resizeNonAxisCharts",value:function(){var s=this.w,a=s.globals,i=0,d=s.config.chart.sparkline.enabled?1:15;d+=s.config.grid.padding.bottom,s.config.legend.position!=="top"&&s.config.legend.position!=="bottom"||!s.config.legend.show||s.config.legend.floating||(i=new ge(this.ctx).legendHelpers.getLegendBBox().clwh+10);var u=s.globals.dom.baseEl.querySelector(".apexcharts-radialbar, .apexcharts-pie"),p=2.05*s.globals.radialSize;if(u&&!s.config.chart.sparkline.enabled&&s.config.plotOptions.radialBar.startAngle!==0){var w=H.getBoundingClientRect(u);p=w.bottom;var f=w.bottom-w.top;p=Math.max(2.05*s.globals.radialSize,f)}var b=p+a.translateY+i+d;a.dom.elLegendForeign&&a.dom.elLegendForeign.setAttribute("height",b),s.config.chart.height&&String(s.config.chart.height).indexOf("%")>0||(a.dom.elWrap.style.height=b+"px",_.setAttrs(a.dom.Paper.node,{height:b}),a.dom.Paper.node.parentNode.parentNode.style.minHeight=b+"px")}},{key:"coreCalculations",value:function(){new lt(this.ctx).init()}},{key:"resetGlobals",value:function(){var s=this,a=function(){return s.w.config.series.map(function(u){return[]})},i=new At,d=this.w.globals;i.initGlobalVars(d),d.seriesXvalues=a(),d.seriesYvalues=a()}},{key:"isMultipleY",value:function(){if(this.w.config.yaxis.constructor===Array&&this.w.config.yaxis.length>1)return this.w.globals.isMultipleYAxis=!0,!0}},{key:"xySettings",value:function(){var s=null,a=this.w;if(a.globals.axisCharts){if(a.config.xaxis.crosshairs.position==="back"&&new Ot(this.ctx).drawXCrosshairs(),a.config.yaxis[0].crosshairs.position==="back"&&new Ot(this.ctx).drawYCrosshairs(),a.config.xaxis.type==="datetime"&&a.config.xaxis.labels.formatter===void 0){this.ctx.timeScale=new lw(this.ctx);var i=[];isFinite(a.globals.minX)&&isFinite(a.globals.maxX)&&!a.globals.isBarHorizontal?i=this.ctx.timeScale.calculateTimeScaleTicks(a.globals.minX,a.globals.maxX):a.globals.isBarHorizontal&&(i=this.ctx.timeScale.calculateTimeScaleTicks(a.globals.minY,a.globals.maxY)),this.ctx.timeScale.recalcDimensionsBasedOnFormat(i)}s=new tt(this.ctx).getCalculatedRatios()}return s}},{key:"updateSourceChart",value:function(s){this.ctx.w.globals.selection=void 0,this.ctx.updateHelpers._updateOptions({chart:{selection:{xaxis:{min:s.w.globals.minX,max:s.w.globals.maxX}}}},!1,!1)}},{key:"setupBrushHandler",value:function(){var s=this,a=this.w;if(a.config.chart.brush.enabled&&typeof a.config.chart.events.selection!="function"){var i=Array.isArray(a.config.chart.brush.targets)||[a.config.chart.brush.target];i.forEach(function(d){var u=ApexCharts.getChartByID(d);u.w.globals.brushSource=s.ctx,typeof u.w.config.chart.events.zoomed!="function"&&(u.w.config.chart.events.zoomed=function(){s.updateSourceChart(u)}),typeof u.w.config.chart.events.scrolled!="function"&&(u.w.config.chart.events.scrolled=function(){s.updateSourceChart(u)})}),a.config.chart.events.selection=function(d,u){i.forEach(function(p){var w=ApexCharts.getChartByID(p),f=H.clone(a.config.yaxis);if(a.config.chart.brush.autoScaleYaxis&&w.w.globals.series.length===1){var b=new J(w);f=b.autoScaleY(w,f,u)}var M=w.w.config.yaxis.reduce(function(z,y,A){return[].concat(F(z),[h(h({},w.w.config.yaxis[A]),{},{min:f[0].min,max:f[0].max})])},[]);w.ctx.updateHelpers._updateOptions({xaxis:{min:u.xaxis.min,max:u.xaxis.max},yaxis:M},!1,!1,!1,!1)})}}}}]),T}(),ow=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"_updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],u=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=arguments.length>4&&arguments[4]!==void 0&&arguments[4];return new Promise(function(w){var f=[a.ctx];u&&(f=a.ctx.getSyncedCharts()),a.ctx.w.globals.isExecCalled&&(f=[a.ctx],a.ctx.w.globals.isExecCalled=!1),f.forEach(function(b,M){var z=b.w;if(z.globals.shouldAnimate=d,i||(z.globals.resized=!0,z.globals.dataChanged=!0,d&&b.series.getPreviousPaths()),s&&c(s)==="object"&&(b.config=new It(s),s=tt.extendArrayProps(b.config,s,z),b.w.globals.chartID!==a.ctx.w.globals.chartID&&delete s.series,z.config=H.extend(z.config,s),p&&(z.globals.lastXAxis=s.xaxis?H.clone(s.xaxis):[],z.globals.lastYAxis=s.yaxis?H.clone(s.yaxis):[],z.globals.initialConfig=H.extend({},z.config),z.globals.initialSeries=H.clone(z.config.series),s.series))){for(var y=0;y2&&arguments[2]!==void 0&&arguments[2];return new Promise(function(u){var p,w=i.w;return w.globals.shouldAnimate=a,w.globals.dataChanged=!0,a&&i.ctx.series.getPreviousPaths(),w.globals.axisCharts?((p=s.map(function(f,b){return i._extendSeries(f,b)})).length===0&&(p=[{data:[]}]),w.config.series=p):w.config.series=s.slice(),d&&(w.globals.initialConfig.series=H.clone(w.config.series),w.globals.initialSeries=H.clone(w.config.series)),i.ctx.update().then(function(){u(i.ctx)})})}},{key:"_extendSeries",value:function(s,a){var i=this.w,d=i.config.series[a];return h(h({},i.config.series[a]),{},{name:s.name?s.name:d&&d.name,color:s.color?s.color:d&&d.color,type:s.type?s.type:d&&d.type,group:s.group?s.group:d&&d.group,data:s.data?s.data:d&&d.data})}},{key:"toggleDataPointSelection",value:function(s,a){var i=this.w,d=null,u=".apexcharts-series[data\\:realIndex='".concat(s,"']");return i.globals.axisCharts?d=i.globals.dom.Paper.select("".concat(u," path[j='").concat(a,"'], ").concat(u," circle[j='").concat(a,"'], ").concat(u," rect[j='").concat(a,"']")).members[0]:a===void 0&&(d=i.globals.dom.Paper.select("".concat(u," path[j='").concat(s,"']")).members[0],i.config.chart.type!=="pie"&&i.config.chart.type!=="polarArea"&&i.config.chart.type!=="donut"||this.ctx.pie.pieClicked(s)),d?(new _(this.ctx).pathMouseDown(d,null),d.node?d.node:null):(console.warn("toggleDataPointSelection: Element not found"),null)}},{key:"forceXAxisUpdate",value:function(s){var a=this.w;if(["min","max"].forEach(function(d){s.xaxis[d]!==void 0&&(a.config.xaxis[d]=s.xaxis[d],a.globals.lastXAxis[d]=s.xaxis[d])}),s.xaxis.categories&&s.xaxis.categories.length&&(a.config.xaxis.categories=s.xaxis.categories),a.config.xaxis.convertedCatToNumeric){var i=new gt(s);s=i.convertCatToNumericXaxis(s,this.ctx)}return s}},{key:"forceYAxisUpdate",value:function(s){return s.chart&&s.chart.stacked&&s.chart.stackType==="100%"&&(Array.isArray(s.yaxis)?s.yaxis.forEach(function(a,i){s.yaxis[i].min=0,s.yaxis[i].max=100}):(s.yaxis.min=0,s.yaxis.max=100)),s}},{key:"revertDefaultAxisMinMax",value:function(s){var a=this,i=this.w,d=i.globals.lastXAxis,u=i.globals.lastYAxis;s&&s.xaxis&&(d=s.xaxis),s&&s.yaxis&&(u=s.yaxis),i.config.xaxis.min=d.min,i.config.xaxis.max=d.max;var p=function(w){u[w]!==void 0&&(i.config.yaxis[w].min=u[w].min,i.config.yaxis[w].max=u[w].max)};i.config.yaxis.map(function(w,f){i.globals.zoomed||u[f]!==void 0?p(f):a.ctx.opts.yaxis[f]!==void 0&&(w.min=a.ctx.opts.yaxis[f].min,w.max=a.ctx.opts.yaxis[f].max)})}}]),T}();nr=typeof window<"u"?window:void 0,Ds=function(T,s){var a=(this!==void 0?this:T).SVG=function(m){if(a.supported)return m=new a.Doc(m),a.parser.draw||a.prepare(),m};if(a.ns="http://www.w3.org/2000/svg",a.xmlns="http://www.w3.org/2000/xmlns/",a.xlink="http://www.w3.org/1999/xlink",a.svgjs="http://svgjs.dev",a.supported=!0,!a.supported)return!1;a.did=1e3,a.eid=function(m){return"Svgjs"+M(m)+a.did++},a.create=function(m){var C=s.createElementNS(this.ns,m);return C.setAttribute("id",this.eid(m)),C},a.extend=function(){var m,C;C=(m=[].slice.call(arguments)).pop();for(var j=m.length-1;j>=0;j--)if(m[j])for(var E in C)m[j].prototype[E]=C[E];a.Set&&a.Set.inherit&&a.Set.inherit()},a.invent=function(m){var C=typeof m.create=="function"?m.create:function(){this.constructor.call(this,a.create(m.create))};return m.inherit&&(C.prototype=new m.inherit),m.extend&&a.extend(C,m.extend),m.construct&&a.extend(m.parent||a.Container,m.construct),C},a.adopt=function(m){return m?m.instance?m.instance:((C=m.nodeName=="svg"?m.parentNode instanceof T.SVGElement?new a.Nested:new a.Doc:m.nodeName=="linearGradient"?new a.Gradient("linear"):m.nodeName=="radialGradient"?new a.Gradient("radial"):a[M(m.nodeName)]?new a[M(m.nodeName)]:new a.Element(m)).type=m.nodeName,C.node=m,m.instance=C,C instanceof a.Doc&&C.namespace().defs(),C.setData(JSON.parse(m.getAttribute("svgjs:data"))||{}),C):null;var C},a.prepare=function(){var m=s.getElementsByTagName("body")[0],C=(m?new a.Doc(m):a.adopt(s.documentElement).nested()).size(2,0);a.parser={body:m||s.documentElement,draw:C.style("opacity:0;position:absolute;left:-100%;top:-100%;overflow:hidden").node,poly:C.polyline().node,path:C.path().node,native:a.create("svg")}},a.parser={native:a.create("svg")},s.addEventListener("DOMContentLoaded",function(){a.parser.draw||a.prepare()},!1),a.regex={numberAndUnit:/^([+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?)([a-z%]*)$/i,hex:/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,rgb:/rgb\((\d+),(\d+),(\d+)\)/,reference:/#([a-z0-9\-_]+)/i,transforms:/\)\s*,?\s*/,whitespace:/\s/g,isHex:/^#[a-f0-9]{3,6}$/i,isRgb:/^rgb\(/,isCss:/[^:]+:[^;]+;?/,isBlank:/^(\s+)?$/,isNumber:/^[+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,isPercent:/^-?[\d\.]+%$/,isImage:/\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i,delimiter:/[\s,]+/,hyphen:/([^e])\-/gi,pathLetters:/[MLHVCSQTAZ]/gi,isPathLetter:/[MLHVCSQTAZ]/i,numbersWithDots:/((\d?\.\d+(?:e[+-]?\d+)?)((?:\.\d+(?:e[+-]?\d+)?)+))+/gi,dots:/\./g},a.utils={map:function(m,C){for(var j=m.length,E=[],K=0;K1?1:m,new a.Color({r:~~(this.r+(this.destination.r-this.r)*m),g:~~(this.g+(this.destination.g-this.g)*m),b:~~(this.b+(this.destination.b-this.b)*m)})):this}}),a.Color.test=function(m){return m+="",a.regex.isHex.test(m)||a.regex.isRgb.test(m)},a.Color.isRgb=function(m){return m&&typeof m.r=="number"&&typeof m.g=="number"&&typeof m.b=="number"},a.Color.isColor=function(m){return a.Color.isRgb(m)||a.Color.test(m)},a.Array=function(m,C){(m=(m||[]).valueOf()).length==0&&C&&(m=C.valueOf()),this.value=this.parse(m)},a.extend(a.Array,{toString:function(){return this.value.join(" ")},valueOf:function(){return this.value},parse:function(m){return m=m.valueOf(),Array.isArray(m)?m:this.split(m)}}),a.PointArray=function(m,C){a.Array.call(this,m,C||[[0,0]])},a.PointArray.prototype=new a.Array,a.PointArray.prototype.constructor=a.PointArray;for(var i={M:function(m,C,j){return C.x=j.x=m[0],C.y=j.y=m[1],["M",C.x,C.y]},L:function(m,C){return C.x=m[0],C.y=m[1],["L",m[0],m[1]]},H:function(m,C){return C.x=m[0],["H",m[0]]},V:function(m,C){return C.y=m[0],["V",m[0]]},C:function(m,C){return C.x=m[4],C.y=m[5],["C",m[0],m[1],m[2],m[3],m[4],m[5]]},Q:function(m,C){return C.x=m[2],C.y=m[3],["Q",m[0],m[1],m[2],m[3]]},S:function(m,C){return C.x=m[2],C.y=m[3],["S",m[0],m[1],m[2],m[3]]},Z:function(m,C,j){return C.x=j.x,C.y=j.y,["Z"]}},d="mlhvqtcsaz".split(""),u=0,p=d.length;uot);return E},bbox:function(){return a.parser.draw||a.prepare(),a.parser.path.setAttribute("d",this.toString()),a.parser.path.getBBox()}}),a.Number=a.invent({create:function(m,C){this.value=0,this.unit=C||"",typeof m=="number"?this.value=isNaN(m)?0:isFinite(m)?m:m<0?-34e37:34e37:typeof m=="string"?(C=m.match(a.regex.numberAndUnit))&&(this.value=parseFloat(C[1]),C[5]=="%"?this.value/=100:C[5]=="s"&&(this.value*=1e3),this.unit=C[5]):m instanceof a.Number&&(this.value=m.valueOf(),this.unit=m.unit)},extend:{toString:function(){return(this.unit=="%"?~~(1e8*this.value)/1e6:this.unit=="s"?this.value/1e3:this.value)+this.unit},toJSON:function(){return this.toString()},valueOf:function(){return this.value},plus:function(m){return m=new a.Number(m),new a.Number(this+m,this.unit||m.unit)},minus:function(m){return m=new a.Number(m),new a.Number(this-m,this.unit||m.unit)},times:function(m){return m=new a.Number(m),new a.Number(this*m,this.unit||m.unit)},divide:function(m){return m=new a.Number(m),new a.Number(this/m,this.unit||m.unit)},to:function(m){var C=new a.Number(this);return typeof m=="string"&&(C.unit=m),C},morph:function(m){return this.destination=new a.Number(m),m.relative&&(this.destination.value+=this.value),this},at:function(m){return this.destination?new a.Number(this.destination).minus(this).times(m).plus(this):this}}}),a.Element=a.invent({create:function(m){this._stroke=a.defaults.attrs.stroke,this._event=null,this.dom={},(this.node=m)&&(this.type=m.nodeName,this.node.instance=this,this._stroke=m.getAttribute("stroke")||this._stroke)},extend:{x:function(m){return this.attr("x",m)},y:function(m){return this.attr("y",m)},cx:function(m){return m==null?this.x()+this.width()/2:this.x(m-this.width()/2)},cy:function(m){return m==null?this.y()+this.height()/2:this.y(m-this.height()/2)},move:function(m,C){return this.x(m).y(C)},center:function(m,C){return this.cx(m).cy(C)},width:function(m){return this.attr("width",m)},height:function(m){return this.attr("height",m)},size:function(m,C){var j=y(this,m,C);return this.width(new a.Number(j.width)).height(new a.Number(j.height))},clone:function(m){this.writeDataToDom();var C=L(this.node.cloneNode(!0));return m?m.add(C):this.after(C),C},remove:function(){return this.parent()&&this.parent().removeElement(this),this},replace:function(m){return this.after(m).remove(),m},addTo:function(m){return m.put(this)},putIn:function(m){return m.add(this)},id:function(m){return this.attr("id",m)},show:function(){return this.style("display","")},hide:function(){return this.style("display","none")},visible:function(){return this.style("display")!="none"},toString:function(){return this.attr("id")},classes:function(){var m=this.attr("class");return m==null?[]:m.trim().split(a.regex.delimiter)},hasClass:function(m){return this.classes().indexOf(m)!=-1},addClass:function(m){if(!this.hasClass(m)){var C=this.classes();C.push(m),this.attr("class",C.join(" "))}return this},removeClass:function(m){return this.hasClass(m)&&this.attr("class",this.classes().filter(function(C){return C!=m}).join(" ")),this},toggleClass:function(m){return this.hasClass(m)?this.removeClass(m):this.addClass(m)},reference:function(m){return a.get(this.attr(m))},parent:function(m){var C=this;if(!C.node.parentNode)return null;if(C=a.adopt(C.node.parentNode),!m)return C;for(;C&&C.node instanceof T.SVGElement;){if(typeof m=="string"?C.matches(m):C instanceof m)return C;if(!C.node.parentNode||C.node.parentNode.nodeName=="#document")return null;C=a.adopt(C.node.parentNode)}},doc:function(){return this instanceof a.Doc?this:this.parent(a.Doc)},parents:function(m){var C=[],j=this;do{if(!(j=j.parent(m))||!j.node)break;C.push(j)}while(j.parent);return C},matches:function(m){return function(C,j){return(C.matches||C.matchesSelector||C.msMatchesSelector||C.mozMatchesSelector||C.webkitMatchesSelector||C.oMatchesSelector).call(C,j)}(this.node,m)},native:function(){return this.node},svg:function(m){var C=s.createElement("svg");if(!(m&&this instanceof a.Parent))return C.appendChild(m=s.createElement("svg")),this.writeDataToDom(),m.appendChild(this.node.cloneNode(!0)),C.innerHTML.replace(/^/,"").replace(/<\/svg>$/,"");C.innerHTML=""+m.replace(/\n/,"").replace(/<([\w:-]+)([^<]+?)\/>/g,"<$1$2>")+"";for(var j=0,E=C.firstChild.childNodes.length;j":function(m){return-Math.cos(m*Math.PI)/2+.5},">":function(m){return Math.sin(m*Math.PI/2)},"<":function(m){return 1-Math.cos(m*Math.PI/2)}},a.morph=function(m){return function(C,j){return new a.MorphObj(C,j).at(m)}},a.Situation=a.invent({create:function(m){this.init=!1,this.reversed=!1,this.reversing=!1,this.duration=new a.Number(m.duration).valueOf(),this.delay=new a.Number(m.delay).valueOf(),this.start=+new Date+this.delay,this.finish=this.start+this.duration,this.ease=m.ease,this.loop=0,this.loops=!1,this.animations={},this.attrs={},this.styles={},this.transforms=[],this.once={}}}),a.FX=a.invent({create:function(m){this._target=m,this.situations=[],this.active=!1,this.situation=null,this.paused=!1,this.lastPos=0,this.pos=0,this.absPos=0,this._speed=1},extend:{animate:function(m,C,j){c(m)==="object"&&(C=m.ease,j=m.delay,m=m.duration);var E=new a.Situation({duration:m||1e3,delay:j||0,ease:a.easing[C||"-"]||C});return this.queue(E),this},target:function(m){return m&&m instanceof a.Element?(this._target=m,this):this._target},timeToAbsPos:function(m){return(m-this.situation.start)/(this.situation.duration/this._speed)},absPosToTime:function(m){return this.situation.duration/this._speed*m+this.situation.start},startAnimFrame:function(){this.stopAnimFrame(),this.animationFrame=T.requestAnimationFrame((function(){this.step()}).bind(this))},stopAnimFrame:function(){T.cancelAnimationFrame(this.animationFrame)},start:function(){return!this.active&&this.situation&&(this.active=!0,this.startCurrent()),this},startCurrent:function(){return this.situation.start=+new Date+this.situation.delay/this._speed,this.situation.finish=this.situation.start+this.situation.duration/this._speed,this.initAnimations().step()},queue:function(m){return(typeof m=="function"||m instanceof a.Situation)&&this.situations.push(m),this.situation||(this.situation=this.situations.shift()),this},dequeue:function(){return this.stop(),this.situation=this.situations.shift(),this.situation&&(this.situation instanceof a.Situation?this.start():this.situation.call(this)),this},initAnimations:function(){var m,C=this.situation;if(C.init)return this;for(var j in C.animations){m=this.target()[j](),Array.isArray(m)||(m=[m]),Array.isArray(C.animations[j])||(C.animations[j]=[C.animations[j]]);for(var E=m.length;E--;)C.animations[j][E]instanceof a.Number&&(m[E]=new a.Number(m[E])),C.animations[j][E]=m[E].morph(C.animations[j][E])}for(var j in C.attrs)C.attrs[j]=new a.MorphObj(this.target().attr(j),C.attrs[j]);for(var j in C.styles)C.styles[j]=new a.MorphObj(this.target().style(j),C.styles[j]);return C.initialTransformation=this.target().matrixify(),C.init=!0,this},clearQueue:function(){return this.situations=[],this},clearCurrent:function(){return this.situation=null,this},stop:function(m,C){var j=this.active;return this.active=!1,C&&this.clearQueue(),m&&this.situation&&(!j&&this.startCurrent(),this.atEnd()),this.stopAnimFrame(),this.clearCurrent()},after:function(m){var C=this.last();return this.target().on("finished.fx",function j(E){E.detail.situation==C&&(m.call(this,C),this.off("finished.fx",j))}),this._callStart()},during:function(m){var C=this.last(),j=function(E){E.detail.situation==C&&m.call(this,E.detail.pos,a.morph(E.detail.pos),E.detail.eased,C)};return this.target().off("during.fx",j).on("during.fx",j),this.after(function(){this.off("during.fx",j)}),this._callStart()},afterAll:function(m){var C=function j(E){m.call(this),this.off("allfinished.fx",j)};return this.target().off("allfinished.fx",C).on("allfinished.fx",C),this._callStart()},last:function(){return this.situations.length?this.situations[this.situations.length-1]:this.situation},add:function(m,C,j){return this.last()[j||"animations"][m]=C,this._callStart()},step:function(m){var C,j,E;m||(this.absPos=this.timeToAbsPos(+new Date)),this.situation.loops!==!1?(C=Math.max(this.absPos,0),j=Math.floor(C),this.situation.loops===!0||jthis.lastPos&&Q<=K&&(this.situation.once[Q].call(this.target(),this.pos,K),delete this.situation.once[Q]);return this.active&&this.target().fire("during",{pos:this.pos,eased:K,fx:this,situation:this.situation}),this.situation?(this.eachAt(),this.pos==1&&!this.situation.reversed||this.situation.reversed&&this.pos==0?(this.stopAnimFrame(),this.target().fire("finished",{fx:this,situation:this.situation}),this.situations.length||(this.target().fire("allfinished"),this.situations.length||(this.target().off(".fx"),this.active=!1)),this.active?this.dequeue():this.clearCurrent()):!this.paused&&this.active&&this.startAnimFrame(),this.lastPos=K,this):this},eachAt:function(){var m,C=this,j=this.target(),E=this.situation;for(var K in E.animations)m=[].concat(E.animations[K]).map(function(it){return typeof it!="string"&&it.at?it.at(E.ease(C.pos),C.pos):it}),j[K].apply(j,m);for(var K in E.attrs)m=[K].concat(E.attrs[K]).map(function(vt){return typeof vt!="string"&&vt.at?vt.at(E.ease(C.pos),C.pos):vt}),j.attr.apply(j,m);for(var K in E.styles)m=[K].concat(E.styles[K]).map(function(vt){return typeof vt!="string"&&vt.at?vt.at(E.ease(C.pos),C.pos):vt}),j.style.apply(j,m);if(E.transforms.length){m=E.initialTransformation,K=0;for(var Q=E.transforms.length;K=0;--j)this[V[j]]=m[V[j]]!=null?m[V[j]]:C[V[j]]},extend:{extract:function(){var m=A(this,0,1);A(this,1,0);var C=180/Math.PI*Math.atan2(m.y,m.x)-90;return{x:this.e,y:this.f,transformedX:(this.e*Math.cos(C*Math.PI/180)+this.f*Math.sin(C*Math.PI/180))/Math.sqrt(this.a*this.a+this.b*this.b),transformedY:(this.f*Math.cos(C*Math.PI/180)+this.e*Math.sin(-C*Math.PI/180))/Math.sqrt(this.c*this.c+this.d*this.d),rotation:C,a:this.a,b:this.b,c:this.c,d:this.d,e:this.e,f:this.f,matrix:new a.Matrix(this)}},clone:function(){return new a.Matrix(this)},morph:function(m){return this.destination=new a.Matrix(m),this},multiply:function(m){return new a.Matrix(this.native().multiply(function(C){return C instanceof a.Matrix||(C=new a.Matrix(C)),C}(m).native()))},inverse:function(){return new a.Matrix(this.native().inverse())},translate:function(m,C){return new a.Matrix(this.native().translate(m||0,C||0))},native:function(){for(var m=a.parser.native.createSVGMatrix(),C=V.length-1;C>=0;C--)m[V[C]]=this[V[C]];return m},toString:function(){return"matrix("+O(this.a)+","+O(this.b)+","+O(this.c)+","+O(this.d)+","+O(this.e)+","+O(this.f)+")"}},parent:a.Element,construct:{ctm:function(){return new a.Matrix(this.node.getCTM())},screenCTM:function(){if(this instanceof a.Nested){var m=this.rect(1,1),C=m.node.getScreenCTM();return m.remove(),new a.Matrix(C)}return new a.Matrix(this.node.getScreenCTM())}}}),a.Point=a.invent({create:function(m,C){var j;j=Array.isArray(m)?{x:m[0],y:m[1]}:c(m)==="object"?{x:m.x,y:m.y}:m!=null?{x:m,y:C??m}:{x:0,y:0},this.x=j.x,this.y=j.y},extend:{clone:function(){return new a.Point(this)},morph:function(m,C){return this.destination=new a.Point(m,C),this}}}),a.extend(a.Element,{point:function(m,C){return new a.Point(m,C).transform(this.screenCTM().inverse())}}),a.extend(a.Element,{attr:function(m,C,j){if(m==null){for(m={},j=(C=this.node.attributes).length-1;j>=0;j--)m[C[j].nodeName]=a.regex.isNumber.test(C[j].nodeValue)?parseFloat(C[j].nodeValue):C[j].nodeValue;return m}if(c(m)==="object")for(var E in m)this.attr(E,m[E]);else if(C===null)this.node.removeAttribute(m);else{if(C==null)return(C=this.node.getAttribute(m))==null?a.defaults.attrs[m]:a.regex.isNumber.test(C)?parseFloat(C):C;m=="stroke-width"?this.attr("stroke",parseFloat(C)>0?this._stroke:null):m=="stroke"&&(this._stroke=C),m!="fill"&&m!="stroke"||(a.regex.isImage.test(C)&&(C=this.doc().defs().image(C,0,0)),C instanceof a.Image&&(C=this.doc().defs().pattern(0,0,function(){this.add(C)}))),typeof C=="number"?C=new a.Number(C):a.Color.isColor(C)?C=new a.Color(C):Array.isArray(C)&&(C=new a.Array(C)),m=="leading"?this.leading&&this.leading(C):typeof j=="string"?this.node.setAttributeNS(j,m,C.toString()):this.node.setAttribute(m,C.toString()),!this.rebuild||m!="font-size"&&m!="x"||this.rebuild(m,C)}return this}}),a.extend(a.Element,{transform:function(m,C){var j;return c(m)!=="object"?(j=new a.Matrix(this).extract(),typeof m=="string"?j[m]:j):(j=new a.Matrix(this),C=!!C||!!m.relative,m.a!=null&&(j=C?j.multiply(new a.Matrix(m)):new a.Matrix(m)),this.attr("transform",j))}}),a.extend(a.Element,{untransform:function(){return this.attr("transform",null)},matrixify:function(){return(this.attr("transform")||"").split(a.regex.transforms).slice(0,-1).map(function(m){var C=m.trim().split("(");return[C[0],C[1].split(a.regex.delimiter).map(function(j){return parseFloat(j)})]}).reduce(function(m,C){return C[0]=="matrix"?m.multiply(N(C[1])):m[C[0]].apply(m,C[1])},new a.Matrix)},toParent:function(m){if(this==m)return this;var C=this.screenCTM(),j=m.screenCTM().inverse();return this.addTo(m).untransform().transform(j.multiply(C)),this},toDoc:function(){return this.toParent(this.doc())}}),a.Transformation=a.invent({create:function(m,C){if(arguments.length>1&&typeof C!="boolean")return this.constructor.call(this,[].slice.call(arguments));if(Array.isArray(m))for(var j=0,E=this.arguments.length;j=0},index:function(m){return[].slice.call(this.node.childNodes).indexOf(m.node)},get:function(m){return a.adopt(this.node.childNodes[m])},first:function(){return this.get(0)},last:function(){return this.get(this.node.childNodes.length-1)},each:function(m,C){for(var j=this.children(),E=0,K=j.length;E=0;C--)m.childNodes[C]instanceof T.SVGElement&&L(m.childNodes[C]);return a.adopt(m).id(a.eid(m.nodeName))}function O(m){return Math.abs(m)>1e-37?m:0}["fill","stroke"].forEach(function(m){var C={};C[m]=function(j){if(j===void 0)return this;if(typeof j=="string"||a.Color.isRgb(j)||j&&typeof j.fill=="function")this.attr(m,j);else for(var E=w[m].length-1;E>=0;E--)j[w[m][E]]!=null&&this.attr(w.prefix(m,w[m][E]),j[w[m][E]]);return this},a.extend(a.Element,a.FX,C)}),a.extend(a.Element,a.FX,{translate:function(m,C){return this.transform({x:m,y:C})},matrix:function(m){return this.attr("transform",new a.Matrix(arguments.length==6?[].slice.call(arguments):m))},opacity:function(m){return this.attr("opacity",m)},dx:function(m){return this.x(new a.Number(m).plus(this instanceof a.FX?0:this.x()),!0)},dy:function(m){return this.y(new a.Number(m).plus(this instanceof a.FX?0:this.y()),!0)}}),a.extend(a.Path,{length:function(){return this.node.getTotalLength()},pointAt:function(m){return this.node.getPointAtLength(m)}}),a.Set=a.invent({create:function(m){Array.isArray(m)?this.members=m:this.clear()},extend:{add:function(){for(var m=[].slice.call(arguments),C=0,j=m.length;C-1&&this.members.splice(C,1),this},each:function(m){for(var C=0,j=this.members.length;C=0},index:function(m){return this.members.indexOf(m)},get:function(m){return this.members[m]},first:function(){return this.get(0)},last:function(){return this.get(this.members.length-1)},valueOf:function(){return this.members}},construct:{set:function(m){return new a.Set(m)}}}),a.FX.Set=a.invent({create:function(m){this.set=m}}),a.Set.inherit=function(){var m=[];for(var C in a.Shape.prototype)typeof a.Shape.prototype[C]=="function"&&typeof a.Set.prototype[C]!="function"&&m.push(C);for(var C in m.forEach(function(E){a.Set.prototype[E]=function(){for(var K=0,Q=this.members.length;K=0;m--)delete this.memory()[arguments[m]];return this},memory:function(){return this._memory||(this._memory={})}}),a.get=function(m){var C=s.getElementById(function(j){var E=(j||"").toString().match(a.regex.reference);if(E)return E[1]}(m)||m);return a.adopt(C)},a.select=function(m,C){return new a.Set(a.utils.map((C||s).querySelectorAll(m),function(j){return a.adopt(j)}))},a.extend(a.Parent,{select:function(m){return a.select(m,this.node)}});var V="abcdef".split("");if(typeof T.CustomEvent!="function"){var Z=function(m,C){C=C||{bubbles:!1,cancelable:!1,detail:void 0};var j=s.createEvent("CustomEvent");return j.initCustomEvent(m,C.bubbles,C.cancelable,C.detail),j};Z.prototype=T.Event.prototype,a.CustomEvent=Z}else a.CustomEvent=T.CustomEvent;return a},c(l)==="object"?n.exports=nr.document?Ds(nr,nr.document):function(T){return Ds(T,T.document)}:nr.SVG=Ds(nr,nr.document),(function(){SVG.Filter=SVG.invent({create:"filter",inherit:SVG.Parent,extend:{source:"SourceGraphic",sourceAlpha:"SourceAlpha",background:"BackgroundImage",backgroundAlpha:"BackgroundAlpha",fill:"FillPaint",stroke:"StrokePaint",autoSetIn:!0,put:function(p,w){return this.add(p,w),!p.attr("in")&&this.autoSetIn&&p.attr("in",this.source),p.attr("result")||p.attr("result",p),p},blend:function(p,w,f){return this.put(new SVG.BlendEffect(p,w,f))},colorMatrix:function(p,w){return this.put(new SVG.ColorMatrixEffect(p,w))},convolveMatrix:function(p){return this.put(new SVG.ConvolveMatrixEffect(p))},componentTransfer:function(p){return this.put(new SVG.ComponentTransferEffect(p))},composite:function(p,w,f){return this.put(new SVG.CompositeEffect(p,w,f))},flood:function(p,w){return this.put(new SVG.FloodEffect(p,w))},offset:function(p,w){return this.put(new SVG.OffsetEffect(p,w))},image:function(p){return this.put(new SVG.ImageEffect(p))},merge:function(){var p=[void 0];for(var w in arguments)p.push(arguments[w]);return this.put(new(SVG.MergeEffect.bind.apply(SVG.MergeEffect,p)))},gaussianBlur:function(p,w){return this.put(new SVG.GaussianBlurEffect(p,w))},morphology:function(p,w){return this.put(new SVG.MorphologyEffect(p,w))},diffuseLighting:function(p,w,f){return this.put(new SVG.DiffuseLightingEffect(p,w,f))},displacementMap:function(p,w,f,b,M){return this.put(new SVG.DisplacementMapEffect(p,w,f,b,M))},specularLighting:function(p,w,f,b){return this.put(new SVG.SpecularLightingEffect(p,w,f,b))},tile:function(){return this.put(new SVG.TileEffect)},turbulence:function(p,w,f,b,M){return this.put(new SVG.TurbulenceEffect(p,w,f,b,M))},toString:function(){return"url(#"+this.attr("id")+")"}}}),SVG.extend(SVG.Defs,{filter:function(p){var w=this.put(new SVG.Filter);return typeof p=="function"&&p.call(w,w),w}}),SVG.extend(SVG.Container,{filter:function(p){return this.defs().filter(p)}}),SVG.extend(SVG.Element,SVG.G,SVG.Nested,{filter:function(p){return this.filterer=p instanceof SVG.Element?p:this.doc().filter(p),this.doc()&&this.filterer.doc()!==this.doc()&&this.doc().defs().add(this.filterer),this.attr("filter",this.filterer),this.filterer},unfilter:function(p){return this.filterer&&p===!0&&this.filterer.remove(),delete this.filterer,this.attr("filter",null)}}),SVG.Effect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(p){return p==null?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",p)},result:function(p){return p==null?this.attr("result"):this.attr("result",p)},toString:function(){return this.result()}}}),SVG.ParentEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Parent,extend:{in:function(p){return p==null?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",p)},result:function(p){return p==null?this.attr("result"):this.attr("result",p)},toString:function(){return this.result()}}});var T={blend:function(p,w){return this.parent()&&this.parent().blend(this,p,w)},colorMatrix:function(p,w){return this.parent()&&this.parent().colorMatrix(p,w).in(this)},convolveMatrix:function(p){return this.parent()&&this.parent().convolveMatrix(p).in(this)},componentTransfer:function(p){return this.parent()&&this.parent().componentTransfer(p).in(this)},composite:function(p,w){return this.parent()&&this.parent().composite(this,p,w)},flood:function(p,w){return this.parent()&&this.parent().flood(p,w)},offset:function(p,w){return this.parent()&&this.parent().offset(p,w).in(this)},image:function(p){return this.parent()&&this.parent().image(p)},merge:function(){return this.parent()&&this.parent().merge.apply(this.parent(),[this].concat(arguments))},gaussianBlur:function(p,w){return this.parent()&&this.parent().gaussianBlur(p,w).in(this)},morphology:function(p,w){return this.parent()&&this.parent().morphology(p,w).in(this)},diffuseLighting:function(p,w,f){return this.parent()&&this.parent().diffuseLighting(p,w,f).in(this)},displacementMap:function(p,w,f,b){return this.parent()&&this.parent().displacementMap(this,p,w,f,b)},specularLighting:function(p,w,f,b){return this.parent()&&this.parent().specularLighting(p,w,f,b).in(this)},tile:function(){return this.parent()&&this.parent().tile().in(this)},turbulence:function(p,w,f,b,M){return this.parent()&&this.parent().turbulence(p,w,f,b,M).in(this)}};SVG.extend(SVG.Effect,T),SVG.extend(SVG.ParentEffect,T),SVG.ChildEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(p){this.attr("in",p)}}});var s={blend:function(p,w,f){this.attr({in:p,in2:w,mode:f||"normal"})},colorMatrix:function(p,w){p=="matrix"&&(w=d(w)),this.attr({type:p,values:w===void 0?null:w})},convolveMatrix:function(p){p=d(p),this.attr({order:Math.sqrt(p.split(" ").length),kernelMatrix:p})},composite:function(p,w,f){this.attr({in:p,in2:w,operator:f})},flood:function(p,w){this.attr("flood-color",p),w!=null&&this.attr("flood-opacity",w)},offset:function(p,w){this.attr({dx:p,dy:w})},image:function(p){this.attr("href",p,SVG.xlink)},displacementMap:function(p,w,f,b,M){this.attr({in:p,in2:w,scale:f,xChannelSelector:b,yChannelSelector:M})},gaussianBlur:function(p,w){p!=null||w!=null?this.attr("stdDeviation",function(f){if(!Array.isArray(f))return f;for(var b=0,M=f.length,z=[];b1&&(Ie*=M=Math.sqrt(M),Be*=M),z=new SVG.Matrix().rotate(Le).scale(1/Ie,1/Be).rotate(-Le),gn=gn.transform(z),tn=tn.transform(z),y=[tn.x-gn.x,tn.y-gn.y],N=y[0]*y[0]+y[1]*y[1],A=Math.sqrt(N),y[0]/=A,y[1]/=A,L=N<4?Math.sqrt(1-N/4):0,Wn===lr&&(L*=-1),O=new SVG.Point((tn.x+gn.x)/2+L*-y[1],(tn.y+gn.y)/2+L*y[0]),V=new SVG.Point(gn.x-O.x,gn.y-O.y),Z=new SVG.Point(tn.x-O.x,tn.y-O.y),m=Math.acos(V.x/Math.sqrt(V.x*V.x+V.y*V.y)),V.y<0&&(m*=-1),C=Math.acos(Z.x/Math.sqrt(Z.x*Z.x+Z.y*Z.y)),Z.y<0&&(C*=-1),lr&&m>C&&(C+=2*Math.PI),!lr&&mp.maxX-a.width&&(w=(d=p.maxX-a.width)-this.startPoints.box.x),p.minY!=null&&up.maxY-a.height&&(f=(u=p.maxY-a.height)-this.startPoints.box.y),p.snapToGrid!=null&&(d-=d%p.snapToGrid,u-=u%p.snapToGrid,w-=w%p.snapToGrid,f-=f%p.snapToGrid),this.el instanceof SVG.G?this.el.matrix(this.startPoints.transform).transform({x:w,y:f},!0):this.el.move(d,u));return i},T.prototype.end=function(s){var a=this.drag(s);this.el.fire("dragend",{event:s,p:a,m:this.m,handler:this}),SVG.off(window,"mousemove.drag"),SVG.off(window,"touchmove.drag"),SVG.off(window,"mouseup.drag"),SVG.off(window,"touchend.drag")},SVG.extend(SVG.Element,{draggable:function(s,a){typeof s!="function"&&typeof s!="object"||(a=s,s=!0);var i=this.remember("_draggable")||new T(this);return(s=s===void 0||s)?i.init(a||{},s):(this.off("mousedown.drag"),this.off("touchstart.drag")),this}})}).call(void 0),function(){function T(s){this.el=s,s.remember("_selectHandler",this),this.pointSelection={isSelected:!1},this.rectSelection={isSelected:!1},this.pointsList={lt:[0,0],rt:["width",0],rb:["width","height"],lb:[0,"height"],t:["width",0],r:["width","height"],b:["width","height"],l:[0,"height"]},this.pointCoord=function(a,i,d){var u=typeof a!="string"?a:i[a];return d?u/2:u},this.pointCoords=function(a,i){var d=this.pointsList[a];return{x:this.pointCoord(d[0],i,a==="t"||a==="b"),y:this.pointCoord(d[1],i,a==="r"||a==="l")}}}T.prototype.init=function(s,a){var i=this.el.bbox();this.options={};var d=this.el.selectize.defaults.points;for(var u in this.el.selectize.defaults)this.options[u]=this.el.selectize.defaults[u],a[u]!==void 0&&(this.options[u]=a[u]);var p=["points","pointsExclude"];for(var u in p){var w=this.options[p[u]];typeof w=="string"?w=w.length>0?w.split(/\s*,\s*/i):[]:typeof w=="boolean"&&p[u]==="points"&&(w=w?d:[]),this.options[p[u]]=w}this.options.points=[d,this.options.points].reduce(function(f,b){return f.filter(function(M){return b.indexOf(M)>-1})}),this.options.points=[this.options.points,this.options.pointsExclude].reduce(function(f,b){return f.filter(function(M){return b.indexOf(M)<0})}),this.parent=this.el.parent(),this.nested=this.nested||this.parent.group(),this.nested.matrix(new SVG.Matrix(this.el).translate(i.x,i.y)),this.options.deepSelect&&["line","polyline","polygon"].indexOf(this.el.type)!==-1?this.selectPoints(s):this.selectRect(s),this.observe(),this.cleanup()},T.prototype.selectPoints=function(s){return this.pointSelection.isSelected=s,this.pointSelection.set||(this.pointSelection.set=this.parent.set(),this.drawPoints()),this},T.prototype.getPointArray=function(){var s=this.el.bbox();return this.el.array().valueOf().map(function(a){return[a[0]-s.x,a[1]-s.y]})},T.prototype.drawPoints=function(){for(var s=this,a=this.getPointArray(),i=0,d=a.length;i0&&this.parameters.box.height-w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x+w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-w[0]);w=this.checkAspectRatio(w),this.el.move(this.parameters.box.x+w[0],this.parameters.box.y+w[1]).size(this.parameters.box.width-w[0],this.parameters.box.height-w[1])}};break;case"rt":this.calc=function(u,p){var w=this.snapToGrid(u,p,2);if(this.parameters.box.width+w[0]>0&&this.parameters.box.height-w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x-w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+w[0]);w=this.checkAspectRatio(w,!0),this.el.move(this.parameters.box.x,this.parameters.box.y+w[1]).size(this.parameters.box.width+w[0],this.parameters.box.height-w[1])}};break;case"rb":this.calc=function(u,p){var w=this.snapToGrid(u,p,0);if(this.parameters.box.width+w[0]>0&&this.parameters.box.height+w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x-w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+w[0]);w=this.checkAspectRatio(w),this.el.move(this.parameters.box.x,this.parameters.box.y).size(this.parameters.box.width+w[0],this.parameters.box.height+w[1])}};break;case"lb":this.calc=function(u,p){var w=this.snapToGrid(u,p,1);if(this.parameters.box.width-w[0]>0&&this.parameters.box.height+w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x+w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-w[0]);w=this.checkAspectRatio(w,!0),this.el.move(this.parameters.box.x+w[0],this.parameters.box.y).size(this.parameters.box.width-w[0],this.parameters.box.height+w[1])}};break;case"t":this.calc=function(u,p){var w=this.snapToGrid(u,p,2);if(this.parameters.box.height-w[1]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y+w[1]).height(this.parameters.box.height-w[1])}};break;case"r":this.calc=function(u,p){var w=this.snapToGrid(u,p,0);if(this.parameters.box.width+w[0]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y).width(this.parameters.box.width+w[0])}};break;case"b":this.calc=function(u,p){var w=this.snapToGrid(u,p,0);if(this.parameters.box.height+w[1]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y).height(this.parameters.box.height+w[1])}};break;case"l":this.calc=function(u,p){var w=this.snapToGrid(u,p,1);if(this.parameters.box.width-w[0]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x+w[0],this.parameters.box.y).width(this.parameters.box.width-w[0])}};break;case"rot":this.calc=function(u,p){var w=u+this.parameters.p.x,f=p+this.parameters.p.y,b=Math.atan2(this.parameters.p.y-this.parameters.box.y-this.parameters.box.height/2,this.parameters.p.x-this.parameters.box.x-this.parameters.box.width/2),M=Math.atan2(f-this.parameters.box.y-this.parameters.box.height/2,w-this.parameters.box.x-this.parameters.box.width/2),z=this.parameters.rotation+180*(M-b)/Math.PI+this.options.snapToAngle/2;this.el.center(this.parameters.box.cx,this.parameters.box.cy).rotate(z-z%this.options.snapToAngle,this.parameters.box.cx,this.parameters.box.cy)};break;case"point":this.calc=function(u,p){var w=this.snapToGrid(u,p,this.parameters.pointCoords[0],this.parameters.pointCoords[1]),f=this.el.array().valueOf();f[this.parameters.i][0]=this.parameters.pointCoords[0]+w[0],f[this.parameters.i][1]=this.parameters.pointCoords[1]+w[1],this.el.plot(f)}}this.el.fire("resizestart",{dx:this.parameters.x,dy:this.parameters.y,event:s}),SVG.on(window,"touchmove.resize",function(u){a.update(u||window.event)}),SVG.on(window,"touchend.resize",function(){a.done()}),SVG.on(window,"mousemove.resize",function(u){a.update(u||window.event)}),SVG.on(window,"mouseup.resize",function(){a.done()})},T.prototype.update=function(s){if(s){var a=this._extractPosition(s),i=this.transformPoint(a.x,a.y),d=i.x-this.parameters.p.x,u=i.y-this.parameters.p.y;this.lastUpdateCall=[d,u],this.calc(d,u),this.el.fire("resizing",{dx:d,dy:u,event:s})}else this.lastUpdateCall&&this.calc(this.lastUpdateCall[0],this.lastUpdateCall[1])},T.prototype.done=function(){this.lastUpdateCall=null,SVG.off(window,"mousemove.resize"),SVG.off(window,"mouseup.resize"),SVG.off(window,"touchmove.resize"),SVG.off(window,"touchend.resize"),this.el.fire("resizedone")},T.prototype.snapToGrid=function(s,a,i,d){var u;return d!==void 0?u=[(i+s)%this.options.snapToGrid,(d+a)%this.options.snapToGrid]:(i=i??3,u=[(this.parameters.box.x+s+(1&i?0:this.parameters.box.width))%this.options.snapToGrid,(this.parameters.box.y+a+(2&i?0:this.parameters.box.height))%this.options.snapToGrid]),s<0&&(u[0]-=this.options.snapToGrid),a<0&&(u[1]-=this.options.snapToGrid),s-=Math.abs(u[0])w.maxX&&(s=w.maxX-u),w.minY!==void 0&&p+aw.maxY&&(a=w.maxY-p),[s,a]},T.prototype.checkAspectRatio=function(s,a){if(!this.options.saveAspectRatio)return s;var i=s.slice(),d=this.parameters.box.width/this.parameters.box.height,u=this.parameters.box.width+s[0],p=this.parameters.box.height-s[1],w=u/p;return wd&&(i[0]=this.parameters.box.width-p*d,a&&(i[0]=-i[0])),i},SVG.extend(SVG.Element,{resize:function(s){return(this.remember("_resizeHandler")||new T(this)).init(s||{}),this}}),SVG.Element.prototype.resize.defaults={snapToAngle:.1,snapToGrid:1,constraint:{},saveAspectRatio:!1}}).call(this)}(),window.Apex===void 0&&(window.Apex={});var R2=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"initModules",value:function(){this.ctx.publicMethods=["updateOptions","updateSeries","appendData","appendSeries","toggleSeries","showSeries","hideSeries","setLocale","resetSeries","zoomX","toggleDataPointSelection","dataURI","exportToCSV","addXaxisAnnotation","addYaxisAnnotation","addPointAnnotation","clearAnnotations","removeAnnotation","paper","destroy"],this.ctx.eventList=["click","mousedown","mousemove","mouseleave","touchstart","touchmove","touchleave","mouseup","touchend"],this.ctx.animations=new U(this.ctx),this.ctx.axes=new yt(this.ctx),this.ctx.core=new rw(this.ctx.el,this.ctx),this.ctx.config=new It({}),this.ctx.data=new pt(this.ctx),this.ctx.grid=new ft(this.ctx),this.ctx.graphics=new _(this.ctx),this.ctx.coreUtils=new tt(this.ctx),this.ctx.crosshairs=new Ot(this.ctx),this.ctx.events=new ct(this.ctx),this.ctx.exports=new jt(this.ctx),this.ctx.localization=new kt(this.ctx),this.ctx.options=new rt,this.ctx.responsive=new $t(this.ctx),this.ctx.series=new ut(this.ctx),this.ctx.theme=new Rt(this.ctx),this.ctx.formatters=new Ct(this.ctx),this.ctx.titleSubtitle=new Pt(this.ctx),this.ctx.legend=new ge(this.ctx),this.ctx.toolbar=new Ae(this.ctx),this.ctx.tooltip=new yo(this.ctx),this.ctx.dimensions=new ae(this.ctx),this.ctx.updateHelpers=new ow(this.ctx),this.ctx.zoomPanSelection=new xn(this.ctx),this.ctx.w.globals.tooltip=new yo(this.ctx)}}]),T}(),T2=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"clear",value:function(s){var a=s.isUpdating;this.ctx.zoomPanSelection&&this.ctx.zoomPanSelection.destroy(),this.ctx.toolbar&&this.ctx.toolbar.destroy(),this.ctx.animations=null,this.ctx.axes=null,this.ctx.annotations=null,this.ctx.core=null,this.ctx.data=null,this.ctx.grid=null,this.ctx.series=null,this.ctx.responsive=null,this.ctx.theme=null,this.ctx.formatters=null,this.ctx.titleSubtitle=null,this.ctx.legend=null,this.ctx.dimensions=null,this.ctx.options=null,this.ctx.crosshairs=null,this.ctx.zoomPanSelection=null,this.ctx.updateHelpers=null,this.ctx.toolbar=null,this.ctx.localization=null,this.ctx.w.globals.tooltip=null,this.clearDomElements({isUpdating:a})}},{key:"killSVG",value:function(s){s.each(function(a,i){this.removeClass("*"),this.off(),this.stop()},!0),s.ungroup(),s.clear()}},{key:"clearDomElements",value:function(s){var a=this,i=s.isUpdating,d=this.w.globals.dom.Paper.node;d.parentNode&&d.parentNode.parentNode&&!i&&(d.parentNode.parentNode.style.minHeight="unset");var u=this.w.globals.dom.baseEl;u&&this.ctx.eventList.forEach(function(w){u.removeEventListener(w,a.ctx.events.documentEvent)});var p=this.w.globals.dom;if(this.ctx.el!==null)for(;this.ctx.el.firstChild;)this.ctx.el.removeChild(this.ctx.el.firstChild);this.killSVG(p.Paper),p.Paper.remove(),p.elWrap=null,p.elGraphical=null,p.elLegendWrap=null,p.elLegendForeign=null,p.baseEl=null,p.elGridRect=null,p.elGridRectMask=null,p.elGridRectMarkerMask=null,p.elForecastMask=null,p.elNonForecastMask=null,p.elDefs=null}}]),T}(),xi=new WeakMap,sw=function(){function T(s,a){g(this,T),this.opts=a,this.ctx=this,this.w=new Tt(a).init(),this.el=s,this.w.globals.cuid=H.randomId(),this.w.globals.chartID=this.w.config.chart.id?H.escapeString(this.w.config.chart.id):this.w.globals.cuid,new R2(this).initModules(),this.create=H.bind(this.create,this),this.windowResizeHandler=this._windowResizeHandler.bind(this),this.parentResizeHandler=this._parentResizeCallback.bind(this)}return k(T,[{key:"render",value:function(){var s=this;return new Promise(function(a,i){if(s.el!==null){Apex._chartInstances===void 0&&(Apex._chartInstances=[]),s.w.config.chart.id&&Apex._chartInstances.push({id:s.w.globals.chartID,group:s.w.config.chart.group,chart:s}),s.setLocale(s.w.config.chart.defaultLocale);var d=s.w.config.chart.events.beforeMount;if(typeof d=="function"&&d(s,s.w),s.events.fireEvent("beforeMount",[s,s.w]),window.addEventListener("resize",s.windowResizeHandler),function(M,z){var y=!1;if(M.nodeType!==Node.DOCUMENT_FRAGMENT_NODE){var A=M.getBoundingClientRect();M.style.display!=="none"&&A.width!==0||(y=!0)}var N=new ResizeObserver(function(L){y&&z.call(M,L),y=!0});M.nodeType===Node.DOCUMENT_FRAGMENT_NODE?Array.from(M.children).forEach(function(L){return N.observe(L)}):N.observe(M),xi.set(z,N)}(s.el.parentNode,s.parentResizeHandler),!s.css){var u=s.el.getRootNode&&s.el.getRootNode(),p=H.is("ShadowRoot",u),w=s.el.ownerDocument,f=w.getElementById("apexcharts-css");!p&&f||(s.css=document.createElement("style"),s.css.id="apexcharts-css",s.css.textContent=`@keyframes opaque { - 0% { - opacity: 0 - } - - to { - opacity: 1 - } -} - -@keyframes resizeanim { - 0%,to { - opacity: 0 - } -} - -.apexcharts-canvas { - position: relative; - user-select: none -} - -.apexcharts-canvas ::-webkit-scrollbar { - -webkit-appearance: none; - width: 6px -} - -.apexcharts-canvas ::-webkit-scrollbar-thumb { - border-radius: 4px; - background-color: rgba(0,0,0,.5); - box-shadow: 0 0 1px rgba(255,255,255,.5); - -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5) -} - -.apexcharts-inner { - position: relative -} - -.apexcharts-text tspan { - font-family: inherit -} - -.legend-mouseover-inactive { - transition: .15s ease all; - opacity: .2 -} - -.apexcharts-legend-text { - padding-left: 15px; - margin-left: -15px; -} - -.apexcharts-series-collapsed { - opacity: 0 -} - -.apexcharts-tooltip { - border-radius: 5px; - box-shadow: 2px 2px 6px -4px #999; - cursor: default; - font-size: 14px; - left: 62px; - opacity: 0; - pointer-events: none; - position: absolute; - top: 20px; - display: flex; - flex-direction: column; - overflow: hidden; - white-space: nowrap; - z-index: 12; - transition: .15s ease all -} - -.apexcharts-tooltip.apexcharts-active { - opacity: 1; - transition: .15s ease all -} - -.apexcharts-tooltip.apexcharts-theme-light { - border: 1px solid #e3e3e3; - background: rgba(255,255,255,.96) -} - -.apexcharts-tooltip.apexcharts-theme-dark { - color: #fff; - background: rgba(30,30,30,.8) -} - -.apexcharts-tooltip * { - font-family: inherit -} - -.apexcharts-tooltip-title { - padding: 6px; - font-size: 15px; - margin-bottom: 4px -} - -.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title { - background: #eceff1; - border-bottom: 1px solid #ddd -} - -.apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-title { - background: rgba(0,0,0,.7); - border-bottom: 1px solid #333 -} - -.apexcharts-tooltip-text-goals-value,.apexcharts-tooltip-text-y-value,.apexcharts-tooltip-text-z-value { - display: inline-block; - margin-left: 5px; - font-weight: 600 -} - -.apexcharts-tooltip-text-goals-label:empty,.apexcharts-tooltip-text-goals-value:empty,.apexcharts-tooltip-text-y-label:empty,.apexcharts-tooltip-text-y-value:empty,.apexcharts-tooltip-text-z-value:empty,.apexcharts-tooltip-title:empty { - display: none -} - -.apexcharts-tooltip-text-goals-label,.apexcharts-tooltip-text-goals-value { - padding: 6px 0 5px -} - -.apexcharts-tooltip-goals-group,.apexcharts-tooltip-text-goals-label,.apexcharts-tooltip-text-goals-value { - display: flex -} - -.apexcharts-tooltip-text-goals-label:not(:empty),.apexcharts-tooltip-text-goals-value:not(:empty) { - margin-top: -6px -} - -.apexcharts-tooltip-marker { - width: 12px; - height: 12px; - position: relative; - top: 0; - margin-right: 10px; - border-radius: 50% -} - -.apexcharts-tooltip-series-group { - padding: 0 10px; - display: none; - text-align: left; - justify-content: left; - align-items: center -} - -.apexcharts-tooltip-series-group.apexcharts-active .apexcharts-tooltip-marker { - opacity: 1 -} - -.apexcharts-tooltip-series-group.apexcharts-active,.apexcharts-tooltip-series-group:last-child { - padding-bottom: 4px -} - -.apexcharts-tooltip-series-group-hidden { - opacity: 0; - height: 0; - line-height: 0; - padding: 0!important -} - -.apexcharts-tooltip-y-group { - padding: 6px 0 5px -} - -.apexcharts-custom-tooltip,.apexcharts-tooltip-box { - padding: 4px 8px -} - -.apexcharts-tooltip-boxPlot { - display: flex; - flex-direction: column-reverse -} - -.apexcharts-tooltip-box>div { - margin: 4px 0 -} - -.apexcharts-tooltip-box span.value { - font-weight: 700 -} - -.apexcharts-tooltip-rangebar { - padding: 5px 8px -} - -.apexcharts-tooltip-rangebar .category { - font-weight: 600; - color: #777 -} - -.apexcharts-tooltip-rangebar .series-name { - font-weight: 700; - display: block; - margin-bottom: 5px -} - -.apexcharts-xaxistooltip,.apexcharts-yaxistooltip { - opacity: 0; - pointer-events: none; - color: #373d3f; - font-size: 13px; - text-align: center; - border-radius: 2px; - position: absolute; - z-index: 10; - background: #eceff1; - border: 1px solid #90a4ae -} - -.apexcharts-xaxistooltip { - padding: 9px 10px; - transition: .15s ease all -} - -.apexcharts-xaxistooltip.apexcharts-theme-dark { - background: rgba(0,0,0,.7); - border: 1px solid rgba(0,0,0,.5); - color: #fff -} - -.apexcharts-xaxistooltip:after,.apexcharts-xaxistooltip:before { - left: 50%; - border: solid transparent; - content: " "; - height: 0; - width: 0; - position: absolute; - pointer-events: none -} - -.apexcharts-xaxistooltip:after { - border-color: transparent; - border-width: 6px; - margin-left: -6px -} - -.apexcharts-xaxistooltip:before { - border-color: transparent; - border-width: 7px; - margin-left: -7px -} - -.apexcharts-xaxistooltip-bottom:after,.apexcharts-xaxistooltip-bottom:before { - bottom: 100% -} - -.apexcharts-xaxistooltip-top:after,.apexcharts-xaxistooltip-top:before { - top: 100% -} - -.apexcharts-xaxistooltip-bottom:after { - border-bottom-color: #eceff1 -} - -.apexcharts-xaxistooltip-bottom:before { - border-bottom-color: #90a4ae -} - -.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:after,.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:before { - border-bottom-color: rgba(0,0,0,.5) -} - -.apexcharts-xaxistooltip-top:after { - border-top-color: #eceff1 -} - -.apexcharts-xaxistooltip-top:before { - border-top-color: #90a4ae -} - -.apexcharts-xaxistooltip-top.apexcharts-theme-dark:after,.apexcharts-xaxistooltip-top.apexcharts-theme-dark:before { - border-top-color: rgba(0,0,0,.5) -} - -.apexcharts-xaxistooltip.apexcharts-active { - opacity: 1; - transition: .15s ease all -} - -.apexcharts-yaxistooltip { - padding: 4px 10px -} - -.apexcharts-yaxistooltip.apexcharts-theme-dark { - background: rgba(0,0,0,.7); - border: 1px solid rgba(0,0,0,.5); - color: #fff -} - -.apexcharts-yaxistooltip:after,.apexcharts-yaxistooltip:before { - top: 50%; - border: solid transparent; - content: " "; - height: 0; - width: 0; - position: absolute; - pointer-events: none -} - -.apexcharts-yaxistooltip:after { - border-color: transparent; - border-width: 6px; - margin-top: -6px -} - -.apexcharts-yaxistooltip:before { - border-color: transparent; - border-width: 7px; - margin-top: -7px -} - -.apexcharts-yaxistooltip-left:after,.apexcharts-yaxistooltip-left:before { - left: 100% -} - -.apexcharts-yaxistooltip-right:after,.apexcharts-yaxistooltip-right:before { - right: 100% -} - -.apexcharts-yaxistooltip-left:after { - border-left-color: #eceff1 -} - -.apexcharts-yaxistooltip-left:before { - border-left-color: #90a4ae -} - -.apexcharts-yaxistooltip-left.apexcharts-theme-dark:after,.apexcharts-yaxistooltip-left.apexcharts-theme-dark:before { - border-left-color: rgba(0,0,0,.5) -} - -.apexcharts-yaxistooltip-right:after { - border-right-color: #eceff1 -} - -.apexcharts-yaxistooltip-right:before { - border-right-color: #90a4ae -} - -.apexcharts-yaxistooltip-right.apexcharts-theme-dark:after,.apexcharts-yaxistooltip-right.apexcharts-theme-dark:before { - border-right-color: rgba(0,0,0,.5) -} - -.apexcharts-yaxistooltip.apexcharts-active { - opacity: 1 -} - -.apexcharts-yaxistooltip-hidden { - display: none -} - -.apexcharts-xcrosshairs,.apexcharts-ycrosshairs { - pointer-events: none; - opacity: 0; - transition: .15s ease all -} - -.apexcharts-xcrosshairs.apexcharts-active,.apexcharts-ycrosshairs.apexcharts-active { - opacity: 1; - transition: .15s ease all -} - -.apexcharts-ycrosshairs-hidden { - opacity: 0 -} - -.apexcharts-selection-rect { - cursor: move -} - -.svg_select_boundingRect,.svg_select_points_rot { - pointer-events: none; - opacity: 0; - visibility: hidden -} - -.apexcharts-selection-rect+g .svg_select_boundingRect,.apexcharts-selection-rect+g .svg_select_points_rot { - opacity: 0; - visibility: hidden -} - -.apexcharts-selection-rect+g .svg_select_points_l,.apexcharts-selection-rect+g .svg_select_points_r { - cursor: ew-resize; - opacity: 1; - visibility: visible -} - -.svg_select_points { - fill: #efefef; - stroke: #333; - rx: 2 -} - -.apexcharts-svg.apexcharts-zoomable.hovering-zoom { - cursor: crosshair -} - -.apexcharts-svg.apexcharts-zoomable.hovering-pan { - cursor: move -} - -.apexcharts-menu-icon,.apexcharts-pan-icon,.apexcharts-reset-icon,.apexcharts-selection-icon,.apexcharts-toolbar-custom-icon,.apexcharts-zoom-icon,.apexcharts-zoomin-icon,.apexcharts-zoomout-icon { - cursor: pointer; - width: 20px; - height: 20px; - line-height: 24px; - color: #6e8192; - text-align: center -} - -.apexcharts-menu-icon svg,.apexcharts-reset-icon svg,.apexcharts-zoom-icon svg,.apexcharts-zoomin-icon svg,.apexcharts-zoomout-icon svg { - fill: #6e8192 -} - -.apexcharts-selection-icon svg { - fill: #444; - transform: scale(.76) -} - -.apexcharts-theme-dark .apexcharts-menu-icon svg,.apexcharts-theme-dark .apexcharts-pan-icon svg,.apexcharts-theme-dark .apexcharts-reset-icon svg,.apexcharts-theme-dark .apexcharts-selection-icon svg,.apexcharts-theme-dark .apexcharts-toolbar-custom-icon svg,.apexcharts-theme-dark .apexcharts-zoom-icon svg,.apexcharts-theme-dark .apexcharts-zoomin-icon svg,.apexcharts-theme-dark .apexcharts-zoomout-icon svg { - fill: #f3f4f5 -} - -.apexcharts-canvas .apexcharts-reset-zoom-icon.apexcharts-selected svg,.apexcharts-canvas .apexcharts-selection-icon.apexcharts-selected svg,.apexcharts-canvas .apexcharts-zoom-icon.apexcharts-selected svg { - fill: #008ffb -} - -.apexcharts-theme-light .apexcharts-menu-icon:hover svg,.apexcharts-theme-light .apexcharts-reset-icon:hover svg,.apexcharts-theme-light .apexcharts-selection-icon:not(.apexcharts-selected):hover svg,.apexcharts-theme-light .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg,.apexcharts-theme-light .apexcharts-zoomin-icon:hover svg,.apexcharts-theme-light .apexcharts-zoomout-icon:hover svg { - fill: #333 -} - -.apexcharts-menu-icon,.apexcharts-selection-icon { - position: relative -} - -.apexcharts-reset-icon { - margin-left: 5px -} - -.apexcharts-menu-icon,.apexcharts-reset-icon,.apexcharts-zoom-icon { - transform: scale(.85) -} - -.apexcharts-zoomin-icon,.apexcharts-zoomout-icon { - transform: scale(.7) -} - -.apexcharts-zoomout-icon { - margin-right: 3px -} - -.apexcharts-pan-icon { - transform: scale(.62); - position: relative; - left: 1px; - top: 0 -} - -.apexcharts-pan-icon svg { - fill: #fff; - stroke: #6e8192; - stroke-width: 2 -} - -.apexcharts-pan-icon.apexcharts-selected svg { - stroke: #008ffb -} - -.apexcharts-pan-icon:not(.apexcharts-selected):hover svg { - stroke: #333 -} - -.apexcharts-toolbar { - position: absolute; - z-index: 11; - max-width: 176px; - text-align: right; - border-radius: 3px; - padding: 0 6px 2px; - display: flex; - justify-content: space-between; - align-items: center -} - -.apexcharts-menu { - background: #fff; - position: absolute; - top: 100%; - border: 1px solid #ddd; - border-radius: 3px; - padding: 3px; - right: 10px; - opacity: 0; - min-width: 110px; - transition: .15s ease all; - pointer-events: none -} - -.apexcharts-menu.apexcharts-menu-open { - opacity: 1; - pointer-events: all; - transition: .15s ease all -} - -.apexcharts-menu-item { - padding: 6px 7px; - font-size: 12px; - cursor: pointer -} - -.apexcharts-theme-light .apexcharts-menu-item:hover { - background: #eee -} - -.apexcharts-theme-dark .apexcharts-menu { - background: rgba(0,0,0,.7); - color: #fff -} - -@media screen and (min-width:768px) { - .apexcharts-canvas:hover .apexcharts-toolbar { - opacity: 1 - } -} - -.apexcharts-canvas .apexcharts-element-hidden,.apexcharts-datalabel.apexcharts-element-hidden,.apexcharts-hide .apexcharts-series-points { - opacity: 0 -} - -.apexcharts-hidden-element-shown { - opacity: 1; - transition: 0.25s ease all; -} -.apexcharts-datalabel,.apexcharts-datalabel-label,.apexcharts-datalabel-value,.apexcharts-datalabels,.apexcharts-pie-label { - cursor: default; - pointer-events: none -} - -.apexcharts-pie-label-delay { - opacity: 0; - animation-name: opaque; - animation-duration: .3s; - animation-fill-mode: forwards; - animation-timing-function: ease -} - -.apexcharts-annotation-rect,.apexcharts-area-series .apexcharts-area,.apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,.apexcharts-gridline,.apexcharts-line,.apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,.apexcharts-point-annotation-label,.apexcharts-radar-series path,.apexcharts-radar-series polygon,.apexcharts-toolbar svg,.apexcharts-tooltip .apexcharts-marker,.apexcharts-xaxis-annotation-label,.apexcharts-yaxis-annotation-label,.apexcharts-zoom-rect { - pointer-events: none -} - -.apexcharts-marker { - transition: .15s ease all -} - -.resize-triggers { - animation: 1ms resizeanim; - visibility: hidden; - opacity: 0; - height: 100%; - width: 100%; - overflow: hidden -} - -.contract-trigger:before,.resize-triggers,.resize-triggers>div { - content: " "; - display: block; - position: absolute; - top: 0; - left: 0 -} - -.resize-triggers>div { - height: 100%; - width: 100%; - background: #eee; - overflow: auto -} - -.contract-trigger:before { - overflow: hidden; - width: 200%; - height: 200% -} - -.apexcharts-bar-goals-markers{ - pointer-events: none -} - -.apexcharts-bar-shadows{ - pointer-events: none -} - -.apexcharts-rangebar-goals-markers{ - pointer-events: none -}`,p?u.prepend(s.css):w.head.appendChild(s.css))}var b=s.create(s.w.config.series,{});if(!b)return a(s);s.mount(b).then(function(){typeof s.w.config.chart.events.mounted=="function"&&s.w.config.chart.events.mounted(s,s.w),s.events.fireEvent("mounted",[s,s.w]),a(b)}).catch(function(M){i(M)})}else i(new Error("Element not found"))})}},{key:"create",value:function(s,a){var i=this.w;new R2(this).initModules();var d=this.w.globals;if(d.noData=!1,d.animationEnded=!1,this.responsive.checkResponsiveConfig(a),i.config.xaxis.convertedCatToNumeric&&new gt(i.config).convertCatToNumericXaxis(i.config,this.ctx),this.el===null||(this.core.setupElements(),i.config.chart.type==="treemap"&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),d.svgWidth===0))return d.animationEnded=!0,null;var u=tt.checkComboSeries(s);d.comboCharts=u.comboCharts,d.comboBarCount=u.comboBarCount;var p=s.every(function(M){return M.data&&M.data.length===0});(s.length===0||p)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(s),this.theme.init(),new Qt(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),d.noData&&d.collapsedSeries.length!==d.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),d.axisCharts&&(this.core.coreCalculations(),i.config.xaxis.type!=="category"&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),new tt(this).getLargestMarkerSize(),this.dimensions.plotCoords();var w=this.core.xySettings();this.grid.createGridMask();var f=this.core.plotChartType(s,w),b=new Et(this);return b.bringForward(),i.config.dataLabels.background.enabled&&b.dataLabelsBackground(),this.core.shiftGraphPosition(),{elGraph:f,xyRatios:w,dimensions:{plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}}}}},{key:"mount",value:function(){var s=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this,d=i.w;return new Promise(function(u,p){if(i.el===null)return p(new Error("Not enough data to display or target element not found"));(a===null||d.globals.allSeriesCollapsed)&&i.series.handleNoData(),i.grid=new ft(i);var w,f,b=i.grid.drawGrid();if(i.annotations=new ht(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),d.config.grid.position==="back"&&(b&&d.globals.dom.elGraphical.add(b.el),b!=null&&(w=b.elGridBorders)!==null&&w!==void 0&&w.node&&d.globals.dom.elGraphical.add(b.elGridBorders)),Array.isArray(a.elGraph))for(var M=0;M0&&d.globals.memory.methodsToExec.forEach(function(N){N.method(N.params,!1,N.context)}),d.globals.axisCharts||d.globals.noData||i.core.resizeNonAxisCharts(),u(i)})}},{key:"destroy",value:function(){var s,a;window.removeEventListener("resize",this.windowResizeHandler),this.el.parentNode,s=this.parentResizeHandler,(a=xi.get(s))&&(a.disconnect(),xi.delete(s));var i=this.w.config.chart.id;i&&Apex._chartInstances.forEach(function(d,u){d.id===H.escapeString(i)&&Apex._chartInstances.splice(u,1)}),new T2(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],u=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],w=this.w;return w.globals.selection=void 0,s.series&&(this.series.resetSeries(!1,!0,!1),s.series.length&&s.series[0].data&&(s.series=s.series.map(function(f,b){return a.updateHelpers._extendSeries(f,b)})),this.updateHelpers.revertDefaultAxisMinMax()),s.xaxis&&(s=this.updateHelpers.forceXAxisUpdate(s)),s.yaxis&&(s=this.updateHelpers.forceYAxisUpdate(s)),w.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),s.theme&&(s=this.theme.updateThemeOptions(s)),this.updateHelpers._updateOptions(s,i,d,u,p)}},{key:"updateSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(s,a,i)}},{key:"appendSeries",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w.config.series.slice();return d.push(s),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(d,a,i)}},{key:"appendData",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var d=i.w.config.series.slice(),u=0;u0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];this.series.resetSeries(s,a)}},{key:"addEventListener",value:function(s,a){this.events.addEventListener(s,a)}},{key:"removeEventListener",value:function(s,a){this.events.removeEventListener(s,a)}},{key:"addXaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addXaxisAnnotationExternal(s,a,d)}},{key:"addYaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addYaxisAnnotationExternal(s,a,d)}},{key:"addPointAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addPointAnnotationExternal(s,a,d)}},{key:"clearAnnotations",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0,a=this;s&&(a=s),a.annotations.clearAnnotations(a)}},{key:"removeAnnotation",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:void 0,i=this;a&&(i=a),i.annotations.removeAnnotation(i,s)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(s,a){return this.coreUtils.getSeriesTotalsXRange(s,a)}},{key:"getHighestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).highestY}},{key:"getLowestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(s,a){return this.updateHelpers.toggleDataPointSelection(s,a)}},{key:"zoomX",value:function(s,a){this.ctx.toolbar.zoomUpdateOptions(s,a)}},{key:"setLocale",value:function(s){this.localization.setCurrentLocaleValues(s)}},{key:"dataURI",value:function(s){return new jt(this.ctx).dataURI(s)}},{key:"exportToCSV",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return new jt(this.ctx).exportToCSV(s)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var s=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){s.w.globals.resized=!0,s.w.globals.dataChanged=!1,s.ctx.update()},150)}},{key:"_windowResizeHandler",value:function(){var s=this.w.config.chart.redrawOnWindowResize;typeof s=="function"&&(s=s()),s&&this._windowResize()}}],[{key:"getChartByID",value:function(s){var a=H.escapeString(s),i=Apex._chartInstances.filter(function(d){return d.id===a})[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var s=document.querySelectorAll("[data-apexcharts]"),a=0;a2?u-2:0),w=2;wEt&&typeof Et=="object"&&!Array.isArray(Et)&&Et!=null,U=(Et,ut)=>{typeof Object.assign!="function"&&function(){Object.assign=function(Nt){if(Nt==null)throw new TypeError("Cannot convert undefined or null to object");let jt=Object(Nt);for(let bt=1;bt{H(ut[Nt])?Nt in Et?pt[Nt]=U(Et[Nt],ut[Nt]):Object.assign(pt,{[Nt]:ut[Nt]}):Object.assign(pt,{[Nt]:ut[Nt]})}),pt},W=async()=>{if(await Object(v.nextTick)(),R.value)return;const Et={chart:{type:D.type||D.options.chart.type||"line",height:D.height,width:D.width,events:{}},series:D.series};I.forEach(pt=>{let Nt=(...jt)=>F(pt,...jt);Et.chart.events[pt]=Nt});const ut=U(D.options,Et);return R.value=new x.a(X.value,ut),R.value.render()},_=()=>(tt(),W()),tt=()=>{R.value.destroy()},nt=(Et,ut)=>R.value.updateSeries(Et,ut),Y=(Et,ut,pt,Nt)=>R.value.updateOptions(Et,ut,pt,Nt),G=Et=>R.value.toggleSeries(Et),et=Et=>{R.value.showSeries(Et)},st=Et=>{R.value.hideSeries(Et)},rt=(Et,ut)=>R.value.appendSeries(Et,ut),ht=()=>{R.value.resetSeries()},dt=(Et,ut)=>{R.value.toggleDataPointSelection(Et,ut)},Ct=Et=>R.value.appendData(Et),xt=(Et,ut)=>R.value.zoomX(Et,ut),wt=Et=>R.value.dataURI(Et),gt=Et=>R.value.setLocale(Et),It=(Et,ut)=>{R.value.addXaxisAnnotation(Et,ut)},At=(Et,ut)=>{R.value.addYaxisAnnotation(Et,ut)},Tt=(Et,ut)=>{R.value.addPointAnnotation(Et,ut)},Ft=(Et,ut)=>{R.value.removeAnnotation(Et,ut)},Qt=()=>{R.value.clearAnnotations()};Object(v.onBeforeMount)(()=>{window.ApexCharts=x.a}),Object(v.onMounted)(()=>{X.value=Object(v.getCurrentInstance)().proxy.$el,W()}),Object(v.onBeforeUnmount)(()=>{R.value&&tt()});const Jt=Object(v.toRefs)(D);return Object(v.watch)(Jt.options,()=>{!R.value&&D.options?W():R.value.updateOptions(D.options)}),Object(v.watch)(Jt.series,()=>{!R.value&&D.series?W():R.value.updateSeries(D.series)},{deep:!0}),Object(v.watch)(Jt.type,()=>{_()}),Object(v.watch)(Jt.width,()=>{_()}),Object(v.watch)(Jt.height,()=>{_()}),{chart:R,init:W,refresh:_,destroy:tt,updateOptions:Y,updateSeries:nt,toggleSeries:G,showSeries:et,hideSeries:st,resetSeries:ht,zoomX:xt,toggleDataPointSelection:dt,appendData:Ct,appendSeries:rt,addXaxisAnnotation:It,addYaxisAnnotation:At,addPointAnnotation:Tt,removeAnnotation:Ft,clearAnnotations:Qt,setLocale:gt,dataURI:wt}},render(){return Object(v.h)("div",{class:"vue-apexcharts"})}});const B=D=>{D.component($.name,$)};$.install=B;var P=$;r.default=P}})})(Xg);var qx=Xg.exports;const Yx=Vx(qx);var Ux={name:"OnetwotreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-123",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l2 -2v8"},null),e(" "),t("path",{d:"M9 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M17 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},Gx={name:"TwentyFourHoursIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-24-hours",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.094 8.094 0 0 0 3 5.24"},null),e(" "),t("path",{d:"M11 15h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M17 15v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M20 15v6"},null),e(" ")])}},Zx={name:"TwoFactorAuthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-2fa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M10 12l3 0"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 0 1 4 0v6"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" ")])}},Kx={name:"Deg360ViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" "),t("path",{d:"M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" ")])}},Qx={name:"Deg360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4"},null),e(" "),t("path",{d:"M9 13l3 3l-3 3"},null),e(" ")])}},Jx={name:"ThreedCubeSphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12v2.5"},null),e(" "),t("path",{d:"M12 18.5v2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tz={name:"ThreedCubeSphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2.5l-2 1.12"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M12 12l2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" "),t("path",{d:"M12 18.5l0 2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" ")])}},ez={name:"ThreedRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v4l-3 -3"},null),e(" "),t("path",{d:"M22 11l-3 3"},null),e(" "),t("path",{d:"M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M3 12.5v5.5l5 3"},null),e(" "),t("path",{d:"M8 15.545l5 -3.03"},null),e(" ")])}},nz={name:"AB2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z"},null),e(" "),t("path",{d:"M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z"},null),e(" "),t("path",{d:"M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4"},null),e(" "),t("path",{d:"M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M8 7h-4"},null),e(" ")])}},lz={name:"ABOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 12v6"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M16 8h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rz={name:"ABIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 6l0 12"},null),e(" "),t("path",{d:"M16 16v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3"},null),e(" ")])}},oz={name:"AbacusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 21v-2m0 -4v-12"},null),e(" "),t("path",{d:"M5 7h2m4 0h8"},null),e(" "),t("path",{d:"M5 15h10"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 16v1"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v2"},null),e(" "),t("path",{d:"M8 8v1"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sz={name:"AbacusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3v18"},null),e(" "),t("path",{d:"M19 21v-18"},null),e(" "),t("path",{d:"M5 7h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 13v4"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v4"},null),e(" "),t("path",{d:"M8 5v4"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},az={name:"AbcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01"},null),e(" ")])}},iz={name:"AccessPointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 1.172 2.828"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 1.635 8.952"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},hz={name:"AccessPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 0 5.656"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 0 11.314"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},dz={name:"AccessibleOffFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cz={name:"AccessibleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 8a.5 .5 0 1 0 -.5 -.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uz={name:"AccessibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" ")])}},pz={name:"ActivityHeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5"},null),e(" ")])}},gz={name:"ActivityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4l3 8l4 -16l3 8h4"},null),e(" ")])}},wz={name:"Ad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.933 5h-6.933v16h13v-8"},null),e(" "),t("path",{d:"M14 17h-5"},null),e(" "),t("path",{d:"M9 13h5v-4h-5z"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M18 6l2 -2"},null),e(" "),t("path",{d:"M19 9h2"},null),e(" ")])}},vz={name:"AdCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10c-5.43 0 -9.848 -4.327 -9.996 -9.72l-.004 -.28l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm-3.5 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v4.5l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4.5l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm6.5 0h-1a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h1a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -.883 .993l-.117 .007v-4zm-6.5 0a.5 .5 0 0 1 .492 .41l.008 .09v1.5h-1v-1.5l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fz={name:"AdCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.91 4.949a9.968 9.968 0 0 0 -2.91 7.051c0 5.523 4.477 10 10 10a9.968 9.968 0 0 0 7.05 -2.909"},null),e(" "),t("path",{d:"M20.778 16.793a9.955 9.955 0 0 0 1.222 -4.793c0 -5.523 -4.477 -10 -10 -10c-1.74 0 -3.376 .444 -4.8 1.225"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 2.138 -1.358"},null),e(" "),t("path",{d:"M9.854 9.853c.094 .196 .146 .415 .146 .647v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 14v1h1"},null),e(" "),t("path",{d:"M17 13v-2a2 2 0 0 0 -2 -2h-1v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mz={name:"AdCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},kz={name:"AdFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 4a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-2v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-4a3 3 0 0 1 3 -3zm0 2a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1zm8 -2a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -.883 .993l-.117 .007h-1.5a2.5 2.5 0 1 1 .326 -4.979l.174 .029v-2.05a1 1 0 0 1 .883 -.993l.117 -.007zm-1.41 5.008l-.09 -.008a.5 .5 0 0 0 -.09 .992l.09 .008h.5v-.5l-.008 -.09a.5 .5 0 0 0 -.318 -.379l-.084 -.023z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bz={name:"AdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 2 -2m2 2v4"},null),e(" "),t("path",{d:"M7 13h4"},null),e(" "),t("path",{d:"M17 9v4"},null),e(" "),t("path",{d:"M16.115 12.131c.33 .149 .595 .412 .747 .74"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mz={name:"AdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M7 13l4 0"},null),e(" "),t("path",{d:"M17 9v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5"},null),e(" ")])}},xz={name:"AddressBookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zz={name:"AddressBookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" ")])}},Iz={name:"AdjustmentsAltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-alt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4v4h-4z"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M6 12l0 8"},null),e(" "),t("path",{d:"M10 14h4v4h-4z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 18l0 2"},null),e(" "),t("path",{d:"M16 5h4v4h-4z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 9l0 11"},null),e(" ")])}},yz={name:"AdjustmentsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" ")])}},Cz={name:"AdjustmentsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.499 14.675a2 2 0 1 0 -1.499 3.325"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Sz={name:"AdjustmentsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.823 15.176a2 2 0 1 0 -2.638 2.651"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},$z={name:"AdjustmentsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.557 14.745a2 2 0 1 0 -1.557 3.255"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Az={name:"AdjustmentsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.199 14.399a2 2 0 1 0 -1.199 3.601"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Bz={name:"AdjustmentsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.366 14.54a2 2 0 1 0 -.216 3.097"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Hz={name:"AdjustmentsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.945 15.53a2 2 0 1 0 -1.945 2.47"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Nz={name:"AdjustmentsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},jz={name:"AdjustmentsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v3.171a3.001 3.001 0 0 1 0 5.658v7.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-7.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-3.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9.171a3.001 3.001 0 0 1 0 5.658v1.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-9.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117v.171a3.001 3.001 0 0 1 0 5.658v10.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-10.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Pz={name:"AdjustmentsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v8.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Lz={name:"AdjustmentsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 6l8 0"},null),e(" "),t("path",{d:"M16 6l4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12l2 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 18l11 0"},null),e(" "),t("path",{d:"M19 18l1 0"},null),e(" ")])}},Dz={name:"AdjustmentsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.954 15.574a2 2 0 1 0 -1.954 2.426"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Oz={name:"AdjustmentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 6v2"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v4m0 4v2"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fz={name:"AdjustmentsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.627 14.836a2 2 0 1 0 -.62 2.892"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M18 9v4.5"},null),e(" ")])}},Rz={name:"AdjustmentsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.071 14.31a2 2 0 1 0 -1.071 3.69"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Tz={name:"AdjustmentsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.958 15.592a2 2 0 1 0 -1.958 2.408"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Ez={name:"AdjustmentsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.577 14.77a2 2 0 1 0 .117 2.295"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" ")])}},Vz={name:"AdjustmentsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 -1.042 3.707"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},_z={name:"AdjustmentsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.387 14.56a2 2 0 1 0 -.798 3.352"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" ")])}},Wz={name:"AdjustmentsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" ")])}},Xz={name:"AdjustmentsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.927 15.462a2 2 0 1 0 -1.927 2.538"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qz={name:"AdjustmentsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.653 14.874a2 2 0 1 0 -.586 2.818"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Yz={name:"AdjustmentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v11"},null),e(" ")])}},Uz={name:"AerialLiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aerial-lift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14"},null),e(" ")])}},Gz={name:"AffiliateFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 3a2.5 2.5 0 1 1 -.912 4.828l-4.556 4.555a5.475 5.475 0 0 1 .936 3.714l2.624 .787a2.5 2.5 0 1 1 -.575 1.916l-2.623 -.788a5.5 5.5 0 0 1 -10.39 -2.29l-.004 -.222l.004 -.221a5.5 5.5 0 0 1 2.984 -4.673l-.788 -2.624a2.498 2.498 0 0 1 -2.194 -2.304l-.006 -.178l.005 -.164a2.5 2.5 0 1 1 4.111 2.071l.787 2.625a5.475 5.475 0 0 1 3.714 .936l4.555 -4.556a2.487 2.487 0 0 1 -.167 -.748l-.005 -.164l.005 -.164a2.5 2.5 0 0 1 2.495 -2.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zz={name:"AffiliateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275"},null),e(" "),t("path",{d:"M11.683 12.317l5.759 -5.759"},null),e(" "),t("path",{d:"M5.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 18.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M8.5 15.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},Kz={name:"AirBalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 16c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0"},null),e(" ")])}},Qz={name:"AirConditioningDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 16v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},Jz={name:"AirConditioningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 16a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 13v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},tI={name:"AlarmFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -1 1v3l.007 .117a1 1 0 0 0 .993 .883h2l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},eI={name:"AlarmMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 5.928h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nI={name:"AlarmMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},lI={name:"AlarmOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56"},null),e(" "),t("path",{d:"M12 12v1h1"},null),e(" "),t("path",{d:"M5.261 5.265l-1.011 .735"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rI={name:"AlarmPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 3.928a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oI={name:"AlarmPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" ")])}},sI={name:"AlarmSnoozeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aI={name:"AlarmSnoozeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M10 11h4l-4 4h4"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},iI={name:"AlarmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10l0 3l2 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},hI={name:"AlbumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413"},null),e(" "),t("path",{d:"M12 4v4m1.503 1.497l.497 -.497l2 2v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dI={name:"AlbumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v7l2 -2l2 2v-7"},null),e(" ")])}},cI={name:"AlertCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uI={name:"AlertCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},pI={name:"AlertHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.585 13.586l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gI={name:"AlertHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},wI={name:"AlertOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.887 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vI={name:"AlertOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},fI={name:"AlertSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},mI={name:"AlertSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6.99 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kI={name:"AlertSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bI={name:"AlertSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},MI={name:"AlertSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},xI={name:"AlertTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.07 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zI={name:"AlertTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 17h.01"},null),e(" ")])}},II={name:"AlienFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 2c4.942 0 8.288 2.503 8.85 6.444a12.884 12.884 0 0 1 -2.163 9.308a11.794 11.794 0 0 1 -3.51 3.356c-1.982 1.19 -4.376 1.19 -6.373 -.008a11.763 11.763 0 0 1 -3.489 -3.34a12.808 12.808 0 0 1 -2.171 -9.306c.564 -3.95 3.91 -6.454 8.856 -6.454zm1.913 14.6a1 1 0 0 0 -1.317 -.517l-.146 .055a1.5 1.5 0 0 1 -1.054 -.055l-.11 -.04a1 1 0 0 0 -.69 1.874a3.5 3.5 0 0 0 2.8 0a1 1 0 0 0 .517 -1.317zm-5.304 -6.39a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -1.497l-2 -2zm8.094 .083a1 1 0 0 0 -1.414 0l-2 2l-.083 .094a1 1 0 0 0 1.497 1.32l2 -2l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yI={name:"AlienIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17a2.5 2.5 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z"},null),e(" "),t("path",{d:"M8 11l2 2"},null),e(" "),t("path",{d:"M16 11l-2 2"},null),e(" ")])}},CI={name:"AlignBoxBottomCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SI={name:"AlignBoxBottomCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15v2"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" ")])}},$I={name:"AlignBoxBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-12.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AI={name:"AlignBoxBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v2"},null),e(" "),t("path",{d:"M10 11v6"},null),e(" "),t("path",{d:"M13 13v4"},null),e(" ")])}},BI={name:"AlignBoxBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HI={name:"AlignBoxBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15v2"},null),e(" "),t("path",{d:"M14 11v6"},null),e(" "),t("path",{d:"M17 13v4"},null),e(" ")])}},NI={name:"AlignBoxCenterMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.993 -2.802l-.007 -.198v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm2 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-1 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jI={name:"AlignBoxCenterMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},PI={name:"AlignBoxLeftBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LI={name:"AlignBoxLeftBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17h-2"},null),e(" "),t("path",{d:"M13 14h-6"},null),e(" "),t("path",{d:"M11 11h-4"},null),e(" ")])}},DI={name:"AlignBoxLeftMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 12h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OI={name:"AlignBoxLeftMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h-2"},null),e(" "),t("path",{d:"M13 12h-6"},null),e(" "),t("path",{d:"M11 9h-4"},null),e(" ")])}},FI={name:"AlignBoxLeftTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RI={name:"AlignBoxLeftTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13h-2"},null),e(" "),t("path",{d:"M13 10h-6"},null),e(" "),t("path",{d:"M11 7h-4"},null),e(" ")])}},TI={name:"AlignBoxRightBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EI={name:"AlignBoxRightBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 17h2"},null),e(" "),t("path",{d:"M11 14h6"},null),e(" "),t("path",{d:"M13 11h4"},null),e(" ")])}},VI={name:"AlignBoxRightMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_I={name:"AlignBoxRightMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h2"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h6"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" ")])}},WI={name:"AlignBoxRightTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XI={name:"AlignBoxRightTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13h2"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 7h4"},null),e(" ")])}},qI={name:"AlignBoxTopCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YI={name:"AlignBoxTopCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9v-2"},null),e(" "),t("path",{d:"M12 13v-6"},null),e(" "),t("path",{d:"M15 11v-4"},null),e(" ")])}},UI={name:"AlignBoxTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GI={name:"AlignBoxTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v-2"},null),e(" "),t("path",{d:"M10 13v-6"},null),e(" "),t("path",{d:"M13 11v-4"},null),e(" ")])}},ZI={name:"AlignBoxTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KI={name:"AlignBoxTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 9v-2"},null),e(" "),t("path",{d:"M14 13v-6"},null),e(" "),t("path",{d:"M17 11v-4"},null),e(" ")])}},QI={name:"AlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M8 12l8 0"},null),e(" "),t("path",{d:"M6 18l12 0"},null),e(" ")])}},JI={name:"AlignJustifiedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-justified",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l12 0"},null),e(" ")])}},ty={name:"AlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 18l14 0"},null),e(" ")])}},ey={name:"AlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M6 18l14 0"},null),e(" ")])}},ny={name:"AlphaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alpha",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6"},null),e(" ")])}},ly={name:"AlphabetCyrillicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-cyrillic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M19 7h-3a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2h-3"},null),e(" ")])}},ry={name:"AlphabetGreekIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-greek",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v7"},null),e(" "),t("path",{d:"M5 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 20v-11a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2"},null),e(" ")])}},oy={name:"AlphabetLatinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-latin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M14 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" ")])}},sy={name:"AmbulanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ambulance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M6 10h4m-2 -2v4"},null),e(" ")])}},ay={name:"AmpersandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ampersand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922"},null),e(" ")])}},iy={name:"AnalyzeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.99 12.862a7.1 7.1 0 0 0 12.171 3.924a1.956 1.956 0 0 1 -.156 -.637l-.005 -.149l.005 -.15a2 2 0 1 1 1.769 2.137a9.099 9.099 0 0 1 -15.764 -4.85a1 1 0 0 1 1.98 -.275z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13.142 3.09a9.1 9.1 0 0 1 7.848 7.772a1 1 0 0 1 -1.98 .276a7.1 7.1 0 0 0 -6.125 -6.064a7.096 7.096 0 0 0 -6.048 2.136a2 2 0 1 1 -3.831 .939l-.006 -.149l.005 -.15a2 2 0 0 1 2.216 -1.838a9.094 9.094 0 0 1 7.921 -2.922z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hy={name:"AnalyzeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.086 8.086 0 0 0 -4.31 .62m-2.383 1.608a8.089 8.089 0 0 0 -1.326 1.69"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.687 4.676"},null),e(" "),t("path",{d:"M20 16a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.888 9.87a3 3 0 1 0 4.233 4.252m.595 -3.397a3.012 3.012 0 0 0 -1.426 -1.435"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dy={name:"AnalyzeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.095 8.095 0 0 0 -8.019 3.918"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15 3"},null),e(" "),t("path",{d:"M19 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},cy={name:"AnchorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 0 14.138 5.13m1.44 -2.56a7.99 7.99 0 0 0 .422 -2.57"},null),e(" "),t("path",{d:"M21 13h-2"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M12.866 8.873a3 3 0 1 0 -3.737 -3.747"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uy={name:"AnchorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},py={name:"AngleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-angle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 19h-18l9 -15"},null),e(" "),t("path",{d:"M20.615 15.171h.015"},null),e(" "),t("path",{d:"M19.515 11.771h.015"},null),e(" "),t("path",{d:"M17.715 8.671h.015"},null),e(" "),t("path",{d:"M15.415 5.971h.015"},null),e(" ")])}},gy={name:"AnkhIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ankh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13h12"},null),e(" "),t("path",{d:"M12 21v-8l-.422 -.211a6.472 6.472 0 0 1 -3.578 -5.789a4 4 0 1 1 8 0a6.472 6.472 0 0 1 -3.578 5.789l-.422 .211"},null),e(" ")])}},wy={name:"AntennaBars1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 .01"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},vy={name:"AntennaBars2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},fy={name:"AntennaBars3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},my={name:"AntennaBars4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},ky={name:"AntennaBars5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 -12"},null),e(" ")])}},by={name:"AntennaBarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-3"},null),e(" "),t("path",{d:"M10 18v-6"},null),e(" "),t("path",{d:"M14 18v-4"},null),e(" "),t("path",{d:"M14 10v-1"},null),e(" "),t("path",{d:"M18 14v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},My={name:"AntennaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M8 8v2.5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-8m-4 0h-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xy={name:"AntennaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M8 5.5v5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-16"},null),e(" ")])}},zy={name:"ApertureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M7.395 7.534l2.416 7.438"},null),e(" "),t("path",{d:"M17.032 4.636l-4.852 3.526m-2.334 1.695l-1.349 .98"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l2.123 -6.533m.984 -3.028l.154 -.473"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Iy={name:"ApertureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M6.551 4.938l3.26 10.034"},null),e(" "),t("path",{d:"M17.032 4.636l-8.535 6.201"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l3.261 -10.034"},null),e(" ")])}},yy={name:"ApiAppOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 15v3.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M13 9h5.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cy={name:"ApiAppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 12v6.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5"},null),e(" ")])}},Sy={name:"ApiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$y={name:"ApiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" ")])}},Ay={name:"AppWindowFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3zm-12.99 3l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm3 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},By={name:"AppWindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" ")])}},Hy={name:"AppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 11v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 10.5c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},Ny={name:"AppsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -1.993 .117l-.007 -.117v-2h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jy={name:"AppsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M18 14h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7h6"},null),e(" "),t("path",{d:"M17 4v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Py={name:"AppsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M17 4l0 6"},null),e(" ")])}},Ly={name:"ArchiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("rect",{x:"2",y:"3",width:"20",height:"4",rx:"2","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 9c.513 0 .936 .463 .993 1.06l.007 .14v7.2c0 1.917 -1.249 3.484 -2.824 3.594l-.176 .006h-10c-1.598 0 -2.904 -1.499 -2.995 -3.388l-.005 -.212v-7.2c0 -.663 .448 -1.2 1 -1.2h14zm-5 2h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dy={name:"ArchiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 1 1 0 4h-7m-4 0h-3a2 2 0 0 1 -.826 -3.822"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 1.824 -1.18m.176 -3.82v-7"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oy={name:"ArchiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" ")])}},Fy={name:"Armchair2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 .128 -.869m2.038 -2.013c.264 -.078 .544 -.118 .834 -.118h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16.124 12.145a3 3 0 1 1 3.756 3.724m-.88 3.131h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ry={name:"Armchair2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16 15v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" ")])}},Ty={name:"ArmchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13a2 2 0 1 1 4 0v4m-2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 1 1 4 0v2h8.036"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 .134 -.89m1.987 -1.98a3 3 0 0 1 .879 -.13h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ey={name:"ArmchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" ")])}},Vy={name:"ArrowAutofitContentFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.707 3.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.292 1.293h4.585a1 1 0 0 1 .117 1.993l-.117 .007h-4.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1.008 1.008 0 0 1 -.097 -.112l-.071 -.11l-.054 -.114l-.035 -.105l-.025 -.118l-.007 -.058l-.004 -.09l.003 -.075l.017 -.126l.03 -.111l.044 -.111l.052 -.098l.064 -.092l.083 -.094l3 -3a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.613 3.21l.094 .083l3 3a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.292 -1.293h-4.585a1 1 0 0 1 -.117 -1.993l.117 -.007h4.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 13h-12a3 3 0 0 0 -3 3v2a3 3 0 0 0 3 3h12a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_y={name:"ArrowAutofitContentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 7h-7"},null),e(" "),t("path",{d:"M21 7h-7"},null),e(" ")])}},Wy={name:"ArrowAutofitDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M18 4v17"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" ")])}},Xy={name:"ArrowAutofitHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"},null),e(" "),t("path",{d:"M18 14v7"},null),e(" "),t("path",{d:"M18 3v7"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},qy={name:"ArrowAutofitLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 18h-17"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" ")])}},Yy={name:"ArrowAutofitRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M4 18h17"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Uy={name:"ArrowAutofitUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M18 20v-17"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},Gy={name:"ArrowAutofitWidthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-width",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M10 18h-7"},null),e(" "),t("path",{d:"M21 18h-7"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Zy={name:"ArrowBackUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M9 10h7a4 4 0 1 1 0 8h-1"},null),e(" ")])}},Ky={name:"ArrowBackUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M5 10h11a4 4 0 1 1 0 8h-1"},null),e(" ")])}},Qy={name:"ArrowBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1"},null),e(" ")])}},Jy={name:"ArrowBadgeDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.375 6.22l-4.375 3.498l-4.375 -3.5a1 1 0 0 0 -1.625 .782v6a1 1 0 0 0 .375 .78l5 4a1 1 0 0 0 1.25 0l5 -4a1 1 0 0 0 .375 -.78v-6a1 1 0 0 0 -1.625 -.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tC={name:"ArrowBadgeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13v-6l-5 4l-5 -4v6l5 4z"},null),e(" ")])}},eC={name:"ArrowBadgeLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6h-6a1 1 0 0 0 -.78 .375l-4 5a1 1 0 0 0 0 1.25l4 5a1 1 0 0 0 .78 .375h6l.112 -.006a1 1 0 0 0 .669 -1.619l-3.501 -4.375l3.5 -4.375a1 1 0 0 0 -.78 -1.625z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nC={name:"ArrowBadgeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h6l-4 -5l4 -5h-6l-4 5z"},null),e(" ")])}},lC={name:"ArrowBadgeRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rC={name:"ArrowBadgeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7h-6l4 5l-4 5h6l4 -5z"},null),e(" ")])}},oC={name:"ArrowBadgeUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.375 6.22l-5 4a1 1 0 0 0 -.375 .78v6l.006 .112a1 1 0 0 0 1.619 .669l4.375 -3.501l4.375 3.5a1 1 0 0 0 1.625 -.78v-6a1 1 0 0 0 -.375 -.78l-5 -4a1 1 0 0 0 -1.25 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sC={name:"ArrowBadgeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11v6l-5 -4l-5 4v-6l5 -4z"},null),e(" ")])}},aC={name:"ArrowBarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" "),t("path",{d:"M12 20l4 -4"},null),e(" "),t("path",{d:"M12 20l-4 -4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},iC={name:"ArrowBarLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 12l4 4"},null),e(" "),t("path",{d:"M4 12l4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},hC={name:"ArrowBarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-10 0"},null),e(" "),t("path",{d:"M20 12l-4 4"},null),e(" "),t("path",{d:"M20 12l-4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},dC={name:"ArrowBarToDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M12 14l0 -10"},null),e(" "),t("path",{d:"M12 14l4 -4"},null),e(" "),t("path",{d:"M12 14l-4 -4"},null),e(" ")])}},cC={name:"ArrowBarToLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M10 12l4 4"},null),e(" "),t("path",{d:"M10 12l4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},uC={name:"ArrowBarToRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l-10 0"},null),e(" "),t("path",{d:"M14 12l-4 4"},null),e(" "),t("path",{d:"M14 12l-4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},pC={name:"ArrowBarToUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l0 10"},null),e(" "),t("path",{d:"M12 10l4 4"},null),e(" "),t("path",{d:"M12 10l-4 4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},gC={name:"ArrowBarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 4l4 4"},null),e(" "),t("path",{d:"M12 4l-4 4"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" ")])}},wC={name:"ArrowBearLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-5v5"},null),e(" "),t("path",{d:"M4 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" "),t("path",{d:"M20 5l-4.5 4.5"},null),e(" ")])}},vC={name:"ArrowBearLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3h-5v5"},null),e(" "),t("path",{d:"M8 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" ")])}},fC={name:"ArrowBearRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h5v5"},null),e(" "),t("path",{d:"M20 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M4 5l4.5 4.5"},null),e(" ")])}},mC={name:"ArrowBearRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3h5v5"},null),e(" "),t("path",{d:"M17 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" ")])}},kC={name:"ArrowBigDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.15 .005a2 2 0 0 0 -1.85 1.995v6.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-6.999a2 2 0 0 0 -2 -2h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bC={name:"ArrowBigDownLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5l-.117 .007a1 1 0 0 0 -.883 .993v4.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-4.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MC={name:"ArrowBigDownLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},xC={name:"ArrowBigDownLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l-.117 .007a1 1 0 0 0 -.883 .993v1.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-1.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 5a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zC={name:"ArrowBigDownLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" "),t("path",{d:"M15 6h-6"},null),e(" ")])}},IC={name:"ArrowBigDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z"},null),e(" ")])}},yC={name:"ArrowBigLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CC={name:"ArrowBigLeftLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h5a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-5 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.415 12l6.585 -6.586v3.586l.007 .117a1 1 0 0 0 .993 .883l5 -.001v4l-5 .001a1 1 0 0 0 -1 1v3.586l-6.585 -6.586z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SC={name:"ArrowBigLeftLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" ")])}},$C={name:"ArrowBigLeftLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h2a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-2 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AC={name:"ArrowBigLeftLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" "),t("path",{d:"M18 15v-6"},null),e(" ")])}},BC={name:"ArrowBigLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15h-8v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1z"},null),e(" ")])}},HC={name:"ArrowBigRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-6.999a2 2 0 0 0 -2 2v4l.005 .15a2 2 0 0 0 1.995 1.85l6.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NC={name:"ArrowBigRightLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-4.999a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l4.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jC={name:"ArrowBigRightLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},PC={name:"ArrowBigRightLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.585l-1.999 .001a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l1.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LC={name:"ArrowBigRightLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},DC={name:"ArrowBigRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z"},null),e(" ")])}},OC={name:"ArrowBigUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v7a2 2 0 0 0 2 2h4l.15 -.005a2 2 0 0 0 1.85 -1.995l-.001 -7h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FC={name:"ArrowBigUpLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v5a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -5h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RC={name:"ArrowBigUpLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" ")])}},TC={name:"ArrowBigUpLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v2a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -2h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 17a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EC={name:"ArrowBigUpLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},VC={name:"ArrowBigUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20v-8h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v8a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},_C={name:"ArrowBounceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bounce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h4"},null),e(" "),t("path",{d:"M3 8a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277"},null),e(" "),t("path",{d:"M15 6h5v5"},null),e(" ")])}},WC={name:"ArrowCurveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M10 3v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394"},null),e(" ")])}},XC={name:"ArrowCurveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 7l4 -4l4 4"},null),e(" "),t("path",{d:"M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394"},null),e(" ")])}},qC={name:"ArrowDownBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},YC={name:"ArrowDownCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 7a2 2 0 1 0 0 -4a2 2 0 0 0 0 4"},null),e(" ")])}},UC={name:"ArrowDownLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 8.464l-9.536 9.536"},null),e(" "),t("path",{d:"M6 14v4h4"},null),e(" "),t("path",{d:"M15.586 8.414a2 2 0 1 0 2.828 -2.828a2 2 0 0 0 -2.828 2.828"},null),e(" ")])}},GC={name:"ArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M16 17l-9 0l0 -9"},null),e(" ")])}},ZC={name:"ArrowDownRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v13"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M14.5 5.5l-2.5 -2.5l-2.5 2.5l2.5 2.5z"},null),e(" ")])}},KC={name:"ArrowDownRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 8.464l9.536 9.536"},null),e(" "),t("path",{d:"M14 18h4v-4"},null),e(" "),t("path",{d:"M8.414 8.414a2 2 0 1 0 -2.828 -2.828a2 2 0 0 0 2.828 2.828"},null),e(" ")])}},QC={name:"ArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M17 8l0 9l-9 0"},null),e(" ")])}},JC={name:"ArrowDownSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M14 3v4h-4v-4z"},null),e(" ")])}},tS={name:"ArrowDownTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6v15"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3l3 3l3 -3"},null),e(" ")])}},eS={name:"ArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 13l-6 6"},null),e(" "),t("path",{d:"M6 13l6 6"},null),e(" ")])}},nS={name:"ArrowElbowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14v-6h6"},null),e(" "),t("path",{d:"M3 8l9 9l9 -9"},null),e(" ")])}},lS={name:"ArrowElbowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14v-6h-6"},null),e(" "),t("path",{d:"M21 8l-9 9l-9 -9"},null),e(" ")])}},rS={name:"ArrowForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3h5v5"},null),e(" "),t("path",{d:"M8 3h-5v5"},null),e(" "),t("path",{d:"M21 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v.93"},null),e(" ")])}},oS={name:"ArrowForwardUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M15 10h-7a4 4 0 1 0 0 8h1"},null),e(" ")])}},sS={name:"ArrowForwardUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M19 10h-11a4 4 0 1 0 0 8h1"},null),e(" ")])}},aS={name:"ArrowForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1"},null),e(" ")])}},iS={name:"ArrowGuideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-guide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 19h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" ")])}},hS={name:"ArrowIterationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-iteration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 16a5.5 5.5 0 1 0 -5.5 -5.5v.5"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M18 13l3 3l-3 3"},null),e(" ")])}},dS={name:"ArrowLeftBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-18"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9v6"},null),e(" ")])}},cS={name:"ArrowLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M19 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},uS={name:"ArrowLeftRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h-13"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M18.5 9.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z"},null),e(" ")])}},pS={name:"ArrowLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 13l-4 -4l4 -4"},null),e(" "),t("path",{d:"M12 14a5 5 0 0 1 5 -5h4"},null),e(" "),t("path",{d:"M12 19v-5a5 5 0 0 0 -5 -5h-4"},null),e(" ")])}},gS={name:"ArrowLeftSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 14h-4v-4h4z"},null),e(" ")])}},wS={name:"ArrowLeftTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h-15"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9l-3 3l3 3"},null),e(" ")])}},vS={name:"ArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l6 6"},null),e(" "),t("path",{d:"M5 12l6 -6"},null),e(" ")])}},fS={name:"ArrowLoopLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},mS={name:"ArrowLoopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-13a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},kS={name:"ArrowLoopRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},bS={name:"ArrowLoopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-13a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},MS={name:"ArrowMergeBothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-both",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},xS={name:"ArrowMergeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},zS={name:"ArrowMergeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" ")])}},IS={name:"ArrowMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394"},null),e(" ")])}},yS={name:"ArrowMoveDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v10"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CS={name:"ArrowMoveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h-10"},null),e(" "),t("path",{d:"M6 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z"},null),e(" ")])}},SS={name:"ArrowMoveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h10"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" ")])}},$S={name:"ArrowMoveUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" ")])}},AS={name:"ArrowNarrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 15l-4 4"},null),e(" "),t("path",{d:"M8 15l4 4"},null),e(" ")])}},BS={name:"ArrowNarrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l4 4"},null),e(" "),t("path",{d:"M5 12l4 -4"},null),e(" ")])}},HS={name:"ArrowNarrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M15 8l4 4"},null),e(" ")])}},NS={name:"ArrowNarrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 9l-4 -4"},null),e(" "),t("path",{d:"M8 9l4 -4"},null),e(" ")])}},jS={name:"ArrowRampLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v8.707"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21c0 -6.075 -4.925 -11 -11 -11h-3"},null),e(" ")])}},PS={name:"ArrowRampLeft3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v6"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21v-6a3 3 0 0 0 -3 -3h-11"},null),e(" ")])}},LS={name:"ArrowRampLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 8.707"},null),e(" "),t("path",{d:"M13 7l4 -4l4 4"},null),e(" "),t("path",{d:"M7 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M17 21a11 11 0 0 0 -11 -11h-3"},null),e(" ")])}},DS={name:"ArrowRampRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v8.707"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21c0 -6.075 4.925 -11 11 -11h3"},null),e(" ")])}},OS={name:"ArrowRampRight3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v6"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21v-6a3 3 0 0 1 3 -3h11"},null),e(" ")])}},FS={name:"ArrowRampRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 8.707"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 21a11 11 0 0 1 11 -11h3"},null),e(" ")])}},RS={name:"ArrowRightBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},TS={name:"ArrowRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h14"},null),e(" ")])}},ES={name:"ArrowRightRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M5.5 9.5l-2.5 2.5l2.5 2.5l2.5 -2.5z"},null),e(" ")])}},VS={name:"ArrowRightSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l14 0"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" ")])}},_S={name:"ArrowRightTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 12l15 0"},null),e(" ")])}},WS={name:"ArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M13 18l6 -6"},null),e(" "),t("path",{d:"M13 6l6 6"},null),e(" ")])}},XS={name:"ArrowRotaryFirstLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13.5 9.5l-8.5 8.5"},null),e(" "),t("path",{d:"M10 18h-5v-5"},null),e(" ")])}},qS={name:"ArrowRotaryFirstRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M10.5 9.5l8.5 8.5"},null),e(" "),t("path",{d:"M14 18h5v-5"},null),e(" ")])}},YS={name:"ArrowRotaryLastLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M15 15v6"},null),e(" "),t("path",{d:"M12.5 9.5l-6.5 -6.5"},null),e(" "),t("path",{d:"M11 3h-5v5"},null),e(" ")])}},US={name:"ArrowRotaryLastRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15v6"},null),e(" "),t("path",{d:"M11.5 9.5l6.5 -6.5"},null),e(" "),t("path",{d:"M13 3h5v5"},null),e(" ")])}},GS={name:"ArrowRotaryLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13 7h-10"},null),e(" "),t("path",{d:"M7 11l-4 -4l4 -4"},null),e(" ")])}},ZS={name:"ArrowRotaryRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" "),t("path",{d:"M11 7h10"},null),e(" ")])}},KS={name:"ArrowRotaryStraightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-straight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 16v5"},null),e(" "),t("path",{d:"M13 3v7"},null),e(" "),t("path",{d:"M9 7l4 -4l4 4"},null),e(" ")])}},QS={name:"ArrowRoundaboutLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9h8a5 5 0 1 1 5 5v7"},null),e(" "),t("path",{d:"M7 5l-4 4l4 4"},null),e(" ")])}},JS={name:"ArrowRoundaboutRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9h-8a5 5 0 1 0 -5 5v7"},null),e(" "),t("path",{d:"M17 5l4 4l-4 4"},null),e(" ")])}},t$={name:"ArrowSharpTurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18v-11.31a.7 .7 0 0 0 -1.195 -.495l-9.805 9.805"},null),e(" "),t("path",{d:"M11 16h-5v-5"},null),e(" ")])}},e$={name:"ArrowSharpTurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-11.31a.7 .7 0 0 1 1.195 -.495l9.805 9.805"},null),e(" "),t("path",{d:"M13 16h5v-5"},null),e(" ")])}},n$={name:"ArrowUpBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l0 -18"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 21l6 0"},null),e(" ")])}},l$={name:"ArrowUpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17v-14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 0 4a2 2 0 0 0 0 -4"},null),e(" ")])}},r$={name:"ArrowUpLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536l-9.536 -9.536"},null),e(" "),t("path",{d:"M10 6h-4v4"},null),e(" "),t("path",{d:"M15.586 15.586a2 2 0 1 0 2.828 2.828a2 2 0 0 0 -2.828 -2.828"},null),e(" ")])}},o$={name:"ArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M16 7l-9 0l0 9"},null),e(" ")])}},s$={name:"ArrowUpRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v-13"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},a$={name:"ArrowUpRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 15.536l9.536 -9.536"},null),e(" "),t("path",{d:"M18 10v-4h-4"},null),e(" "),t("path",{d:"M8.414 15.586a2 2 0 1 0 -2.828 2.828a2 2 0 0 0 2.828 -2.828"},null),e(" ")])}},i$={name:"ArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M8 7l9 0l0 9"},null),e(" ")])}},h$={name:"ArrowUpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l0 -14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10 21v-4h4v4z"},null),e(" ")])}},d$={name:"ArrowUpTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l0 -15"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M15 21l-3 -3l-3 3"},null),e(" ")])}},c$={name:"ArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 11l-6 -6"},null),e(" "),t("path",{d:"M6 11l6 -6"},null),e(" ")])}},u$={name:"ArrowWaveLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14h-4v-4"},null),e(" "),t("path",{d:"M21 12c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3.113 -.716 -4 -2s-2.48 -2.033 -4 -2c-1.52 -.033 -3 1 -4 2l-2 2"},null),e(" ")])}},p$={name:"ArrowWaveLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h-4v4"},null),e(" "),t("path",{d:"M21 12c-.887 -1.285 -2.48 -2.033 -4 -2c-1.52 -.033 -3.113 .715 -4 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3 -1 -4 -2l-2 -2"},null),e(" ")])}},g$={name:"ArrowWaveRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M3 12c.887 1.284 2.48 2.033 4 2c1.52 .033 3.113 -.716 4 -2s2.48 -2.033 4 -2c1.52 -.033 3 1 4 2l2 2"},null),e(" ")])}},w$={name:"ArrowWaveRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M3 12c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2"},null),e(" ")])}},v$={name:"ArrowZigZagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-zig-zag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-10l10 6v-12"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" ")])}},f$={name:"ArrowsCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h4v4"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M4 20l5 -5"},null),e(" "),t("path",{d:"M16 20h4v-4"},null),e(" "),t("path",{d:"M4 4l16 16"},null),e(" ")])}},m$={name:"ArrowsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},k$={name:"ArrowsDiagonalMinimize2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 10h-4v-4"},null),e(" "),t("path",{d:"M20 4l-6 6"},null),e(" "),t("path",{d:"M6 14h4v4"},null),e(" "),t("path",{d:"M10 14l-6 6"},null),e(" ")])}},b$={name:"ArrowsDiagonalMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h4v-4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" "),t("path",{d:"M18 14h-4v4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" ")])}},M$={name:"ArrowsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" ")])}},x$={name:"ArrowsDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16h10"},null),e(" "),t("path",{d:"M11 16l4 4"},null),e(" "),t("path",{d:"M11 16l4 -4"},null),e(" "),t("path",{d:"M13 8h-10"},null),e(" "),t("path",{d:"M13 8l-4 4"},null),e(" "),t("path",{d:"M13 8l-4 -4"},null),e(" ")])}},z$={name:"ArrowsDoubleNeSwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-ne-sw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14l11 -11"},null),e(" "),t("path",{d:"M10 3h4v4"},null),e(" "),t("path",{d:"M10 17v4h4"},null),e(" "),t("path",{d:"M21 10l-11 11"},null),e(" ")])}},I$={name:"ArrowsDoubleNwSeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-nw-se",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21l-11 -11"},null),e(" "),t("path",{d:"M3 14v-4h4"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M10 3l11 11"},null),e(" ")])}},y$={name:"ArrowsDoubleSeNwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-se-nw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l11 11"},null),e(" "),t("path",{d:"M14 17v4h-4"},null),e(" "),t("path",{d:"M14 3h-4v4"},null),e(" "),t("path",{d:"M21 14l-11 -11"},null),e(" ")])}},C$={name:"ArrowsDoubleSwNeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-sw-ne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-11 11"},null),e(" "),t("path",{d:"M3 10v4h4"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M10 21l11 -11"},null),e(" ")])}},S$={name:"ArrowsDownUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" ")])}},$$={name:"ArrowsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M4 18l3 3l3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},A$={name:"ArrowsExchange2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h-14l4 -4"},null),e(" "),t("path",{d:"M7 14h14l-4 4"},null),e(" ")])}},B$={name:"ArrowsExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h14l-4 -4"},null),e(" "),t("path",{d:"M17 14h-14l4 4"},null),e(" ")])}},H$={name:"ArrowsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" ")])}},N$={name:"ArrowsJoin2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h1.948c1.913 0 3.705 .933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5h6.448"},null),e(" "),t("path",{d:"M3 17h1.95a5.854 5.854 0 0 0 4.798 -2.5a5.854 5.854 0 0 1 4.798 -2.5h5.454"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},j$={name:"ArrowsJoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h5l3.5 5h9.5"},null),e(" "),t("path",{d:"M3 17h5l3.495 -5"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},P$={name:"ArrowsLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-4 4l4 4"},null),e(" "),t("path",{d:"M3 7h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M13 17l4 4l4 -4"},null),e(" ")])}},L$={name:"ArrowsLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M6 10l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},D$={name:"ArrowsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},O$={name:"ArrowsMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},F$={name:"ArrowsMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l4 0l0 -4"},null),e(" "),t("path",{d:"M3 3l6 6"},null),e(" "),t("path",{d:"M5 15l4 0l0 4"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M19 9l-4 0l0 -4"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M19 15l-4 0l0 4"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},R$={name:"ArrowsMoveHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},T$={name:"ArrowsMoveVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},E$={name:"ArrowsMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},V$={name:"ArrowsRandomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-random",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 21h-4v-4"},null),e(" "),t("path",{d:"M16 21l5 -5"},null),e(" "),t("path",{d:"M6.5 9.504l-3.5 -2l2 -3.504"},null),e(" "),t("path",{d:"M3 7.504l6.83 -1.87"},null),e(" "),t("path",{d:"M4 16l4 -1l1 4"},null),e(" "),t("path",{d:"M8 15l-3.5 6"},null),e(" "),t("path",{d:"M21 5l-.5 4l-4 -.5"},null),e(" "),t("path",{d:"M20.5 9l-4.5 -5.5"},null),e(" ")])}},_$={name:"ArrowsRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4l4 -4"},null),e(" "),t("path",{d:"M7 21v-11a3 3 0 0 1 3 -3h11"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" ")])}},W$={name:"ArrowsRightLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},X$={name:"ArrowsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" ")])}},q$={name:"ArrowsShuffle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M3 17h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5"},null),e(" ")])}},Y$={name:"ArrowsShuffleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M21 7h-5a4.978 4.978 0 0 0 -3 1m-4 8a4.984 4.984 0 0 1 -3 1h-3"},null),e(" ")])}},U$={name:"ArrowsSortIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-sort",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l4 -4l4 4m-4 -4v14"},null),e(" "),t("path",{d:"M21 15l-4 4l-4 -4m4 4v-14"},null),e(" ")])}},G$={name:"ArrowsSplit2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-5.397a5 5 0 0 1 -4.096 -2.133l-.514 -.734a5 5 0 0 0 -4.096 -2.133h-3.897"},null),e(" "),t("path",{d:"M21 7h-5.395a5 5 0 0 0 -4.098 2.135l-.51 .73a5 5 0 0 1 -4.097 2.135h-3.9"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},Z$={name:"ArrowsSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-8l-3.5 -5h-6.5"},null),e(" "),t("path",{d:"M21 7h-8l-3.495 5"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},K$={name:"ArrowsTransferDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v6"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21v-18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 21v-2"},null),e(" "),t("path",{d:"M17 15v-2"},null),e(" ")])}},Q$={name:"ArrowsTransferUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21v-6"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 3v18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M7 9v2"},null),e(" ")])}},J$={name:"ArrowsUpDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" "),t("path",{d:"M10 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},tA={name:"ArrowsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 3v11a3 3 0 0 1 -3 3h-11"},null),e(" "),t("path",{d:"M7 13l-4 4l4 4"},null),e(" ")])}},eA={name:"ArrowsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 21l4 -4l-4 -4"},null),e(" "),t("path",{d:"M21 17h-11a3 3 0 0 1 -3 -3v-11"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" ")])}},nA={name:"ArrowsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M4 6l3 -3l3 3"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" ")])}},lA={name:"ArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M8 17l4 4l4 -4"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},rA={name:"ArtboardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7h-6a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-6a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oA={name:"ArtboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M15.716 15.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7"},null),e(" "),t("path",{d:"M3 8h1"},null),e(" "),t("path",{d:"M3 16h1"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M16 3v1"},null),e(" "),t("path",{d:"M20 8h1"},null),e(" "),t("path",{d:"M20 16h1"},null),e(" "),t("path",{d:"M8 20v1"},null),e(" "),t("path",{d:"M16 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sA={name:"ArtboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 8l1 0"},null),e(" "),t("path",{d:"M3 16l1 0"},null),e(" "),t("path",{d:"M8 3l0 1"},null),e(" "),t("path",{d:"M16 3l0 1"},null),e(" "),t("path",{d:"M20 8l1 0"},null),e(" "),t("path",{d:"M20 16l1 0"},null),e(" "),t("path",{d:"M8 20l0 1"},null),e(" "),t("path",{d:"M16 20l0 1"},null),e(" ")])}},aA={name:"ArticleFilledFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-filled-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-2 12h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iA={name:"ArticleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 0 1 2 2v11m-1.172 2.821a1.993 1.993 0 0 1 -.828 .179h-14a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.156 -1.814"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hA={name:"ArticleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8h10"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" ")])}},dA={name:"AspectRatioFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 3a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-3a1 1 0 0 1 .883 -.993l.117 -.007h3zm9 5a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 1 -.883 .993l-.117 .007h-3a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 .883 -.993l.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cA={name:"AspectRatioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 12v-3h2"},null),e(" "),t("path",{d:"M17 12v1m-2 2h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uA={name:"AspectRatioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" "),t("path",{d:"M17 12v3h-3"},null),e(" ")])}},pA={name:"AssemblyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.703 4.685l2.326 -1.385a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .248 -.046 .49 -.132 .715m-2.156 1.837l-4.741 3.029a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.157 -.689"},null),e(" "),t("path",{d:"M11.593 7.591c.295 -.133 .637 -.12 .921 .04l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702m-1.152 2.86l-2.363 1.514a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.568 -.339"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gA={name:"AssemblyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.422c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z"},null),e(" ")])}},wA={name:"AssetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.218 17.975l6.619 -12.174"},null),e(" "),t("path",{d:"M6.079 9.756l12.217 -6.631"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},vA={name:"AsteriskSimpleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk-simple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-9"},null),e(" "),t("path",{d:"M12 12l-9 -2.5"},null),e(" "),t("path",{d:"M12 12l9 -2.5"},null),e(" "),t("path",{d:"M12 12l6 8.5"},null),e(" "),t("path",{d:"M12 12l-6 8.5"},null),e(" ")])}},fA={name:"AsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 4.5"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l-8 4.5"},null),e(" ")])}},mA={name:"AtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.174 9.17a4 4 0 0 0 5.646 5.668m1.18 -2.838a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M19.695 15.697a2.5 2.5 0 0 0 1.305 -2.197v-1.5a9 9 0 0 0 -13.055 -8.047m-2.322 1.683a9 9 0 0 0 9.877 14.644"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kA={name:"AtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 12v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28"},null),e(" ")])}},bA={name:"Atom2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 20a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2.89 12.006a1 1 0 0 1 1.104 .884a8 8 0 0 0 4.444 6.311a1 1 0 1 1 -.876 1.799a10 10 0 0 1 -5.556 -7.89a1 1 0 0 1 .884 -1.103z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.993 12l.117 .006a1 1 0 0 1 .884 1.104a10 10 0 0 1 -5.556 7.889a1 1 0 1 1 -.876 -1.798a8 8 0 0 0 4.444 -6.31a1 1 0 0 1 .987 -.891z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.567 4.226a10 10 0 0 1 12.666 0a1 1 0 1 1 -1.266 1.548a8 8 0 0 0 -10.134 0a1 1 0 1 1 -1.266 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MA={name:"Atom2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M3 9l0 .01"},null),e(" "),t("path",{d:"M21 9l0 .01"},null),e(" "),t("path",{d:"M8 20.1a9 9 0 0 1 -5 -7.1"},null),e(" "),t("path",{d:"M16 20.1a9 9 0 0 0 5 -7.1"},null),e(" "),t("path",{d:"M6.2 5a9 9 0 0 1 11.4 0"},null),e(" ")])}},xA={name:"AtomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M9.172 9.172c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 6 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zA={name:"AtomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M19.071 4.929c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242"},null),e(" ")])}},IA={name:"AugmentedReality2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h-2a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M17 17l-4 -2.5l4 -2.5l4 2.5v4.5l-4 2.5z"},null),e(" "),t("path",{d:"M13 14.5v4.5l4 2.5"},null),e(" "),t("path",{d:"M17 17l4 -2.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" ")])}},yA={name:"AugmentedRealityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.557 .228 -1.061 .595 -1.424"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.558 0 1.062 -.228 1.425 -.596"},null),e(" "),t("path",{d:"M12 12.5l.312 -.195m2.457 -1.536l1.231 -.769"},null),e(" "),t("path",{d:"M9.225 9.235l-1.225 .765l4 2.5v4.5l3.076 -1.923m.924 -3.077v-2l-4 -2.5l-.302 .189"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CA={name:"AugmentedRealityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12.5l4 -2.5"},null),e(" "),t("path",{d:"M8 10l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" ")])}},SA={name:"AwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 13.983l1.966 3.406a1.001 1.001 0 0 1 -.705 1.488l-.113 .011l-.112 -.001l-2.933 -.19l-1.303 2.636a1.001 1.001 0 0 1 -1.608 .26l-.082 -.094l-.072 -.11l-1.968 -3.407a8.994 8.994 0 0 0 6.93 -3.999z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.43 17.982l-1.966 3.408a1.001 1.001 0 0 1 -1.622 .157l-.076 -.1l-.064 -.114l-1.304 -2.635l-2.931 .19a1.001 1.001 0 0 1 -1.022 -1.29l.04 -.107l.05 -.1l1.968 -3.409a8.994 8.994 0 0 0 6.927 4.001z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2l.24 .004a7 7 0 0 1 6.76 6.996l-.003 .193l-.007 .192l-.018 .245l-.026 .242l-.024 .178a6.985 6.985 0 0 1 -.317 1.268l-.116 .308l-.153 .348a7.001 7.001 0 0 1 -12.688 -.028l-.13 -.297l-.052 -.133l-.08 -.217l-.095 -.294a6.96 6.96 0 0 1 -.093 -.344l-.06 -.271l-.049 -.271l-.02 -.139l-.039 -.323l-.024 -.365l-.006 -.292a7 7 0 0 1 6.76 -6.996l.24 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$A={name:"AwardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.72 12.704a6 6 0 0 0 -8.433 -8.418m-1.755 2.24a6 6 0 0 0 7.936 7.944"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AA={name:"AwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" ")])}},BA={name:"AxeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6.66 15.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z"},null),e(" ")])}},HA={name:"AxisXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 5v.01"},null),e(" "),t("path",{d:"M17 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" ")])}},NA={name:"AxisYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M19 20h-.01"},null),e(" "),t("path",{d:"M4 7l3 -3l3 3"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" ")])}},jA={name:"BabyBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 4a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z"},null),e(" ")])}},PA={name:"BabyCarriageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-carriage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6"},null),e(" "),t("path",{d:"M6 9h14"},null),e(" "),t("path",{d:"M9 17l1 -3"},null),e(" "),t("path",{d:"M16 14l1 3"},null),e(" ")])}},LA={name:"BackhoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backhoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M21.12 9.88l-3.12 -4.88l-5 5"},null),e(" "),t("path",{d:"M21.12 9.88a3 3 0 0 1 -2.12 5.12a3 3 0 0 1 -2.12 -.88l4.24 -4.24z"},null),e(" ")])}},DA={name:"BackpackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h3a6 6 0 0 1 6 6v3m-.129 3.872a3 3 0 0 1 -2.871 2.128h-8a3 3 0 0 1 -3 -3v-6a5.99 5.99 0 0 1 2.285 -4.712"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OA={name:"BackpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M11 10h2"},null),e(" ")])}},FA={name:"BackspaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5a2 2 0 0 1 1.995 1.85l.005 .15v10a2 2 0 0 1 -1.85 1.995l-.15 .005h-11a1 1 0 0 1 -.608 -.206l-.1 -.087l-5.037 -5.04c-.809 -.904 -.847 -2.25 -.083 -3.23l.12 -.144l5 -5a1 1 0 0 1 .577 -.284l.131 -.009h11zm-7.489 4.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RA={name:"BackspaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-11l-5 -5a1.5 1.5 0 0 1 0 -2l5 -5z"},null),e(" "),t("path",{d:"M12 10l4 4m0 -4l-4 4"},null),e(" ")])}},TA={name:"Badge3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},EA={name:"Badge4kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-4k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M10 9v6"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" ")])}},VA={name:"Badge8kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-8k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" "),t("path",{d:"M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" ")])}},_A={name:"BadgeAdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" ")])}},WA={name:"BadgeArIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" ")])}},XA={name:"BadgeCcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-cc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},qA={name:"BadgeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v13a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-13a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YA={name:"BadgeHdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-hd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M10 15v-6"},null),e(" "),t("path",{d:"M7 12h3"},null),e(" ")])}},UA={name:"BadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GA={name:"BadgeSdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-sd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},ZA={name:"BadgeTmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-tm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 9h4"},null),e(" "),t("path",{d:"M8 9v6"},null),e(" "),t("path",{d:"M13 15v-6l2 3l2 -3v6"},null),e(" ")])}},KA={name:"BadgeVoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" "),t("path",{d:"M15.5 9a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" ")])}},QA={name:"BadgeVrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" ")])}},JA={name:"BadgeWcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-wc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6.5 9l.5 6l2 -4l2 4l.5 -6"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},tB={name:"BadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-13l-5 3l-5 -3v13l5 3z"},null),e(" ")])}},eB={name:"BadgesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 12.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nB={name:"BadgesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3"},null),e(" "),t("path",{d:"M13.873 9.876l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lB={name:"BadgesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-4l-5 3l-5 -3v4l5 3z"},null),e(" "),t("path",{d:"M17 8v-4l-5 3l-5 -3v4l5 3z"},null),e(" ")])}},rB={name:"BaguetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baguette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841z"},null),e(" "),t("path",{d:"M9.5 7.5l1.5 3.5"},null),e(" "),t("path",{d:"M6.5 10.5l1.5 3.5"},null),e(" "),t("path",{d:"M12.5 4.5l1.5 3.5"},null),e(" ")])}},oB={name:"BallAmericanFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-1 1m-2 2l-3 3"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M6.813 6.802a12.96 12.96 0 0 0 -3.813 9.198a5 5 0 0 0 5 5a12.96 12.96 0 0 0 9.186 -3.801m1.789 -2.227a12.94 12.94 0 0 0 2.025 -6.972a5 5 0 0 0 -5 -5a12.94 12.94 0 0 0 -6.967 2.022"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sB={name:"BallAmericanFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M12 10l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" ")])}},aB={name:"BallBaseballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-baseball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z"},null),e(" "),t("path",{d:"M12.495 3.02a9 9 0 0 1 -9.475 9.475"},null),e(" "),t("path",{d:"M20.98 11.505a9 9 0 0 0 -9.475 9.475"},null),e(" "),t("path",{d:"M9 9l2 2"},null),e(" "),t("path",{d:"M13 13l2 2"},null),e(" "),t("path",{d:"M11 7l2 1"},null),e(" "),t("path",{d:"M7 11l1 2"},null),e(" "),t("path",{d:"M16 11l1 2"},null),e(" "),t("path",{d:"M11 16l2 1"},null),e(" ")])}},iB={name:"BallBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.65 5.65l12.7 12.7"},null),e(" "),t("path",{d:"M5.65 18.35l12.7 -12.7"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 0 9 9"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 1 9 9"},null),e(" ")])}},hB={name:"BallBowlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-bowling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 9l0 .01"},null),e(" "),t("path",{d:"M15 8l0 .01"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" ")])}},dB={name:"BallFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73"},null),e(" "),t("path",{d:"M12 7l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681z"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M15 16l2.5 3"},null),e(" "),t("path",{d:"M16.755 10.455l3.745 -1.455"},null),e(" "),t("path",{d:"M9.061 16.045l-2.561 2.955"},null),e(" "),t("path",{d:"M7.245 10.455l-3.745 -1.455"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cB={name:"BallFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55z"},null),e(" "),t("path",{d:"M12 7v-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45"},null),e(" ")])}},uB={name:"BallTennisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-tennis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 5.3a9 9 0 0 1 0 13.4"},null),e(" "),t("path",{d:"M18 5.3a9 9 0 0 0 0 13.4"},null),e(" ")])}},pB={name:"BallVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 4"},null),e(" "),t("path",{d:"M7.5 13.5a12 12 0 0 0 8.5 6.5"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -7.464 4.928"},null),e(" "),t("path",{d:"M12.951 7.353a12 12 0 0 0 -9.88 4.111"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -.536 -8.928"},null),e(" "),t("path",{d:"M15.549 15.147a12 12 0 0 0 1.38 -10.611"},null),e(" ")])}},gB={name:"BalloonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a7 7 0 0 1 7 7c0 5.457 -3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.004 -.24a7 7 0 0 1 6.996 -6.76zm0 4a1 1 0 0 0 0 2l.117 .007a1 1 0 0 1 .883 .993l.007 .117a1 1 0 0 0 1.993 -.117a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 1 .993 .883l.007 .117v1a3 3 0 0 1 -2.824 2.995l-.176 .005h-3a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 1 -2 0a3 3 0 0 1 2.824 -2.995l.176 -.005h3a1 1 0 0 0 .993 -.883l.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wB={name:"BalloonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M7.762 3.753a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vB={name:"BalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" ")])}},fB={name:"BallpenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.828 2a3 3 0 0 1 1.977 .743l.145 .136l1.171 1.17a3 3 0 0 1 .136 4.1l-.136 .144l-1.706 1.707l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.292 -3.293l-1.586 -1.585l-7.464 7.464a3.828 3.828 0 0 1 -2.474 1.114l-.233 .008c-.674 0 -1.33 -.178 -1.905 -.508l-1.216 1.214a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.214 -1.216a3.828 3.828 0 0 1 .454 -4.442l.16 -.17l10.586 -10.586a3 3 0 0 1 1.923 -.873l.198 -.006zm0 2a1 1 0 0 0 -.608 .206l-.099 .087l-1.707 1.707l2.586 2.585l1.707 -1.706a1 1 0 0 0 .284 -.576l.01 -.131a1 1 0 0 0 -.207 -.609l-.087 -.099l-1.171 -1.171a1 1 0 0 0 -.708 -.293z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mB={name:"BallpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-2 2"},null),e(" "),t("path",{d:"M10 10l-4.172 4.172a2.828 2.828 0 1 0 4 4l4.172 -4.172"},null),e(" "),t("path",{d:"M16 12l4.414 -4.414a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-4.414 4.414"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kB={name:"BallpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-4 4"},null),e(" "),t("path",{d:"M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" ")])}},bB={name:"BanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.7 5.7l12.6 12.6"},null),e(" ")])}},MB={name:"BandageFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.207 3.793a5.95 5.95 0 0 1 .179 8.228l-.179 .186l-8 8a5.95 5.95 0 0 1 -8.593 -8.228l.179 -.186l8 -8a5.95 5.95 0 0 1 8.414 0zm-8.207 9.207a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-4 0a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xB={name:"BandageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M10.513 6.487l1.987 -1.987a4.95 4.95 0 0 1 7 7l-2.018 2.018m-1.982 1.982l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zB={name:"BandageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" "),t("path",{d:"M10 12l0 .01"},null),e(" "),t("path",{d:"M12 10l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" ")])}},IB={name:"BarbellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6.298 6.288a1 1 0 0 0 -.298 .712v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-8"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M15 15v2a1 1 0 0 0 1 1h1c.275 0 .523 -.11 .704 -.29m.296 -3.71v-7a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1v4"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yB={name:"BarbellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M15 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" ")])}},CB={name:"BarcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2c.551 0 1.05 -.223 1.412 -.584"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11v2"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SB={name:"BarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11l0 2"},null),e(" "),t("path",{d:"M14 11h1v2h-1z"},null),e(" "),t("path",{d:"M19 11l0 2"},null),e(" ")])}},$B={name:"BarrelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8.722a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78a16.35 16.35 0 0 1 -.407 3.609m-.964 3.013l-.066 .158a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.21 .458 -4.42 1.374 -6.63"},null),e(" "),t("path",{d:"M14 4c.585 2.337 .913 4.674 .985 7.01m-.114 3.86a33.415 33.415 0 0 1 -.871 5.13"},null),e(" "),t("path",{d:"M10 4a34.42 34.42 0 0 0 -.366 1.632m-.506 3.501a32.126 32.126 0 0 0 -.128 2.867c0 2.667 .333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h11.5"},null),e(" "),t("path",{d:"M19.5 8h-7.5m-4 0h-3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AB={name:"BarrelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.278 4h9.444a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78c0 2.26 -.479 4.52 -1.437 6.78a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.26 .479 -4.52 1.437 -6.78a2 2 0 0 1 1.841 -1.22z"},null),e(" "),t("path",{d:"M14 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8"},null),e(" "),t("path",{d:"M10 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h15"},null),e(" "),t("path",{d:"M19.5 8h-15"},null),e(" ")])}},BB={name:"BarrierBlockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a1 1 0 0 1 1 1v7c0 .27 -.107 .516 -.282 .696"},null),e(" "),t("path",{d:"M16 16h-11a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l4.244 -4.244"},null),e(" "),t("path",{d:"M13.745 9.755l2.755 -2.755"},null),e(" "),t("path",{d:"M13.5 16l1.249 -1.249"},null),e(" "),t("path",{d:"M16.741 12.759l3.259 -3.259"},null),e(" "),t("path",{d:"M4 13.5l4.752 -4.752"},null),e(" "),t("path",{d:"M17 17v3"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HB={name:"BarrierBlockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l9 -9"},null),e(" "),t("path",{d:"M13.5 16l6.5 -6.5"},null),e(" "),t("path",{d:"M4 13.5l6.5 -6.5"},null),e(" "),t("path",{d:"M17 16v4"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M7 7v-2"},null),e(" ")])}},NB={name:"BaselineDensityLargeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-large",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" ")])}},jB={name:"BaselineDensityMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" ")])}},PB={name:"BaselineDensitySmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 21h16"},null),e(" ")])}},LB={name:"BaselineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M8 16v-8a4 4 0 1 1 8 0v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" ")])}},DB={name:"BasketFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.684 3.27l.084 .09l4.7 5.64h3.532a1 1 0 0 1 .991 1.131l-.02 .112l-1.984 7.918c-.258 1.578 -1.41 2.781 -2.817 2.838l-.17 .001l-10.148 -.002c-1.37 -.053 -2.484 -1.157 -2.787 -2.57l-.035 -.185l-2 -8a1 1 0 0 1 .857 -1.237l.113 -.006h3.53l4.702 -5.64a1 1 0 0 1 1.452 -.09zm-.684 8.73a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176a3 3 0 1 0 2.995 -3.176zm0 -6.438l-2.865 3.438h5.73l-2.865 -3.438z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OB={name:"BasketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l1.359 -1.63"},null),e(" "),t("path",{d:"M10.176 6.188l1.824 -2.188l5 6"},null),e(" "),t("path",{d:"M18.77 18.757c-.358 .768 -1.027 1.262 -1.77 1.243h-10c-.966 .024 -1.807 -.817 -2 -2l-2 -8h7"},null),e(" "),t("path",{d:"M14 10h7l-1.397 5.587"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FB={name:"BasketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l5 -6l5 6"},null),e(" "),t("path",{d:"M21 10l-2 8a2 2.5 0 0 1 -2 2h-10a2 2.5 0 0 1 -2 -2l-2 -8z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},RB={name:"BatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},TB={name:"BathFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .993 .883l.007 .117v2.25a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.25h-2a1 1 0 0 0 -.993 .883l-.007 .117v6h13a2 2 0 0 1 1.995 1.85l.005 .15v3c0 1.475 -.638 2.8 -1.654 3.715l.486 .73a1 1 0 0 1 -1.594 1.203l-.07 -.093l-.55 -.823a4.98 4.98 0 0 1 -1.337 .26l-.281 .008h-10a4.994 4.994 0 0 1 -1.619 -.268l-.549 .823a1 1 0 0 1 -1.723 -1.009l.059 -.1l.486 -.73a4.987 4.987 0 0 1 -1.647 -3.457l-.007 -.259v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EB={name:"BathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h4a1 1 0 0 1 1 1v3c0 .311 -.036 .614 -.103 .904m-1.61 2.378a3.982 3.982 0 0 1 -2.287 .718h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M6 12v-6m1.178 -2.824c.252 -.113 .53 -.176 .822 -.176h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VB={name:"BathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M6 12v-7a2 2 0 0 1 2 -2h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" ")])}},_B={name:"Battery1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WB={name:"Battery1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},XB={name:"Battery2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qB={name:"Battery2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" ")])}},YB={name:"Battery3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UB={name:"Battery3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" ")])}},GB={name:"Battery4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZB={name:"Battery4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" "),t("path",{d:"M16 10l0 4"},null),e(" ")])}},KB={name:"BatteryAutomotiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-automotive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 6v-2"},null),e(" "),t("path",{d:"M19 4l0 2"},null),e(" "),t("path",{d:"M6.5 13l3 0"},null),e(" "),t("path",{d:"M14.5 13l3 0"},null),e(" "),t("path",{d:"M16 11.5l0 3"},null),e(" ")])}},QB={name:"BatteryCharging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5"},null),e(" "),t("path",{d:"M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"},null),e(" "),t("path",{d:"M6 22v-3"},null),e(" "),t("path",{d:"M4 15v-2.5"},null),e(" "),t("path",{d:"M8 15v-2.5"},null),e(" ")])}},JB={name:"BatteryChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h1a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 7h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M12 8l-2 4h3l-2 4"},null),e(" ")])}},tH={name:"BatteryEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5"},null),e(" "),t("path",{d:"M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z"},null),e(" "),t("path",{d:"M3 20v-3"},null),e(" ")])}},eH={name:"BatteryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nH={name:"BatteryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1"},null),e(" ")])}},lH={name:"BatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" ")])}},rH={name:"BeachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.071 15.102a7.502 7.502 0 0 0 -8.124 1.648"},null),e(" "),t("path",{d:"M10.27 6.269l9.926 5.731a6 6 0 0 0 -10.32 -6.123"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-.739 1.279"},null),e(" "),t("path",{d:"M12.794 12.82l-.794 1.376"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.135 -.858"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oH={name:"BeachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"},null),e(" "),t("path",{d:"M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-3 5.196"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25"},null),e(" ")])}},sH={name:"BedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a1 1 0 0 1 .993 .883l.007 .117v6h6v-5a1 1 0 0 1 .883 -.993l.117 -.007h8a3 3 0 0 1 2.995 2.824l.005 .176v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-3h-16v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-11a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 8a2 2 0 1 1 -1.995 2.15l-.005 -.15l.005 -.15a2 2 0 0 1 1.995 -1.85z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aH={name:"BedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11"},null),e(" "),t("path",{d:"M3 14h11"},null),e(" "),t("path",{d:"M18 14h3"},null),e(" "),t("path",{d:"M21 18v-8a2 2 0 0 0 -2 -2h-7"},null),e(" "),t("path",{d:"M11 11v3"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iH={name:"BedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11m0 -4h18m0 4v-8a2 2 0 0 0 -2 -2h-8v6"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hH={name:"BeerFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v4c0 1.335 -.229 2.386 -.774 3.692l-.157 .363l-.31 .701a8.902 8.902 0 0 0 -.751 3.242l-.008 .377v3.625a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3.625c0 -1.132 -.21 -2.25 -.617 -3.28l-.142 -.34l-.31 -.699c-.604 -1.358 -.883 -2.41 -.925 -3.698l-.006 -.358v-4a2 2 0 0 1 1.85 -1.995l.15 -.005h10zm0 2h-10v3h10v-3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dH={name:"BeerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a8 8 0 0 0 .845 -3.578v-4.111h-9"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cH={name:"BeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6a1 1 0 0 0 1 -1v-3.625c0 -1.397 .29 -2.775 .845 -4.025l.31 -.7c.556 -1.25 .845 -2.253 .845 -3.65v-4a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v4c0 1.397 .29 2.4 .845 3.65l.31 .7a9.931 9.931 0 0 1 .845 4.025v3.625a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},uH={name:"BellBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.368 2.67"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},pH={name:"BellCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},gH={name:"BellCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.016 .129 .037 .256 .065 .382"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.502 2.959"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wH={name:"BellCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.498 2.958"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},vH={name:"BellCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" ")])}},fH={name:"BellDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.911 5.17"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.02 2.822"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},mH={name:"BellDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.518 2.955"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},kH={name:"BellExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1.5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},bH={name:"BellFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MH={name:"BellHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1c0 1.408 .97 2.59 2.28 2.913"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xH={name:"BellMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 8h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zH={name:"BellMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.047 .386 .149 .758 .3 1.107"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.504 2.958"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},IH={name:"BellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.346 5.353c.21 -.129 .428 -.246 .654 -.353a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-1 3h-13a4 4 0 0 0 2 -3v-3a6.996 6.996 0 0 1 1.273 -3.707"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yH={name:"BellPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.022 2.821"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},CH={name:"BellPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.64 2.931"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},SH={name:"BellPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm0 6a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$H={name:"BellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.51 2.957"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},AH={name:"BellQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 5.914 .716"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},BH={name:"BellRinging2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.63 17.531c.612 .611 .211 1.658 -.652 1.706a3.992 3.992 0 0 1 -3.05 -1.166a3.992 3.992 0 0 1 -1.165 -3.049c.046 -.826 1.005 -1.228 1.624 -.726l.082 .074l3.161 3.16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.071 3.929c.96 .96 1.134 2.41 .52 3.547l-.09 .153l-.024 .036a8.013 8.013 0 0 1 -1.446 7.137l-.183 .223l-.191 .218l-2.073 2.072l-.08 .112a3 3 0 0 0 -.499 2.113l.035 .201l.045 .185c.264 .952 -.853 1.645 -1.585 1.051l-.086 -.078l-11.313 -11.313c-.727 -.727 -.017 -1.945 .973 -1.671a3 3 0 0 0 2.5 -.418l.116 -.086l2.101 -2.1a8 8 0 0 1 7.265 -1.86l.278 .071l.037 -.023a3.003 3.003 0 0 1 3.432 .192l.14 .117l.128 .12z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HH={name:"BellRinging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.364 4.636a2 2 0 0 1 0 2.828a7 7 0 0 1 -1.414 7.072l-2.122 2.12a4 4 0 0 0 -.707 3.536l-11.313 -11.312a4 4 0 0 0 3.535 -.707l2.121 -2.123a7 7 0 0 1 7.072 -1.414a2 2 0 0 1 2.828 0z"},null),e(" "),t("path",{d:"M7.343 12.414l-.707 .707a3 3 0 0 0 4.243 4.243l.707 -.707"},null),e(" ")])}},NH={name:"BellRingingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.451 2.344a1 1 0 0 1 1.41 -.099a12.05 12.05 0 0 1 3.048 4.064a1 1 0 1 1 -1.818 .836a10.05 10.05 0 0 0 -2.54 -3.39a1 1 0 0 1 -.1 -1.41z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.136 2.245a1 1 0 0 1 1.312 1.51a10.05 10.05 0 0 0 -2.54 3.39a1 1 0 1 1 -1.817 -.835a12.05 12.05 0 0 1 3.045 -4.065z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jH={name:"BellRingingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M21 6.727a11.05 11.05 0 0 0 -2.794 -3.727"},null),e(" "),t("path",{d:"M3 6.727a11.05 11.05 0 0 1 2.792 -3.727"},null),e(" ")])}},PH={name:"BellSchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13.5 15h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5"},null),e(" "),t("path",{d:"M16 17a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068"},null),e(" "),t("path",{d:"M10 10v.01"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},LH={name:"BellSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.685 2.984"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},DH={name:"BellShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},OH={name:"BellStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 17h-5.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.88 5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.15 2.878"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},FH={name:"BellUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.49 2.96"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},RH={name:"BellXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm-1.489 6.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TH={name:"BellXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.194 2.753"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},EH={name:"BellZFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 6h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VH={name:"BellZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M10 9h4l-4 4h4"},null),e(" ")])}},_H={name:"BellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" ")])}},WH={name:"BetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22v-14a4 4 0 0 1 4 -4h.5a3.5 3.5 0 0 1 0 7h-.5h.5a4.5 4.5 0 1 1 -4.5 4.5v-.5"},null),e(" ")])}},XH={name:"BibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 7v6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},qH={name:"BikeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.437 16.44a3 3 0 0 0 4.123 4.123m1.44 -2.563a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M12 19v-4l-3 -3l1.665 -1.332m2.215 -1.772l1.12 -.896l2 3h3"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YH={name:"BikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 19l0 -4l-3 -3l5 -4l2 3l3 0"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},UH={name:"BinaryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7v-2h-1"},null),e(" "),t("path",{d:"M18 19v-1"},null),e(" "),t("path",{d:"M15.5 5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M10.5 14h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M6 10v.01"},null),e(" "),t("path",{d:"M6 19v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GH={name:"BinaryTree2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M6.316 12.496l4.368 -4.992"},null),e(" "),t("path",{d:"M17.684 12.496l-4.366 -4.99"},null),e(" ")])}},ZH={name:"BinaryTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M11 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5.058 18.306l2.88 -4.606"},null),e(" "),t("path",{d:"M10.061 10.303l2.877 -4.604"},null),e(" "),t("path",{d:"M10.065 13.705l2.876 4.6"},null),e(" "),t("path",{d:"M15.063 5.7l2.881 4.61"},null),e(" ")])}},KH={name:"BinaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 10v-5h-1m8 14v-5h-1"},null),e(" "),t("path",{d:"M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M6 10h.01m-.01 9h.01"},null),e(" ")])}},QH={name:"BiohazardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 10.586a2 2 0 1 0 2.836 2.82"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217"},null),e(" "),t("path",{d:"M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693"},null),e(" "),t("path",{d:"M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06"},null),e(" "),t("path",{d:"M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217"},null),e(" "),t("path",{d:"M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172"},null),e(" "),t("path",{d:"M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JH={name:"BiohazardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798"},null),e(" ")])}},tN={name:"BladeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.586 3a2 2 0 0 1 2.828 0l.586 .585l.586 -.585a2 2 0 0 1 2.7 -.117l.128 .117l2.586 2.586a2 2 0 0 1 0 2.828l-.586 .586l.586 .586a2 2 0 0 1 0 2.828l-8.586 8.586a2 2 0 0 1 -2.828 0l-.586 -.586l-.586 .586a2 2 0 0 1 -2.828 0l-2.586 -2.586a2 2 0 0 1 0 -2.828l.585 -.587l-.585 -.585a2 2 0 0 1 -.117 -2.7l.117 -.129zm3.027 4.21a1 1 0 0 0 -1.32 1.497l.292 .293l-1.068 1.067a2.003 2.003 0 0 0 -2.512 1.784l-.005 .149l.005 .15c.01 .125 .03 .248 .062 .367l-1.067 1.068l-.293 -.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l.292 .293l-.292 .293l-.083 .094a1 1 0 0 0 1.497 1.32l.293 -.292l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l1.069 -1.067a2.003 2.003 0 0 0 2.449 -2.45l1.067 -1.068l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l.292 -.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-.293 .292l-.293 -.292z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},eN={name:"BladeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.707 3.707l2.586 2.586a1 1 0 0 1 0 1.414l-.586 .586a1 1 0 0 0 0 1.414l.586 .586a1 1 0 0 1 0 1.414l-8.586 8.586a1 1 0 0 1 -1.414 0l-.586 -.586a1 1 0 0 0 -1.414 0l-.586 .586a1 1 0 0 1 -1.414 0l-2.586 -2.586a1 1 0 0 1 0 -1.414l.586 -.586a1 1 0 0 0 0 -1.414l-.586 -.586a1 1 0 0 1 0 -1.414l8.586 -8.586a1 1 0 0 1 1.414 0l.586 .586a1 1 0 0 0 1.414 0l.586 -.586a1 1 0 0 1 1.414 0z"},null),e(" "),t("path",{d:"M8 16l3.2 -3.2"},null),e(" "),t("path",{d:"M12.8 11.2l3.2 -3.2"},null),e(" "),t("path",{d:"M14 8l2 2"},null),e(" "),t("path",{d:"M8 14l2 2"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},nN={name:"BleachChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M11 12h-1a2 2 0 1 0 0 4h1"},null),e(" "),t("path",{d:"M14 12v4h2"},null),e(" ")])}},lN={name:"BleachNoChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-no-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M6.576 19l7.907 -13.733"},null),e(" "),t("path",{d:"M11.719 19.014l5.346 -9.284"},null),e(" ")])}},rN={name:"BleachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -1.977a2 2 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oN={name:"BleachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" ")])}},sN={name:"BlockquoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blockquote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h15"},null),e(" "),t("path",{d:"M21 19h-15"},null),e(" "),t("path",{d:"M15 11h6"},null),e(" "),t("path",{d:"M21 7h-6"},null),e(" "),t("path",{d:"M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" ")])}},aN={name:"BluetoothConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M18 12l1 0"},null),e(" ")])}},iN={name:"BluetoothOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16.438 16.45l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4"},null),e(" ")])}},hN={name:"BluetoothXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4v-16l1 .802m0 6.396l-6 4.802"},null),e(" "),t("path",{d:"M16 6l4 4"},null),e(" "),t("path",{d:"M20 6l-4 4"},null),e(" ")])}},dN={name:"BluetoothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" ")])}},cN={name:"BlurOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M16 12h5"},null),e(" "),t("path",{d:"M13 9h7"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h3m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uN={name:"BlurIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9.01 9.01 0 0 0 2.32 -.302a9 9 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" "),t("path",{d:"M12 12h9"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},pN={name:"BmpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bmp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M6 14a2 2 0 0 1 -2 2h-2v-8h2a2 2 0 1 1 0 4h-2h2a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M9 16v-8l3 6l3 -6v8"},null),e(" ")])}},gN={name:"BoldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h4a3.5 3.5 0 0 1 2.222 6.204m-3.222 .796h-5v-5"},null),e(" "),t("path",{d:"M17.107 17.112a3.5 3.5 0 0 1 -3.107 1.888h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wN={name:"BoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5h6a3.5 3.5 0 0 1 0 7h-6z"},null),e(" "),t("path",{d:"M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7"},null),e(" ")])}},vN={name:"BoltOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15.212 15.21l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893"},null),e(" ")])}},fN={name:"BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"},null),e(" ")])}},mN={name:"BombFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.499 3.996a2.2 2.2 0 0 1 1.556 .645l3.302 3.301a2.2 2.2 0 0 1 0 3.113l-.567 .567l.043 .192a8.5 8.5 0 0 1 -3.732 8.83l-.23 .144a8.5 8.5 0 1 1 -2.687 -15.623l.192 .042l.567 -.566a2.2 2.2 0 0 1 1.362 -.636zm-4.499 5.004a4 4 0 0 0 -4 4a1 1 0 0 0 2 0a2 2 0 0 1 2 -2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 2a1 1 0 0 1 .117 1.993l-.117 .007h-1c0 .83 -.302 1.629 -.846 2.25l-.154 .163l-1.293 1.293a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.293 -1.292c.232 -.232 .375 -.537 .407 -.86l.007 -.14a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kN={name:"BombIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.349 5.349l3.301 3.301a1.2 1.2 0 0 1 0 1.698l-.972 .972a7.5 7.5 0 1 1 -5 -5l.972 -.972a1.2 1.2 0 0 1 1.698 0z"},null),e(" "),t("path",{d:"M17 7l1.293 -1.293a2.414 2.414 0 0 0 .707 -1.707a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M7 13a3 3 0 0 1 3 -3"},null),e(" ")])}},bN={name:"BoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8.502l.38 -.38a3 3 0 1 1 5.12 -2.122a3 3 0 1 1 -2.12 5.122l-.372 .372m-2.008 2.008l-2.378 2.378a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l2.378 -2.378"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MN={name:"BoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 3 3a3 3 0 1 1 -2.12 5.122l-4.758 4.758a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l4.758 -4.758a3 3 0 0 1 2.12 -5.122z"},null),e(" ")])}},xN={name:"BongOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-2h4v6m1.5 1.5l2.5 -2.5l2 2l-2.5 2.5m-.5 3.505a5 5 0 1 1 -7 -4.589v-2.416"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zN={name:"BongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v8.416c.134 .059 .265 .123 .393 .193l3.607 -3.609l2 2l-3.608 3.608a5 5 0 1 1 -6.392 -2.192v-8.416h4z"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" ")])}},IN={name:"Book2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" ")])}},yN={name:"BookDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M13 16h-7a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 19l3 3l3 -3"},null),e(" "),t("path",{d:"M18 22v-9"},null),e(" ")])}},CN={name:"BookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.088 4.82a10 10 0 0 1 9.412 .314a1 1 0 0 1 .493 .748l.007 .118v13a1 1 0 0 1 -1.5 .866a8 8 0 0 0 -8 0a1 1 0 0 1 -1 0a8 8 0 0 0 -7.733 -.148l-.327 .18l-.103 .044l-.049 .016l-.11 .026l-.061 .01l-.117 .006h-.042l-.11 -.012l-.077 -.014l-.108 -.032l-.126 -.056l-.095 -.056l-.089 -.067l-.06 -.056l-.073 -.082l-.064 -.089l-.022 -.036l-.032 -.06l-.044 -.103l-.016 -.049l-.026 -.11l-.01 -.061l-.004 -.049l-.002 -.068v-13a1 1 0 0 1 .5 -.866a10 10 0 0 1 9.412 -.314l.088 .044l.088 -.044z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SN={name:"BookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 5.899 -1.096"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 2.114 -.884m3.8 -.21c1.07 .17 2.116 .534 3.086 1.094a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6v13"},null),e(" "),t("path",{d:"M12 6v2m0 4v7"},null),e(" "),t("path",{d:"M21 6v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$N={name:"BookUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M11 16h-5a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 16l3 -3l3 3"},null),e(" "),t("path",{d:"M18 13v9"},null),e(" ")])}},AN={name:"BookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6l0 13"},null),e(" "),t("path",{d:"M12 6l0 13"},null),e(" "),t("path",{d:"M21 6l0 13"},null),e(" ")])}},BN={name:"BookmarkEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.35 17.39l-4.35 2.61v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},HN={name:"BookmarkFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 2.995 2.824l.005 .176v14a1 1 0 0 1 -1.413 .911l-.101 -.054l-4.487 -2.691l-4.485 2.691a1 1 0 0 1 -1.508 -.743l-.006 -.114v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NN={name:"BookmarkMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.427 17.256l-.427 -.256l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},jN={name:"BookmarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 17v3l-5 -3l-5 3v-13m1.178 -2.818c.252 -.113 .53 -.176 .822 -.176h6a2 2 0 0 1 2 2v7"},null),e(" ")])}},PN={name:"BookmarkPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.357 17.214l-.357 -.214l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},LN={name:"BookmarkQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.006 18.804l-3.006 -1.804l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},DN={name:"BookmarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h6a2 2 0 0 1 2 2v14l-5 -3l-5 3v-14a2 2 0 0 1 2 -2"},null),e(" ")])}},ON={name:"BookmarksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h2a2 2 0 0 1 2 2v2m0 4v6l-5 -3l-5 3v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FN={name:"BookmarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7a2 2 0 0 1 2 2v12l-5 -3l-5 3v-12a2 2 0 0 1 2 -2h6z"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v12l-1 -.6"},null),e(" ")])}},RN={name:"BooksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M8 4a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M9 5a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M13 13v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M5 8h3"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M14.254 10.244l-1.218 -4.424a1.02 1.02 0 0 1 .634 -1.219l.133 -.041l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.236 11.75"},null),e(" "),t("path",{d:"M19.585 19.589l-1.572 .38c-.562 .136 -1.133 -.19 -1.282 -.731l-.952 -3.458"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M19.207 15.199l.716 -.18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TN={name:"BooksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 8h4"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M16 16l3.923 -.98"},null),e(" ")])}},EN={name:"BorderAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},VN={name:"BorderBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20l-16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" ")])}},_N={name:"BorderCornersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-corners",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M20 16v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 20h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" ")])}},WN={name:"BorderHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},XN={name:"BorderInnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-inner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},qN={name:"BorderLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l0 -16"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},YN={name:"BorderNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},UN={name:"BorderOuterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-outer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" ")])}},GN={name:"BorderRadiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-radius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},ZN={name:"BorderRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" ")])}},KN={name:"BorderSidesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-sides",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M20 16v-8"},null),e(" "),t("path",{d:"M8 4h8"},null),e(" "),t("path",{d:"M8 20h8"},null),e(" ")])}},QN={name:"BorderStyle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v.01"},null),e(" "),t("path",{d:"M8 18v.01"},null),e(" "),t("path",{d:"M12 18v.01"},null),e(" "),t("path",{d:"M16 18v.01"},null),e(" "),t("path",{d:"M20 18v.01"},null),e(" "),t("path",{d:"M18 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" ")])}},JN={name:"BorderStyleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h14"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},tj={name:"BorderTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},ej={name:"BorderVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},nj={name:"BottleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 1a2 2 0 0 1 1.995 1.85l.005 .15v.5c0 1.317 .381 2.604 1.094 3.705l.17 .25l.05 .072a9.093 9.093 0 0 1 1.68 4.92l.006 .354v6.199a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6.2a9.1 9.1 0 0 1 1.486 -4.982l.2 -.292l.05 -.069a6.823 6.823 0 0 0 1.264 -3.957v-.5a2 2 0 0 1 1.85 -1.995l.15 -.005h2zm.362 5h-2.724a8.827 8.827 0 0 1 -1.08 2.334l-.194 .284l-.05 .069a7.091 7.091 0 0 0 -1.307 3.798l-.003 .125a3.33 3.33 0 0 1 1.975 -.61a3.4 3.4 0 0 1 2.833 1.417c.27 .375 .706 .593 1.209 .583a1.4 1.4 0 0 0 1.166 -.583a3.4 3.4 0 0 1 .81 -.8l.003 .183c0 -1.37 -.396 -2.707 -1.137 -3.852l-.228 -.332a8.827 8.827 0 0 1 -1.273 -2.616z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lj={name:"BottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v.199m0 4v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2a8.09 8.09 0 0 1 1.35 -4.474m1.336 -2.63a7.822 7.822 0 0 0 .314 -2.196"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 .866 -.142"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rj={name:"BottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805"},null),e(" ")])}},oj={name:"BounceLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15.5c-3 -1 -5.5 -.5 -8 4.5c-.5 -3 -1.5 -5.5 -3 -8"},null),e(" "),t("path",{d:"M6 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},sj={name:"BounceRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15.5c3 -1 5.5 -.5 8 4.5c.5 -3 1.5 -5.5 3 -8"},null),e(" "),t("path",{d:"M18 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},aj={name:"BowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3h4v4"},null),e(" "),t("path",{d:"M21 3l-15 15"},null),e(" "),t("path",{d:"M3 18h3v3"},null),e(" "),t("path",{d:"M16.5 20c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z"},null),e(" ")])}},ij={name:"BowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" ")])}},hj={name:"BoxAlignBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 13h-16a1 1 0 0 0 -1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dj={name:"BoxAlignBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cj={name:"BoxAlignBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M15 20v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 15v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},uj={name:"BoxAlignBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pj={name:"BoxAlignBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1z"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M9 20v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 15v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" ")])}},gj={name:"BoxAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" ")])}},wj={name:"BoxAlignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 3.003h-5a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h5a1 1 0 0 0 1 -1v-16a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vj={name:"BoxAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 20.003v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5z"},null),e(" "),t("path",{d:"M15.002 20.003h-.01"},null),e(" "),t("path",{d:"M20.003 20.003h-.011"},null),e(" "),t("path",{d:"M20.003 15.002h-.011"},null),e(" "),t("path",{d:"M20.003 9.002h-.011"},null),e(" "),t("path",{d:"M20.003 4.002h-.011"},null),e(" "),t("path",{d:"M15.002 4.002h-.01"},null),e(" ")])}},fj={name:"BoxAlignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.998 3.003h-5a1 1 0 0 0 -1 1v16a1 1 0 0 0 1 1h5a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mj={name:"BoxAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.998 20.003v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5z"},null),e(" "),t("path",{d:"M8.998 20.003h.01"},null),e(" "),t("path",{d:"M3.997 20.003h.011"},null),e(" "),t("path",{d:"M3.997 15.002h.011"},null),e(" "),t("path",{d:"M3.997 9.002h.011"},null),e(" "),t("path",{d:"M3.997 4.002h.011"},null),e(" "),t("path",{d:"M8.998 4.002h.01"},null),e(" ")])}},kj={name:"BoxAlignTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.005h-14a2 2 0 0 0 -2 2v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bj={name:"BoxAlignTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mj={name:"BoxAlignTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M15 4h-.01"},null),e(" "),t("path",{d:"M20 4h-.01"},null),e(" "),t("path",{d:"M20 9h-.01"},null),e(" "),t("path",{d:"M20 15h-.01"},null),e(" "),t("path",{d:"M4 15h-.01"},null),e(" "),t("path",{d:"M20 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M9 20h-.01"},null),e(" "),t("path",{d:"M4 20h-.01"},null),e(" ")])}},xj={name:"BoxAlignTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.01h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zj={name:"BoxAlignTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1z"},null),e(" "),t("path",{d:"M20 15.01v-.01"},null),e(" "),t("path",{d:"M20 20.01v-.01"},null),e(" "),t("path",{d:"M15 20.01v-.01"},null),e(" "),t("path",{d:"M9 20.01v-.01"},null),e(" "),t("path",{d:"M9 4.01v-.01"},null),e(" "),t("path",{d:"M4 20.01v-.01"},null),e(" "),t("path",{d:"M4 15.01v-.01"},null),e(" "),t("path",{d:"M4 9.01v-.01"},null),e(" "),t("path",{d:"M4 4.01v-.01"},null),e(" ")])}},Ij={name:"BoxAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10.005h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5z"},null),e(" "),t("path",{d:"M4 15.005v-.01"},null),e(" "),t("path",{d:"M4 20.005v-.01"},null),e(" "),t("path",{d:"M9 20.005v-.01"},null),e(" "),t("path",{d:"M15 20.005v-.01"},null),e(" "),t("path",{d:"M20 20.005v-.01"},null),e(" "),t("path",{d:"M20 15.005v-.01"},null),e(" ")])}},yj={name:"BoxMarginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-margin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},Cj={name:"BoxModel2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sj={name:"BoxModel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},$j={name:"BoxModelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aj={name:"BoxModelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" ")])}},Bj={name:"BoxMultiple0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Hj={name:"BoxMultiple1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 14v-8l-2 2"},null),e(" ")])}},Nj={name:"BoxMultiple2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},jj={name:"BoxMultiple3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 -2"},null),e(" ")])}},Pj={name:"BoxMultiple4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 14v-8l-4 6h5"},null),e(" ")])}},Lj={name:"BoxMultiple5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Dj={name:"BoxMultiple6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 8a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Oj={name:"BoxMultiple7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 6h4l-2 8"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Fj={name:"BoxMultiple8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Rj={name:"BoxMultiple9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 4 0v-4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Tj={name:"BoxMultipleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Ej={name:"BoxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.765 17.757l-5.765 3.243l-8 -4.5v-9l2.236 -1.258m2.57 -1.445l3.194 -1.797l8 4.5v8.5"},null),e(" "),t("path",{d:"M14.561 10.559l5.439 -3.059"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vj={name:"BoxPaddingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-padding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 16v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M8 8v.01"},null),e(" "),t("path",{d:"M16 16v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M16 8v.01"},null),e(" "),t("path",{d:"M12 8v.01"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},_j={name:"BoxSeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-seam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5v9l-8 4.5l-8 -4.5v-9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M8.2 9.8l7.6 -4.6"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},Wj={name:"BoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},Xj={name:"BracesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.176 5.177c-.113 .251 -.176 .53 -.176 .823v3c0 1.657 -.895 3 -2 3c1.105 0 2 1.343 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3c0 1.657 .895 3 2 3c-1.105 0 -2 1.343 -2 3m-.176 3.821a2 2 0 0 1 -1.824 1.179"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qj={name:"BracesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a2 2 0 0 0 -2 2v3a2 3 0 0 1 -2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0 -2 3v3a2 2 0 0 1 -2 2"},null),e(" ")])}},Yj={name:"BracketsContainEndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-end",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4v16h-4"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M9 16h.01"},null),e(" "),t("path",{d:"M13 16h.01"},null),e(" ")])}},Uj={name:"BracketsContainStartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-start",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-4v16h4"},null),e(" "),t("path",{d:"M18 16h-.01"},null),e(" "),t("path",{d:"M14 16h-.01"},null),e(" "),t("path",{d:"M10 16h-.01"},null),e(" ")])}},Gj={name:"BracketsContainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h-4v16h4"},null),e(" "),t("path",{d:"M17 4h4v16h-4"},null),e(" "),t("path",{d:"M8 16h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M16 16h.01"},null),e(" ")])}},Zj={name:"BracketsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v15h3"},null),e(" "),t("path",{d:"M16 4h3v11m0 4v1h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kj={name:"BracketsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-3v16h3"},null),e(" "),t("path",{d:"M16 4h3v16h-3"},null),e(" ")])}},Qj={name:"BrailleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braille",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M16 12h.01"},null),e(" "),t("path",{d:"M8 12h.01"},null),e(" "),t("path",{d:"M16 19h.01"},null),e(" ")])}},Jj={name:"BrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"},null),e(" "),t("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"},null),e(" "),t("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"},null),e(" "),t("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"},null),e(" "),t("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"},null),e(" ")])}},tP={name:"Brand4chanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-4chan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11s6.054 -1.05 6 -4.5c-.038 -2.324 -2.485 -3.19 -3.016 -1.5c0 0 -.502 -2 -2.01 -2c-1.508 0 -2.984 3 -.974 8z"},null),e(" "),t("path",{d:"M13.98 11s6.075 -1.05 6.02 -4.5c-.038 -2.324 -2.493 -3.19 -3.025 -1.5c0 0 -.505 -2 -2.017 -2c-1.513 0 -3 3 -.977 8z"},null),e(" "),t("path",{d:"M13 13.98l.062 .309l.081 .35l.075 .29l.092 .328l.11 .358l.061 .188l.139 .392c.64 1.73 1.841 3.837 3.88 3.805c2.324 -.038 3.19 -2.493 1.5 -3.025l.148 -.045l.165 -.058a4.13 4.13 0 0 0 .098 -.039l.222 -.098c.586 -.28 1.367 -.832 1.367 -1.777c0 -1.513 -3 -3 -8 -.977z"},null),e(" "),t("path",{d:"M10.02 13l-.309 .062l-.35 .081l-.29 .075l-.328 .092l-.358 .11l-.188 .061l-.392 .139c-1.73 .64 -3.837 1.84 -3.805 3.88c.038 2.324 2.493 3.19 3.025 1.5l.045 .148l.058 .165l.039 .098l.098 .222c.28 .586 .832 1.367 1.777 1.367c1.513 0 3 -3 .977 -8z"},null),e(" "),t("path",{d:"M11 10.02l-.062 -.309l-.081 -.35l-.075 -.29l-.092 -.328l-.11 -.358l-.128 -.382l-.148 -.399c-.658 -1.687 -1.844 -3.634 -3.804 -3.604c-2.324 .038 -3.19 2.493 -1.5 3.025l-.148 .045l-.164 .058a4.13 4.13 0 0 0 -.1 .039l-.22 .098c-.588 .28 -1.368 .832 -1.368 1.777c0 1.513 3 3 8 .977z"},null),e(" ")])}},eP={name:"BrandAbstractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-abstract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M10.5 13.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},nP={name:"BrandAdobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adobe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.893 4.514l7.977 14a.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z"},null),e(" ")])}},lP={name:"BrandAdonisJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adonis-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8.863 16.922c1.137 -.422 1.637 -.922 3.137 -.922s2 .5 3.138 .922c.713 .264 1.516 -.102 1.778 -.772c.126 -.32 .11 -.673 -.044 -.983l-3.708 -7.474c-.297 -.598 -1.058 -.859 -1.7 -.583a1.24 1.24 0 0 0 -.627 .583l-3.709 7.474c-.321 .648 -.017 1.415 .679 1.714c.332 .143 .715 .167 1.056 .04z"},null),e(" ")])}},rP={name:"BrandAirbnbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airbnb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-2 0 -3 1 -3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5 -.5s1.5 -3.5 .5 -6s-2.333 -5.5 -5 -9.5c-.834 -1 -1.5 -1.5 -2.503 -1.5c-1 0 -1.623 .45 -2.497 1.5c-2.667 4 -4 7 -5 9.5s-1.5 4.5 .5 6s3.5 1 4.5 .5s1.5 -1 2.5 -2c1.506 -1.965 3 -4 3 -5.5c0 -2 -1 -3 -3 -3z"},null),e(" ")])}},oP={name:"BrandAirtableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airtable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v8l7 -3v-2.6z"},null),e(" "),t("path",{d:"M3 6l9 3l9 -3l-9 -3z"},null),e(" "),t("path",{d:"M14 12.3v8.7l7 -3v-8z"},null),e(" ")])}},sP={name:"BrandAlgoliaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-algolia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 11c-.414 -1.477 -1.886 -2.5 -3.5 -2.5a3.47 3.47 0 0 0 -3.5 3.5a3.47 3.47 0 0 0 3.5 3.5c.974 0 1.861 -.357 2.5 -1l4.5 4.5v-15h-7c-4.386 0 -8 3.582 -8 8s3.614 8 8 8a7.577 7.577 0 0 0 2.998 -.614"},null),e(" ")])}},aP={name:"BrandAlipayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alipay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M7 7h10"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M21 17.314c-2.971 -1.923 -15 -8.779 -15 -1.864c0 1.716 1.52 2.55 2.985 2.55c3.512 0 6.814 -5.425 6.814 -8h-6.604"},null),e(" ")])}},iP={name:"BrandAlpineJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alpine-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11.5l4.5 4.5h9l-9 -9z"},null),e(" "),t("path",{d:"M16.5 16l4.5 -4.5l-4.5 -4.5l-4.5 4.5"},null),e(" ")])}},hP={name:"BrandAmazonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amazon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 15c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" ")])}},dP={name:"BrandAmdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-7c0 -.566 -.434 -1 -1 -1h-7l-5 -5h17c.566 0 1 .434 1 1v17l-5 -5z"},null),e(" "),t("path",{d:"M11.293 20.707l4.707 -4.707h-7a1 1 0 0 1 -1 -1v-7l-4.707 4.707a1 1 0 0 0 -.293 .707v6.586a1 1 0 0 0 1 1h6.586a1 1 0 0 0 .707 -.293z"},null),e(" ")])}},cP={name:"BrandAmigoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amigo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.591 3.635l-7.13 14.082c-1.712 3.38 1.759 5.45 3.69 3.573l1.86 -1.81c3.142 -3.054 4.959 -2.99 8.039 .11l1.329 1.337c2.372 2.387 5.865 .078 4.176 -3.225l-7.195 -14.067c-1.114 -2.18 -3.666 -2.18 -4.77 0z"},null),e(" ")])}},uP={name:"BrandAmongUsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-among-us",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.646 12.774c-1.939 .396 -4.467 .317 -6.234 -.601c-2.454 -1.263 -1.537 -4.66 1.423 -4.982c2.254 -.224 3.814 -.354 5.65 .214c.835 .256 1.93 .569 1.355 3.281c-.191 1.067 -1.07 1.904 -2.194 2.088z"},null),e(" "),t("path",{d:"M5.84 7.132c.083 -.564 .214 -1.12 .392 -1.661c.456 -.936 1.095 -2.068 3.985 -2.456a22.464 22.464 0 0 1 2.867 .08c1.776 .14 2.643 1.234 3.287 3.368c.339 1.157 .46 2.342 .629 3.537v11l-12.704 -.019c-.552 -2.386 -.262 -5.894 .204 -8.481"},null),e(" "),t("path",{d:"M17 10c.991 .163 2.105 .383 3.069 .67c.255 .13 .52 .275 .534 .505c.264 3.434 .57 7.448 .278 9.825h-3.881"},null),e(" ")])}},pP={name:"BrandAndroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-android",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10l0 6"},null),e(" "),t("path",{d:"M20 10l0 6"},null),e(" "),t("path",{d:"M7 9h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0"},null),e(" "),t("path",{d:"M8 3l1 2"},null),e(" "),t("path",{d:"M16 3l-1 2"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M15 18l0 3"},null),e(" ")])}},gP={name:"BrandAngularIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-angular",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"},null),e(" "),t("path",{d:"M9 15l3 -8l3 8"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},wP={name:"BrandAnsibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ansible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9.647 12.294l6.353 3.706l-4 -9l-4 9"},null),e(" ")])}},vP={name:"BrandAo3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ao3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c7.109 4.1 10.956 10.131 12 14c1.074 -4.67 4.49 -8.94 8 -11"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 9c-.278 5.494 -2.337 7.33 -4 10c4.013 -2 6.02 -5 15.05 -5c4.012 0 3.51 2.5 1 3c2 .5 2.508 5 -2.007 2"},null),e(" ")])}},fP={name:"BrandAppgalleryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appgallery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},mP={name:"BrandAppleArcadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-arcade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12.5v4.75a.734 .734 0 0 1 -.055 .325a.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a.705 .705 0 0 1 -.401 -.691l0 -4.75"},null),e(" "),t("path",{d:"M4.431 12.216l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a.691 .691 0 0 1 .028 -1.27z"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},kP={name:"BrandApplePodcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-podcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M11.766 22h.468a2 2 0 0 0 1.985 -1.752l.5 -4a2 2 0 0 0 -1.985 -2.248h-1.468a2 2 0 0 0 -1.985 2.248l.5 4a2 2 0 0 0 1.985 1.752z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},bP={name:"BrandAppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7c-3 0 -4 3 -4 5.5c0 3 2 7.5 4 7.5c1.088 -.046 1.679 -.5 3 -.5c1.312 0 1.5 .5 3 .5s4 -3 4 -5c-.028 -.01 -2.472 -.403 -2.5 -3c-.019 -2.17 2.416 -2.954 2.5 -3c-1.023 -1.492 -2.951 -1.963 -3.5 -2c-1.433 -.111 -2.83 1 -3.5 1c-.68 0 -1.9 -1 -3 -1z"},null),e(" "),t("path",{d:"M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2"},null),e(" ")])}},MP={name:"BrandAppstoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appstore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 16l1.106 -1.99m1.4 -2.522l2.494 -4.488"},null),e(" "),t("path",{d:"M7 14h5m2.9 0h2.1"},null),e(" "),t("path",{d:"M16 16l-2.51 -4.518m-1.487 -2.677l-1 -1.805"},null),e(" ")])}},xP={name:"BrandAsanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-asana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},zP={name:"BrandAwsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-aws",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 21c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" "),t("path",{d:"M3 11v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M3 9h3"},null),e(" "),t("path",{d:"M9 5l1.2 6l1.8 -4l1.8 4l1.2 -6"},null),e(" "),t("path",{d:"M18 10.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},IP={name:"BrandAzureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-azure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7.5l-4 9.5h4l6 -15z"},null),e(" "),t("path",{d:"M22 20l-7 -15l-3 7l4 5l-8 3z"},null),e(" ")])}},yP={name:"BrandBackboneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-backbone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 -8l-14 -8z"},null),e(" "),t("path",{d:"M19 20l-14 -8l14 -8z"},null),e(" ")])}},CP={name:"BrandBadooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-badoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c0 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36z"},null),e(" "),t("path",{d:"M7.5 10c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5"},null),e(" ")])}},SP={name:"BrandBaiduIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-baidu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.463 11.596c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221z"},null),e(" "),t("path",{d:"M9 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" ")])}},$P={name:"BrandBandcampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandcamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6h13.5l-7 12h-13z"},null),e(" ")])}},AP={name:"BrandBandlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.885 7l-2.536 4.907c-2.021 3.845 -2.499 8.775 3.821 9.093h6.808c4.86 -.207 7.989 -2.975 4.607 -9.093l-2.988 -4.907"},null),e(" "),t("path",{d:"M15.078 4h-5.136l3.678 8.768c.547 1.14 .847 1.822 .162 2.676c-.053 .093 -1.332 1.907 -3.053 1.495c-.825 -.187 -1.384 -.926 -1.32 -1.74c.04 -.91 .62 -1.717 1.488 -2.074a4.463 4.463 0 0 1 2.723 -.358"},null),e(" ")])}},BP={name:"BrandBeatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-beats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12.5 12.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M9 12v-8"},null),e(" ")])}},HP={name:"BrandBehanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-behance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5"},null),e(" "),t("path",{d:"M3 12l4.5 0"},null),e(" "),t("path",{d:"M14 13h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1"},null),e(" "),t("path",{d:"M16 6l3 0"},null),e(" ")])}},NP={name:"BrandBilibiliIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bilibili",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-6z"},null),e(" "),t("path",{d:"M8 3l2 3"},null),e(" "),t("path",{d:"M16 3l-2 3"},null),e(" "),t("path",{d:"M9 13v-2"},null),e(" "),t("path",{d:"M15 11v2"},null),e(" ")])}},jP={name:"BrandBinanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-binance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l2 2l4 -4l4 4l2 -2l-6 -6z"},null),e(" "),t("path",{d:"M6 16l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5z"},null),e(" "),t("path",{d:"M20 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M4 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M12 10l2 2l-2 2l-2 -2z"},null),e(" ")])}},PP={name:"BrandBingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z"},null),e(" ")])}},LP={name:"BrandBitbucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bitbucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.648 4a.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a.644 .644 0 0 0 .642 -.539l3.35 -14.71a.641 .641 0 0 0 -.64 -.744l-16.704 -.007z"},null),e(" "),t("path",{d:"M14 15h-4l-1 -6h6z"},null),e(" ")])}},DP={name:"BrandBlackberryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blackberry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M6 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M13 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M12 18a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M20 15a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M21 9a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" ")])}},OP={name:"BrandBlenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14m-6 0a6 5 0 1 0 12 0a6 5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 16l9 -6.5"},null),e(" "),t("path",{d:"M6 9h9"},null),e(" "),t("path",{d:"M13 5l5.65 5"},null),e(" ")])}},FP={name:"BrandBloggerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blogger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a5 5 0 0 0 5 -5v-3a3 3 0 0 0 -3 -3h-1v-2a5 5 0 0 0 -5 -5h-4a5 5 0 0 0 -5 5v8a5 5 0 0 0 5 5z"},null),e(" "),t("path",{d:"M7 7m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h3a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-3a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" "),t("path",{d:"M7 14m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h7a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-7a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" ")])}},RP={name:"BrandBookingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-booking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 12h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5"},null),e(" "),t("path",{d:"M16 16l.01 0"},null),e(" ")])}},TP={name:"BrandBootstrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bootstrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"},null),e(" ")])}},EP={name:"BrandBulmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bulma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1 -9l5 -5l6.5 6l-3.5 4l5 5l-8 5z"},null),e(" ")])}},VP={name:"BrandBumbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bumble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M16.268 3h-8.536a1.46 1.46 0 0 0 -1.268 .748l-4.268 7.509a1.507 1.507 0 0 0 0 1.486l4.268 7.509c.26 .462 .744 .747 1.268 .748h8.536a1.46 1.46 0 0 0 1.268 -.748l4.268 -7.509a1.507 1.507 0 0 0 0 -1.486l-4.268 -7.509a1.46 1.46 0 0 0 -1.268 -.748z"},null),e(" ")])}},_P={name:"BrandBunpoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bunpo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.9 7.205a17.764 17.764 0 0 0 4.008 2.753a7.917 7.917 0 0 0 4.57 .567c1.5 -.33 2.907 -1 4.121 -1.956a12.107 12.107 0 0 0 2.892 -2.903c.603 -.94 .745 -1.766 .484 -2.231c-.261 -.465 -.927 -.568 -1.72 -.257a7.564 7.564 0 0 0 -2.608 2.034a18.425 18.425 0 0 0 -2.588 3.884a34.927 34.927 0 0 0 -2.093 5.073a12.908 12.908 0 0 0 -.677 3.515c-.07 .752 .07 1.51 .405 2.184c.323 .562 1.06 1.132 2.343 1.132c3.474 0 5.093 -3.53 5.463 -5.62c.24 -1.365 -.085 -3.197 -1.182 -4.01"},null),e(" ")])}},WP={name:"BrandCSharpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-c-sharp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" "),t("path",{d:"M16 7l-1 10"},null),e(" "),t("path",{d:"M20 7l-1 10"},null),e(" "),t("path",{d:"M14 10h7.5"},null),e(" "),t("path",{d:"M21 14h-7.5"},null),e(" ")])}},XP={name:"BrandCakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.84 12c0 2.05 .985 3.225 -.04 5c-1.026 1.775 -2.537 1.51 -4.314 2.534c-1.776 1.026 -2.302 2.466 -4.353 2.466c-2.051 0 -2.576 -1.441 -4.353 -2.466c-1.776 -1.024 -3.288 -.759 -4.314 -2.534c-1.025 -1.775 -.04 -2.95 -.04 -5s-.985 -3.225 .04 -5c1.026 -1.775 2.537 -1.51 4.314 -2.534c1.776 -1.026 2.302 -2.466 4.353 -2.466s2.577 1.441 4.353 2.466c1.776 1.024 3.288 .759 4.313 2.534c1.026 1.775 .04 2.95 .04 5z"},null),e(" ")])}},qP={name:"BrandCakephpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cakephp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11l8 2c1.361 -.545 2 -1.248 2 -2v-3.8c0 -1.765 -4.479 -3.2 -10.002 -3.2c-5.522 0 -9.998 1.435 -9.998 3.2v2.8c0 1.766 4.478 4 10 4v-3z"},null),e(" "),t("path",{d:"M12 14v3l8 2c1.362 -.547 2 -1.246 2 -2v-3c0 .754 -.638 1.453 -2 2l-8 -2z"},null),e(" "),t("path",{d:"M2 17c0 1.766 4.476 3 9.998 3l.002 -3c-5.522 0 -10 -1.734 -10 -3.5v3.5z"},null),e(" "),t("path",{d:"M2 10v4"},null),e(" "),t("path",{d:"M22 10v4"},null),e(" ")])}},YP={name:"BrandCampaignmonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-campaignmonitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538"},null),e(" ")])}},UP={name:"BrandCarbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-carbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10v-.2a1.8 1.8 0 0 0 -1.8 -1.8h-.4a1.8 1.8 0 0 0 -1.8 1.8v4.4a1.8 1.8 0 0 0 1.8 1.8h.4a1.8 1.8 0 0 0 1.8 -1.8v-.2"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},GP={name:"BrandCashappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cashapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.1 8.648a.568 .568 0 0 1 -.761 .011a5.682 5.682 0 0 0 -3.659 -1.34c-1.102 0 -2.205 .363 -2.205 1.374c0 1.023 1.182 1.364 2.546 1.875c2.386 .796 4.363 1.796 4.363 4.137c0 2.545 -1.977 4.295 -5.204 4.488l-.295 1.364a.557 .557 0 0 1 -.546 .443h-2.034l-.102 -.011a.568 .568 0 0 1 -.432 -.67l.318 -1.444a7.432 7.432 0 0 1 -3.273 -1.784v-.011a.545 .545 0 0 1 0 -.773l1.137 -1.102c.214 -.2 .547 -.2 .761 0a5.495 5.495 0 0 0 3.852 1.5c1.478 0 2.466 -.625 2.466 -1.614c0 -.989 -1 -1.25 -2.886 -1.954c-2 -.716 -3.898 -1.728 -3.898 -4.091c0 -2.75 2.284 -4.091 4.989 -4.216l.284 -1.398a.545 .545 0 0 1 .545 -.432h2.023l.114 .012a.544 .544 0 0 1 .42 .647l-.307 1.557a8.528 8.528 0 0 1 2.818 1.58l.023 .022c.216 .228 .216 .569 0 .773l-1.057 1.057z"},null),e(" ")])}},ZP={name:"BrandChromeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-chrome",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9h8.4"},null),e(" "),t("path",{d:"M14.598 13.5l-4.2 7.275"},null),e(" "),t("path",{d:"M9.402 13.5l-4.2 -7.275"},null),e(" ")])}},KP={name:"BrandCinema4dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cinema-4d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.65 6.956a5.39 5.39 0 0 0 7.494 7.495"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.7 12.137a5.738 5.738 0 1 1 -5.737 -5.737"},null),e(" "),t("path",{d:"M17.7 12.338v-1.175c0 -.47 .171 -.92 .476 -1.253a1.56 1.56 0 0 1 1.149 -.52c.827 0 1.523 .676 1.62 1.573c.037 .344 .055 .69 .055 1.037"},null),e(" "),t("path",{d:"M11.662 6.4h1.175c.47 0 .92 -.176 1.253 -.49c.333 -.314 .52 -.74 .52 -1.184c0 -.852 -.676 -1.57 -1.573 -1.67a9.496 9.496 0 0 0 -1.037 -.056"},null),e(" ")])}},QP={name:"BrandCitymapperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-citymapper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M21 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" ")])}},JP={name:"BrandCloudflareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cloudflare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.031 7.007c2.469 -.007 3.295 1.293 3.969 2.993c4 0 4.994 3.825 5 6h-20c-.001 -1.64 1.36 -2.954 3 -3c0 -1.5 1 -3 3 -3c.66 -1.942 2.562 -2.986 5.031 -2.993z"},null),e(" "),t("path",{d:"M12 13h6"},null),e(" "),t("path",{d:"M17 10l-2.5 6"},null),e(" ")])}},tL={name:"BrandCodecovIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codecov",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.695 12.985a5.972 5.972 0 0 0 -3.295 -.985c-1.257 0 -2.436 .339 -3.4 1a9 9 0 1 1 18 0c-.966 -.664 -2.14 -1 -3.4 -1a6 6 0 0 0 -5.605 8.144"},null),e(" ")])}},eL={name:"BrandCodepenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codepen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l0 6"},null),e(" "),t("path",{d:"M21 9l0 6"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},nL={name:"BrandCodesandboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codesandbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25z"},null),e(" "),t("path",{d:"M12 12l4 -2.25l4 -2.25"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-4 -2.25l-4 -2.25"},null),e(" "),t("path",{d:"M20 12l-4 2v4.75"},null),e(" "),t("path",{d:"M4 12l4 2l0 4.75"},null),e(" "),t("path",{d:"M8 5.25l4 2.25l4 -2.25"},null),e(" ")])}},lL={name:"BrandCohostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cohost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14m-3 0a3 2 0 1 0 6 0a3 2 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.526 17.666c-1.133 -.772 -1.897 -1.924 -2.291 -3.456c-.398 -1.54 -.29 -2.937 .32 -4.19c.61 -1.255 1.59 -2.34 2.938 -3.254c1.348 -.914 2.93 -1.625 4.749 -2.132c1.81 -.504 3.516 -.708 5.12 -.61c1.608 .1 2.979 .537 4.112 1.31s1.897 1.924 2.291 3.456c.398 1.541 .29 2.938 -.32 4.192c-.61 1.253 -1.59 2.337 -2.938 3.252c-1.348 .915 -2.93 1.626 -4.749 2.133c-1.81 .503 -3.516 .707 -5.12 .61c-1.608 -.102 -2.979 -.538 -4.112 -1.31z"},null),e(" "),t("path",{d:"M11 12.508c-.53 -.316 -1.23 -.508 -2 -.508c-1.657 0 -3 .895 -3 2s1.343 2 3 2c.767 0 1.467 -.192 2 -.508"},null),e(" ")])}},rL={name:"BrandCoinbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coinbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.95 22c-4.503 0 -8.445 -3.04 -9.61 -7.413c-1.165 -4.373 .737 -8.988 4.638 -11.25a9.906 9.906 0 0 1 12.008 1.598l-3.335 3.367a5.185 5.185 0 0 0 -7.354 .013a5.252 5.252 0 0 0 0 7.393a5.185 5.185 0 0 0 7.354 .013l3.349 3.367a9.887 9.887 0 0 1 -7.05 2.912z"},null),e(" ")])}},oL={name:"BrandComedyCentralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-comedy-central",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.343 17.657a8 8 0 1 0 0 -11.314"},null),e(" "),t("path",{d:"M13.828 9.172a4 4 0 1 0 0 5.656"},null),e(" ")])}},sL={name:"BrandCoreosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coreos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12 3c-3.263 3.212 -3 7.654 -3 12c4.59 .244 8.814 -.282 12 -3"},null),e(" "),t("path",{d:"M9.5 9a4.494 4.494 0 0 1 5.5 5.5"},null),e(" ")])}},aL={name:"BrandCouchdbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchdb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12v-2a2 2 0 0 1 2 -2a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2a2 2 0 0 1 2 2v2z"},null),e(" "),t("path",{d:"M6 15h12"},null),e(" "),t("path",{d:"M6 18h12"},null),e(" "),t("path",{d:"M21 11v7"},null),e(" "),t("path",{d:"M3 11v7"},null),e(" ")])}},iL={name:"BrandCouchsurfingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchsurfing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.1 13c3.267 0 5.9 -.167 7.9 -.5c3 -.5 4 -2 4 -3.5a3 3 0 1 0 -6 0c0 1.554 1.807 3 3 4c1.193 1 2 2.5 2 3.5a1.5 1.5 0 1 1 -3 0c0 -2 4 -3.5 7 -3.5h2.9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},hL={name:"BrandCppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cpp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M20 10v4"},null),e(" "),t("path",{d:"M11 12h4"},null),e(" "),t("path",{d:"M13 10v4"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" ")])}},dL={name:"BrandCraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-craft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4h-8a8 8 0 1 0 0 16h8a8 8 0 0 0 -8 -8a8 8 0 0 0 8 -8"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},cL={name:"BrandCrunchbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-crunchbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10.414 11.586a2 2 0 1 0 0 2.828"},null),e(" "),t("path",{d:"M15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 7v6"},null),e(" ")])}},uL={name:"BrandCss3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-css3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M8.5 8h7l-4.5 4h4l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},pL={name:"BrandCtemplarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ctemplar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.04 14.831l4.46 -4.331"},null),e(" "),t("path",{d:"M12.555 20.82c4.55 -3.456 7.582 -8.639 8.426 -14.405a1.668 1.668 0 0 0 -.934 -1.767a19.647 19.647 0 0 0 -8.047 -1.648a19.647 19.647 0 0 0 -8.047 1.647a1.668 1.668 0 0 0 -.934 1.767c.844 5.766 3.875 10.95 8.426 14.406a.948 .948 0 0 0 1.11 0z"},null),e(" "),t("path",{d:"M20 5c-2 0 -4.37 3.304 -8 6.644c-3.63 -3.34 -6 -6.644 -8 -6.644"},null),e(" "),t("path",{d:"M17.738 15l-4.238 -4.5"},null),e(" ")])}},gL={name:"BrandCucumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cucumber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"},null),e(" "),t("path",{d:"M10.5 8l-.5 -1"},null),e(" "),t("path",{d:"M13.5 14l.5 1"},null),e(" "),t("path",{d:"M9 12.5l-1 .5"},null),e(" "),t("path",{d:"M11 14l-.5 1"},null),e(" "),t("path",{d:"M13 8l.5 -1"},null),e(" "),t("path",{d:"M16 12.5l-1 -.5"},null),e(" "),t("path",{d:"M9 10l-1 -.5"},null),e(" ")])}},wL={name:"BrandCupraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cupra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 10l-2.5 -4l15.298 6.909a.2 .2 0 0 1 .09 .283l-3.388 5.808"},null),e(" "),t("path",{d:"M10 19l-3.388 -5.808a.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4"},null),e(" ")])}},vL={name:"BrandCypressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cypress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.48 17.007a9 9 0 1 0 -7.48 3.993c.896 0 1.691 -.573 1.974 -1.423l3.526 -10.577"},null),e(" "),t("path",{d:"M13.5 9l2 6"},null),e(" "),t("path",{d:"M10.764 9.411a3 3 0 1 0 -.023 5.19"},null),e(" ")])}},fL={name:"BrandD3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-d3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1.8c3.976 0 7.2 3.582 7.2 8s-3.224 8 -7.2 8h-1.8"},null),e(" "),t("path",{d:"M12 4h5.472c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4"},null),e(" "),t("path",{d:"M17.472 12h-2.472"},null),e(" "),t("path",{d:"M17.472 12h-2.352"},null),e(" "),t("path",{d:"M17.472 12c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-5.472"},null),e(" ")])}},mL={name:"BrandDaysCounterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-days-counter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.779 10.007a9 9 0 1 0 -10.77 10.772"},null),e(" "),t("path",{d:"M13 21h8v-7"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},kL={name:"BrandDcosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dcos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l18 -12h-18l9 14l9 -14v10l-18 -10z"},null),e(" ")])}},bL={name:"BrandDebianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-debian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},ML={name:"BrandDeezerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deezer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16.5h2v.5h-2z"},null),e(" "),t("path",{d:"M8 16.5h2.5v.5h-2.5z"},null),e(" "),t("path",{d:"M16 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 9.5h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 6h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M16 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M8 13.5h2.5v-.5h-2.5z"},null),e(" "),t("path",{d:"M8 9.5h2.5v.5h-2.5z"},null),e(" ")])}},xL={name:"BrandDeliverooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deliveroo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l1 -9l5 .5l-1 13.5l-3 6l-12.5 -2.5l-1.5 -6l7 -1.5l-1.5 -7.5l4.5 -1z"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"11.5",cy:"14.5",r:"1",fill:"currentColor"},null),e(" ")])}},zL={name:"BrandDenoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deno",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},IL={name:"BrandDenodoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-denodo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 15.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 19h2v2h-2z"},null),e(" "),t("path",{d:"M18.634 14.634l1.732 1l-1 1.732l-1.732 -1z"},null),e(" "),t("path",{d:"M17.634 7.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 3h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 8.366l1 -1.732l1.732 1l-1 1.732z"},null),e(" ")])}},yL={name:"BrandDeviantartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deviantart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v4l-3.857 6h3.857v4h-6.429l-2.571 4h-3v-4l3.857 -6h-3.857v-4h6.429l2.571 -4z"},null),e(" ")])}},CL={name:"BrandDiggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-digg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-3v-4h3"},null),e(" "),t("path",{d:"M15 15h-3v-4h3"},null),e(" "),t("path",{d:"M9 15v-4"},null),e(" "),t("path",{d:"M15 11v7h-3"},null),e(" "),t("path",{d:"M6 7v8"},null),e(" "),t("path",{d:"M21 15h-3v-4h3"},null),e(" "),t("path",{d:"M21 11v7h-3"},null),e(" ")])}},SL={name:"BrandDingtalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dingtalk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 7.5l7.02 2.632a1 1 0 0 1 .567 1.33l-1.087 2.538h1.5l-5 4l1 -4c-3.1 .03 -3.114 -3.139 -4 -6.5z"},null),e(" ")])}},$L={name:"BrandDiscordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.983 3l.123 .006c2.014 .214 3.527 .672 4.966 1.673a1 1 0 0 1 .371 .488c1.876 5.315 2.373 9.987 1.451 12.28c-1.003 2.005 -2.606 3.553 -4.394 3.553c-.732 0 -1.693 -.968 -2.328 -2.045a21.512 21.512 0 0 0 2.103 -.493a1 1 0 1 0 -.55 -1.924c-3.32 .95 -6.13 .95 -9.45 0a1 1 0 0 0 -.55 1.924c.717 .204 1.416 .37 2.103 .494c-.635 1.075 -1.596 2.044 -2.328 2.044c-1.788 0 -3.391 -1.548 -4.428 -3.629c-.888 -2.217 -.39 -6.89 1.485 -12.204a1 1 0 0 1 .371 -.488c1.439 -1.001 2.952 -1.459 4.966 -1.673a1 1 0 0 1 .935 .435l.063 .107l.651 1.285l.137 -.016a12.97 12.97 0 0 1 2.643 0l.134 .016l.65 -1.284a1 1 0 0 1 .754 -.54l.122 -.009zm-5.983 7a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15zm6 0a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AL={name:"BrandDiscordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M14 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-.972 1.923a11.913 11.913 0 0 0 -4.053 0l-.975 -1.923c-1.5 .16 -3.043 .485 -4.5 1.5c-2 5.667 -2.167 9.833 -1.5 11.5c.667 1.333 2 3 3.5 3c.5 0 2 -2 2 -3"},null),e(" "),t("path",{d:"M7 16.5c3.5 1 6.5 1 10 0"},null),e(" ")])}},BL={name:"BrandDisneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disney",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.22 5.838c-1.307 -.15 -1.22 -.578 -1.22 -.794c0 -.216 .424 -1.044 4.34 -1.044c4.694 0 14.66 3.645 14.66 10.042s-8.71 4.931 -10.435 4.52c-1.724 -.412 -5.565 -2.256 -5.565 -4.174c0 -1.395 3.08 -2.388 6.715 -2.388c3.634 0 5.285 1.041 5.285 2c0 .5 -.074 1.229 -1 1.5"},null),e(" "),t("path",{d:"M10.02 8a505.153 505.153 0 0 0 0 13"},null),e(" ")])}},HL={name:"BrandDisqusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disqus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9z"},null),e(" "),t("path",{d:"M11.485 15h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z"},null),e(" ")])}},NL={name:"BrandDjangoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-django",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v8.5l-2.015 .201a2.715 2.715 0 1 1 0 -5.402l2.015 .201"},null),e(" "),t("path",{d:"M16 7v.01"},null),e(" "),t("path",{d:"M16 10v5.586c0 .905 -.36 1.774 -1 2.414"},null),e(" ")])}},jL={name:"BrandDockerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-docker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z"},null),e(" "),t("path",{d:"M5 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 10h3v3h-3z"},null),e(" "),t("path",{d:"M11 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 4h3v3h-3z"},null),e(" "),t("path",{d:"M4.571 18c1.5 0 2.047 -.074 2.958 -.78"},null),e(" "),t("path",{d:"M10 16l0 .01"},null),e(" ")])}},PL={name:"BrandDoctrineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-doctrine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12 11l3 3l-3 3"},null),e(" "),t("path",{d:"M10 3l6.9 6"},null),e(" ")])}},LL={name:"BrandDolbyDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dolby-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891z"},null),e(" "),t("path",{d:"M3.063 6v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z"},null),e(" ")])}},DL={name:"BrandDoubanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-douban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M5 4h14"},null),e(" "),t("path",{d:"M8 8h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M16 14l-2 6"},null),e(" "),t("path",{d:"M8 17l1 3"},null),e(" ")])}},OL={name:"BrandDribbbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.384 14.38a22.877 22.877 0 0 1 1.056 4.863l.064 .644l.126 1.431a10 10 0 0 1 -9.15 -.98l2.08 -2.087l.246 -.24c1.793 -1.728 3.41 -2.875 5.387 -3.566l.191 -.065zm6.09 -.783l.414 .003l.981 .014a9.997 9.997 0 0 1 -4.319 6.704l-.054 -.605c-.18 -2.057 -.55 -3.958 -1.163 -5.814c1.044 -.182 2.203 -.278 3.529 -.298l.611 -.004zm-7.869 -3.181a24.91 24.91 0 0 1 1.052 2.098c-2.276 .77 -4.142 2.053 -6.144 3.967l-.355 .344l-2.236 2.24a10 10 0 0 1 -2.917 -6.741l-.005 -.324l.004 -.25h1.096l.467 -.002c3.547 -.026 6.356 -.367 8.938 -1.295l.1 -.037zm9.388 1.202l-1.515 -.02c-1.86 -.003 -3.45 .124 -4.865 .402a26.112 26.112 0 0 0 -1.163 -2.38c1.393 -.695 2.757 -1.597 4.179 -2.75l.428 -.354l.816 -.682a10 10 0 0 1 2.098 5.409l.022 .375zm-14.663 -8.46l1.266 1.522c1.145 1.398 2.121 2.713 2.949 3.985c-2.26 .766 -4.739 1.052 -7.883 1.081l-.562 .004h-.844a10 10 0 0 1 5.074 -6.593zm9.67 .182c.53 .306 1.026 .657 1.483 1.046l-1.025 .857c-1.379 1.128 -2.688 1.993 -4.034 2.649c-.89 -1.398 -1.943 -2.836 -3.182 -4.358l-.474 -.574l-.485 -.584a10 10 0 0 1 7.717 .964z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FL={name:"BrandDribbbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 3.6c5 6 7 10.5 7.5 16.2"},null),e(" "),t("path",{d:"M6.4 19c3.5 -3.5 6 -6.5 14.5 -6.4"},null),e(" "),t("path",{d:"M3.1 10.75c5 0 9.814 -.38 15.314 -5"},null),e(" ")])}},RL={name:"BrandDropsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.637 7.416a7.907 7.907 0 0 1 1.76 8.666a8 8 0 0 1 -7.397 4.918a8 8 0 0 1 -7.396 -4.918a7.907 7.907 0 0 1 1.759 -8.666l5.637 -5.416l5.637 5.416z"},null),e(" "),t("path",{d:"M14.466 10.923a3.595 3.595 0 0 1 .77 3.877a3.5 3.5 0 0 1 -3.236 2.2a3.5 3.5 0 0 1 -3.236 -2.2a3.595 3.595 0 0 1 .77 -3.877l2.466 -2.423l2.466 2.423z"},null),e(" ")])}},TL={name:"BrandDrupalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drupal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c0 4.308 -7 6 -7 12a7 7 0 0 0 14 0c0 -6 -7 -7.697 -7 -12z"},null),e(" "),t("path",{d:"M12 11.33a65.753 65.753 0 0 1 -2.012 2.023c-1 .957 -1.988 1.967 -1.988 3.647c0 2.17 1.79 4 4 4s4 -1.827 4 -4c0 -1.676 -.989 -2.685 -1.983 -3.642c-.42 -.404 -2.259 -2.357 -5.517 -5.858l3.5 3.83z"},null),e(" ")])}},EL={name:"BrandEdgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-edge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.978 11.372a9 9 0 1 0 -1.593 5.773"},null),e(" "),t("path",{d:"M20.978 11.372c.21 2.993 -5.034 2.413 -6.913 1.486c1.392 -1.6 .402 -4.038 -2.274 -3.851c-1.745 .122 -2.927 1.157 -2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79"},null),e(" "),t("path",{d:"M3.022 12.628c-.283 -4.043 8.717 -7.228 11.248 -2.688"},null),e(" "),t("path",{d:"M12.628 20.978c-2.993 .21 -5.162 -4.725 -3.567 -9.748"},null),e(" ")])}},VL={name:"BrandElasticIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-elastic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a5 5 0 0 1 5 5c0 .712 -.232 1.387 -.5 2c1.894 .042 3.5 1.595 3.5 3.5c0 1.869 -1.656 3.4 -3.5 3.5c.333 .625 .5 1.125 .5 1.5a2.5 2.5 0 0 1 -2.5 2.5c-.787 0 -1.542 -.432 -2 -1c-.786 1.73 -2.476 3 -4.5 3a5 5 0 0 1 -4.583 -7a3.5 3.5 0 0 1 -.11 -6.992l.195 0a2.5 2.5 0 0 1 2 -4c.787 0 1.542 .432 2 1c.786 -1.73 2.476 -3 4.5 -3z"},null),e(" "),t("path",{d:"M8.5 9l-3 -1"},null),e(" "),t("path",{d:"M9.5 5l-1 4l1 2l5 2l4 -4"},null),e(" "),t("path",{d:"M18.499 16l-3 -.5l-1 -2.5"},null),e(" "),t("path",{d:"M14.5 19l1 -3.5"},null),e(" "),t("path",{d:"M5.417 15l4.083 -4"},null),e(" ")])}},_L={name:"BrandElectronicArtsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-electronic-arts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.5 15l-3 -6l-3 6h-5l1.5 -3"},null),e(" "),t("path",{d:"M17 14h-2"},null),e(" "),t("path",{d:"M6.5 12h3.5"},null),e(" "),t("path",{d:"M8 9h3"},null),e(" ")])}},WL={name:"BrandEmberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ember",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12.958c8.466 1.647 11.112 -1.196 12.17 -2.294c2.116 -2.196 0 -6.589 -2.646 -5.49c-2.644 1.096 -6.35 7.686 -3.174 12.078c2.116 2.928 6 2.178 11.65 -2.252"},null),e(" ")])}},XL={name:"BrandEnvatoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-envato",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.711 17.875c-.534 -1.339 -1.35 -4.178 .129 -6.47c1.415 -2.193 3.769 -3.608 5.099 -4.278l-5.229 10.748z"},null),e(" "),t("path",{d:"M19.715 12.508c-.54 3.409 -2.094 6.156 -4.155 7.348c-4.069 2.353 -8.144 .45 -9.297 -.188c.877 -1.436 4.433 -7.22 6.882 -10.591c2.714 -3.737 5.864 -5.978 6.565 -6.077c0 .201 .03 .55 .071 1.03c.144 1.709 .443 5.264 -.066 8.478z"},null),e(" ")])}},qL={name:"BrandEtsyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-etsy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12h-5"},null),e(" "),t("path",{d:"M3 3m0 5a5 5 0 0 1 5 -5h8a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M15 16h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5"},null),e(" ")])}},YL={name:"BrandEvernoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-evernote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h5v-5"},null),e(" "),t("path",{d:"M17.9 19c.6 -2.5 1.1 -5.471 1.1 -9c0 -4.5 -2 -5 -3 -5c-1.906 0 -3 -.5 -3.5 -1c-.354 -.354 -.5 -1 -1.5 -1h-2l-5 5c0 6 2.5 8 5 8c1 0 1.5 -.5 2 -1.5s1.414 -.326 2.5 0c1.044 .313 2.01 .255 2.5 .5c1 .5 2 1.5 2 3c0 .5 0 3 -3 3s-3 -3 -1 -3"},null),e(" "),t("path",{d:"M15 10h1"},null),e(" ")])}},UL={name:"BrandFacebookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -.883 .993l-.117 .007h-3v1h3a1 1 0 0 1 .991 1.131l-.02 .112l-1 4a1 1 0 0 1 -.858 .75l-.113 .007h-2v6a1 1 0 0 1 -.883 .993l-.117 .007h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-6h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-4a1 1 0 0 1 .883 -.993l.117 -.007h2v-1a6 6 0 0 1 5.775 -5.996l.225 -.004h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GL={name:"BrandFacebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3"},null),e(" ")])}},ZL={name:"BrandFeedlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-feedly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.833 12.278l4.445 -4.445"},null),e(" "),t("path",{d:"M10.055 14.5l2.223 -2.222"},null),e(" "),t("path",{d:"M12.278 16.722l.555 -.555"},null),e(" "),t("path",{d:"M19.828 14.828a4 4 0 0 0 0 -5.656l-5 -5a4 4 0 0 0 -5.656 0l-5 5a4 4 0 0 0 0 5.656l6.171 6.172h3.314l6.171 -6.172z"},null),e(" ")])}},KL={name:"BrandFigmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-figma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 3m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15"},null),e(" ")])}},QL={name:"BrandFilezillaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-filezilla",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15.824a4.062 4.062 0 0 1 -2.25 .033c-.738 -.201 -2.018 -.08 -2.75 .143l4.583 -5h-6.583"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 15l2 -8h5"},null),e(" ")])}},JL={name:"BrandFinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-finder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 8v1"},null),e(" "),t("path",{d:"M17 8v1"},null),e(" "),t("path",{d:"M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7"},null),e(" "),t("path",{d:"M7 15.5c3.667 2 6.333 2 10 0"},null),e(" ")])}},tD={name:"BrandFirebaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firebase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"},null),e(" "),t("path",{d:"M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"},null),e(" "),t("path",{d:"M4.57 17.18l10.93 -10.68"},null),e(" ")])}},eD={name:"BrandFirefoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firefox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 7.82a9 9 0 1 0 12.823 -3.4c-1.636 -1.02 -3.064 -1.02 -4.851 -1.02h-1.647"},null),e(" "),t("path",{d:"M4.914 9.485c-1.756 -1.569 -.805 -5.38 .109 -6.17c.086 .896 .585 1.208 1.111 1.685c.88 -.275 1.313 -.282 1.867 0c.82 -.91 1.694 -2.354 2.628 -2.093c-1.082 1.741 -.07 3.733 1.371 4.173c-.17 .975 -1.484 1.913 -2.76 2.686c-1.296 .938 -.722 1.85 0 2.234c.949 .506 3.611 -1 4.545 .354c-1.698 .102 -1.536 3.107 -3.983 2.727c2.523 .957 4.345 .462 5.458 -.34c1.965 -1.52 2.879 -3.542 2.879 -5.557c-.014 -1.398 .194 -2.695 -1.26 -4.75"},null),e(" ")])}},nD={name:"BrandFiverrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fiverr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h-2a6 6 0 0 0 -6 6h-3v4h3v8h4v-7h4v7h4v-11h-8v-1.033a1.967 1.967 0 0 1 2 -1.967h2v-4z"},null),e(" ")])}},lD={name:"BrandFlickrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flickr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},rD={name:"BrandFlightradar24Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flightradar24",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 20l3.5 -8l-6.5 6"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},oD={name:"BrandFlipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.973 3h16.054c.537 0 .973 .436 .973 .973v4.052a.973 .973 0 0 1 -.973 .973h-5.025v4.831c0 .648 -.525 1.173 -1.173 1.173h-4.829v5.025a.973 .973 0 0 1 -.974 .973h-4.053a.973 .973 0 0 1 -.973 -.973v-16.054c0 -.537 .436 -.973 .973 -.973z"},null),e(" ")])}},sD={name:"BrandFlutterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flutter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14l-3 -3l8 -8h6z"},null),e(" "),t("path",{d:"M14 21l-5 -5l5 -5h5l-5 5l5 5z"},null),e(" ")])}},aD={name:"BrandFortniteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fortnite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z"},null),e(" ")])}},iD={name:"BrandFoursquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-foursquare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10c.644 0 1.11 .696 .978 1.33l-1.984 9.859a1.014 1.014 0 0 1 -1 .811h-2.254c-.308 0 -.6 .141 -.793 .382l-4.144 5.25c-.599 .752 -1.809 .331 -1.809 -.632v-16c0 -.564 .44 -1 1 -1z"},null),e(" "),t("path",{d:"M12 9l5 0"},null),e(" ")])}},hD={name:"BrandFramerMotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer-motion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-8 -8v16l16 -16v16l-4 -4"},null),e(" "),t("path",{d:"M20 12l-8 8l-4 -4"},null),e(" ")])}},dD={name:"BrandFramerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h12l-12 -12h12v6h-12v6l6 6v-6"},null),e(" ")])}},cD={name:"BrandFunimationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-funimation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 13h8a4 4 0 1 1 -8 0z"},null),e(" ")])}},uD={name:"BrandGatsbyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gatsby",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.296 14.297l6.407 6.407a9.018 9.018 0 0 1 -6.325 -6.116l-.082 -.291z"},null),e(" "),t("path",{d:"M16 13h5c-.41 3.603 -3.007 6.59 -6.386 7.614l-11.228 -11.229a9 9 0 0 1 15.66 -2.985"},null),e(" ")])}},pD={name:"BrandGitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-git",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15v-6"},null),e(" "),t("path",{d:"M15 11l-2 -2"},null),e(" "),t("path",{d:"M11 7l-1.9 -1.9"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},gD={name:"BrandGithubCopilotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-copilot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5.5c0 -.667 .167 -1.333 .5 -2"},null),e(" "),t("path",{d:"M12 7.5c0 -1 -.01 -4.07 -4 -3.5c-3.5 .5 -4 2.5 -4 3.5c0 1.5 0 4 3 4c4 0 5 -2.5 5 -4z"},null),e(" "),t("path",{d:"M4 12c-1.333 .667 -2 1.333 -2 2c0 1 0 3 1.5 4c3 2 6.5 3 8.5 3s5.499 -1 8.5 -3c1.5 -1 1.5 -3 1.5 -4c0 -.667 -.667 -1.333 -2 -2"},null),e(" "),t("path",{d:"M20 18v-5.5c0 -.667 -.167 -1.333 -.5 -2"},null),e(" "),t("path",{d:"M12 7.5l0 -.297l.01 -.269l.027 -.298l.013 -.105l.033 -.215c.014 -.073 .029 -.146 .046 -.22l.06 -.223c.336 -1.118 1.262 -2.237 3.808 -1.873c2.838 .405 3.703 1.797 3.93 2.842l.036 .204c0 .033 .01 .066 .013 .098l.016 .185l0 .171l0 .49l-.015 .394l-.02 .271c-.122 1.366 -.655 2.845 -2.962 2.845c-3.256 0 -4.524 -1.656 -4.883 -3.081l-.053 -.242a3.865 3.865 0 0 1 -.036 -.235l-.021 -.227a3.518 3.518 0 0 1 -.007 -.215z"},null),e(" "),t("path",{d:"M10 15v2"},null),e(" "),t("path",{d:"M14 15v2"},null),e(" ")])}},wD={name:"BrandGithubFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.315 2.1c.791 -.113 1.9 .145 3.333 .966l.272 .161l.16 .1l.397 -.083a13.3 13.3 0 0 1 4.59 -.08l.456 .08l.396 .083l.161 -.1c1.385 -.84 2.487 -1.17 3.322 -1.148l.164 .008l.147 .017l.076 .014l.05 .011l.144 .047a1 1 0 0 1 .53 .514a5.2 5.2 0 0 1 .397 2.91l-.047 .267l-.046 .196l.123 .163c.574 .795 .93 1.728 1.03 2.707l.023 .295l.007 .272c0 3.855 -1.659 5.883 -4.644 6.68l-.245 .061l-.132 .029l.014 .161l.008 .157l.004 .365l-.002 .213l-.003 3.834a1 1 0 0 1 -.883 .993l-.117 .007h-6a1 1 0 0 1 -.993 -.883l-.007 -.117v-.734c-1.818 .26 -3.03 -.424 -4.11 -1.878l-.535 -.766c-.28 -.396 -.455 -.579 -.589 -.644l-.048 -.019a1 1 0 0 1 .564 -1.918c.642 .188 1.074 .568 1.57 1.239l.538 .769c.76 1.079 1.36 1.459 2.609 1.191l.001 -.678l-.018 -.168a5.03 5.03 0 0 1 -.021 -.824l.017 -.185l.019 -.12l-.108 -.024c-2.976 -.71 -4.703 -2.573 -4.875 -6.139l-.01 -.31l-.004 -.292a5.6 5.6 0 0 1 .908 -3.051l.152 -.222l.122 -.163l-.045 -.196a5.2 5.2 0 0 1 .145 -2.642l.1 -.282l.106 -.253a1 1 0 0 1 .529 -.514l.144 -.047l.154 -.03z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vD={name:"BrandGithubIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"},null),e(" ")])}},fD={name:"BrandGitlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gitlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z"},null),e(" ")])}},mD={name:"BrandGmailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gmail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16z"},null),e(" "),t("path",{d:"M5 20h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M16 4l-4 4l-4 -4"},null),e(" "),t("path",{d:"M4 6.5l8 7.5l8 -7.5"},null),e(" ")])}},kD={name:"BrandGolangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-golang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.695 14.305c1.061 1.06 2.953 .888 4.226 -.384c1.272 -1.273 1.444 -3.165 .384 -4.226c-1.061 -1.06 -2.953 -.888 -4.226 .384c-1.272 1.273 -1.444 3.165 -.384 4.226z"},null),e(" "),t("path",{d:"M12.68 9.233c-1.084 -.497 -2.545 -.191 -3.591 .846c-1.284 1.273 -1.457 3.165 -.388 4.226c1.07 1.06 2.978 .888 4.261 -.384a3.669 3.669 0 0 0 1.038 -1.921h-2.427"},null),e(" "),t("path",{d:"M5.5 15h-1.5"},null),e(" "),t("path",{d:"M6 9h-2"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" ")])}},bD={name:"BrandGoogleAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v9.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M17 3m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v15.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},MD={name:"BrandGoogleBigQueryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-big-query",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.73 19.875a2.225 2.225 0 0 1 -1.948 1.125h-7.283a2.222 2.222 0 0 1 -1.947 -1.158l-4.272 -6.75a2.269 2.269 0 0 1 0 -2.184l4.272 -6.75a2.225 2.225 0 0 1 1.946 -1.158h7.285c.809 0 1.554 .443 1.947 1.158l3.98 6.75a2.33 2.33 0 0 1 0 2.25l-3.98 6.75v-.033z"},null),e(" "),t("path",{d:"M11.5 11.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 14l2 2"},null),e(" ")])}},xD={name:"BrandGoogleDriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-drive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-6 10l-3 -5l6 -10z"},null),e(" "),t("path",{d:"M9 15h12l-3 5h-12"},null),e(" "),t("path",{d:"M15 15l-6 -10h6l6 10z"},null),e(" ")])}},zD={name:"BrandGoogleFitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-fit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029"},null),e(" ")])}},ID={name:"BrandGoogleHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.072 21h-14.144a1.928 1.928 0 0 1 -1.928 -1.928v-6.857c0 -.512 .203 -1 .566 -1.365l7.07 -7.063a1.928 1.928 0 0 1 2.727 0l7.071 7.063c.363 .362 .566 .853 .566 1.365v6.857a1.928 1.928 0 0 1 -1.928 1.928z"},null),e(" "),t("path",{d:"M7 13v4h10v-4l-5 -5"},null),e(" "),t("path",{d:"M14.8 5.2l-11.8 11.8"},null),e(" "),t("path",{d:"M7 17v4"},null),e(" "),t("path",{d:"M17 17v4"},null),e(" ")])}},yD={name:"BrandGoogleMapsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-maps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6.428 12.494l7.314 -9.252"},null),e(" "),t("path",{d:"M10.002 7.935l-2.937 -2.545"},null),e(" "),t("path",{d:"M17.693 6.593l-8.336 9.979"},null),e(" "),t("path",{d:"M17.591 6.376c.472 .907 .715 1.914 .709 2.935a7.263 7.263 0 0 1 -.72 3.18a19.085 19.085 0 0 1 -2.089 3c-.784 .933 -1.49 1.93 -2.11 2.98c-.314 .62 -.568 1.27 -.757 1.938c-.121 .36 -.277 .591 -.622 .591c-.315 0 -.463 -.136 -.626 -.593a10.595 10.595 0 0 0 -.779 -1.978a18.18 18.18 0 0 0 -1.423 -2.091c-.877 -1.184 -2.179 -2.535 -2.853 -4.071a7.077 7.077 0 0 1 -.621 -2.967a6.226 6.226 0 0 1 1.476 -4.055a6.25 6.25 0 0 1 4.811 -2.245a6.462 6.462 0 0 1 1.918 .284a6.255 6.255 0 0 1 3.686 3.092z"},null),e(" ")])}},CD={name:"BrandGoogleOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v13.982a2 2 0 0 0 4 0v-13.982a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M6.63 8.407a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z"},null),e(" ")])}},SD={name:"BrandGooglePhotosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-photos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 7c2.485 0 4.5 1.974 4.5 4.409v.591h-8.397a.61 .61 0 0 1 -.426 -.173a.585 .585 0 0 1 -.177 -.418c0 -2.435 2.015 -4.409 4.5 -4.409z"},null),e(" "),t("path",{d:"M16.5 17c-2.485 0 -4.5 -1.974 -4.5 -4.409v-.591h8.397c.333 0 .603 .265 .603 .591c0 2.435 -2.015 4.409 -4.5 4.409z"},null),e(" "),t("path",{d:"M7 16.5c0 -2.485 1.972 -4.5 4.405 -4.5h.595v8.392a.61 .61 0 0 1 -.173 .431a.584 .584 0 0 1 -.422 .177c-2.433 0 -4.405 -2.015 -4.405 -4.5z"},null),e(" "),t("path",{d:"M17 7.5c0 2.485 -1.972 4.5 -4.405 4.5h-.595v-8.397a.61 .61 0 0 1 .175 -.428a.584 .584 0 0 1 .42 -.175c2.433 0 4.405 2.015 4.405 4.5z"},null),e(" ")])}},$D={name:"BrandGooglePlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3.71v16.58a.7 .7 0 0 0 1.05 .606l14.622 -8.42a.55 .55 0 0 0 0 -.953l-14.622 -8.419a.7 .7 0 0 0 -1.05 .607z"},null),e(" "),t("path",{d:"M15 9l-10.5 11.5"},null),e(" "),t("path",{d:"M4.5 3.5l10.5 11.5"},null),e(" ")])}},AD={name:"BrandGooglePodcastsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-podcasts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M8 17v2"},null),e(" "),t("path",{d:"M4 11v2"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M8 5v8"},null),e(" "),t("path",{d:"M16 7v-2"},null),e(" "),t("path",{d:"M16 19v-8"},null),e(" ")])}},BD={name:"BrandGoogleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.788 5.108a9 9 0 1 0 3.212 6.892h-8"},null),e(" ")])}},HD={name:"BrandGrammarlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grammarly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15.697 9.434a4.5 4.5 0 1 0 .217 4.788"},null),e(" "),t("path",{d:"M13.5 14h2.5v2.5"},null),e(" ")])}},ND={name:"BrandGraphqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-graphql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.308 7.265l5.385 -3.029"},null),e(" "),t("path",{d:"M13.308 4.235l5.384 3.03"},null),e(" "),t("path",{d:"M20 9.5v5"},null),e(" "),t("path",{d:"M18.693 16.736l-5.385 3.029"},null),e(" "),t("path",{d:"M10.692 19.765l-5.384 -3.03"},null),e(" "),t("path",{d:"M4 14.5v-5"},null),e(" "),t("path",{d:"M12.772 4.786l6.121 10.202"},null),e(" "),t("path",{d:"M18.5 16h-13"},null),e(" "),t("path",{d:"M5.107 14.988l6.122 -10.201"},null),e(" "),t("path",{d:"M12 3.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M12 20.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" ")])}},jD={name:"BrandGravatarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gravatar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 6.36 -2.632v7.714"},null),e(" ")])}},PD={name:"BrandGrindrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grindr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13.282c0 .492 .784 1.718 2.102 1.718c1.318 0 2.898 -.966 2.898 -2.062c0 -.817 -.932 -.938 -1.409 -.938c-.228 0 -3.591 .111 -3.591 1.282z"},null),e(" "),t("path",{d:"M12 21c-2.984 0 -6.471 -2.721 -6.63 -2.982c-2.13 -3.49 -2.37 -13.703 -2.37 -13.703l1.446 -1.315c2.499 .39 5.023 .617 7.554 .68a58.626 58.626 0 0 0 7.554 -.68l1.446 1.315s-.24 10.213 -2.37 13.704c-.16 .26 -3.646 2.981 -6.63 2.981z"},null),e(" "),t("path",{d:"M11 13.282c0 .492 -.784 1.718 -2.102 1.718c-1.318 0 -2.898 -.966 -2.898 -2.062c0 -.817 .932 -.938 1.409 -.938c.228 0 3.591 .111 3.591 1.282z"},null),e(" ")])}},LD={name:"BrandGuardianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-guardian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 13h6"},null),e(" "),t("path",{d:"M4 12c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976z"},null),e(" "),t("path",{d:"M14.5 3c1.416 0 3.853 1.16 4.5 2v3.5"},null),e(" "),t("path",{d:"M15 13v8s2.77 -.37 4 -2v-6"},null),e(" "),t("path",{d:"M13.5 21h1.5"},null),e(" "),t("path",{d:"M13.5 3h1"},null),e(" ")])}},DD={name:"BrandGumroadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gumroad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M13.5 13h2.5v3"},null),e(" "),t("path",{d:"M15.024 9.382a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3"},null),e(" ")])}},OD={name:"BrandHboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hbo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 16v-8"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M9 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M19 8a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},FD={name:"BrandHeadlessuiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-headlessui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.744 4.325l7.82 -1.267a4.456 4.456 0 0 1 5.111 3.686l1.267 7.82a4.456 4.456 0 0 1 -3.686 5.111l-7.82 1.267a4.456 4.456 0 0 1 -5.111 -3.686l-1.267 -7.82a4.456 4.456 0 0 1 3.686 -5.111z"},null),e(" "),t("path",{d:"M7.252 7.704l7.897 -1.28a1 1 0 0 1 1.147 .828l.36 2.223l-9.562 3.51l-.67 -4.134a1 1 0 0 1 .828 -1.147z"},null),e(" ")])}},RD={name:"BrandHexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M15 8v8"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},TD={name:"BrandHipchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hipchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 3 -3.49 3 -5.789c0 -4.286 -4.03 -7.764 -9 -7.764c-4.97 0 -9 3.478 -9 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29z"},null),e(" "),t("path",{d:"M7.5 13.5c2.5 2.5 6.5 2.5 9 0"},null),e(" ")])}},ED={name:"BrandHtml5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-html5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M15.5 8h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},VD={name:"BrandInertiaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-inertia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" "),t("path",{d:"M3.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" ")])}},_D={name:"BrandInstagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-instagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.5 7.5l0 .01"},null),e(" ")])}},WD={name:"BrandIntercomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-intercom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8v3"},null),e(" "),t("path",{d:"M10 7v6"},null),e(" "),t("path",{d:"M14 7v6"},null),e(" "),t("path",{d:"M17 8v3"},null),e(" "),t("path",{d:"M7 15c4 2.667 6 2.667 10 0"},null),e(" ")])}},XD={name:"BrandItchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-itch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 7v1c0 1.087 1.078 2 2 2c1.107 0 2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2c.922 0 2 -.913 2 -2v-1c-.009 -.275 -.538 -.964 -1.588 -2.068a3 3 0 0 0 -2.174 -.932h-12.476a3 3 0 0 0 -2.174 .932c-1.05 1.104 -1.58 1.793 -1.588 2.068z"},null),e(" "),t("path",{d:"M4 10c-.117 6.28 .154 9.765 .814 10.456c1.534 .367 4.355 .535 7.186 .536c2.83 -.001 5.652 -.169 7.186 -.536c.99 -1.037 .898 -9.559 .814 -10.456"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},qD={name:"BrandJavascriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-javascript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M7.5 8h3v8l-2 -1"},null),e(" "),t("path",{d:"M16.5 8h-2.5a.5 .5 0 0 0 -.5 .5v3a.5 .5 0 0 0 .5 .5h1.423a.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5"},null),e(" ")])}},YD={name:"BrandJuejinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-juejin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12l10 7.422l10 -7.422"},null),e(" "),t("path",{d:"M7 9l5 4l5 -4"},null),e(" "),t("path",{d:"M11 6l1 .8l1 -.8l-1 -.8z"},null),e(" ")])}},UD={name:"BrandKickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z"},null),e(" ")])}},GD={name:"BrandKickstarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kickstarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 1 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z"},null),e(" ")])}},ZD={name:"BrandKotlinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kotlin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-16v-16h16"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M4 12l8 -8"},null),e(" "),t("path",{d:"M12 12l8 8"},null),e(" ")])}},KD={name:"BrandLaravelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-laravel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l8 5l7 -4v-8l-4 -2.5l4 -2.5l4 2.5v4l-11 6.5l-4 -2.5v-7.5l-4 -2.5z"},null),e(" "),t("path",{d:"M11 18v4"},null),e(" "),t("path",{d:"M7 15.5l7 -4"},null),e(" "),t("path",{d:"M14 7.5v4"},null),e(" "),t("path",{d:"M14 11.5l4 2.5"},null),e(" "),t("path",{d:"M11 13v-7.5l-4 -2.5l-4 2.5"},null),e(" "),t("path",{d:"M7 8l4 -2.5"},null),e(" "),t("path",{d:"M18 10l4 -2.5"},null),e(" ")])}},QD={name:"BrandLastfmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-lastfm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -6a5 5 0 1 0 -1 7"},null),e(" ")])}},JD={name:"BrandLeetcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-leetcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13h7.5"},null),e(" "),t("path",{d:"M9.424 7.268l4.999 -4.999"},null),e(" "),t("path",{d:"M16.633 16.644l-2.402 2.415a3.189 3.189 0 0 1 -4.524 0l-3.77 -3.787a3.223 3.223 0 0 1 0 -4.544l3.77 -3.787a3.189 3.189 0 0 1 4.524 0l2.302 2.313"},null),e(" ")])}},tO={name:"BrandLetterboxdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-letterboxd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eO={name:"BrandLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10.663c0 -4.224 -4.041 -7.663 -9 -7.663s-9 3.439 -9 7.663c0 3.783 3.201 6.958 7.527 7.56c1.053 .239 .932 .644 .696 2.133c-.039 .238 -.184 .932 .777 .512c.96 -.42 5.18 -3.201 7.073 -5.48c1.304 -1.504 1.927 -3.029 1.927 -4.715v-.01z"},null),e(" ")])}},nO={name:"BrandLinkedinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linkedin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11l0 5"},null),e(" "),t("path",{d:"M8 8l0 .01"},null),e(" "),t("path",{d:"M12 16l0 -5"},null),e(" "),t("path",{d:"M16 16v-3a2 2 0 0 0 -4 0"},null),e(" ")])}},lO={name:"BrandLinktreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linktree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l-7 12h3v5h5v-5h-2l4 -7z"},null),e(" "),t("path",{d:"M15 3l7 12h-3v5h-5v-5h2l-4 -7z"},null),e(" ")])}},rO={name:"BrandLinqpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linqpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h3.5l2.5 -6l2.5 -1l2.5 7h4l1 -4.5l-2 -1l-7 -12l-6 -.5l1.5 4l2.5 .5l1 2.5l-7 8z"},null),e(" ")])}},oO={name:"BrandLoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-loom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.464 6.518a6 6 0 1 0 -3.023 7.965"},null),e(" "),t("path",{d:"M17.482 17.464a6 6 0 1 0 -7.965 -3.023"},null),e(" "),t("path",{d:"M6.54 17.482a6 6 0 1 0 3.024 -7.965"},null),e(" "),t("path",{d:"M6.518 6.54a6 6 0 1 0 7.965 3.024"},null),e(" ")])}},sO={name:"BrandMailgunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mailgun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 0 4 0a9 9 0 1 0 -2.987 6.697"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},aO={name:"BrandMantineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mantine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4"},null),e(" "),t("path",{d:"M14 9h-2"},null),e(" "),t("path",{d:"M14 15h-2"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},iO={name:"BrandMastercardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastercard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9.765a3 3 0 1 0 0 4.47"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},hO={name:"BrandMastodonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastodon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.648 15.254c-1.816 1.763 -6.648 1.626 -6.648 1.626a18.262 18.262 0 0 1 -3.288 -.256c1.127 1.985 4.12 2.81 8.982 2.475c-1.945 2.013 -13.598 5.257 -13.668 -7.636l-.026 -1.154c0 -3.036 .023 -4.115 1.352 -5.633c1.671 -1.91 6.648 -1.666 6.648 -1.666s4.977 -.243 6.648 1.667c1.329 1.518 1.352 2.597 1.352 5.633s-.456 4.074 -1.352 4.944z"},null),e(" "),t("path",{d:"M12 11.204v-2.926c0 -1.258 -.895 -2.278 -2 -2.278s-2 1.02 -2 2.278v4.722m4 -4.722c0 -1.258 .895 -2.278 2 -2.278s2 1.02 2 2.278v4.722"},null),e(" ")])}},dO={name:"BrandMatrixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-matrix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h-1v18h1"},null),e(" "),t("path",{d:"M20 21h1v-18h-1"},null),e(" "),t("path",{d:"M7 9v6"},null),e(" "),t("path",{d:"M12 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" "),t("path",{d:"M17 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},cO={name:"BrandMcdonaldsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mcdonalds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20c0 -3.952 -.966 -16 -4.038 -16s-3.962 9.087 -3.962 14.756c0 -5.669 -.896 -14.756 -3.962 -14.756c-3.065 0 -4.038 12.048 -4.038 16"},null),e(" ")])}},uO={name:"BrandMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 9h1l3 3l3 -3h1"},null),e(" "),t("path",{d:"M8 15l2 0"},null),e(" "),t("path",{d:"M14 15l2 0"},null),e(" "),t("path",{d:"M9 9l0 6"},null),e(" "),t("path",{d:"M15 9l0 6"},null),e(" ")])}},pO={name:"BrandMercedesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mercedes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l7 5"},null),e(" "),t("path",{d:"M12 12l-7 5"},null),e(" ")])}},gO={name:"BrandMessengerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-messenger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" "),t("path",{d:"M8 13l3 -2l2 2l3 -2"},null),e(" ")])}},wO={name:"BrandMetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-meta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174z"},null),e(" "),t("path",{d:"M12 10.174c-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z"},null),e(" ")])}},vO={name:"BrandMiniprogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-miniprogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 11.503a2.5 2.5 0 1 0 4 2v-3a2.5 2.5 0 1 1 4 2"},null),e(" ")])}},fO={name:"BrandMixpanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mixpanel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M20.5 12m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M13 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},mO={name:"BrandMondayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-monday",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 15.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" "),t("path",{d:"M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" ")])}},kO={name:"BrandMongodbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mongodb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v19"},null),e(" "),t("path",{d:"M18 11.227c0 3.273 -1.812 4.77 -6 9.273c-4.188 -4.503 -6 -6 -6 -9.273c0 -4.454 3.071 -6.927 6 -9.227c2.929 2.3 6 4.773 6 9.227z"},null),e(" ")])}},bO={name:"BrandMyOppoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-my-oppo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.316 5h-12.632l-3.418 4.019a1.089 1.089 0 0 0 .019 1.447l9.714 10.534l9.715 -10.49a1.09 1.09 0 0 0 .024 -1.444l-3.422 -4.066z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},MO={name:"BrandMysqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mysql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21c-1.427 -1.026 -3.59 -3.854 -4 -6c-.486 .77 -1.501 2 -2 2c-1.499 -.888 -.574 -3.973 0 -6c-1.596 -1.433 -2.468 -2.458 -2.5 -4c-3.35 -3.44 -.444 -5.27 2.5 -3h1c8.482 .5 6.421 8.07 9 11.5c2.295 .522 3.665 2.254 5 3.5c-2.086 -.2 -2.784 -.344 -3.5 0c.478 1.64 2.123 2.2 3.5 3"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" ")])}},xO={name:"BrandNationalGeographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-national-geographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v18h-10z"},null),e(" ")])}},zO={name:"BrandNemIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nem",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.182 2c1.94 .022 3.879 .382 5.818 1.08l.364 .135a23.075 23.075 0 0 1 3.636 1.785c0 5.618 -1.957 10.258 -5.87 13.92c-1.24 1.239 -2.5 2.204 -3.78 2.898l-.35 .182c-1.4 -.703 -2.777 -1.729 -4.13 -3.079c-3.912 -3.663 -5.87 -8.303 -5.87 -13.921c2.545 -1.527 5.09 -2.471 7.636 -2.832l.364 -.048a16.786 16.786 0 0 1 1.818 -.12h.364z"},null),e(" "),t("path",{d:"M2.1 7.07c2.073 6.72 5.373 7.697 9.9 2.93c0 -4 1.357 -6.353 4.07 -7.06l.59 -.11"},null),e(" "),t("path",{d:"M16.35 18.51s2.65 -5.51 -4.35 -8.51"},null),e(" ")])}},IO={name:"BrandNetbeansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netbeans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"},null),e(" "),t("path",{d:"M12 21v-9l-7.5 -4.5"},null),e(" "),t("path",{d:"M12 12l7.5 -4.5"},null),e(" "),t("path",{d:"M12 3v4.5"},null),e(" "),t("path",{d:"M19.5 16l-3.5 -2"},null),e(" "),t("path",{d:"M8 14l-3.5 2"},null),e(" ")])}},yO={name:"BrandNeteaseMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netease-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c-2.93 1.346 -5 5.046 -5 8.492c0 4.508 4 7.508 8 7.508s8 -3 8 -7c0 -3.513 -3.5 -5.513 -6 -5.513s-5 1.513 -5 4.513c0 2 1.5 3 3 3s3 -1 3 -3c0 -3.513 -2 -4.508 -2 -6.515c0 -3.504 3.5 -2.603 4 -1.502"},null),e(" ")])}},CO={name:"BrandNetflixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netflix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l10 18h-4l-10 -18z"},null),e(" "),t("path",{d:"M5 3v18h4v-10.5"},null),e(" "),t("path",{d:"M19 21v-18h-4v10.5"},null),e(" ")])}},SO={name:"BrandNexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l5 3v12l-5 3l-10 -6v-6l10 6v-6l-5 -3z"},null),e(" "),t("path",{d:"M12 6l-5 -3l-5 3v12l5 3l4.7 -3.13"},null),e(" ")])}},$O={name:"BrandNextcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M4.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},AO={name:"BrandNextjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993"},null),e(" "),t("path",{d:"M15 12v-3"},null),e(" ")])}},BO={name:"BrandNordVpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nord-vpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.992 15l-2.007 -3l-4.015 8c-2.212 -3.061 -2.625 -7.098 -.915 -10.463a10.14 10.14 0 0 1 8.945 -5.537a10.14 10.14 0 0 1 8.945 5.537c1.71 3.365 1.297 7.402 -.915 10.463l-4.517 -8l-1.505 1.5"},null),e(" "),t("path",{d:"M14.5 15l-3 -6l-2.5 4.5"},null),e(" ")])}},HO={name:"BrandNotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-notion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3l6 6"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" "),t("path",{d:"M7 17h2"},null),e(" "),t("path",{d:"M15 7h2"},null),e(" "),t("path",{d:"M16 7v10h-1l-7 -7"},null),e(" ")])}},NO={name:"BrandNpmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-npm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1 8h22v7h-12v2h-4v-2h-6z"},null),e(" "),t("path",{d:"M7 8v7"},null),e(" "),t("path",{d:"M14 8v7"},null),e(" "),t("path",{d:"M17 11v4"},null),e(" "),t("path",{d:"M4 11v4"},null),e(" "),t("path",{d:"M11 11v1"},null),e(" "),t("path",{d:"M20 11v4"},null),e(" ")])}},jO={name:"BrandNuxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nuxt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.146 8.583l-1.3 -2.09a1.046 1.046 0 0 0 -1.786 .017l-5.91 9.908a1.046 1.046 0 0 0 .897 1.582h3.913"},null),e(" "),t("path",{d:"M20.043 18c.743 0 1.201 -.843 .82 -1.505l-4.044 -7.013a.936 .936 0 0 0 -1.638 0l-4.043 7.013c-.382 .662 .076 1.505 .819 1.505h8.086z"},null),e(" ")])}},PO={name:"BrandNytimesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nytimes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 5.058a8 8 0 1 0 8.706 9.965"},null),e(" "),t("path",{d:"M12 21v-11l-7.5 4"},null),e(" "),t("path",{d:"M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91"},null),e(" "),t("path",{d:"M9 12v8"},null),e(" "),t("path",{d:"M16 13h-.01"},null),e(" ")])}},LO={name:"BrandOauthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-oauth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M12.556 6c.65 0 1.235 .373 1.508 .947l2.839 7.848a1.646 1.646 0 0 1 -1.01 2.108a1.673 1.673 0 0 1 -2.068 -.851l-.46 -1.052h-2.73l-.398 .905a1.67 1.67 0 0 1 -1.977 1.045l-.153 -.047a1.647 1.647 0 0 1 -1.056 -1.956l2.824 -7.852a1.664 1.664 0 0 1 1.409 -1.087l1.272 -.008z"},null),e(" ")])}},DO={name:"BrandOfficeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-office",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h9v-12l-5 2v5l-4 2v-8l9 -4l7 2v13l-7 3z"},null),e(" ")])}},OO={name:"BrandOkRuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ok-ru",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12c0 8 0 8 -8 8s-8 0 -8 -8s0 -8 8 -8s8 0 8 8z"},null),e(" "),t("path",{d:"M9.5 13c1.333 .667 3.667 .667 5 0"},null),e(" "),t("path",{d:"M9.5 17l2.5 -3l2.5 3"},null),e(" "),t("path",{d:"M12 13.5v.5"},null),e(" ")])}},FO={name:"BrandOnedriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onedrive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.456 10.45a6.45 6.45 0 0 0 -12 -2.151a4.857 4.857 0 0 0 -4.44 5.241a4.856 4.856 0 0 0 5.236 4.444h10.751a3.771 3.771 0 0 0 3.99 -3.54a3.772 3.772 0 0 0 -3.538 -3.992z"},null),e(" ")])}},RO={name:"BrandOnlyfansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onlyfans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0 -13z"},null),e(" "),t("path",{d:"M8.5 15a2.5 2.5 0 1 1 0 -5a2.5 2.5 0 0 1 0 5z"},null),e(" "),t("path",{d:"M14 16c2.5 0 6.42 -1.467 7 -4h-6c3 -1 6.44 -3.533 7 -6h-4c-3.03 0 -3.764 -.196 -5 1.5"},null),e(" ")])}},TO={name:"BrandOpenSourceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-open-source",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z"},null),e(" ")])}},EO={name:"BrandOpenaiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.217 19.384a3.501 3.501 0 0 0 6.783 -1.217v-5.167l-6 -3.35"},null),e(" "),t("path",{d:"M5.214 15.014a3.501 3.501 0 0 0 4.446 5.266l4.34 -2.534v-6.946"},null),e(" "),t("path",{d:"M6 7.63c-1.391 -.236 -2.787 .395 -3.534 1.689a3.474 3.474 0 0 0 1.271 4.745l4.263 2.514l6 -3.348"},null),e(" "),t("path",{d:"M12.783 4.616a3.501 3.501 0 0 0 -6.783 1.217v5.067l6 3.45"},null),e(" "),t("path",{d:"M18.786 8.986a3.501 3.501 0 0 0 -4.446 -5.266l-4.34 2.534v6.946"},null),e(" "),t("path",{d:"M18 16.302c1.391 .236 2.787 -.395 3.534 -1.689a3.474 3.474 0 0 0 -1.271 -4.745l-4.308 -2.514l-5.955 3.42"},null),e(" ")])}},VO={name:"BrandOpenvpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openvpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.618 20.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},_O={name:"BrandOperaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-opera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0"},null),e(" ")])}},WO={name:"BrandPagekitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pagekit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.077 20h-5.077v-16h11v14h-5.077"},null),e(" ")])}},XO={name:"BrandPatreonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-patreon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3h3v18h-3z"},null),e(" "),t("path",{d:"M15 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" ")])}},qO={name:"BrandPaypalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 2c3.113 0 5.309 1.785 5.863 4.565c1.725 1.185 2.637 3.152 2.637 5.435c0 2.933 -2.748 5.384 -5.783 5.496l-.217 .004h-1.754l-.466 2.8a1.998 1.998 0 0 1 -1.823 1.597l-.157 .003h-2.68a1.5 1.5 0 0 1 -1.182 -.54a1.495 1.495 0 0 1 -.348 -1.07l.042 -.29h-1.632c-1.004 0 -1.914 -.864 -1.994 -1.857l-.006 -.143l.01 -.141l1.993 -13.954l.003 -.048c.072 -.894 .815 -1.682 1.695 -1.832l.156 -.02l.143 -.005h5.5zm5.812 7.35l-.024 .087c-.706 2.403 -3.072 4.436 -5.555 4.557l-.233 .006h-2.503v.05l-.025 .183l-1.2 5a1.007 1.007 0 0 1 -.019 .07l-.088 .597h2.154l.595 -3.564a1 1 0 0 1 .865 -.829l.121 -.007h2.6c2.073 0 4 -1.67 4 -3.5c0 -1.022 -.236 -1.924 -.688 -2.65z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YO={name:"BrandPaypalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13l2.5 0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 0a.5 .5 0 0 1 -.5 -.6l.2 -1.4"},null),e(" ")])}},UO={name:"BrandPaypayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.375 21l3.938 -13.838"},null),e(" "),t("path",{d:"M3 6c16.731 0 21.231 9.881 4.5 11"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},GO={name:"BrandPeanutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-peanut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.25l-.816 -.36l-.462 -.196c-1.444 -.592 -2 -.593 -3.447 0l-.462 .195l-.817 .359a4.5 4.5 0 1 1 0 -8.49v0l1.054 .462l.434 .178c1.292 .507 1.863 .48 3.237 -.082l.462 -.195l.817 -.359a4.5 4.5 0 1 1 0 8.49"},null),e(" ")])}},ZO={name:"BrandPepsiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pepsi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16c5.713 -2.973 11 -3.5 13.449 -11.162"},null),e(" "),t("path",{d:"M5 17.5c5.118 -2.859 15 0 14 -11"},null),e(" ")])}},KO={name:"BrandPhpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-php",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 9 0 1 0 20 0a10 9 0 1 0 -20 0"},null),e(" "),t("path",{d:"M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M12 7.5l-1 5.5"},null),e(" "),t("path",{d:"M11.6 10h2.4l-.5 3"},null),e(" ")])}},QO={name:"BrandPicsartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-picsart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M5 9v11a2 2 0 1 0 4 0v-4.5"},null),e(" ")])}},JO={name:"BrandPinterestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pinterest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l4 -9"},null),e(" "),t("path",{d:"M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},tF={name:"BrandPlanetscaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-planetscale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.63a9 9 0 0 1 -9.362 9.362l9.362 -9.362z"},null),e(" "),t("path",{d:"M12 3a9.001 9.001 0 0 1 8.166 5.211l-11.955 11.955a9 9 0 0 1 3.789 -17.166z"},null),e(" "),t("path",{d:"M12 12l-6 6"},null),e(" ")])}},eF={name:"BrandPocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M8 11l4 4l4 -4"},null),e(" ")])}},nF={name:"BrandPolymerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-polymer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.706 6l-3.706 6l3.706 6h1.059l8.47 -12h1.06l3.705 6l-3.706 6"},null),e(" ")])}},lF={name:"BrandPowershellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-powershell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.887 20h11.868c.893 0 1.664 -.665 1.847 -1.592l2.358 -12c.212 -1.081 -.442 -2.14 -1.462 -2.366a1.784 1.784 0 0 0 -.385 -.042h-11.868c-.893 0 -1.664 .665 -1.847 1.592l-2.358 12c-.212 1.081 .442 2.14 1.462 2.366c.127 .028 .256 .042 .385 .042z"},null),e(" "),t("path",{d:"M9 8l4 4l-6 4"},null),e(" "),t("path",{d:"M12 16h3"},null),e(" ")])}},rF={name:"BrandPrismaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-prisma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.186 16.202l3.615 5.313c.265 .39 .754 .57 1.215 .447l10.166 -2.718a1.086 1.086 0 0 0 .713 -1.511l-7.505 -15.483a.448 .448 0 0 0 -.787 -.033l-7.453 12.838a1.07 1.07 0 0 0 .037 1.147z"},null),e(" "),t("path",{d:"M8.5 22l3.5 -20"},null),e(" ")])}},oF={name:"BrandProducthuntIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-producthunt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},sF={name:"BrandPushbulletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushbullet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 8v8h2a4 4 0 1 0 0 -8h-2z"},null),e(" "),t("path",{d:"M8 8v8"},null),e(" ")])}},aF={name:"BrandPushoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1"},null),e(" "),t("path",{d:"M12.5 6l-5.5 15"},null),e(" ")])}},iF={name:"BrandPythonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-python",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3"},null),e(" "),t("path",{d:"M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3"},null),e(" "),t("path",{d:"M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M11 6l0 .01"},null),e(" "),t("path",{d:"M13 18l0 .01"},null),e(" ")])}},hF={name:"BrandQqIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-qq",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9.748a14.716 14.716 0 0 0 11.995 -.052c.275 -9.236 -11.104 -11.256 -11.995 .052z"},null),e(" "),t("path",{d:"M18 10c.984 2.762 1.949 4.765 2 7.153c.014 .688 -.664 1.346 -1.184 .303c-.346 -.696 -.952 -1.181 -1.816 -1.456"},null),e(" "),t("path",{d:"M17 16c.031 1.831 .147 3.102 -1 4"},null),e(" "),t("path",{d:"M8 20c-1.099 -.87 -.914 -2.24 -1 -4"},null),e(" "),t("path",{d:"M6 10c-.783 2.338 -1.742 4.12 -1.968 6.43c-.217 2.227 .716 1.644 1.16 .917c.296 -.487 .898 -.934 1.808 -1.347"},null),e(" "),t("path",{d:"M15.898 13l-.476 -2"},null),e(" "),t("path",{d:"M8 20l-1.5 1c-.5 .5 -.5 1 .5 1h10c1 0 1 -.5 .5 -1l-1.5 -1"},null),e(" "),t("path",{d:"M13.75 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10.25 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},dF={name:"BrandRadixUiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-radix-ui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 3h5v5h-5z"},null),e(" "),t("path",{d:"M11 11v10a5 5 0 0 1 -.217 -9.995l.217 -.005z"},null),e(" ")])}},cF={name:"BrandReactNativeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react-native",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"},null),e(" "),t("path",{d:"M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"},null),e(" "),t("path",{d:"M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"},null),e(" "),t("path",{d:"M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"},null),e(" "),t("path",{d:"M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"},null),e(" "),t("path",{d:"M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"},null),e(" "),t("path",{d:"M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"},null),e(" ")])}},uF={name:"BrandReactIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.306 8.711c-2.602 .723 -4.306 1.926 -4.306 3.289c0 2.21 4.477 4 10 4c.773 0 1.526 -.035 2.248 -.102"},null),e(" "),t("path",{d:"M17.692 15.289c2.603 -.722 4.308 -1.926 4.308 -3.289c0 -2.21 -4.477 -4 -10 -4c-.773 0 -1.526 .035 -2.25 .102"},null),e(" "),t("path",{d:"M6.305 15.287c-.676 2.615 -.485 4.693 .695 5.373c1.913 1.105 5.703 -1.877 8.464 -6.66c.387 -.67 .733 -1.339 1.036 -2"},null),e(" "),t("path",{d:"M17.694 8.716c.677 -2.616 .487 -4.696 -.694 -5.376c-1.913 -1.105 -5.703 1.877 -8.464 6.66c-.387 .67 -.733 1.34 -1.037 2"},null),e(" "),t("path",{d:"M12 5.424c-1.925 -1.892 -3.82 -2.766 -5 -2.084c-1.913 1.104 -1.226 5.877 1.536 10.66c.386 .67 .793 1.304 1.212 1.896"},null),e(" "),t("path",{d:"M12 18.574c1.926 1.893 3.821 2.768 5 2.086c1.913 -1.104 1.226 -5.877 -1.536 -10.66c-.375 -.65 -.78 -1.283 -1.212 -1.897"},null),e(" "),t("path",{d:"M11.5 12.866a1 1 0 1 0 1 -1.732a1 1 0 0 0 -1 1.732z"},null),e(" ")])}},pF={name:"BrandReasonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reason",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18h-3v-6h3"},null),e(" "),t("path",{d:"M18 15h-3"},null),e(" "),t("path",{d:"M8 18v-6h2.5a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 18l-2 -3"},null),e(" ")])}},gF={name:"BrandRedditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reddit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59 -4.03 6.5 -9 6.5c-4.875 0 -8.845 -2.8 -9 -6.294l-1 -.206a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14z"},null),e(" "),t("path",{d:"M12 8l1 -5l6 1"},null),e(" "),t("path",{d:"M19 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("circle",{cx:"9",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M10 17c.667 .333 1.333 .5 2 .5s1.333 -.167 2 -.5"},null),e(" ")])}},wF={name:"BrandRedhatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redhat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10.5l1.436 -4c.318 -.876 .728 -1.302 1.359 -1.302c.219 0 1.054 .365 1.88 .583c.825 .219 .733 -.329 .908 -.487c.176 -.158 .355 -.294 .61 -.294c.242 0 .553 .048 1.692 .448c.759 .267 1.493 .574 2.204 .922c1.175 .582 1.426 .913 1.595 1.507l.816 4.623c2.086 .898 3.5 2.357 3.5 3.682c0 1.685 -1.2 3.818 -5.957 3.818c-6.206 0 -14.043 -4.042 -14.043 -7.32c0 -1.044 1.333 -1.77 4 -2.18z"},null),e(" "),t("path",{d:"M6 10.5c0 .969 4.39 3.5 9.5 3.5c1.314 0 3 .063 3 -1.5"},null),e(" ")])}},vF={name:"BrandReduxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redux",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.54 7c-.805 -2.365 -2.536 -4 -4.54 -4c-2.774 0 -5.023 2.632 -5.023 6.496c0 1.956 1.582 4.727 2.512 6"},null),e(" "),t("path",{d:"M4.711 11.979c-1.656 1.877 -2.214 4.185 -1.211 5.911c1.387 2.39 5.138 2.831 8.501 .9c1.703 -.979 2.875 -3.362 3.516 -4.798"},null),e(" "),t("path",{d:"M15.014 19.99c2.511 0 4.523 -.438 5.487 -2.1c1.387 -2.39 -.215 -5.893 -3.579 -7.824c-1.702 -.979 -4.357 -1.235 -5.927 -1.07"},null),e(" "),t("path",{d:"M10.493 9.862c.48 .276 1.095 .112 1.372 -.366a1 1 0 0 0 -.367 -1.365a1.007 1.007 0 0 0 -1.373 .366a1 1 0 0 0 .368 1.365z"},null),e(" "),t("path",{d:"M9.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.5 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},fF={name:"BrandRevolutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-revolut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.908 6c-.091 .363 -.908 5 -.908 5h1.228c1.59 0 2.772 -1.168 2.772 -2.943c0 -1.249 -.818 -2.057 -2.087 -2.057h-1z"},null),e(" "),t("path",{d:"M15.5 13.5l1.791 4.558c.535 1.352 1.13 2.008 1.709 2.442c-1 .5 -2.616 .522 -3.605 .497c-.973 0 -2.28 -.24 -3.106 -2.6l-1.289 -3.397h-1.5s-.465 2.243 -.65 3.202c-.092 .704 .059 1.594 .15 2.298c-1 .5 -2.5 .5 -3.5 .5c-.727 0 -1.45 -.248 -1.5 -1.5l0 -.311a7 7 0 0 1 .149 -1.409c.75 -3.577 1.366 -7.17 1.847 -10.78c.23 -1.722 0 -3.5 0 -3.5c.585 -.144 2.709 -.602 6.787 -.471a10.26 10.26 0 0 1 3.641 .722c.308 .148 .601 .326 .875 .531c.254 .212 .497 .437 .727 .674c.3 .382 .545 .804 .727 1.253c.155 .483 .237 .987 .243 1.493c0 2.462 -1.412 4.676 -3.5 5.798z"},null),e(" ")])}},mF={name:"BrandRustIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-rust",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.139 3.463c.473 -1.95 3.249 -1.95 3.722 0a1.916 1.916 0 0 0 2.859 1.185c1.714 -1.045 3.678 .918 2.633 2.633a1.916 1.916 0 0 0 1.184 2.858c1.95 .473 1.95 3.249 0 3.722a1.916 1.916 0 0 0 -1.185 2.859c1.045 1.714 -.918 3.678 -2.633 2.633a1.916 1.916 0 0 0 -2.858 1.184c-.473 1.95 -3.249 1.95 -3.722 0a1.916 1.916 0 0 0 -2.859 -1.185c-1.714 1.045 -3.678 -.918 -2.633 -2.633a1.916 1.916 0 0 0 -1.184 -2.858c-1.95 -.473 -1.95 -3.249 0 -3.722a1.916 1.916 0 0 0 1.185 -2.859c-1.045 -1.714 .918 -3.678 2.633 -2.633a1.914 1.914 0 0 0 2.858 -1.184z"},null),e(" "),t("path",{d:"M8 12h6a2 2 0 1 0 0 -4h-6v8v-4z"},null),e(" "),t("path",{d:"M19 16h-2a2 2 0 0 1 -2 -2a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M9 8h-4"},null),e(" "),t("path",{d:"M5 16h4"},null),e(" ")])}},kF={name:"BrandSafariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-safari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},bF={name:"BrandSamsungpassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-samsungpass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10v-1.862c0 -2.838 2.239 -5.138 5 -5.138s5 2.3 5 5.138v1.862"},null),e(" "),t("path",{d:"M10.485 17.577c.337 .29 .7 .423 1.515 .423h.413c.323 0 .633 -.133 .862 -.368a1.27 1.27 0 0 0 .356 -.886c0 -.332 -.128 -.65 -.356 -.886a1.203 1.203 0 0 0 -.862 -.368h-.826a1.2 1.2 0 0 1 -.861 -.367a1.27 1.27 0 0 1 -.356 -.886c0 -.332 .128 -.651 .356 -.886a1.2 1.2 0 0 1 .861 -.368h.413c.816 0 1.178 .133 1.515 .423"},null),e(" ")])}},MF={name:"BrandSassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10.523c2.46 -.826 4 -.826 4 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193"},null),e(" ")])}},xF={name:"BrandSentryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sentry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a9 9 0 0 1 5.62 8.341h4c.663 0 2.337 0 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824"},null),e(" ")])}},zF={name:"BrandSharikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sharik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.281 16.606a8.968 8.968 0 0 1 1.363 -10.977a9.033 9.033 0 0 1 11.011 -1.346c-1.584 4.692 -2.415 6.96 -4.655 8.717c-1.584 1.242 -3.836 2.24 -7.719 3.606zm16.335 -7.306c2.113 7.59 -4.892 13.361 -11.302 11.264c1.931 -3.1 3.235 -4.606 4.686 -6.065c1.705 -1.715 3.591 -3.23 6.616 -5.199z"},null),e(" ")])}},IF={name:"BrandShazamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shazam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3"},null),e(" "),t("path",{d:"M14 12l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},yF={name:"BrandShopeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shopee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l.867 12.143a2 2 0 0 0 2 1.857h10.276a2 2 0 0 0 2 -1.857l.867 -12.143h-16z"},null),e(" "),t("path",{d:"M8.5 7c0 -1.653 1.5 -4 3.5 -4s3.5 2.347 3.5 4"},null),e(" "),t("path",{d:"M9.5 17c.413 .462 1 1 2.5 1s2.5 -.897 2.5 -2s-1 -1.5 -2.5 -2s-2 -1.47 -2 -2c0 -1.104 1 -2 2 -2s1.5 0 2.5 1"},null),e(" ")])}},CF={name:"BrandSketchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sketch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.262 10.878l8 8.789c.4 .44 1.091 .44 1.491 0l8 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z"},null),e(" ")])}},SF={name:"BrandSkypeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-skype",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1 -5.953 5.953a9 9 0 0 1 -11.253 -11.253a4.5 4.5 0 0 1 5.953 -5.954a8.987 8.987 0 0 1 2.65 -.396z"},null),e(" "),t("path",{d:"M8 14.5c.5 2 2.358 2.5 4 2.5c2.905 0 4 -1.187 4 -2.5c0 -1.503 -1.927 -2.5 -4 -2.5s-4 -1 -4 -2.5c0 -1.313 1.095 -2.5 4 -2.5c1.642 0 3.5 .5 4 2.5"},null),e(" ")])}},$F={name:"BrandSlackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-slack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6"},null),e(" "),t("path",{d:"M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6"},null),e(" "),t("path",{d:"M12 12h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6"},null),e(" ")])}},AF={name:"BrandSnapchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118"},null),e(" ")])}},BF={name:"BrandSnapseedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapseed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.152 3.115a.46 .46 0 0 0 -.609 0c-2.943 2.58 -4.529 5.441 -4.543 8.378c0 2.928 1.586 5.803 4.543 8.392a.46 .46 0 0 0 .61 0c2.957 -2.589 4.547 -5.464 4.547 -8.392c0 -2.928 -1.6 -5.799 -4.548 -8.378z"},null),e(" "),t("path",{d:"M8 20l12.09 -.011c.503 0 .91 -.434 .91 -.969v-6.063c0 -.535 -.407 -.968 -.91 -.968h-7.382"},null),e(" ")])}},HF={name:"BrandSnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21v-5.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 21v-5.5l-4.5 2.5"},null),e(" "),t("path",{d:"M3.5 14.5l4.5 -2.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M20.5 9.5l-4.5 2.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 3v5.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M14 3v5.5l4.5 -2.5"},null),e(" "),t("path",{d:"M12 11l1 1l-1 1l-1 -1z"},null),e(" ")])}},NF={name:"BrandSocketIoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-socket-io",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 11h1l3 -4z"},null),e(" "),t("path",{d:"M12 13h1l-4 4z"},null),e(" ")])}},jF={name:"BrandSolidjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-solidjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17.5c4.667 3 8 4.5 10 4.5c2.5 0 4 -1.5 4 -3.5s-1.5 -3.5 -4 -3.5c-2 0 -5.333 .833 -10 2.5z"},null),e(" "),t("path",{d:"M5 13.5c4.667 -1.667 8 -2.5 10 -2.5c2.5 0 4 1.5 4 3.5c0 .738 -.204 1.408 -.588 1.96l-2.883 3.825"},null),e(" "),t("path",{d:"M22 6.5c-4 -3 -8 -4.5 -10 -4.5c-2.04 0 -2.618 .463 -3.419 1.545"},null),e(" "),t("path",{d:"M2 17.5l3 -4"},null),e(" "),t("path",{d:"M22 6.5l-3 4"},null),e(" "),t("path",{d:"M8.581 3.545l-2.953 3.711"},null),e(" "),t("path",{d:"M7.416 12.662c-1.51 -.476 -2.416 -1.479 -2.416 -3.162c0 -2.5 1.5 -3.5 4 -3.5c1.688 0 5.087 1.068 8.198 3.204a114.76 114.76 0 0 1 1.802 1.296l-2.302 .785"},null),e(" ")])}},PF={name:"BrandSoundcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-soundcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4z"},null),e(" "),t("path",{d:"M9 8l0 9"},null),e(" "),t("path",{d:"M6 17l0 -7"},null),e(" "),t("path",{d:"M3 16l0 -2"},null),e(" ")])}},LF={name:"BrandSpaceheyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spacehey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 20h6v-6a3 3 0 0 0 -6 0v6z"},null),e(" "),t("path",{d:"M11 8v2.5a3.5 3.5 0 0 1 -3.5 3.5h-.5a3 3 0 0 1 0 -6h4z"},null),e(" ")])}},DF={name:"BrandSpeedtestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-speedtest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 19.364a9 9 0 1 1 12.728 0"},null),e(" "),t("path",{d:"M16 9l-4 4"},null),e(" ")])}},OF={name:"BrandSpotifyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spotify",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527"},null),e(" "),t("path",{d:"M9 15c1.5 -1 4 -1 5 .5"},null),e(" "),t("path",{d:"M7 9c2 -1 6 -2 10 .5"},null),e(" ")])}},FF={name:"BrandStackoverflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackoverflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M8.322 12.582l7.956 .836"},null),e(" "),t("path",{d:"M8.787 9.168l7.826 1.664"},null),e(" "),t("path",{d:"M10.096 5.764l7.608 2.472"},null),e(" ")])}},RF={name:"BrandStackshareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackshare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h3l3.5 6h3.5"},null),e(" "),t("path",{d:"M17 6h-3.5l-3.5 6"},null),e(" ")])}},TF={name:"BrandSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:"1",fill:"currentColor"},null),e(" ")])}},EF={name:"BrandStorjIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storj",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21l-8 -4v-10l8 -4l8 4v10z"},null),e(" "),t("path",{d:"M9.1 15a2.1 2.1 0 0 1 -.648 -4.098c.282 -1.648 1.319 -2.902 3.048 -2.902c1.694 0 2.906 1.203 3.23 2.8h.17a2.1 2.1 0 0 1 .202 4.19l-.202 .01h-5.8z"},null),e(" "),t("path",{d:"M4 7l4.323 2.702"},null),e(" "),t("path",{d:"M16.413 14.758l3.587 2.242"},null),e(" "),t("path",{d:"M4 17l3.529 -2.206"},null),e(" "),t("path",{d:"M14.609 10.37l5.391 -3.37"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" ")])}},VF={name:"BrandStorybookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storybook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l.5 16.5l13.5 .5v-18z"},null),e(" "),t("path",{d:"M9 15c.6 1.5 1.639 2 3.283 2h-.283c1.8 0 3 -.974 3 -2.435c0 -1.194 -.831 -1.799 -2.147 -2.333l-1.975 -.802c-1.15 -.467 -1.878 -1.422 -1.878 -2.467c0 -.97 .899 -1.786 2.087 -1.893l.613 -.055c1.528 -.138 3 .762 3.3 1.985"},null),e(" "),t("path",{d:"M16 3.5v1"},null),e(" ")])}},_F={name:"BrandStorytelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storytel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.103 22c2.292 -2.933 16.825 -2.43 16.825 -11.538c0 -6.298 -4.974 -8.462 -8.451 -8.462c-3.477 0 -9.477 3.036 -9.477 11.241c0 6.374 1.103 8.759 1.103 8.759z"},null),e(" ")])}},WF={name:"BrandStravaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-strava",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13l-5 -10l-5 10m6 0l4 8l4 -8"},null),e(" ")])}},XF={name:"BrandStripeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stripe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z"},null),e(" ")])}},qF={name:"BrandSublimeTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sublime-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 17l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 11.5l-14 -4.5"},null),e(" "),t("path",{d:"M5 12.5l14 4.5"},null),e(" ")])}},YF={name:"BrandSugarizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sugarizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.277 16l3.252 -3.252a1.61 1.61 0 0 0 -2.277 -2.276l-3.252 3.251l-3.252 -3.251a1.61 1.61 0 0 0 -2.276 2.276l3.251 3.252l-3.251 3.252a1.61 1.61 0 1 0 2.276 2.277l3.252 -3.252l3.252 3.252a1.61 1.61 0 1 0 2.277 -2.277l-3.252 -3.252z"},null),e(" "),t("path",{d:"M12 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},UF={name:"BrandSupabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supabase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h8v7l8 -11h-8v-7z"},null),e(" ")])}},GF={name:"BrandSuperhumanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-superhuman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 3l-8 7l-8 -7l4 -3"},null),e(" "),t("path",{d:"M12 3l-8 6l8 6l8 -6z"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},ZF={name:"BrandSupernovaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supernova",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15h.5c3.038 0 5.5 -1.343 5.5 -3s-2.462 -3 -5.5 -3c-1.836 0 -3.462 .49 -4.46 1.245"},null),e(" "),t("path",{d:"M9 9h-.5c-3.038 0 -5.5 1.343 -5.5 3s2.462 3 5.5 3c1.844 0 3.476 -.495 4.474 -1.255"},null),e(" "),t("path",{d:"M15 9v-.5c0 -3.038 -1.343 -5.5 -3 -5.5s-3 2.462 -3 5.5c0 1.833 .49 3.457 1.241 4.456"},null),e(" "),t("path",{d:"M9 15v.5c0 3.038 1.343 5.5 3 5.5s3 -2.462 3 -5.5c0 -1.842 -.494 -3.472 -1.252 -4.47"},null),e(" ")])}},KF={name:"BrandSurfsharkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-surfshark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155z"},null),e(" "),t("path",{d:"M8 16h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452"},null),e(" ")])}},QF={name:"BrandSvelteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-svelte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8l-5 3l.821 -.495c1.86 -1.15 4.412 -.49 5.574 1.352a3.91 3.91 0 0 1 -1.264 5.42l-5.053 3.126c-1.86 1.151 -4.312 .591 -5.474 -1.251a3.91 3.91 0 0 1 1.263 -5.42l.26 -.16"},null),e(" "),t("path",{d:"M8 17l5 -3l-.822 .496c-1.86 1.151 -4.411 .491 -5.574 -1.351a3.91 3.91 0 0 1 1.264 -5.42l5.054 -3.127c1.86 -1.15 4.311 -.59 5.474 1.252a3.91 3.91 0 0 1 -1.264 5.42l-.26 .16"},null),e(" ")])}},JF={name:"BrandSwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-swift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.547 15.828c1.33 -4.126 -1.384 -9.521 -6.047 -12.828c-.135 -.096 2.39 6.704 1.308 9.124c-2.153 -1.454 -4.756 -3.494 -7.808 -6.124l-.5 2l-3.5 -1c4.36 4.748 7.213 7.695 8.56 8.841c-4.658 2.089 -10.65 -.978 -10.56 -.841c1.016 1.545 6 6 11 6c2 0 3.788 -.502 4.742 -1.389c.005 -.005 .432 -.446 1.378 -.17c.504 .148 1.463 .667 2.88 1.559v-1.507c0 -1.377 -.515 -2.67 -1.453 -3.665z"},null),e(" ")])}},tR={name:"BrandSymfonyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-symfony",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13c.458 .667 1.125 1 2 1c1.313 0 2 -.875 2 -1.5c0 -1.5 -2 -1 -2 -2c0 -.625 .516 -1.5 1.5 -1.5c2.5 0 1.563 2 5.5 2c.667 0 1 -.333 1 -1"},null),e(" "),t("path",{d:"M9 17c-.095 .667 .238 1 1 1c1.714 0 2.714 -2 3 -6c.286 -4 1.571 -6 3 -6c.571 0 .905 .333 1 1"},null),e(" "),t("path",{d:"M22 12c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10a10 10 0 0 1 10 10z"},null),e(" ")])}},eR={name:"BrandTablerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tabler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},nR={name:"BrandTailwindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tailwind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 2 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z"},null),e(" ")])}},lR={name:"BrandTaobaoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-taobao",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c.968 .555 1.335 1.104 2 2"},null),e(" "),t("path",{d:"M2 10c5.007 3.674 2.85 6.544 0 10"},null),e(" "),t("path",{d:"M10 4c-.137 4.137 -2.258 5.286 -3.709 6.684"},null),e(" "),t("path",{d:"M10 6c2.194 -.8 3.736 -.852 6.056 -.993c4.206 -.158 5.523 2.264 5.803 5.153c.428 4.396 -.077 7.186 -2.117 9.298c-1.188 1.23 -3.238 2.62 -7.207 .259"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 10v6.493"},null),e(" "),t("path",{d:"M8 13h10"},null),e(" "),t("path",{d:"M16 15.512l.853 1.72"},null),e(" "),t("path",{d:"M16.5 17c-1.145 .361 -7 3 -8.5 -.5"},null),e(" "),t("path",{d:"M11.765 8.539l-1.765 2.461"},null),e(" ")])}},rR={name:"BrandTedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 8h4"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M13 8h-4v8h4"},null),e(" "),t("path",{d:"M9 12h2.5"},null),e(" "),t("path",{d:"M16 8v8h2a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3h-2z"},null),e(" ")])}},oR={name:"BrandTelegramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-telegram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"},null),e(" ")])}},sR={name:"BrandTerraformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-terraform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15.5l-11.476 -6.216a1 1 0 0 1 -.524 -.88v-4.054a1.35 1.35 0 0 1 2.03 -1.166l9.97 5.816v10.65a1.35 1.35 0 0 1 -2.03 1.166l-3.474 -2.027a1 1 0 0 1 -.496 -.863v-11.926"},null),e(" "),t("path",{d:"M15 15.5l5.504 -3.21a1 1 0 0 0 .496 -.864v-3.576a1.35 1.35 0 0 0 -2.03 -1.166l-3.97 2.316"},null),e(" ")])}},aR={name:"BrandTetherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tether",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.08 20.188c-1.15 1.083 -3.02 1.083 -4.17 0l-6.93 -6.548c-.96 -.906 -1.27 -2.624 -.69 -3.831l2.4 -5.018c.47 -.991 1.72 -1.791 2.78 -1.791h9.06c1.06 0 2.31 .802 2.78 1.79l2.4 5.019c.58 1.207 .26 2.925 -.69 3.83c-3.453 3.293 -3.466 3.279 -6.94 6.549z"},null),e(" "),t("path",{d:"M12 15v-7"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" ")])}},iR={name:"BrandThreejsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-threejs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22l-5 -19l19 5.5z"},null),e(" "),t("path",{d:"M12.573 17.58l-6.152 -1.576l8.796 -9.466l1.914 6.64"},null),e(" "),t("path",{d:"M12.573 17.58l-1.573 -6.58l6.13 2.179"},null),e(" "),t("path",{d:"M9.527 4.893l1.473 6.107l-6.31 -1.564z"},null),e(" ")])}},hR={name:"BrandTidalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tidal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.333 6l3.334 3.25l3.333 -3.25l3.333 3.25l3.334 -3.25l3.333 3.25l-3.333 3.25l-3.334 -3.25l-3.333 3.25l3.333 3.25l-3.333 3.25l-3.333 -3.25l3.333 -3.25l-3.333 -3.25l-3.334 3.25l-3.333 -3.25z"},null),e(" ")])}},dR={name:"BrandTiktoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tikto-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.083 2h-4.083a1 1 0 0 0 -1 1v11.5a1.5 1.5 0 1 1 -2.519 -1.1l.12 -.1a1 1 0 0 0 .399 -.8v-4.326a1 1 0 0 0 -1.23 -.974a7.5 7.5 0 0 0 1.73 14.8l.243 -.005a7.5 7.5 0 0 0 7.257 -7.495v-2.7l.311 .153c1.122 .53 2.333 .868 3.59 .993a1 1 0 0 0 1.099 -.996v-4.033a1 1 0 0 0 -.834 -.986a5.005 5.005 0 0 1 -4.097 -4.096a1 1 0 0 0 -.986 -.835z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cR={name:"BrandTiktokIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tiktok",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7.917v4.034a9.948 9.948 0 0 1 -5 -1.951v4.5a6.5 6.5 0 1 1 -8 -6.326v4.326a2.5 2.5 0 1 0 4 2v-11.5h4.083a6.005 6.005 0 0 0 4.917 4.917z"},null),e(" ")])}},uR={name:"BrandTinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.918 8.174c2.56 4.982 .501 11.656 -5.38 12.626c-7.702 1.687 -12.84 -7.716 -7.054 -13.229c.309 -.305 1.161 -1.095 1.516 -1.349c0 .528 .27 3.475 1 3.167c3 0 4 -4.222 3.587 -7.389c2.7 1.411 4.987 3.376 6.331 6.174z"},null),e(" ")])}},pR={name:"BrandTopbuzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-topbuzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.417 8.655a.524 .524 0 0 1 -.405 -.622l.986 -4.617a.524 .524 0 0 1 .626 -.404l14.958 3.162c.285 .06 .467 .339 .406 .622l-.987 4.618a.524 .524 0 0 1 -.625 .404l-4.345 -.92c-.198 -.04 -.315 .024 -.353 .197l-2.028 9.49a.527 .527 0 0 1 -.625 .404l-4.642 -.982a.527 .527 0 0 1 -.406 -.622l2.028 -9.493c.037 -.17 -.031 -.274 -.204 -.31l-4.384 -.927z"},null),e(" ")])}},gR={name:"BrandTorchainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-torchain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.588 15.537l-3.553 -3.537l-7.742 8.18c-.791 .85 .153 2.18 1.238 1.73l9.616 -4.096a1.398 1.398 0 0 0 .44 -2.277z"},null),e(" "),t("path",{d:"M8.412 8.464l3.553 3.536l7.742 -8.18c.791 -.85 -.153 -2.18 -1.238 -1.73l-9.616 4.098a1.398 1.398 0 0 0 -.44 2.277z"},null),e(" ")])}},wR={name:"BrandToyotaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-toyota",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 7 0 1 0 20 0a10 7 0 1 0 -20 0"},null),e(" "),t("path",{d:"M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z"},null),e(" "),t("path",{d:"M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806"},null),e(" ")])}},vR={name:"BrandTrelloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-trello",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3v10h-3z"},null),e(" "),t("path",{d:"M14 7h3v6h-3z"},null),e(" ")])}},fR={name:"BrandTripadvisorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tripadvisor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z"},null),e(" "),t("path",{d:"M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z"},null),e(" "),t("path",{d:"M10.5 15.5l1.5 2l1.5 -2"},null),e(" "),t("path",{d:"M9 6.75c2 -.667 4 -.667 6 0"},null),e(" ")])}},mR={name:"BrandTumblrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tumblr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4"},null),e(" ")])}},kR={name:"BrandTwilioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twilio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M9 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},bR={name:"BrandTwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M16 8l0 4"},null),e(" "),t("path",{d:"M12 8l0 4"},null),e(" ")])}},MR={name:"BrandTwitterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.058 3.41c-1.807 .767 -2.995 2.453 -3.056 4.38l-.002 .182l-.243 -.023c-2.392 -.269 -4.498 -1.512 -5.944 -3.531a1 1 0 0 0 -1.685 .092l-.097 .186l-.049 .099c-.719 1.485 -1.19 3.29 -1.017 5.203l.03 .273c.283 2.263 1.5 4.215 3.779 5.679l.173 .107l-.081 .043c-1.315 .663 -2.518 .952 -3.827 .9c-1.056 -.04 -1.446 1.372 -.518 1.878c3.598 1.961 7.461 2.566 10.792 1.6c4.06 -1.18 7.152 -4.223 8.335 -8.433l.127 -.495c.238 -.993 .372 -2.006 .401 -3.024l.003 -.332l.393 -.779l.44 -.862l.214 -.434l.118 -.247c.265 -.565 .456 -1.033 .574 -1.43l.014 -.056l.008 -.018c.22 -.593 -.166 -1.358 -.941 -1.358l-.122 .007a.997 .997 0 0 0 -.231 .057l-.086 .038a7.46 7.46 0 0 1 -.88 .36l-.356 .115l-.271 .08l-.772 .214c-1.336 -1.118 -3.144 -1.254 -5.012 -.554l-.211 .084z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xR={name:"BrandTwitterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z"},null),e(" ")])}},zR={name:"BrandTypescriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-typescript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17.5c.32 .32 .754 .5 1.207 .5h.543c.69 0 1.25 -.56 1.25 -1.25v-.25a1.5 1.5 0 0 0 -1.5 -1.5a1.5 1.5 0 0 1 -1.5 -1.5v-.25c0 -.69 .56 -1.25 1.25 -1.25h.543c.453 0 .887 .18 1.207 .5"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" "),t("path",{d:"M11 12v6"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},IR={name:"BrandUberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-uber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},yR={name:"BrandUbuntuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ubuntu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.723 7.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m4 0a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CR={name:"BrandUnityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l6 4v7"},null),e(" "),t("path",{d:"M18 17l-6 4l-6 -4"},null),e(" "),t("path",{d:"M4 14v-7l6 -4"},null),e(" "),t("path",{d:"M4 7l8 5v9"},null),e(" "),t("path",{d:"M20 7l-8 5"},null),e(" ")])}},SR={name:"BrandUnsplashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unsplash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z"},null),e(" ")])}},$R={name:"BrandUpworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-upwork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v5a3 3 0 0 0 6 0v-5h1l4 6c.824 1.319 1.945 2 3.5 2a3.5 3.5 0 0 0 0 -7c-2.027 0 -3.137 1 -3.5 3c-.242 1.33 -.908 4 -2 8"},null),e(" ")])}},AR={name:"BrandValorantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-valorant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 14h4.5l2 -2v-6z"},null),e(" "),t("path",{d:"M9 19h5l-11 -13v6z"},null),e(" ")])}},BR={name:"BrandVercelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vercel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h18l-9 -15z"},null),e(" ")])}},HR={name:"BrandVimeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vimeo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8.5l1 1s1.5 -1.102 2 -.5c.509 .609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5c2 -1.5 7.5 -5.5 8.5 -11.5c.444 -2.661 -1 -4 -2.5 -4c-2 0 -4.047 1.202 -4.5 4c2.05 -1.254 2.551 1 1.5 3c-1.052 2 -2 3 -2.5 3c-.49 0 -.924 -1.165 -1.5 -3.5c-.59 -2.42 -.5 -6.5 -3 -6.5s-5.5 4.5 -5.5 4.5z"},null),e(" ")])}},NR={name:"BrandVintedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vinted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.028 6c0 7.695 -.292 11.728 0 12c2.046 -5 4.246 -12.642 5.252 -14.099c.343 -.497 .768 -.93 1.257 -1.277c.603 -.39 1.292 -.76 1.463 -.575c-.07 2.319 -4.023 15.822 -4.209 16.314a6.135 6.135 0 0 1 -3.465 3.386c-3.213 .78 -3.429 -.446 -3.836 -1.134c-.95 -2.103 -1.682 -14.26 -1.445 -15.615c.05 -.523 .143 -1.851 2.491 -2c2.359 -.354 2.547 1.404 2.492 3z"},null),e(" ")])}},jR={name:"BrandVisaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 15l-1 -6l-2.5 6"},null),e(" "),t("path",{d:"M9 15l1 -6"},null),e(" "),t("path",{d:"M3 9h1v6h.5l2.5 -6"},null),e(" "),t("path",{d:"M16 9.5a.5 .5 0 0 0 -.5 -.5h-.75c-.721 0 -1.337 .521 -1.455 1.233l-.09 .534a1.059 1.059 0 0 0 1.045 1.233a1.059 1.059 0 0 1 1.045 1.233l-.09 .534a1.476 1.476 0 0 1 -1.455 1.233h-.75a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M18 14h2.7"},null),e(" ")])}},PR={name:"BrandVisualStudioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visual-studio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"},null),e(" ")])}},LR={name:"BrandViteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1z"},null),e(" "),t("path",{d:"M15 6.5l7 -1.5l-10 17l-10 -17l7.741 1.5"},null),e(" ")])}},DR={name:"BrandVivaldiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vivaldi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.648 6.808c-2.468 4.28 -4.937 8.56 -7.408 12.836c-.397 .777 -1.366 1.301 -2.24 1.356c-.962 .102 -1.7 -.402 -2.154 -1.254c-1.563 -2.684 -3.106 -5.374 -4.66 -8.064c-.943 -1.633 -1.891 -3.266 -2.83 -4.905a2.47 2.47 0 0 1 -.06 -2.45a2.493 2.493 0 0 1 2.085 -1.307c.951 -.065 1.85 .438 2.287 1.281c.697 1.19 2.043 3.83 2.55 4.682a3.919 3.919 0 0 0 3.282 2.017c2.126 .133 3.974 -.95 4.21 -3.058c0 -.164 .228 -3.178 .846 -3.962c.619 -.784 1.64 -1.155 2.606 -.893a2.484 2.484 0 0 1 1.814 2.062c.08 .581 -.041 1.171 -.343 1.674"},null),e(" ")])}},OR={name:"BrandVkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19h-4a8 8 0 0 1 -8 -8v-5h4v5a4 4 0 0 0 4 4h0v-9h4v4.5l.03 0a4.531 4.531 0 0 0 3.97 -4.496h4l-.342 1.711a6.858 6.858 0 0 1 -3.658 4.789h0a5.34 5.34 0 0 1 3.566 4.111l.434 2.389h0h-4a4.531 4.531 0 0 0 -3.97 -4.496v4.5z"},null),e(" ")])}},FR={name:"BrandVlcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vlc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.79 4.337l3.101 9.305c.33 .985 -.113 2.07 -1.02 2.499a9.148 9.148 0 0 1 -7.742 0c-.907 -.428 -1.35 -1.514 -1.02 -2.499l3.1 -9.305c.267 -.8 .985 -1.337 1.791 -1.337c.807 0 1.525 .537 1.79 1.337z"},null),e(" "),t("path",{d:"M7 14h-1.429a2 2 0 0 0 -1.923 1.45l-.571 2a2 2 0 0 0 1.923 2.55h13.998a2 2 0 0 0 1.923 -2.55l-.572 -2a2 2 0 0 0 -1.923 -1.45h-1.426"},null),e(" ")])}},RR={name:"BrandVolkswagenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-volkswagen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M5 7l4.5 11l1.5 -5h2l1.5 5l4.5 -11"},null),e(" "),t("path",{d:"M9 4l2 6h2l2 -6"},null),e(" ")])}},TR={name:"BrandVscoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vsco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -10 0a5 5 0 0 0 10 0z"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M18.364 18.364l-2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 18.364l2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" ")])}},ER={name:"BrandVscodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vscode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3v18l4 -2.5v-13z"},null),e(" "),t("path",{d:"M9.165 13.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141"},null),e(" "),t("path",{d:"M16 16.5l-11 -10l-2 1l13 13.5"},null),e(" ")])}},VR={name:"BrandVueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 4l-4.5 8l-4.5 -8"},null),e(" "),t("path",{d:"M3 4l9 16l9 -16"},null),e(" ")])}},_R={name:"BrandWalmartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-walmart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8.04v-5.04"},null),e(" "),t("path",{d:"M15.5 10l4.5 -2.5"},null),e(" "),t("path",{d:"M15.5 14l4.5 2.5"},null),e(" "),t("path",{d:"M12 15.96v5.04"},null),e(" "),t("path",{d:"M8.5 14l-4.5 2.5"},null),e(" "),t("path",{d:"M8.5 10l-4.5 -2.505"},null),e(" ")])}},WR={name:"BrandWazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-waze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.66 17.52a7 7 0 0 1 -3.66 -4.52c2 0 3 -1 3 -2.51c0 -3.92 2.25 -7.49 7.38 -7.49c4.62 0 7.62 3.51 7.62 8a8.08 8.08 0 0 1 -3.39 6.62"},null),e(" "),t("path",{d:"M10 18.69a17.29 17.29 0 0 0 3.33 .3h.54"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 9h.01"},null),e(" "),t("path",{d:"M11 9h.01"},null),e(" ")])}},XR={name:"BrandWebflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-webflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 0 -4.253 2.055 -5 4z"},null),e(" ")])}},qR={name:"BrandWechatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wechat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 10c3.038 0 5.5 2.015 5.5 4.5c0 1.397 -.778 2.645 -2 3.47l0 2.03l-1.964 -1.178a6.649 6.649 0 0 1 -1.536 .178c-3.038 0 -5.5 -2.015 -5.5 -4.5s2.462 -4.5 5.5 -4.5z"},null),e(" "),t("path",{d:"M11.197 15.698c-.69 .196 -1.43 .302 -2.197 .302a8.008 8.008 0 0 1 -2.612 -.432l-2.388 1.432v-2.801c-1.237 -1.082 -2 -2.564 -2 -4.199c0 -3.314 3.134 -6 7 -6c3.782 0 6.863 2.57 7 5.785l0 .233"},null),e(" "),t("path",{d:"M10 8h.01"},null),e(" "),t("path",{d:"M7 8h.01"},null),e(" "),t("path",{d:"M15 14h.01"},null),e(" "),t("path",{d:"M18 14h.01"},null),e(" ")])}},YR={name:"BrandWeiboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-weibo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.127c0 3.073 -3.502 5.873 -8 5.873c-4.126 0 -8 -2.224 -8 -5.565c0 -1.78 .984 -3.737 2.7 -5.567c2.362 -2.51 5.193 -3.687 6.551 -2.238c.415 .44 .752 1.39 .749 2.062c2 -1.615 4.308 .387 3.5 2.693c1.26 .557 2.5 .538 2.5 2.742z"},null),e(" "),t("path",{d:"M15 4h1a5 5 0 0 1 5 5v1"},null),e(" ")])}},UR={name:"BrandWhatsappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-whatsapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9"},null),e(" "),t("path",{d:"M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},GR={name:"BrandWikipediaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wikipedia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4.984h2"},null),e(" "),t("path",{d:"M8 4.984h2.5"},null),e(" "),t("path",{d:"M14.5 4.984h2.5"},null),e(" "),t("path",{d:"M22 4.984h-2"},null),e(" "),t("path",{d:"M4 4.984l5.455 14.516l6.545 -14.516"},null),e(" "),t("path",{d:"M9 4.984l6 14.516l6 -14.516"},null),e(" ")])}},ZR={name:"BrandWindowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},KR={name:"BrandWindyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c0 5.5 -.33 16 4 16s7.546 -11.27 8 -13"},null),e(" "),t("path",{d:"M3 4c.253 5.44 1.449 16 5.894 16c4.444 0 8.42 -10.036 9.106 -14"},null),e(" ")])}},QR={name:"BrandWishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6l5.981 2.392l-.639 6.037c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.381 1.057a4.328 4.328 0 0 0 4.132 -3.57c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.38 1.056a4.328 4.328 0 0 0 4.132 -3.57l.333 -4.633"},null),e(" "),t("path",{d:"M14.504 14.429l.334 -3"},null),e(" ")])}},JR={name:"BrandWixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l1.5 6l1.379 -5.515a.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6"},null),e(" "),t("path",{d:"M13 11.5v3.5"},null),e(" "),t("path",{d:"M16 9l5 6"},null),e(" "),t("path",{d:"M21 9l-5 6"},null),e(" "),t("path",{d:"M13 9h.01"},null),e(" ")])}},tT={name:"BrandWordpressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wordpress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9h3"},null),e(" "),t("path",{d:"M4 9h2.5"},null),e(" "),t("path",{d:"M11 9l3 11l4 -9"},null),e(" "),t("path",{d:"M5.5 9l3.5 11l3 -7"},null),e(" "),t("path",{d:"M18 11c.177 -.528 1 -1.364 1 -2.5c0 -1.78 -.776 -2.5 -1.875 -2.5c-.898 0 -1.125 .812 -1.125 1.429c0 1.83 2 2.058 2 3.571z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},eT={name:"BrandXamarinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xamarin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.958 21h-7.917a2 2 0 0 1 -1.732 -1l-4.041 -7a2 2 0 0 1 0 -2l4.041 -7a2 2 0 0 1 1.732 -1h7.917a2 2 0 0 1 1.732 1l4.042 7a2 2 0 0 1 0 2l-4.041 7a2 2 0 0 1 -1.733 1z"},null),e(" "),t("path",{d:"M15 16l-6 -8"},null),e(" "),t("path",{d:"M9 16l6 -8"},null),e(" ")])}},nT={name:"BrandXboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6.5 5c7.72 2.266 10.037 7.597 12.5 12.5"},null),e(" "),t("path",{d:"M17.5 5c-7.72 2.266 -10.037 7.597 -12.5 12.5"},null),e(" ")])}},lT={name:"BrandXingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21l-4 -7l6.5 -11"},null),e(" "),t("path",{d:"M7 7l2 3.5l-3 4.5"},null),e(" ")])}},rT={name:"BrandYahooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yahoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l5 0"},null),e(" "),t("path",{d:"M7 18l7 0"},null),e(" "),t("path",{d:"M4.5 6l5.5 7v5"},null),e(" "),t("path",{d:"M10 13l6 -5"},null),e(" "),t("path",{d:"M12.5 8l5 0"},null),e(" "),t("path",{d:"M20 11l0 4"},null),e(" "),t("path",{d:"M20 18l0 .01"},null),e(" ")])}},oT={name:"BrandYatseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yatse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l5 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3 1.77v-5.565l3 -1.771z"},null),e(" ")])}},sT={name:"BrandYcombinatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ycombinator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7l4 6l4 -6"},null),e(" "),t("path",{d:"M12 17l0 -4"},null),e(" ")])}},aT={name:"BrandYoutubeKidsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube-kids",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.782 17.03l-3.413 .235l-.023 0c-1.117 .09 -2.214 .335 -3.257 .725l-2.197 .794a3.597 3.597 0 0 1 -2.876 -.189a3.342 3.342 0 0 1 -1.732 -2.211l-1.204 -5.293a3.21 3.21 0 0 1 .469 -2.503a3.468 3.468 0 0 1 2.177 -1.452l9.843 -2.06c1.87 -.392 3.716 .744 4.124 2.537l1.227 5.392a3.217 3.217 0 0 1 -.61 2.7a3.506 3.506 0 0 1 -2.528 1.323z"},null),e(" "),t("path",{d:"M10 10l.972 4l4.028 -3z"},null),e(" ")])}},iT={name:"BrandYoutubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M10 9l5 3l-5 3z"},null),e(" ")])}},hT={name:"BrandZalandoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zalando",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.531 21c-.65 0 -1 -.15 -1.196 -.27c-.266 -.157 -.753 -.563 -1.197 -1.747a20.583 20.583 0 0 1 -1.137 -6.983c.015 -2.745 .436 -5.07 1.137 -6.975c.444 -1.2 .93 -1.605 1.197 -1.763c.192 -.103 .545 -.262 1.195 -.262c.244 0 .532 .022 .871 .075a19.093 19.093 0 0 1 6.425 2.475h.007a19.572 19.572 0 0 1 5.287 4.508c.783 .99 .879 1.627 .879 1.942c0 .315 -.096 .953 -.879 1.943a19.571 19.571 0 0 1 -5.287 4.5h-.007a19.041 19.041 0 0 1 -6.425 2.474a5.01 5.01 0 0 1 -.871 .083z"},null),e(" ")])}},dT={name:"BrandZapierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zapier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M5.636 5.636l4.243 4.243"},null),e(" "),t("path",{d:"M18.364 18.364l-4.243 -4.243"},null),e(" "),t("path",{d:"M18.364 5.636l-4.243 4.243"},null),e(" "),t("path",{d:"M9.879 14.121l-4.243 4.243"},null),e(" ")])}},cT={name:"BrandZeitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zeit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-9 -16z"},null),e(" ")])}},uT={name:"BrandZhihuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zhihu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6h6v12h-2l-2 2l-1 -2h-1z"},null),e(" "),t("path",{d:"M4 12h6.5"},null),e(" "),t("path",{d:"M10.5 6h-5"},null),e(" "),t("path",{d:"M6 4c-.5 2.5 -1.5 3.5 -2.5 4.5"},null),e(" "),t("path",{d:"M8 6v7c0 4.5 -2 5.5 -4 7"},null),e(" "),t("path",{d:"M11 18l-3 -5"},null),e(" ")])}},pT={name:"BrandZoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zoom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.011 9.385v5.128l3.989 3.487v-12z"},null),e(" "),t("path",{d:"M3.887 6h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a.882 .882 0 0 1 .208 -.71a.841 .841 0 0 1 .67 -.287z"},null),e(" ")])}},gT={name:"BrandZulipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zulip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 3h11c1.325 0 2.5 1 2.5 2.5c0 2 -1.705 3.264 -2 3.5l-4.5 4l2 -5h-9a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17.5 21h-11c-1.325 0 -2.5 -1 -2.5 -2.5c0 -2 1.705 -3.264 2 -3.5l4.5 -4l-2 5h9a2.5 2.5 0 1 1 0 5z"},null),e(" ")])}},wT={name:"BrandZwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zwift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 4c-1.465 0 -2.5 1.101 -2.5 2.5s1.035 2.5 2.5 2.5h2.5l-4.637 7.19a2.434 2.434 0 0 0 -.011 2.538c.473 .787 1.35 1.272 2.3 1.272h10.848c1.465 0 2.5 -1.101 2.5 -2.5s-1.035 -2.5 -2.5 -2.5h-2.5l7 -11h-15.5z"},null),e(" ")])}},vT={name:"BreadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.415 18.414a2 2 0 0 1 -1.415 .586h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 .435 -4.795m3.565 -.441h8a3 3 0 0 1 2 5.235v4.765"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fT={name:"BreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5a3 3 0 0 1 2 5.235v6.765a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 1.824 -5.231l.176 0h10z"},null),e(" ")])}},mT={name:"BriefcaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.166 2.818a1.993 1.993 0 0 1 -.834 .182h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M8.185 4.158a2 2 0 0 1 1.815 -1.158h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 11.905 1.928m3.263 -.763a20 20 0 0 0 2.832 -1.165"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kT={name:"BriefcaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 18 0"},null),e(" ")])}},bT={name:"Brightness2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},MT={name:"BrightnessDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M19 12l0 .01"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" ")])}},xT={name:"BrightnessHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a3 3 0 0 0 0 6v-6z"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},zT={name:"BrightnessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12.5 8.5l4.15 -4.15"},null),e(" "),t("path",{d:"M12 14l1.025 -.983m2.065 -1.981l4.28 -4.106"},null),e(" "),t("path",{d:"M12 19.6l3.79 -3.79m2 -2l3.054 -3.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IT={name:"BrightnessUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 -2"},null),e(" "),t("path",{d:"M17 7l1.4 -1.4"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" "),t("path",{d:"M17 17l1.4 1.4"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M7 17l-1.4 1.4"},null),e(" "),t("path",{d:"M6 12l-2 0"},null),e(" "),t("path",{d:"M7 7l-1.4 -1.4"},null),e(" ")])}},yT={name:"BrightnessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 9l4.65 -4.65"},null),e(" "),t("path",{d:"M12 14.3l7.37 -7.37"},null),e(" "),t("path",{d:"M12 19.6l8.85 -8.85"},null),e(" ")])}},CT={name:"BroadcastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 0 0 -9.721 -14.717m-2.488 1.509a9 9 0 0 0 -.519 13.208"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 0 0 -3.536 -8.536m-3 1a5 5 0 0 0 -.535 7.536"},null),e(" "),t("path",{d:"M12 12a1 1 0 1 0 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ST={name:"BroadcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 1 0 -7.072 0"},null),e(" "),t("path",{d:"M12 13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},$T={name:"BrowserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M9.5 14.5l1.5 1.5l3 -3"},null),e(" ")])}},AT={name:"BrowserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v11m-.288 3.702a1 1 0 0 1 -.712 .298h-14a1 1 0 0 1 -1 -1v-14c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BT={name:"BrowserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},HT={name:"BrowserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 16l4 -4"},null),e(" "),t("path",{d:"M14 16l-4 -4"},null),e(" ")])}},NT={name:"BrowserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M8 4l0 4"},null),e(" ")])}},jT={name:"BrushOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17a4 4 0 1 1 4 4h-4v-4z"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PT={name:"BrushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a4 4 0 1 1 4 4h-4"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -12.8 10.2"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -10.2 12.8"},null),e(" "),t("path",{d:"M10.6 9a9 9 0 0 1 4.4 4.4"},null),e(" ")])}},LT={name:"BucketDropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" "),t("path",{d:"M13.737 9.737c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081z"},null),e(" "),t("path",{d:"M7.492 11.818c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208"},null),e(" ")])}},DT={name:"BucketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.029 5.036c-.655 .58 -1.029 1.25 -1.029 1.964c0 2.033 3.033 3.712 6.96 3.967m3.788 -.21c3.064 -.559 5.252 -2.029 5.252 -3.757c0 -2.21 -3.582 -4 -8 -4c-1.605 0 -3.1 .236 -4.352 .643"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.1 -.3 .252 -.812 .457 -1.535m.862 -3.146c.262 -.975 .735 -2.76 1.418 -5.354a7.45 7.45 0 0 0 .263 -1.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OT={name:"BucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-8 0a8 4 0 1 0 16 0a8 4 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.333 -1 1.246 -4.345 2.737 -10.035a7.45 7.45 0 0 0 .263 -1.965"},null),e(" ")])}},FT={name:"BugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 5.873a3 3 0 0 1 5.116 2.127v1"},null),e(" "),t("path",{d:"M13 9h3a6 6 0 0 1 1 3v1m-.298 3.705a5 5 0 0 1 -9.702 -1.705v-3a6 6 0 0 1 1 -3h1"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" "),t("path",{d:"M12 20v-6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RT={name:"BugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v-1a3 3 0 0 1 6 0v1"},null),e(" "),t("path",{d:"M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3"},null),e(" "),t("path",{d:"M3 13l4 0"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" "),t("path",{d:"M12 20l0 -6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M20 19l-3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" ")])}},TT={name:"BuildingArchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-arch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15"},null),e(" "),t("path",{d:"M9 21v-8a3 3 0 0 1 6 0v8"},null),e(" ")])}},ET={name:"BuildingBankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M5 6l7 -3l7 3"},null),e(" "),t("path",{d:"M4 10l0 11"},null),e(" "),t("path",{d:"M20 10l0 11"},null),e(" "),t("path",{d:"M8 14l0 3"},null),e(" "),t("path",{d:"M12 14l0 3"},null),e(" "),t("path",{d:"M16 14l0 3"},null),e(" ")])}},VT={name:"BuildingBridge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a4 4 0 0 0 -8 0v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2"},null),e(" ")])}},_T={name:"BuildingBridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M2 15l20 0"},null),e(" "),t("path",{d:"M3 8a7.5 7.5 0 0 0 3 -2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2"},null),e(" "),t("path",{d:"M12 10l0 5"},null),e(" ")])}},WT={name:"BuildingBroadcastTowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-broadcast-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.616 13.924a5 5 0 1 0 -9.23 0"},null),e(" "),t("path",{d:"M20.307 15.469a9 9 0 1 0 -16.615 0"},null),e(" "),t("path",{d:"M9 21l3 -9l3 9"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},XT={name:"BuildingCarouselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-carousel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M5 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 22l4 -10l4 10"},null),e(" ")])}},qT={name:"BuildingCastleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-castle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a3 3 0 0 0 -6 0v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14h4v3h3v-3h4v3h3v-3h4v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 11l18 0"},null),e(" ")])}},YT={name:"BuildingChurchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-church",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M10 21v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M10 5l4 0"},null),e(" "),t("path",{d:"M12 3l0 5"},null),e(" "),t("path",{d:"M6 21v-7m-2 2l8 -8l8 8m-2 -2v7"},null),e(" ")])}},UT={name:"BuildingCircusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-circus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 6.5c0 1 -5 4.5 -8 4.5"},null),e(" "),t("path",{d:"M12 6.5c0 1 5 4.5 8 4.5"},null),e(" "),t("path",{d:"M6 11c-.333 5.333 -1 8.667 -2 10h4c1 0 4 -4 4 -9v-1"},null),e(" "),t("path",{d:"M18 11c.333 5.333 1 8.667 2 10h-4c-1 0 -4 -4 -4 -9v-1"},null),e(" "),t("path",{d:"M12 7v-4l2 1h-2"},null),e(" ")])}},GT={name:"BuildingCommunityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-community",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l5 5v7h-5v-4m0 4h-5v-7l5 -5m1 1v-6a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v17h-8"},null),e(" "),t("path",{d:"M13 7l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M17 11l0 .01"},null),e(" "),t("path",{d:"M17 15l0 .01"},null),e(" ")])}},ZT={name:"BuildingCottageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-cottage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-11l2.5 -4.5l5.5 -2.5l5.5 2.5l2.5 4.5v11"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 21v-5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v5"},null),e(" ")])}},KT={name:"BuildingEstateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-estate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M19 21v-4"},null),e(" "),t("path",{d:"M19 17a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M14 21v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14"},null),e(" "),t("path",{d:"M9 17v4"},null),e(" "),t("path",{d:"M8 13h2"},null),e(" "),t("path",{d:"M8 9h2"},null),e(" ")])}},QT={name:"BuildingFactory2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-12l5 4v-4l5 4h4"},null),e(" "),t("path",{d:"M19 21v-8l-1.436 -9.574a.5 .5 0 0 0 -.495 -.426h-1.145a.5 .5 0 0 0 -.494 .418l-1.43 8.582"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 17h1"},null),e(" ")])}},JT={name:"BuildingFactoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21c1.147 -4.02 1.983 -8.027 2 -12h6c.017 3.973 .853 7.98 2 12"},null),e(" "),t("path",{d:"M12.5 13h4.5c.025 2.612 .894 5.296 2 8"},null),e(" "),t("path",{d:"M9 5a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1"},null),e(" "),t("path",{d:"M3 21l19 0"},null),e(" ")])}},tE={name:"BuildingFortressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-fortress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M7 7h0v.01"},null),e(" "),t("path",{d:"M7 10h0v.01"},null),e(" "),t("path",{d:"M7 13h0v.01"},null),e(" "),t("path",{d:"M17 7h0v.01"},null),e(" "),t("path",{d:"M17 10h0v.01"},null),e(" "),t("path",{d:"M17 13h0v.01"},null),e(" ")])}},eE={name:"BuildingHospitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-hospital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},nE={name:"BuildingLighthouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-lighthouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l2 3l2 15h-8l2 -15z"},null),e(" "),t("path",{d:"M8 9l8 0"},null),e(" "),t("path",{d:"M3 11l2 -2l-2 -2"},null),e(" "),t("path",{d:"M21 11l-2 -2l2 -2"},null),e(" ")])}},lE={name:"BuildingMonumentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-monument",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18l2 -13l2 -2l2 2l2 13"},null),e(" "),t("path",{d:"M5 21v-3h14v3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" ")])}},rE={name:"BuildingMosqueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-mosque",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-2a2 2 0 1 1 4 0v2h7"},null),e(" "),t("path",{d:"M4 21v-10"},null),e(" "),t("path",{d:"M20 21v-10"},null),e(" "),t("path",{d:"M4 16h3v-3h10v3h3"},null),e(" "),t("path",{d:"M17 13a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M21 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M5 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M12 2a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" ")])}},oE={name:"BuildingPavilionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-pavilion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-3a2 2 0 0 1 4 0v3h7"},null),e(" "),t("path",{d:"M6 21l0 -9"},null),e(" "),t("path",{d:"M18 21l0 -9"},null),e(" "),t("path",{d:"M6 12h12a3 3 0 0 0 3 -3a9 8 0 0 1 -9 -6a9 8 0 0 1 -9 6a3 3 0 0 0 3 3"},null),e(" ")])}},sE={name:"BuildingSkyscraperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-skyscraper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-14l8 -4v18"},null),e(" "),t("path",{d:"M19 21v-10l-6 -4"},null),e(" "),t("path",{d:"M9 9l0 .01"},null),e(" "),t("path",{d:"M9 12l0 .01"},null),e(" "),t("path",{d:"M9 15l0 .01"},null),e(" "),t("path",{d:"M9 18l0 .01"},null),e(" ")])}},aE={name:"BuildingStadiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-stadium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 12v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7"},null),e(" "),t("path",{d:"M15 6h4v-3h-4v7"},null),e(" "),t("path",{d:"M7 6h4v-3h-4v7"},null),e(" ")])}},iE={name:"BuildingStoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-store",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 7v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4"},null),e(" "),t("path",{d:"M5 21l0 -10.15"},null),e(" "),t("path",{d:"M19 21l0 -10.15"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" ")])}},hE={name:"BuildingTunnelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-tunnel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14a2 2 0 0 0 2 -2v-7a9 9 0 0 0 -18 0v7a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M8 21v-9a4 4 0 1 1 8 0v9"},null),e(" "),t("path",{d:"M3 17h4"},null),e(" "),t("path",{d:"M17 17h4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 9l3 -3l-3 3z"},null),e(" ")])}},dE={name:"BuildingWarehouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-warehouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-13l9 -4l9 4v13"},null),e(" "),t("path",{d:"M13 13h4v8h-10v-6h6"},null),e(" "),t("path",{d:"M13 21v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3"},null),e(" ")])}},cE={name:"BuildingWindTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-wind-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 11v-2.573c0 -.18 .013 -.358 .04 -.536l.716 -4.828c.064 -.597 .597 -1.063 1.244 -1.063s1.18 .466 1.244 1.063l.716 4.828c.027 .178 .04 .357 .04 .536v2.573"},null),e(" "),t("path",{d:"M13.01 9.28l2.235 1.276c.156 .09 .305 .19 .446 .3l3.836 2.911c.487 .352 .624 1.04 .3 1.596c-.325 .556 -1 .782 -1.548 .541l-4.555 -1.68a3.624 3.624 0 0 1 -.486 -.231l-2.235 -1.277"},null),e(" "),t("path",{d:"M13 12.716l-2.236 1.277a3.624 3.624 0 0 1 -.485 .23l-4.555 1.681c-.551 .241 -1.223 .015 -1.548 -.54c-.324 -.557 -.187 -1.245 .3 -1.597l3.836 -2.91a3.41 3.41 0 0 1 .446 -.3l2.235 -1.277"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M10 21l1 -7"},null),e(" "),t("path",{d:"M13 14l1 7"},null),e(" ")])}},uE={name:"BuildingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M9 8l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M9 16l1 0"},null),e(" "),t("path",{d:"M14 8l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M14 16l1 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" ")])}},pE={name:"BulbFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.893 4.893a1 1 0 0 1 1.32 -.083l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.693 4.893a1 1 0 0 1 1.497 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 18a1 1 0 0 1 1 1a3 3 0 0 1 -6 0a1 1 0 0 1 .883 -.993l.117 -.007h4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 6a6 6 0 0 1 3.6 10.8a1 1 0 0 1 -.471 .192l-.129 .008h-6a1 1 0 0 1 -.6 -.2a6 6 0 0 1 3.6 -10.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gE={name:"BulbOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M11.089 7.083a5 5 0 0 1 5.826 5.84m-1.378 2.611a5.012 5.012 0 0 1 -.537 .466a3.5 3.5 0 0 0 -1 3a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -1 -3a5 5 0 0 1 -.528 -7.544"},null),e(" "),t("path",{d:"M9.7 17h4.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wE={name:"BulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3"},null),e(" "),t("path",{d:"M9.7 17l4.6 0"},null),e(" ")])}},vE={name:"BulldozerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulldozer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M19 13v4a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M14 19h-10"},null),e(" "),t("path",{d:"M4 15h10"},null),e(" "),t("path",{d:"M9 11v-5h2a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M5 15v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M19 17h-3"},null),e(" ")])}},fE={name:"BusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16.18 16.172a2 2 0 0 0 2.652 2.648"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h2m4 0h8c2.761 0 5 3.134 5 7v5h-1m-5 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M2 10h8m4 0h3"},null),e(" "),t("path",{d:"M7 7v3"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mE={name:"BusStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 5h7c2.761 0 5 3.134 5 7v5h-2"},null),e(" "),t("path",{d:"M16 17h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M9.5 10h7.5"},null),e(" "),t("path",{d:"M12 5v5"},null),e(" "),t("path",{d:"M5 9v11"},null),e(" ")])}},kE={name:"BusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h14a5 7 0 0 1 5 7v5h-2m-4 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7l4.5 0"},null),e(" "),t("path",{d:"M2 10l15 0"},null),e(" "),t("path",{d:"M7 5l0 5"},null),e(" "),t("path",{d:"M12 5l0 5"},null),e(" ")])}},bE={name:"BusinessplanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-businessplan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0"},null),e(" "),t("path",{d:"M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M5 15v1m0 -8v1"},null),e(" ")])}},ME={name:"ButterflyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-butterfly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25z"},null),e(" "),t("path",{d:"M12 19v-10"},null),e(" "),t("path",{d:"M9 3l3 2l3 -2"},null),e(" ")])}},xE={name:"CactusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -.129 .872m-2.014 2a3 3 0 0 1 -.857 .124h-1"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-1a2 2 0 1 1 4 0v5m0 4v7"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zE={name:"CactusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -3 3h-1"},null),e(" "),t("path",{d:"M10 21v-16a2 2 0 1 1 4 0v16"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},IE={name:"CakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17v-5a3 3 0 0 0 -3 -3h-5m-4 0h-3a3 3 0 0 0 -3 3v8h17"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M10.172 6.188c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yE={name:"CakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},CE={name:"CalculatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-14c0 -.295 .064 -.575 .178 -.827m2.822 -1.173h11a2 2 0 0 1 2 2v11"},null),e(" "),t("path",{d:"M10 10h-1a1 1 0 0 1 -1 -1v-1m3 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M8 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M8 17v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SE={name:"CalculatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 14l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M16 14l0 .01"},null),e(" "),t("path",{d:"M8 17l0 .01"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M16 17l0 .01"},null),e(" ")])}},$E={name:"CalendarBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},AE={name:"CalendarCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},BE={name:"CalendarCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},HE={name:"CalendarCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},NE={name:"CalendarCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},jE={name:"CalendarDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h12.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},PE={name:"CalendarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},LE={name:"CalendarDueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-due",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},DE={name:"CalendarEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" "),t("path",{d:"M8 3l0 4"},null),e(" "),t("path",{d:"M4 11l16 0"},null),e(" "),t("path",{d:"M8 15h2v2h-2z"},null),e(" ")])}},OE={name:"CalendarExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},FE={name:"CalendarHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},RE={name:"CalendarMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},TE={name:"CalendarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a2 2 0 0 1 2 2v9m-.184 3.839a2 2 0 0 1 -1.816 1.161h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.158 -1.815"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M4 11h7m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EE={name:"CalendarPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},VE={name:"CalendarPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},_E={name:"CalendarPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},WE={name:"CalendarQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},XE={name:"CalendarSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},qE={name:"CalendarShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},YE={name:"CalendarStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h11"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},UE={name:"CalendarStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" ")])}},GE={name:"CalendarTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" "),t("path",{d:"M18 16.496v1.504l1 1"},null),e(" ")])}},ZE={name:"CalendarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},KE={name:"CalendarXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},QE={name:"CalendarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" ")])}},JE={name:"CameraBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},tV={name:"CameraCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M14.984 13.307a3 3 0 1 0 -2.32 2.62"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},eV={name:"CameraCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},nV={name:"CameraCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.948 13.559a3 3 0 1 0 -2.58 2.419"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lV={name:"CameraCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M14.973 13.406a3 3 0 1 0 -2.973 2.594"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rV={name:"CameraDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M14.935 12.375a3.001 3.001 0 1 0 -1.902 3.442"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},oV={name:"CameraDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},sV={name:"CameraExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},aV={name:"CameraFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a2 2 0 0 1 1.995 1.85l.005 .15a1 1 0 0 0 .883 .993l.117 .007h1a3 3 0 0 1 2.995 2.824l.005 .176v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9a3 3 0 0 1 2.824 -2.995l.176 -.005h1a1 1 0 0 0 1 -1a2 2 0 0 1 1.85 -1.995l.15 -.005h6zm-3 7a3 3 0 0 0 -2.985 2.698l-.011 .152l-.004 .15l.004 .15a3 3 0 1 0 2.996 -3.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iV={name:"CameraHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.41 11.212a3 3 0 1 0 -4.15 4.231"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},hV={name:"CameraMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},dV={name:"CameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.297 4.289a.997 .997 0 0 1 .703 -.289h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.187 2.828c-.249 .11 -.524 .172 -.813 .172h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1c.298 0 .58 -.065 .834 -.181"},null),e(" "),t("path",{d:"M10.422 10.448a3 3 0 1 0 4.15 4.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cV={name:"CameraPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.958 13.506a3 3 0 1 0 -1.735 2.235"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},uV={name:"CameraPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.933 12.366a3.001 3.001 0 1 0 -2.933 3.634"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},pV={name:"CameraPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},gV={name:"CameraQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.975 12.612a3 3 0 1 0 -1.507 3.005"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},wV={name:"CameraRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11.245 15.904a3 3 0 0 0 3.755 -2.904m-2.25 -2.905a3 3 0 0 0 -3.75 2.905"},null),e(" "),t("path",{d:"M14 13h2v2"},null),e(" "),t("path",{d:"M10 13h-2v-2"},null),e(" ")])}},vV={name:"CameraSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.757 11.815a3 3 0 1 0 -3.431 4.109"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},fV={name:"CameraSelfieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-selfie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M15 11l.01 0"},null),e(" "),t("path",{d:"M9 11l.01 0"},null),e(" ")])}},mV={name:"CameraShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.98 13.347a3 3 0 1 0 -2.39 2.595"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},kV={name:"CameraStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.569 11.45a3 3 0 1 0 -4.518 3.83"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},bV={name:"CameraUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M12 16a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},MV={name:"CameraXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},xV={name:"CameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},zV={name:"CamperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M15 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M5 18h-1a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2h12a4 4 0 0 1 4 4h-18"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 18h1a1 1 0 0 0 1 -1v-4l-3 -5"},null),e(" "),t("path",{d:"M21 13h-7"},null),e(" "),t("path",{d:"M14 8v10"},null),e(" ")])}},IV={name:"CampfireIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-campfire",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21l16 -4"},null),e(" "),t("path",{d:"M20 21l-16 -4"},null),e(" "),t("path",{d:"M12 15a4 4 0 0 0 4 -4c0 -3 -2 -3 -2 -8c-4 2 -6 5 -6 8a4 4 0 0 0 4 4z"},null),e(" ")])}},yV={name:"CandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9z"},null),e(" "),t("path",{d:"M12 3l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},CV={name:"CandyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.174 7.17l.119 -.12a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-.124 .124m-2 2l-2.123 2.123a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828l2.113 -2.112"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SV={name:"CandyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828z"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" ")])}},$V={name:"CaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032"},null),e(" ")])}},AV={name:"CannabisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cannabis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20s0 -2 1 -3.5c-1.5 0 -2 -.5 -4 -1.5c0 0 1.839 -1.38 5 -1c-1.789 -.97 -3.279 -2.03 -5 -6c0 0 3.98 -.3 6.5 3.5c-2.284 -4.9 1.5 -9.5 1.5 -9.5c2.734 5.47 2.389 7.5 1.5 9.5c2.531 -3.77 6.5 -3.5 6.5 -3.5c-1.721 3.97 -3.211 5.03 -5 6c3.161 -.38 5 1 5 1c-2 1 -2.5 1.5 -4 1.5c1 1.5 1 3.5 1 3.5c-2 0 -4.438 -2.22 -5 -3c-.563 .78 -3 3 -5 3z"},null),e(" "),t("path",{d:"M12 22v-5"},null),e(" ")])}},BV={name:"CaptureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.554 0 1.055 -.225 1.417 -.589"},null),e(" "),t("path",{d:"M9.87 9.887a3 3 0 0 0 4.255 4.23m.58 -3.416a3.012 3.012 0 0 0 -1.4 -1.403"},null),e(" "),t("path",{d:"M4 8v-2c0 -.548 .22 -1.044 .577 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HV={name:"CaptureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},NV={name:"CarCraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17v-5h9"},null),e(" "),t("path",{d:"M4 12v-6l18 -3v2"},null),e(" "),t("path",{d:"M8 12v-4l-4 -2"},null),e(" ")])}},jV={name:"CarCrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-5m0 -6h8m-6 0v-5m2 0h-4"},null),e(" "),t("path",{d:"M14 8v-2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M17.5 15.5l1.5 1.5"},null),e(" "),t("path",{d:"M17.5 8.5l1.5 -1.5"},null),e(" ")])}},PV={name:"CarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.584 15.588a2 2 0 0 0 2.828 2.83"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h1m4 0h4l4 5h1a2 2 0 0 1 2 2v4m-6 0h-6m-6 -6h8m4 0h3m-6 -3v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LV={name:"CarTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.86 11c.088 .66 .14 1.512 .14 2a8 8 0 1 1 -8 -8h6"},null),e(" "),t("path",{d:"M11 9c2.489 .108 4.489 .108 6 0"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M11 13l-3.5 -1.5"},null),e(" "),t("path",{d:"M11 13l2.5 3"},null),e(" "),t("path",{d:"M8.5 16l2.5 -3"},null),e(" "),t("path",{d:"M11 13l3.5 -1.5"},null),e(" "),t("path",{d:"M11 9v4"},null),e(" ")])}},DV={name:"CarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-6m-6 -6h15m-6 0v-5"},null),e(" ")])}},OV={name:"CaravanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caravan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11 18h7a2 2 0 0 0 2 -2v-7a2 2 0 0 0 -2 -2h-9.5a5.5 5.5 0 0 0 -5.5 5.5v3.5a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8 7l7 -3l1 3"},null),e(" "),t("path",{d:"M13 11m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v2a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M20 16h2"},null),e(" ")])}},FV={name:"CardboardsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.96 16.953c.026 -.147 .04 -.298 .04 -.453v-8.5a2 2 0 0 0 -2 -2h-9m-4 0h-1a2 2 0 0 0 -2 2v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06c.155 0 .307 -.014 .454 -.041"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.714 12.7a1 1 0 0 0 -1.417 -1.411l1.417 1.41z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RV={name:"CardboardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},TV={name:"CardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.604 7.197l7.138 -3.109a.96 .96 0 0 1 1.27 .527l4.924 11.902a1 1 0 0 1 -.514 1.304l-7.137 3.109a.96 .96 0 0 1 -1.271 -.527l-4.924 -11.903a1 1 0 0 1 .514 -1.304z"},null),e(" "),t("path",{d:"M15 4h1a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M20 6c.264 .112 .52 .217 .768 .315a1 1 0 0 1 .53 1.311l-2.298 5.374"},null),e(" ")])}},EV={name:"CaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l6 6l6 -6h-12"},null),e(" ")])}},VV={name:"CaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l-6 6l6 6v-12"},null),e(" ")])}},_V={name:"CaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18l6 -6l-6 -6v12"},null),e(" ")])}},WV={name:"CaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14l-6 -6l-6 6h12"},null),e(" ")])}},XV={name:"CarouselHorizontalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-8a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 6a1 1 0 0 1 .117 1.993l-.117 .007h-1v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-8a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 1.995 1.85l.005 .15v8a2 2 0 0 1 -1.85 1.995l-.15 .005h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qV={name:"CarouselHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M22 17h-1a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M2 17h1a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-1"},null),e(" ")])}},YV={name:"CarouselVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-12a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a2 2 0 0 1 1.995 1.85l.005 .15v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-8v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a2 2 0 0 1 1.85 -1.995l.15 -.005h8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 1a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h8v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UV={name:"CarouselVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M7 22v-1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v1"},null),e(" "),t("path",{d:"M17 2v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1"},null),e(" ")])}},GV={name:"CarrotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 8.846c-2.756 3.382 -5.868 12.154 -5.868 12.154s8.75 -3.104 12.134 -5.85m1.667 -2.342a4.486 4.486 0 0 0 -5.589 -5.615"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZV={name:"CarrotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 0 -6.344a4.483 4.483 0 0 0 -6.342 0c-2.86 2.861 -6.347 12.689 -6.347 12.689z"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M16 14l-2 -2"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" ")])}},KV={name:"CashBanknoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.88 9.878a3 3 0 1 0 4.242 4.243m.58 -3.425a3.012 3.012 0 0 0 -1.412 -1.405"},null),e(" "),t("path",{d:"M10 6h9a2 2 0 0 1 2 2v8c0 .294 -.064 .574 -.178 .825m-2.822 1.175h-13a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QV={name:"CashBanknoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" ")])}},JV={name:"CashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9h6a2 2 0 0 1 2 2v6m-2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12.582 12.59a2 2 0 0 0 2.83 2.826"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t_={name:"CashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" ")])}},e_={name:"CastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h.01"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 .875 -.13m2 -2a3 3 0 0 0 .128 -.868v-8a3 3 0 0 0 -3 -3h-9m-3.865 .136a3 3 0 0 0 -1.935 1.864"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n_={name:"CastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l.01 0"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -2.8 2"},null),e(" ")])}},l_={name:"CatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3v10a8 8 0 1 1 -16 0v-10l3.432 3.432a7.963 7.963 0 0 1 4.568 -1.432c1.769 0 3.403 .574 4.728 1.546l3.272 -3.546z"},null),e(" "),t("path",{d:"M2 16h5l-4 4"},null),e(" "),t("path",{d:"M22 16h-5l4 4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 11v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" ")])}},r_={name:"Category2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},o_={name:"CategoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v6h-6z"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},s_={name:"CeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a7.99 7.99 0 0 0 -2.581 .426"},null),e(" "),t("path",{d:"M5.867 5.864a8 8 0 0 0 5.133 14.136"},null),e(" "),t("path",{d:"M20 4a8 8 0 0 0 -7.29 4.7"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 8"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a_={name:"CeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M20 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M12 12l8 0"},null),e(" ")])}},i_={name:"CellSignal1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" ")])}},h_={name:"CellSignal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},d_={name:"CellSignal3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" ")])}},c_={name:"CellSignal4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" ")])}},u_={name:"CellSignal5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},p_={name:"CellSignalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a.731 .731 0 0 1 1.249 .517v11.269"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g_={name:"CellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4l-4 2v5l4 2l4 -2v-5z"},null),e(" "),t("path",{d:"M12 11l4 2l4 -2v-5l-4 -2l-4 2"},null),e(" "),t("path",{d:"M8 13v5l4 2l4 -2v-5"},null),e(" ")])}},w_={name:"Certificate2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M11 7h3"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-11m1.18 -2.825c.25 -.112 .529 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m-.175 3.82a2 2 0 0 1 -1.825 1.18h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v_={name:"Certificate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 7h4"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},f_={name:"CertificateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.876 12.881a3 3 0 0 0 4.243 4.243m.588 -3.42a3.012 3.012 0 0 0 -1.437 -1.423"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M6 12h3"},null),e(" "),t("path",{d:"M6 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m_={name:"CertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73"},null),e(" "),t("path",{d:"M6 9l12 0"},null),e(" "),t("path",{d:"M6 12l3 0"},null),e(" "),t("path",{d:"M6 15l2 0"},null),e(" ")])}},k_={name:"ChairDirectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chair-director",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l12 -9"},null),e(" "),t("path",{d:"M6 12l12 9"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M6 3v9"},null),e(" "),t("path",{d:"M18 3v9"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" ")])}},b_={name:"ChalkboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M17 17v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M_={name:"ChalkboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M11 16m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},x_={name:"ChargingPileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-charging-pile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 7l-1 1"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M9 11.5l-1.5 2.5h3l-1.5 2.5"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M4 8l10 0"},null),e(" ")])}},z_={name:"ChartArcs3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 1 0 5 -5"},null),e(" "),t("path",{d:"M6.29 18.957a9 9 0 1 0 5.71 -15.957"},null),e(" ")])}},I_={name:"ChartArcsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.924 11.132a5 5 0 1 0 -4.056 5.792"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 9 -9"},null),e(" ")])}},y_={name:"ChartAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a1 1 0 0 1 .117 1.993l-.117 .007h-16a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.22 5.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C_={name:"ChartAreaLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.22 9.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.232 3.36a1 1 0 0 1 1.382 -.15l.093 .083l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3.226 -3.225l-4.299 5.158a1 1 0 0 1 -1.1 .303l-.115 -.049l-3.254 -1.626l-2.499 3.332a1 1 0 0 1 -1.295 .269l-.105 -.069a1 1 0 0 1 -.269 -1.295l.069 -.105l3 -4a1 1 0 0 1 1.137 -.341l.11 .047l3.291 1.645l4.494 -5.391z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},S_={name:"ChartAreaLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" "),t("path",{d:"M4 12l3 -4l4 2l5 -6l4 4"},null),e(" ")])}},$_={name:"ChartAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" ")])}},A_={name:"ChartArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 21v-14"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M15 10l3 -3l3 3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 21l0 -9"},null),e(" "),t("path",{d:"M3 6l3 -3l3 3"},null),e(" "),t("path",{d:"M6 21v-18"},null),e(" ")])}},B_={name:"ChartArrowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l14 0"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M14 15l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3l0 18"},null),e(" "),t("path",{d:"M3 12l9 0"},null),e(" "),t("path",{d:"M18 3l3 3l-3 3"},null),e(" "),t("path",{d:"M3 6l18 0"},null),e(" ")])}},H_={name:"ChartBarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8h2a1 1 0 0 1 1 1v2m0 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M15 11v-6a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v12m-1 3h-4a1 1 0 0 1 -1 -1v-4"},null),e(" "),t("path",{d:"M4 20h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N_={name:"ChartBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 8m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20l14 0"},null),e(" ")])}},j_={name:"ChartBubbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 16a3 3 0 1 1 -2.995 3.176l-.005 -.176l.005 -.176a3 3 0 0 1 2.995 -2.824z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.5 2a5.5 5.5 0 1 1 -5.496 5.721l-.004 -.221l.004 -.221a5.5 5.5 0 0 1 5.496 -5.279z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},P_={name:"ChartBubbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.5 7.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},L_={name:"ChartCandleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005a1 1 0 0 1 -1.993 .117l-.007 -.117l-.15 -.005a2 2 0 0 1 -1.844 -1.838l-.006 -.157v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-9a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117a2 2 0 0 1 1.995 1.85l.005 .15v4a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},D_={name:"ChartCandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4l0 2"},null),e(" "),t("path",{d:"M6 11l0 9"},null),e(" "),t("path",{d:"M10 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 19l0 1"},null),e(" "),t("path",{d:"M16 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 11l0 9"},null),e(" ")])}},O_={name:"ChartCirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" "),t("path",{d:"M14.5 14.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" ")])}},F_={name:"ChartDonut2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},R_={name:"ChartDonut3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M8.929 14.582l-3.429 2.918"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},T_={name:"ChartDonut4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.848 14.667l-3.348 2.833"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.219 15.328l2.781 4.172"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},E_={name:"ChartDonutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v4a1 1 0 0 1 -.641 .933l-.107 .035a3.1 3.1 0 1 0 3.73 3.953l.05 -.173a1 1 0 0 1 .855 -.742l.113 -.006h3.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.775 2.526a.996 .996 0 0 1 .22 -.026l.122 .007l.112 .02l.103 .03a10 10 0 0 1 6.003 5.817l.108 .294a1 1 0 0 1 -.824 1.325l-.119 .007h-4.5a1 1 0 0 1 -.76 -.35a8 8 0 0 0 -.89 -.89a1 1 0 0 1 -.342 -.636l-.008 -.124v-4.495l.006 -.118c.005 -.042 .012 -.08 .02 -.116l.03 -.103a.998 .998 0 0 1 .168 -.299l.071 -.08c.03 -.028 .058 -.052 .087 -.075l.09 -.063l.088 -.05l.103 -.043l.112 -.032z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},V_={name:"ChartDonutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5"},null),e(" ")])}},__={name:"ChartDots2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 3l-6 1.5"},null),e(" "),t("path",{d:"M14.113 6.65l2.771 3.695"},null),e(" "),t("path",{d:"M16 12.5l-5 2"},null),e(" ")])}},W_={name:"ChartDots3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l5 -1.5"},null),e(" "),t("path",{d:"M6.5 8.5l7.81 5.37"},null),e(" "),t("path",{d:"M7 7l8 -1"},null),e(" ")])}},X_={name:"ChartDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.16 10.62l2.34 2.88"},null),e(" "),t("path",{d:"M15.088 13.328l2.837 -4.586"},null),e(" ")])}},q_={name:"ChartGridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M18 20v1"},null),e(" "),t("path",{d:"M18 3v1"},null),e(" "),t("path",{d:"M6 20v1"},null),e(" "),t("path",{d:"M6 10v-7"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M18 8v8"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M21 6h-1"},null),e(" "),t("path",{d:"M16 6h-13"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M20 18h1"},null),e(" "),t("path",{d:"M3 18h1"},null),e(" "),t("path",{d:"M6 14v2"},null),e(" ")])}},Y_={name:"ChartHistogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-histogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M20 18v3"},null),e(" "),t("path",{d:"M16 16v5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8 16v5"},null),e(" "),t("path",{d:"M3 11c6 0 5 -5 9 -5s3 5 9 5"},null),e(" ")])}},U_={name:"ChartInfographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-infographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 3v4h4"},null),e(" "),t("path",{d:"M9 17l0 4"},null),e(" "),t("path",{d:"M17 14l0 7"},null),e(" "),t("path",{d:"M13 13l0 8"},null),e(" "),t("path",{d:"M21 12l0 9"},null),e(" ")])}},G_={name:"ChartLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4"},null),e(" ")])}},Z_={name:"ChartPie2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},K_={name:"ChartPie3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Q_={name:"ChartPie4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l5 7.5"},null),e(" ")])}},J_={name:"ChartPieFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v7a1 1 0 0 0 .883 .993l.117 .007h6.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 3.5v5.5a1 1 0 0 0 1 1h5.5a1 1 0 0 0 .943 -1.332a10 10 0 0 0 -6.11 -6.111a1 1 0 0 0 -1.333 .943z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tW={name:"ChartPieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.63 5.643a9 9 0 0 0 12.742 12.715m1.674 -2.29a9.03 9.03 0 0 0 .754 -2.068a1 1 0 0 0 -1 -1h-2.8m-4 0a2 2 0 0 1 -2 -2m0 -4v-3a.9 .9 0 0 0 -1 -.8a9 9 0 0 0 -2.057 .749"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eW={name:"ChartPieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" ")])}},nW={name:"ChartPpfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-ppf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 17c0 -6.075 -5.373 -11 -12 -11"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" ")])}},lW={name:"ChartRadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l9.5 7l-3.5 11h-12l-3.5 -11z"},null),e(" "),t("path",{d:"M12 7.5l5.5 4l-2.5 5.5h-6.5l-2 -5.5z"},null),e(" "),t("path",{d:"M2.5 10l9.5 3l9.5 -3"},null),e(" "),t("path",{d:"M12 3v10l6 8"},null),e(" "),t("path",{d:"M6 21l6 -8"},null),e(" ")])}},rW={name:"ChartSankeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-sankey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M3 6h18"},null),e(" "),t("path",{d:"M3 8c10 0 8 9 18 9"},null),e(" ")])}},oW={name:"ChartTreemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-treemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M4 15h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" "),t("path",{d:"M16 12v8"},null),e(" "),t("path",{d:"M16 16h4"},null),e(" ")])}},sW={name:"CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l5 5l10 -10"},null),e(" ")])}},aW={name:"CheckboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l3 3l8 -8"},null),e(" "),t("path",{d:"M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9"},null),e(" ")])}},iW={name:"ChecklistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checklist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 8h4"},null),e(" "),t("path",{d:"M9 12h2"},null),e(" ")])}},hW={name:"ChecksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l10 -10"},null),e(" "),t("path",{d:"M2 12l5 5m5 -5l5 -5"},null),e(" ")])}},dW={name:"CheckupListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkup-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14h.01"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" "),t("path",{d:"M12 16l1 1l3 -3"},null),e(" ")])}},cW={name:"CheeseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cheese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722"},null),e(" "),t("path",{d:"M21 9l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721"},null),e(" "),t("path",{d:"M15 13v.01"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M11 16v.01"},null),e(" ")])}},uW={name:"ChefHatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.72 4.712a4 4 0 0 1 7.19 1.439a4 4 0 0 1 2.09 7.723v.126m0 4v3h-12v-7.126a4 4 0 0 1 .081 -7.796"},null),e(" "),t("path",{d:"M6.161 17.009l10.839 -.009"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pW={name:"ChefHatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151z"},null),e(" "),t("path",{d:"M6.161 17.009l11.839 -.009"},null),e(" ")])}},gW={name:"CherryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.588 5.191l.058 .045l.078 .074l.072 .084l.013 .018a.998 .998 0 0 1 .182 .727l-.022 .111l-.03 .092c-.99 2.725 -.666 5.158 .679 7.706a4 4 0 1 1 -4.613 4.152l-.005 -.2l.005 -.2a4.002 4.002 0 0 1 2.5 -3.511c-.947 -2.03 -1.342 -4.065 -1.052 -6.207c-.166 .077 -.332 .15 -.499 .218l.094 -.064c-2.243 1.47 -3.552 3.004 -3.98 4.57a4.5 4.5 0 1 1 -7.064 3.906l-.004 -.212l.005 -.212a4.5 4.5 0 0 1 5.2 -4.233c.332 -1.073 .945 -2.096 1.83 -3.069c-1.794 -.096 -3.586 -.759 -5.355 -1.986l-.268 -.19l-.051 -.04l-.046 -.04l-.044 -.044l-.04 -.046l-.04 -.05l-.032 -.047l-.035 -.06l-.053 -.11l-.038 -.116l-.023 -.117l-.005 -.042l-.005 -.118l.01 -.118l.023 -.117l.038 -.115l.03 -.066l.023 -.045l.035 -.06l.032 -.046l.04 -.051l.04 -.046l.044 -.044l.046 -.04l.05 -.04c4.018 -2.922 8.16 -2.922 12.177 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wW={name:"CherryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M17 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 13c.366 -2 1.866 -3.873 4.5 -5.6"},null),e(" "),t("path",{d:"M17 15c-1.333 -2.333 -2.333 -5.333 -1 -9"},null),e(" "),t("path",{d:"M5 6c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0"},null),e(" ")])}},vW={name:"ChessBishopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.386 3.442c.646 .28 1.226 .62 1.74 1.017l-3.833 3.834l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.814 -3.813c.977 1.35 1.479 3.07 1.479 5.106c0 1.913 -1.178 3.722 -3.089 3.973l-.2 .02l-.211 .007h-5c-2.126 0 -3.5 -1.924 -3.5 -4c0 -3.68 1.57 -6.255 4.613 -7.56a2 2 0 0 1 1.387 -3.44z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 5v1","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fW={name:"ChessBishopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 16c-1.667 0 -2.5 -1.669 -2.5 -3c0 -3.667 1.667 -6 5 -7c3.333 1 5 3.427 5 7c0 1.284 -.775 2.881 -2.325 3l-.175 0h-5z"},null),e(" "),t("path",{d:"M15 8l-3 3"},null),e(" "),t("path",{d:"M12 5v1"},null),e(" ")])}},mW={name:"ChessFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a4 4 0 0 1 4 4a5.03 5.03 0 0 1 -.438 2.001l.438 -.001a1 1 0 0 1 .117 1.993l-.117 .007h-1.263l1.24 5.79a1 1 0 0 1 -.747 1.184l-.113 .02l-.117 .006h-6a1 1 0 0 1 -.996 -1.093l.018 -.117l1.24 -5.79h-1.262a1 1 0 0 1 -.117 -1.993l.117 -.007h.438a5.154 5.154 0 0 1 -.412 -1.525l-.02 -.259l-.006 -.216a4 4 0 0 1 4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kW={name:"ChessKingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v1.758a4.49 4.49 0 0 1 2.033 -.734l.24 -.018l.227 -.006a4.5 4.5 0 0 1 4.5 4.5a4.504 4.504 0 0 1 -4.064 4.478l-.217 .016l-.219 .006h-7a4.5 4.5 0 1 1 2.501 -8.241l-.001 -1.759h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bW={name:"ChessKingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8.5 16a3.5 3.5 0 1 1 3.163 -5h.674a3.5 3.5 0 1 1 3.163 5z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M12 3v8"},null),e(" ")])}},MW={name:"ChessKnightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.959 1.99l-.147 .028l-.115 .029a1 1 0 0 0 -.646 1.27l.749 2.245l-2.815 1.735a2 2 0 0 0 -.655 2.751l.089 .133a2 2 0 0 0 1.614 .819l1.563 -.001l-1.614 4.674a1 1 0 0 0 .945 1.327h7.961a1 1 0 0 0 1 -.978l.112 -5c0 -3.827 -1.555 -6.878 -4.67 -7.966l-2.399 -.83l-.375 -.121l-.258 -.074l-.135 -.031l-.101 -.013l-.055 -.001l-.048 .003z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xW={name:"ChessKnightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M9 3l1 3l-3.491 2.148a1 1 0 0 0 .524 1.852h2.967l-2.073 6h7.961l.112 -5c0 -3 -1.09 -5.983 -4 -7c-1.94 -.678 -2.94 -1.011 -3 -1z"},null),e(" ")])}},zW={name:"ChessQueenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.572 3.236l.793 1.983l1.702 -1.702a2.003 2.003 0 0 1 1.933 -2.517a2 2 0 0 1 .674 3.884l-1.69 9.295a1 1 0 0 1 -.865 .814l-.119 .007h-8a1 1 0 0 1 -.956 -.705l-.028 -.116l-1.69 -9.295a2 2 0 1 1 2.607 -1.367l1.701 1.702l.794 -1.983a2 2 0 0 1 1.572 -3.236z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IW={name:"ChessQueenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16l2 -11l-4 4l-2 -5l-2 5l-4 -4l2 11"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},yW={name:"ChessRookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3a1 1 0 0 1 .993 .883l.007 .117v2h1.652l.362 -2.164a1 1 0 0 1 1.034 -.836l.116 .013a1 1 0 0 1 .836 1.035l-.013 .116l-.5 3a1 1 0 0 1 -.865 .829l-.122 .007h-1.383l.877 7.89a1 1 0 0 1 -.877 1.103l-.117 .007h-8a1 1 0 0 1 -1 -.993l.006 -.117l.877 -7.89h-1.383a1 1 0 0 1 -.96 -.718l-.026 -.118l-.5 -3a1 1 0 0 1 1.947 -.442l.025 .114l.361 2.164h1.653v-2a1 1 0 0 1 1.993 -.117l.007 .117v2h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CW={name:"ChessRookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8 16l1 -9h6l1 9"},null),e(" "),t("path",{d:"M6 4l.5 3h11l.5 -3"},null),e(" "),t("path",{d:"M10 4v3"},null),e(" "),t("path",{d:"M14 4v3"},null),e(" ")])}},SW={name:"ChessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 1 3 3c0 1.113 -.6 2.482 -1.5 3l1.5 7h-6l1.5 -7c-.9 -.518 -1.5 -1.887 -1.5 -3a3 3 0 0 1 3 -3z"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M6.684 16.772a1 1 0 0 0 -.684 .949v1.279a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1.28a1 1 0 0 0 -.684 -.948l-2.316 -.772h-6l-2.316 .772z"},null),e(" ")])}},$W={name:"ChevronDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v8h8"},null),e(" ")])}},AW={name:"ChevronDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8v8h-8"},null),e(" ")])}},BW={name:"ChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 6l6 -6"},null),e(" ")])}},HW={name:"ChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l-6 6l6 6"},null),e(" ")])}},NW={name:"ChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l6 6l-6 6"},null),e(" ")])}},jW={name:"ChevronUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-8h8"},null),e(" ")])}},PW={name:"ChevronUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},LW={name:"ChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15l6 -6l6 6"},null),e(" ")])}},DW={name:"ChevronsDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v8h8"},null),e(" "),t("path",{d:"M7 9v8h8"},null),e(" ")])}},OW={name:"ChevronsDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5v8h-8"},null),e(" "),t("path",{d:"M17 9v8h-8"},null),e(" ")])}},FW={name:"ChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l5 -5"},null),e(" "),t("path",{d:"M7 13l5 5l5 -5"},null),e(" ")])}},RW={name:"ChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l-5 5l5 5"},null),e(" "),t("path",{d:"M17 7l-5 5l5 5"},null),e(" ")])}},TW={name:"ChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 7l5 5l-5 5"},null),e(" ")])}},EW={name:"ChevronsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15v-8h8"},null),e(" "),t("path",{d:"M11 19v-8h8"},null),e(" ")])}},VW={name:"ChevronsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7h8v8"},null),e(" "),t("path",{d:"M5 11h8v8"},null),e(" ")])}},_W={name:"ChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11l5 -5l5 5"},null),e(" "),t("path",{d:"M7 17l5 -5l5 5"},null),e(" ")])}},WW={name:"ChiselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chisel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14l1.5 1.5"},null),e(" "),t("path",{d:"M18.347 15.575l2.08 2.079a1.96 1.96 0 0 1 -2.773 2.772l-2.08 -2.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 6l3 -3l7.414 7.414a2 2 0 0 1 .586 1.414v2.172h-2.172a2 2 0 0 1 -1.414 -.586l-7.414 -7.414z"},null),e(" ")])}},XW={name:"ChristmasTreeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 5.5l2.5 -2.5l4 4l-2 1l4 4l-1.5 .5m.5 4.5h-12l4 -4l-3 -1l3 -3"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qW={name:"ChristmasTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4 4l-2 1l4 4l-3 1l4 4h-14l4 -4l-3 -1l4 -4l-2 -1z"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" ")])}},YW={name:"Circle0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UW={name:"Circle1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GW={name:"Circle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZW={name:"Circle3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KW={name:"Circle4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QW={name:"Circle5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JW={name:"Circle6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tX={name:"Circle7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},eX={name:"Circle8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nX={name:"Circle9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lX={name:"CircleArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 3.66a1 1 0 0 0 -1 1v5.585l-2.293 -2.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4 4c.028 .028 .057 .054 .094 .083l.092 .064l.098 .052l.081 .034l.113 .034l.112 .02l.117 .006l.115 -.007l.114 -.02l.142 -.044l.113 -.054l.111 -.071a.939 .939 0 0 0 .112 -.097l4 -4l.083 -.094a1 1 0 0 0 -1.497 -1.32l-2.293 2.291v-5.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rX={name:"CircleArrowDownLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-8 4.66a1 1 0 0 0 -1 1v6l.007 .117l.029 .149l.035 .105l.054 .113l.071 .111c.03 .04 .061 .077 .097 .112l.09 .08l.096 .067l.098 .052l.11 .044l.112 .03l.126 .017l6.075 .003l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-3.586l4.293 -4.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-4.293 4.291v-3.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oX={name:"CircleArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15h-6v-6"},null),e(" ")])}},sX={name:"CircleArrowDownRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66l-.117 .007a1 1 0 0 0 -.883 .993v3.585l-4.293 -4.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4.292 4.293h-3.585l-.117 .007a1 1 0 0 0 .117 1.993l6.034 .001a.998 .998 0 0 0 .186 -.025l.053 -.014l.066 -.02l.13 -.059l.093 -.055a.98 .98 0 0 0 .438 -.828v-6l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aX={name:"CircleArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M15 9v6l-6 -6"},null),e(" ")])}},iX={name:"CircleArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 4"},null),e(" ")])}},hX={name:"CircleArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a10 10 0 0 1 .324 19.995l-.324 .005l-.324 -.005a10 10 0 0 1 .324 -19.995zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.048 1.048 0 0 0 -.083 .094l-.064 .092l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 .075l.004 .09l.007 .058l.025 .118l.035 .105l.054 .113l.043 .07l.071 .095l.054 .058l4 4l.094 .083a1 1 0 0 0 1.32 -1.497l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.586l2.293 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dX={name:"CircleArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 0 -18a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" ")])}},cX={name:"CircleArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .005a10 10 0 1 1 -.648 0l.324 -.005zm.613 5.21a1 1 0 0 0 -1.32 1.497l2.291 2.293h-5.584l-.117 .007a1 1 0 0 0 .117 1.993h5.584l-2.291 2.293l-.083 .094a1 1 0 0 0 1.497 1.32l4 -4l.073 -.082l.064 -.089l.062 -.113l.044 -.11l.03 -.112l.017 -.126l.003 -.075l-.007 -.118l-.029 -.148l-.035 -.105l-.054 -.113l-.071 -.111a1.008 1.008 0 0 0 -.097 -.112l-4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uX={name:"CircleArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 16l4 -4"},null),e(" ")])}},pX={name:"CircleArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-4.98 3.66l-.163 .01l-.086 .016l-.142 .045l-.113 .054l-.07 .043l-.095 .071l-.058 .054l-4 4l-.083 .094a1 1 0 0 0 1.497 1.32l2.293 -2.293v5.586l.007 .117a1 1 0 0 0 1.993 -.117v-5.585l2.293 2.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4 -4l-.082 -.073l-.089 -.064l-.113 -.062l-.081 -.034l-.113 -.034l-.112 -.02l-.098 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gX={name:"CircleArrowUpLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007l-.149 .029l-.105 .035l-.113 .054l-.111 .071a1.01 1.01 0 0 0 -.112 .097l-.08 .09l-.067 .096l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 6.075l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-3.585l4.293 4.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4.292 -4.293h3.585l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wX={name:"CircleArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" "),t("path",{d:"M15 9h-6v6"},null),e(" ")])}},vX={name:"CircleArrowUpRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h3.584l-4.291 4.293l-.083 .094a1 1 0 0 0 1.497 1.32l4.293 -4.293v3.586l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117l-.029 -.149l-.035 -.105l-.054 -.113l-.071 -.111a1.01 1.01 0 0 0 -.097 -.112l-.09 -.08l-.096 -.067l-.098 -.052l-.11 -.044l-.112 -.03l-.126 -.017l-.075 -.003z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fX={name:"CircleArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15v-6h-6"},null),e(" ")])}},mX={name:"CircleArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" ")])}},kX={name:"CircleCaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 15l-4 -4h8z"},null),e(" ")])}},bX={name:"CircleCaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l4 -4v8z"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" ")])}},MX={name:"CircleCaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12l-4 -4v8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},xX={name:"CircleCaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l4 4h-8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},zX={name:"CircleCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IX={name:"CircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},yX={name:"CircleChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},CX={name:"CircleChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z"},null),e(" ")])}},SX={name:"CircleChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0z"},null),e(" ")])}},$X={name:"CircleChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},AX={name:"CircleChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},BX={name:"CircleChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 0 .265l0 -.265z"},null),e(" ")])}},HX={name:"CircleChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 0 -.265l0 .265z"},null),e(" ")])}},NX={name:"CircleChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 -.265 0l.265 0z"},null),e(" ")])}},jX={name:"CircleDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" ")])}},PX={name:"CircleDotFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 6.66a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LX={name:"CircleDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},DX={name:"CircleDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 4.21l0 .01"},null),e(" "),t("path",{d:"M4.21 7.5l0 .01"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M4.21 16.5l0 .01"},null),e(" "),t("path",{d:"M7.5 19.79l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M16.5 19.79l0 .01"},null),e(" "),t("path",{d:"M19.79 16.5l0 .01"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" "),t("path",{d:"M19.79 7.5l0 .01"},null),e(" "),t("path",{d:"M16.5 4.21l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" ")])}},OX={name:"CircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3.34a10 10 0 1 1 -4.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 4.995 -8.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FX={name:"CircleHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 14l7 -7"},null),e(" "),t("path",{d:"M12 19l8.5 -8.5"},null),e(" "),t("path",{d:"M12 9l4.5 -4.5"},null),e(" ")])}},RX={name:"CircleHalfVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" ")])}},TX={name:"CircleHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},EX={name:"CircleKeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -20 0c0 -5.523 4.477 -10 10 -10zm2 5a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176c.019 .319 .087 .624 .197 .908l.09 .209l-3.5 3.5l-.082 .094a1 1 0 0 0 0 1.226l.083 .094l1.5 1.5l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-.792 -.793l.585 -.585l.793 .792l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.792 -.793l.792 -.792a3 3 0 1 0 1.293 -5.708zm0 2a1 1 0 1 1 0 2a1 1 0 0 1 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VX={name:"CircleKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" ")])}},_X={name:"CircleLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},WX={name:"CircleLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},XX={name:"CircleLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},qX={name:"CircleLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},YX={name:"CircleLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},UX={name:"CircleLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},GX={name:"CircleLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},ZX={name:"CircleLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},KX={name:"CircleLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},QX={name:"CircleLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},JX={name:"CircleLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},tq={name:"CircleLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},eq={name:"CircleLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},nq={name:"CircleLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},lq={name:"CircleLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},rq={name:"CircleLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},oq={name:"CircleLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},sq={name:"CircleLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},aq={name:"CircleLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},iq={name:"CircleLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},hq={name:"CircleLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},dq={name:"CircleLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},cq={name:"CircleLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},uq={name:"CircleLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},pq={name:"CircleLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},gq={name:"CircleLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},wq={name:"CircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},vq={name:"CircleNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},fq={name:"CircleNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},mq={name:"CircleNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},kq={name:"CircleNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},bq={name:"CircleNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},Mq={name:"CircleNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},xq={name:"CircleNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},zq={name:"CircleNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},Iq={name:"CircleNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},yq={name:"CircleNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},Cq={name:"CircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sq={name:"CirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},$q={name:"CircleRectangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h3v3m-3 1h-7v-4h3"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aq={name:"CircleRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10h10v4h-10z"},null),e(" ")])}},Bq={name:"CircleSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" "),t("path",{d:"M10 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hq={name:"CircleTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 20l7 -12h-14z"},null),e(" ")])}},Nq={name:"CircleXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-6.489 5.8a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jq={name:"CircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},Pq={name:"CircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Lq={name:"CirclesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dq={name:"CirclesRelationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-relation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.183 6.117a6 6 0 1 0 4.511 3.986"},null),e(" "),t("path",{d:"M14.813 17.883a6 6 0 1 0 -4.496 -3.954"},null),e(" ")])}},Oq={name:"CirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Fq={name:"CircuitAmmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ammeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Rq={name:"CircuitBatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M18 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},Tq={name:"CircuitBulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h5"},null),e(" "),t("path",{d:"M17 12h5"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M15.5 8.5l-7 7"},null),e(" ")])}},Eq={name:"CircuitCapacitorPolarizedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor-polarized",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M17 5h4"},null),e(" "),t("path",{d:"M19 3v4"},null),e(" ")])}},Vq={name:"CircuitCapacitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" ")])}},_q={name:"CircuitCellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h9"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" "),t("path",{d:"M11 5v14"},null),e(" "),t("path",{d:"M15 9v6"},null),e(" "),t("path",{d:"M3 5h4"},null),e(" "),t("path",{d:"M5 3v4"},null),e(" ")])}},Wq={name:"CircuitCellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M14 12h8"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" ")])}},Xq={name:"CircuitChangeoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-changeover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 7h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l8.5 -3.5"},null),e(" ")])}},qq={name:"CircuitDiodeZenerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode-zener",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M14 7h2v10h2"},null),e(" ")])}},Yq={name:"CircuitDiodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" ")])}},Uq={name:"CircuitGroundDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M12 21l-6 -8h12z"},null),e(" ")])}},Gq={name:"CircuitGroundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8"},null),e(" "),t("path",{d:"M4 13h16"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},Zq={name:"CircuitInductorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-inductor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3"},null),e(" ")])}},Kq={name:"CircuitMotorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-motor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-4l2 2l2 -2v4"},null),e(" ")])}},Qq={name:"CircuitPushbuttonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-pushbutton",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17h2"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 11h12"},null),e(" "),t("path",{d:"M12 11v-6"},null),e(" ")])}},Jq={name:"CircuitResistorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-resistor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5"},null),e(" ")])}},tY={name:"CircuitSwitchClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" ")])}},eY={name:"CircuitSwitchOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l7.5 -5.5"},null),e(" ")])}},nY={name:"CircuitVoltmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-voltmeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 10l2 4l2 -4"},null),e(" ")])}},lY={name:"ClearAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h12"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M4 18h12"},null),e(" ")])}},rY={name:"ClearFormattingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-formatting",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M7 6v-1h11v1"},null),e(" "),t("path",{d:"M7 19l4 0"},null),e(" "),t("path",{d:"M13 5l-4 14"},null),e(" ")])}},oY={name:"ClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 0"},null),e(" "),t("path",{d:"M12 3l0 3"},null),e(" "),t("path",{d:"M7.8 7.8l-2.2 -2.2"},null),e(" "),t("path",{d:"M16.2 7.8l2.2 -2.2"},null),e(" "),t("path",{d:"M7.8 16.2l-2.2 2.2"},null),e(" "),t("path",{d:"M12 12l9 3l-4 2l-2 4l-3 -9"},null),e(" ")])}},sY={name:"ClipboardCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14l2 2l4 -4"},null),e(" ")])}},aY={name:"ClipboardCopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M13 17v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},iY={name:"ClipboardDataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-data",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-4"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-2"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" ")])}},hY={name:"ClipboardHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11.993 16.75l2.747 -2.815a1.9 1.9 0 0 0 0 -2.632a1.775 1.775 0 0 0 -2.56 0l-.183 .188l-.183 -.189a1.775 1.775 0 0 0 -2.56 0a1.899 1.899 0 0 0 0 2.632l2.738 2.825z"},null),e(" ")])}},dY={name:"ClipboardListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" "),t("path",{d:"M9 16l.01 0"},null),e(" "),t("path",{d:"M13 16l2 0"},null),e(" ")])}},cY={name:"ClipboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.575 5.597a2 2 0 0 0 -.575 1.403v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uY={name:"ClipboardPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},pY={name:"ClipboardTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 16h6"},null),e(" ")])}},gY={name:"ClipboardTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M11 17h2"},null),e(" ")])}},wY={name:"ClipboardXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},vY={name:"ClipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},fY={name:"Clock2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M4 12h1"},null),e(" "),t("path",{d:"M19 12h1"},null),e(" "),t("path",{d:"M12 19v1"},null),e(" ")])}},mY={name:"ClockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.53a9 9 0 1 0 -7.552 8.355"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},kY={name:"ClockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.997 12.25a9 9 0 1 0 -8.718 8.745"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},bY={name:"ClockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.021a9 9 0 1 0 -9.407 7.967"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},MY={name:"ClockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.931 13.111a9 9 0 1 0 -9.453 7.874"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},xY={name:"ClockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.002 9"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},zY={name:"ClockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.866 10.45a9 9 0 1 0 -7.815 10.488"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},IY={name:"ClockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.431 8.448"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},yY={name:"ClockEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.972 8.948c.32 .034 .644 .052 .972 .052"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},CY={name:"ClockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.502a9 9 0 1 0 -5.973 7.98"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},SY={name:"ClockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 2.66a1 1 0 0 0 -.993 .883l-.007 .117v5l.009 .131a1 1 0 0 0 .197 .477l.087 .1l3 3l.094 .082a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-2.707 -2.708v-4.585l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$Y={name:"ClockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.956 11.107a9 9 0 1 0 -9.579 9.871"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M12 7v5l.5 .5"},null),e(" ")])}},AY={name:"ClockHour1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M12 12l2 -3"},null),e(" ")])}},BY={name:"ClockHour10Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-10",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},HY={name:"ClockHour11Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-11",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 -3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},NY={name:"ClockHour12Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-12",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},jY={name:"ClockHour2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},PY={name:"ClockHour3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},LY={name:"ClockHour4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},DY={name:"ClockHour5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},OY={name:"ClockHour6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12v3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},FY={name:"ClockHour7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},RY={name:"ClockHour8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},TY={name:"ClockHour9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},EY={name:"ClockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.477 15.022a9 9 0 1 0 -7.998 5.965"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},VY={name:"ClockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.633 5.64a9 9 0 1 0 12.735 12.72m1.674 -2.32a9 9 0 0 0 -12.082 -12.082"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Y={name:"ClockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -7.909 7.922"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},WY={name:"ClockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.971 11.278a9 9 0 1 0 -8.313 9.698"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},XY={name:"ClockPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 22l5 -3l-5 -3z"},null),e(" "),t("path",{d:"M13.017 20.943a9 9 0 1 1 7.831 -7.292"},null),e(" ")])}},qY={name:"ClockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.468 8.45"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},YY={name:"ClockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.717 9.06"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},UY={name:"ClockRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.3a9 9 0 1 0 -8.683 8.694"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},GY={name:"ClockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.646a9 9 0 1 0 -9.318 9.348"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},ZY={name:"ClockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.943 13.016a9 9 0 1 0 -8.915 7.984"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},KY={name:"ClockShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.98 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},QY={name:"ClockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.982 11.436a9 9 0 1 0 -9.966 9.51"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" ")])}},JY={name:"ClockStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M16 16h6v6h-6z"},null),e(" ")])}},tU={name:"ClockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.548a9 9 0 1 0 -8.45 8.436"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 7v5l2.5 2.5"},null),e(" ")])}},eU={name:"ClockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.926 13.15a9 9 0 1 0 -7.835 7.784"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},nU={name:"ClockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},lU={name:"ClothesRackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v1m0 4v9"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 3.129 1.653m3.578 -.424a6 6 0 0 0 1.779 -1.229"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rU={name:"ClothesRackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},oU={name:"CloudBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.396 0 2.6 .831 3.148 2.03"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},sU={name:"CloudCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.45 3.45 0 0 1 2.756 1.373"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},aU={name:"CloudCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.388 0 2.585 .82 3.138 2.007"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},iU={name:"CloudCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.468 3.468 0 0 1 3.307 2.444"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},hU={name:"CloudCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c.956 0 1.822 .39 2.449 1.02"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},dU={name:"CloudComputingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-computing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 16c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M16 16v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M8 16v4a1 1 0 0 1 -1 1h-4"},null),e(" ")])}},cU={name:"CloudDataConnectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-data-connection",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 18h7"},null),e(" "),t("path",{d:"M3 18h7"},null),e(" ")])}},uU={name:"CloudDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 18.004h-6.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.28 1.023 1.957 2.51 1.873 4.027"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},pU={name:"CloudDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.573 .813 3.13 1.99"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},gU={name:"CloudDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1a5 4.5 0 0 0 -11 -2a4.6 4.4 0 0 0 -2.1 8.4"},null),e(" "),t("path",{d:"M12 13l0 9"},null),e(" "),t("path",{d:"M9 19l3 3l3 -3"},null),e(" ")])}},wU={name:"CloudExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18.004h-8.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.374 0 2.562 .805 3.121 1.972"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},vU={name:"CloudFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.04 4.305c2.195 -.667 4.615 -.224 6.36 1.176c1.386 1.108 2.188 2.686 2.252 4.34l.003 .212l.091 .003c2.3 .107 4.143 1.961 4.25 4.27l.004 .211c0 2.407 -1.885 4.372 -4.255 4.482l-.21 .005h-11.878l-.222 -.008c-2.94 -.11 -5.317 -2.399 -5.43 -5.263l-.005 -.216c0 -2.747 2.08 -5.01 4.784 -5.417l.114 -.016l.07 -.181c.663 -1.62 2.056 -2.906 3.829 -3.518l.244 -.08z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fU={name:"CloudFogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-fog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-12"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" ")])}},mU={name:"CloudHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18.004h-3.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},kU={name:"CloudLockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 0 1 3.736 -1"},null),e(" ")])}},bU={name:"CloudLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},MU={name:"CloudMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .186 -.015 .37 -.042 .548"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},xU={name:"CloudOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.58 5.548c.24 -.11 .492 -.207 .752 -.286c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .957 -.383 1.824 -1.003 2.454m-2.997 1.033h-11.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.13 -.582 .37 -1.128 .7 -1.62"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zU={name:"CloudPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.406 0 2.617 .843 3.16 2.055"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},IU={name:"CloudPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},yU={name:"CloudPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.46 3.46 0 0 1 3.085 1.9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},CU={name:"CloudQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 18.004h-7.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},SU={name:"CloudRainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-rain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 13v2m0 3v2m4 -5v2m0 3v2"},null),e(" ")])}},$U={name:"CloudSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},AU={name:"CloudShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18.004h-5.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.41 0 2.624 .848 3.164 2.065"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},BU={name:"CloudSnowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-snow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 15v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01"},null),e(" ")])}},HU={name:"CloudStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 18.004h-2.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.209 .967 1.88 2.347 1.88 3.776"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},NU={name:"CloudStormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M13 14l-2 4l3 0l-2 4"},null),e(" ")])}},jU={name:"CloudUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.57 .811 3.128 1.986"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},PU={name:"CloudUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" ")])}},LU={name:"CloudXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.37 0 2.556 .8 3.117 1.964"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},DU={name:"CloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" ")])}},OU={name:"Clover2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0"},null),e(" "),t("path",{d:"M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},FU={name:"CloverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M12 14l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14 12l3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0l-3.44 -3.397z"},null),e(" "),t("path",{d:"M10 12l-3.44 -3.397a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0l3.44 -3.397z"},null),e(" ")])}},RU={name:"ClubsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 0 -4.488 2.797l-.103 .225a4.998 4.998 0 0 0 -.334 2.837l.027 .14a5 5 0 0 0 -3.091 9.009l.198 .14a4.998 4.998 0 0 0 4.42 .58l.174 -.066l-.773 3.095a1 1 0 0 0 .97 1.243h6l.113 -.006a1 1 0 0 0 .857 -1.237l-.774 -3.095l.174 .065a5 5 0 1 0 1.527 -9.727l.028 -.14a4.997 4.997 0 0 0 -4.925 -5.86z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TU={name:"ClubsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z"},null),e(" ")])}},EU={name:"CodeAsterixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-asterix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 11.875l3 -1.687"},null),e(" "),t("path",{d:"M12 11.875v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 -1.687"},null),e(" "),t("path",{d:"M12 11.875l3 1.688"},null),e(" "),t("path",{d:"M12 8.5v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 1.688"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},VU={name:"CodeCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 13.5l-1.5 -1.5l1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 10.5l1.5 1.5l-1.5 1.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 9.5l-2 5.5"},null),e(" ")])}},_U={name:"CodeCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l-2 -2l2 -2"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},WU={name:"CodeDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},XU={name:"CodeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},qU={name:"CodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-2.5 2.5"},null),e(" "),t("path",{d:"M14 4l-1.201 4.805m-.802 3.207l-2 7.988"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YU={name:"CodePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},UU={name:"CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M14 4l-4 16"},null),e(" ")])}},GU={name:"CoffeeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.73 -.565 1.783 -.923 3 -.99"},null),e(" "),t("path",{d:"M8 3c-.194 .14 -.364 .305 -.506 .49"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M14 10h3v3m-.257 3.743a6 6 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7"},null),e(" "),t("path",{d:"M20.116 16.124a3 3 0 0 0 -3.118 -4.953"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZU={name:"CoffeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1"},null),e(" "),t("path",{d:"M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z"},null),e(" "),t("path",{d:"M16.746 16.726a3 3 0 1 0 .252 -5.555"},null),e(" ")])}},KU={name:"CoffinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-2 6l2 12h6l2 -12l-2 -6z"},null),e(" "),t("path",{d:"M10 7v5"},null),e(" "),t("path",{d:"M8 9h4"},null),e(" "),t("path",{d:"M13 21h4l2 -12l-2 -6h-4"},null),e(" ")])}},QU={name:"CoinBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M10 7v10v-9"},null),e(" "),t("path",{d:"M13 7v1"},null),e(" "),t("path",{d:"M13 16v1"},null),e(" ")])}},JU={name:"CoinEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.401 8c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1"},null),e(" "),t("path",{d:"M7 10.5h4"},null),e(" "),t("path",{d:"M7 13.5h4"},null),e(" ")])}},tG={name:"CoinMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16h4v-7l4 4l4 -4v7h4"},null),e(" ")])}},eG={name:"CoinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-1m-2.82 1.171a2 2 0 0 0 1.82 2.829h1m2.824 2.822a2 2 0 0 1 -1.824 1.178h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 6v2m0 8v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nG={name:"CoinPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" ")])}},lG={name:"CoinRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 8h-6h1a3 3 0 0 1 0 6h-1l3 3"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" ")])}},rG={name:"CoinYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},oG={name:"CoinYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},sG={name:"CoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" ")])}},aG={name:"CoinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14c0 1.657 2.686 3 6 3s6 -1.343 6 -3s-2.686 -3 -6 -3s-6 1.343 -6 3z"},null),e(" "),t("path",{d:"M9 14v4c0 1.656 2.686 3 6 3s6 -1.344 6 -3v-4"},null),e(" "),t("path",{d:"M3 6c0 1.072 1.144 2.062 3 2.598s4.144 .536 6 0c1.856 -.536 3 -1.526 3 -2.598c0 -1.072 -1.144 -2.062 -3 -2.598s-4.144 -.536 -6 0c-1.856 .536 -3 1.526 -3 2.598z"},null),e(" "),t("path",{d:"M3 6v10c0 .888 .772 1.45 2 2"},null),e(" "),t("path",{d:"M3 11c0 .888 .772 1.45 2 2"},null),e(" ")])}},iG={name:"ColorFilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.58 13.79c.27 .68 .42 1.43 .42 2.21c0 1.77 -.77 3.37 -2 4.46a5.93 5.93 0 0 1 -4 1.54c-3.31 0 -6 -2.69 -6 -6c0 -2.76 1.88 -5.1 4.42 -5.79"},null),e(" "),t("path",{d:"M17.58 10.21c2.54 .69 4.42 3.03 4.42 5.79c0 3.31 -2.69 6 -6 6a5.93 5.93 0 0 1 -4 -1.54"},null),e(" "),t("path",{d:"M12 8m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},hG={name:"ColorPickerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M12 8l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dG={name:"ColorPickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"},null),e(" ")])}},cG={name:"ColorSwatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uG={name:"ColorSwatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" ")])}},pG={name:"ColumnInsertLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M5 12l4 0"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},gG={name:"ColumnInsertRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M15 12l4 0"},null),e(" "),t("path",{d:"M17 10l0 4"},null),e(" ")])}},wG={name:"Columns1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},vG={name:"Columns2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 -1v18"},null),e(" ")])}},fG={name:"Columns3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm6 -1v18m6 -18v18"},null),e(" ")])}},mG={name:"ColumnsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h2"},null),e(" "),t("path",{d:"M4 10h5.5"},null),e(" "),t("path",{d:"M4 14h5.5"},null),e(" "),t("path",{d:"M4 18h5.5"},null),e(" "),t("path",{d:"M14.5 6h5.5"},null),e(" "),t("path",{d:"M14.5 10h5.5"},null),e(" "),t("path",{d:"M18 14h2"},null),e(" "),t("path",{d:"M14.5 18h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kG={name:"ColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l5.5 0"},null),e(" "),t("path",{d:"M4 10l5.5 0"},null),e(" "),t("path",{d:"M4 14l5.5 0"},null),e(" "),t("path",{d:"M4 18l5.5 0"},null),e(" "),t("path",{d:"M14.5 6l5.5 0"},null),e(" "),t("path",{d:"M14.5 10l5.5 0"},null),e(" "),t("path",{d:"M14.5 14l5.5 0"},null),e(" "),t("path",{d:"M14.5 18l5.5 0"},null),e(" ")])}},bG={name:"CometIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-comet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" "),t("path",{d:"M4 4l7 7"},null),e(" "),t("path",{d:"M9 4l3.5 3.5"},null),e(" "),t("path",{d:"M4 9l3.5 3.5"},null),e(" ")])}},MG={name:"CommandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v8a2 2 0 1 1 -2 -2h8m3.411 3.417a2 2 0 0 1 -3.411 -1.417v-2m0 -4v-4a2 2 0 1 1 2 2h-4m-4 0h-2a2 2 0 0 1 -1.417 -3.411"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xG={name:"CommandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9a2 2 0 1 1 2 -2v10a2 2 0 1 1 -2 -2h10a2 2 0 1 1 -2 2v-10a2 2 0 1 1 2 2h-10"},null),e(" ")])}},zG={name:"CompassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l3 -1l-1 3m-1 3l-6 2l2 -6"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IG={name:"CompassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},yG={name:"ComponentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M18.5 14.5l2.5 -2.5l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M12.499 8.501l2.501 -2.501l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CG={name:"ComponentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M15 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 6l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" ")])}},SG={name:"Cone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5.002v.5l-8.13 14.99a1 1 0 0 1 -1.74 0l-8.13 -14.989v-.5c0 -1.659 4.03 -3.003 9 -3.003s9 1.344 9 3.002"},null),e(" ")])}},$G={name:"ConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.396 16.384l-7.526 -13.877a1 1 0 0 0 -1.74 0l-1.626 2.998m-1.407 2.594l-5.097 9.398v.5c0 1.66 4.03 3.003 9 3.003c3.202 0 6.014 -.558 7.609 -1.398"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AG={name:"ConePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.03 12.022l-5.16 -9.515a1 1 0 0 0 -1.74 0l-8.13 14.99v.5c0 1.66 4.03 3.003 9 3.003c.17 0 .34 -.002 .508 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},BG={name:"ConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.998v-.5l-8.13 -14.99a1 1 0 0 0 -1.74 0l-8.13 14.989v.5c0 1.659 4.03 3.003 9 3.003s9 -1.344 9 -3.002"},null),e(" ")])}},HG={name:"ConfettiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1"},null),e(" "),t("path",{d:"M5 5v1"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h1"},null),e(" "),t("path",{d:"M19 19v1"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39v0z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NG={name:"ConfettiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h2"},null),e(" "),t("path",{d:"M5 4v2"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h2"},null),e(" "),t("path",{d:"M19 18v2"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39z"},null),e(" ")])}},jG={name:"ConfuciusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confucius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19l3 2v-18"},null),e(" "),t("path",{d:"M4 10l8 -2"},null),e(" "),t("path",{d:"M4 18l8 -10"},null),e(" "),t("path",{d:"M20 18l-8 -8l8 -4"},null),e(" ")])}},PG={name:"ContainerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8.297 4.289a1 1 0 0 1 .703 -.289h6a1 1 0 0 1 1 1v7m0 4v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-11"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LG={name:"ContainerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},DG={name:"Contrast2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6m.878 -3.126a6 6 0 0 1 5.122 -2.874h2"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OG={name:"Contrast2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2"},null),e(" ")])}},FG={name:"ContrastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v5a4.984 4.984 0 0 0 3.522 -1.45m1.392 -2.623a5 5 0 0 0 -4.914 -5.927v1"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RG={name:"ContrastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 0 -10v10"},null),e(" ")])}},TG={name:"CookerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cooker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7h.01"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M5 11h14"},null),e(" ")])}},EG={name:"CookieManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 1 2.845 9.112l.147 .369l1.755 -.803c.969 -.443 2.12 -.032 2.571 .918a1.88 1.88 0 0 1 -.787 2.447l-.148 .076l-2.383 1.089v2.02l1.426 1.425l.114 .125a1.96 1.96 0 0 1 -2.762 2.762l-.125 -.114l-2.079 -2.08l-.114 -.124a1.957 1.957 0 0 1 -.161 -.22h-.599c-.047 .075 -.101 .15 -.16 .22l-.115 .125l-2.08 2.079a1.96 1.96 0 0 1 -2.886 -2.648l.114 -.125l1.427 -1.426v-2.019l-2.383 -1.09l-.148 -.075a1.88 1.88 0 0 1 -.787 -2.447c.429 -.902 1.489 -1.318 2.424 -.978l.147 .06l1.755 .803l.147 -.369a5 5 0 0 1 -2.15 -3.895l0 -.217a5 5 0 0 1 5 -5z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M10 7h.01"},null),e(" "),t("path",{d:"M14 7h.01"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" ")])}},VG={name:"CookieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M18.192 18.187a3 3 0 0 1 -.976 .652c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 .649 -.971m2.821 -1.174c.14 -.049 .263 -.095 .37 -.139c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852a6.579 6.579 0 0 0 -.135 .36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_G={name:"CookieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 14v.01"},null),e(" "),t("path",{d:"M11 8v.01"},null),e(" "),t("path",{d:"M13.148 3.476l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z"},null),e(" ")])}},WG={name:"CopyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XG={name:"CopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},qG={name:"CopyleftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.117 5.889a4.016 4.016 0 0 0 -5.543 -.23a1 1 0 0 0 1.32 1.502a2.016 2.016 0 0 1 2.783 .116a1.993 1.993 0 0 1 0 2.766a2.016 2.016 0 0 1 -2.783 .116a1 1 0 0 0 -1.32 1.501a4.016 4.016 0 0 0 5.543 -.23a3.993 3.993 0 0 0 0 -5.542z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YG={name:"CopyleftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.303 9.3a3.01 3.01 0 0 1 1.405 1.406m-.586 3.413a3.016 3.016 0 0 1 -4.122 .131"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UG={name:"CopyleftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9.75a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173"},null),e(" ")])}},GG={name:"CopyrightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.34 5.659a4.016 4.016 0 0 0 -5.543 .23a3.993 3.993 0 0 0 0 5.542a4.016 4.016 0 0 0 5.543 .23a1 1 0 0 0 -1.32 -1.502c-.81 .711 -2.035 .66 -2.783 -.116a1.993 1.993 0 0 1 0 -2.766a2.016 2.016 0 0 1 2.783 -.116a1 1 0 0 0 1.32 -1.501z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZG={name:"CopyrightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -.711 -.466m-3.41 .596a2.993 2.993 0 0 0 -.042 4.197a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KG={name:"CopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" ")])}},QG={name:"CornerDownLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a3 3 0 0 1 -3 3h-7"},null),e(" "),t("path",{d:"M13 10l-4 4l4 4m-5 -8l-4 4l4 4"},null),e(" ")])}},JG={name:"CornerDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6v6a3 3 0 0 1 -3 3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},tZ={name:"CornerDownRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v6a3 3 0 0 0 3 3h7"},null),e(" "),t("path",{d:"M10 10l4 4l-4 4m5 -8l4 4l-4 4"},null),e(" ")])}},eZ={name:"CornerDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},nZ={name:"CornerLeftDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v7"},null),e(" "),t("path",{d:"M13 10l-4 4l-4 -4m8 5l-4 4l-4 -4"},null),e(" ")])}},lZ={name:"CornerLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-6a3 3 0 0 0 -3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},rZ={name:"CornerLeftUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-6a3 3 0 0 1 -3 -3v-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l-4 4m8 -5l-4 -4l-4 4"},null),e(" ")])}},oZ={name:"CornerLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-6a3 3 0 0 1 -3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},sZ={name:"CornerRightDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h6a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M10 10l4 4l4 -4m-8 5l4 4l4 -4"},null),e(" ")])}},aZ={name:"CornerRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h6a3 3 0 0 1 3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},iZ={name:"CornerRightUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h6a3 3 0 0 0 3 -3v-7"},null),e(" "),t("path",{d:"M10 13l4 -4l4 4m-8 -5l4 -4l4 4"},null),e(" ")])}},hZ={name:"CornerRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18h6a3 3 0 0 0 3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},dZ={name:"CornerUpLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-6a3 3 0 0 0 -3 -3h-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l4 -4m-5 8l-4 -4l4 -4"},null),e(" ")])}},cZ={name:"CornerUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v-6a3 3 0 0 0 -3 -3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},uZ={name:"CornerUpRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-6a3 3 0 0 1 3 -3h7"},null),e(" "),t("path",{d:"M10 13l4 -4l-4 -4m5 8l4 -4l-4 -4"},null),e(" ")])}},pZ={name:"CornerUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-6a3 3 0 0 1 3 -3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},gZ={name:"Cpu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},wZ={name:"CpuOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a1 1 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698"},null),e(" "),t("path",{d:"M13 9h2v2m0 4h-6v-6"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vZ={name:"CpuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 9h6v6h-6z"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},fZ={name:"CraneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-12"},null),e(" "),t("path",{d:"M9 5v-2l-1 1"},null),e(" "),t("path",{d:"M6 6l-3 3h6"},null),e(" "),t("path",{d:"M13 9h8"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mZ={name:"CraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-18l-6 6h18"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 1 1 -2 2"},null),e(" ")])}},kZ={name:"CreativeCommonsByIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-by",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 13v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},bZ={name:"CreativeCommonsNcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 15l3 3"},null),e(" ")])}},MZ={name:"CreativeCommonsNdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},xZ={name:"CreativeCommonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.638 5.634a9 9 0 1 0 12.723 12.733m1.686 -2.332a9 9 0 0 0 -12.093 -12.077"},null),e(" "),t("path",{d:"M10.5 10.5a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5a2.194 2.194 0 0 0 -2.309 -.302"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zZ={name:"CreativeCommonsSaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-sa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 16a4 4 0 1 0 -4 -4v1"},null),e(" "),t("path",{d:"M6 12l2 2l2 -2"},null),e(" ")])}},IZ={name:"CreativeCommonsZeroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-zero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 4 0 1 0 6 0a3 4 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 9l-4 6"},null),e(" ")])}},yZ={name:"CreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" ")])}},CZ={name:"CreditCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87"},null),e(" "),t("path",{d:"M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87"},null),e(" "),t("path",{d:"M3 11l8 0"},null),e(" "),t("path",{d:"M15 11l6 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},SZ={name:"CreditCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},$Z={name:"CricketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cricket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 18.79l-1 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617"},null),e(" "),t("path",{d:"M10.5 7.5l6 6"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},AZ={name:"CropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5v10a1 1 0 0 0 1 1h10"},null),e(" "),t("path",{d:"M5 8h10a1 1 0 0 1 1 1v10"},null),e(" ")])}},BZ={name:"CrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.117 .007a1 1 0 0 0 -.883 .993v4h-4a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 .993 .883h4v8a1 1 0 0 0 1 1h4l.117 -.007a1 1 0 0 0 .883 -.993v-8h4a1 1 0 0 0 1 -1v-4l-.007 -.117a1 1 0 0 0 -.993 -.883h-4v-4a1 1 0 0 0 -1 -1h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HZ={name:"CrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NZ={name:"CrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z"},null),e(" ")])}},jZ={name:"CrosshairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crosshair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},PZ={name:"CrownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-13l-1.865 -9.327a.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a.25 .25 0 0 1 .401 .244l-1.363 6.818"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LZ={name:"CrownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l4 6l5 -4l-2 10h-14l-2 -10l5 4z"},null),e(" ")])}},DZ={name:"CrutchesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.178 4.174a2 2 0 0 1 1.822 -1.174h4a2 2 0 1 1 0 4h-3"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .097 -.155m.407 -3.601v-3"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092"},null),e(" "),t("path",{d:"M10 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OZ={name:"CrutchesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},FZ={name:"CrystalBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crystal-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.73 17.018a8 8 0 1 1 10.54 0"},null),e(" "),t("path",{d:"M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M11 7a3 3 0 0 0 -3 3"},null),e(" ")])}},RZ={name:"CsvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-csv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M17 8l2 8l2 -8"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},TZ={name:"CubeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.83 16.809c.11 -.248 .17 -.52 .17 -.801v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-3.012 1.725m-2.547 1.458l-1.441 .825c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l5.544 -3.174"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M14.532 10.538l6.198 -3.578"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EZ={name:"CubePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-4.509a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.007c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},VZ={name:"CubeSendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M11 9.5v5.5l5 3"},null),e(" "),t("path",{d:"M16 12.545l5 -3.03"},null),e(" "),t("path",{d:"M7 9h-5"},null),e(" "),t("path",{d:"M7 12h-3"},null),e(" "),t("path",{d:"M7 15h-1"},null),e(" ")])}},_Z={name:"CubeUnfoldedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-unfolded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 15h10v5h5v-5h5v-5h-10v-5h-5v5h-5z"},null),e(" "),t("path",{d:"M7 15v-5h5v5h5v-5"},null),e(" ")])}},WZ={name:"CubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 16.008v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.008c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l7 -4.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" ")])}},XZ={name:"CupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3v3h6m4 0h4v-3h-7"},null),e(" "),t("path",{d:"M17.5 11l-.323 2.154m-.525 3.497l-.652 4.349h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qZ={name:"CupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11h14v-3h-14z"},null),e(" "),t("path",{d:"M17.5 11l-1.5 10h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" ")])}},YZ={name:"CurlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v2a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M8 5h6a2 2 0 0 1 2 2v2"},null),e(" ")])}},UZ={name:"CurlyLoopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curly-loop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5"},null),e(" ")])}},GZ={name:"CurrencyAfghaniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-afghani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13h-3.5a3.5 3.5 0 1 1 3.5 -3.5v6.5h-7"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" ")])}},ZZ={name:"CurrencyBahrainiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bahraini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v1a4 4 0 0 0 4 4h2a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M7 19.01v-.01"},null),e(" "),t("path",{d:"M14 15.01v-.01"},null),e(" "),t("path",{d:"M17 15h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},KZ={name:"CurrencyBahtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-baht",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 12h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 6v12"},null),e(" "),t("path",{d:"M11 4v2"},null),e(" "),t("path",{d:"M11 18v2"},null),e(" ")])}},QZ={name:"CurrencyBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h8a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M8 6l0 12"},null),e(" "),t("path",{d:"M8 12l6 0"},null),e(" "),t("path",{d:"M9 3l0 3"},null),e(" "),t("path",{d:"M13 3l0 3"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M13 18l0 3"},null),e(" ")])}},JZ={name:"CurrencyCentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-cent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536"},null),e(" "),t("path",{d:"M12 20v-2"},null),e(" "),t("path",{d:"M12 6v-2"},null),e(" ")])}},tK={name:"CurrencyDinarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dinar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20.01v-.01"},null),e(" "),t("path",{d:"M6 13l2.386 -.9a1 1 0 0 0 -.095 -1.902l-1.514 -.404a1 1 0 0 1 -.102 -1.9l2.325 -.894"},null),e(" "),t("path",{d:"M3 14v1a3 3 0 0 0 3 3h4.161a3 3 0 0 0 2.983 -3.32l-1.144 -10.68"},null),e(" "),t("path",{d:"M16 17l1 1h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},eK={name:"CurrencyDirhamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dirham",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 19h-3.5"},null),e(" "),t("path",{d:"M8.599 16.479a1.5 1.5 0 1 0 -1.099 2.521"},null),e(" "),t("path",{d:"M7 4v9"},null),e(" "),t("path",{d:"M15 13h1.888a1.5 1.5 0 0 0 1.296 -2.256l-2.184 -3.744"},null),e(" "),t("path",{d:"M11 13.01v-.01"},null),e(" ")])}},nK={name:"CurrencyDogecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dogecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h6"},null),e(" "),t("path",{d:"M9 6v12"},null),e(" "),t("path",{d:"M6 18h6a6 6 0 1 0 0 -12h-6"},null),e(" ")])}},lK={name:"CurrencyDollarAustralianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-australian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l3.279 -11.476a.75 .75 0 0 1 1.442 0l3.279 11.476"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M4.5 14h5"},null),e(" ")])}},rK={name:"CurrencyDollarBruneiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-brunei",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},oK={name:"CurrencyDollarCanadianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-canadian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 18h-1a6 6 0 1 1 0 -12h1"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},sK={name:"CurrencyDollarGuyaneseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-guyanese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-3a4 4 0 0 0 -4 4v4a4 4 0 0 0 4 4h3v-6h-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},aK={name:"CurrencyDollarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4m-2.557 1.431a3 3 0 0 0 2.557 4.569h2m4.564 4.558a3 3 0 0 1 -2.564 1.442h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iK={name:"CurrencyDollarSingaporeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-singapore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-4a3 3 0 1 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},hK={name:"CurrencyDollarZimbabweanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-zimbabwean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h7l-7 12h7"},null),e(" ")])}},dK={name:"CurrencyDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" ")])}},cK={name:"CurrencyDongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 16v-12"},null),e(" "),t("path",{d:"M17 5h-4"},null),e(" ")])}},uK={name:"CurrencyDramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a6 6 0 1 1 12 0v10"},null),e(" "),t("path",{d:"M12 16h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" ")])}},pK={name:"CurrencyEthereumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ethereum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l6 -9l6 9l-6 9z"},null),e(" "),t("path",{d:"M6 12l6 -3l6 3l-6 2z"},null),e(" ")])}},gK={name:"CurrencyEuroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7c-1.977 -2.26 -4.954 -2.602 -7.234 -1.04m-1.913 2.079c-1.604 2.72 -1.374 6.469 .69 8.894c2.292 2.691 6 2.758 8.356 .18"},null),e(" "),t("path",{d:"M10 10h-5m0 4h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wK={name:"CurrencyEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7a6 7 0 1 0 0 10"},null),e(" "),t("path",{d:"M13 10h-8m0 4h8"},null),e(" ")])}},vK={name:"CurrencyForintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-forint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4h-4a3 3 0 0 0 -3 3v12"},null),e(" "),t("path",{d:"M10 11h-6"},null),e(" "),t("path",{d:"M16 4v13a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M19 9h-5"},null),e(" ")])}},fK={name:"CurrencyFrankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-frank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h-6a2 2 0 0 0 -2 2v12"},null),e(" "),t("path",{d:"M7 15h4"},null),e(" "),t("path",{d:"M9 11h7"},null),e(" ")])}},mK={name:"CurrencyGuaraniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-guarani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536c.732 -.66 1.064 -2.148 1 -4.464h-5"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" ")])}},kK={name:"CurrencyHryvniaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-hryvnia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a2.64 2.64 0 0 1 2.562 -2h3.376a2.64 2.64 0 0 1 2.562 2a2.57 2.57 0 0 1 -1.344 2.922l-5.876 2.938a3.338 3.338 0 0 0 -1.78 3.64a3.11 3.11 0 0 0 3.05 2.5h2.888a2.64 2.64 0 0 0 2.562 -2"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},bK={name:"CurrencyIranianRialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-iranian-rial",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v9a2 2 0 0 1 -2 2h-1a3 3 0 0 1 -3 -3v-1"},null),e(" "),t("path",{d:"M12 5v8a1 1 0 0 0 1 1h1a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M21 14v1.096a5 5 0 0 1 -3.787 4.85l-.213 .054"},null),e(" "),t("path",{d:"M11 18h.01"},null),e(" "),t("path",{d:"M14 18h.01"},null),e(" ")])}},MK={name:"CurrencyKipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-kip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M9 5v14"},null),e(" "),t("path",{d:"M16 19a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7"},null),e(" ")])}},xK={name:"CurrencyKroneCzechIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-czech",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M19 6l-2 2l-2 -2"},null),e(" "),t("path",{d:"M19 12h-2a3 3 0 0 0 0 6h2"},null),e(" ")])}},zK={name:"CurrencyKroneDanishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-danish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" "),t("path",{d:"M20 18.01v-.01"},null),e(" ")])}},IK={name:"CurrencyKroneSwedishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-swedish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" ")])}},yK={name:"CurrencyLariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 13a6 6 0 1 0 -6 6"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M10 5v7"},null),e(" "),t("path",{d:"M14 12v-7"},null),e(" ")])}},CK={name:"CurrencyLeuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-leu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h-7a3 3 0 0 1 -3 -3v-10"},null),e(" ")])}},SK={name:"CurrencyLiraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5v15a7 7 0 0 0 7 -7"},null),e(" "),t("path",{d:"M6 15l8 -4"},null),e(" "),t("path",{d:"M14 7l-8 4"},null),e(" ")])}},$K={name:"CurrencyLitecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-litecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717"},null),e(" "),t("path",{d:"M14 9l-9 4"},null),e(" ")])}},AK={name:"CurrencyLydIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lyd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 15h.01"},null),e(" "),t("path",{d:"M21 5v10a2 2 0 0 1 -2 2h-2.764a2 2 0 0 1 -1.789 -1.106l-.447 -.894"},null),e(" "),t("path",{d:"M5 8l2.773 4.687c.427 .697 .234 1.626 -.43 2.075a1.38 1.38 0 0 1 -.773 .238h-2.224a.93 .93 0 0 1 -.673 -.293l-.673 -.707"},null),e(" ")])}},BK={name:"CurrencyManatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-manat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19v-7a5 5 0 1 1 10 0v7"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},HK={name:"CurrencyMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18h3v-11l6 7l6 -7v11h3"},null),e(" ")])}},NK={name:"CurrencyNairaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-naira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},jK={name:"CurrencyNanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-nano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 -16"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M17 20l-10 -16"},null),e(" ")])}},PK={name:"CurrencyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LK={name:"CurrencyPaangaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-paanga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h8"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},DK={name:"CurrencyPesoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-peso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5"},null),e(" "),t("path",{d:"M18 8h-12"},null),e(" "),t("path",{d:"M18 11h-12"},null),e(" ")])}},OK={name:"CurrencyPoundOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5m1.192 -2.825a4 4 0 0 1 6.258 .825m-3.45 6h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FK={name:"CurrencyPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5a4 4 0 0 1 7.45 -2m-2.55 6h-7"},null),e(" ")])}},RK={name:"CurrencyQuetzalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-quetzal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13 13l5 5"},null),e(" ")])}},TK={name:"CurrencyRealIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-real",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M4 18v-12h3a3 3 0 1 1 0 6h-3c5.5 0 5 4 6 6"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" ")])}},EK={name:"CurrencyRenminbiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-renminbi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v8a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M19 9h-14"},null),e(" "),t("path",{d:"M19 5h-14"},null),e(" "),t("path",{d:"M9 9v4c0 2.5 -.667 4 -2 6"},null),e(" ")])}},VK={name:"CurrencyRippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 12h3l2 -2.5"},null),e(" "),t("path",{d:"M15 14.5l-2 -2.5"},null),e(" ")])}},_K={name:"CurrencyRiyalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-riyal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2"},null),e(" "),t("path",{d:"M18 12.01v-.01"},null),e(" "),t("path",{d:"M22 10v1a5 5 0 0 1 -5 5"},null),e(" ")])}},WK={name:"CurrencyRubelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rubel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M14 15h-8"},null),e(" ")])}},XK={name:"CurrencyRufiyaaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rufiyaa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16h.01"},null),e(" "),t("path",{d:"M4 16c9.5 -4 11.5 -8 14 -9"},null),e(" "),t("path",{d:"M12 8l5 3"},null),e(" ")])}},qK={name:"CurrencyRupeeNepaleseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee-nepalese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M21 17l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707"},null),e(" ")])}},YK={name:"CurrencyRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5h-11h3a4 4 0 0 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M7 9l11 0"},null),e(" ")])}},UK={name:"CurrencyShekelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-shekel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-12h4a4 4 0 0 1 4 4v4"},null),e(" "),t("path",{d:"M18 6v12h-4a4 4 0 0 1 -4 -4v-4"},null),e(" ")])}},GK={name:"CurrencySolanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-solana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h12l4 -4h-12z"},null),e(" "),t("path",{d:"M8 14l-4 -4h12l4 4"},null),e(" "),t("path",{d:"M16 10l4 -4h-12l-4 4"},null),e(" ")])}},ZK={name:"CurrencySomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-som",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18v-12h-5v10a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M14 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},KK={name:"CurrencyTakaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-taka",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7a2 2 0 1 1 4 0v9a3 3 0 0 0 6 0v-.5"},null),e(" "),t("path",{d:"M8 11h6"},null),e(" ")])}},QK={name:"CurrencyTengeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tenge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M12 9v10"},null),e(" ")])}},JK={name:"CurrencyTugrikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tugrik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6h10"},null),e(" "),t("path",{d:"M12 6v13"},null),e(" "),t("path",{d:"M8 17l8 -3"},null),e(" "),t("path",{d:"M16 10l-8 3"},null),e(" ")])}},tQ={name:"CurrencyWonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-won",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l3.245 11.358a.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a.85 .85 0 0 0 1.624 -.035l3.245 -11.358"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M21 14h-18"},null),e(" ")])}},eQ={name:"CurrencyYenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7m5 -7l-3.328 4.66"},null),e(" "),t("path",{d:"M8 17h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nQ={name:"CurrencyYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7m10 0l-5 7"},null),e(" "),t("path",{d:"M8 17l8 0"},null),e(" "),t("path",{d:"M8 13l8 0"},null),e(" ")])}},lQ={name:"CurrencyYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7"},null),e(" "),t("path",{d:"M17 5l-5 7"},null),e(" "),t("path",{d:"M8 13h8"},null),e(" ")])}},rQ={name:"CurrencyZlotyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-zloty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7l7 -7h-7"},null),e(" "),t("path",{d:"M17 18v-13"},null),e(" "),t("path",{d:"M14 14.5l6 -3.5"},null),e(" ")])}},oQ={name:"CurrencyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" ")])}},sQ={name:"CurrentLocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.685 10.661c-.3 -.6 -.795 -1.086 -1.402 -1.374m-3.397 .584a3 3 0 1 0 4.24 4.245"},null),e(" "),t("path",{d:"M6.357 6.33a8 8 0 1 0 11.301 11.326m1.642 -2.378a8 8 0 0 0 -10.597 -10.569"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aQ={name:"CurrentLocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" "),t("path",{d:"M12 2l0 2"},null),e(" "),t("path",{d:"M12 20l0 2"},null),e(" "),t("path",{d:"M20 12l2 0"},null),e(" "),t("path",{d:"M2 12l2 0"},null),e(" ")])}},iQ={name:"CursorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hQ={name:"CursorTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3"},null),e(" ")])}},dQ={name:"CutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.15 14.85l8.85 -10.85"},null),e(" "),t("path",{d:"M6 4l8.85 10.85"},null),e(" ")])}},cQ={name:"CylinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.23 5.233c-.15 .245 -.23 .502 -.23 .767c0 1.131 1.461 2.117 3.62 2.628m3.38 .372c.332 0 .658 -.01 .977 -.029c3.404 -.204 6.023 -1.456 6.023 -2.971c0 -1.657 -3.134 -3 -7 -3c-1.645 0 -3.158 .243 -4.353 .65"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c3.245 0 5.974 -.946 6.767 -2.23m.233 -3.77v-9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uQ={name:"CylinderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c.173 0 .345 -.003 .515 -.008m6.485 -8.992v-6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},pQ={name:"CylinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12"},null),e(" ")])}},gQ={name:"DashboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.175 11.178a2 2 0 1 0 2.653 2.634"},null),e(" "),t("path",{d:"M14.5 10.5l1 -1"},null),e(" "),t("path",{d:"M8.621 4.612a9 9 0 0 1 11.721 11.72m-1.516 2.488a9.008 9.008 0 0 1 -1.226 1.18h-11.2a9 9 0 0 1 -.268 -13.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wQ={name:"DashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13.45 11.55l2.05 -2.05"},null),e(" "),t("path",{d:"M6.4 20a9 9 0 1 1 11.2 0z"},null),e(" ")])}},vQ={name:"DatabaseCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.21 0 .42 -.003 .626 -.01"},null),e(" "),t("path",{d:"M20 11.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},fQ={name:"DatabaseDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.415 0 .822 -.012 1.22 -.035"},null),e(" "),t("path",{d:"M20 10v-4"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.352 0 .698 -.009 1.037 -.025"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},mQ={name:"DatabaseEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.478 0 .947 -.016 1.402 -.046"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.526 3.04 2.786 6.972 2.975"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},kQ={name:"DatabaseExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.182 -.086 3.148 -.241m4.852 -2.759v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c1.064 0 2.079 -.078 3.007 -.22"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},bQ={name:"DatabaseExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.183 -.086 3.15 -.241"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.157 0 .312 -.002 .466 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},MQ={name:"DatabaseHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.453 2.755 2.665 6.414 2.941"},null),e(" "),t("path",{d:"M20 11v-5"},null),e(" "),t("path",{d:"M4 12v6c0 1.579 3.253 2.873 7.383 2.991"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xQ={name:"DatabaseImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.856 0 1.68 -.05 2.454 -.144m5.546 -2.856v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.171 0 .341 -.002 .51 -.006"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zQ={name:"DatabaseLeakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-leak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v12c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-12"},null),e(" "),t("path",{d:"M4 15a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1"},null),e(" ")])}},IQ={name:"DatabaseMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.164 0 .328 -.002 .49 -.006"},null),e(" "),t("path",{d:"M20 15v-3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},yQ={name:"DatabaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.983 8.978c3.955 -.182 7.017 -1.446 7.017 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.661 0 -3.204 .19 -4.483 .515m-2.783 1.228c-.471 .382 -.734 .808 -.734 1.257c0 1.22 1.944 2.271 4.734 2.74"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.986 0 1.93 -.067 2.802 -.19m3.187 -.82c1.251 -.53 2.011 -1.228 2.011 -1.99v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c3.217 0 5.991 -.712 7.261 -1.74m.739 -3.26v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CQ={name:"DatabasePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.075 0 2.1 -.08 3.037 -.224"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.166 0 .331 -.002 .495 -.006"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},SQ={name:"DatabaseSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3m8 -3.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},$Q={name:"DatabaseShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.361 0 .716 -.009 1.065 -.026"},null),e(" "),t("path",{d:"M20 13v-7"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},AQ={name:"DatabaseStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.43 2.67 2.627 6.243 2.927"},null),e(" "),t("path",{d:"M20 10.5v-4.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.546 3.12 2.82 7.128 2.982"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},BQ={name:"DatabaseXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.537 0 1.062 -.02 1.57 -.058"},null),e(" "),t("path",{d:"M20 13.5v-7.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.384 0 .762 -.01 1.132 -.03"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},HQ={name:"DatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v6a8 3 0 0 0 16 0v-6"},null),e(" "),t("path",{d:"M4 12v6a8 3 0 0 0 16 0v-6"},null),e(" ")])}},NQ={name:"DecimalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-decimal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" ")])}},jQ={name:"DeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3c0 2 1 3 4 3c2 0 3 1 3 3"},null),e(" "),t("path",{d:"M21 3c0 2 -1 3 -4 3c-2 0 -3 .333 -3 3"},null),e(" "),t("path",{d:"M12 18c-1 0 -4 -3 -4 -6c0 -2 1.333 -3 4 -3s4 1 4 3c0 3 -3 6 -4 6"},null),e(" "),t("path",{d:"M15.185 14.889l.095 -.18a4 4 0 1 1 -6.56 0"},null),e(" "),t("path",{d:"M17 3c0 1.333 -.333 2.333 -1 3"},null),e(" "),t("path",{d:"M7 3c0 1.333 .333 2.333 1 3"},null),e(" "),t("path",{d:"M7 6c-2.667 .667 -4.333 1.667 -5 3"},null),e(" "),t("path",{d:"M17 6c2.667 .667 4.333 1.667 5 3"},null),e(" "),t("path",{d:"M8.5 10l-1.5 -1"},null),e(" "),t("path",{d:"M15.5 10l1.5 -1"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},PQ={name:"DeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16l-8 -16z"},null),e(" ")])}},LQ={name:"DentalBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l1 2.5l-2 2l2 2"},null),e(" ")])}},DQ={name:"DentalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OQ={name:"DentalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" ")])}},FQ={name:"DeselectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deselect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M16 16h-7a1 1 0 0 1 -1 -1v-7"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RQ={name:"DetailsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M20.986 16.984a2 2 0 0 0 -.146 -.734l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.821 1.417m-1.469 2.534l-4.81 8.299a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v5m0 4v7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TQ={name:"DetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v16"},null),e(" ")])}},EQ={name:"DeviceAirpodsCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M3 4m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M7 10v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5"},null),e(" ")])}},VQ={name:"DeviceAirpodsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4a4 4 0 0 1 4 3.8l0 .2v10.5a1.5 1.5 0 0 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8l0 -.2a4 4 0 0 1 4 -4z"},null),e(" "),t("path",{d:"M18 4a4 4 0 0 0 -4 3.8l0 .2v10.5a1.5 1.5 0 0 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8l0 -.2a4 4 0 0 0 -4 -4z"},null),e(" ")])}},_Q={name:"DeviceAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},WQ={name:"DeviceAudioTapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-audio-tape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M3 17l4 -3h10l4 3"},null),e(" "),t("circle",{cx:"7.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" ")])}},XQ={name:"DeviceCameraPhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-camera-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M13 7h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M17 15v-1"},null),e(" ")])}},qQ={name:"DeviceCctvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-3a1 1 0 0 1 -1 -1v-2c0 -.275 .11 -.523 .29 -.704m3.71 -.296h13a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-9"},null),e(" "),t("path",{d:"M10.36 10.35a4 4 0 1 0 5.285 5.3"},null),e(" "),t("path",{d:"M19 7v7c0 .321 -.022 .637 -.064 .947m-1.095 2.913a7 7 0 0 1 -12.841 -3.86l0 -7"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YQ={name:"DeviceCctvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 7v7a7 7 0 0 1 -14 0v-7"},null),e(" "),t("path",{d:"M12 14l.01 0"},null),e(" ")])}},UQ={name:"DeviceComputerCameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695"},null),e(" "),t("path",{d:"M9.13 9.122a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GQ={name:"DeviceComputerCameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" ")])}},ZQ={name:"DeviceDesktopAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" ")])}},KQ={name:"DeviceDesktopBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 16h-10.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},QQ={name:"DeviceDesktopCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},JQ={name:"DeviceDesktopCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},tJ={name:"DeviceDesktopCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},eJ={name:"DeviceDesktopCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},nJ={name:"DeviceDesktopDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v5.5"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},lJ={name:"DeviceDesktopDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},rJ={name:"DeviceDesktopExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16h-11a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},oJ={name:"DeviceDesktopHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sJ={name:"DeviceDesktopMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},aJ={name:"DeviceDesktopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1m-4 0h-12a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iJ={name:"DeviceDesktopPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},hJ={name:"DeviceDesktopPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},dJ={name:"DeviceDesktopPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},cJ={name:"DeviceDesktopQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},uJ={name:"DeviceDesktopSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 16h-7.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},pJ={name:"DeviceDesktopShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h5.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},gJ={name:"DeviceDesktopStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},wJ={name:"DeviceDesktopUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},vJ={name:"DeviceDesktopXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},fJ={name:"DeviceDesktopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" ")])}},mJ={name:"DeviceFloppyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-floppy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 4l0 4l-6 0l0 -4"},null),e(" ")])}},kJ={name:"DeviceGamepad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h3.5a5 5 0 0 1 0 10h-5.5l-4.015 4.227a2.3 2.3 0 0 1 -3.923 -2.035l1.634 -8.173a5 5 0 0 1 4.904 -4.019h3.4z"},null),e(" "),t("path",{d:"M14 15l4.07 4.284a2.3 2.3 0 0 0 3.925 -2.023l-1.6 -8.232"},null),e(" "),t("path",{d:"M8 9v2"},null),e(" "),t("path",{d:"M7 10h2"},null),e(" "),t("path",{d:"M14 10h2"},null),e(" ")])}},bJ={name:"DeviceGamepadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 12h4m-2 -2v4"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M18 13l0 .01"},null),e(" ")])}},MJ={name:"DeviceHeartMonitorFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-4 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-6 -6.764l-.106 .211a1 1 0 0 1 -.77 .545l-.124 .008l-5 -.001v3.001h14v-3.001l-4.382 .001l-.724 1.447a1 1 0 0 1 -1.725 .11l-.063 -.11l-1.106 -2.211zm7 -4.236h-12a1 1 0 0 0 -.993 .883l-.007 .117v1.999l4.381 .001l.725 -1.447a1 1 0 0 1 1.725 -.11l.063 .11l1.106 2.21l.106 -.21a1 1 0 0 1 .77 -.545l.124 -.008l5 -.001v-1.999a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xJ={name:"DeviceHeartMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h6l1 -2l2 4l1 -2h6"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M14 17v.01"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" ")])}},zJ={name:"DeviceImacBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h5.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},IJ={name:"DeviceImacCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h12.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},yJ={name:"DeviceImacCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},CJ={name:"DeviceImacCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},SJ={name:"DeviceImacCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},$J={name:"DeviceImacDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},AJ={name:"DeviceImacDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},BJ={name:"DeviceImacExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},HJ={name:"DeviceImacHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M3 13h9"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},NJ={name:"DeviceImacMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},jJ={name:"DeviceImacOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h13a1 1 0 0 1 1 1v12c0 .28 -.115 .532 -.3 .713m-3.7 .287h-13a1 1 0 0 1 -1 -1v-12c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M3 13h10m4 0h4"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PJ={name:"DeviceImacPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},LJ={name:"DeviceImacPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" ")])}},DJ={name:"DeviceImacPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OJ={name:"DeviceImacQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17h-10a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h11.5"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FJ={name:"DeviceImacSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},RJ={name:"DeviceImacShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TJ={name:"DeviceImacStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h3"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},EJ={name:"DeviceImacUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},VJ={name:"DeviceImacXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},_J={name:"DeviceImacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-12z"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" ")])}},WJ={name:"DeviceIpadBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},XJ={name:"DeviceIpadCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},qJ={name:"DeviceIpadCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},YJ={name:"DeviceIpadCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},UJ={name:"DeviceIpadCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},GJ={name:"DeviceIpadDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ZJ={name:"DeviceIpadDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},KJ={name:"DeviceIpadExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},QJ={name:"DeviceIpadHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},JJ={name:"DeviceIpadHorizontalBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ttt={name:"DeviceIpadHorizontalCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ett={name:"DeviceIpadHorizontalCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" ")])}},ntt={name:"DeviceIpadHorizontalCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ltt={name:"DeviceIpadHorizontalCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rtt={name:"DeviceIpadHorizontalDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ott={name:"DeviceIpadHorizontalDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},stt={name:"DeviceIpadHorizontalExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},att={name:"DeviceIpadHorizontalHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},itt={name:"DeviceIpadHorizontalMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},htt={name:"DeviceIpadHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a2 2 0 0 1 2 2v12m-2 2h-16a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dtt={name:"DeviceIpadHorizontalPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},ctt={name:"DeviceIpadHorizontalPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},utt={name:"DeviceIpadHorizontalPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ptt={name:"DeviceIpadHorizontalQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},gtt={name:"DeviceIpadHorizontalSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},wtt={name:"DeviceIpadHorizontalShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},vtt={name:"DeviceIpadHorizontalStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ftt={name:"DeviceIpadHorizontalUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},mtt={name:"DeviceIpadHorizontalXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" ")])}},ktt={name:"DeviceIpadHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" ")])}},btt={name:"DeviceIpadMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Mtt={name:"DeviceIpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h12a2 2 0 0 1 2 2v12m0 4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16"},null),e(" "),t("path",{d:"M9 19h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xtt={name:"DeviceIpadPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},ztt={name:"DeviceIpadPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Itt={name:"DeviceIpadPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ytt={name:"DeviceIpadQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Ctt={name:"DeviceIpadSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Stt={name:"DeviceIpadShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h3.5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},$tt={name:"DeviceIpadStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Att={name:"DeviceIpadUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" ")])}},Btt={name:"DeviceIpadXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" ")])}},Htt={name:"DeviceIpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-3 15h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z"},null),e(" ")])}},Ntt={name:"DeviceLandlinePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-landline-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M16 4h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M12 8h-6v3h6z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M6 14v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" "),t("path",{d:"M6 17v.01"},null),e(" ")])}},jtt={name:"DeviceLaptopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ptt={name:"DeviceLaptopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" "),t("path",{d:"M5 6m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Ltt={name:"DeviceMobileBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Dtt={name:"DeviceMobileCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Ott={name:"DeviceMobileChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 9.5l-1 2.5h2l-1 2.5"},null),e(" ")])}},Ftt={name:"DeviceMobileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v9.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Rtt={name:"DeviceMobileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Ttt={name:"DeviceMobileCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Ett={name:"DeviceMobileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Vtt={name:"DeviceMobileDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},_tt={name:"DeviceMobileExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Wtt={name:"DeviceMobileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-8a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h8zm-4 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1 -12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xtt={name:"DeviceMobileHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},qtt={name:"DeviceMobileMessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3h10v8h-3l-4 2v-2h-3z"},null),e(" "),t("path",{d:"M15 16v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" ")])}},Ytt={name:"DeviceMobileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Utt={name:"DeviceMobileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.159 3.185c.256 -.119 .54 -.185 .841 -.185h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Gtt={name:"DeviceMobilePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Ztt={name:"DeviceMobilePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Ktt={name:"DeviceMobilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Qtt={name:"DeviceMobileQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Jtt={name:"DeviceMobileRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M7 12h-.01"},null),e(" ")])}},tet={name:"DeviceMobileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},eet={name:"DeviceMobileShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},net={name:"DeviceMobileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ret={name:"DeviceMobileUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},oet={name:"DeviceMobileVibrationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-vibration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l2 0"},null),e(" "),t("path",{d:"M9 17l0 .01"},null),e(" "),t("path",{d:"M21 6l-2 3l2 3l-2 3l2 3"},null),e(" ")])}},set={name:"DeviceMobileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},aet={name:"DeviceMobileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},iet={name:"DeviceNintendoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.713 4.718a4 4 0 0 0 -1.713 3.282v8a4 4 0 0 0 4 4h3v-10m0 -4v-2h-2"},null),e(" "),t("path",{d:"M14 10v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6"},null),e(" "),t("path",{d:"M6.5 8.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},het={name:"DeviceNintendoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z"},null),e(" "),t("path",{d:"M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z"},null),e(" "),t("circle",{cx:"17.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"6.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" ")])}},det={name:"DeviceRemoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-remote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M10 15v.01"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" "),t("path",{d:"M14 18v.01"},null),e(" "),t("path",{d:"M14 15v.01"},null),e(" ")])}},cet={name:"DeviceSdCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sd-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2h-6.172a2 2 0 0 0 -1.414 .586l-3.828 3.828a2 2 0 0 0 -.586 1.414v10.172a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M13 6v2"},null),e(" "),t("path",{d:"M16 6v2"},null),e(" "),t("path",{d:"M10 7v1"},null),e(" ")])}},uet={name:"DeviceSim1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 11l2 -2v8"},null),e(" ")])}},pet={name:"DeviceSim2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},get={name:"DeviceSim3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},wet={name:"DeviceSimIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M9 11h3v6"},null),e(" "),t("path",{d:"M15 17v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" ")])}},vet={name:"DeviceSpeakerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11.114 11.133a3 3 0 1 0 3.754 3.751"},null),e(" "),t("path",{d:"M12 7v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fet={name:"DeviceSpeakerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 .01"},null),e(" ")])}},met={name:"DeviceTabletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},ket={name:"DeviceTabletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},bet={name:"DeviceTabletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M12.314 16.05a1 1 0 0 0 -1.042 1.635"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Met={name:"DeviceTabletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.344 16.06a1 1 0 0 0 -1.07 1.627"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},xet={name:"DeviceTabletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},zet={name:"DeviceTabletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Iet={name:"DeviceTabletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},yet={name:"DeviceTabletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Cet={name:"DeviceTabletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a2 2 0 0 1 1.995 1.85l.005 .15v16a2 2 0 0 1 -1.85 1.995l-.15 .005h-12a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-16a2 2 0 0 1 1.85 -1.995l.15 -.005h12zm-6 13a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$et={name:"DeviceTabletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Aet={name:"DeviceTabletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M12.872 16.51a1 1 0 1 0 -.872 1.49"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Bet={name:"DeviceTabletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Het={name:"DeviceTabletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},Net={name:"DeviceTabletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},jet={name:"DeviceTabletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},Pet={name:"DeviceTabletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},Let={name:"DeviceTabletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Det={name:"DeviceTabletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.57 16.178a1 1 0 1 0 .016 1.633"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Oet={name:"DeviceTabletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fet={name:"DeviceTabletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M12.906 16.576a1 1 0 1 0 -.906 1.424"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Ret={name:"DeviceTabletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},Tet={name:"DeviceTabletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16z"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},Eet={name:"DeviceTvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vet={name:"DeviceTvOldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M15 7v13"},null),e(" "),t("path",{d:"M18 15v.01"},null),e(" "),t("path",{d:"M18 12v.01"},null),e(" ")])}},_et={name:"DeviceTvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" ")])}},Wet={name:"DeviceWatchBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h4.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Xet={name:"DeviceWatchCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},qet={name:"DeviceWatchCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Yet={name:"DeviceWatchCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},Uet={name:"DeviceWatchCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2.5"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Get={name:"DeviceWatchDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},Zet={name:"DeviceWatchDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Ket={name:"DeviceWatchExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18h-6a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Qet={name:"DeviceWatchHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Jet={name:"DeviceWatchMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},tnt={name:"DeviceWatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h5a3 3 0 0 1 3 3v5m-.89 3.132a2.99 2.99 0 0 1 -2.11 .868h-6a3 3 0 0 1 -3 -3v-6c0 -.817 .327 -1.559 .857 -2.1"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 5v-2h6v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ent={name:"DeviceWatchPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},nnt={name:"DeviceWatchPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},lnt={name:"DeviceWatchPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},rnt={name:"DeviceWatchQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 18h-5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h6v-2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ont={name:"DeviceWatchSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},snt={name:"DeviceWatchShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18h-3.5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},ant={name:"DeviceWatchStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M9 18v3h2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},int={name:"DeviceWatchStats2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M12 10a2 2 0 1 0 2 2"},null),e(" ")])}},hnt={name:"DeviceWatchStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 14v-4"},null),e(" "),t("path",{d:"M12 14v-1"},null),e(" "),t("path",{d:"M15 14v-3"},null),e(" ")])}},dnt={name:"DeviceWatchUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},cnt={name:"DeviceWatchXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},unt={name:"DeviceWatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3v-6z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},pnt={name:"Devices2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6"},null),e(" "),t("path",{d:"M13 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 19l3 0"},null),e(" "),t("path",{d:"M17 8l0 .01"},null),e(" "),t("path",{d:"M17 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15l0 4"},null),e(" ")])}},gnt={name:"DevicesBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},wnt={name:"DevicesCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},vnt={name:"DevicesCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fnt={name:"DevicesCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4m0 6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},mnt={name:"DevicesCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14.5v-5.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},knt={name:"DevicesDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},bnt={name:"DevicesDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Mnt={name:"DevicesExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xnt={name:"DevicesHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v-3a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h6"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},znt={name:"DevicesMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Int={name:"DevicesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ynt={name:"DevicesPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Cnt={name:"DevicesPcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10h-6v-14h2"},null),e(" "),t("path",{d:"M13 9h9v7h-2m-4 0h-4v-4"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M17 17v2"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Snt={name:"DevicesPcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h6v14h-6z"},null),e(" "),t("path",{d:"M12 9h10v7h-10z"},null),e(" "),t("path",{d:"M14 19h6"},null),e(" "),t("path",{d:"M17 16v3"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" ")])}},$nt={name:"DevicesPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14v-5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Ant={name:"DevicesPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Bnt={name:"DevicesQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Hnt={name:"DevicesSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Nnt={name:"DevicesShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},jnt={name:"DevicesStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h5.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Pnt={name:"DevicesUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Lnt={name:"DevicesXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Dnt={name:"DevicesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Ont={name:"DiaboloOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.727 4.749c-.467 .38 -.727 .804 -.727 1.251c0 1.217 1.933 2.265 4.71 2.735m4.257 .243c3.962 -.178 7.033 -1.444 7.033 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.66 0 -3.202 .19 -4.48 .514"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c3.218 0 5.992 -.712 7.262 -1.74m-.211 -4.227l-1.051 -3.033l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2c.656 0 1.288 -.035 1.879 -.1m3.198 -.834c.585 -.308 .923 -.674 .923 -1.066"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fnt={name:"DiaboloPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c.17 0 .34 -.002 .508 -.006m5.492 -8.994l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Rnt={name:"DiaboloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-.065a1 1 0 0 0 -.036 -.265l-1.964 -5.67l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" ")])}},Tnt={name:"DialpadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 16h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ent={name:"DialpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-4v-4"},null),e(" "),t("path",{d:"M17 3h4v4h-4z"},null),e(" "),t("path",{d:"M10 6v-3h4v4h-3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" "),t("path",{d:"M17 13v-3h4v4h-3"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 17h4v4h-4z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vnt={name:"DialpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 17h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" ")])}},_nt={name:"DiamondFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a1 1 0 0 1 .783 .378l.074 .108l3 5a1 1 0 0 1 -.032 1.078l-.08 .103l-8.53 9.533a1.7 1.7 0 0 1 -1.215 .51c-.4 0 -.785 -.14 -1.11 -.417l-.135 -.126l-8.5 -9.5a1 1 0 0 1 -.172 -1.067l.06 -.115l3.013 -5.022l.064 -.09a.982 .982 0 0 1 .155 -.154l.089 -.064l.088 -.05l.05 -.023l.06 -.025l.109 -.032l.112 -.02l.117 -.005h12zm-8.886 3.943a1 1 0 0 0 -1.371 .343l-.6 1l-.06 .116a1 1 0 0 0 .177 1.07l2 2.2l.09 .088a1 1 0 0 0 1.323 -.02l.087 -.09a1 1 0 0 0 -.02 -1.323l-1.501 -1.65l.218 -.363l.055 -.103a1 1 0 0 0 -.398 -1.268z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wnt={name:"DiamondOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Xnt={name:"DiamondIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12l3 5l-8.5 9.5a.7 .7 0 0 1 -1 0l-8.5 -9.5l3 -5"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" ")])}},qnt={name:"DiamondsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2.005c-.777 0 -1.508 .367 -1.971 .99l-5.362 6.895c-.89 1.136 -.89 3.083 0 4.227l5.375 6.911a2.457 2.457 0 0 0 3.93 -.017l5.361 -6.894c.89 -1.136 .89 -3.083 0 -4.227l-5.375 -6.911a2.446 2.446 0 0 0 -1.958 -.974z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ynt={name:"DiamondsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z"},null),e(" ")])}},Unt={name:"Dice1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 8.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gnt={name:"Dice1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Znt={name:"Dice2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 11a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-5 -5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Knt={name:"Dice2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" ")])}},Qnt={name:"Dice3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jnt={name:"Dice3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},tlt={name:"Dice4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},elt={name:"Dice4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},nlt={name:"Dice5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},llt={name:"Dice5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},rlt={name:"Dice6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 13a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},olt={name:"Dice6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},slt={name:"DiceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},alt={name:"DiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},ilt={name:"DimensionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dimensions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h11"},null),e(" "),t("path",{d:"M12 7l2 -2l-2 -2"},null),e(" "),t("path",{d:"M5 3l-2 2l2 2"},null),e(" "),t("path",{d:"M19 10v11"},null),e(" "),t("path",{d:"M17 19l2 2l2 -2"},null),e(" "),t("path",{d:"M21 12l-2 -2l-2 2"},null),e(" "),t("path",{d:"M3 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},hlt={name:"DirectionHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" "),t("path",{d:"M14 9l3 3l-3 3"},null),e(" ")])}},dlt={name:"DirectionSignFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.52 2.614a2.095 2.095 0 0 1 2.835 -.117l.126 .117l7.905 7.905c.777 .777 .816 2.013 .117 2.836l-.117 .126l-7.905 7.905a2.094 2.094 0 0 1 -2.836 .117l-.126 -.117l-7.907 -7.906a2.096 2.096 0 0 1 -.115 -2.835l.117 -.126l7.905 -7.905zm5.969 9.535l.01 -.116l-.003 -.12l-.016 -.114l-.03 -.11l-.044 -.112l-.052 -.098l-.076 -.105l-.07 -.081l-3.5 -3.5l-.095 -.083a1 1 0 0 0 -1.226 0l-.094 .083l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l1.792 1.793h-5.085l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h5.085l-1.792 1.793l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.5 -3.5l.097 -.112l.05 -.074l.037 -.067l.05 -.112l.023 -.076l.025 -.117z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},clt={name:"DirectionSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.73 14.724l1.949 -1.95a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-1.95 1.95m-2.01 2.01l-3.945 3.945a1.095 1.095 0 0 0 0 1.548l7.905 7.905c.427 .428 1.12 .428 1.548 0l3.95 -3.95"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M13.748 13.752l-1.748 1.748"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ult={name:"DirectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z"},null),e(" "),t("path",{d:"M8 12h7.5"},null),e(" "),t("path",{d:"M12 8.5l3.5 3.5l-3.5 3.5"},null),e(" ")])}},plt={name:"DirectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},glt={name:"DirectionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 8v1h1m4 0h6l2 -2l-2 -2h-10"},null),e(" "),t("path",{d:"M14 14v3h-8l-2 -2l2 -2h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wlt={name:"DirectionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-4"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 5v4h11l2 -2l-2 -2z"},null),e(" "),t("path",{d:"M14 13v4h-8l-2 -2l2 -2z"},null),e(" ")])}},vlt={name:"Disabled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 11a5 5 0 1 0 3.95 7.95"},null),e(" "),t("path",{d:"M19 20l-4 -5h-4l3 -5l-4 -3l-4 1"},null),e(" ")])}},flt={name:"DisabledOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M11 11v4h4l4 5"},null),e(" "),t("path",{d:"M15 11h1"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mlt={name:"DisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 7l0 8l4 0l4 5"},null),e(" "),t("path",{d:"M11 11l5 0"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" ")])}},klt={name:"DiscGolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" "),t("path",{d:"M6 5c.32 6.744 2.74 9.246 6 10"},null),e(" "),t("path",{d:"M18 5c-.32 6.744 -2.74 9.246 -6 10"},null),e(" "),t("path",{d:"M10 5c0 4.915 .552 7.082 2 10"},null),e(" "),t("path",{d:"M14 5c0 4.915 -.552 7.082 -2 10"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M7 16c.64 .64 1.509 1 2.414 1h5.172c.905 0 1.774 -.36 2.414 -1"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" ")])}},blt={name:"DiscOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.044 16.04a9 9 0 0 0 -12.082 -12.085m-2.333 1.688a9 9 0 0 0 6.371 15.357c2.491 0 4.73 -1 6.36 -2.631"},null),e(" "),t("path",{d:"M11.298 11.288a1 1 0 1 0 1.402 1.427"},null),e(" "),t("path",{d:"M7 12c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086"},null),e(" "),t("path",{d:"M12 17a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mlt={name:"DiscIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 5 -5"},null),e(" ")])}},xlt={name:"Discount2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M8.887 4.89a2.2 2.2 0 0 0 .863 -.53l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.528 .858m-.757 3.248a2.193 2.193 0 0 1 -1.555 .644h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1c0 -.604 .244 -1.152 .638 -1.55"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zlt={name:"Discount2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Ilt={name:"DiscountCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944zm3.697 7.282a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ylt={name:"DiscountCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Clt={name:"DiscountOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Slt={name:"DiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},$lt={name:"DivideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-divide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"6",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"18",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Alt={name:"Dna2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.007 2.46 -.91 4.554 -2.705 6.281m-2.295 1.719c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c0 -1.44 -.315 -2.755 -.932 -3.944m-4.068 -4.07c-1.903 -1.138 -3.263 -2.485 -4.082 -4.068"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M12 8h4"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Blt={name:"Dna2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2 .008 -.014c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2 .008 .014c-3.328 -1.991 -5 -4.662 -5.008 -8.014v-1"},null),e(" "),t("path",{d:"M7 4h10"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" ")])}},Hlt={name:"DnaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12a3.898 3.898 0 0 0 -1.172 -2.828a4.027 4.027 0 0 0 -2.828 -1.172m-2.828 1.172a4 4 0 1 0 5.656 5.656"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 1 0 5.657 5.657"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nlt={name:"DnaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 0 0 5.657 5.657"},null),e(" ")])}},jlt={name:"DogBowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586"},null),e(" "),t("path",{d:"M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586"},null),e(" "),t("path",{d:"M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z"},null),e(" ")])}},Plt={name:"DogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M19 12c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8"},null),e(" "),t("path",{d:"M11 16c0 .667 .333 1 1 1s1 -.333 1 -1h-2z"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M10 11v.01"},null),e(" "),t("path",{d:"M14 11v.01"},null),e(" "),t("path",{d:"M5 4l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a.953 .953 0 0 1 -.327 -.954l1.975 -6.815z"},null),e(" "),t("path",{d:"M19 4l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a.953 .953 0 0 0 .327 -.954l-1.975 -6.815z"},null),e(" ")])}},Llt={name:"DoorEnterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-enter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"},null),e(" "),t("path",{d:"M21 7h-7m3 -3l-3 3l3 3"},null),e(" ")])}},Dlt={name:"DoorExitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-exit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"},null),e(" "),t("path",{d:"M14 7h7m-3 -3l3 3l-3 3"},null),e(" ")])}},Olt={name:"DoorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-15"},null),e(" "),t("path",{d:"M7.18 3.175c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M18 18v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Flt={name:"DoorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"},null),e(" ")])}},Rlt={name:"DotsCircleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-circle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" ")])}},Tlt={name:"DotsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Elt={name:"DotsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Vlt={name:"DotsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},_lt={name:"DotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Wlt={name:"DownloadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 1.83 -1.19"},null),e(" "),t("path",{d:"M7 11l5 5l2 -2m2 -2l1 -1"},null),e(" "),t("path",{d:"M12 4v4m0 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Xlt={name:"DownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 11l5 5l5 -5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},qlt={name:"DragDrop2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" ")])}},Ylt={name:"DragDropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M13 13l9 3l-4 2l-2 4l-3 -9"},null),e(" "),t("path",{d:"M3 3l0 .01"},null),e(" "),t("path",{d:"M7 3l0 .01"},null),e(" "),t("path",{d:"M11 3l0 .01"},null),e(" "),t("path",{d:"M15 3l0 .01"},null),e(" "),t("path",{d:"M3 7l0 .01"},null),e(" "),t("path",{d:"M3 11l0 .01"},null),e(" "),t("path",{d:"M3 15l0 .01"},null),e(" ")])}},Ult={name:"DroneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.957 5.95a3.503 3.503 0 0 0 -2.917 -2.91m-3.02 .989a3.5 3.5 0 0 0 1.98 5.936"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.965a3.5 3.5 0 1 0 -3.966 -3.965"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.035 18a3.5 3.5 0 0 0 5.936 1.98m.987 -3.026a3.503 3.503 0 0 0 -2.918 -2.913"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.035a3.5 3.5 0 1 0 3.966 3.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Glt={name:"DroneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10h4v4h-4z"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.96 6a3.5 3.5 0 1 0 -3.96 3.96"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.96a3.5 3.5 0 1 0 -3.96 -3.96"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.04 18a3.5 3.5 0 1 0 3.96 -3.96"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.04a3.5 3.5 0 1 0 3.96 3.96"},null),e(" ")])}},Zlt={name:"DropCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drop-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Klt={name:"DropletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.628 12.076a6.653 6.653 0 0 0 -.564 -1.199l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c1.7 1.375 3.906 1.852 5.958 1.431"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Qlt={name:"DropletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.606 12.014a6.659 6.659 0 0 0 -.542 -1.137l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.154 7.154 0 0 0 4.826 1.572"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Jlt={name:"DropletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.967 13.594a6.568 6.568 0 0 0 -.903 -2.717l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.04 1.565"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},trt={name:"DropletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.907 13.147a6.586 6.586 0 0 0 -.843 -2.27l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.123 7.123 0 0 0 3.99 1.561"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ert={name:"DropletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.421 11.56a6.702 6.702 0 0 0 -.357 -.683l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.144 7.144 0 0 0 4.518 1.58"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},nrt={name:"DropletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.668 10.29l-4.493 -6.673c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.175 7.175 0 0 0 5.493 1.51"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},lrt={name:"DropletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.003a6.66 6.66 0 0 0 -.538 -1.126l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.159 7.159 0 0 0 4.972 1.564"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},rrt={name:"DropletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.142 1.734 5.092 2.04 7.519 .919"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ort={name:"DropletFilled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" "),t("path",{d:"M7.305 17.695l3.695 -3.695"},null),e(" "),t("path",{d:"M10.26 19.74l5.74 -5.74l-5.74 5.74z"},null),e(" ")])}},srt={name:"DropletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.801 11.003a6 6 0 1 0 10.396 -.003l-5.197 -8l-5.199 8.003z",stroke:"#010202","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3v17","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12l3.544 -3.544","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 17.3l5.558 -5.558","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},art={name:"DropletHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},irt={name:"DropletHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17m0 -8l3.544 -3.544m-3.544 8.844l5.558 -5.558"},null),e(" ")])}},hrt={name:"DropletHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" ")])}},drt={name:"DropletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.288 11.282a6.734 6.734 0 0 0 -.224 -.405l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.117 7.117 0 0 0 3.824 1.548"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},crt={name:"DropletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.946 15.083a6.538 6.538 0 0 0 -.882 -4.206l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.089 1.555"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},urt={name:"DropletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.963 14.938a6.54 6.54 0 0 0 -.899 -4.06l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-1.282 1.9m-1.625 2.415l-1.986 2.946c-1.695 2.837 -1.035 6.44 1.567 8.545c2.602 2.105 6.395 2.105 8.996 0a6.83 6.83 0 0 0 1.376 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},prt={name:"DropletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.952 13.456a6.573 6.573 0 0 0 -.888 -2.579l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.176 7.176 0 0 0 5.517 1.507"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},grt={name:"DropletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.102 1.554"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},wrt={name:"DropletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.033 1.56"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vrt={name:"DropletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.203 1.782 5.259 2.056 7.723 .82"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},frt={name:"DropletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.13 7.13 0 0 0 4.168 1.572"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},mrt={name:"DropletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.884 13.025a6.591 6.591 0 0 0 -.82 -2.148l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.498 1.58"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},krt={name:"DropletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.496 10.034l-4.321 -6.417c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.106 7.106 0 0 0 3.547 1.517"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},brt={name:"DropletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.6 11.998a6.66 6.66 0 0 0 -.536 -1.12l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.002 1.562"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Mrt={name:"DropletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.953 13.467a6.572 6.572 0 0 0 -.889 -2.59l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.179 7.179 0 0 0 5.633 1.49"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},xrt={name:"DropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.502 19.423c2.602 2.105 6.395 2.105 8.996 0c2.602 -2.105 3.262 -5.708 1.566 -8.546l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546z"},null),e(" ")])}},zrt={name:"DualScreenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dual-screen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l8 3v15l-8 -3z"},null),e(" "),t("path",{d:"M13 19h6v-15h-14"},null),e(" ")])}},Irt={name:"EPassportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-e-passport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 12h-7"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" ")])}},yrt={name:"EarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10c0 -1.146 .277 -2.245 .78 -3.219m1.792 -2.208a7 7 0 0 1 10.428 9.027a10 10 0 0 1 -.633 .762m-2.045 1.96a8 8 0 0 0 -1.322 2.278a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M11.42 7.414a3 3 0 0 1 4.131 4.13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Crt={name:"EarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M10 10a3 3 0 1 1 5 2.2"},null),e(" ")])}},Srt={name:"EaseInControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c8 0 18 -16 18 -16"},null),e(" "),t("path",{d:"M17 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 19h-2"},null),e(" "),t("path",{d:"M12 19h-2"},null),e(" ")])}},$rt={name:"EaseInOutControlPointsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out-control-points",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 20h-2"},null),e(" "),t("path",{d:"M7 4a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 4h2"},null),e(" "),t("path",{d:"M14 4h-2"},null),e(" "),t("path",{d:"M12 20h-2"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},Art={name:"EaseInOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},Brt={name:"EaseInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 18 -16 18 -16"},null),e(" ")])}},Hrt={name:"EaseOutControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s10 -16 18 -16"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 5h2"},null),e(" "),t("path",{d:"M14 5h-2"},null),e(" ")])}},Nrt={name:"EaseOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20s10 -16 18 -16"},null),e(" ")])}},jrt={name:"EditCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M7.476 7.471a7 7 0 0 0 2.524 13.529a7 7 0 0 0 6.53 -4.474"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Prt={name:"EditCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M9 7.07a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6"},null),e(" ")])}},Lrt={name:"EditOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Drt={name:"EditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" ")])}},Ort={name:"EggCrackedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-cracked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" "),t("path",{d:"M12 3l-1.5 5l3.5 2.5l-2 3.5"},null),e(" ")])}},Frt={name:"EggFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.002 2c-4.173 -.008 -8.002 6.058 -8.002 12.083c0 4.708 3.25 7.917 8 7.917c4.727 -.206 8 -3.328 8 -7.917c0 -6.02 -3.825 -12.075 -7.998 -12.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rrt={name:"EggFriedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-fried",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 3a5 5 0 0 1 4.872 6.13a3 3 0 0 1 .178 5.681a3 3 0 1 1 -4.684 3.626a5 5 0 1 1 -8.662 -5a5 5 0 1 1 4.645 -8.856a4.982 4.982 0 0 1 3.651 -1.585z"},null),e(" ")])}},Trt={name:"EggOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.927 17.934c-1.211 1.858 -3.351 2.953 -5.927 3.066c-4.2 0 -7 -2.763 -7 -6.917c0 -2.568 .753 -5.14 1.91 -7.158"},null),e(" "),t("path",{d:"M8.642 4.628c1.034 -1.02 2.196 -1.63 3.358 -1.628c3.5 .007 7 5.545 7 11.083c0 .298 -.015 .587 -.045 .868"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ert={name:"EggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" ")])}},Vrt={name:"EggsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eggs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 22c-3 0 -4.868 -2.118 -5 -5c0 -3 2 -5 5 -5c4 0 8.01 2.5 8 5c0 2.5 -4 5 -8 5z"},null),e(" "),t("path",{d:"M8 18c-3.03 -.196 -5 -2.309 -5 -5.38c0 -4.307 2.75 -8.625 5.5 -8.62c2.614 0 5.248 3.915 5.5 8"},null),e(" ")])}},_rt={name:"ElevatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a1 1 0 0 1 1 1v10m0 4a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M12 8l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wrt={name:"ElevatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 10l2 -2l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},Xrt={name:"EmergencyBedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emergency-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M12 12v2l-2.5 2.5"},null),e(" "),t("path",{d:"M14.5 16.5l-2.5 -2.5"},null),e(" ")])}},qrt={name:"EmpathizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2.5 2.5 0 1 0 -2.5 -2.5"},null),e(" "),t("path",{d:"M12.317 12.315l-.317 .317l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096l4.689 -4.69m1.324 -2.673a3.087 3.087 0 0 0 -3.021 -3.018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yrt={name:"EmpathizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M12 21.368l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z"},null),e(" ")])}},Urt={name:"EmphasisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emphasis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5h-8v10h8m-1 -5h-7"},null),e(" "),t("path",{d:"M6 20l0 .01"},null),e(" "),t("path",{d:"M10 20l0 .01"},null),e(" "),t("path",{d:"M14 20l0 .01"},null),e(" "),t("path",{d:"M18 20l0 .01"},null),e(" ")])}},Grt={name:"EngineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M16 16h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zrt={name:"EngineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M6 10h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z"},null),e(" ")])}},Krt={name:"EqualDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M3 14h7"},null),e(" "),t("path",{d:"M14 10h7"},null),e(" "),t("path",{d:"M14 14h7"},null),e(" ")])}},Qrt={name:"EqualNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},Jrt={name:"EqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},tot={name:"EraserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l5 -4.993m2.009 -2.01l3 -3a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41c-1.417 1.431 -2.406 2.432 -2.97 3m-2.02 2.043l-4.211 4.256"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},eot={name:"EraserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},not={name:"Error404OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 10v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2m0 -4v-2a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lot={name:"Error404Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" ")])}},rot={name:"ExchangeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5c0 .594 -.104 1.164 -.294 1.692m-1.692 2.298a4.978 4.978 0 0 1 -3.014 1.01h-3l3 -3"},null),e(" "),t("path",{d:"M14 21l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5c0 -1.632 .782 -3.082 1.992 -4m3.008 -1h3l-3 -3"},null),e(" "),t("path",{d:"M11.501 7.499l1.499 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oot={name:"ExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5a5 5 0 0 1 -5 5h-3l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5a5 5 0 0 1 5 -5h3l-3 -3m0 6l3 -3"},null),e(" ")])}},sot={name:"ExclamationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},aot={name:"ExclamationMarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-3m0 -4v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iot={name:"ExclamationMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-10"},null),e(" ")])}},hot={name:"ExplicitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2m-2 2v6h4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 12h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dot={name:"ExplicitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},cot={name:"Exposure0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z"},null),e(" ")])}},uot={name:"ExposureMinus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},pot={name:"ExposureMinus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},got={name:"ExposureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 9h2v2"},null),e(" "),t("path",{d:"M13 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wot={name:"ExposurePlus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},vot={name:"ExposurePlus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},fot={name:"ExposureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4.6 19.4l14.8 -14.8"},null),e(" "),t("path",{d:"M7 9h4m-2 -2v4"},null),e(" "),t("path",{d:"M13 16l4 0"},null),e(" ")])}},mot={name:"ExternalLinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10 14l2 -2m2.007 -2.007l6 -6"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kot={name:"ExternalLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6"},null),e(" "),t("path",{d:"M11 13l9 -9"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" ")])}},bot={name:"EyeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.143 17.961c-3.221 -.295 -5.936 -2.281 -8.143 -5.961c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.222 .37 -.449 .722 -.68 1.057"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Mot={name:"EyeClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9c-2.4 2.667 -5.4 4 -9 4c-3.6 0 -6.6 -1.333 -9 -4"},null),e(" "),t("path",{d:"M3 15l2.5 -3.8"},null),e(" "),t("path",{d:"M21 14.976l-2.492 -3.776"},null),e(" "),t("path",{d:"M9 17l.5 -4"},null),e(" "),t("path",{d:"M15 17l-.5 -4"},null),e(" ")])}},xot={name:"EyeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 18c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},zot={name:"EyeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.192 17.966c-3.242 -.28 -5.972 -2.269 -8.192 -5.966c2.4 -4 5.4 -6 9 -6c3.326 0 6.14 1.707 8.442 5.122"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Iot={name:"EyeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M14.473 17.659a8.897 8.897 0 0 1 -2.473 .341c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},yot={name:"EyeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.29 0 7.863 2.429 10.665 7.154l.22 .379l.045 .1l.03 .083l.014 .055l.014 .082l.011 .1v.11l-.014 .111a.992 .992 0 0 1 -.026 .11l-.039 .108l-.036 .075l-.016 .03c-2.764 4.836 -6.3 7.38 -10.555 7.499l-.313 .004c-4.396 0 -8.037 -2.549 -10.868 -7.504a1 1 0 0 1 0 -.992c2.831 -4.955 6.472 -7.504 10.868 -7.504zm0 5a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cot={name:"EyeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.923 11.45a2 2 0 1 0 -2.87 2.312"},null),e(" "),t("path",{d:"M10 17.78c-2.726 -.618 -5.059 -2.545 -7 -5.78c2.4 -4 5.4 -6 9 -6c3.325 0 6.137 1.705 8.438 5.117"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Sot={name:"EyeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.585 10.587a2 2 0 0 0 2.829 2.828"},null),e(" "),t("path",{d:"M16.681 16.673a8.717 8.717 0 0 1 -4.681 1.327c-3.6 0 -6.6 -2 -9 -6c1.272 -2.12 2.712 -3.678 4.32 -4.674m2.86 -1.146a9.055 9.055 0 0 1 1.82 -.18c3.6 0 6.6 2 9 6c-.666 1.11 -1.379 2.067 -2.138 2.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$ot={name:"EyeTableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18h-.011"},null),e(" "),t("path",{d:"M12 18h-.011"},null),e(" "),t("path",{d:"M16 18h-.011"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M5 3v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17"},null),e(" "),t("path",{d:"M14 7h-4"},null),e(" "),t("path",{d:"M9 15h1"},null),e(" "),t("path",{d:"M14 15h1"},null),e(" "),t("path",{d:"M12 11v-4"},null),e(" ")])}},Aot={name:"EyeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M13.117 17.933a9.275 9.275 0 0 1 -1.117 .067c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6a18.728 18.728 0 0 1 -1.009 1.516"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Bot={name:"EyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" ")])}},Hot={name:"Eyeglass2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10v2.5"},null),e(" "),t("path",{d:"M16 4h2l3 10v2.5"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M17.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" ")])}},Not={name:"EyeglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.536 5.546l-2.536 8.454"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M19.426 19.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jot={name:"EyeglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" ")])}},Pot={name:"FaceIdErrorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id-error",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15.05a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},Lot={name:"FaceIdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Dot={name:"FaceMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M9 14h5"},null),e(" "),t("path",{d:"M19 15v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oot={name:"FaceMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z"},null),e(" ")])}},Fot={name:"FallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l1 -5l-1 -4l-3 -4h4l3 -3"},null),e(" "),t("path",{d:"M6 16l-1 -4l3 -4"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.5 12h2.5l4 2"},null),e(" ")])}},Rot={name:"FeatherOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l8 -8"},null),e(" "),t("path",{d:"M14 5v5h5"},null),e(" "),t("path",{d:"M9 11v4h4"},null),e(" "),t("path",{d:"M6 13v5h5"},null),e(" "),t("path",{d:"M6 13l3.502 -3.502m2.023 -2.023l2.475 -2.475"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1"},null),e(" "),t("path",{d:"M11 18l3.499 -3.499m2.008 -2.008l2.493 -2.493"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tot={name:"FeatherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4"},null),e(" ")])}},Eot={name:"FenceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8v4h12m4 0v-4h-4"},null),e(" "),t("path",{d:"M6 16v4h4v-4"},null),e(" "),t("path",{d:"M10 12v-2m0 -4l-2 -2m-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-2"},null),e(" "),t("path",{d:"M18 12v-6l-2 -2l-2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vot={name:"FenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v4h16v-4z"},null),e(" "),t("path",{d:"M6 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" ")])}},_ot={name:"FidgetSpinnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fidget-spinner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M12 5v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M12 1a4 4 0 0 1 2.001 7.464l.001 .072a3.998 3.998 0 0 1 1.987 3.758l.22 .128a3.978 3.978 0 0 1 1.591 -.417l.2 -.005a4 4 0 1 1 -3.994 3.77l-.28 -.16c-.522 .25 -1.108 .39 -1.726 .39c-.619 0 -1.205 -.14 -1.728 -.391l-.279 .16l.007 .231a4 4 0 1 1 -2.212 -3.579l.222 -.129a3.998 3.998 0 0 1 1.988 -3.756l.002 -.071a4 4 0 0 1 -1.995 -3.265l-.005 -.2a4 4 0 0 1 4 -4z"},null),e(" ")])}},Wot={name:"File3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 13.5l4 -1.5"},null),e(" "),t("path",{d:"M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z"},null),e(" "),t("path",{d:"M8 12v4.2l4 1.8"},null),e(" ")])}},Xot={name:"FileAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17l.01 0"},null),e(" "),t("path",{d:"M12 11l0 3"},null),e(" ")])}},qot={name:"FileAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17l0 -5"},null),e(" "),t("path",{d:"M12 17l0 -1"},null),e(" "),t("path",{d:"M15 17l0 -3"},null),e(" ")])}},Yot={name:"FileArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M11.5 17.5l-2.5 -2.5l2.5 -2.5"},null),e(" ")])}},Uot={name:"FileArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M12.5 17.5l2.5 -2.5l-2.5 -2.5"},null),e(" ")])}},Got={name:"FileBarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 13h1v3h-1z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M15 13h1v3h-1z"},null),e(" ")])}},Zot={name:"FileBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 7v-2a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M5 13h.01"},null),e(" "),t("path",{d:"M5 10h.01"},null),e(" "),t("path",{d:"M19 13h.01"},null),e(" "),t("path",{d:"M19 16h.01"},null),e(" ")])}},Kot={name:"FileCertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5"},null),e(" "),t("path",{d:"M6 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.5 17l-1.5 5l3 -1.5l3 1.5l-1.5 -5"},null),e(" ")])}},Qot={name:"FileChartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-chart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10v4h4"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Jot={name:"FileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15l2 2l4 -4"},null),e(" ")])}},tst={name:"FileCode2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-1v5h1"},null),e(" "),t("path",{d:"M14 12h1v5h-1"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},est={name:"FileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13l-1 2l1 2"},null),e(" "),t("path",{d:"M14 13l1 2l-1 2"},null),e(" ")])}},nst={name:"FileCvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-cv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 12.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M13 11l1.5 6l1.5 -6"},null),e(" ")])}},lst={name:"FileDatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},rst={name:"FileDeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6l-3 -6z"},null),e(" ")])}},ost={name:"FileDescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-description",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" ")])}},sst={name:"FileDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10l0 4"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" "),t("path",{d:"M10 17l4 0"},null),e(" ")])}},ast={name:"FileDigitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-digit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9 12m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 12v5"},null),e(" ")])}},ist={name:"FileDislikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dislike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5"},null),e(" ")])}},hst={name:"FileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},dst={name:"FileDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" ")])}},cst={name:"FileDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v-6"},null),e(" "),t("path",{d:"M9.5 14.5l2.5 2.5l2.5 -2.5"},null),e(" ")])}},ust={name:"FileEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14h-3"},null),e(" "),t("path",{d:"M14 11.172a3 3 0 1 0 0 5.656"},null),e(" ")])}},pst={name:"FileExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v5m-5 6h7m-3 -3l3 3l-3 3"},null),e(" ")])}},gst={name:"FileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wst={name:"FileFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10.5 17h.333c.474 0 .87 -.323 .916 -.746l.502 -4.508c.047 -.423 .443 -.746 .916 -.746h.333"},null),e(" "),t("path",{d:"M10.5 14h3"},null),e(" ")])}},vst={name:"FileHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M3 7v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-7l-5 -5h-11a2 2 0 0 0 -2 2z"},null),e(" ")])}},fst={name:"FileImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 13v-8a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5.5m-9.5 -2h7m-3 -3l3 3l-3 3"},null),e(" ")])}},mst={name:"FileInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 21h-2.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v6"},null),e(" ")])}},kst={name:"FileInfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-info",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 14h1v4h1"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},bst={name:"FileInvoiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-invoice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M13 17l2 0"},null),e(" ")])}},Mst={name:"FileLambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 17l2 -3"},null),e(" "),t("path",{d:"M15 17c-2.5 0 -2.5 -6 -5 -6"},null),e(" ")])}},xst={name:"FileLikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-like",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 20a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3"},null),e(" ")])}},zst={name:"FileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Ist={name:"FileMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16l0 -5l2 1"},null),e(" ")])}},yst={name:"FileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M7 3h7l5 5v7m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" ")])}},Cst={name:"FileOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M13 20h5a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M15 22l-2 -2l2 -2"},null),e(" "),t("path",{d:"M18 15l2 -2l2 2"},null),e(" ")])}},Sst={name:"FilePencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z"},null),e(" ")])}},$st={name:"FilePercentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-percent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17l4 -4"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" "),t("path",{d:"M14 17h.01"},null),e(" ")])}},Ast={name:"FilePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 12a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},Bst={name:"FilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l0 6"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Hst={name:"FilePowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l-2 3h4l-2 3"},null),e(" ")])}},Nst={name:"FileReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17 13v4h4"},null),e(" "),t("path",{d:"M12 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4"},null),e(" ")])}},jst={name:"FileRssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M15 17a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" ")])}},Pst={name:"FileScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17l6 -6"},null),e(" "),t("path",{d:"M15 17l-6 -6"},null),e(" ")])}},Lst={name:"FileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},Dst={name:"FileSettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 10.5v1.5"},null),e(" "),t("path",{d:"M12 16v1.5"},null),e(" "),t("path",{d:"M15.031 12.25l-1.299 .75"},null),e(" "),t("path",{d:"M10.268 15l-1.3 .75"},null),e(" "),t("path",{d:"M15 15.803l-1.285 -.773"},null),e(" "),t("path",{d:"M10.285 12.97l-1.285 -.773"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Ost={name:"FileShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M6 16l0 2"},null),e(" "),t("path",{d:"M10 16l0 6"},null),e(" "),t("path",{d:"M14 16l0 2"},null),e(" "),t("path",{d:"M18 16l0 4"},null),e(" ")])}},Fst={name:"FileSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95"},null),e(" ")])}},Rst={name:"FileSpreadsheetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-spreadsheet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 11h8v7h-8z"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M11 11v7"},null),e(" ")])}},Tst={name:"FileStackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" ")])}},Est={name:"FileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11.8 16.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Vst={name:"FileSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M9 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5"},null),e(" ")])}},_st={name:"FileTextAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5"},null),e(" "),t("path",{d:"M9 9h1"},null),e(" "),t("path",{d:"M9 13h2.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Wst={name:"FileTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 9l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" ")])}},Xst={name:"FileTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12.496v1.504l1 1"},null),e(" ")])}},qst={name:"FileTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M12 18v-7"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" ")])}},Yst={name:"FileUnknownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-unknown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},Ust={name:"FileUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M9.5 13.5l2.5 -2.5l2.5 2.5"},null),e(" ")])}},Gst={name:"FileVectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 16.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M14.5 12.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9.5 15a2.5 2.5 0 0 1 2.5 -2.5h1"},null),e(" ")])}},Zst={name:"FileXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5zm-1.489 9.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Kst={name:"FileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},Qst={name:"FileZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M11 17a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M11 5l-1 0"},null),e(" "),t("path",{d:"M13 7l-1 0"},null),e(" "),t("path",{d:"M11 9l-1 0"},null),e(" "),t("path",{d:"M13 11l-1 0"},null),e(" "),t("path",{d:"M11 13l-1 0"},null),e(" "),t("path",{d:"M13 15l-1 0"},null),e(" ")])}},Jst={name:"FileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},tat={name:"FilesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eat={name:"FilesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},nat={name:"FilterCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},lat={name:"FilterDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.02 19.66l-4.02 1.34v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},rat={name:"FilterEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.97 20.344l-1.97 .656v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},oat={name:"FilterMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},sat={name:"FilterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12v2.172a2 2 0 0 1 -.586 1.414l-3.914 3.914m-.5 3.5v4l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aat={name:"FilterPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},iat={name:"FilterStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.971 20.343l-1.971 .657v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},hat={name:"FilterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.785 19.405l-4.785 1.595v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},dat={name:"FilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v7l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227z"},null),e(" ")])}},cat={name:"FiltersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8 11a5 5 0 1 0 3.998 1.997"},null),e(" "),t("path",{d:"M12.002 19.003a5 5 0 1 0 3.998 -8.003"},null),e(" ")])}},uat={name:"FingerprintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11c0 -.848 .264 -1.634 .713 -2.28m2.4 -1.621a4 4 0 0 1 4.887 3.901l0 1"},null),e(" "),t("path",{d:"M12 12v1a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pat={name:"FingerprintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11a4 4 0 0 1 8 0v1a10 10 0 0 0 2 6"},null),e(" "),t("path",{d:"M12 11v2a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 12 -6.95"},null),e(" ")])}},gat={name:"FireHydrantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-4m2 -2v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -8.533 -3.538m-1.387 2.638a5.03 5.03 0 0 0 -.08 .9v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M6 8h2m4 0h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wat={name:"FireHydrantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-5h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -10 0v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},vat={name:"FiretruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-firetruck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" "),t("path",{d:"M3 9l18 -6"},null),e(" "),t("path",{d:"M6 12l0 -4"},null),e(" ")])}},fat={name:"FirstAidKitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577a2 2 0 0 1 1.405 -.577h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 8h6a2 2 0 0 1 2 2v6m-.576 3.405a2 2 0 0 1 -1.424 .595h-12a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mat={name:"FirstAidKitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},kat={name:"FishBoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565"},null),e(" "),t("path",{d:"M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M4.422 12h10.578"},null),e(" "),t("path",{d:"M7 10v4"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" ")])}},bat={name:"FishChristianityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-christianity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7s-5.646 10 -12.308 10c-3.226 .025 -6.194 -1.905 -7.692 -5c1.498 -3.095 4.466 -5.025 7.692 -5c6.662 0 12.308 10 12.308 10"},null),e(" ")])}},Mat={name:"FishHookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v3m-.085 3.924a5 5 0 0 1 -9.915 -.924v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xat={name:"FishHookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v6a5 5 0 0 1 -10 0v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" ")])}},zat={name:"FishOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635"},null),e(" "),t("path",{d:"M2 9.504c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Iat={name:"FishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56c0 1.747 .64 3.345 1.699 4.571"},null),e(" "),t("path",{d:"M2 9.504c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.5 10.5c-.667 1 -.667 2 0 3"},null),e(" ")])}},yat={name:"Flag2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cat={name:"Flag2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h9m4 0h1v-9h-10m-4 0v16"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sat={name:"Flag2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14v-9h-14v16"},null),e(" ")])}},$at={name:"Flag3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4c.852 0 1.297 .986 .783 1.623l-.076 .084l-3.792 3.793l3.792 3.793c.603 .602 .22 1.614 -.593 1.701l-.114 .006h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Aat={name:"Flag3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14l-4.5 -4.5l4.5 -4.5h-14v16"},null),e(" ")])}},Bat={name:"FlagFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 .3 -.714a6 6 0 0 1 8.213 -.176l.351 .328a4 4 0 0 0 5.272 0l.249 -.227c.61 -.483 1.527 -.097 1.61 .676l.005 .113v9a1 1 0 0 1 -.3 .714a6 6 0 0 1 -8.213 .176l-.351 -.328a4 4 0 0 0 -5.136 -.114v6.552a1 1 0 0 1 -1.993 .117l-.007 -.117v-16z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hat={name:"FlagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 5v9"},null),e(" "),t("path",{d:"M7.641 3.645a5 5 0 0 1 4.359 1.355a5 5 0 0 0 7 0"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nat={name:"FlagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1 -7 0a5 5 0 0 0 -7 0v-9z"},null),e(" "),t("path",{d:"M5 21v-7"},null),e(" ")])}},jat={name:"FlameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pat={name:"FlameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z"},null),e(" ")])}},Lat={name:"FlareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l3 6l6 3l-6 3l-3 6l-3 -6l-6 -3l6 -3z"},null),e(" ")])}},Dat={name:"Flask2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h8.9"},null),e(" "),t("path",{d:"M17.742 17.741a6 6 0 0 1 -2.424 3.259h-6.635a6 6 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6 6 0 0 1 2.801 2.817"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oat={name:"Flask2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h11.8"},null),e(" "),t("path",{d:"M14 3v7.342a6 6 0 0 1 1.318 10.658h-6.635a6 6 0 0 1 1.317 -10.66v-7.34h4z"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},Fat={name:"FlaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M10 3v3m-.268 3.736l-3.732 10.264a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rat={name:"FlaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 0"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M10 3v6l-4 11a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-4 -11v-6"},null),e(" ")])}},Tat={name:"FlipFlopsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-flops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.743 -3.985a4.15 4.15 0 0 1 .25 -.007z"},null),e(" "),t("path",{d:"M14.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M18 16v1"},null),e(" "),t("path",{d:"M6 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.742 -3.985c.084 0 .167 -.007 .25 -.007z"},null),e(" "),t("path",{d:"M2.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M6 16v1"},null),e(" ")])}},Eat={name:"FlipHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M7 16l10 0l-10 5l0 -5"},null),e(" "),t("path",{d:"M7 8l10 0l-10 -5l0 5"},null),e(" ")])}},Vat={name:"FlipVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16 7l0 10l5 0l-5 -10"},null),e(" "),t("path",{d:"M8 7l0 10l-5 0l5 -10"},null),e(" ")])}},_at={name:"FloatCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" "),t("path",{d:"M4 11l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M19 11l1 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},Wat={name:"FloatLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M14 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},Xat={name:"FloatNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},qat={name:"FloatRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l6 0"},null),e(" "),t("path",{d:"M4 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},Yat={name:"FlowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uat={name:"FlowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z"},null),e(" ")])}},Gat={name:"Focus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Zat={name:"FocusAutoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-auto",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M10 15v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},Kat={name:"FocusCenteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-centered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},Qat={name:"FocusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Jat={name:"FoldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v8l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M14 7l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" ")])}},tit={name:"FoldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8l-3 3m6 0l-3 -3"},null),e(" "),t("path",{d:"M9 17l1 0"},null),e(" "),t("path",{d:"M14 17l1 0"},null),e(" "),t("path",{d:"M19 17l1 0"},null),e(" "),t("path",{d:"M4 17l1 0"},null),e(" ")])}},eit={name:"FoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M12 21v-6l3 3m-6 0l3 -3"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M19 12l1 0"},null),e(" ")])}},nit={name:"FolderBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},lit={name:"FolderCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},rit={name:"FolderCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},oit={name:"FolderCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},sit={name:"FolderCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 19h-7.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},ait={name:"FolderDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},iit={name:"FolderDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},hit={name:"FolderExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},dit={name:"FolderFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cit={name:"FolderHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},uit={name:"FolderMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pit={name:"FolderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1l3 3h7a2 2 0 0 1 2 2v8m-2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 1.189 -1.829"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},git={name:"FolderPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},wit={name:"FolderPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vit={name:"FolderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},fit={name:"FolderQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},mit={name:"FolderSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},kit={name:"FolderShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},bit={name:"FolderStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Mit={name:"FolderSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M8 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 11v-5a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8"},null),e(" ")])}},xit={name:"FolderUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zit={name:"FolderXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Iit={name:"FolderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2"},null),e(" ")])}},yit={name:"FoldersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h-8a2 2 0 0 1 -2 -2v-8m1.177 -2.823c.251 -.114 .53 -.177 .823 -.177h3l2 2h5a2 2 0 0 1 2 2v7c0 .55 -.223 1.05 -.583 1.411"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cit={name:"FoldersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Sit={name:"Forbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},$it={name:"ForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},Ait={name:"ForkliftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forklift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 17l5 0"},null),e(" "),t("path",{d:"M3 17v-6h13v6"},null),e(" "),t("path",{d:"M5 11v-4h4"},null),e(" "),t("path",{d:"M9 11v-6h4l3 6"},null),e(" "),t("path",{d:"M22 15h-3v-10"},null),e(" "),t("path",{d:"M16 13l3 0"},null),e(" ")])}},Bit={name:"FormsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forms",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M13 7h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7"},null),e(" "),t("path",{d:"M5 7h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M17 12h.01"},null),e(" "),t("path",{d:"M13 12h.01"},null),e(" ")])}},Hit={name:"FountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-1m0 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-4m0 -4v-2a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M7.451 3.43a3 3 0 0 1 4.549 2.57"},null),e(" "),t("path",{d:"M20 16h1v1m-.871 3.114a2.99 2.99 0 0 1 -2.129 .886h-12a3 3 0 0 1 -3 -3v-2h13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nit={name:"FountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-5a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-10a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M6 6a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M3 16h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z"},null),e(" ")])}},jit={name:"FrameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M4 17h13"},null),e(" "),t("path",{d:"M7 7v13"},null),e(" "),t("path",{d:"M17 4v9m0 4v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pit={name:"FrameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M4 17l16 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" ")])}},Lit={name:"FreeRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-free-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},Dit={name:"FreezeColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9.5l-6 6"},null),e(" "),t("path",{d:"M9 4l-6 6"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M9 3v18"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" ")])}},Oit={name:"FreezeRowColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M15 3l-12 12"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M21 9h-12v12"},null),e(" ")])}},Fit={name:"FreezeRowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M21 9h-18"},null),e(" "),t("path",{d:"M15 3l-6 6"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" ")])}},Rit={name:"FridgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M5 10h5m4 0h5"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tit={name:"FridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M9 6v1"},null),e(" ")])}},Eit={name:"FriendsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l1.254 -3.763m1.036 -2.942a1 1 0 0 1 .71 -.295h2a1 1 0 0 1 1 1l1.503 4.508m-1.503 2.492v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vit={name:"FriendsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4"},null),e(" ")])}},_it={name:"FrustumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.72 3.728l3.484 -1.558a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l2.538 10.158c.103 .412 .07 .832 -.075 1.206m-2.299 1.699l-5.725 2.738a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.52 -10.08"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0"},null),e(" "),t("path",{d:"M12 7.32v.68m0 4v9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wit={name:"FrustumPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.841 21.309a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.538 -10.158a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l1.67 6.683"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Xit={name:"FrustumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.402 5.508l2.538 10.158a1.99 1.99 0 0 1 -1.064 2.278l-7.036 3.366a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.539 -10.159a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328z"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" ")])}},qit={name:"FunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25a1.38 1.38 0 0 0 1.374 -1.244l.376 -3.756m.363 -3.63l.013 -.126a1.38 1.38 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yit={name:"FunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667z"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},Uit={name:"GardenCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.733 15.732a2.5 2.5 0 1 0 3.544 3.527"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h2m4 0h9l-3 6.01m-3.319 .693l-4.276 -.45a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Git={name:"GardenCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" ")])}},Zit={name:"GasStationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a2 2 0 0 1 2 2m3 3v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14c0 -.548 .22 -1.044 .577 -1.405m3.423 -.595h4a2 2 0 0 1 2 2v4m0 4v6"},null),e(" "),t("path",{d:"M3 20h12"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kit={name:"GasStationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11l10 0"},null),e(" ")])}},Qit={name:"GaugeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.038 16.052a9 9 0 0 0 -12.067 -12.102m-2.333 1.686a9 9 0 1 0 12.73 12.726"},null),e(" "),t("path",{d:"M11.283 11.303a1 1 0 0 0 1.419 1.41"},null),e(" "),t("path",{d:"M14 10l2 -2"},null),e(" "),t("path",{d:"M7 12c0 -1.386 .564 -2.64 1.475 -3.546m2.619 -1.372c.294 -.054 .597 -.082 .906 -.082"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jit={name:"GaugeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.41 10.59l2.59 -2.59"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" ")])}},t0t={name:"GavelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gavel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6 9l4 4"},null),e(" "),t("path",{d:"M13 10l-4 -4"},null),e(" "),t("path",{d:"M3 21h7"},null),e(" "),t("path",{d:"M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z"},null),e(" ")])}},e0t={name:"GenderAgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-agender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M7 12h11"},null),e(" ")])}},n0t={name:"GenderAndrogyneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-androgyne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11l6 -6"},null),e(" "),t("path",{d:"M9 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 9v-4h-4"},null),e(" "),t("path",{d:"M16.5 10.5l-3 -3"},null),e(" ")])}},l0t={name:"GenderBigenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-bigender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 3l-5 5"},null),e(" "),t("path",{d:"M15 3h4v4"},null),e(" "),t("path",{d:"M11 16v6"},null),e(" "),t("path",{d:"M8 19h6"},null),e(" ")])}},r0t={name:"GenderDemiboyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demiboy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" ")])}},o0t={name:"GenderDemigirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demigirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" ")])}},s0t={name:"GenderEpiceneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-epicene",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072z"},null),e(" "),t("path",{d:"M15.536 15.535l5.464 -5.535"},null),e(" "),t("path",{d:"M3 14l5.464 -5.535"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},a0t={name:"GenderFemaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-female",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},i0t={name:"GenderFemmeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-femme",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},h0t={name:"GenderGenderfluidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderfluid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928z"},null),e(" "),t("path",{d:"M15.464 14l3 -5.196"},null),e(" "),t("path",{d:"M5.536 15.195l3 -5.196"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M17 20l3 -3"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" ")])}},d0t={name:"GenderGenderlessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderless",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M7 15h10"},null),e(" ")])}},c0t={name:"GenderGenderqueerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderqueer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 11v-8"},null),e(" "),t("path",{d:"M14.5 4.5l-5 3"},null),e(" "),t("path",{d:"M9.5 4.5l5 3"},null),e(" ")])}},u0t={name:"GenderHermaphroditeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-hermaphrodite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M12 6a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M15 3a3 3 0 1 1 -6 0"},null),e(" ")])}},p0t={name:"GenderIntergenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-intergender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 11.5l6.5 6.5v-4"},null),e(" "),t("path",{d:"M11.5 13.5l6.5 6.5"},null),e(" "),t("path",{d:"M9 4a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M14 20l2 -2"},null),e(" ")])}},g0t={name:"GenderMaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-male",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" "),t("path",{d:"M19 5v5"},null),e(" ")])}},w0t={name:"GenderNeutroisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-neutrois",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" ")])}},v0t={name:"GenderThirdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-third",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12a5 5 0 1 0 10 0a5 5 0 0 0 -10 0z"},null),e(" "),t("path",{d:"M11 12h-3"},null),e(" "),t("path",{d:"M8 12l-5 -4v8z"},null),e(" ")])}},f0t={name:"GenderTransgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-transgender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M21 7v-4h-4"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M9.5 19h5"},null),e(" ")])}},m0t={name:"GenderTrasvestiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-trasvesti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20a5 5 0 1 1 0 -10a5 5 0 0 1 0 10z"},null),e(" "),t("path",{d:"M6 6l5.4 5.4"},null),e(" "),t("path",{d:"M4 8l4 -4"},null),e(" ")])}},k0t={name:"GeometryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-geometry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714"},null),e(" "),t("path",{d:"M12 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},b0t={name:"Ghost2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.999l.041 .002l.208 .003a8 8 0 0 1 7.747 7.747l.003 .248l.177 .006a3 3 0 0 1 2.819 2.819l.005 .176a3 3 0 0 1 -3 3l-.001 1.696l1.833 2.75a1 1 0 0 1 -.72 1.548l-.112 .006h-10c-3.445 .002 -6.327 -2.49 -6.901 -5.824l-.028 -.178l-.071 .001a3 3 0 0 1 -2.995 -2.824l-.005 -.175a3 3 0 0 1 3 -3l.004 -.25a8 8 0 0 1 7.996 -7.75zm0 10.001a2 2 0 0 0 -2 2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1a2 2 0 0 0 -2 -2zm-1.99 -4l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},M0t={name:"Ghost2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9h.01"},null),e(" "),t("path",{d:"M14 9h.01"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v1l1 0a2 2 0 1 1 0 4l-1 0v3l2 3h-10a6 6 0 0 1 -6 -5.775l0 -.226l-1 0a2 2 0 0 1 0 -4l1 0v-1a7 7 0 0 1 7 -7z"},null),e(" "),t("path",{d:"M11 14h2a1 1 0 0 0 -2 0z"},null),e(" ")])}},x0t={name:"GhostFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a8 8 0 0 1 7.996 7.75l.004 .25l-.001 6.954l.01 .103a2.78 2.78 0 0 1 -1.468 2.618l-.163 .08c-1.053 .475 -2.283 .248 -3.129 -.593l-.137 -.146a.65 .65 0 0 0 -1.024 0a2.65 2.65 0 0 1 -4.176 0a.65 .65 0 0 0 -.512 -.25c-.2 0 -.389 .092 -.55 .296a2.78 2.78 0 0 1 -4.859 -2.005l.008 -.091l.001 -6.966l.004 -.25a8 8 0 0 1 7.996 -7.75zm2.82 10.429a1 1 0 0 0 -1.391 -.25a2.5 2.5 0 0 1 -2.858 0a1 1 0 0 0 -1.142 1.642a4.5 4.5 0 0 0 5.142 0a1 1 0 0 0 .25 -1.392zm-4.81 -4.429l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},z0t={name:"GhostOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.794 4.776a7 7 0 0 1 10.206 6.224v4m-.12 3.898a1.779 1.779 0 0 1 -2.98 .502a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7c0 -1.683 .594 -3.227 1.583 -4.434"},null),e(" "),t("path",{d:"M14 10h.01"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I0t={name:"GhostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7"},null),e(" "),t("path",{d:"M10 10l.01 0"},null),e(" "),t("path",{d:"M14 10l.01 0"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" ")])}},y0t={name:"GifIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gif",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 16v-8h5"},null),e(" "),t("path",{d:"M20 12h-4"},null),e(" ")])}},C0t={name:"GiftCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 16l3 -3l3 3"},null),e(" "),t("path",{d:"M8 13c-.789 0 -2 -.672 -2 -1.5s.711 -1.5 1.5 -1.5c1.128 -.02 2.077 1.17 2.5 3c.423 -1.83 1.372 -3.02 2.5 -3c.789 0 1.5 .672 1.5 1.5s-1.211 1.5 -2 1.5h-4z"},null),e(" ")])}},S0t={name:"GiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h8a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4m-4 0h-8a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M19 12v3m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 -2.457 -2.963m2.023 -2c.14 -.023 .286 -.037 .434 -.037c1.974 -.034 3.76 1.95 4.5 5c.74 -3.05 2.526 -5.034 4.5 -5a2.5 2.5 0 1 1 0 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$0t={name:"GiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8l0 13"},null),e(" "),t("path",{d:"M19 12v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5"},null),e(" ")])}},A0t={name:"GitBranchDeletedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch-deleted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" "),t("path",{d:"M15 4l4 4"},null),e(" "),t("path",{d:"M15 8l4 -4"},null),e(" ")])}},B0t={name:"GitBranchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" ")])}},H0t={name:"GitCherryPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-cherry-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 3v6"},null),e(" "),t("path",{d:"M7 15v6"},null),e(" "),t("path",{d:"M13 7h2.5l1.5 5l-1.5 5h-2.5"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" ")])}},N0t={name:"GitCommitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-commit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},j0t={name:"GitCompareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-compare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" "),t("path",{d:"M13 18h-5a2 2 0 0 1 -2 -2v-8"},null),e(" "),t("path",{d:"M10 15l3 3l-3 3"},null),e(" ")])}},P0t={name:"GitForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},L0t={name:"GitMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M7 8a4 4 0 0 0 4 4h4"},null),e(" ")])}},D0t={name:"GitPullRequestClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11v5"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},O0t={name:"GitPullRequestDraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-draft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11h.01"},null),e(" "),t("path",{d:"M18 6h.01"},null),e(" ")])}},F0t={name:"GitPullRequestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8l0 8"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" ")])}},R0t={name:"GizmoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gizmo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 19l-8 -5.5l-8 5.5"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},T0t={name:"GlassFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" "),t("path",{d:"M6 10a5 5 0 0 1 6 0a5 5 0 0 0 6 0"},null),e(" ")])}},E0t={name:"GlassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M7 3h10l1 7a4.511 4.511 0 0 1 -1.053 2.94m-2.386 1.625a7.48 7.48 0 0 1 -2.561 .435c-3.314 0 -6 -1.988 -6 -5l.5 -3.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V0t={name:"GlassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" ")])}},_0t={name:"GlobeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.36 8.339a4 4 0 0 0 5.281 5.31m2 -1.98a4 4 0 0 0 -5.262 -5.325"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 0 0 9.799 .553m2.016 -2a8.015 8.015 0 0 0 -2.565 -11.555"},null),e(" "),t("path",{d:"M12 18v4"},null),e(" "),t("path",{d:"M8 22h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W0t={name:"GlobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 1 0 9.25 -13"},null),e(" "),t("path",{d:"M12 18l0 4"},null),e(" "),t("path",{d:"M8 22l8 0"},null),e(" ")])}},X0t={name:"GoGameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-go-game",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h7m4 0h7"},null),e(" "),t("path",{d:"M3 6h1m4 0h13"},null),e(" "),t("path",{d:"M3 18h1m4 0h8m4 0h1"},null),e(" "),t("path",{d:"M6 3v1m0 4v8m0 4v1"},null),e(" "),t("path",{d:"M12 3v7m0 4v7"},null),e(" "),t("path",{d:"M18 3v13m0 4v1"},null),e(" ")])}},q0t={name:"GolfOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-6m0 -4v-5l7 4l-5.07 2.897"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y0t={name:"GolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-15l7 4l-7 4"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" ")])}},U0t={name:"GpsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l-1 -4l-4 -1l9 -4z"},null),e(" ")])}},G0t={name:"GradienterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gradienter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.227 14c.917 4 4.497 7 8.773 7c4.277 0 7.858 -3 8.773 -7"},null),e(" "),t("path",{d:"M20.78 10a9 9 0 0 0 -8.78 -7a8.985 8.985 0 0 0 -8.782 7"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Z0t={name:"GrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},K0t={name:"GraphOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l.5 -.5m2 -2l.5 -.5l2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q0t={name:"GraphIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l3 -3l2 2"},null),e(" ")])}},J0t={name:"Grave2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" ")])}},tht={name:"GraveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" "),t("path",{d:"M10 16v-5h-4v-4h4v-4h4v4h4v4h-4v5"},null),e(" ")])}},eht={name:"GridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},nht={name:"GridPatternIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-pattern",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" ")])}},lht={name:"GrillForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5l11.5 11.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05"},null),e(" ")])}},rht={name:"GrillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a6 6 0 0 0 6 6h2c.315 0 .624 -.024 .926 -.071m2.786 -1.214a5.99 5.99 0 0 0 2.284 -4.49l0 -.225h-7"},null),e(" "),t("path",{d:"M18.827 18.815a2 2 0 1 1 -2.663 -2.633"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oht={name:"GrillSpatulaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-spatula",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.2 10.2l6.3 6.3"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05l-4 4z"},null),e(" ")])}},sht={name:"GrillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14a6 6 0 0 0 6 6h2a6 6 0 0 0 6 -5.775l0 -.225z"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M15 14l1 2"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" ")])}},aht={name:"GripHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},iht={name:"GripVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hht={name:"GrowthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-growth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m-4 3.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m0 -7.5v6"},null),e(" ")])}},dht={name:"GuitarPickFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-1.613 0 -2.882 .104 -3.825 .323l-.23 .057c-3.019 .708 -4.945 2.503 -4.945 5.62c0 3.367 1.939 8.274 4.22 11.125c.32 .4 .664 .786 1.03 1.158l.367 .36a4.904 4.904 0 0 0 6.752 .011a15.04 15.04 0 0 0 1.41 -1.528c2.491 -3.113 4.221 -7.294 4.221 -11.126c0 -3.025 -1.813 -4.806 -4.71 -5.562l-.266 -.066c-.936 -.25 -2.281 -.372 -4.024 -.372z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cht={name:"GuitarPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z"},null),e(" ")])}},uht={name:"H1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-8l-2 2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},pht={name:"H2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},ght={name:"H3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M17 16a2 2 0 1 0 2 -2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},wht={name:"H4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18v-8l-4 6h5"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},vht={name:"H5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},fht={name:"H6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},mht={name:"HammerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.698 10.72l-6.668 6.698a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l6.696 -6.676"},null),e(" "),t("path",{d:"M18.713 14.702l2 -2a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kht={name:"HammerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.414 10l-7.383 7.418a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l7.407 -7.385"},null),e(" "),t("path",{d:"M18.121 15.293l2.586 -2.586a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2.586 2.586a1 1 0 0 0 0 1.414l7.586 7.586a1 1 0 0 0 1.414 0z"},null),e(" ")])}},bht={name:"HandClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M5 3l-1 -1"},null),e(" "),t("path",{d:"M4 7h-1"},null),e(" "),t("path",{d:"M14 3l1 -1"},null),e(" "),t("path",{d:"M15 6h1"},null),e(" ")])}},Mht={name:"HandFingerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-5"},null),e(" "),t("path",{d:"M8.06 4.077a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1"},null),e(" "),t("path",{d:"M12.063 8.065a1.5 1.5 0 0 1 1.937 1.435v.5"},null),e(" "),t("path",{d:"M14.06 10.082a1.5 1.5 0 0 1 2.94 .418v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xht={name:"HandFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},zht={name:"HandGrabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-grab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11v-3.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M11 9.5v-3a1.5 1.5 0 0 1 3 0v3.5"},null),e(" "),t("path",{d:"M14 7.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M17 9.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Iht={name:"HandLittleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-little-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-5.5a1.5 1.5 0 0 1 3 0v9.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" ")])}},yht={name:"HandMiddleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-middle-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-8a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Cht={name:"HandMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"},null),e(" "),t("path",{d:"M14 3.458c1.32 .354 2.558 .902 3.685 1.612"},null),e(" ")])}},Sht={name:"HandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8 13.5v-5.5m.44 -3.562a1.5 1.5 0 0 1 2.56 1.062v1.5m0 4.008v.992m0 -6.5v-2a1.5 1.5 0 1 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2c-2.114 -.292 -3.956 -1.397 -5 -3l-2.7 -5.25a1.7 1.7 0 0 1 2.75 -2l.9 1.75"},null),e(" ")])}},$ht={name:"HandRingFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-ring-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 12v-6.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},Aht={name:"HandRockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-rock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-6.5a1.5 1.5 0 0 1 3 0v10.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" ")])}},Bht={name:"HandSanitizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-sanitizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10z"},null),e(" "),t("path",{d:"M15 3h-6a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},Hht={name:"HandStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Nht={name:"HandThreeFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-three-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},jht={name:"HandTwoFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-two-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Pht={name:"Hanger2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M18 18h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -2 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M6 16m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Lht={name:"HangerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0m6.506 6.506l3.461 1.922a2 2 0 0 1 1.029 1.749v.823m-2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l6.673 -3.707"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dht={name:"HangerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0c0 1.667 .67 3 2 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428"},null),e(" ")])}},Oht={name:"HashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l14 0"},null),e(" "),t("path",{d:"M5 15l14 0"},null),e(" "),t("path",{d:"M11 4l-4 16"},null),e(" "),t("path",{d:"M17 4l-4 16"},null),e(" ")])}},Fht={name:"HazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-haze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M20 12h1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M8 12a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M3 20h18"},null),e(" ")])}},Rht={name:"HdrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hdr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M17 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},Tht={name:"HeadingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 7v12"},null),e(" "),t("path",{d:"M17 5v8m0 4v2"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eht={name:"HeadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 5v14"},null),e(" "),t("path",{d:"M17 5v14"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M5 5h4"},null),e(" ")])}},Vht={name:"HeadphonesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a3 3 0 0 1 2.824 -2.995l.176 -.005h1c.351 0 .688 .06 1 .171v-.171a7 7 0 0 0 -13.996 -.24l-.004 .24v.17c.25 -.088 .516 -.144 .791 -.163l.209 -.007h1a3 3 0 0 1 2.995 2.824l.005 .176v3a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a9 9 0 0 1 17.996 -.265l.004 .265v6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_ht={name:"HeadphonesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 13h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-1a2 2 0 0 1 -2 -2v-3"},null),e(" "),t("path",{d:"M4 15v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3"},null),e(" ")])}},Wht={name:"HeadphonesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15v-3a8 8 0 0 1 16 0v3"},null),e(" ")])}},Xht={name:"HeadsetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3c0 -1.953 .7 -3.742 1.862 -5.13m2.182 -1.825a8 8 0 0 1 11.956 6.955v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M16.169 12.18c.253 -.115 .534 -.18 .831 -.18h1a2 2 0 0 1 2 2v2m-1.183 2.826c-.25 .112 -.526 .174 -.817 .174h-1a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qht={name:"HeadsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3a8 8 0 1 1 16 0v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M15 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" ")])}},Yht={name:"HealthRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-health-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z"},null),e(" ")])}},Uht={name:"HeartBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-2 4l4 3l-2 4v3"},null),e(" ")])}},Ght={name:"HeartFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zht={name:"HeartHandshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-handshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-3.293 3.293a1 1 0 0 0 0 1.414l.543 .543c.69 .69 1.81 .69 2.5 0l1 -1a3.182 3.182 0 0 1 4.5 0l2.25 2.25"},null),e(" "),t("path",{d:"M12.5 15.5l2 2"},null),e(" "),t("path",{d:"M15 13l2 2"},null),e(" ")])}},Kht={name:"HeartMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" ")])}},Qht={name:"HeartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19.5 12.572l-1.5 1.428m-2 2l-4 4l-7.5 -7.428a5 5 0 0 1 -1.288 -5.068a4.976 4.976 0 0 1 1.788 -2.504m3 -1c1.56 0 3.05 .727 4 2a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Jht={name:"HeartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" "),t("path",{d:"M17 13v6"},null),e(" ")])}},t2t={name:"HeartRateMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-rate-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M7 10h2l2 3l2 -6l1 3h3"},null),e(" ")])}},e2t={name:"HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},n2t={name:"HeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M3 13h2l2 3l2 -6l1 3h3"},null),e(" ")])}},l2t={name:"HeartsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 0 1 .49 -7.586m3.01 -1a5 5 0 0 1 4 2.018a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M11.814 11.814a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238l2.01 -2.021m1.977 -1.99l.211 -.212a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.283 .178"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r2t={name:"HeartsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M15.99 20l4.197 -4.223a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.28 .282l-.279 -.283a2.747 2.747 0 0 0 -3.91 -.007a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238z"},null),e(" ")])}},o2t={name:"HelicopterLandingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter-landing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l0 8"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M15 8l0 8"},null),e(" ")])}},s2t={name:"HelicopterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l1 2h6"},null),e(" "),t("path",{d:"M12 9a2 2 0 0 0 -2 2v3c0 1.1 .9 2 2 2h7a2 2 0 0 0 2 -2c0 -3.31 -3.13 -5 -7 -5h-2z"},null),e(" "),t("path",{d:"M13 9l0 -3"},null),e(" "),t("path",{d:"M5 6l15 0"},null),e(" "),t("path",{d:"M15 9.1v3.9h5.5"},null),e(" "),t("path",{d:"M15 19l0 -3"},null),e(" "),t("path",{d:"M19 19l-8 0"},null),e(" ")])}},a2t={name:"HelmetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.633 4.654a9 9 0 0 1 11.718 11.7m-1.503 2.486a9.008 9.008 0 0 1 -1.192 1.16h-11.312a9 9 0 0 1 -.185 -13.847"},null),e(" "),t("path",{d:"M20 9h-7m-2.768 1.246c.507 2 1.596 3.418 3.268 4.254c.524 .262 1.07 .49 1.64 .683"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},i2t={name:"HelmetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16z"},null),e(" "),t("path",{d:"M20 9h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5"},null),e(" ")])}},h2t={name:"HelpCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d2t={name:"HelpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},c2t={name:"HelpHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 13.586a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u2t={name:"HelpHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},p2t={name:"HelpOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},g2t={name:"HelpOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},w2t={name:"HelpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 .394 -1.1m2.106 -1.9a2.6 2.6 0 0 0 -3.347 -3.361"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v2t={name:"HelpSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},f2t={name:"HelpSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m2t={name:"HelpSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},k2t={name:"HelpSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},b2t={name:"HelpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},M2t={name:"HelpTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},x2t={name:"HelpTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},z2t={name:"HelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"},null),e(" ")])}},I2t={name:"HemisphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.588 6.603c-2.178 .547 -3.588 1.417 -3.588 2.397c0 1.657 4.03 3 9 3m3.72 -.267c3.114 -.473 5.28 -1.518 5.28 -2.733c0 -1.657 -4.03 -3 -9 -3c-.662 0 -1.308 .024 -1.93 .07"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 13.677 7.69m2.165 -1.843a8.965 8.965 0 0 0 2.158 -5.847"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},y2t={name:"HemispherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 9 9m8.396 -5.752a8.978 8.978 0 0 0 .604 -3.248"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},C2t={name:"HemisphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 18 0"},null),e(" ")])}},S2t={name:"Hexagon0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm1.575 5.586a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$2t={name:"Hexagon1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm.952 5.803l-.084 .076l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114c-.083 -.777 -1.008 -1.16 -1.617 -.67z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},A2t={name:"Hexagon2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},B2t={name:"Hexagon3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H2t={name:"Hexagon3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03z"},null),e(" "),t("path",{d:"M12 16.5v4.5"},null),e(" "),t("path",{d:"M4.5 7.5l3.5 2.5"},null),e(" "),t("path",{d:"M16 10l4 -2.5"},null),e(" "),t("path",{d:"M12 7.5v4.5l-4 2"},null),e(" "),t("path",{d:"M12 12l4 2"},null),e(" "),t("path",{d:"M12 16.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z"},null),e(" ")])}},N2t={name:"Hexagon4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j2t={name:"Hexagon5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},P2t={name:"Hexagon6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L2t={name:"Hexagon7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},D2t={name:"Hexagon8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O2t={name:"Hexagon9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},F2t={name:"HexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414l-6.775 3.996a3.21 3.21 0 0 0 -1.65 2.807v7.285a3.226 3.226 0 0 0 1.678 2.826l6.695 4.237c1.034 .57 2.22 .57 3.2 .032l6.804 -4.302c.98 -.537 1.623 -1.618 1.623 -2.793v-7.284l-.005 -.204a3.223 3.223 0 0 0 -1.284 -2.39l-.107 -.075l-.007 -.007a1.074 1.074 0 0 0 -.181 -.133l-6.776 -3.995a3.33 3.33 0 0 0 -3.216 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R2t={name:"HexagonLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},T2t={name:"HexagonLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},E2t={name:"HexagonLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},V2t={name:"HexagonLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},_2t={name:"HexagonLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},W2t={name:"HexagonLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},X2t={name:"HexagonLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},q2t={name:"HexagonLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Y2t={name:"HexagonLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},U2t={name:"HexagonLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},G2t={name:"HexagonLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},Z2t={name:"HexagonLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},K2t={name:"HexagonLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},Q2t={name:"HexagonLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},J2t={name:"HexagonLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},t1t={name:"HexagonLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},e1t={name:"HexagonLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},n1t={name:"HexagonLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},l1t={name:"HexagonLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},r1t={name:"HexagonLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},o1t={name:"HexagonLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},s1t={name:"HexagonLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},a1t={name:"HexagonLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},i1t={name:"HexagonLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},h1t={name:"HexagonLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},d1t={name:"HexagonLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},c1t={name:"HexagonNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},u1t={name:"HexagonNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},p1t={name:"HexagonNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},g1t={name:"HexagonNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},w1t={name:"HexagonNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},v1t={name:"HexagonNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},f1t={name:"HexagonNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},m1t={name:"HexagonNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.02 6.858a2 2 0 0 1 1 1.752v6.555c0 .728 -.395 1.4 -1.032 1.753l-6.017 3.844a2 2 0 0 1 -1.948 0l-6.016 -3.844a2 2 0 0 1 -1.032 -1.752v-6.556c0 -.728 .395 -1.4 1.032 -1.753l6.017 -3.582a2.062 2.062 0 0 1 2 0l6.017 3.583h-.029z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},k1t={name:"HexagonNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},b1t={name:"HexagonNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},M1t={name:"HexagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.693 4.69l2.336 -1.39a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .246 -.045 .485 -.13 .707m-2.16 1.847l-4.739 3.027a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.154 -.687"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x1t={name:"HexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" ")])}},z1t={name:"HexagonalPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-1.87m-4 0h-1.87c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v2m0 4v5"},null),e(" "),t("path",{d:"M20.972 16.968a2.01 2.01 0 0 0 .028 -.337v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266a1.99 1.99 0 0 0 -1.066 .309m-2.345 1.643l-1.103 .774a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h7.265c.41 0 .811 -.126 1.147 -.363l2.26 -1.587"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I1t={name:"HexagonalPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v3.5"},null),e(" "),t("path",{d:"M21 12.5v-5.131c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h4.133"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},y1t={name:"HexagonalPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v11"},null),e(" "),t("path",{d:"M3.853 18.274l3.367 2.363a2 2 0 0 0 1.147 .363h7.265c.41 0 .811 -.126 1.147 -.363l3.367 -2.363c.536 -.375 .854 -.99 .854 -1.643v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644z"},null),e(" ")])}},C1t={name:"HexagonalPyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.877 7.88l-4.56 7.53a1.988 1.988 0 0 0 .266 2.484l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l1.264 -1.263m1.792 -2.205a1.986 1.986 0 0 0 -.262 -1.538l-7.846 -12.954a.996 .996 0 0 0 -1.676 0l-1.772 2.926"},null),e(" "),t("path",{d:"M12 2l-1.254 4.742m-.841 3.177l-2.905 10.981"},null),e(" "),t("path",{d:"M12 2l2.153 8.14m1.444 5.457l1.403 5.303"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},S1t={name:"HexagonalPyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.642 12.04l-5.804 -9.583a.996 .996 0 0 0 -1.676 0l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h4.982"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l3.304 12.489"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},$1t={name:"HexagonalPyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.162 2.457l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l2.527 -2.523a1.988 1.988 0 0 0 .267 -2.483l-7.846 -12.954a.996 .996 0 0 0 -1.676 0z"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l5 18.9"},null),e(" ")])}},A1t={name:"HexagonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-3m1.332 -2.666l2.668 -1.334l4 2v5"},null),e(" "),t("path",{d:"M12 13l.661 -.331"},null),e(" "),t("path",{d:"M15.345 11.328l.655 -.328l4 2v3m-1.334 2.667l-2.666 1.333l-4 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B1t={name:"HexagonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-5l4 -2l4 2v5"},null),e(" "),t("path",{d:"M12 13l4 -2l4 2v5l-4 2l-4 -2"},null),e(" ")])}},H1t={name:"Hierarchy2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h4v4h-4z"},null),e(" "),t("path",{d:"M3 17h4v4h-4z"},null),e(" "),t("path",{d:"M17 17h4v4h-4z"},null),e(" "),t("path",{d:"M7 17l5 -4l5 4"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},N1t={name:"Hierarchy3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17l2 -3"},null),e(" "),t("path",{d:"M9 10l2 -3"},null),e(" "),t("path",{d:"M13 7l2 3"},null),e(" "),t("path",{d:"M17 14l2 3"},null),e(" "),t("path",{d:"M15 14l-2 3"},null),e(" "),t("path",{d:"M9 14l2 3"},null),e(" ")])}},j1t={name:"HierarchyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.585 17.587a2 2 0 0 0 2.813 2.843"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7v1m0 4v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P1t={name:"HierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},L1t={name:"HighlightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l-6 6v4h4l6 -6m2 -2l2.503 -2.503a2.828 2.828 0 1 0 -4 -4l-2.497 2.497"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M19 15h2v2m-2 2h-6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D1t={name:"HighlightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M21 15v4h-8l4 -4z"},null),e(" ")])}},O1t={name:"HistoryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.05 11a8.975 8.975 0 0 1 2.54 -5.403m2.314 -1.697a9 9 0 0 1 12.113 12.112m-1.695 2.312a9 9 0 0 1 -14.772 -3.324m-.5 5v-5h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F1t={name:"HistoryToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},R1t={name:"HistoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l0 4l2 2"},null),e(" "),t("path",{d:"M3.05 11a9 9 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},T1t={name:"Home2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M10 12h4v4h-4z"},null),e(" ")])}},E1t={name:"HomeBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h7.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.661 0 1.248 .32 1.612 .815"},null),e(" "),t("path",{d:"M19 14l-2 4h4l-2 4"},null),e(" ")])}},V1t={name:"HomeCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.58 0 1.103 .247 1.468 .642"},null),e(" ")])}},_1t={name:"HomeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 13.488v-1.488h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.525"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},W1t={name:"HomeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.6"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4.159"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" ")])}},X1t={name:"HomeDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},q1t={name:"HomeDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" ")])}},Y1t={name:"HomeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},U1t={name:"HomeEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.325 0 .631 .077 .902 .215"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},G1t={name:"HomeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Z1t={name:"HomeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.857 1.257"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},K1t={name:"HomeHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l-6 -6l-9 9h2v7a2 2 0 0 0 2 2h3.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 17.5l-.585 -.578a1.516 1.516 0 0 0 -2 0c-.477 .433 -.551 1.112 -.177 1.622l1.762 2.456c.37 .506 1.331 1 2 1h3c1.009 0 1.497 -.683 1.622 -1.593c.252 -.938 .378 -1.74 .378 -2.407c0 -1 -.939 -1.843 -2 -2h-1v-2.636c0 -.754 -.672 -1.364 -1.5 -1.364s-1.5 .61 -1.5 1.364v4.136z"},null),e(" ")])}},Q1t={name:"HomeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.39 0 .754 .112 1.061 .304"},null),e(" "),t("path",{d:"M19 21.5l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z"},null),e(" ")])}},J1t={name:"HomeInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14v-2h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.75 1.032"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" ")])}},tdt={name:"HomeLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.085 11.085l-8.085 -8.085l-9 9h2v7a2 2 0 0 0 2 2h4.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.807 1.143"},null),e(" "),t("path",{d:"M21 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16l-5 3l5 2"},null),e(" ")])}},edt={name:"HomeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 15v-3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" ")])}},ndt={name:"HomeMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},ldt={name:"HomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2m2 2v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rdt={name:"HomePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},odt={name:"HomeQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.467 0 .896 .16 1.236 .428"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},sdt={name:"HomeRibbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-ribbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15h5v7l-2.5 -1.5l-2.5 1.5z"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" ")])}},adt={name:"HomeSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},idt={name:"HomeShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.247 0 .484 .045 .702 .127"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},hdt={name:"HomeShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.341"},null),e(" "),t("path",{d:"M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},ddt={name:"HomeSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 22v-2"},null),e(" "),t("path",{d:"M18 22v-4"},null),e(" "),t("path",{d:"M21 22v-6"},null),e(" "),t("path",{d:"M19 12.494v-.494h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},cdt={name:"HomeStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.258 10.258l-7.258 -7.258l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},udt={name:"HomeStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13v-1h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M13 22l3 -3l2 2l4 -4"},null),e(" "),t("path",{d:"M19 17h3v3"},null),e(" ")])}},pdt={name:"HomeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h6.344"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},gdt={name:"HomeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13.4v-1.4h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.402 0 .777 .119 1.091 .323"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},wdt={name:"HomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"},null),e(" ")])}},vdt={name:"HorseToyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-horse-toy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 17.5c5.667 4.667 11.333 4.667 17 0"},null),e(" "),t("path",{d:"M19 18.5l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M5 18.5l2 -9.5"},null),e(" "),t("path",{d:"M8 20l2 -5h4l2 5"},null),e(" ")])}},fdt={name:"HotelServiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hotel-service",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z"},null),e(" ")])}},mdt={name:"HourglassEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},kdt={name:"HourglassFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v2a6.996 6.996 0 0 1 -3.393 6a6.994 6.994 0 0 1 3.388 5.728l.005 .272v2a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-2a6.996 6.996 0 0 1 3.393 -6a6.994 6.994 0 0 1 -3.388 -5.728l-.005 -.272v-2a2 2 0 0 1 1.85 -1.995l.15 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bdt={name:"HourglassHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Mdt={name:"HourglassLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},xdt={name:"HourglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2a6 6 0 0 1 6 -6"},null),e(" "),t("path",{d:"M6 6a6 6 0 0 0 6 6m3.13 -.88a6 6 0 0 0 2.87 -5.12v-2a1 1 0 0 0 -1 -1h-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zdt={name:"HourglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Idt={name:"HtmlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-html",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M1 16v-8"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M1 12h4"},null),e(" "),t("path",{d:"M7 8h4"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M20 8v8h3"},null),e(" ")])}},ydt={name:"HttpConnectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-connect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M17 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Cdt={name:"HttpDeleteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-delete",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" ")])}},Sdt={name:"HttpGetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-get",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},$dt={name:"HttpHeadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-head",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},Adt={name:"HttpOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Bdt={name:"HttpPatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-patch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Hdt={name:"HttpPostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-post",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Ndt={name:"HttpPutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-put",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},jdt={name:"HttpQueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-que",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M6 15l1 1"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},Pdt={name:"HttpTraceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-trace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},Ldt={name:"IceCream2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 11a6 6 0 1 0 -11.315 0"},null),e(" "),t("path",{d:"M6.342 11l5.658 11l5.657 -11z"},null),e(" ")])}},Ddt={name:"IceCreamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 8v9h8v-1m0 -4v-5a4 4 0 0 0 -7.277 -2.294"},null),e(" "),t("path",{d:"M8 10.5l1.74 -.76m2.79 -1.222l3.47 -1.518"},null),e(" "),t("path",{d:"M8 14.5l4.488 -1.964"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Odt={name:"IceCreamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 17h8v-10a4 4 0 1 0 -8 0v10z"},null),e(" "),t("path",{d:"M8 10.5l8 -3.5"},null),e(" "),t("path",{d:"M8 14.5l8 -3.5"},null),e(" ")])}},Fdt={name:"IceSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M3 19h17a1 1 0 0 0 1 -1"},null),e(" "),t("path",{d:"M9 15v4"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" ")])}},Rdt={name:"IconsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.01 4.041a3.5 3.5 0 0 0 2.49 5.959c.975 0 1.865 -.357 2.5 -1m.958 -3.044a3.503 3.503 0 0 0 -2.905 -2.912"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M18 14h3v3m0 4h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tdt={name:"IconsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 6.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M14 14h7v7h-7z"},null),e(" ")])}},Edt={name:"IdBadge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h3v4h-3z"},null),e(" "),t("path",{d:"M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" ")])}},Vdt={name:"IdBadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.141 3.125a3 3 0 0 1 .859 -.125h8a3 3 0 0 1 3 3v9m-.13 3.874a3 3 0 0 1 -2.87 2.126h-8a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 .128 -.869"},null),e(" "),t("path",{d:"M11.179 11.176a2 2 0 1 0 2.635 2.667"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_dt={name:"IdBadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},Wdt={name:"IdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v10m-1.437 2.561c-.455 .279 -.99 .439 -1.563 .439h-12a3 3 0 0 1 -3 -3v-10c0 -1.083 .573 -2.031 1.433 -2.559"},null),e(" "),t("path",{d:"M8.175 8.178a2 2 0 1 0 2.646 2.65"},null),e(" "),t("path",{d:"M15 8h2"},null),e(" "),t("path",{d:"M16 12h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Xdt={name:"IdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8l2 0"},null),e(" "),t("path",{d:"M15 12l2 0"},null),e(" "),t("path",{d:"M7 16l10 0"},null),e(" ")])}},qdt={name:"InboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.593 3.422a2 2 0 0 1 -1.407 .578h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l.987 -.987m2.013 -2.013h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ydt={name:"InboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l3 -3h3"},null),e(" ")])}},Udt={name:"IndentDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-7 0"},null),e(" "),t("path",{d:"M20 12l-9 0"},null),e(" "),t("path",{d:"M20 18l-7 0"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" ")])}},Gdt={name:"IndentIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-11 0"},null),e(" "),t("path",{d:"M20 12l-7 0"},null),e(" "),t("path",{d:"M20 18l-11 0"},null),e(" "),t("path",{d:"M4 8l4 4l-4 4"},null),e(" ")])}},Zdt={name:"InfinityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.165 8.174a4 4 0 0 0 -5.166 3.826a4 4 0 0 0 6.829 2.828a10 10 0 0 0 2.172 -2.828m1.677 -2.347a10 10 0 0 1 .495 -.481a4 4 0 1 1 5.129 6.1m-3.521 .537a4 4 0 0 1 -1.608 -.981a10 10 0 0 1 -2.172 -2.828"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kdt={name:"InfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828"},null),e(" ")])}},Qdt={name:"InfoCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jdt={name:"InfoCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},tct={name:"InfoHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 9.586h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ect={name:"InfoHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},nct={name:"InfoOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lct={name:"InfoOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},rct={name:"InfoSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},oct={name:"InfoSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sct={name:"InfoSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},act={name:"InfoSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ict={name:"InfoSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},hct={name:"InfoTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dct={name:"InfoTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10h.01"},null),e(" "),t("path",{d:"M11 13h1v4h1"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},cct={name:"InnerShadowBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.144 4.72c3.92 -3.695 10.093 -3.625 13.927 .209c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.32 10.816a1 1 0 1 0 -1.414 1.414a7 7 0 0 0 9.9 0a1 1 0 0 0 -1.414 -1.414a5 5 0 0 1 -7.072 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uct={name:"InnerShadowBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm-6 9a1 1 0 0 0 -1 1a7 7 0 0 0 7 7a1 1 0 0 0 0 -2a5 5 0 0 1 -5 -5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pct={name:"InnerShadowBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 0 6 6"},null),e(" ")])}},gct={name:"InnerShadowBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm6 9a1 1 0 0 0 -1 1a5 5 0 0 1 -5 5a1 1 0 0 0 0 2a7 7 0 0 0 7 -7a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wct={name:"InnerShadowBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 1 -6 6"},null),e(" ")])}},vct={name:"InnerShadowBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 -12.728a9 9 0 0 0 12.728 12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},fct={name:"InnerShadowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.535 2.121a1 1 0 0 0 -1.414 0a7 7 0 0 0 0 9.9a1 1 0 1 0 1.414 -1.414a5 5 0 0 1 0 -7.072a1 1 0 0 0 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mct={name:"InnerShadowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 1 0 -8.486"},null),e(" ")])}},kct={name:"InnerShadowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a1 1 0 0 0 -1.413 1.414a5 5 0 0 1 0 7.072a1 1 0 0 0 1.414 1.414a7 7 0 0 0 0 -9.9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bct={name:"InnerShadowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 1 -12.728 -12.728a9 9 0 0 1 12.728 12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 1 0 8.486"},null),e(" ")])}},Mct={name:"InnerShadowTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a7 7 0 0 0 -9.899 0a1 1 0 0 0 1.414 1.414a5 5 0 0 1 7.072 0a1 1 0 0 0 1.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xct={name:"InnerShadowTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a7 7 0 0 0 -7 7a1 1 0 0 0 2 0a5 5 0 0 1 5 -5a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zct={name:"InnerShadowTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 1 0 18a9 9 0 0 1 0 -18z"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 1 6 -6"},null),e(" ")])}},Ict={name:"InnerShadowTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a1 1 0 0 0 0 2a5 5 0 0 1 5 5a1 1 0 0 0 2 0a7 7 0 0 0 -7 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yct={name:"InnerShadowTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 0 -6 -6"},null),e(" ")])}},Cct={name:"InnerShadowTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 0 12.728 12.728a9 9 0 0 0 -12.728 -12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 0 -8.486 0"},null),e(" ")])}},Sct={name:"InputSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-input-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M15.5 15.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M17.5 17.5l2.5 2.5"},null),e(" ")])}},$ct={name:"Ironing1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},Act={name:"Ironing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" ")])}},Bct={name:"Ironing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" ")])}},Hct={name:"IroningOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nct={name:"IroningSteamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15"},null),e(" "),t("path",{d:"M16 16h-13a7 7 0 0 1 6.056 -6.937"},null),e(" "),t("path",{d:"M13 9h6.8"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jct={name:"IroningSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" ")])}},Pct={name:"IroningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" ")])}},Lct={name:"IrregularPolyhedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.706 4.73a1 1 0 0 0 -.458 1.14l1.752 6.13l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503c.04 -.016 .079 -.035 .116 -.055m-.474 -4.474l-.802 -2.806l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-3.544 1.412"},null),e(" "),t("path",{d:"M4.5 5.5c.661 .214 1.161 .38 1.5 .5m6 2c.29 -.003 .603 -.06 .878 -.17l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l.742 -.265m2.956 -1.057c.312 -.11 .816 -.291 1.512 -.54"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dct={name:"IrregularPolyhedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l.221 -.088"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Oct={name:"IrregularPolyhedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503a1 1 0 0 0 .592 -1.204l-1.752 -6.131l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131z"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" ")])}},Fct={name:"ItalicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-italic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5l6 0"},null),e(" "),t("path",{d:"M7 19l6 0"},null),e(" "),t("path",{d:"M14 5l-4 14"},null),e(" ")])}},Rct={name:"JacketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jacket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l-4 5l-4 -5"},null),e(" "),t("path",{d:"M12 19a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-8.172a2 2 0 0 1 .586 -1.414l.828 -.828a2 2 0 0 0 .586 -1.414v-2.172a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2.172a2 2 0 0 0 .586 1.414l.828 .828a2 2 0 0 1 .586 1.414v8.172a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 13h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M4 17h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 19v-11"},null),e(" ")])}},Tct={name:"JetpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jetpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6a3 3 0 1 0 -6 0v7h6v-7z"},null),e(" "),t("path",{d:"M14 13h6v-7a3 3 0 0 0 -6 0v7z"},null),e(" "),t("path",{d:"M5 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M15 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},Ect={name:"JewishStarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.433 6h-5.433l-.114 .006a1 1 0 0 0 -.743 1.508l2.69 4.486l-2.69 4.486l-.054 .1a1 1 0 0 0 .911 1.414h5.434l2.709 4.514l.074 .108a1 1 0 0 0 1.64 -.108l2.708 -4.514h5.435l.114 -.006a1 1 0 0 0 .743 -1.508l-2.691 -4.486l2.691 -4.486l.054 -.1a1 1 0 0 0 -.911 -1.414h-5.434l-2.709 -4.514a1 1 0 0 0 -1.714 0l-2.71 4.514z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vct={name:"JewishStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z"},null),e(" ")])}},_ct={name:"JpgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jpg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 8h4v6a2 2 0 0 1 -2 2h-1.5a.5 .5 0 0 1 -.5 -.5v-.5"},null),e(" ")])}},Wct={name:"JsonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-json",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16v-8l3 8v-8"},null),e(" "),t("path",{d:"M15 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M1 8h3v6.5a1.5 1.5 0 0 1 -3 0v-.5"},null),e(" "),t("path",{d:"M7 15a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1"},null),e(" ")])}},Xct={name:"JumpRopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jump-rope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 14v-6a3 3 0 1 1 6 0v8a3 3 0 0 0 6 0v-6"},null),e(" "),t("path",{d:"M16 3m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" ")])}},qct={name:"KarateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-karate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l4.5 1l3 2.5"},null),e(" "),t("path",{d:"M13 21v-8l3 -5.5"},null),e(" "),t("path",{d:"M8 4.5l4 2l4 1l4 3.5l-2 3.5"},null),e(" ")])}},Yct={name:"KayakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kayak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.414 6.414a2 2 0 0 0 0 -2.828l-1.414 -1.414l-2.828 2.828l1.414 1.414a2 2 0 0 0 2.828 0z"},null),e(" "),t("path",{d:"M17.586 17.586a2 2 0 0 0 0 2.828l1.414 1.414l2.828 -2.828l-1.414 -1.414a2 2 0 0 0 -2.828 0z"},null),e(" "),t("path",{d:"M6.5 6.5l11 11"},null),e(" "),t("path",{d:"M22 2.5c-9.983 2.601 -17.627 7.952 -20 19.5c9.983 -2.601 17.627 -7.952 20 -19.5z"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" "),t("path",{d:"M12.5 6.5l5 5"},null),e(" ")])}},Uct={name:"KeringIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kering",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5"},null),e(" "),t("path",{d:"M3 9l3 6l3 -6"},null),e(" "),t("path",{d:"M9 20l6 -16"},null),e(" ")])}},Gct={name:"KeyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.17 6.159l2.316 -2.316a2.877 2.877 0 0 1 4.069 0l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.33 2.33"},null),e(" "),t("path",{d:"M14.931 14.948a2.863 2.863 0 0 1 -1.486 -.79l-.301 -.302l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.863 2.863 0 0 1 -.794 -1.504"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zct={name:"KeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" ")])}},Kct={name:"KeyboardHideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-hide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 21l2 -2l2 2"},null),e(" ")])}},Qct={name:"KeyboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m4 0h10a2 2 0 0 1 2 2v8c0 .554 -.226 1.056 -.59 1.418"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jct={name:"KeyboardShowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-show",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},tut={name:"KeyboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 .01"},null),e(" ")])}},eut={name:"KeyframeAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},nut={name:"KeyframeAlignHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},lut={name:"KeyframeAlignVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},rut={name:"KeyframeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" ")])}},out={name:"KeyframesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" "),t("path",{d:"M17 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" "),t("path",{d:"M13 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" ")])}},sut={name:"LadderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v1m0 4v13"},null),e(" "),t("path",{d:"M16 3v9m0 4v5"},null),e(" "),t("path",{d:"M8 14h6"},null),e(" "),t("path",{d:"M8 10h2m4 0h2"},null),e(" "),t("path",{d:"M10 6h6"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aut={name:"LadderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v18"},null),e(" "),t("path",{d:"M16 3v18"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" ")])}},iut={name:"LambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20l6.5 -9"},null),e(" "),t("path",{d:"M19 20c-6 0 -6 -16 -12 -16"},null),e(" ")])}},hut={name:"Lamp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h9"},null),e(" "),t("path",{d:"M10 21l-7 -8l8.5 -5.5"},null),e(" "),t("path",{d:"M13 14c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8z"},null),e(" "),t("path",{d:"M11.742 7.574l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144"},null),e(" "),t("path",{d:"M15.5 12l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369"},null),e(" ")])}},dut={name:"LampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M7.325 7.35l-2.325 4.65h7m4 0h3l-4 -8h-6l-.338 .676"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cut={name:"LampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M5 12h14l-4 -8h-6z"},null),e(" ")])}},uut={name:"LanguageHiraganaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-hiragana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M7 4c0 4.846 0 7 .5 8"},null),e(" "),t("path",{d:"M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},put={name:"LanguageKatakanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-katakana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"},null),e(" "),t("path",{d:"M8 8c0 1.5 .5 3 -2 5"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},gut={name:"LanguageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1m4 0h2"},null),e(" "),t("path",{d:"M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8"},null),e(" "),t("path",{d:"M18 18h-5.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wut={name:"LanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M9 3v2c0 4.418 -2.239 8 -5 8"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},vut={name:"LassoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -1.804 .878 -3.449 2.319 -4.69m2.49 -1.506a11.066 11.066 0 0 1 4.191 -.804c4.97 0 9 3.134 9 7c0 1.799 -.873 3.44 -2.307 4.68m-2.503 1.517a11.066 11.066 0 0 1 -4.19 .803c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fut={name:"LassoPolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252l-1.028 -3.252l2 -7l7 5l8 -3l1 9l-9 3l-5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},mut={name:"LassoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -3.866 4.03 -7 9 -7s9 3.134 9 7s-4.03 7 -9 7c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},kut={name:"LayersDifferenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-difference",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 8l-2 0l0 2"},null),e(" "),t("path",{d:"M8 14l0 2l2 0"},null),e(" "),t("path",{d:"M14 8l2 0l0 2"},null),e(" "),t("path",{d:"M16 14l0 2l-2 0"},null),e(" ")])}},but={name:"LayersIntersect2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Mut={name:"LayersIntersectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xut={name:"LayersLinkedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-linked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.268a2 2 0 0 1 1 1.732v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h3"},null),e(" "),t("path",{d:"M5 15.734a2 2 0 0 1 -1 -1.734v-8a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-3"},null),e(" ")])}},zut={name:"LayersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.59 4.581c.362 -.359 .86 -.581 1.41 -.581h8a2 2 0 0 1 2 2v8c0 .556 -.227 1.06 -.594 1.422m-3.406 .578h-6a2 2 0 0 1 -2 -2v-6"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Iut={name:"LayersSubtractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-subtract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" ")])}},yut={name:"LayersUnionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-union",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},Cut={name:"Layout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Sut={name:"LayoutAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},$ut={name:"LayoutAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 5"},null),e(" "),t("path",{d:"M12 15l0 5"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Aut={name:"LayoutAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M8 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},But={name:"LayoutAlignMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l5 0"},null),e(" "),t("path",{d:"M15 12l5 0"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hut={name:"LayoutAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Nut={name:"LayoutAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M9 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jut={name:"LayoutBoardSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},Put={name:"LayoutBoardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},Lut={name:"LayoutBottombarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 8l-2 2l-2 -2"},null),e(" ")])}},Dut={name:"LayoutBottombarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 10l-2 -2l-2 2"},null),e(" ")])}},Out={name:"LayoutBottombarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" ")])}},Fut={name:"LayoutCardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Rut={name:"LayoutCollageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-collage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 4l4 16"},null),e(" "),t("path",{d:"M12 12l-8 2"},null),e(" ")])}},Tut={name:"LayoutColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Eut={name:"LayoutDashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v8h-6z"},null),e(" "),t("path",{d:"M4 16h6v4h-6z"},null),e(" "),t("path",{d:"M14 12h6v8h-6z"},null),e(" "),t("path",{d:"M14 4h6v4h-6z"},null),e(" ")])}},Vut={name:"LayoutDistributeHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},_ut={name:"LayoutDistributeVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Wut={name:"LayoutGridAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 17h6m-3 -3v6"},null),e(" ")])}},Xut={name:"LayoutGridRemoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-remove",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 17h6"},null),e(" ")])}},qut={name:"LayoutGridIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Yut={name:"LayoutKanbanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-kanban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l6 0"},null),e(" "),t("path",{d:"M14 4l6 0"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Uut={name:"LayoutListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Gut={name:"LayoutNavbarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" ")])}},Zut={name:"LayoutNavbarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},Kut={name:"LayoutNavbarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9l16 0"},null),e(" ")])}},Qut={name:"LayoutOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4a2 2 0 0 1 2 2m-1.162 2.816a1.993 1.993 0 0 1 -.838 .184h-2a2 2 0 0 1 -2 -2v-1c0 -.549 .221 -1.046 .58 -1.407"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v10m-.595 3.423a2 2 0 0 1 -1.405 .577h-2a2 2 0 0 1 -2 -2v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jut={name:"LayoutRowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-rows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},tpt={name:"LayoutSidebarLeftCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M15 10l-2 2l2 2"},null),e(" ")])}},ept={name:"LayoutSidebarLeftExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" ")])}},npt={name:"LayoutSidebarRightCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M9 10l2 2l-2 2"},null),e(" ")])}},lpt={name:"LayoutSidebarRightExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M10 10l-2 2l2 2"},null),e(" ")])}},rpt={name:"LayoutSidebarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4l0 16"},null),e(" ")])}},opt={name:"LayoutSidebarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4l0 16"},null),e(" ")])}},spt={name:"LayoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},apt={name:"LeafOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.475 -4.27 2.3 -7.64 6.331 -9.683"},null),e(" "),t("path",{d:"M6.618 6.623c-1.874 1.625 -2.625 3.877 -2.632 6.377c0 1 0 3 2 5h3.014c2.733 0 5.092 -.635 6.92 -2.087m1.899 -2.099c1.224 -1.872 1.987 -4.434 2.181 -7.814v-2h-4.014c-2.863 0 -5.118 .405 -6.861 1.118"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ipt={name:"LeafIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.5 -4.5 2.5 -8 7 -10"},null),e(" "),t("path",{d:"M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z"},null),e(" ")])}},hpt={name:"LegoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8 4v-1h8v2h1a3 3 0 0 1 3 3v8m-.884 3.127a2.99 2.99 0 0 1 -2.116 .873v1h-10v-1a3 3 0 0 1 -3 -3v-9c0 -1.083 .574 -2.032 1.435 -2.56"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dpt={name:"LegoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11l.01 0"},null),e(" "),t("path",{d:"M14.5 11l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M7 5h1v-2h8v2h1a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3v1h-10v-1a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3"},null),e(" ")])}},cpt={name:"Lemon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a2 2 0 0 1 1.611 -.815z"},null),e(" ")])}},upt={name:"LemonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143"},null),e(" "),t("path",{d:"M5.868 15.06a6.5 6.5 0 0 0 9.193 -9.192"},null),e(" "),t("path",{d:"M10.464 10.464l4.597 4.597"},null),e(" "),t("path",{d:"M10.464 10.464v6.364"},null),e(" "),t("path",{d:"M10.464 10.464h6.364"},null),e(" ")])}},ppt={name:"LetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12"},null),e(" "),t("path",{d:"M7 13l10 0"},null),e(" ")])}},gpt={name:"LetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h6a4 4 0 0 1 0 8a4 4 0 0 1 0 8h-6"},null),e(" "),t("path",{d:"M7 12l6 0"},null),e(" ")])}},wpt={name:"LetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5"},null),e(" ")])}},vpt={name:"LetterCaseLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},fpt={name:"LetterCaseToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" ")])}},mpt={name:"LetterCaseUpperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-upper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" ")])}},kpt={name:"LetterCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},bpt={name:"LetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h6a5 5 0 0 1 5 5v6a5 5 0 0 1 -5 5h-6v-16"},null),e(" ")])}},Mpt={name:"LetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16h10"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},xpt={name:"LetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},zpt={name:"LetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-2h-4"},null),e(" ")])}},Ipt={name:"LetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" ")])}},ypt={name:"LetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Cpt={name:"LetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4v12a4 4 0 0 1 -4 4h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Spt={name:"LetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M7 12h2l8 -8"},null),e(" "),t("path",{d:"M9 12l8 8"},null),e(" ")])}},$pt={name:"LetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16h10"},null),e(" ")])}},Apt={name:"LetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-16l6 14l6 -14v16"},null),e(" ")])}},Bpt={name:"LetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16l10 16v-16"},null),e(" ")])}},Hpt={name:"LetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" ")])}},Npt={name:"LetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" ")])}},jpt={name:"LetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" "),t("path",{d:"M13 15l5 5"},null),e(" ")])}},Ppt={name:"LetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" "),t("path",{d:"M12 13l5 7"},null),e(" ")])}},Lpt={name:"LetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a4 4 0 0 0 -4 -4h-2a4 4 0 0 0 0 8h2a4 4 0 0 1 0 8h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Dpt={name:"LetterSpacingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-spacing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M13 4l3 8l3 -8"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M17 20l2 -2l-2 -2"},null),e(" "),t("path",{d:"M7 16l-2 2l2 2"},null),e(" ")])}},Opt={name:"LetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l12 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Fpt={name:"LetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v11a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-11"},null),e(" ")])}},Rpt={name:"LetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l6 16l6 -16"},null),e(" ")])}},Tpt={name:"LetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l4 16l4 -14l4 14l4 -16"},null),e(" ")])}},Ept={name:"LetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l10 16"},null),e(" "),t("path",{d:"M17 4l-10 16"},null),e(" ")])}},Vpt={name:"LetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l5 9l5 -9"},null),e(" "),t("path",{d:"M12 13l0 7"},null),e(" ")])}},_pt={name:"LetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h10l-10 16h10"},null),e(" ")])}},Wpt={name:"LicenseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 1 0 4 0v-2m0 -4v-8a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -.864 .126m-2.014 2.025a3 3 0 0 0 -.122 .849v11"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Xpt={name:"LicenseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11"},null),e(" "),t("path",{d:"M9 7l4 0"},null),e(" "),t("path",{d:"M9 11l4 0"},null),e(" ")])}},qpt={name:"LifebuoyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.171 9.172a4 4 0 0 0 5.65 5.663m1.179 -2.835a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 12.73 12.725m1.667 -2.301a9 9 0 0 0 -12.077 -12.1"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ypt={name:"LifebuoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" ")])}},Upt={name:"LighterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lighter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3v16a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-7h-12a2 2 0 0 1 -2 -2v-5a2 2 0 0 1 2 -2h3z"},null),e(" "),t("path",{d:"M16 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},Gpt={name:"LineDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h2"},null),e(" "),t("path",{d:"M17 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},Zpt={name:"LineDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" ")])}},Kpt={name:"LineHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l3 -3l3 3"},null),e(" "),t("path",{d:"M3 16l3 3l3 -3"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M13 6l7 0"},null),e(" "),t("path",{d:"M13 12l7 0"},null),e(" "),t("path",{d:"M13 18l7 0"},null),e(" ")])}},Qpt={name:"LineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Jpt={name:"LinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},t4t={name:"LinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},e4t={name:"ListCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 5.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 11.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 17.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M11 6l9 0"},null),e(" "),t("path",{d:"M11 12l9 0"},null),e(" "),t("path",{d:"M11 18l9 0"},null),e(" ")])}},n4t={name:"ListDetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5h8"},null),e(" "),t("path",{d:"M13 9h5"},null),e(" "),t("path",{d:"M13 15h8"},null),e(" "),t("path",{d:"M13 19h5"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},l4t={name:"ListNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 6h9"},null),e(" "),t("path",{d:"M11 12h9"},null),e(" "),t("path",{d:"M12 18h8"},null),e(" "),t("path",{d:"M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4"},null),e(" "),t("path",{d:"M6 10v-6l-2 2"},null),e(" ")])}},r4t={name:"ListSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.5 18.5l2.5 2.5"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" "),t("path",{d:"M4 12h4"},null),e(" "),t("path",{d:"M4 18h4"},null),e(" ")])}},o4t={name:"ListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l11 0"},null),e(" "),t("path",{d:"M9 12l11 0"},null),e(" "),t("path",{d:"M9 18l11 0"},null),e(" "),t("path",{d:"M5 6l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M5 18l0 .01"},null),e(" ")])}},s4t={name:"LivePhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.296 11.29a1 1 0 1 0 1.414 1.415"},null),e(" "),t("path",{d:"M8.473 8.456a5 5 0 1 0 7.076 7.066m1.365 -2.591a5 5 0 0 0 -5.807 -5.851"},null),e(" "),t("path",{d:"M15.9 20.11v.01"},null),e(" "),t("path",{d:"M19.04 17.61v.01"},null),e(" "),t("path",{d:"M20.77 14v.01"},null),e(" "),t("path",{d:"M20.77 10v.01"},null),e(" "),t("path",{d:"M19.04 6.39v.01"},null),e(" "),t("path",{d:"M15.9 3.89v.01"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M8.1 3.89v.01"},null),e(" "),t("path",{d:"M4.96 6.39v.01"},null),e(" "),t("path",{d:"M3.23 10v.01"},null),e(" "),t("path",{d:"M3.23 14v.01"},null),e(" "),t("path",{d:"M4.96 17.61v.01"},null),e(" "),t("path",{d:"M8.1 20.11v.01"},null),e(" "),t("path",{d:"M12 21v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a4t={name:"LivePhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M15.9 20.11l0 .01"},null),e(" "),t("path",{d:"M19.04 17.61l0 .01"},null),e(" "),t("path",{d:"M20.77 14l0 .01"},null),e(" "),t("path",{d:"M20.77 10l0 .01"},null),e(" "),t("path",{d:"M19.04 6.39l0 .01"},null),e(" "),t("path",{d:"M15.9 3.89l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" "),t("path",{d:"M8.1 3.89l0 .01"},null),e(" "),t("path",{d:"M4.96 6.39l0 .01"},null),e(" "),t("path",{d:"M3.23 10l0 .01"},null),e(" "),t("path",{d:"M3.23 14l0 .01"},null),e(" "),t("path",{d:"M4.96 17.61l0 .01"},null),e(" "),t("path",{d:"M8.1 20.11l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" ")])}},i4t={name:"LiveViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M12 18l-3.5 -5a4 4 0 1 1 7 0l-3.5 5"},null),e(" ")])}},h4t={name:"LoadBalancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-load-balancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16v3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M14.894 12.227l6.11 -2.224"},null),e(" "),t("path",{d:"M17.159 8.21l3.845 1.793l-1.793 3.845"},null),e(" "),t("path",{d:"M9.101 12.214l-6.075 -2.211"},null),e(" "),t("path",{d:"M6.871 8.21l-3.845 1.793l1.793 3.845"},null),e(" ")])}},d4t={name:"Loader2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 9 9"},null),e(" ")])}},c4t={name:"Loader3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" ")])}},u4t={name:"LoaderQuarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-quarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},p4t={name:"LoaderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M16.25 7.75l2.15 -2.15"},null),e(" "),t("path",{d:"M18 12l3 0"},null),e(" "),t("path",{d:"M16.25 16.25l2.15 2.15"},null),e(" "),t("path",{d:"M12 18l0 3"},null),e(" "),t("path",{d:"M7.75 16.25l-2.15 2.15"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},g4t={name:"LocationBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.896 19.792l-2.896 -5.792l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.487 9.657"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},w4t={name:"LocationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.891 2.006l.106 -.006l.13 .008l.09 .016l.123 .035l.107 .046l.1 .057l.09 .067l.082 .075l.052 .059l.082 .116l.052 .096c.047 .1 .077 .206 .09 .316l.005 .106c0 .075 -.008 .149 -.024 .22l-.035 .123l-6.532 18.077a1.55 1.55 0 0 1 -1.409 .903a1.547 1.547 0 0 1 -1.329 -.747l-.065 -.127l-3.352 -6.702l-6.67 -3.336a1.55 1.55 0 0 1 -.898 -1.259l-.006 -.149c0 -.56 .301 -1.072 .841 -1.37l.14 -.07l18.017 -6.506l.106 -.03l.108 -.018z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},v4t={name:"LocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.775 -1.724"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},f4t={name:"LocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},m4t={name:"LockAccessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.554 .225 -1.055 .588 -1.417"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.55 0 1.05 -.222 1.41 -.582"},null),e(" "),t("path",{d:"M15 11a1 1 0 0 1 1 1m-.29 3.704a1 1 0 0 1 -.71 .296h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 11v-1m1.182 -2.826a2 2 0 0 1 2.818 1.826v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k4t={name:"LockAccessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},b4t={name:"LockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},M4t={name:"LockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.749 1.028"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},x4t={name:"LockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},z4t={name:"LockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},I4t={name:"LockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.564 0 1.074 .234 1.437 .61"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},y4t={name:"LockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},C4t={name:"LockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.015"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},S4t={name:"LockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.734 1.002"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},$4t={name:"LockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.38 0 .734 .106 1.037 .29"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},A4t={name:"LockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},B4t={name:"LockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.719 -3.289a4 4 0 0 1 7.281 2.289v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},H4t={name:"LockOpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.347 -3.631a4 4 0 0 1 7.653 1.631"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N4t={name:"LockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-5a4 4 0 0 1 8 0"},null),e(" ")])}},j4t={name:"LockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},P4t={name:"LockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.24 0 .47 .042 .683 .12"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},L4t={name:"LockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},D4t={name:"LockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.265 0 .518 .052 .75 .145"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},O4t={name:"LockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},F4t={name:"LockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},R4t={name:"LockSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 4a3 3 0 0 1 2.995 2.824l.005 .176v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a3 3 0 0 1 3 -3zm3 6h-6v3h6v-3zm-3 -4a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},T4t={name:"LockSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},E4t={name:"LockSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},V4t={name:"LockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-4a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h9"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},_4t={name:"LockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.739 1.01"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},W4t={name:"LockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},X4t={name:"LockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" ")])}},q4t={name:"LogicAndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-and",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" ")])}},Y4t={name:"LogicBufferIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-buffer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M7 5l10 7l-10 7z"},null),e(" ")])}},U4t={name:"LogicNandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},G4t={name:"LogicNorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M6 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Z4t={name:"LogicNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M5 5l10 7l-10 7z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},K4t={name:"LogicOrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-or",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 9h7"},null),e(" "),t("path",{d:"M2 15h7"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},Q4t={name:"LogicXnorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xnor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-2"},null),e(" "),t("path",{d:"M2 9h4"},null),e(" "),t("path",{d:"M2 15h4"},null),e(" "),t("path",{d:"M5 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},J4t={name:"LogicXorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h6"},null),e(" "),t("path",{d:"M2 15h6"},null),e(" "),t("path",{d:"M7 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M10 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},tgt={name:"LoginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-login",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M20 12h-13l3 -3m0 6l-3 -3"},null),e(" ")])}},egt={name:"Logout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v-2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M15 12h-12l3 -3"},null),e(" "),t("path",{d:"M6 15l-3 -3"},null),e(" ")])}},ngt={name:"LogoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12h12l-3 -3"},null),e(" "),t("path",{d:"M18 15l3 -3"},null),e(" ")])}},lgt={name:"LollipopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.462 7.493a7 7 0 0 0 9.06 9.039m2.416 -1.57a7 7 0 1 0 -9.884 -9.915"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M12.71 12.715a3.5 3.5 0 0 1 -5.71 -2.715"},null),e(" "),t("path",{d:"M14 17c.838 0 1.607 -.294 2.209 -.785m1.291 -2.715a3.5 3.5 0 0 0 -3.5 -3.5"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 -3.5 3.5"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rgt={name:"LollipopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M14 10a3.5 3.5 0 0 1 -7 0"},null),e(" "),t("path",{d:"M14 17a3.5 3.5 0 0 0 0 -7"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 0 7"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" ")])}},ogt={name:"LuggageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6a2 2 0 0 1 2 2v6m0 4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-10c0 -.546 .218 -1.04 .573 -1.4"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h4m4 0h4"},null),e(" "),t("path",{d:"M6 16h10"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sgt={name:"LuggageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 16h12"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" ")])}},agt={name:"LungsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.583 6.608c-1.206 1.058 -2.07 2.626 -2.933 5.449c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007c1.611 0 2.918 -1.335 2.918 -2.98v-8.02"},null),e(" "),t("path",{d:"M15 11v-3.743c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c0 .063 0 .125 0 .187m-1.455 2.51c-.417 .265 -.9 .43 -1.419 .464l-.202 .007c-1.613 0 -2.92 -1.335 -2.92 -2.98v-2.02"},null),e(" "),t("path",{d:"M9 12a2.99 2.99 0 0 0 2.132 -.89"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},igt={name:"LungsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007z"},null),e(" "),t("path",{d:"M17.92 20c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007z"},null),e(" "),t("path",{d:"M9 12a3 3 0 0 0 3 -3a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 4v5"},null),e(" ")])}},hgt={name:"MacroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 0 0 11.47 2.467"},null),e(" "),t("path",{d:"M15.53 15.53a6 6 0 0 0 -3.53 5.47"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M10.866 10.87a5.007 5.007 0 0 1 -3.734 -3.723m-.132 -4.147l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -2.604 4.389"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dgt={name:"MacroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 1 0 12 0"},null),e(" "),t("path",{d:"M18 15a6 6 0 0 0 -6 6"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M12 11a5 5 0 0 1 -5 -5v-3l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -5 5z"},null),e(" ")])}},cgt={name:"MagnetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3a2 2 0 0 1 2 2m0 4v4a3 3 0 0 0 5.552 1.578m.448 -3.578v-6a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a7.99 7.99 0 0 1 -.424 2.577m-1.463 2.584a8 8 0 0 1 -14.113 -5.161v-8c0 -.297 .065 -.58 .181 -.833"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M15 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ugt={name:"MagnetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0"},null),e(" "),t("path",{d:"M4 8l5 0"},null),e(" "),t("path",{d:"M15 8l4 0"},null),e(" ")])}},pgt={name:"MailAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l8 5.345m4 -1.345l6 -4"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},ggt={name:"MailBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},wgt={name:"MailCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},vgt={name:"MailCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fgt={name:"MailCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},mgt={name:"MailCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},kgt={name:"MailDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},bgt={name:"MailDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Mgt={name:"MailExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xgt={name:"MailFastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-fast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h3"},null),e(" "),t("path",{d:"M3 11h2"},null),e(" "),t("path",{d:"M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z"},null),e(" "),t("path",{d:"M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982"},null),e(" ")])}},zgt={name:"MailFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7.535v9.465a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9.465l9.445 6.297l.116 .066a1 1 0 0 0 .878 0l.116 -.066l9.445 -6.297z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 4c1.08 0 2.027 .57 2.555 1.427l-9.555 6.37l-9.555 -6.37a2.999 2.999 0 0 1 2.354 -1.42l.201 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Igt={name:"MailForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 6l9 6l9 -6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},ygt={name:"MailHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l9 6l2.983 -1.989l6.017 -4.011"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Cgt={name:"MailMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Sgt={name:"MailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 7l9 6l.565 -.377m2.435 -1.623l6 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$gt={name:"MailOpenedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.872 14.287l6.522 6.52a2.996 2.996 0 0 1 -2.218 1.188l-.176 .005h-14a2.995 2.995 0 0 1 -2.394 -1.191l6.521 -6.522l2.318 1.545l.116 .066a1 1 0 0 0 .878 0l.116 -.066l2.317 -1.545z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2 9.535l5.429 3.62l-5.429 5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 9.535v9.05l-5.43 -5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.44 2.102l.115 .066l8.444 5.629l-8.999 6l-9 -6l8.445 -5.63a1 1 0 0 1 .994 -.065z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Agt={name:"MailOpenedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10"},null),e(" "),t("path",{d:"M3 19l6 -6"},null),e(" "),t("path",{d:"M15 13l6 6"},null),e(" ")])}},Bgt={name:"MailPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Hgt={name:"MailPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Ngt={name:"MailPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},jgt={name:"MailQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Pgt={name:"MailSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Lgt={name:"MailShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Dgt={name:"MailStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Ogt={name:"MailUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Fgt={name:"MailXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Rgt={name:"MailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Tgt={name:"MailboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5"},null),e(" "),t("path",{d:"M12 8v-5h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Egt={name:"MailboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5"},null),e(" "),t("path",{d:"M12 11v-8h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" ")])}},Vgt={name:"ManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M9 9h6l-1 7h-4z"},null),e(" "),t("path",{d:"M5 11c1.333 -1.333 2.667 -2 4 -2"},null),e(" "),t("path",{d:"M19 11c-1.333 -1.333 -2.667 -2 -4 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},_gt={name:"ManualGearboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-manual-gearbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 8l0 8"},null),e(" "),t("path",{d:"M12 8l0 8"},null),e(" "),t("path",{d:"M19 8v2a2 2 0 0 1 -2 2h-12"},null),e(" ")])}},Wgt={name:"Map2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l-3 -1.5l-6 3v-13l6 -3l6 3l6 -3v7.5"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Xgt={name:"MapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.32 4.34l.68 -.34l6 3l6 -3v13m-2.67 1.335l-3.33 1.665l-6 -3l-6 3v-13l2.665 -1.333"},null),e(" "),t("path",{d:"M9 4v1m0 4v8"},null),e(" "),t("path",{d:"M15 7v4m0 4v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qgt={name:"MapPinBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.591 -4.629"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Ygt={name:"MapPinCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.463 21.431a1.999 1.999 0 0 1 -1.876 -.531l-4.244 -4.243a8 8 0 1 1 13.594 -4.655"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Ugt={name:"MapPinCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.87 21.48a1.992 1.992 0 0 1 -1.283 -.58l-4.244 -4.243a8 8 0 1 1 13.355 -3.474"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ggt={name:"MapPinCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.85 21.48a1.992 1.992 0 0 1 -1.263 -.58l-4.244 -4.243a8 8 0 1 1 13.385 -3.585"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Zgt={name:"MapPinCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.005 21.485a1.994 1.994 0 0 1 -1.418 -.585l-4.244 -4.243a8 8 0 1 1 13.634 -5.05"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Kgt={name:"MapPinDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.02 21.206a2 2 0 0 1 -2.433 -.306l-4.244 -4.243a8 8 0 1 1 13.607 -6.555"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Qgt={name:"MapPinDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.736 21.345a2 2 0 0 1 -2.149 -.445l-4.244 -4.243a8 8 0 1 1 13.59 -4.624"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Jgt={name:"MapPinExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15.005 19.31l-1.591 1.59a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.592 -4.638"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},twt={name:"MapPinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 4.636a9 9 0 0 1 .203 12.519l-.203 .21l-4.243 4.242a3 3 0 0 1 -4.097 .135l-.144 -.135l-4.244 -4.243a9 9 0 0 1 12.728 -12.728zm-6.364 3.364a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ewt={name:"MapPinHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.973 2.839"},null),e(" "),t("path",{d:"M11.76 21.47a1.991 1.991 0 0 1 -1.173 -.57l-4.244 -4.243a8 8 0 1 1 13.657 -5.588"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},nwt={name:"MapPinMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.758 21.337a2 2 0 0 1 -2.171 -.437l-4.244 -4.243a8 8 0 1 1 12.585 -1.652"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},lwt={name:"MapPinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.442 9.432a3 3 0 0 0 4.113 4.134m1.445 -2.566a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M17.152 17.162l-3.738 3.738a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 0 1 -.476 -10.794m2.18 -1.82a8.003 8.003 0 0 1 10.91 10.912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rwt={name:"MapPinPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.337 -3.413"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},owt={name:"MapPinPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.783 21.326a2 2 0 0 1 -2.196 -.426l-4.244 -4.243a8 8 0 1 1 13.657 -5.62"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},swt={name:"MapPinPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.794 21.322a2 2 0 0 1 -2.207 -.422l-4.244 -4.243a8 8 0 1 1 13.59 -4.616"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},awt={name:"MapPinQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M14.997 19.317l-1.583 1.583a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.657 -5.584"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},iwt={name:"MapPinSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.916 11.707a3 3 0 1 0 -2.916 2.293"},null),e(" "),t("path",{d:"M11.991 21.485a1.994 1.994 0 0 1 -1.404 -.585l-4.244 -4.243a8 8 0 1 1 13.651 -5.351"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},hwt={name:"MapPinShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.02 21.485a1.996 1.996 0 0 1 -1.433 -.585l-4.244 -4.243a8 8 0 1 1 13.403 -3.651"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},dwt={name:"MapPinStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.908 2.86"},null),e(" "),t("path",{d:"M11.059 21.25a2 2 0 0 1 -.472 -.35l-4.244 -4.243a8 8 0 1 1 13.646 -6.079"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},cwt={name:"MapPinUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.789 21.324a2 2 0 0 1 -2.202 -.424l-4.244 -4.243a8 8 0 1 1 13.59 -4.626"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},uwt={name:"MapPinXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.024 21.204a2 2 0 0 1 -2.437 -.304l-4.244 -4.243a8 8 0 1 1 13.119 -2.766"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},pwt={name:"MapPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"},null),e(" ")])}},gwt={name:"MapPinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M8 7l0 .01"},null),e(" "),t("path",{d:"M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M16 15l0 .01"},null),e(" ")])}},wwt={name:"MapSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v8"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},vwt={name:"MapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 -3l6 3l6 -3l0 13l-6 3l-6 -3l-6 3l0 -13"},null),e(" "),t("path",{d:"M9 4l0 13"},null),e(" "),t("path",{d:"M15 7l0 13"},null),e(" ")])}},fwt={name:"MarkdownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M19 19h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 1.85 -2"},null),e(" "),t("path",{d:"M7 15v-6l2 2l1 -1m1 1v4"},null),e(" "),t("path",{d:"M17.5 13.5l.5 -.5m-2 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mwt={name:"MarkdownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-6l2 2l2 -2v6"},null),e(" "),t("path",{d:"M14 13l2 2l2 -2m-2 2v-6"},null),e(" ")])}},kwt={name:"Marquee2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2"},null),e(" ")])}},bwt={name:"MarqueeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 -.556 .227 -1.059 .593 -1.421"},null),e(" "),t("path",{d:"M9 4h1.5"},null),e(" "),t("path",{d:"M13.5 4h1.5"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M20 9v1.5"},null),e(" "),t("path",{d:"M20 13.5v1.5"},null),e(" "),t("path",{d:"M19.402 19.426a1.993 1.993 0 0 1 -1.402 .574"},null),e(" "),t("path",{d:"M15 20h-1.5"},null),e(" "),t("path",{d:"M10.5 20h-1.5"},null),e(" "),t("path",{d:"M6 20a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M4 15v-1.5"},null),e(" "),t("path",{d:"M4 10.5v-1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mwt={name:"MarqueeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6a2 2 0 0 1 2 -2m3 0h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m0 3a2 2 0 0 1 -2 2m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m0 -3"},null),e(" ")])}},xwt={name:"MarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5l-5 0"},null),e(" "),t("path",{d:"M19 5l0 5"},null),e(" ")])}},zwt={name:"MaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.42 19.41a2 2 0 0 1 -1.42 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.055 .588 -1.417m3.412 -.583h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9.885 9.872a3 3 0 1 0 4.245 4.24m.582 -3.396a3.012 3.012 0 0 0 -1.438 -1.433"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Iwt={name:"MaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ywt={name:"MasksTheaterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9c.058 0 .133 0 .192 0h6.616a2 2 0 0 1 1.992 2.183l-.554 6.041m-1.286 2.718a3.99 3.99 0 0 1 -2.71 1.058h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c.657 .438 1.313 .588 1.97 .451"},null),e(" "),t("path",{d:"M8.632 15.982a4.05 4.05 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 .514 -1.531a1.99 1.99 0 0 1 1.286 -.652m4 0h2.808a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cwt={name:"MasksTheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183z"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c1 .667 2 .667 3 0"},null),e(" "),t("path",{d:"M8.632 15.982a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" ")])}},Swt={name:"MassageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-massage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 22l4 -2v-3h12"},null),e(" "),t("path",{d:"M11 20h9"},null),e(" "),t("path",{d:"M8 14l3 -2l1 -4c3 1 3 4 3 6"},null),e(" ")])}},$wt={name:"MatchstickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-matchstick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l14 -9"},null),e(" "),t("path",{d:"M17 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 3l3.62 7.29a4.007 4.007 0 0 1 -.764 4.51a4 4 0 0 1 -6.493 -4.464l3.637 -7.336z"},null),e(" ")])}},Awt={name:"Math1Divide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},Bwt={name:"Math1Divide3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.5a.5 .5 0 0 1 .5 -.5h2a1.5 1.5 0 0 1 0 3h-1.167h1.167a1.5 1.5 0 0 1 0 3h-2a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},Hwt={name:"MathAvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-avg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},Nwt={name:"MathEqualGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -4"},null),e(" "),t("path",{d:"M5 14l14 -4l-14 -4"},null),e(" ")])}},jwt={name:"MathEqualLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -4"},null),e(" "),t("path",{d:"M19 14l-14 -4l14 -4"},null),e(" ")])}},Pwt={name:"MathFunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h1c.882 0 .986 .777 1.694 2.692"},null),e(" "),t("path",{d:"M13 17c.864 0 1.727 -.663 2.495 -1.512m1.717 -2.302c.993 -1.45 2.39 -3.186 3.788 -3.186"},null),e(" "),t("path",{d:"M3 19c0 1.5 .5 2 2 2s2 -4 3 -9c.237 -1.186 .446 -2.317 .647 -3.35m.727 -3.248c.423 -1.492 .91 -2.402 1.626 -2.402c1.5 0 2 .5 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lwt={name:"MathFunctionYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l3 5.063"},null),e(" "),t("path",{d:"M21 12l-4.8 9"},null),e(" ")])}},Dwt={name:"MathFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l6 6"},null),e(" "),t("path",{d:"M15 18l6 -6"},null),e(" ")])}},Owt={name:"MathGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -6l-14 -6"},null),e(" ")])}},Fwt={name:"MathIntegralXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M14 12l6 6"},null),e(" "),t("path",{d:"M14 18l6 -6"},null),e(" ")])}},Rwt={name:"MathIntegralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},Twt={name:"MathIntegralsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integrals",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},Ewt={name:"MathLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -6l14 -6"},null),e(" ")])}},Vwt={name:"MathMaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-max",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 20c0 -8.75 4 -14 7 -14.5m4 0c3 .5 7 5.75 7 14.5"},null),e(" ")])}},_wt={name:"MathMinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-min",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" "),t("path",{d:"M3 4c0 8.75 4 14 7 14.5"},null),e(" "),t("path",{d:"M14 18.5c3 -.5 7 -5.75 7 -14.5"},null),e(" ")])}},Wwt={name:"MathNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14v4"},null),e(" ")])}},Xwt={name:"MathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 14.5l1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 5h-7l-.646 2.262"},null),e(" "),t("path",{d:"M10.448 10.431l-2.448 8.569l-3 -6h-2"},null),e(" ")])}},qwt={name:"MathPiDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 9v-6"},null),e(" "),t("path",{d:"M14 3v6"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},Ywt={name:"MathPiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M20 4h-16"},null),e(" ")])}},Uwt={name:"MathSymbolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-symbols",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16.5 4.5l3 3"},null),e(" "),t("path",{d:"M19.5 4.5l-3 3"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M4 6l4 0"},null),e(" "),t("path",{d:"M18 16l.01 0"},null),e(" "),t("path",{d:"M18 20l.01 0"},null),e(" "),t("path",{d:"M4 18l4 0"},null),e(" ")])}},Gwt={name:"MathXDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" ")])}},Zwt={name:"MathXDivideY2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M15 14l3 4.5"},null),e(" "),t("path",{d:"M21 14l-4.5 7"},null),e(" "),t("path",{d:"M3 4l6 6"},null),e(" "),t("path",{d:"M3 10l6 -6"},null),e(" ")])}},Kwt={name:"MathXDivideYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" "),t("path",{d:"M9 15l3 4.5"},null),e(" "),t("path",{d:"M15 15l-4.5 7"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" ")])}},Qwt={name:"MathXMinusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Jwt={name:"MathXMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},tvt={name:"MathXPlusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},evt={name:"MathXPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},nvt={name:"MathXyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-xy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 5.063"},null),e(" "),t("path",{d:"M4 9l6 6"},null),e(" "),t("path",{d:"M4 15l6 -6"},null),e(" "),t("path",{d:"M20 9l-4.8 9"},null),e(" ")])}},lvt={name:"MathYMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},rvt={name:"MathYPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},ovt={name:"MathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5h-7l-4 14l-3 -6h-2"},null),e(" "),t("path",{d:"M14 13l6 6"},null),e(" "),t("path",{d:"M14 19l6 -6"},null),e(" ")])}},svt={name:"MaximizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.551 .223 -1.05 .584 -1.412"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.545 0 1.04 -.218 1.4 -.572"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},avt={name:"MaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},ivt={name:"MeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c1.582 -1.582 2.679 -3.407 3.242 -5.2"},null),e(" "),t("path",{d:"M16.6 12.6c-.16 -1.238 -.653 -2.345 -1.504 -3.195c-.85 -.85 -1.955 -1.344 -3.192 -1.503"},null),e(" "),t("path",{d:"M8.274 8.284c-1.792 .563 -3.616 1.66 -5.198 3.242"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hvt={name:"MeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121"},null),e(" ")])}},dvt={name:"Medal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6l3 7l-6 2l-6 -2z"},null),e(" "),t("path",{d:"M12 12l-3 -9"},null),e(" "),t("path",{d:"M15 11l-3 -8"},null),e(" "),t("path",{d:"M12 19.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},cvt={name:"MedalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v3m-4 -3v6m8 -6v6"},null),e(" "),t("path",{d:"M12 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},uvt={name:"MedicalCrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2l-.15 .005a2 2 0 0 0 -1.85 1.995v2.803l-2.428 -1.401a2 2 0 0 0 -2.732 .732l-1 1.732l-.073 .138a2 2 0 0 0 .805 2.594l2.427 1.402l-2.427 1.402a2 2 0 0 0 -.732 2.732l1 1.732l.083 .132a2 2 0 0 0 2.649 .6l2.428 -1.402v2.804a2 2 0 0 0 2 2h2l.15 -.005a2 2 0 0 0 1.85 -1.995v-2.804l2.428 1.403a2 2 0 0 0 2.732 -.732l1 -1.732l.073 -.138a2 2 0 0 0 -.805 -2.594l-2.428 -1.403l2.428 -1.402a2 2 0 0 0 .732 -2.732l-1 -1.732l-.083 -.132a2 2 0 0 0 -2.649 -.6l-2.428 1.4v-2.802a2 2 0 0 0 -2 -2h-2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pvt={name:"MedicalCrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.928 17.733l-.574 -.331l-3.354 -1.938v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l.333 .192m3.595 -.46v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-.24 .416"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gvt={name:"MedicalCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z"},null),e(" ")])}},wvt={name:"MedicineSyrupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medicine-syrup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M10 7v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3"},null),e(" ")])}},vvt={name:"MeepleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meeple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h-5a1 1 0 0 1 -1 -1c0 -2 3.378 -4.907 4 -6c-1 0 -4 -.5 -4 -2c0 -2 4 -3.5 6 -4c0 -1.5 .5 -4 3 -4s3 2.5 3 4c2 .5 6 2 6 4c0 1.5 -3 2 -4 2c.622 1.093 4 4 4 6a1 1 0 0 1 -1 1h-5c-1 0 -2 -4 -3 -4s-2 4 -3 4z"},null),e(" ")])}},fvt={name:"MenorahIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menorah",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M8 4v2a4 4 0 1 0 8 0v-2"},null),e(" "),t("path",{d:"M4 4v2a8 8 0 1 0 16 0v-2"},null),e(" "),t("path",{d:"M10 20h4"},null),e(" ")])}},mvt={name:"Menu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l16 0"},null),e(" ")])}},kvt={name:"MenuOrderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-order",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},bvt={name:"MenuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" ")])}},Mvt={name:"Message2BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},xvt={name:"Message2CancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},zvt={name:"Message2CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ivt={name:"Message2CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yvt={name:"Message2CogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Cvt={name:"Message2DollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Svt={name:"Message2DownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},$vt={name:"Message2ExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Avt={name:"Message2HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.5 19.5l-1.5 -1.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Bvt={name:"Message2MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hvt={name:"Message2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .57 -.16 1.104 -.436 1.558m-2.564 1.442h-3l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8c0 -1.084 .575 -2.034 1.437 -2.561"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nvt={name:"Message2PauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},jvt={name:"Message2PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Pvt={name:"Message2PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Lvt={name:"Message2QuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Dvt={name:"Message2SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M12 21l-.5 -.5l-2.5 -2.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ovt={name:"Message2ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Fvt={name:"Message2StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10 19l-1 -1h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Rvt={name:"Message2UpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.354 20.646l-.354 .354l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Tvt={name:"Message2XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Evt={name:"Message2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M9 18h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-3l-3 3l-3 -3z"},null),e(" ")])}},Vvt={name:"MessageBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},_vt={name:"MessageCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.995 18.603l-3.995 2.397v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Wvt={name:"MessageChatbotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-chatbot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M9.5 9h.01"},null),e(" "),t("path",{d:"M14.5 9h.01"},null),e(" "),t("path",{d:"M9.5 13a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Xvt={name:"MessageCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M10.99 19.206l-2.99 1.794v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qvt={name:"MessageCircle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.821 4.91c3.898 -2.765 9.469 -2.539 13.073 .536c3.667 3.127 4.168 8.238 1.152 11.897c-2.842 3.447 -7.965 4.583 -12.231 2.805l-.232 -.101l-4.375 .931l-.075 .013l-.11 .009l-.113 -.004l-.044 -.005l-.11 -.02l-.105 -.034l-.1 -.044l-.076 -.042l-.108 -.077l-.081 -.074l-.073 -.083l-.053 -.075l-.065 -.115l-.042 -.106l-.031 -.113l-.013 -.075l-.009 -.11l.004 -.113l.005 -.044l.02 -.11l.022 -.072l1.15 -3.451l-.022 -.036c-2.21 -3.747 -1.209 -8.392 2.411 -11.118l.23 -.168z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Yvt={name:"MessageCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" ")])}},Uvt={name:"MessageCircleBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 19.927a9.933 9.933 0 0 1 -5.338 -.927l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.043 2.746 6.346"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Gvt={name:"MessageCircleCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.015 19.98a9.87 9.87 0 0 1 -4.315 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.927 1.644 2.867 3.887 2.761 6.114"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Zvt={name:"MessageCircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.042 19.933a9.798 9.798 0 0 1 -3.342 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.127 1.814 3.052 4.36 2.694 6.808"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Kvt={name:"MessageCircleCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 19.933a9.798 9.798 0 0 1 -3.336 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.815 3.053 4.361 2.694 6.81"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Qvt={name:"MessageCircleCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.996 19.98a9.868 9.868 0 0 1 -4.296 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.842 1.572 2.783 3.691 2.77 5.821"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Jvt={name:"MessageCircleDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.16 19.914a9.94 9.94 0 0 1 -5.46 -.914l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.384 1.181 2.26 2.672 2.603 4.243"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},t3t={name:"MessageCircleDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.006 19.98a9.869 9.869 0 0 1 -4.306 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.041 2.746 6.344"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},e3t={name:"MessageCircleExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.34 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.96 1.671 2.898 3.963 2.755 6.227"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},n3t={name:"MessageCircleHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.59 19.88a9.763 9.763 0 0 1 -2.89 -.88l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.565 1.335 2.479 3.065 2.71 4.861"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},l3t={name:"MessageCircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.023 19.98a9.87 9.87 0 0 1 -4.323 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.718 2.319 3.473 5.832 2.096 8.811"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},r3t={name:"MessageCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577c3.223 -1.176 7.025 -.61 9.65 1.63c2.982 2.543 3.601 6.523 1.636 9.66m-1.908 2.109c-2.787 2.19 -6.89 2.666 -10.273 1.024l-4.7 1l1.3 -3.9c-2.229 -3.296 -1.494 -7.511 1.68 -10.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},o3t={name:"MessageCirclePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.989 19.932a9.93 9.93 0 0 1 -5.289 -.932l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.131 1.818 3.056 4.37 2.692 6.824"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},s3t={name:"MessageCirclePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.337 19.974a9.891 9.891 0 0 1 -4.637 -.974l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.63 1.39 2.554 3.21 2.736 5.085"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},a3t={name:"MessageCirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.007 19.98a9.869 9.869 0 0 1 -4.307 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.992 1.7 2.93 4.04 2.747 6.34"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i3t={name:"MessageCircleQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.341 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.649 1.407 2.575 3.253 2.742 5.152"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},h3t={name:"MessageCircleSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.303 19.955a9.818 9.818 0 0 1 -3.603 -.955l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.73 1.476 2.665 3.435 2.76 5.433"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},d3t={name:"MessageCircleShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.58 19.963a9.906 9.906 0 0 1 -4.88 -.963l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.13 1.817 3.055 4.368 2.692 6.82"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},c3t={name:"MessageCircleStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.517 19.869a9.757 9.757 0 0 1 -2.817 -.869l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.666 1.421 2.594 3.29 2.747 5.21"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},u3t={name:"MessageCircleUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 19.98a9.869 9.869 0 0 1 -4.304 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.994 1.701 2.932 4.045 2.746 6.349"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},p3t={name:"MessageCircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.593 19.855a9.96 9.96 0 0 1 -5.893 -.855l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.816 3.053 4.363 2.693 6.813"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},g3t={name:"MessageCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c3.255 2.777 3.695 7.266 1.029 10.501c-2.666 3.235 -7.615 4.215 -11.574 2.293l-4.7 1"},null),e(" ")])}},w3t={name:"MessageCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.012 19.193l-3.012 1.807v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},v3t={name:"MessageCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.031 18.581l-4.031 2.419v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},f3t={name:"MessageDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},m3t={name:"MessageDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M8 11l0 .01"},null),e(" "),t("path",{d:"M16 11l0 .01"},null),e(" ")])}},k3t={name:"MessageDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.998 18.601l-3.998 2.399v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},b3t={name:"MessageExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18h-2l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},M3t={name:"MessageForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" "),t("path",{d:"M15 11h-6"},null),e(" ")])}},x3t={name:"MessageHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.48 19.512l-2.48 1.488v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},z3t={name:"MessageLanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M10 14v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},I3t={name:"MessageMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.976 18.614l-3.976 2.386v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},y3t={name:"MessageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .577 -.163 1.116 -.445 1.573m-2.555 1.427h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8c0 -1.085 .576 -2.036 1.439 -2.562"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C3t={name:"MessagePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},S3t={name:"MessagePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.007 18.596l-4.007 2.404v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},$3t={name:"MessagePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.01 18.594l-4.01 2.406v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},A3t={name:"MessageQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14 18h-1l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},B3t={name:"MessageReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 8l0 3"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" ")])}},H3t={name:"MessageSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M11.008 19.195l-3.008 1.805v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},N3t={name:"MessageShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},j3t={name:"MessageStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10.325 19.605l-2.325 1.395v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},P3t={name:"MessageUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.99 18.606l-3.99 2.394v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},L3t={name:"MessageXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},D3t={name:"MessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z"},null),e(" ")])}},O3t={name:"MessagesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 11a1 1 0 0 1 -1 -1m0 -3.968v-2.032a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10l-3 -3h-3"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},F3t={name:"MessagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-3 -3h-7a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},R3t={name:"MeteorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.75 5.761l3.25 -2.761l-1 5l9 -5l-5 9h5l-2.467 2.536m-1.983 2.04l-2.441 2.51a6.5 6.5 0 1 1 -8.855 -9.506l2.322 -1.972"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T3t={name:"MeteorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},E3t={name:"MickeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.501 2a4.5 4.5 0 0 1 .878 8.913a8 8 0 1 1 -15.374 3.372l-.005 -.285l.005 -.285a7.991 7.991 0 0 1 .615 -2.803a4.5 4.5 0 0 1 -3.187 -6.348a4.505 4.505 0 0 1 3.596 -2.539l.225 -.018l.281 -.007l.244 .009a4.5 4.5 0 0 1 4.215 4.247a8.001 8.001 0 0 1 4.013 0a4.5 4.5 0 0 1 4.493 -4.256z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},V3t={name:"MickeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9z"},null),e(" "),t("path",{d:"M18.5 3a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799z"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},_3t={name:"Microphone2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.908 12.917a5 5 0 1 0 -5.827 -5.819"},null),e(" "),t("path",{d:"M10.116 10.125l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W3t={name:"Microphone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12.9a5 5 0 1 0 -3.902 -3.9"},null),e(" "),t("path",{d:"M15 12.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z"},null),e(" ")])}},X3t={name:"MicrophoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},q3t={name:"MicrophoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 14 0"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},Y3t={name:"MicroscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M10 10l-1 1l3 3l1 -1m2 -2l3 -3l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 5.457 -3.505m.441 -3.599a6 6 0 0 0 -2.183 -3.608"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U3t={name:"MicroscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M9 11l3 3l6 -6l-3 -3z"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 3.715 -10.712"},null),e(" ")])}},G3t={name:"MicrowaveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M15 6v5m0 4v3"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z3t={name:"MicrowaveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 6v12"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 15h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" ")])}},K3t={name:"MilitaryAwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8.5 10.5l-1 -2.5h-5.5l2.48 5.788a2 2 0 0 0 1.84 1.212h2.18"},null),e(" "),t("path",{d:"M15.5 10.5l1 -2.5h5.5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-2.18"},null),e(" ")])}},Q3t={name:"MilitaryRankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-rank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7v13h-10v-13l5 -3z"},null),e(" "),t("path",{d:"M10 13l2 -1l2 1"},null),e(" "),t("path",{d:"M10 17l2 -1l2 1"},null),e(" "),t("path",{d:"M10 9l2 -1l2 1"},null),e(" ")])}},J3t={name:"MilkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v3.071m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l.327 -.525"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tft={name:"MilkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" ")])}},eft={name:"MilkshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milkshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M6 10m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 13l1.81 7.243a1 1 0 0 0 .97 .757h4.44a1 1 0 0 0 .97 -.757l1.81 -7.243"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},nft={name:"MinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 5v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M5 15h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M5 9h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},lft={name:"MinusVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},rft={name:"MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},oft={name:"MistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h9"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M18 10h1"},null),e(" "),t("path",{d:"M5 15h5"},null),e(" "),t("path",{d:"M14 15h1m4 0h2"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sft={name:"MistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h3m4 0h9"},null),e(" "),t("path",{d:"M3 10h11m4 0h1"},null),e(" "),t("path",{d:"M5 15h5m4 0h7"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" ")])}},aft={name:"MobiledataOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ift={name:"MobiledataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" ")])}},hft={name:"MoneybagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moneybag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},dft={name:"MoodAngryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-angry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 9l2 1"},null),e(" "),t("path",{d:"M16 9l-2 1"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" ")])}},cft={name:"MoodAnnoyed2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},uft={name:"MoodAnnoyedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" ")])}},pft={name:"MoodBoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-boy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81"},null),e(" "),t("path",{d:"M9.5 16a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 2c1.5 1 2.5 3.5 2.5 5"},null),e(" "),t("path",{d:"M12.5 2c1.5 2 2 3.5 2 5"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M15 12l.01 0"},null),e(" ")])}},gft={name:"MoodCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.925 13.163a8.998 8.998 0 0 0 -8.925 -10.163a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wft={name:"MoodCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.983 9"},null),e(" "),t("path",{d:"M18.001 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18.001 14.5v1.5"},null),e(" "),t("path",{d:"M18.001 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1"},null),e(" ")])}},vft={name:"MoodConfuzedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.43 10.162a11 11 0 0 0 -6.6 1.65a1 1 0 0 0 1.06 1.696a9 9 0 0 1 5.4 -1.35a1 1 0 0 0 .14 -1.996zm-6.56 -4.502l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fft={name:"MoodConfuzedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 16a10 10 0 0 1 6 -1.5"},null),e(" ")])}},mft={name:"MoodCrazyHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-crazy-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 8.5l3 3"},null),e(" "),t("path",{d:"M7 11.5l3 -3"},null),e(" "),t("path",{d:"M14 8.5l3 3"},null),e(" "),t("path",{d:"M14 11.5l3 -3"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},kft={name:"MoodCryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" "),t("path",{d:"M17.566 17.606a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606z"},null),e(" "),t("path",{d:"M20.865 13.517a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c.69 0 1.36 -.076 2 -.222"},null),e(" ")])}},bft={name:"MoodDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.87 10.48a9 9 0 1 0 -7.876 10.465"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.357 0 .709 -.052 1.043 -.151"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Mft={name:"MoodEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.955 11.104a9 9 0 1 0 -9.895 9.847"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.126 0 .251 -.006 .376 -.018"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},xft={name:"MoodEmptyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 10.66h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-5.99 -5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zft={name:"MoodEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9 15l6 0"},null),e(" ")])}},Ift={name:"MoodHappyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 9.66h-6a1 1 0 0 0 -1 1v.05a3.975 3.975 0 0 0 3.777 3.97l.227 .005a4.026 4.026 0 0 0 3.99 -3.79l.006 -.206a1 1 0 0 0 -1 -1.029zm-5.99 -5l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yft={name:"MoodHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 0 8 0h-8"},null),e(" ")])}},Cft={name:"MoodHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.012 8.946"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.59 3.59 0 0 0 2.774 .99"},null),e(" "),t("path",{d:"M18.994 21.5l2.518 -2.58a1.74 1.74 0 0 0 .004 -2.413a1.627 1.627 0 0 0 -2.346 -.005l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 -.004a1.74 1.74 0 0 0 -.004 2.412l2.51 2.59z"},null),e(" ")])}},Sft={name:"MoodKidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 7.046 -9.232a3 3 0 0 0 2.949 3.556a1 1 0 0 0 0 -2l-.117 -.007a1 1 0 0 1 .117 -1.993c1.726 0 3.453 .447 5 1.34zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$ft={name:"MoodKidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M12 3a2 2 0 0 0 0 4"},null),e(" ")])}},Aft={name:"MoodLookLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M4 15h4"},null),e(" ")])}},Bft={name:"MoodLookRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 9h-.01"},null),e(" "),t("path",{d:"M20 15h-4"},null),e(" ")])}},Hft={name:"MoodMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.48 15.014a9 9 0 1 0 -7.956 5.97"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Nft={name:"MoodNerdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nerd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3.5 9h2.5"},null),e(" "),t("path",{d:"M18 9h2.5"},null),e(" "),t("path",{d:"M10 9.5c1.333 -1.333 2.667 -1.333 4 0"},null),e(" ")])}},jft={name:"MoodNervousIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nervous",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M8 16l2 -2l2 2l2 -2l2 2"},null),e(" ")])}},Pft={name:"MoodNeutralFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-7.99 5.66l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lft={name:"MoodNeutralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" ")])}},Dft={name:"MoodOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.732 12.724m1.679 -2.322a9 9 0 0 0 -12.08 -12.086"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oft={name:"MoodPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.352 8.977"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.102 0 .203 -.004 .304 -.012"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Fft={name:"MoodPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.528a9 9 0 1 0 -8.45 8.456"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Rft={name:"MoodSad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},Tft={name:"MoodSadDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},Eft={name:"MoodSadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 9.86a4.5 4.5 0 0 0 -3.214 1.35a1 1 0 1 0 1.428 1.4a2.5 2.5 0 0 1 3.572 0a1 1 0 0 0 1.428 -1.4a4.5 4.5 0 0 0 -3.214 -1.35zm-2.99 -4.2l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vft={name:"MoodSadSquintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-squint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},_ft={name:"MoodSadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},Wft={name:"MoodSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Xft={name:"MoodShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -8.942 7.982"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.213 0 .424 -.017 .63 -.05"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qft={name:"MoodSickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" ")])}},Yft={name:"MoodSilenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-silence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M9 14v2"},null),e(" "),t("path",{d:"M12 14v2"},null),e(" "),t("path",{d:"M15 14v2"},null),e(" ")])}},Uft={name:"MoodSingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M15 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Gft={name:"MoodSmileBeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-beam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" ")])}},Zft={name:"MoodSmileDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},Kft={name:"MoodSmileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qft={name:"MoodSmileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Jft={name:"MoodSuprisedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-suprised",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},t5t={name:"MoodTongueWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 1 0 4 0v-2m1.5 0h-7"},null),e(" "),t("path",{d:"M7 10c.5 -1 2.5 -1 3 0"},null),e(" ")])}},e5t={name:"MoodTongueWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2"},null),e(" "),t("path",{d:"M15.5 14h-7"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},n5t={name:"MoodTongueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2m1.5 0h-7"},null),e(" ")])}},l5t={name:"MoodUnamusedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-unamused",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16l4 -1.5"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},r5t={name:"MoodUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.536a9 9 0 1 0 -8.463 8.449"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},o5t={name:"MoodWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M15.5 8.5l-1.5 1.5l1.5 1.5"},null),e(" ")])}},s5t={name:"MoodWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 8.5l1.5 1.5l-1.5 1.5"},null),e(" ")])}},a5t={name:"MoodWrrrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wrrr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},i5t={name:"MoodXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.556a9 9 0 1 0 -8.433 8.427"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.194 0 .386 -.015 .574 -.045"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},h5t={name:"MoodXdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 14h6a3 3 0 1 1 -6 0z"},null),e(" "),t("path",{d:"M9 8l6 3"},null),e(" "),t("path",{d:"M9 11l6 -3"},null),e(" ")])}},d5t={name:"Moon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.418 4.157a8 8 0 0 0 0 15.686"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},c5t={name:"MoonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u5t={name:"MoonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.962 3.949a8.97 8.97 0 0 1 4.038 -.957v.008h.393a7.478 7.478 0 0 0 -2.07 3.308m-.141 3.84c.186 .823 .514 1.626 .989 2.373a7.49 7.49 0 0 0 4.586 3.268m3.893 -.11c.223 -.067 .444 -.144 .663 -.233a9.088 9.088 0 0 1 -.274 .597m-1.695 2.337a9 9 0 0 1 -12.71 -12.749"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p5t={name:"MoonStarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 11h2m-1 -1v2"},null),e(" ")])}},g5t={name:"MoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" ")])}},w5t={name:"MopedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moped",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16v1a2 2 0 0 0 4 0v-5h-3a3 3 0 0 0 -3 3v1h10a6 6 0 0 1 5 -4v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M6 9l3 0"},null),e(" ")])}},v5t={name:"MotorbikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-motorbike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7.5 14h5l4 -4h-10.5m1.5 4l4 -4"},null),e(" "),t("path",{d:"M13 6h2l1.5 3l2 4"},null),e(" ")])}},f5t={name:"MountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.281 14.26l-4.201 -8.872a2.3 2.3 0 0 0 -4.158 0l-.165 .349m-1.289 2.719l-5.468 11.544h17"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m5t={name:"MountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2"},null),e(" ")])}},k5t={name:"Mouse2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" ")])}},b5t={name:"MouseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.733 3.704a3.982 3.982 0 0 1 2.267 -.704h4a4 4 0 0 1 4 4v7m-.1 3.895a4 4 0 0 1 -3.9 3.105h-4a4 4 0 0 1 -4 -4v-10c0 -.3 .033 -.593 .096 -.874"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M5t={name:"MouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},x5t={name:"MoustacheIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moustache",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a3 3 0 0 1 2.599 1.5h0c.933 1.333 2.133 1.556 3.126 1.556l.291 0l.77 -.044l.213 0c-.963 1.926 -3.163 2.925 -6.6 3l-.4 0l-.165 0a3 3 0 0 1 .165 -6z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -2.599 1.5h0c-.933 1.333 -2.133 1.556 -3.126 1.556l-.291 0l-.77 -.044l-.213 0c.963 1.926 3.163 2.925 6.6 3l.4 0l.165 0a3 3 0 0 0 -.165 -6z"},null),e(" ")])}},z5t={name:"MovieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.592 3.42c-.362 .359 -.859 .58 -1.408 .58h-12a2 2 0 0 1 -2 -2v-12c0 -.539 .213 -1.028 .56 -1.388"},null),e(" "),t("path",{d:"M8 8v12"},null),e(" "),t("path",{d:"M16 4v8m0 4v4"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M4 16h4"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M16 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I5t={name:"MovieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l0 16"},null),e(" "),t("path",{d:"M16 4l0 16"},null),e(" "),t("path",{d:"M4 8l4 0"},null),e(" "),t("path",{d:"M4 16l4 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M16 8l4 0"},null),e(" "),t("path",{d:"M16 16l4 0"},null),e(" ")])}},y5t={name:"MugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h5.917a1.08 1.08 0 0 1 1.083 1.077v5.923m-.167 3.88a4.33 4.33 0 0 1 -4.166 3.12h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077h.917"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.148 -.89 2.103 -2.06 2.297"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C5t={name:"MugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.083 5h10.834a1.08 1.08 0 0 1 1.083 1.077v8.615c0 2.38 -1.94 4.308 -4.333 4.308h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.288 -1.12 2.333 -2.5 2.333h-2.5"},null),e(" ")])}},S5t={name:"Multiplier05xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-0-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M5 16v.01"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M19 16l-4 -4"},null),e(" ")])}},$5t={name:"Multiplier15xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v-8l-2 2"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M17 16l4 -4"},null),e(" "),t("path",{d:"M21 16l-4 -4"},null),e(" ")])}},A5t={name:"Multiplier1xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l-2 2"},null),e(" "),t("path",{d:"M13 16l4 -4"},null),e(" "),t("path",{d:"M17 16l-4 -4"},null),e(" ")])}},B5t={name:"Multiplier2xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-2x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 16l4 -4"},null),e(" "),t("path",{d:"M18 16l-4 -4"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},H5t={name:"MushroomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15v4a3 3 0 0 1 -5.995 .176l-.005 -.176v-4h6zm-10.1 -2a1.9 1.9 0 0 1 -1.894 -1.752l-.006 -.148c0 -5.023 4.027 -9.1 9 -9.1s9 4.077 9 9.1a1.9 1.9 0 0 1 -1.752 1.894l-.148 .006h-14.2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N5t={name:"MushroomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},j5t={name:"MushroomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a.9 .9 0 0 0 .9 .9h14.2a.9 .9 0 0 0 .9 -.9z"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-7"},null),e(" ")])}},P5t={name:"MusicOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.42 14.45a3 3 0 1 0 4.138 4.119"},null),e(" "),t("path",{d:"M9 17v-8m0 -4v-1h10v11"},null),e(" "),t("path",{d:"M12 8h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},L5t={name:"MusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l0 -13l10 0l0 13"},null),e(" "),t("path",{d:"M9 8l10 0"},null),e(" ")])}},D5t={name:"NavigationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.092 2.581a1 1 0 0 1 1.754 -.116l.062 .116l8.005 17.365c.198 .566 .05 1.196 -.378 1.615a1.53 1.53 0 0 1 -1.459 .393l-7.077 -2.398l-6.899 2.338a1.535 1.535 0 0 1 -1.52 -.231l-.112 -.1c-.398 -.386 -.556 -.954 -.393 -1.556l.047 -.15l7.97 -17.276z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O5t={name:"NavigationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.28 12.28c-.95 -2.064 -2.377 -5.157 -4.28 -9.28c-.7 1.515 -1.223 2.652 -1.573 3.41m-1.27 2.75c-.882 1.913 -2.59 5.618 -5.127 11.115c-.07 .2 -.017 .424 .135 .572c.15 .148 .374 .193 .57 .116l7.265 -2.463l7.265 2.463c.196 .077 .42 .032 .57 -.116a.548 .548 0 0 0 .134 -.572l-.26 -.563"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F5t={name:"NavigationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l7.265 2.463a.535 .535 0 0 0 .57 -.116a.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a.547 .547 0 0 0 .135 .572a.535 .535 0 0 0 .57 .116l7.265 -2.463"},null),e(" ")])}},R5t={name:"NeedleThreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle-thread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" "),t("path",{d:"M17 7c-2.333 -2.667 -3.5 -4 -5 -4s-2 1 -2 2c0 4 8.161 8.406 6 11c-1.056 1.268 -3.363 1.285 -5.75 .808"},null),e(" "),t("path",{d:"M5.739 15.425c-1.393 -.565 -3.739 -1.925 -3.739 -3.425"},null),e(" "),t("path",{d:"M19.5 9.5l1.5 1.5"},null),e(" ")])}},T5t={name:"NeedleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" ")])}},E5t={name:"NetworkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.537 6.516a6 6 0 0 0 7.932 7.954m2.246 -1.76a6 6 0 0 0 -8.415 -8.433"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6c0 .348 0 .681 -.018 1m-.545 3.43c-.332 .89 -.811 1.414 -1.437 1.57"},null),e(" "),t("path",{d:"M12 3c-.938 .234 -1.547 1.295 -1.825 3.182m-.156 3.837c.117 3.02 .777 4.68 1.981 4.981"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V5t={name:"NetworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6"},null),e(" "),t("path",{d:"M12 3c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h7"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},_5t={name:"NewSectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-new-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2m0 -5"},null),e(" ")])}},W5t={name:"NewsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v9m-.606 3.435a2 2 0 0 1 -3.394 -1.435v-2m0 -4v-7a1 1 0 0 0 -1 -1h-7m-3.735 .321a1 1 0 0 0 -.265 .679v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M8 16h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X5t={name:"NewsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v11a2 2 0 0 1 -4 0v-13a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 8l4 0"},null),e(" "),t("path",{d:"M8 12l4 0"},null),e(" "),t("path",{d:"M8 16l4 0"},null),e(" ")])}},q5t={name:"NfcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-9"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v5m0 4v2l-5 -5"},null),e(" "),t("path",{d:"M8 4h9a3 3 0 0 1 3 3v9m-.873 3.116a2.99 2.99 0 0 1 -2.127 .884h-10a3 3 0 0 1 -3 -3v-10c0 -.83 .337 -1.582 .882 -2.125"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y5t={name:"NfcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-11l5 5"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v11l-5 -5"},null),e(" "),t("path",{d:"M4 4m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3z"},null),e(" ")])}},U5t={name:"NoCopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},G5t={name:"NoCreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},Z5t={name:"NoDerivativesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-derivatives",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},K5t={name:"NorthStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-north-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 21v-18"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Q5t={name:"NoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l3.505 -3.505m2 -2l1.501 -1.501"},null),e(" "),t("path",{d:"M17 13h3v-7a2 2 0 0 0 -2 -2h-10m-3.427 .6c-.355 .36 -.573 .853 -.573 1.4v12a2 2 0 0 0 2 2h7v-6c0 -.272 .109 -.519 .285 -.699"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J5t={name:"NoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l7 -7"},null),e(" "),t("path",{d:"M13 20v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7"},null),e(" ")])}},tmt={name:"NotebookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h9a2 2 0 0 1 2 2v9m-.179 3.828a2 2 0 0 1 -1.821 1.172h-11a1 1 0 0 1 -1 -1v-14m4 -1v1m0 4v13"},null),e(" "),t("path",{d:"M13 8h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},emt={name:"NotebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h11a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-11a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m3 0v18"},null),e(" "),t("path",{d:"M13 8l2 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" ")])}},nmt={name:"NotesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11 7h4"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M9 15h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lmt={name:"NotesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 7l6 0"},null),e(" "),t("path",{d:"M9 11l6 0"},null),e(" "),t("path",{d:"M9 15l4 0"},null),e(" ")])}},rmt={name:"NotificationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.154 6.187a2 2 0 0 0 -1.154 1.813v9a2 2 0 0 0 2 2h9a2 2 0 0 0 1.811 -1.151"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},omt={name:"NotificationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},smt={name:"Number0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8"},null),e(" "),t("path",{d:"M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z"},null),e(" ")])}},amt={name:"Number1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20v-16l-5 5"},null),e(" ")])}},imt={name:"Number2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8"},null),e(" ")])}},hmt={name:"Number3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a4 4 0 1 0 -4 -4"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 4 -4"},null),e(" ")])}},dmt={name:"Number4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20v-15l-8 11h10"},null),e(" ")])}},cmt={name:"Number5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20h4a4 4 0 1 0 0 -8h-4v-8h8"},null),e(" ")])}},umt={name:"Number6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v8"},null),e(" ")])}},pmt={name:"Number7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8l-4 16"},null),e(" ")])}},gmt={name:"Number8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 16m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},wmt={name:"Number9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-8"},null),e(" ")])}},vmt={name:"NumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v-10l7 10v-10"},null),e(" "),t("path",{d:"M15 17h5"},null),e(" "),t("path",{d:"M17.5 10m-2.5 0a2.5 3 0 1 0 5 0a2.5 3 0 1 0 -5 0"},null),e(" ")])}},fmt={name:"NumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 10v-7l-2 2"},null),e(" "),t("path",{d:"M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4"},null),e(" "),t("path",{d:"M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M6.5 10h3"},null),e(" ")])}},mmt={name:"NurseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nurse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},kmt={name:"OctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.3 2h-6.6c-.562 0 -1.016 .201 -1.407 .593l-4.7 4.7a1.894 1.894 0 0 0 -.593 1.407v6.6c0 .562 .201 1.016 .593 1.407l4.7 4.7c.391 .392 .845 .593 1.407 .593h6.6c.562 0 1.016 -.201 1.407 -.593l4.7 -4.7c.392 -.391 .593 -.845 .593 -1.407v-6.6c0 -.562 -.201 -1.016 -.593 -1.407l-4.7 -4.7a1.894 1.894 0 0 0 -1.407 -.593z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bmt={name:"OctagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.647 3.653l.353 -.353c.2 -.2 .4 -.3 .7 -.3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-.35 .35m-2 2l-2.353 2.353c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l2.35 -2.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mmt={name:"OctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.101a3 3 0 0 1 .88 2.123v5.794a3 3 0 0 1 -.879 2.122l-4.101 4.101a3 3 0 0 1 -2.122 .879h-5.795a3 3 0 0 1 -2.122 -.879l-4.101 -4.1a3 3 0 0 1 -.88 -2.123v-5.794a3 3 0 0 1 .879 -2.122l4.101 -4.101a3 3 0 0 1 2.123 -.88z"},null),e(" ")])}},xmt={name:"OctahedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.771 6.77l-4.475 4.527a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l4.36 -4.412m2.002 -2.025l2.483 -2.512a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-2.375 2.403"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l1.544 -.46m3.094 -.92l4.207 -1.252c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v5.88m0 4v9.88"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zmt={name:"OctahedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.498 12.911l.206 -.208a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l.08 -.081"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l2.634 -.784m5.41 -1.61l.801 -.238c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Imt={name:"OctahedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.859 21.652l8.845 -8.949a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001z"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l8.845 -2.632c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" ")])}},ymt={name:"OldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l-1 -4l-2 -3v-6"},null),e(" "),t("path",{d:"M5 14l-1 -3l4 -3l3 2l3 .5"},null),e(" "),t("path",{d:"M8 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 17l-2 4"},null),e(" "),t("path",{d:"M16 21v-8.5a1.5 1.5 0 0 1 3 0v.5"},null),e(" ")])}},Cmt={name:"OlympicsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 3 3m2.566 -1.445a3 3 0 0 0 -4.135 -4.113"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12.878 12.88a3 3 0 0 0 4.239 4.247m.586 -3.431a3.012 3.012 0 0 0 -1.43 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Smt={name:"OlympicsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},$mt={name:"OmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-om",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12c2.21 0 4 -1.567 4 -3.5s-1.79 -3.5 -4 -3.5c-1.594 0 -2.97 .816 -3.613 2"},null),e(" "),t("path",{d:"M3.423 14.483a4.944 4.944 0 0 0 -.423 2.017c0 2.485 1.79 4.5 4 4.5s4 -2.015 4 -4.5s-1.79 -4.5 -4 -4.5"},null),e(" "),t("path",{d:"M14.071 17.01c.327 2.277 1.739 3.99 3.429 3.99c1.933 0 3.5 -2.239 3.5 -5s-1.567 -5 -3.5 -5c-.96 0 -1.868 .606 -2.5 1.5c-.717 1.049 -1.76 1.7 -2.936 1.7c-.92 0 -1.766 -.406 -2.434 -1.087"},null),e(" "),t("path",{d:"M17 3l2 2"},null),e(" "),t("path",{d:"M12 3c1.667 3.667 4.667 5.333 9 5"},null),e(" ")])}},Amt={name:"OmegaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-omega",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5"},null),e(" ")])}},Bmt={name:"OutboundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outbound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 9h4v4"},null),e(" ")])}},Hmt={name:"OutletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outlet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Nmt={name:"OvalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.972 0 7 4.542 7 10s-3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.003 -.297c.107 -5.323 3.097 -9.703 6.997 -9.703z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jmt={name:"OvalVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5c-5.457 0 -10 3.028 -10 7s4.543 7 10 7s10 -3.028 10 -7s-4.543 -7 -10 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Pmt={name:"OvalVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z"},null),e(" ")])}},Lmt={name:"OvalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 9 0 1 0 12 0a6 9 0 1 0 -12 0"},null),e(" ")])}},Dmt={name:"OverlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-overline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" ")])}},Omt={name:"PackageExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M15 18h7"},null),e(" "),t("path",{d:"M19 15l3 3l-3 3"},null),e(" ")])}},Fmt={name:"PackageImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M22 18h-7"},null),e(" "),t("path",{d:"M18 15l-3 3l3 3"},null),e(" ")])}},Rmt={name:"PackageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.812 4.793l3.188 -1.793l8 4.5v8.5m-2.282 1.784l-5.718 3.216l-8 -4.5v-9l2.223 -1.25"},null),e(" "),t("path",{d:"M14.543 10.57l5.457 -3.07"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-4.35 2.447m-2.564 1.442l-1.086 .611"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tmt={name:"PackageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-8 4.5"},null),e(" ")])}},Emt={name:"PackagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-packages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M2 13.5v5.5l5 3"},null),e(" "),t("path",{d:"M7 16.545l5 -3.03"},null),e(" "),t("path",{d:"M17 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M12 19l5 3"},null),e(" "),t("path",{d:"M17 16.5l5 -3"},null),e(" "),t("path",{d:"M12 13.5v-5.5l-5 -3l5 -3l5 3v5.5"},null),e(" "),t("path",{d:"M7 5.03v5.455"},null),e(" "),t("path",{d:"M12 8l5 -3"},null),e(" ")])}},Vmt={name:"PacmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pacman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981z"},null),e(" "),t("circle",{cx:"11.5",cy:"7.5",r:"1",fill:"currentColor"},null),e(" ")])}},_mt={name:"PageBreakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-page-break",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M19 18v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 14h3m4.5 0h3m4.5 0h3"},null),e(" "),t("path",{d:"M5 10v-5a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" ")])}},Wmt={name:"PaintFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a3 3 0 0 1 2.995 2.824l.005 .176a3 3 0 0 1 3 3a6 6 0 0 1 -5.775 5.996l-.225 .004h-4l.15 .005a2 2 0 0 1 1.844 1.838l.006 .157v4a2 2 0 0 1 -1.85 1.995l-.15 .005h-2a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 .883 -.993l.117 -.007h5a4 4 0 0 0 4 -4a1 1 0 0 0 -.883 -.993l-.117 -.007l-.005 .176a3 3 0 0 1 -2.819 2.819l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xmt={name:"PaintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-4m-4 0h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5m-4 0h-1v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qmt={name:"PaintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Ymt={name:"PaletteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h-1a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25a9 9 0 0 1 -6.372 -15.356"},null),e(" "),t("path",{d:"M8 4c1.236 -.623 2.569 -1 4 -1c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828a4.516 4.516 0 0 1 -1.127 .73"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Umt={name:"PaletteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Gmt={name:"PanoramaHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.95 6.952c2.901 .15 5.803 -.323 8.705 -1.42a1 1 0 0 1 1.345 .934v10.534m-3.212 .806c-4.483 -1.281 -8.966 -1.074 -13.449 .622a.993 .993 0 0 1 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935c.588 .221 1.176 .418 1.764 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zmt={name:"PanoramaHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.338 5.53c5.106 1.932 10.211 1.932 15.317 0a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z"},null),e(" ")])}},Kmt={name:"PanoramaVerticalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10.53c.693 0 1.18 .691 .935 1.338c-1.098 2.898 -1.573 5.795 -1.425 8.692m.828 4.847c.172 .592 .37 1.185 .595 1.778a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.697 -4.486 1.903 -8.973 .619 -13.46"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qmt={name:"PanoramaVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.463 4.338c-1.932 5.106 -1.932 10.211 0 15.317a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.932 -5.107 1.932 -10.214 0 -15.321c-.246 -.648 .243 -1.339 .935 -1.339h11.028c.693 0 1.18 .691 .935 1.338z"},null),e(" ")])}},Jmt={name:"PaperBagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.158 3.185c.256 -.119 .542 -.185 .842 -.185h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v2.82m-.177 3.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-2"},null),e(" "),t("path",{d:"M13.185 13.173a2 2 0 1 0 2.64 2.647"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tkt={name:"PaperBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" ")])}},ekt={name:"PaperclipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paperclip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5"},null),e(" ")])}},nkt={name:"ParachuteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12c0 -5.523 -4.477 -10 -10 -10c-1.737 0 -3.37 .443 -4.794 1.222m-2.28 1.71a9.969 9.969 0 0 0 -2.926 7.068"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.63 0 -2.973 1.099 -3.212 2.54m-.097 -.09c-.23 -1.067 -1.12 -1.935 -2.29 -2.284m-3.445 .568c-.739 .55 -1.206 1.36 -1.206 2.266c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M14.582 14.624l-2.582 7.376l4.992 -4.992m2.014 -2.014l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lkt={name:"ParachuteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3c0 -1.66 -1.57 -3 -3.5 -3s-3.5 1.34 -3.5 3c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M15.5 12l-3.5 10l10 -10"},null),e(" ")])}},rkt={name:"ParenthesesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.743 5.745a12.253 12.253 0 0 0 1.257 14.255"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 2.474 11.467m-1.22 2.794a12.291 12.291 0 0 1 -1.254 1.739"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},okt={name:"ParenthesesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a12.25 12.25 0 0 0 0 16"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 0 16"},null),e(" ")])}},skt={name:"ParkingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M9 16v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},akt={name:"ParkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8h4a2 2 0 0 1 0 4h-4"},null),e(" ")])}},ikt={name:"PasswordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-password",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" "),t("path",{d:"M10 13l4 -2"},null),e(" "),t("path",{d:"M10 11l4 2"},null),e(" "),t("path",{d:"M5 10v4"},null),e(" "),t("path",{d:"M3 13l4 -2"},null),e(" "),t("path",{d:"M3 11l4 2"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M17 13l4 -2"},null),e(" "),t("path",{d:"M17 11l4 2"},null),e(" ")])}},hkt={name:"PawFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-1.32 0 -1.983 .421 -2.931 1.924l-.244 .398l-.395 .688a50.89 50.89 0 0 0 -.141 .254c-.24 .434 -.571 .753 -1.139 1.142l-.55 .365c-.94 .627 -1.432 1.118 -1.707 1.955c-.124 .338 -.196 .853 -.193 1.28c0 1.687 1.198 2.994 2.8 2.994l.242 -.006c.119 -.006 .234 -.017 .354 -.034l.248 -.043l.132 -.028l.291 -.073l.162 -.045l.57 -.17l.763 -.243l.455 -.136c.53 -.15 .94 -.222 1.283 -.222c.344 0 .753 .073 1.283 .222l.455 .136l.764 .242l.569 .171l.312 .084c.097 .024 .187 .045 .273 .062l.248 .043c.12 .017 .235 .028 .354 .034l.242 .006c1.602 0 2.8 -1.307 2.8 -3c0 -.427 -.073 -.939 -.207 -1.306c-.236 -.724 -.677 -1.223 -1.48 -1.83l-.257 -.19l-.528 -.38c-.642 -.47 -1.003 -.826 -1.253 -1.278l-.27 -.485l-.252 -.432c-1.011 -1.696 -1.618 -2.099 -3.053 -2.099z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.78 7h-.03c-1.219 .02 -2.35 1.066 -2.908 2.504c-.69 1.775 -.348 3.72 1.075 4.333c.256 .109 .527 .163 .801 .163c1.231 0 2.38 -1.053 2.943 -2.504c.686 -1.774 .34 -3.72 -1.076 -4.332a2.05 2.05 0 0 0 -.804 -.164z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.025 3c-.112 0 -.185 .002 -.27 .015l-.093 .016c-1.532 .206 -2.397 1.989 -2.108 3.855c.272 1.725 1.462 3.114 2.92 3.114l.187 -.005a1.26 1.26 0 0 0 .084 -.01l.092 -.016c1.533 -.206 2.397 -1.989 2.108 -3.855c-.27 -1.727 -1.46 -3.114 -2.92 -3.114z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.972 3c-1.459 0 -2.647 1.388 -2.916 3.113c-.29 1.867 .574 3.65 2.174 3.867c.103 .013 .2 .02 .296 .02c1.39 0 2.543 -1.265 2.877 -2.883l.041 -.23c.29 -1.867 -.574 -3.65 -2.174 -3.867a2.154 2.154 0 0 0 -.298 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.217 7c-.274 0 -.544 .054 -.797 .161c-1.426 .615 -1.767 2.562 -1.078 4.335c.563 1.451 1.71 2.504 2.941 2.504c.274 0 .544 -.054 .797 -.161c1.426 -.615 1.767 -2.562 1.078 -4.335c-.563 -1.451 -1.71 -2.504 -2.941 -2.504z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dkt={name:"PawOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.168 11.154c-.71 .31 -1.184 1.107 -2 2.593c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c.927 0 1.664 -.689 1.783 -1.708"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052h0z"},null),e(" "),t("path",{d:"M11 6.992a3.608 3.608 0 0 0 -.04 -.725c-.203 -1.297 -1.047 -2.267 -1.932 -2.267a1.237 1.237 0 0 0 -.758 .265"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ckt={name:"PawIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z"},null),e(" "),t("path",{d:"M9.474 9c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" ")])}},ukt={name:"PdfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pdf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" "),t("path",{d:"M21 8h-4v8"},null),e(" ")])}},pkt={name:"PeaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-peace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 12l6.3 6.3"},null),e(" "),t("path",{d:"M12 12l-6.3 6.3"},null),e(" ")])}},gkt={name:"PencilMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4"},null),e(" ")])}},wkt={name:"PencilOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l-6 6v4h4l6 -6m1.99 -1.99l2.504 -2.504a2.828 2.828 0 1 0 -4 -4l-2.5 2.5"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vkt={name:"PencilPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4m-2 -2v4"},null),e(" ")])}},fkt={name:"PencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" ")])}},mkt={name:"Pennant2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v17h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-7.351l-8.406 -3.735c-.752 -.335 -.79 -1.365 -.113 -1.77l.113 -.058l8.406 -3.736v-.35a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kkt={name:"Pennant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-18"},null),e(" "),t("path",{d:"M14 4l-9 4l9 4"},null),e(" ")])}},bkt={name:"PennantFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v.35l8.406 3.736c.752 .335 .79 1.365 .113 1.77l-.113 .058l-8.406 3.735v7.351h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mkt={name:"PennantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-3"},null),e(" "),t("path",{d:"M10 4l9 4l-4.858 2.16m-2.764 1.227l-1.378 .613"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xkt={name:"PennantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l4 0"},null),e(" "),t("path",{d:"M10 21l0 -18"},null),e(" "),t("path",{d:"M10 4l9 4l-9 4"},null),e(" ")])}},zkt={name:"PentagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.205 2.6l-6.96 5.238a3 3 0 0 0 -1.045 3.338l2.896 8.765a3 3 0 0 0 2.85 2.059h8.12a3 3 0 0 0 2.841 -2.037l2.973 -8.764a3 3 0 0 0 -1.05 -3.37l-7.033 -5.237l-.091 -.061l-.018 -.01l-.106 -.07a3 3 0 0 0 -3.377 .148z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ikt={name:"PentagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 4.857l1.936 -1.457a2 2 0 0 1 2.397 0l7.032 5.237a2 2 0 0 1 .7 2.247l-1.522 4.485m-1.027 3.029l-.424 1.25a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l2.736 -2.06"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ykt={name:"PentagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0z"},null),e(" ")])}},Ckt={name:"PentagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M15.236 11l5.264 4h-6.5l-2 6l-2 -6h-6.5l5.276 -4l-2.056 -6.28l5.28 3.78l5.28 -3.78z"},null),e(" ")])}},Skt={name:"PepperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.59 12.59c-.77 1.418 -2.535 2.41 -4.59 2.41c-2.761 0 -5 -1.79 -5 -4a8 8 0 0 0 13.643 5.67m1.64 -2.357a7.97 7.97 0 0 0 .717 -3.313a3 3 0 0 0 -5.545 -1.59"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$kt={name:"PepperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" ")])}},Akt={name:"PercentageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-percentage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 18l12 -12"},null),e(" ")])}},Bkt={name:"PerfumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perfume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v3"},null),e(" "),t("path",{d:"M14 6v3"},null),e(" "),t("path",{d:"M5 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 3h6v3h-6z"},null),e(" ")])}},Hkt={name:"PerspectiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nkt={name:"PerspectiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.141 4.163l12 1.714a1 1 0 0 1 .859 .99v10.266a1 1 0 0 1 -.859 .99l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 1.141 -.99z"},null),e(" ")])}},jkt={name:"PhoneCallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-call",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M15 3a6 6 0 0 1 6 6"},null),e(" ")])}},Pkt={name:"PhoneCallingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-calling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M21 7l0 .01"},null),e(" ")])}},Lkt={name:"PhoneCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6l2 2l4 -4"},null),e(" ")])}},Dkt={name:"PhoneFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .877 .519l.051 .11l2 5a1 1 0 0 1 -.313 1.16l-.1 .068l-1.674 1.004l.063 .103a10 10 0 0 0 3.132 3.132l.102 .062l1.005 -1.672a1 1 0 0 1 1.113 -.453l.115 .039l5 2a1 1 0 0 1 .622 .807l.007 .121v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Okt={name:"PhoneIncomingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-incoming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M15 5l0 4l4 0"},null),e(" ")])}},Fkt={name:"PhoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M5.831 14.161a15.946 15.946 0 0 1 -2.831 -8.161a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5c.108 .22 .223 .435 .345 .645m1.751 2.277c.843 .84 1.822 1.544 2.904 2.078l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a15.963 15.963 0 0 1 -10.344 -4.657"},null),e(" ")])}},Rkt={name:"PhoneOutgoingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-outgoing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" ")])}},Tkt={name:"PhonePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M20 3l0 4"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" ")])}},Ekt={name:"PhonePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},Vkt={name:"PhoneXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},_kt={name:"PhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" ")])}},Wkt={name:"PhotoAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M10 21h-4a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1 1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Xkt={name:"PhotoBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13.5 21h-7.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.669 -.643 1.45 -.823 2.18 -.54"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},qkt={name:"PhotoCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.616 -.593 1.328 -.792 2.008 -.598"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Ykt={name:"PhotoCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l.5 .5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ukt={name:"PhotoCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Gkt={name:"PhotoCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.48 -.461 1.016 -.684 1.551 -.67"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Zkt={name:"PhotoDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Kkt={name:"PhotoDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.653 -.629 1.413 -.815 2.13 -.559"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Qkt={name:"PhotoEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 20h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.31 -.298 .644 -.497 .987 -.596"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Jkt={name:"PhotoExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.665 -.64 1.44 -.821 2.167 -.545"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},t6t={name:"PhotoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.813 11.612c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.986 4.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l.292 -.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.674 4.675a4 4 0 0 1 -3.775 3.599l-.206 .005h-12a4 4 0 0 1 -3.98 -3.603l6.687 -6.69l.106 -.095zm9.187 -9.612a4 4 0 0 1 3.995 3.8l.005 .2v9.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-.307 .306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-5.307 5.306v-9.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e6t={name:"PhotoHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},n6t={name:"PhotoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},l6t={name:"PhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M7 3h11a3 3 0 0 1 3 3v11m-.856 3.099a2.991 2.991 0 0 1 -2.144 .901h-12a3 3 0 0 1 -3 -3v-12c0 -.845 .349 -1.608 .91 -2.153"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M16.33 12.338c.574 -.054 1.155 .166 1.67 .662l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r6t={name:"PhotoPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},o6t={name:"PhotoPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},s6t={name:"PhotoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.67 -.644 1.45 -.824 2.182 -.54"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},a6t={name:"PhotoQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},i6t={name:"PhotoSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" ")])}},h6t={name:"PhotoSensor2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},d6t={name:"PhotoSensor3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h1a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M20 17v1a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M7 20h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M12 4v2"},null),e(" "),t("path",{d:"M20 12h-2"},null),e(" ")])}},c6t={name:"PhotoSensorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M21 15v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 9v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M7 9m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" ")])}},u6t={name:"PhotoShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},p6t={name:"PhotoShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 20h-4.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},g6t={name:"PhotoStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 21h-5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},w6t={name:"PhotoUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3.5 3.5"},null),e(" "),t("path",{d:"M14 14l1 -1c.679 -.653 1.473 -.829 2.214 -.526"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},v6t={name:"PhotoXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},f6t={name:"PhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" ")])}},m6t={name:"PhysotherapistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-physotherapist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-1 -3l4 -2l4 1h3.5"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17v-7"},null),e(" "),t("path",{d:"M8 20h7l1 -4l4 -2"},null),e(" "),t("path",{d:"M18 20h3"},null),e(" ")])}},k6t={name:"PictureInPictureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" ")])}},b6t={name:"PictureInPictureOnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-on",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M8 13h3v-3"},null),e(" ")])}},M6t={name:"PictureInPictureTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M15 10h5a1 1 0 0 0 1 -1v-3a1 1 0 0 0 -1 -1h-5a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1z"},null),e(" ")])}},x6t={name:"PictureInPictureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},z6t={name:"PigMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M5.173 8.378a3 3 0 1 1 4.656 -1.377"},null),e(" "),t("path",{d:"M16 4v3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.336 .95 -.907 1.8 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3h0z"},null),e(" ")])}},I6t={name:"PigOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M10 6h1.499l4.5 -3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.057 .16 -.12 .318 -.19 .472m-1.467 2.528v1.5a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 1.5 -9.928"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},y6t={name:"PigIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M16 3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3z"},null),e(" ")])}},C6t={name:"PilcrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pilcrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M19 4h-9.5a4.5 4.5 0 0 0 0 9h3.5"},null),e(" ")])}},S6t={name:"PillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.495 6.505l2 -2a4.95 4.95 0 0 1 7 7l-2 2m-2 2l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$6t={name:"PillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" ")])}},A6t={name:"PillsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pills",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4.5 4.5l7 7"},null),e(" "),t("path",{d:"M19.5 14.5l-5 5"},null),e(" ")])}},B6t={name:"PinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.113 3.21l.094 .083l5.5 5.5a1 1 0 0 1 -1.175 1.59l-3.172 3.171l-1.424 3.797a1 1 0 0 1 -.158 .277l-.07 .08l-1.5 1.5a1 1 0 0 1 -1.32 .082l-.095 -.083l-2.793 -2.792l-3.793 3.792a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.792 -3.793l-2.792 -2.793a1 1 0 0 1 -.083 -1.32l.083 -.094l1.5 -1.5a1 1 0 0 1 .258 -.187l.098 -.042l3.796 -1.425l3.171 -3.17a1 1 0 0 1 1.497 -1.26z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H6t={name:"PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},N6t={name:"PingPongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ping-pong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.718 20.713a7.64 7.64 0 0 1 -7.48 -12.755l.72 -.72a7.643 7.643 0 0 1 9.105 -1.283l2.387 -2.345a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-2.346 2.387a7.644 7.644 0 0 1 -1.052 8.864"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.3 5.3l9.4 9.4"},null),e(" ")])}},j6t={name:"PinnedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3a1 1 0 0 1 .117 1.993l-.117 .007v4.764l1.894 3.789a1 1 0 0 1 .1 .331l.006 .116v2a1 1 0 0 1 -.883 .993l-.117 .007h-4v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-4h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-2a1 1 0 0 1 .06 -.34l.046 -.107l1.894 -3.791v-4.762a1 1 0 0 1 -.117 -1.993l.117 -.007h8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},P6t={name:"PinnedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},L6t={name:"PinnedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"},null),e(" "),t("path",{d:"M12 16l0 5"},null),e(" "),t("path",{d:"M8 4l8 0"},null),e(" ")])}},D6t={name:"PizzaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.313 6.277l1.687 -3.277l5.34 10.376m2.477 6.463a19.093 19.093 0 0 1 -7.817 1.661c-3.04 0 -5.952 -.714 -8.5 -1.983l5.434 -10.559"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634c1.56 0 3.105 -.24 4.582 -.713"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O6t={name:"PizzaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479"},null),e(" "),t("path",{d:"M13 11.01v-.01"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" ")])}},F6t={name:"PlaceholderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-placeholder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.415a8 8 0 1 0 3 -15.415h-3"},null),e(" "),t("path",{d:"M13 8l-3 -3l3 -3"},null),e(" "),t("path",{d:"M7 17l4 -4l-4 -4l-4 4z"},null),e(" ")])}},R6t={name:"PlaneArrivalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-arrival",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.157 11.81l4.83 1.295a2 2 0 1 1 -1.036 3.863l-14.489 -3.882l-1.345 -6.572l2.898 .776l1.414 2.45l2.898 .776l-.12 -7.279l2.898 .777l2.052 7.797z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},T6t={name:"PlaneDepartureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-departure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.639 10.258l4.83 -1.294a2 2 0 1 1 1.035 3.863l-14.489 3.883l-4.45 -5.02l2.897 -.776l2.45 1.414l2.897 -.776l-3.743 -6.244l2.898 -.777l5.675 5.727z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},E6t={name:"PlaneInflightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-inflight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},V6t={name:"PlaneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.788 5.758l-.788 -2.758h3l4 7h4a2 2 0 1 1 0 4h-2m-2.718 1.256l-3.282 5.744h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_6t={name:"PlaneTiltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-tilt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z"},null),e(" ")])}},W6t={name:"PlaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10h4a2 2 0 0 1 0 4h-4l-4 7h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h4l-2 -7h3z"},null),e(" ")])}},X6t={name:"PlanetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113"},null),e(" "),t("path",{d:"M7.042 7.059a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q6t={name:"PlanetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c2.292 2.138 3.546 4 3.092 4.9c-.745 1.46 -5.783 -.259 -11.255 -3.838c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.464 -.91 2.926 -.444 5.803 .805"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},Y6t={name:"Plant2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9c0 5.523 4.477 10 10 10a9.953 9.953 0 0 0 5.418 -1.593m2.137 -1.855a9.961 9.961 0 0 0 2.445 -6.552"},null),e(" "),t("path",{d:"M12 19c0 -1.988 .58 -3.84 1.58 -5.397m1.878 -2.167a9.961 9.961 0 0 1 6.542 -2.436"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 3 7.013"},null),e(" "),t("path",{d:"M9.01 11.5a9.696 9.696 0 0 1 .163 -2.318m1.082 -2.942a9.696 9.696 0 0 1 1.745 -2.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U6t={name:"Plant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9a10 10 0 1 0 20 0"},null),e(" "),t("path",{d:"M12 19a10 10 0 0 1 10 -10"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 2.99 7.5"},null),e(" "),t("path",{d:"M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5"},null),e(" ")])}},G6t={name:"PlantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4h8"},null),e(" "),t("path",{d:"M11.9 7.908a6 6 0 0 0 -4.79 -4.806m-4.11 -.102v2a6 6 0 0 0 6 6h2"},null),e(" "),t("path",{d:"M12.531 8.528a6 6 0 0 1 5.469 -3.528h3v1a6 6 0 0 1 -5.037 5.923"},null),e(" "),t("path",{d:"M12 15v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z6t={name:"PlantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4z"},null),e(" "),t("path",{d:"M12 9a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 11a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 15l0 -6"},null),e(" ")])}},K6t={name:"PlayBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 21l3 -3l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l.5 -6"},null),e(" "),t("path",{d:"M5 12l1 -3l4.5 -1l3.5 3l4 1"},null),e(" "),t("path",{d:"M18.5 16a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Q6t={name:"PlayCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M13.716 13.712l-1.716 2.288l-3 -4l1.29 -1.72"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J6t={name:"PlayCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M12 16l-3 -4l3 -4l3 4z"},null),e(" ")])}},t7t={name:"PlayFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M6 12v-3l5 -1l3 3l3 1"},null),e(" "),t("path",{d:"M19.5 20a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},e7t={name:"PlayHandballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-handball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21l3.5 -2l-4.5 -4l2 -4.5"},null),e(" "),t("path",{d:"M7 6l2 4l5 .5l4 2.5l2.5 3"},null),e(" "),t("path",{d:"M4 20l5 -1l1.5 -2"},null),e(" "),t("path",{d:"M15 7a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M9.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},n7t={name:"PlayVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M20.5 10a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" "),t("path",{d:"M2 16l5 1l.5 -2.5"},null),e(" "),t("path",{d:"M11.5 21l2.5 -5.5l-5.5 -3.5l3.5 -4l3 4l4 2"},null),e(" ")])}},l7t={name:"PlayerEjectFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.247 3.341l-7 8c-.565 .647 -.106 1.659 .753 1.659h14c.86 0 1.318 -1.012 .753 -1.659l-7 -8a1 1 0 0 0 -1.506 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 15h-12a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r7t={name:"PlayerEjectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14l-7 -8z"},null),e(" "),t("path",{d:"M5 16m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},o7t={name:"PlayerPauseFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s7t={name:"PlayerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},a7t={name:"PlayerPlayFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i7t={name:"PlayerPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16l13 -8z"},null),e(" ")])}},h7t={name:"PlayerRecordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5.072a8 8 0 1 1 -3.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 3.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d7t={name:"PlayerRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},c7t={name:"PlayerSkipBackFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u7t={name:"PlayerSkipBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5v14l-12 -7z"},null),e(" "),t("path",{d:"M4 5l0 14"},null),e(" ")])}},p7t={name:"PlayerSkipForwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},g7t={name:"PlayerSkipForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v14l12 -7z"},null),e(" "),t("path",{d:"M20 5l0 14"},null),e(" ")])}},w7t={name:"PlayerStopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},v7t={name:"PlayerStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},f7t={name:"PlayerTrackNextFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m7t={name:"PlayerTrackNextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14l8 -7z"},null),e(" "),t("path",{d:"M14 5v14l8 -7z"},null),e(" ")])}},k7t={name:"PlayerTrackPrevFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},b7t={name:"PlayerTrackPrevIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5v14l-8 -7z"},null),e(" "),t("path",{d:"M10 5v14l-8 -7z"},null),e(" ")])}},M7t={name:"PlaylistAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h9"},null),e(" "),t("path",{d:"M11 16h-6"},null),e(" "),t("path",{d:"M15 16h6"},null),e(" "),t("path",{d:"M18 13v6"},null),e(" ")])}},x7t={name:"PlaylistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M17 13v-9h4"},null),e(" "),t("path",{d:"M13 5h-4m-4 0h-2"},null),e(" "),t("path",{d:"M3 9h6"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z7t={name:"PlaylistXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h7"},null),e(" "),t("path",{d:"M12 16h-7"},null),e(" "),t("path",{d:"M16 14l4 4"},null),e(" "),t("path",{d:"M20 14l-4 4"},null),e(" ")])}},I7t={name:"PlaylistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17v-13h4"},null),e(" "),t("path",{d:"M13 5h-10"},null),e(" "),t("path",{d:"M3 9l10 0"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" ")])}},y7t={name:"PlaystationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M12 12m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},C7t={name:"PlaystationSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},S7t={name:"PlaystationTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M7.5 15h9l-4.5 -8z"},null),e(" ")])}},$7t={name:"PlaystationXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M8.5 15.5l7 -7"},null),e(" ")])}},A7t={name:"PlugConnectedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" ")])}},B7t={name:"PlugConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" ")])}},H7t={name:"PlugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N7t={name:"PlugXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" ")])}},j7t={name:"PlugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" ")])}},P7t={name:"PlusEqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 16h-6"},null),e(" "),t("path",{d:"M20 19h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},L7t={name:"PlusMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 18h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},D7t={name:"PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},O7t={name:"PngIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-png",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M3 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},F7t={name:"PodiumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h7l-.621 2.485a2 2 0 0 1 -1.94 1.515h-.439m-4 0h-4.439a2 2 0 0 1 -1.94 -1.515l-.621 -2.485h3"},null),e(" "),t("path",{d:"M7 8v-1m.864 -3.106a2.99 2.99 0 0 1 2.136 -.894"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M15.599 15.613l-.599 5.387"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R7t={name:"PodiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485z"},null),e(" "),t("path",{d:"M7 8v-2a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M16 12l-1 9"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},T7t={name:"PointFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},E7t={name:"PointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V7t={name:"PointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},_7t={name:"PointerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.044 13.488l-1.266 -1.266l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.678 1.678"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},W7t={name:"PointerCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.526 12.97l-.748 -.748l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.714 .714"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},X7t={name:"PointerCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.487 14.93l-2.709 -2.708l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.785 .785"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},q7t={name:"PointerCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.76 13.203l-.982 -.981l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.67 .67"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Y7t={name:"PointerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.774 13.218l-.996 -.996l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.343 .343"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},U7t={name:"PointerDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.787 .787"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},G7t={name:"PointerDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.992 13.436l-1.214 -1.214l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.171 1.171"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Z7t={name:"PointerExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.97 13.414l-1.192 -1.192l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l2.778 2.778"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},K7t={name:"PointerHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.571 11.018l1.32 -.886a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Q7t={name:"PointerMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.6 15.043l-2.822 -2.821l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.188 1.188"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},J7t={name:"PointerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.662 11.628l2.229 -1.496a1.2 1.2 0 0 0 -.309 -2.228l-8.013 -2.303m-5.569 -1.601l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l.524 -.524"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tbt={name:"PointerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.72 13.163l-.942 -.941l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.969 .969"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},ebt={name:"PointerPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.381 .381"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},nbt={name:"PointerPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.941 13.385l-1.163 -1.163l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.23 1.23"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},lbt={name:"PointerQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.062 12.506l-.284 -.284l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.278 1.278"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},rbt={name:"PointerSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},obt={name:"PointerShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.646 13.09l-.868 -.868l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.607 .607"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},sbt={name:"PointerStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.891 10.132a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},abt={name:"PointerUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.984 13.428l-1.206 -1.206l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.217 1.217"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},ibt={name:"PointerXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.768 13.212l-.99 -.99l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.908 .908"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},hbt={name:"PointerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.904 17.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l1.047 -1.047a1.067 1.067 0 0 0 0 -1.509l-4.907 -4.907l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563z"},null),e(" ")])}},dbt={name:"PokeballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M3 12h6m7 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cbt={name:"PokeballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" ")])}},ubt={name:"PokerChipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poker-chip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M8.464 15.536l-2.828 2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" "),t("path",{d:"M15.536 15.536l2.828 2.828"},null),e(" ")])}},pbt={name:"PolaroidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.199 9.623l.108 .098l3.986 3.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.292 -.293l1.292 -1.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.502 4.503a4.003 4.003 0 0 1 -3.596 2.77l-.213 .006h-12a4.002 4.002 0 0 1 -3.809 -2.775l5.516 -5.518l.106 -.095c.457 -.38 .918 -.38 1.386 .011zm8.801 -7.623a4 4 0 0 1 3.995 3.8l.005 .2v6.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-1.307 1.306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-4.307 4.306v-6.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gbt={name:"PolaroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" "),t("path",{d:"M4 12l3 -3c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M14 7l.01 0"},null),e(" ")])}},wbt={name:"PolygonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l1.546 -1.311"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-1.185 3.318m-1.062 2.972l-.253 .71"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vbt={name:"PolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l3.5 -3"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-2.5 7"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" ")])}},fbt={name:"PooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 16a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M11 4c2 0 3.5 1.5 3.5 4l.164 0a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 0h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 0c1.5 0 2.5 -2 1.5 -4z"},null),e(" ")])}},mbt={name:"PoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.303 0 .6 -.045 .876 -.146"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.13 -.856m5.727 1.717a2.4 2.4 0 0 0 1.143 -.861"},null),e(" "),t("path",{d:"M15 11v-6.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-3m0 -4v-.5a1.5 1.5 0 0 0 -1.936 -1.436"},null),e(" "),t("path",{d:"M15 5h-6"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kbt={name:"PoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M15 12v-7.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-7.5a1.5 1.5 0 0 0 -3 0"},null),e(" "),t("path",{d:"M15 5l-6 0"},null),e(" "),t("path",{d:"M9 10l6 0"},null),e(" ")])}},bbt={name:"PowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a7.75 7.75 0 1 0 10 0"},null),e(" "),t("path",{d:"M12 4l0 8"},null),e(" ")])}},Mbt={name:"PrayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 20h8l-4 -4v-7l4 3l2 -2"},null),e(" ")])}},xbt={name:"PremiumRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-premium-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},zbt={name:"PrescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prescription",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5"},null),e(" "),t("path",{d:"M19 21l-9 -9"},null),e(" "),t("path",{d:"M13 21l6 -6"},null),e(" ")])}},Ibt={name:"PresentationAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" ")])}},ybt={name:"PresentationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1m4 0h13"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h10m3.42 -.592c.359 -.362 .58 -.859 .58 -1.408v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M8 12l2 -2m4 0l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cbt={name:"PresentationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4l18 0"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16l0 4"},null),e(" "),t("path",{d:"M9 20l6 0"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},Sbt={name:"PrinterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.412 16.416c.363 -.362 .588 -.863 .588 -1.416v-4a2 2 0 0 0 -2 -2h-6m-4 0h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6c-.551 0 -1.05 .223 -1.412 .584m-.588 3.416v2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$bt={name:"PrinterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M7 13m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Abt={name:"PrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v10"},null),e(" "),t("path",{d:"M17.957 17.952l-4.937 3.703a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17m3 -1h12a1 1 0 0 1 1 1v11.17c0 .25 -.037 .495 -.109 .729"},null),e(" "),t("path",{d:"M12.688 8.7a1.7 1.7 0 0 0 .357 -.214l6.655 -5.186"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bbt={name:"PrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M13.02 21.655a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Hbt={name:"PrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M19 17.17l-5.98 4.485a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v11.17a2.5 2.5 0 0 1 -1 2z"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" ")])}},Nbt={name:"PrisonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prison",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4v16"},null),e(" "),t("path",{d:"M14 4v16"},null),e(" "),t("path",{d:"M6 4v5"},null),e(" "),t("path",{d:"M6 15v5"},null),e(" "),t("path",{d:"M10 4v5"},null),e(" "),t("path",{d:"M11 9h-6v6h6z"},null),e(" "),t("path",{d:"M10 15v5"},null),e(" "),t("path",{d:"M8 12h-.01"},null),e(" ")])}},jbt={name:"ProgressAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},Pbt={name:"ProgressBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9l-2 3h4l-2 3"},null),e(" ")])}},Lbt={name:"ProgressCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Dbt={name:"ProgressDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M15 12l-3 3l-3 -3"},null),e(" ")])}},Obt={name:"ProgressHelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},Fbt={name:"ProgressXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M14 14l-4 -4"},null),e(" "),t("path",{d:"M10 14l4 -4"},null),e(" ")])}},Rbt={name:"ProgressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},Tbt={name:"PromptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prompt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 17l6 0"},null),e(" ")])}},Ebt={name:"PropellerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.448 10.432a3 3 0 1 0 4.106 4.143"},null),e(" "),t("path",{d:"M14.272 10.272c.66 -1.459 1.058 -2.888 1.198 -4.286c.22 -1.63 -.762 -2.986 -3.47 -2.986c-1.94 0 -3 .696 -3.355 1.69m.697 4.653c.145 .384 .309 .77 .491 1.157"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.02 .789 2.265 .853 3.408 -.288m1.479 -2.493c.492 -1.634 -.19 -2.726 -1.416 -3.229c-.82 -.37 -1.703 -.654 -2.65 -.852"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vbt={name:"PropellerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.167 10.5c.722 -1.538 1.156 -3.043 1.303 -4.514c.22 -1.63 -.762 -2.986 -3.47 -2.986s-3.69 1.357 -3.47 2.986c.147 1.471 .581 2.976 1.303 4.514"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.3 1 2.967 .833 4.321 -1.512c1.354 -2.345 .67 -3.874 -.85 -4.498c-1.348 -.608 -2.868 -.985 -4.562 -1.128"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" ")])}},_bt={name:"PumpkinScaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pumpkin-scary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l1.5 1l1.5 -1l1.5 1l1.5 -1"},null),e(" "),t("path",{d:"M10 11h.01"},null),e(" "),t("path",{d:"M14 11h.01"},null),e(" "),t("path",{d:"M17 6.082c2.609 .588 3.627 4.162 2.723 7.983c-.903 3.82 -2.75 6.44 -5.359 5.853a3.355 3.355 0 0 1 -.774 -.279a3.728 3.728 0 0 1 -1.59 .361c-.556 0 -1.09 -.127 -1.59 -.362a3.296 3.296 0 0 1 -.774 .28c-2.609 .588 -4.456 -2.033 -5.36 -5.853c-.903 -3.82 .115 -7.395 2.724 -7.983c1.085 -.244 1.575 .066 2.585 .787c.716 -.554 1.54 -.869 2.415 -.869c.876 0 1.699 .315 2.415 .87c1.01 -.722 1.5 -1.032 2.585 -.788z"},null),e(" "),t("path",{d:"M12 6c0 -1.226 .693 -2.346 1.789 -2.894l.211 -.106"},null),e(" ")])}},Wbt={name:"Puzzle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v2.5a.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a.5 .5 0 0 1 .5 .5v1.5"},null),e(" "),t("path",{d:"M12 12v1.5a.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a.5 .5 0 0 0 -.5 .5v2.5"},null),e(" "),t("path",{d:"M20 12h-2.5a.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a.5 .5 0 0 1 -.5 .5h-1.5"},null),e(" "),t("path",{d:"M12 12h-1.5a.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a.5 .5 0 0 0 -.5 -.5h-2.5"},null),e(" ")])}},Xbt={name:"PuzzleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a3 3 0 0 1 2.995 2.824l.005 .176v1h3a2 2 0 0 1 1.995 1.85l.005 .15v3h1a3 3 0 0 1 .176 5.995l-.176 .005h-1v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 0 -1.993 -.117l-.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1a1 1 0 0 0 .117 -1.993l-.117 -.007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h3v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qbt={name:"PuzzleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 4.171a2 2 0 0 1 3.82 .829v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 .819 3.825m-2.819 1.175v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ybt={name:"PuzzleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 0 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 0 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 0 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1"},null),e(" ")])}},Ubt={name:"PyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.384 17.373a1.004 1.004 0 0 0 -.013 -1.091l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-1.8 2.917m-1.531 2.48l-5.209 8.439a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l5.903 -2.958"},null),e(" "),t("path",{d:"M12 2v6m0 4v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gbt={name:"PyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.719 11.985l-5.889 -9.539a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l.149 -.074"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Zbt={name:"PyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 21.788a1.994 1.994 0 0 0 1.789 0l8.092 -4.054c.538 -.27 .718 -.951 .385 -1.452l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054z"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" ")])}},Kbt={name:"QrcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.297 3.711a1 1 0 0 1 -.703 .289h-4a1 1 0 0 1 -1 -1v-4c0 -.275 .11 -.524 .29 -.705"},null),e(" "),t("path",{d:"M7 17v.01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7v.01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7v.01"},null),e(" "),t("path",{d:"M20 14v.01"},null),e(" "),t("path",{d:"M14 14v3"},null),e(" "),t("path",{d:"M14 20h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qbt={name:"QrcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M14 14l3 0"},null),e(" "),t("path",{d:"M20 14l0 .01"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M14 20l3 0"},null),e(" "),t("path",{d:"M17 17l3 0"},null),e(" "),t("path",{d:"M20 17l0 3"},null),e(" ")])}},Jbt={name:"QuestionMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-question-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" ")])}},t8t={name:"QuoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1m4 4v3c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4m-1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 .66 -.082 1.26 -.245 1.798m-1.653 2.29c-.571 .4 -1.272 .704 -2.102 .912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e8t={name:"QuoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" ")])}},n8t={name:"Radar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.51 15.56a5 5 0 1 0 -3.51 1.44"},null),e(" "),t("path",{d:"M18.832 17.86a9 9 0 1 0 -6.832 3.14"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" ")])}},l8t={name:"RadarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 .709 1.705v8c2.488 0 4.74 -1.01 6.37 -2.642m1.675 -2.319a8.962 8.962 0 0 0 .955 -4.039h-5"},null),e(" "),t("path",{d:"M16 9a5 5 0 0 0 -5.063 -1.88m-2.466 1.347a5 5 0 0 0 .53 7.535"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 0 0 -12.525 -5.032m-2.317 1.675a9 9 0 0 0 3.36 14.852"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r8t={name:"RadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9"},null),e(" "),t("path",{d:"M16 9a5 5 0 1 0 -7 7"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 1 0 -11.482 11.495"},null),e(" ")])}},o8t={name:"RadioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-4.986 2m-2.875 1.15l-1.51 .604a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 .708 -.294m.292 -3.706v-8a1 1 0 0 0 -1 -1h-8m-4 0h-2.5"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s8t={name:"RadioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M17 16v.01"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" ")])}},a8t={name:"RadioactiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 1 1a10 10 0 0 1 -5 8.656a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a.995 .995 0 0 1 -.133 -.542l.01 -.11l.023 -.106l.034 -.106l.046 -.1l.056 -.094l.067 -.089a.994 .994 0 0 1 .165 -.155l.098 -.064a2 2 0 0 0 .993 -1.57l.007 -.163a1 1 0 0 1 .883 -.994l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 3.344a10 10 0 0 1 10 0a1 1 0 0 1 .418 1.262l-.052 .104l-3 5.19l-.064 .098a.994 .994 0 0 1 -.155 .165l-.089 .067a1 1 0 0 1 -.195 .102l-.105 .034l-.107 .022a1.003 1.003 0 0 1 -.547 -.07l-.104 -.052a2 2 0 0 0 -1.842 -.082l-.158 .082a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a1 1 0 0 1 .366 -1.366z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 11a1 1 0 0 1 .993 .884l.007 .117a2 2 0 0 0 .861 1.645l.237 .152a.994 .994 0 0 1 .165 .155l.067 .089l.056 .095l.045 .099c.014 .036 .026 .07 .035 .106l.022 .107l.011 .11a.994 .994 0 0 1 -.08 .437l-.053 .104l-3 5.19a1 1 0 0 1 -1.366 .366a10 10 0 0 1 -5 -8.656a1 1 0 0 1 .883 -.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i8t={name:"RadioactiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.118 14.127c-.182 .181 -.39 .341 -.618 .473l3 5.19a9 9 0 0 0 1.856 -1.423m1.68 -2.32a8.993 8.993 0 0 0 .964 -4.047h-5"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -8.536 -.25"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h8t={name:"RadioactiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" ")])}},d8t={name:"RadiusBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19h-6a8 8 0 0 1 -8 -8v-6"},null),e(" ")])}},c8t={name:"RadiusBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a8 8 0 0 1 -8 8h-6"},null),e(" ")])}},u8t={name:"RadiusTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19v-6a8 8 0 0 1 8 -8h6"},null),e(" ")])}},p8t={name:"RadiusTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6a8 8 0 0 1 8 8v6"},null),e(" ")])}},g8t={name:"RainbowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10c-.308 0 -.613 .014 -.914 .041m-3.208 .845a10 10 0 0 0 -5.878 9.114"},null),e(" "),t("path",{d:"M11.088 11.069a6 6 0 0 0 -5.088 5.931"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},w8t={name:"RainbowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10s-10 4.477 -10 10"},null),e(" "),t("path",{d:"M18 17a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" ")])}},v8t={name:"Rating12PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-12-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},f8t={name:"Rating14PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-14-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M12.5 15v-6m-2.5 0v4h3"},null),e(" ")])}},m8t={name:"Rating16PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-16-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 13.5v-3a1.5 1.5 0 0 1 1.5 -1.5h1"},null),e(" ")])}},k8t={name:"Rating18PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-18-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 10.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" ")])}},b8t={name:"Rating21PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-21-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M7 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},M8t={name:"RazorElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v2"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M16 3v2"},null),e(" "),t("path",{d:"M9 12v6a3 3 0 0 0 6 0v-6h-6z"},null),e(" "),t("path",{d:"M8 5h8l-1 4h-6z"},null),e(" "),t("path",{d:"M12 17v1"},null),e(" ")])}},x8t={name:"RazorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v4h-10z"},null),e(" "),t("path",{d:"M12 7v4"},null),e(" "),t("path",{d:"M12 11a2 2 0 0 1 2 2v6a2 2 0 1 1 -4 0v-6a2 2 0 0 1 2 -2z"},null),e(" ")])}},z8t={name:"Receipt2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5"},null),e(" ")])}},I8t={name:"ReceiptOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M11 7l4 0"},null),e(" "),t("path",{d:"M9 11l2 0"},null),e(" "),t("path",{d:"M13 15l2 0"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},y8t={name:"ReceiptRefundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-refund",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},C8t={name:"ReceiptTaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-tax",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"13.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" ")])}},S8t={name:"ReceiptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2"},null),e(" ")])}},$8t={name:"RechargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recharging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.038 4.5a9 9 0 0 0 -2.495 2.47"},null),e(" "),t("path",{d:"M3.186 10.209a9 9 0 0 0 0 3.508"},null),e(" "),t("path",{d:"M4.5 16.962a9 9 0 0 0 2.47 2.495"},null),e(" "),t("path",{d:"M10.209 20.814a9 9 0 0 0 3.5 0"},null),e(" "),t("path",{d:"M16.962 19.5a9 9 0 0 0 2.495 -2.47"},null),e(" "),t("path",{d:"M20.814 13.791a9 9 0 0 0 0 -3.508"},null),e(" "),t("path",{d:"M19.5 7.038a9 9 0 0 0 -2.47 -2.495"},null),e(" "),t("path",{d:"M13.791 3.186a9 9 0 0 0 -3.508 -.02"},null),e(" "),t("path",{d:"M12 8l-2 4h4l-2 4"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 0 -18"},null),e(" ")])}},A8t={name:"RecordMailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18.569 14.557a3 3 0 1 0 -4.113 -4.149"},null),e(" "),t("path",{d:"M7 15h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B8t={name:"RecordMailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15l10 0"},null),e(" ")])}},H8t={name:"RectangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N8t={name:"RectangleVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2h-10a3 3 0 0 0 -3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-14a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j8t={name:"RectangleVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},P8t={name:"RectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},L8t={name:"RectangularPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.18l-4.18 2.093c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l7.146 -3.578m2.67 -1.337l.184 -.093c.619 -.355 1 -1.01 1 -1.718v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-3.146 1.575"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l3.048 -1.458m2.71 -1.296l5.742 -2.746"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D8t={name:"RectangularPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-3.509a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.007c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l2.062 -1.032"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},O8t={name:"RectangularPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14.008v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.008c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l10 -5.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" ")])}},F8t={name:"RecycleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2m-2 -2h9m1.896 -2.071a2 2 0 0 0 -.146 -.679l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R8t={name:"RecycleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19h9a2 2 0 0 0 1.75 -2.75l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732"},null),e(" "),t("path",{d:"M7.804 8.268l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732"},null),e(" "),t("path",{d:"M18.196 11.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" ")])}},T8t={name:"RefreshAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" "),t("path",{d:"M12 15l.01 0"},null),e(" ")])}},E8t={name:"RefreshDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},V8t={name:"RefreshOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -11.271 -6.305m-2.41 1.624a8.083 8.083 0 0 0 -1.819 2.681m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.671 4.691m2.329 -1.691v-1h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_8t={name:"RefreshIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" ")])}},W8t={name:"RegexOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X8t={name:"RegexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" ")])}},q8t={name:"RegisteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-registered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M14 15l-2 -2"},null),e(" ")])}},Y8t={name:"RelationManyToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-many-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M6 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},U8t={name:"RelationOneToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10h1v4"},null),e(" "),t("path",{d:"M14 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M11 10.5l0 .01"},null),e(" "),t("path",{d:"M11 13.5l0 .01"},null),e(" ")])}},G8t={name:"RelationOneToOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 10h1v4"},null),e(" "),t("path",{d:"M15 10h1v4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},Z8t={name:"ReloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747"},null),e(" "),t("path",{d:"M20 4v5h-5"},null),e(" ")])}},K8t={name:"RepeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q8t={name:"RepeatOnceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-once",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 11l1 -1v4"},null),e(" ")])}},J8t={name:"RepeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" ")])}},t9t={name:"ReplaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e9t={name:"ReplaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M19 15h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n9t={name:"ReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 15m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" ")])}},l9t={name:"ReportAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-5"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-3"},null),e(" ")])}},r9t={name:"ReportMedicalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-medical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},o9t={name:"ReportMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},s9t={name:"ReportOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.576 5.595a2 2 0 0 0 -.576 1.405v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a9t={name:"ReportSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 12v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},i9t={name:"ReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 11v-4a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" ")])}},h9t={name:"ReservedLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reserved-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 14v6"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},d9t={name:"ResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11v8a1 1 0 0 0 1 1h8m-9 -14v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M4 12h7a1 1 0 0 1 1 1v7"},null),e(" ")])}},c9t={name:"RibbonHealthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ribbon-health",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21s9.286 -9.841 9.286 -13.841a3.864 3.864 0 0 0 -1.182 -3.008a4.13 4.13 0 0 0 -3.104 -1.144a4.13 4.13 0 0 0 -3.104 1.143a3.864 3.864 0 0 0 -1.182 3.01c0 4 9.286 13.84 9.286 13.84"},null),e(" ")])}},u9t={name:"RingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15v-11"},null),e(" "),t("path",{d:"M17 15v-11"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" ")])}},p9t={name:"RippleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g9t={name:"RippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0s6 2 9 0"},null),e(" ")])}},w9t={name:"RoadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l3.332 -11.661"},null),e(" "),t("path",{d:"M16 5l2.806 9.823"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v9t={name:"RoadSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9 14v-2c0 -.59 .414 -1 1 -1h5"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" ")])}},f9t={name:"RoadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -14"},null),e(" "),t("path",{d:"M16 5l4 14"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-2"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" ")])}},m9t={name:"RobotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v1l1 1v3l-1 1m-.171 3.811a2 2 0 0 1 -1.829 1.189h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M8.5 11.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.854 11.853a.498 .498 0 0 0 -.354 -.853a.498 .498 0 0 0 -.356 .149"},null),e(" "),t("path",{d:"M8.336 4.343l-.336 -1.343"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k9t={name:"RobotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("circle",{cx:"8.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M9 7l-1 -4"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" ")])}},b9t={name:"RocketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.29 9.275a9.03 9.03 0 0 0 -.29 .725a6 6 0 0 0 -5 3a8 8 0 0 1 7 7a6 6 0 0 0 3 -5c.241 -.085 .478 -.18 .708 -.283m2.428 -1.61a9 9 0 0 0 2.864 -6.107a3 3 0 0 0 -3 -3a9 9 0 0 0 -6.107 2.864"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M9t={name:"RocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 1 7 7a6 6 0 0 0 3 -5a9 9 0 0 0 6 -8a3 3 0 0 0 -3 -3a9 9 0 0 0 -8 6a6 6 0 0 0 -5 3"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},x9t={name:"RollerSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-roller-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M8 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},z9t={name:"RollercoasterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.759 8.759 0 0 1 2.35 -3.652m2.403 -1.589a8.76 8.76 0 0 1 3.572 -.759h3.675"},null),e(" "),t("path",{d:"M20 9v7m0 4v1"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-9"},null),e(" "),t("path",{d:"M16 9.5v2.5m0 4v5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M9.446 5.415l.554 -.415l2 2.5l-.285 .213m-2.268 1.702l-1.447 1.085l-1.8 -.5l-.2 -2l1.139 -.854"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I9t={name:"RollercoasterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675"},null),e(" "),t("path",{d:"M20 9v12"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M16 9.5v11.5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M6 8l4 -3l2 2.5l-4 3l-1.8 -.5z"},null),e(" ")])}},y9t={name:"RosetteFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C9t={name:"RosetteNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},S9t={name:"RosetteNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},$9t={name:"RosetteNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},A9t={name:"RosetteNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},B9t={name:"RosetteNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},H9t={name:"RosetteNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},N9t={name:"RosetteNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},j9t={name:"RosetteNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},P9t={name:"RosetteNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},L9t={name:"RosetteNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},D9t={name:"RosetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},O9t={name:"Rotate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.55a8 8 0 0 0 -6 14.9m0 -4.45v5h-5"},null),e(" "),t("path",{d:"M18.37 7.16l0 .01"},null),e(" "),t("path",{d:"M13 19.94l0 .01"},null),e(" "),t("path",{d:"M16.84 18.37l0 .01"},null),e(" "),t("path",{d:"M19.37 15.1l0 .01"},null),e(" "),t("path",{d:"M19.94 11l0 .01"},null),e(" ")])}},F9t={name:"Rotate360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h4v4"},null),e(" "),t("path",{d:"M19.458 11.042c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515"},null),e(" ")])}},R9t={name:"RotateClockwise2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4.55a8 8 0 0 1 6 14.9m0 -4.45v5h5"},null),e(" "),t("path",{d:"M5.63 7.16l0 .01"},null),e(" "),t("path",{d:"M4.06 11l0 .01"},null),e(" "),t("path",{d:"M4.63 15.1l0 .01"},null),e(" "),t("path",{d:"M7.16 18.37l0 .01"},null),e(" "),t("path",{d:"M11 19.94l0 .01"},null),e(" ")])}},T9t={name:"RotateClockwiseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},E9t={name:"RotateDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},V9t={name:"RotateRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.09 4.01l.496 -.495a2 2 0 0 1 2.828 0l7.071 7.07a2 2 0 0 1 0 2.83l-7.07 7.07a2 2 0 0 1 -2.83 0l-7.07 -7.07a2 2 0 0 1 0 -2.83l3.535 -3.535h-3.988"},null),e(" "),t("path",{d:"M7.05 11.038v-3.988"},null),e(" ")])}},_9t={name:"RotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" ")])}},W9t={name:"Route2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4"},null),e(" "),t("path",{d:"M7 17l-4 4"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" "),t("path",{d:"M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2"},null),e(" ")])}},X9t={name:"RouteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q9t={name:"RouteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5a3.5 3.5 0 0 0 0 -7h-8a3.5 3.5 0 0 1 0 -7h3.5"},null),e(" ")])}},Y9t={name:"RouterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13h2a2 2 0 0 1 2 2v2m-.588 3.417c-.362 .36 -.861 .583 -1.412 .583h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M13 17v.01"},null),e(" "),t("path",{d:"M12.226 8.2a4 4 0 0 1 6.024 .55"},null),e(" "),t("path",{d:"M9.445 5.407a8 8 0 0 1 12.055 1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U9t={name:"RouterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M13 17l0 .01"},null),e(" "),t("path",{d:"M15 13l0 -2"},null),e(" "),t("path",{d:"M11.75 8.75a4 4 0 0 1 6.5 0"},null),e(" "),t("path",{d:"M8.5 6.5a8 8 0 0 1 13 0"},null),e(" ")])}},G9t={name:"RowInsertBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M12 15l0 4"},null),e(" "),t("path",{d:"M14 17l-4 0"},null),e(" ")])}},Z9t={name:"RowInsertTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 9v-4"},null),e(" "),t("path",{d:"M10 7l4 0"},null),e(" ")])}},K9t={name:"RssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 4a16 16 0 0 1 16 16"},null),e(" "),t("path",{d:"M4 11a9 9 0 0 1 9 9"},null),e(" ")])}},Q9t={name:"RubberStampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.273 8.273c.805 2.341 2.857 5.527 -1.484 5.527c-2.368 0 -3.789 0 -3.789 4.05h14.85"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.712 4.722a3.99 3.99 0 0 1 3.288 -1.722a4 4 0 0 1 4 4c0 .992 -.806 2.464 -1.223 3.785m6.198 6.196c-.182 -2.883 -1.332 -3.153 -3.172 -3.178"},null),e(" ")])}},J9t={name:"RubberStampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.85h-18c0 -4.05 1.421 -4.05 3.79 -4.05c5.21 0 1.21 -4.59 1.21 -6.8a4 4 0 1 1 8 0c0 2.21 -4 6.8 1.21 6.8c2.369 0 3.79 0 3.79 4.05z"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},tMt={name:"Ruler2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.03 7.97l4.97 -4.97l4 4l-5 5m-2 2l-7 7l-4 -4l7 -7"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eMt={name:"Ruler2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4l-14 14l-4 -4z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" ")])}},nMt={name:"Ruler3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 8v2"},null),e(" "),t("path",{d:"M6 8v3"},null),e(" "),t("path",{d:"M12 8v3"},null),e(" "),t("path",{d:"M18 8v3"},null),e(" "),t("path",{d:"M15 8v2"},null),e(" ")])}},lMt={name:"RulerMeasureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-measure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 12v2"},null),e(" "),t("path",{d:"M6 12v3"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M18 12v3"},null),e(" "),t("path",{d:"M15 12v2"},null),e(" "),t("path",{d:"M3 3v4"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M21 3v4"},null),e(" ")])}},rMt={name:"RulerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-4m-3.713 .299a1 1 0 0 0 -.287 .701v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14c0 -.284 .118 -.54 .308 -.722"},null),e(" "),t("path",{d:"M4 8h2"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h2"},null),e(" "),t("path",{d:"M12 4v3"},null),e(" "),t("path",{d:"M16 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oMt={name:"RulerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M4 8l2 0"},null),e(" "),t("path",{d:"M4 12l3 0"},null),e(" "),t("path",{d:"M4 16l2 0"},null),e(" "),t("path",{d:"M8 4l0 2"},null),e(" "),t("path",{d:"M12 4l0 3"},null),e(" "),t("path",{d:"M16 4l0 2"},null),e(" ")])}},sMt={name:"RunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-run",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M15 21l0 -4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M7 12l0 -3l5 -1l3 3l3 1"},null),e(" ")])}},aMt={name:"STurnDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M5 7v9.5a3.5 3.5 0 0 0 7 0v-9a3.5 3.5 0 0 1 7 0v13.5"},null),e(" "),t("path",{d:"M16 18l3 3l3 -3"},null),e(" ")])}},iMt={name:"STurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 7a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M17 5h-9.5a3.5 3.5 0 0 0 0 7h9a3.5 3.5 0 0 1 0 7h-13.5"},null),e(" "),t("path",{d:"M6 16l-3 3l3 3"},null),e(" ")])}},hMt={name:"STurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h9.5a3.5 3.5 0 0 1 0 7h-9a3.5 3.5 0 0 0 0 7h13.5"},null),e(" "),t("path",{d:"M18 16l3 3l-3 3"},null),e(" ")])}},dMt={name:"STurnUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5 17v-9.5a3.5 3.5 0 0 1 7 0v9a3.5 3.5 0 0 0 7 0v-13.5"},null),e(" "),t("path",{d:"M16 6l3 -3l3 3"},null),e(" ")])}},cMt={name:"Sailboat2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M7 3c1.333 2.667 1.333 5.333 0 8h10c1.333 -2.667 1.333 -5.333 0 -8"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" ")])}},uMt={name:"SailboatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h12m4 0h2l-.506 1.517"},null),e(" "),t("path",{d:"M11 11v1h1m4 0h2l-7 -9v4"},null),e(" "),t("path",{d:"M7.713 7.718l-1.713 4.282"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pMt={name:"SailboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M11 12h7l-7 -9v9"},null),e(" "),t("path",{d:"M8 7l-2 5"},null),e(" ")])}},gMt={name:"SaladIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18.5 11c.351 -1.017 .426 -2.236 .5 -3.714v-1.286h-2.256c-2.83 0 -4.616 .804 -5.64 2.076"},null),e(" "),t("path",{d:"M5.255 11.008a12.204 12.204 0 0 1 -.255 -2.008v-1h1.755c.98 0 1.801 .124 2.479 .35"},null),e(" "),t("path",{d:"M8 8l1 -4l4 2.5"},null),e(" "),t("path",{d:"M13 11v-.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},wMt={name:"SaltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v.01"},null),e(" "),t("path",{d:"M10 16v.01"},null),e(" "),t("path",{d:"M14 16v.01"},null),e(" "),t("path",{d:"M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z"},null),e(" "),t("path",{d:"M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671"},null),e(" ")])}},vMt={name:"SatelliteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.707 3.707l5.586 5.586m-1.293 2.707l-1.293 1.293a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414l1.293 -1.293"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17c.69 0 1.316 -.28 1.769 -.733"},null),e(" "),t("path",{d:"M15 21c1.654 0 3.151 -.67 4.237 -1.752m1.507 -2.507a6 6 0 0 0 .256 -1.741"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fMt={name:"SatelliteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414z"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17a2.5 2.5 0 0 0 2.5 -2.5"},null),e(" "),t("path",{d:"M15 21a6 6 0 0 0 6 -6"},null),e(" ")])}},mMt={name:"SausageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sausage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5z"},null),e(" "),t("path",{d:"M5.195 5.519l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99"},null),e(" "),t("path",{d:"M18.482 18.225l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245"},null),e(" ")])}},kMt={name:"ScaleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9.452 5.425l2.548 -.425l6 1"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M18.873 14.871a3 3 0 0 0 2.127 -2.871l-3 -6l-2.677 5.355"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bMt={name:"ScaleOutlineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a4 4 0 0 1 4 4v10m-1.173 2.83a3.987 3.987 0 0 1 -2.827 1.17h-10a4 4 0 0 1 -4 -4v-10c0 -1.104 .447 -2.103 1.17 -2.827"},null),e(" "),t("path",{d:"M11.062 7.062c.31 -.041 .622 -.062 .938 -.062c1.956 0 3.724 .802 5 2.095a142.85 142.85 0 0 0 -2 1.905m-3.723 .288a3 3 0 0 0 -1.315 .71l-2.956 -2.903a6.977 6.977 0 0 1 1.142 -.942"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MMt={name:"ScaleOutlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7c1.956 0 3.724 .802 5 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 5 -2.095z"},null),e(" ")])}},xMt={name:"ScaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M6 6l6 -1l6 1"},null),e(" "),t("path",{d:"M12 3l0 17"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M21 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" ")])}},zMt={name:"ScanEyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 12c3.333 -4.667 6.667 -4.667 10 0"},null),e(" "),t("path",{d:"M7 12c3.333 4.667 6.667 4.667 10 0"},null),e(" "),t("path",{d:"M12 12h-.01"},null),e(" ")])}},IMt={name:"ScanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},yMt={name:"SchemaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h4v4m-4 0h-1v-1"},null),e(" "),t("path",{d:"M15 11v-1h5v4h-2"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M7.5 7.5v2.5"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CMt={name:"SchemaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 2h5v4h-5z"},null),e(" "),t("path",{d:"M15 10h5v4h-5z"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h5"},null),e(" "),t("path",{d:"M7.5 6v4"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" ")])}},SMt={name:"SchoolBellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M14.805 6.37l2.783 -2.784a2 2 0 1 1 2.829 2.828l-2.784 2.786"},null),e(" "),t("path",{d:"M16.505 7.495a5.105 5.105 0 0 1 .176 7.035l-.176 .184l-1.867 1.867a3.48 3.48 0 0 0 -1.013 2.234l-.008 .23v.934c0 .327 -.13 .64 -.36 .871a.51 .51 0 0 1 -.652 .06l-.07 -.06l-9.385 -9.384a.51 .51 0 0 1 0 -.722c.198 -.198 .456 -.322 .732 -.353l.139 -.008h.933c.848 0 1.663 -.309 2.297 -.864l.168 -.157l1.867 -1.867l.16 -.153a5.105 5.105 0 0 1 7.059 .153z"},null),e(" ")])}},$Mt={name:"SchoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-2.136 .854m-2.864 1.146l-5 2l10 4l.697 -.279m2.878 -1.151l6.425 -2.57v6"},null),e(" "),t("path",{d:"M6 10.6v5.4c0 1.657 2.686 3 6 3c2.334 0 4.357 -.666 5.35 -1.64m.65 -3.36v-3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AMt={name:"SchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-10 4l10 4l10 -4v6"},null),e(" "),t("path",{d:"M6 10.6v5.4a6 3 0 0 0 12 0v-5.4"},null),e(" ")])}},BMt={name:"ScissorsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.432 4.442a3 3 0 1 0 4.114 4.146"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 15.4l3.4 -3.4m2 -2l5 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HMt={name:"ScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 8.6l10.4 10.4"},null),e(" "),t("path",{d:"M8.6 15.4l10.4 -10.4"},null),e(" ")])}},NMt={name:"ScooterElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M10 4l-2 4h3l-2 4"},null),e(" ")])}},jMt={name:"ScooterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" ")])}},PMt={name:"ScoreboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scoreboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5v2"},null),e(" "),t("path",{d:"M12 10v1"},null),e(" "),t("path",{d:"M12 14v1"},null),e(" "),t("path",{d:"M12 18v1"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M17 3v2"},null),e(" "),t("path",{d:"M15 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M6 9h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5"},null),e(" ")])}},LMt={name:"ScreenShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 8l4 -4m-4 0l4 4"},null),e(" ")])}},DMt={name:"ScreenShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 4h4v4"},null),e(" "),t("path",{d:"M16 9l5 -5"},null),e(" ")])}},OMt={name:"ScreenshotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screenshot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 13v-2"},null),e(" "),t("path",{d:"M5 7a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M17 5a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" "),t("path",{d:"M21 19h-4"},null),e(" "),t("path",{d:"M13 19h-2"},null),e(" ")])}},FMt={name:"ScribbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4c1.95 0 4.324 -1.268 5.746 -3.256m1.181 -2.812a5.97 5.97 0 0 0 .073 -.932c0 -4 -3 -7 -6 -7c-.642 0 -1.239 .069 -1.78 .201m-2.492 1.515c-.47 .617 -.728 1.386 -.728 2.284c0 2.5 2 5 6 5c.597 0 1.203 -.055 1.808 -.156m3.102 -.921c2.235 -.953 4.152 -2.423 5.09 -3.923"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RMt={name:"ScribbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5"},null),e(" ")])}},TMt={name:"ScriptMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},EMt={name:"ScriptPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" ")])}},VMt={name:"ScriptXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M17 17l4 4m0 -4l-4 4"},null),e(" ")])}},_Mt={name:"ScriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},WMt={name:"ScubaMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h5a1 1 0 0 1 1 1v4.5c0 .154 -.014 .304 -.04 .45m-2 2.007c-.15 .028 -.305 .043 -.463 .043h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.475 5.475 0 0 0 2.765 -.744m2 -2c.47 -.81 .739 -1.752 .739 -2.756v-9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XMt={name:"ScubaMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h12a1 1 0 0 1 1 1v4.5a2.5 2.5 0 0 1 -2.5 2.5h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.5 5.5 0 0 0 5.5 -5.5v-9.5"},null),e(" ")])}},qMt={name:"SdkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sdk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M17 8v8"},null),e(" "),t("path",{d:"M21 8l-3 4l3 4"},null),e(" "),t("path",{d:"M17 12h1"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},YMt={name:"SearchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.039 5.062a7 7 0 0 0 9.91 9.89m1.584 -2.434a7 7 0 0 0 -9.038 -9.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UMt={name:"SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},GMt={name:"SectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.172 19a3 3 0 1 0 2.828 -4"},null),e(" "),t("path",{d:"M14.83 5a3 3 0 1 0 -2.83 4"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},ZMt={name:"SectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h.01"},null),e(" "),t("path",{d:"M4 20h.01"},null),e(" "),t("path",{d:"M8 20h.01"},null),e(" "),t("path",{d:"M12 20h.01"},null),e(" "),t("path",{d:"M16 20h.01"},null),e(" "),t("path",{d:"M20 4h.01"},null),e(" "),t("path",{d:"M4 4h.01"},null),e(" "),t("path",{d:"M8 4h.01"},null),e(" "),t("path",{d:"M12 4h.01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" ")])}},KMt={name:"SeedingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.412 7.407a6.025 6.025 0 0 0 -2.82 -2.82m-4.592 -.587h-1v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 .255 -1.736m1.51 -2.514a5.981 5.981 0 0 1 4.235 -1.75h3v1c0 2.158 -1.14 4.05 -2.85 5.107m-3.15 .893h-3"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QMt={name:"SeedingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" ")])}},JMt={name:"SelectAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},txt={name:"SelectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},ext={name:"SelectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-selector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l4 -4l4 4"},null),e(" "),t("path",{d:"M16 15l-4 4l-4 -4"},null),e(" ")])}},nxt={name:"SendOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l2 -2m2 -2l7 -7"},null),e(" "),t("path",{d:"M10.718 6.713l10.282 -3.713l-3.715 10.289m-1.063 2.941l-1.722 4.77a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.772 -1.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lxt={name:"SendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l11 -11"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},rxt={name:"SeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M14 16h-4v-8h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M17 8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},oxt={name:"SeparatorHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M16 16l-4 4l-4 -4"},null),e(" ")])}},sxt={name:"SeparatorVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" ")])}},axt={name:"SeparatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" ")])}},ixt={name:"Server2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" "),t("path",{d:"M11 8h6"},null),e(" "),t("path",{d:"M11 16h6"},null),e(" ")])}},hxt={name:"ServerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M15 20h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M20 15l-2 3h3l-2 3"},null),e(" ")])}},dxt={name:"ServerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" ")])}},cxt={name:"ServerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-6a3 3 0 0 1 -3 -3v-2c0 -1.083 .574 -2.033 1.435 -2.56m3.565 -.44h10a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2"},null),e(" "),t("path",{d:"M16 12h2a3 3 0 0 1 3 3v2m-1.448 2.568a2.986 2.986 0 0 1 -1.552 .432h-12a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h6"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uxt={name:"ServerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" ")])}},pxt={name:"ServicemarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-servicemark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},gxt={name:"Settings2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},wxt={name:"SettingsAutomationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-automation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M10 9v6l5 -3z"},null),e(" ")])}},vxt={name:"SettingsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.256 20.473c-.855 .907 -2.583 .643 -2.931 -.79a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.07 .26 1.488 1.29 1.254 2.15"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},fxt={name:"SettingsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.29 20.977c-.818 .132 -1.724 -.3 -1.965 -1.294a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.983 .238 1.416 1.126 1.298 1.937"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},mxt={name:"SettingsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.445 20.913a1.665 1.665 0 0 1 -1.12 -1.23a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.31 .318 1.643 1.79 .997 2.694"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},kxt={name:"SettingsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.482 20.924a1.666 1.666 0 0 1 -1.157 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.312 .318 1.644 1.794 .995 2.697"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},bxt={name:"SettingsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.003 21c-.732 .001 -1.465 -.438 -1.678 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.886 .215 1.325 .957 1.318 1.694"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Mxt={name:"SettingsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 20.666c-.902 .665 -2.393 .337 -2.713 -.983a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 .402 2.248"},null),e(" "),t("path",{d:"M15 12a3 3 0 1 0 -1.724 2.716"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},xxt={name:"SettingsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.52 20.924c-.87 .262 -1.93 -.152 -2.195 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.088 .264 1.502 1.323 1.242 2.192"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},zxt={name:"SettingsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.004 18.401a1.724 1.724 0 0 0 -1.329 1.282c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.079 .262 1.495 1.305 1.248 2.17"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Ixt={name:"SettingsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.647 4.081a.724 .724 0 0 0 1.08 .448c2.439 -1.485 5.23 1.305 3.745 3.744a.724 .724 0 0 0 .447 1.08c2.775 .673 2.775 4.62 0 5.294a.724 .724 0 0 0 -.448 1.08c1.485 2.439 -1.305 5.23 -3.744 3.745a.724 .724 0 0 0 -1.08 .447c-.673 2.775 -4.62 2.775 -5.294 0a.724 .724 0 0 0 -1.08 -.448c-2.439 1.485 -5.23 -1.305 -3.745 -3.744a.724 .724 0 0 0 -.447 -1.08c-2.775 -.673 -2.775 -4.62 0 -5.294a.724 .724 0 0 0 .448 -1.08c-1.485 -2.439 1.305 -5.23 3.744 -3.745a.722 .722 0 0 0 1.08 -.447c.673 -2.775 4.62 -2.775 5.294 0zm-2.647 4.919a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yxt={name:"SettingsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.231 20.828a1.668 1.668 0 0 1 -.906 -1.145a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.509 .123 .87 .421 1.084 .792"},null),e(" "),t("path",{d:"M14.882 11.165a3.001 3.001 0 1 0 -4.31 3.474"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Cxt={name:"SettingsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.488 20.933c-.863 .243 -1.902 -.174 -2.163 -1.25a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.535 .13 -.976 .507 -1.187 1.016c-.049 .118 -.084 .185 -.106 .309"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Sxt={name:"SettingsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.451 5.437c.418 -.218 .75 -.609 .874 -1.12c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.486 .118 -.894 .44 -1.123 .878m-.188 3.803c-.517 .523 -1.349 .734 -2.125 .262a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.472 -.774 -.262 -1.604 .259 -2.121"},null),e(" "),t("path",{d:"M9.889 9.869a3 3 0 1 0 4.226 4.26m.592 -3.424a3.012 3.012 0 0 0 -1.419 -1.415"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$xt={name:"SettingsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.69c-.905 .632 -2.363 .296 -2.679 -1.007a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.314 .319 1.645 1.798 .992 2.701"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Axt={name:"SettingsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.578 20.905c-.88 .299 -1.983 -.109 -2.253 -1.222a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.574 .14 .96 .5 1.16 .937"},null),e(" "),t("path",{d:"M14.99 12.256a3 3 0 1 0 -2.33 2.671"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Bxt={name:"SettingsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.483 20.935c-.862 .239 -1.898 -.178 -2.158 -1.252a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.08 .262 1.496 1.308 1.247 2.173"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Hxt={name:"SettingsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.69 18.498c-.508 .21 -.885 .65 -1.015 1.185c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.179 .982"},null),e(" "),t("path",{d:"M14.95 12.553a3 3 0 1 0 -1.211 1.892"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Nxt={name:"SettingsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.646 20.965a1.67 1.67 0 0 1 -1.321 -1.282a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.728 .177 1.154 .71 1.279 1.303"},null),e(" "),t("path",{d:"M14.985 11.694a3 3 0 1 0 -3.29 3.29"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},jxt={name:"SettingsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 21c-.732 .002 -1.466 -.437 -1.679 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.306 .317 1.64 1.78 1.004 2.684"},null),e(" "),t("path",{d:"M12 15a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Pxt={name:"SettingsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 19.683a1.723 1.723 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.106 .831"},null),e(" "),t("path",{d:"M14.89 11.195a3.001 3.001 0 1 0 -4.457 3.364"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Lxt={name:"SettingsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.501 20.93c-.866 .25 -1.914 -.166 -2.176 -1.247a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.074 .26 1.49 1.296 1.252 2.158"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Dxt={name:"SettingsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.675 19.683c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.66 1.66 0 0 0 -.324 .114"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Oxt={name:"SettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Fxt={name:"ShadowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.728 12.727m1.68 -2.32a9 9 0 0 0 -12.086 -12.088"},null),e(" "),t("path",{d:"M16 12h2"},null),e(" "),t("path",{d:"M13 15h2"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rxt={name:"ShadowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 12h5"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" ")])}},Txt={name:"Shape2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l11 -11m-12.5 .5v10m14 -10v10"},null),e(" ")])}},Ext={name:"Shape3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h10m-12 2v10m14 -10v10"},null),e(" ")])}},Vxt={name:"ShapeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.575 3.597a2 2 0 0 0 2.849 2.808"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.574 17.598a2 2 0 0 0 2.826 2.83"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_xt={name:"ShapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" ")])}},Wxt={name:"Share2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M12 14v-11"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},Xxt={name:"Share3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v4c-6.575 1.028 -9.02 6.788 -10 12c-.037 .206 5.384 -5.962 10 -6v4l8 -7l-8 -7z"},null),e(" ")])}},qxt={name:"ShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15.861 15.896a3 3 0 0 0 4.265 4.22m.578 -3.417a3.012 3.012 0 0 0 -1.507 -1.45"},null),e(" "),t("path",{d:"M8.7 10.7l1.336 -.688m2.624 -1.352l2.64 -1.36"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yxt={name:"ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.7 10.7l6.6 -3.4"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" ")])}},Uxt={name:"ShiJumpingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shi-jumping",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M17 17.5l-5 -4.5v-6l5 4"},null),e(" "),t("path",{d:"M7 17.5l5 -4.5"},null),e(" "),t("path",{d:"M15.103 21.58l6.762 -14.502a2 2 0 0 0 -.968 -2.657"},null),e(" "),t("path",{d:"M8.897 21.58l-6.762 -14.503a2 2 0 0 1 .968 -2.657"},null),e(" "),t("path",{d:"M7 11l5 -4"},null),e(" ")])}},Gxt={name:"ShieldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.342 20.566c-.436 .17 -.884 .315 -1.342 .434a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.34"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Zxt={name:"ShieldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.277 20.925c-.092 .026 -.184 .051 -.277 .075a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .145 6.232"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Kxt={name:"ShieldCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm3.71 7.293a1 1 0 0 0 -1.415 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qxt={name:"ShieldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.46 20.846a12 12 0 0 1 -7.96 -14.846a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.09 7.06"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Jxt={name:"ShieldCheckeredFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.013 12v9.754a13 13 0 0 1 -8.733 -9.754h8.734zm9.284 3.794a13 13 0 0 1 -7.283 5.951l-.001 -9.745h8.708a12.96 12.96 0 0 1 -1.424 3.794zm-9.283 -13.268l-.001 7.474h-8.986c-.068 -1.432 .101 -2.88 .514 -4.282a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.192 -2.256l.276 -.219zm1.999 7.474v-7.453l-.09 -.073a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717c.413 1.403 .582 2.85 .514 4.282h-8.96z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tzt={name:"ShieldCheckeredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M3.5 12h17"},null),e(" ")])}},ezt={name:"ShieldChevronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-chevron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M4 14l8 -3l8 3"},null),e(" ")])}},nzt={name:"ShieldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.078 7.024"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lzt={name:"ShieldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.568 1.933 .635 3.957 .223 5.89"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rzt={name:"ShieldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.018 20.687c-.333 .119 -.673 .223 -1.018 .313a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.433 1.472 .575 2.998 .436 4.495"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ozt={name:"ShieldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.444 20.876c-.147 .044 -.295 .085 -.444 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.343"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},szt={name:"ShieldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.04 19.745c-.942 .551 -1.964 .976 -3.04 1.255a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .195 6.015"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},azt={name:"ShieldFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.884 2.007l.114 -.007l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},izt={name:"ShieldHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 11h8.9"},null),e(" "),t("path",{d:"M12 8h8.9"},null),e(" "),t("path",{d:"M12 5h3.1"},null),e(" "),t("path",{d:"M12 17h6.2"},null),e(" "),t("path",{d:"M12 14h8"},null),e(" ")])}},hzt={name:"ShieldHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},dzt={name:"ShieldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12.01 12.01 0 0 1 .378 5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},czt={name:"ShieldLockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm.002 7a2 2 0 0 0 -1.995 1.85l-.005 .15l.005 .15a2 2 0 0 0 .995 1.581v1.769l.007 .117a1 1 0 0 0 1.993 -.117l.001 -1.768a2 2 0 0 0 -1.001 -3.732z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uzt={name:"ShieldLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" ")])}},pzt={name:"ShieldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.46 20.871c-.153 .046 -.306 .089 -.46 .129a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.916 9.015"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},gzt={name:"ShieldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.67 17.667a12 12 0 0 1 -5.67 3.333a12 12 0 0 1 -8.5 -15c.794 .036 1.583 -.006 2.357 -.124m3.128 -.926a11.997 11.997 0 0 0 3.015 -1.95a12 12 0 0 0 8.5 3a12 12 0 0 1 -1.116 9.376"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wzt={name:"ShieldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.692c-.329 .117 -.664 .22 -1.004 .308a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.081 7.034"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},vzt={name:"ShieldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.597 20.829a12 12 0 0 1 -.597 .171a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.506 1.72 .614 3.512 .342 5.248"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},fzt={name:"ShieldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.462 20.87c-.153 .047 -.307 .09 -.462 .13a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .11 6.37"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},mzt={name:"ShieldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.065 19.732c-.95 .557 -1.98 .986 -3.065 1.268a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.51 1.738 .617 3.55 .333 5.303"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kzt={name:"ShieldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.539 1.832 .627 3.747 .283 5.588"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},bzt={name:"ShieldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .193 6.025"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Mzt={name:"ShieldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.143 20.743a12 12 0 0 1 -7.643 -14.743a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.504 1.716 .614 3.505 .343 5.237"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},xzt={name:"ShieldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.442 20.876a13.12 13.12 0 0 1 -.442 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .119 6.336"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zzt={name:"ShieldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.252 20.601c-.408 .155 -.826 .288 -1.252 .399a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.19 7.357"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Izt={name:"ShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" ")])}},yzt={name:"ShipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h10m4 0h4l-1.334 2.668"},null),e(" "),t("path",{d:"M5 13v-6h2m4 0h2l4 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Czt={name:"ShipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h18l-2 4"},null),e(" "),t("path",{d:"M5 13v-6h8l4 6"},null),e(" "),t("path",{d:"M7 7v-4h-1"},null),e(" ")])}},Szt={name:"ShirtFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.883 3.007l.095 -.007l.112 .004l.113 .017l.113 .03l6 2a1 1 0 0 1 .677 .833l.007 .116v5a1 1 0 0 1 -.883 .993l-.117 .007h-2v7a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .576 -.906l.108 -.043l6 -2a1 1 0 0 1 1.316 .949a2 2 0 0 0 3.995 .15l.009 -.24l.017 -.113l.037 -.134l.044 -.103l.05 -.092l.068 -.093l.069 -.08c.056 -.054 .113 -.1 .175 -.14l.096 -.053l.103 -.044l.108 -.032l.112 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$zt={name:"ShirtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 4.252l.757 -.252c0 .43 .09 .837 .252 1.206m1.395 1.472a3 3 0 0 0 4.353 -2.678l6 2v5h-3v3m0 4v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l2.26 -.753"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Azt={name:"ShirtSportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-sport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M10.5 11h2.5l-1.5 5"},null),e(" ")])}},Bzt={name:"ShirtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" ")])}},Hzt={name:"ShoeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.846 9.868l4.08 .972a4 4 0 0 1 3.074 3.89v2.27m-3 1h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l.663 -1.327"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nzt={name:"ShoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M14 13l1 -2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l1.5 -3"},null),e(" ")])}},jzt={name:"ShoppingBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.331 8h11.339a2 2 0 0 1 1.977 2.304l-1.255 8.152a3 3 0 0 1 -2.966 2.544h-6.852a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304z"},null),e(" "),t("path",{d:"M9 11v-5a3 3 0 0 1 6 0v5"},null),e(" ")])}},Pzt={name:"ShoppingCartDiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M20 6l-1 7h-13"},null),e(" "),t("path",{d:"M10 10l6 -6"},null),e(" "),t("path",{d:"M10.5 4.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" "),t("path",{d:"M15.5 9.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" ")])}},Lzt={name:"ShoppingCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M17 17h-11v-11"},null),e(" "),t("path",{d:"M9.239 5.231l10.761 .769l-1 7h-2m-4 0h-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dzt={name:"ShoppingCartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l6 .429m7.138 6.573l-.143 1h-13"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},Ozt={name:"ShoppingCartXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l8 .571m5.43 4.43l-.429 3h-13"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" ")])}},Fzt={name:"ShoppingCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l14 1l-1 7h-13"},null),e(" ")])}},Rzt={name:"ShovelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shovel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-8 8"},null),e(" "),t("path",{d:"M8.276 11.284l4.44 4.44a.968 .968 0 0 1 0 1.369l-2.704 2.704a4.108 4.108 0 0 1 -5.809 -5.81l2.704 -2.703a.968 .968 0 0 1 1.37 0z"},null),e(" ")])}},Tzt={name:"ShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m5 5v5m4 -5v2m-8 -2v3"},null),e(" ")])}},Ezt={name:"SignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v2h3a1 1 0 0 1 .993 .883l.007 .117v5a1 1 0 0 1 -.883 .993l-.117 .007h-3v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-5a1 1 0 0 1 -.694 -.28l-.087 -.095l-2 -2.5a1 1 0 0 1 -.072 -1.147l.072 -.103l2 -2.5a1 1 0 0 1 .652 -.367l.129 -.008h5v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vzt={name:"SignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-10"},null),e(" "),t("path",{d:"M14 6v-3"},null),e(" "),t("path",{d:"M18 6h-10l-2 2.5l2 2.5h10z"},null),e(" ")])}},_zt={name:"SignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v2h5a1 1 0 0 1 .694 .28l.087 .095l2 2.5a1 1 0 0 1 .072 1.147l-.072 .103l-2 2.5a1 1 0 0 1 -.652 .367l-.129 .008h-5v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-3a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .883 -.993l.117 -.007h3v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wzt={name:"SignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-10"},null),e(" "),t("path",{d:"M10 6v-3"},null),e(" "),t("path",{d:"M6 6h10l2 2.5l-2 2.5h-10z"},null),e(" ")])}},Xzt={name:"Signal2gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-2g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M5 8h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h4"},null),e(" ")])}},qzt={name:"Signal3gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-3g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},Yzt={name:"Signal4gPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M3 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Uzt={name:"Signal4gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Gzt={name:"Signal5gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-5g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},Zzt={name:"Signal6gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-6g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},Kzt={name:"SignalEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},Qzt={name:"SignalGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Jzt={name:"SignalHPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16v-8"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" "),t("path",{d:"M7 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M16 10v4"},null),e(" ")])}},tIt={name:"SignalHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},eIt={name:"SignalLteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-lte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M4 8v8h4"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},nIt={name:"SignatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -.394 -.017 -.735 -.05 -1.033m-1.95 -1.967c-1 0 -2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.219 0 .708 -.341 1.231 -.742m3.769 -.258c.303 .245 .64 .677 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lIt={name:"SignatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.53 0 2.639 -2 3 -2c.517 0 1.517 .667 3 2"},null),e(" ")])}},rIt={name:"SitemapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 15a2 2 0 0 1 2 2m-.591 3.42c-.362 .358 -.86 .58 -1.409 .58h-2a2 2 0 0 1 -2 -2v-2c0 -.549 .221 -1.046 .579 -1.407"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h4m4 0a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oIt={name:"SitemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" ")])}},sIt={name:"SkateboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M3 9c0 .552 .895 1 2 1h5m4 0h5c1.105 0 2 -.448 2 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aIt={name:"SkateboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 9a2 1 0 0 0 2 1h14a2 1 0 0 0 2 -1"},null),e(" ")])}},iIt={name:"SkullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skull",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -2 4.96l0 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5z"},null),e(" "),t("path",{d:"M10 17v3"},null),e(" "),t("path",{d:"M14 17v3"},null),e(" "),t("path",{d:"M9 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hIt={name:"SlashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5l-10 14"},null),e(" ")])}},dIt={name:"SlashesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slashes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5l-10 14"},null),e(" "),t("path",{d:"M20 5l-10 14"},null),e(" ")])}},cIt={name:"SleighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sleigh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h15a4 4 0 0 0 4 -4"},null),e(" "),t("path",{d:"M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" "),t("path",{d:"M7 15v4"},null),e(" ")])}},uIt={name:"SliceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l15 -15l3 3l-6 6l2 2a14 14 0 0 1 -14 4"},null),e(" ")])}},pIt={name:"SlideshowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slideshow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l.01 0"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 13l4 -4a3 5 0 0 1 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2a3 5 0 0 1 3 0l3 3"},null),e(" "),t("path",{d:"M8 21l.01 0"},null),e(" "),t("path",{d:"M12 21l.01 0"},null),e(" "),t("path",{d:"M16 21l.01 0"},null),e(" ")])}},gIt={name:"SmartHomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.097 7.125l-2.037 1.585a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12c.559 0 1.064 -.229 1.427 -.598m.572 -3.417v-5.185c0 -.823 -.38 -1.6 -1.03 -2.105l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-1.029 .8"},null),e(" "),t("path",{d:"M15.332 15.345c-2.213 .976 -5.335 .86 -7.332 -.345"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wIt={name:"SmartHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105"},null),e(" "),t("path",{d:"M16 15c-2.21 1.333 -5.792 1.333 -8 0"},null),e(" ")])}},vIt={name:"SmokingNoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking-no",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 13h3a1 1 0 0 1 1 1v2c0 .28 -.115 .533 -.3 .714m-3.7 .286h-13a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h9"},null),e(" ")])}},fIt={name:"SmokingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},mIt={name:"SnowflakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6m1.196 1.186l1.804 1.034"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l-.031 .75"},null),e(" "),t("path",{d:"M19.928 14.268l-1.015 .67"},null),e(" "),t("path",{d:"M14.212 14.226l-2.171 1.262"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l.802 -.466"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kIt={name:"SnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6.5l3 1.72"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l.01 3.458"},null),e(" "),t("path",{d:"M19.928 14.268l-1.866 1.232l-.134 2.232"},null),e(" "),t("path",{d:"M20.66 17l-5.629 -3.25l-2.99 1.738"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l2.99 -1.738"},null),e(" ")])}},bIt={name:"SnowmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75z"},null),e(" "),t("path",{d:"M17.5 11.5l2.5 -1.5"},null),e(" "),t("path",{d:"M6.5 11.5l-2.5 -1.5"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},MIt={name:"SoccerFieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soccer-field",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 9h3v6h-3z"},null),e(" "),t("path",{d:"M18 9h3v6h-3z"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},xIt={name:"SocialOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.57 17.602a2 2 0 0 0 2.83 2.827"},null),e(" "),t("path",{d:"M11.113 11.133a3 3 0 1 0 3.765 3.715"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zIt={name:"SocialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" ")])}},IIt={name:"SockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v6l4.798 5.142a4 4 0 0 1 -5.441 5.86l-6.736 -6.41a2 2 0 0 1 -.621 -1.451v-9.141h8z"},null),e(" "),t("path",{d:"M7.895 15.768c.708 -.721 1.105 -1.677 1.105 -2.768a4 4 0 0 0 -4 -4"},null),e(" ")])}},yIt={name:"SofaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14v-1a2 2 0 1 1 4 0v5m-3 1h-16a1 1 0 0 1 -1 -1v-5a2 2 0 1 1 4 0v1h8"},null),e(" "),t("path",{d:"M4 11v-3c0 -1.082 .573 -2.03 1.432 -2.558m3.568 -.442h8a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v3m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CIt={name:"SofaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a2 2 0 0 1 2 2v1h12v-1a2 2 0 1 1 4 0v5a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M4 11v-3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v9"},null),e(" ")])}},SIt={name:"SolarPanel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M4 3h1"},null),e(" "),t("path",{d:"M19 3h1"},null),e(" "),t("path",{d:"M12 9v1"},null),e(" "),t("path",{d:"M17.2 7.2l.707 .707"},null),e(" "),t("path",{d:"M6.8 7.2l-.7 .7"},null),e(" "),t("path",{d:"M4.28 21h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" "),t("path",{d:"M10 13l-1 8"},null),e(" "),t("path",{d:"M14 13l1 8"},null),e(" ")])}},$It={name:"SolarPanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.28 14h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M10 6l-1 8"},null),e(" "),t("path",{d:"M14 6l1 8"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},AIt={name:"Sort09Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-0-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M16 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},BIt={name:"Sort90Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-9-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M16 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},HIt={name:"SortAZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-a-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8h4l-4 8h4"},null),e(" "),t("path",{d:"M4 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M4 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},NIt={name:"SortAscending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 -3l3 3"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M17 6v12"},null),e(" ")])}},jIt={name:"SortAscendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 21h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},PIt={name:"SortAscendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},LIt={name:"SortAscendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l7 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l9 0"},null),e(" "),t("path",{d:"M15 9l3 -3l3 3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},DIt={name:"SortDescending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M14 15l3 3l3 -3"},null),e(" "),t("path",{d:"M17 18v-12"},null),e(" ")])}},OIt={name:"SortDescendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 10h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},FIt={name:"SortDescendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 14a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},RIt={name:"SortDescendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l9 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l7 0"},null),e(" "),t("path",{d:"M15 15l3 3l3 -3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},TIt={name:"SortZAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-z-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" "),t("path",{d:"M16 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M16 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},EIt={name:"SosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8h4v8h-4z"},null),e(" "),t("path",{d:"M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3"},null),e(" ")])}},VIt={name:"SoupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M15 11h6c0 1.691 -.525 3.26 -1.42 4.552m-2.034 2.032a7.963 7.963 0 0 1 -4.546 1.416h-2a8 8 0 0 1 -8 -8h8"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M15 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_It={name:"SoupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M12 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M16 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M8 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" ")])}},WIt={name:"SourceCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-source-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5"},null),e(" "),t("path",{d:"M6 5l-2 2l2 2"},null),e(" "),t("path",{d:"M10 9l2 -2l-2 -2"},null),e(" ")])}},XIt={name:"SpaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h9m4 0h1a1 1 0 0 0 1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qIt={name:"SpaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-3"},null),e(" ")])}},YIt={name:"SpacingHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},UIt={name:"SpacingVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" ")])}},GIt={name:"SpadeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.327 2.26a1395.065 1395.065 0 0 0 -4.923 4.504c-.626 .6 -1.212 1.21 -1.774 1.843a6.528 6.528 0 0 0 -.314 8.245l.14 .177c1.012 1.205 2.561 1.755 4.055 1.574l.246 -.037l-.706 2.118a1 1 0 0 0 .949 1.316h6l.118 -.007a1 1 0 0 0 .83 -1.31l-.688 -2.065l.104 .02c1.589 .25 3.262 -.387 4.32 -1.785a6.527 6.527 0 0 0 -.311 -8.243a31.787 31.787 0 0 0 -1.76 -1.83l-4.938 -4.518a1 1 0 0 0 -1.348 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZIt={name:"SpadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z"},null),e(" ")])}},KIt={name:"SparklesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sparkles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm0 -12a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm-7 12a6 6 0 0 1 6 -6a6 6 0 0 1 -6 -6a6 6 0 0 1 -6 6a6 6 0 0 1 6 6z"},null),e(" ")])}},QIt={name:"SpeakerphoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speakerphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8a3 3 0 0 1 0 6"},null),e(" "),t("path",{d:"M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5"},null),e(" "),t("path",{d:"M12 8h0l4.524 -3.77a.9 .9 0 0 1 1.476 .692v12.156a.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8"},null),e(" ")])}},JIt={name:"SpeedboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speedboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4z"},null),e(" "),t("path",{d:"M6 13l1.5 -5"},null),e(" "),t("path",{d:"M6 8h8l2 3"},null),e(" ")])}},tyt={name:"SphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c.987 0 1.936 -.053 2.825 -.15m3.357 -.67c1.735 -.547 2.818 -1.32 2.818 -2.18"},null),e(" "),t("path",{d:"M20.051 16.027a9 9 0 0 0 -12.083 -12.075m-2.34 1.692a9 9 0 0 0 12.74 12.716"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eyt={name:"SpherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c1.116 0 2.185 -.068 3.172 -.192m5.724 -2.35a1.1 1.1 0 0 0 .104 -.458"},null),e(" "),t("path",{d:"M20.984 12.546a9 9 0 1 0 -8.442 8.438"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},nyt={name:"SphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},lyt={name:"SpiderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spider",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4v2l5 5"},null),e(" "),t("path",{d:"M2.5 9.5l1.5 1.5h6"},null),e(" "),t("path",{d:"M4 19v-2l6 -6"},null),e(" "),t("path",{d:"M19 4v2l-5 5"},null),e(" "),t("path",{d:"M21.5 9.5l-1.5 1.5h-6"},null),e(" "),t("path",{d:"M20 19v-2l-6 -6"},null),e(" "),t("path",{d:"M12 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},ryt={name:"SpiralOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c.682 .459 1.509 .374 2.164 -.02m1.103 -2.92a3.298 3.298 0 0 0 -1.749 -2.059a3.6 3.6 0 0 0 -.507 -.195m-3.385 .634a4.154 4.154 0 0 0 -1.347 1.646c-1.095 2.432 .29 5.248 2.71 6.246c1.955 .806 4.097 .35 5.65 -.884m1.745 -2.268l.043 -.103c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-1.593 -.61 -3.27 -.599 -4.79 -.113m-2.579 1.408a7.574 7.574 0 0 0 -2.268 3.128c-1.63 4.253 .823 9.024 5.082 10.576c3.211 1.17 6.676 .342 9.124 -1.738m1.869 -2.149a9.354 9.354 0 0 0 1.417 -4.516"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oyt={name:"SpiralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813"},null),e(" ")])}},syt={name:"SportBillardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sport-billard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},ayt={name:"SprayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M18 5h.01"},null),e(" "),t("path",{d:"M21 3h.01"},null),e(" "),t("path",{d:"M21 7h.01"},null),e(" "),t("path",{d:"M21 11h.01"},null),e(" "),t("path",{d:"M10 7h1"},null),e(" ")])}},iyt={name:"SpyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h8m4 0h6"},null),e(" "),t("path",{d:"M5 11v-4c0 -.571 .16 -1.105 .437 -1.56m2.563 -1.44h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.88 14.877a3 3 0 1 0 4.239 4.247m.59 -3.414a3.012 3.012 0 0 0 -1.425 -1.422"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hyt={name:"SpyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h18"},null),e(" "),t("path",{d:"M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" ")])}},dyt={name:"SqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M3 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},cyt={name:"Square0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uyt={name:"Square1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.339 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pyt={name:"Square2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gyt={name:"Square3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wyt={name:"Square4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vyt={name:"Square5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fyt={name:"Square6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},myt={name:"Square7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kyt={name:"Square8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},byt={name:"Square9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Myt={name:"SquareArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xyt={name:"SquareArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},zyt={name:"SquareArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Iyt={name:"SquareArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},yyt={name:"SquareAsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8.5v7"},null),e(" "),t("path",{d:"M9 10l6 4"},null),e(" "),t("path",{d:"M9 14l6 -4"},null),e(" ")])}},Cyt={name:"SquareCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.626 7.293a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Syt={name:"SquareCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},$yt={name:"SquareChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ayt={name:"SquareChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Byt={name:"SquareChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hyt={name:"SquareChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" ")])}},Nyt={name:"SquareChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jyt={name:"SquareChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Pyt={name:"SquareChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Lyt={name:"SquareChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Dyt={name:"SquareDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Oyt={name:"SquareF0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v3l.005 .164a2.5 2.5 0 0 0 4.99 0l.005 -.164v-3l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm4.5 2a.5 .5 0 0 1 .492 .41l.008 .09v3l-.008 .09a.5 .5 0 0 1 -.984 0l-.008 -.09v-3l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fyt={name:"SquareF0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Ryt={name:"SquareF1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-8.333 6h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5.994 .886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v3.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tyt={name:"SquareF1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 11l2 -2v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Eyt={name:"SquareF2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v1h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-1h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vyt={name:"SquareF2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},_yt={name:"SquareF3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6h-1l-.144 .007a1.5 1.5 0 0 0 -1.356 1.493a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .727 -.457l.02 -.036h.636l.09 .008a.5 .5 0 0 1 0 .984l-.09 .008h-.5l-.133 .007c-1.156 .124 -1.156 1.862 0 1.986l.133 .007h.5l.09 .008a.5 .5 0 0 1 .41 .492l-.008 .09a.5 .5 0 0 1 -.492 .41h-.635l-.02 -.036a1 1 0 0 0 -1.845 .536a1.5 1.5 0 0 0 1.5 1.5h1l.164 -.005a2.5 2.5 0 0 0 2.336 -2.495l-.005 -.164a2.487 2.487 0 0 0 -.477 -1.312l-.019 -.024l.126 -.183a2.5 2.5 0 0 0 -2.125 -3.817zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wyt={name:"SquareF3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Xyt={name:"SquareF4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6a1 1 0 0 0 -.993 .883l-.007 .117v2h-1v-2l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qyt={name:"SquareF4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M16 9v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Yyt={name:"SquareF5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.857 .764l-.02 .112l-.006 .117v3l.007 .117a1 1 0 0 0 .764 .857l.112 .02l.117 .006h2v1h-1.033l-.025 -.087l-.049 -.113a1 1 0 0 0 -1.893 .45c0 .867 .63 1.587 1.458 1.726l.148 .018l.144 .006h1.25l.157 -.006a2 2 0 0 0 1.819 -1.683l.019 -.162l.005 -.149v-1l-.006 -.157a2 2 0 0 0 -1.683 -1.819l-.162 -.019l-.149 -.005h-1v-1h2l.117 -.007a1 1 0 0 0 .857 -.764l.02 -.112l.006 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uyt={name:"SquareF5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Gyt={name:"SquareF6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.25l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-1v-1h1.032l.026 .087a1 1 0 0 0 1.942 -.337a1.75 1.75 0 0 0 -1.606 -1.744l-.144 -.006zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zyt={name:"SquareF6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 9.75a.75 .75 0 0 0 -.75 -.75h-1.25a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Kyt={name:"SquareF7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.718l-1.188 4.757l-.022 .115a1 1 0 0 0 1.962 .37l1.5 -6l.021 -.11a1 1 0 0 0 -.991 -1.132zm-6 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qyt={name:"SquareF7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h3l-1.5 6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Jyt={name:"SquareF8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1zm0 -3v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tCt={name:"SquareF8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},eCt={name:"SquareF9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.5l-.144 .006a1.75 1.75 0 0 0 -1.606 1.744v1.5l.006 .144a1.75 1.75 0 0 0 1.744 1.606h1.25v1h-1.033l-.025 -.087a1 1 0 0 0 -1.942 .337c0 .966 .784 1.75 1.75 1.75h1.5l.144 -.006a1.75 1.75 0 0 0 1.606 -1.744v-4.5l-.006 -.144a1.75 1.75 0 0 0 -1.744 -1.606zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993zm5 2v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nCt={name:"SquareF9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.5a.75 .75 0 0 0 .75 -.75v-4.5a.75 .75 0 0 0 -.75 -.75h-1.5a.75 .75 0 0 0 -.75 .75v1.5c0 .414 .336 .75 .75 .75h2.25"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},lCt={name:"SquareForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},rCt={name:"SquareForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},oCt={name:"SquareHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 13l7.5 -7.5"},null),e(" "),t("path",{d:"M12 18l8 -8"},null),e(" "),t("path",{d:"M15 20l5 -5"},null),e(" "),t("path",{d:"M12 8l4 -4"},null),e(" ")])}},sCt={name:"SquareKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},aCt={name:"SquareLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},iCt={name:"SquareLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},hCt={name:"SquareLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},dCt={name:"SquareLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},cCt={name:"SquareLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},uCt={name:"SquareLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},pCt={name:"SquareLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},gCt={name:"SquareLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},wCt={name:"SquareLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},vCt={name:"SquareLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},fCt={name:"SquareLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},mCt={name:"SquareLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},kCt={name:"SquareLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},bCt={name:"SquareLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},MCt={name:"SquareLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},xCt={name:"SquareLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},zCt={name:"SquareLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},ICt={name:"SquareLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},yCt={name:"SquareLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},CCt={name:"SquareLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},SCt={name:"SquareLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},$Ct={name:"SquareLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},ACt={name:"SquareLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},BCt={name:"SquareLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},HCt={name:"SquareLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},NCt={name:"SquareLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},jCt={name:"SquareMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},PCt={name:"SquareNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},LCt={name:"SquareNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},DCt={name:"SquareNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},OCt={name:"SquareNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},FCt={name:"SquareNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},RCt={name:"SquareNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},TCt={name:"SquareNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},ECt={name:"SquareNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},VCt={name:"SquareNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},_Ct={name:"SquareNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},WCt={name:"SquareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.584 3.412a2 2 0 0 1 -1.416 .588h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XCt={name:"SquarePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},qCt={name:"SquareRoot2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M12 19c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M3 12h1l3 8l3 -16h10"},null),e(" ")])}},YCt={name:"SquareRootIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2l4 8l4 -16h8"},null),e(" ")])}},UCt={name:"SquareRotatedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.793 2.893l-6.9 6.9c-1.172 1.171 -1.172 3.243 0 4.414l6.9 6.9c1.171 1.172 3.243 1.172 4.414 0l6.9 -6.9c1.172 -1.171 1.172 -3.243 0 -4.414l-6.9 -6.9c-1.171 -1.172 -3.243 -1.172 -4.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GCt={name:"SquareRotatedForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 9.5l5 5"},null),e(" ")])}},ZCt={name:"SquareRotatedForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 14.5l5 -5"},null),e(" ")])}},KCt={name:"SquareRotatedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.964 16.952l-3.462 3.461c-.782 .783 -2.222 .783 -3 0l-6.911 -6.91c-.783 -.783 -.783 -2.223 0 -3l3.455 -3.456m2 -2l1.453 -1.452c.782 -.783 2.222 -.783 3 0l6.911 6.91c.783 .783 .783 2.223 0 3l-1.448 1.45"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QCt={name:"SquareRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},JCt={name:"SquareRoundedArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 5a1 1 0 0 1 .993 .883l.007 .117v5.585l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1.008 1.008 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.092 -.064l-.094 -.083l-4 -4a1 1 0 0 1 1.32 -1.497l.094 .083l2.293 2.292v-5.585a1 1 0 0 1 1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},tSt={name:"SquareRoundedArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},eSt={name:"SquareRoundedArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.037 1.037 0 0 0 -.2 .284l-.022 .052a.95 .95 0 0 0 -.06 .222l-.008 .067l-.002 .063v-.035v.073a1.034 1.034 0 0 0 .07 .352l.023 .052l.03 .061l.022 .037a1.2 1.2 0 0 0 .05 .074l.024 .03l.073 .082l4 4l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.585l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},nSt={name:"SquareRoundedArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},lSt={name:"SquareRoundedArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm.613 5.21l.094 .083l4 4a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293h-5.585a1 1 0 0 1 -.117 -1.993l.117 -.007h5.585l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},rSt={name:"SquareRoundedArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},oSt={name:"SquareRoundedArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.148 5.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292v5.585a1 1 0 0 1 -1.993 .117l-.007 -.117v-5.585l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l4 -4a.927 .927 0 0 1 .112 -.097l.11 -.071l.114 -.054l.105 -.035l.118 -.025z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},sSt={name:"SquareRoundedArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},aSt={name:"SquareRoundedCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 7.293a1 1 0 0 1 1.497 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.32 .083l-.094 -.083l-2 -2a1 1 0 0 1 1.32 -1.497l.094 .083l1.293 1.292l3.293 -3.292z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},iSt={name:"SquareRoundedCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},hSt={name:"SquareRoundedChevronDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 8.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},dSt={name:"SquareRoundedChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},cSt={name:"SquareRoundedChevronLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm1.707 6.293a1 1 0 0 0 -1.414 0l-3 3l-.083 .094a1 1 0 0 0 .083 1.32l3 3l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},uSt={name:"SquareRoundedChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},pSt={name:"SquareRoundedChevronRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-1.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},gSt={name:"SquareRoundedChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},wSt={name:"SquareRoundedChevronUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 7.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},vSt={name:"SquareRoundedChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},fSt={name:"SquareRoundedChevronsDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414zm0 4a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},mSt={name:"SquareRoundedChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},kSt={name:"SquareRoundedChevronsLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 6.293a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm-4 0a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},bSt={name:"SquareRoundedChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},MSt={name:"SquareRoundedChevronsRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094zm4 0a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},xSt={name:"SquareRoundedChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},zSt={name:"SquareRoundedChevronsUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 9.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm0 -4a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},ISt={name:"SquareRoundedChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ySt={name:"SquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CSt={name:"SquareRoundedLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},SSt={name:"SquareRoundedLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$St={name:"SquareRoundedLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ASt={name:"SquareRoundedLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},BSt={name:"SquareRoundedLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},HSt={name:"SquareRoundedLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},NSt={name:"SquareRoundedLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},jSt={name:"SquareRoundedLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},PSt={name:"SquareRoundedLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},LSt={name:"SquareRoundedLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},DSt={name:"SquareRoundedLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},OSt={name:"SquareRoundedLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},FSt={name:"SquareRoundedLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},RSt={name:"SquareRoundedLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},TSt={name:"SquareRoundedLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ESt={name:"SquareRoundedLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},VSt={name:"SquareRoundedLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},_St={name:"SquareRoundedLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},WSt={name:"SquareRoundedLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},XSt={name:"SquareRoundedLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qSt={name:"SquareRoundedLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},YSt={name:"SquareRoundedLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},USt={name:"SquareRoundedLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},GSt={name:"SquareRoundedLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ZSt={name:"SquareRoundedLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},KSt={name:"SquareRoundedLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},QSt={name:"SquareRoundedMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},JSt={name:"SquareRoundedNumber0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 5a3 3 0 0 0 -3 3v4a3 3 0 0 0 6 0v-4a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},t$t={name:"SquareRoundedNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},e$t={name:"SquareRoundedNumber1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},n$t={name:"SquareRoundedNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},l$t={name:"SquareRoundedNumber2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r$t={name:"SquareRoundedNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},o$t={name:"SquareRoundedNumber3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s$t={name:"SquareRoundedNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},a$t={name:"SquareRoundedNumber4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i$t={name:"SquareRoundedNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},h$t={name:"SquareRoundedNumber5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d$t={name:"SquareRoundedNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},c$t={name:"SquareRoundedNumber6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u$t={name:"SquareRoundedNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},p$t={name:"SquareRoundedNumber7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},g$t={name:"SquareRoundedNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},w$t={name:"SquareRoundedNumber8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},v$t={name:"SquareRoundedNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},f$t={name:"SquareRoundedNumber9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m$t={name:"SquareRoundedNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},k$t={name:"SquareRoundedPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm0 6a1 1 0 0 0 -1 1v2h-2l-.117 .007a1 1 0 0 0 .117 1.993h2v2l.007 .117a1 1 0 0 0 1.993 -.117v-2h2l.117 -.007a1 1 0 0 0 -.117 -1.993h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},b$t={name:"SquareRoundedPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},M$t={name:"SquareRoundedXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm-1.489 7.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},x$t={name:"SquareRoundedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},z$t={name:"SquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},I$t={name:"SquareToggleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-20"},null),e(" "),t("path",{d:"M4 14v-8a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M4 18a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M14 20l-4 0"},null),e(" ")])}},y$t={name:"SquareToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l0 20"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M20 6a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M20 10l0 4"},null),e(" ")])}},C$t={name:"SquareXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},S$t={name:"SquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},$$t={name:"SquaresDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" ")])}},A$t={name:"SquaresFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 14.5l6.492 -6.492"},null),e(" "),t("path",{d:"M13.496 20l6.504 -6.504l-6.504 6.504z"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},B$t={name:"Stack2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 12l8 4l8 -4"},null),e(" "),t("path",{d:"M4 16l8 4l8 -4"},null),e(" ")])}},H$t={name:"Stack3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 10l8 4l8 -4"},null),e(" "),t("path",{d:"M4 18l8 4l8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},N$t={name:"StackPopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-pop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9.5l-3 1.5l8 4l8 -4l-3 -1.5"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 11v-7"},null),e(" "),t("path",{d:"M9 7l3 -3l3 3"},null),e(" ")])}},j$t={name:"StackPushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-push",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l-2 1l8 4l8 -4l-2 -1"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 4v7"},null),e(" "),t("path",{d:"M15 8l-3 3l-3 -3"},null),e(" ")])}},P$t={name:"StackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},L$t={name:"StairsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M11 4l-7 7v-4m4 4h-4"},null),e(" ")])}},D$t={name:"StairsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M4 11l7 -7v4m-4 -4h4"},null),e(" ")])}},O$t={name:"StairsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h4v-4h4v-4h4v-4h4"},null),e(" ")])}},F$t={name:"StarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R$t={name:"StarHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a.993 .993 0 0 1 .823 .443l.067 .116l2.852 5.781l6.38 .925c.741 .108 1.08 .94 .703 1.526l-.07 .095l-.078 .086l-4.624 4.499l1.09 6.355a1.001 1.001 0 0 1 -1.249 1.135l-.101 -.035l-.101 -.046l-5.693 -3l-5.706 3c-.105 .055 -.212 .09 -.32 .106l-.106 .01a1.003 1.003 0 0 1 -1.038 -1.06l.013 -.11l1.09 -6.355l-4.623 -4.5a1.001 1.001 0 0 1 .328 -1.647l.113 -.036l.114 -.023l6.379 -.925l2.853 -5.78a.968 .968 0 0 1 .904 -.56zm0 3.274v12.476a1 1 0 0 1 .239 .029l.115 .036l.112 .05l4.363 2.299l-.836 -4.873a1 1 0 0 1 .136 -.696l.07 -.099l.082 -.09l3.546 -3.453l-4.891 -.708a1 1 0 0 1 -.62 -.344l-.073 -.097l-.06 -.106l-2.183 -4.424z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},T$t={name:"StarHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z"},null),e(" ")])}},E$t={name:"StarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917"},null),e(" ")])}},V$t={name:"StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z"},null),e(" ")])}},_$t={name:"StarsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.907 -.278l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.773l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.057 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.324 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.857 2.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.894l1.709 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.892l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},W$t={name:"StarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.373 13.371l.076 -.154a.392 .392 0 0 1 .702 0l.907 1.831m.367 .39c.498 .071 1.245 .18 2.24 .324a.39 .39 0 0 1 .217 .665c-.326 .316 -.57 .553 -.732 .712m-.611 3.405a.39 .39 0 0 1 -.567 .411l-2.172 -1.138l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l1.601 -.232"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M9.557 5.556l1 -.146l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.014 .187m-4.153 -.166l-.744 .39a.392 .392 0 0 1 -.568 -.41l.188 -1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X$t={name:"StarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 9.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},q$t={name:"StatusChangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-status-change",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12v-2a6 6 0 1 1 12 0v2"},null),e(" "),t("path",{d:"M15 9l3 3l3 -3"},null),e(" ")])}},Y$t={name:"SteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5.5 5.5l3 3"},null),e(" "),t("path",{d:"M15.5 15.5l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-3 3"},null),e(" "),t("path",{d:"M8.5 15.5l-3 3"},null),e(" ")])}},U$t={name:"SteeringWheelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M10.595 10.576a2 2 0 1 0 2.827 2.83"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M15.542 11.543l5.208 -1.543"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},G$t={name:"SteeringWheelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M14 12l6.75 -2"},null),e(" ")])}},Z$t={name:"StepIntoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-into",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 11l-4 4"},null),e(" "),t("path",{d:"M8 11l4 4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},K$t={name:"StepOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 7l-4 -4"},null),e(" "),t("path",{d:"M8 7l4 -4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Q$t={name:"StereoGlassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stereo-glasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h-2l-3 9"},null),e(" "),t("path",{d:"M16 3h2l3 9"},null),e(" "),t("path",{d:"M3 12v7a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707 -.293l2 -2a1 1 0 0 1 1.414 0l2 2a1 1 0 0 0 .707 .293h4.586a1 1 0 0 0 1 -1v-7h-18z"},null),e(" "),t("path",{d:"M7 16h1"},null),e(" "),t("path",{d:"M16 16h1"},null),e(" ")])}},J$t={name:"StethoscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.172 4.179a2 2 0 0 0 -1.172 1.821v3.5a5.5 5.5 0 0 0 9.856 3.358m1.144 -2.858v-4a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 0 0 10.714 3.712m1.216 -2.798c.046 -.3 .07 -.605 .07 -.914v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tAt={name:"StethoscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 1 0 12 0v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M6 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eAt={name:"StickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sticker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-2 .5a6 6 0 0 1 -6.5 -6.5l.5 -2l8 8"},null),e(" "),t("path",{d:"M20 12a8 8 0 1 1 -8 -8"},null),e(" ")])}},nAt={name:"StormOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M7.037 7.063a7 7 0 0 0 9.907 9.892m1.585 -2.426a7 7 0 0 0 -9.058 -9.059"},null),e(" "),t("path",{d:"M5.369 14.236c-1.605 -3.428 -1.597 -6.673 -1 -9.849"},null),e(" "),t("path",{d:"M18.63 9.76a14.323 14.323 0 0 1 1.368 6.251m-.37 3.608c-.087 .46 -.187 .92 -.295 1.377"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lAt={name:"StormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5.369 14.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236"},null),e(" "),t("path",{d:"M18.63 9.76c1.837 3.928 1.561 7.615 .703 11.236"},null),e(" ")])}},rAt={name:"Stretching2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M6.5 21l3.5 -5"},null),e(" "),t("path",{d:"M5 11l7 -2"},null),e(" "),t("path",{d:"M16 21l-4 -7v-5l7 -4"},null),e(" ")])}},oAt={name:"StretchingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 20l5 -.5l1 -2"},null),e(" "),t("path",{d:"M18 20v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2"},null),e(" ")])}},sAt={name:"StrikethroughIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-strikethrough",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"},null),e(" ")])}},aAt={name:"SubmarineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-submarine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11v6h2l1 -1.5l3 1.5h10a3 3 0 0 0 0 -6h-10h0l-3 1.5l-1 -1.5h-2z"},null),e(" "),t("path",{d:"M17 11l-1 -3h-5l-1 3"},null),e(" "),t("path",{d:"M13 8v-2a1 1 0 0 1 1 -1h1"},null),e(" ")])}},iAt={name:"SubscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},hAt={name:"SubtaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subtask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 0"},null),e(" "),t("path",{d:"M4 5l4 0"},null),e(" "),t("path",{d:"M6 5v11a1 1 0 0 0 1 1h5"},null),e(" "),t("path",{d:"M12 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},dAt={name:"SumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18a1 1 0 0 1 -1 1h-11l6 -7m-3 -7h8a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cAt={name:"SumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v2a1 1 0 0 1 -1 1h-11l6 -7l-6 -7h11a1 1 0 0 1 1 1v2"},null),e(" ")])}},uAt={name:"SunFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pAt={name:"SunHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M6.343 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M6.343 6.343l-1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 6.343l1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 17.657l1.414 1.414"},null),e(" "),t("path",{d:"M4 12h-2"},null),e(" "),t("path",{d:"M12 4v-2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},gAt={name:"SunLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4 12h.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M20 12h.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M6.31 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.71 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.7 17.7l.01 .01"},null),e(" "),t("path",{d:"M6.3 17.7l.01 .01"},null),e(" ")])}},wAt={name:"SunMoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.173 14.83a4 4 0 1 1 5.657 -5.657"},null),e(" "),t("path",{d:"M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" ")])}},vAt={name:"SunOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},fAt={name:"SunWindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.468 10a4 4 0 1 0 -5.466 5.46"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M11 3v1"},null),e(" "),t("path",{d:"M11 20v1"},null),e(" "),t("path",{d:"M4.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M17.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M5.3 17.7l-.7 .7"},null),e(" "),t("path",{d:"M15 13h5a2 2 0 1 0 0 -4"},null),e(" "),t("path",{d:"M12 16h5.714l.253 0a2 2 0 0 1 2.033 2a2 2 0 0 1 -2 2h-.286"},null),e(" ")])}},mAt={name:"SunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},kAt={name:"SunglassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunglasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M4 14l4.5 4.5"},null),e(" "),t("path",{d:"M15 14l4.5 4.5"},null),e(" ")])}},bAt={name:"SunriseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunrise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 9v-6l3 3m-6 0l3 -3"},null),e(" ")])}},MAt={name:"Sunset2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13h1"},null),e(" "),t("path",{d:"M20 13h1"},null),e(" "),t("path",{d:"M5.6 6.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 6.6l-.7 .7"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 17h18"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M16 20h1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" ")])}},xAt={name:"SunsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" ")])}},zAt={name:"SuperscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-superscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},IAt={name:"SvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-svg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8l1.5 8h1l1.5 -8"},null),e(" ")])}},yAt={name:"SwimmingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swimming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 11l4 -2l3.5 3l-1.5 2"},null),e(" "),t("path",{d:"M3 16.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" ")])}},CAt={name:"SwipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.572v2.42a2.01 2.01 0 0 1 -2.009 2.008h-7.981a2.01 2.01 0 0 1 -2.01 -2.009v-7.981a2.01 2.01 0 0 1 2.009 -2.01h2.954"},null),e(" "),t("path",{d:"M9.167 4.511a2.04 2.04 0 0 1 2.496 -1.441l7.826 2.097a2.04 2.04 0 0 1 1.441 2.496l-2.097 7.826a2.04 2.04 0 0 1 -2.496 1.441l-7.827 -2.097a2.04 2.04 0 0 1 -1.441 -2.496l2.098 -7.827z"},null),e(" ")])}},SAt={name:"Switch2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h5l1.67 -2.386m3.66 -5.227l1.67 -2.387h6"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h5l7 10h6"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},$At={name:"Switch3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h2.397a5 5 0 0 0 4.096 -2.133l.177 -.253m3.66 -5.227l.177 -.254a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},AAt={name:"SwitchHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l4 4l-4 4"},null),e(" "),t("path",{d:"M10 7l10 0"},null),e(" "),t("path",{d:"M8 13l-4 4l4 4"},null),e(" "),t("path",{d:"M4 17l9 0"},null),e(" ")])}},BAt={name:"SwitchVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l4 -4l4 4"},null),e(" "),t("path",{d:"M7 4l0 9"},null),e(" "),t("path",{d:"M13 16l4 4l4 -4"},null),e(" "),t("path",{d:"M17 10l0 10"},null),e(" ")])}},HAt={name:"SwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l4 0l0 4"},null),e(" "),t("path",{d:"M14.75 9.25l4.25 -5.25"},null),e(" "),t("path",{d:"M5 19l4 -4"},null),e(" "),t("path",{d:"M15 19l4 0l0 -4"},null),e(" "),t("path",{d:"M5 5l14 14"},null),e(" ")])}},NAt={name:"SwordOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.938 7.937l3.062 -3.937h5v5l-3.928 3.055m-2.259 1.757l-2.813 2.188l-4 4l-3 -3l4 -4l2.19 -2.815"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jAt={name:"SwordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" ")])}},PAt={name:"SwordsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swords",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11z"},null),e(" "),t("path",{d:"M5 13l6 6"},null),e(" "),t("path",{d:"M14.32 17.32l3.68 3.68l3 -3l-3.365 -3.365"},null),e(" "),t("path",{d:"M10 5.5l-2 -2.5h-5v5l3 2.5"},null),e(" ")])}},LAt={name:"TableAliasIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-alias",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12v-7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v10"},null),e(" "),t("path",{d:"M2 17a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" ")])}},DAt={name:"TableDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},OAt={name:"TableExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},FAt={name:"TableFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h4a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-2a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 12v6a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v2a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h2a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RAt={name:"TableHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},TAt={name:"TableImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},EAt={name:"TableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},VAt={name:"TableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h12a2 2 0 0 1 2 2v12m-.585 3.413a1.994 1.994 0 0 1 -1.415 .587h-14a2 2 0 0 1 -2 -2v-14c0 -.55 .223 -1.05 .583 -1.412"},null),e(" "),t("path",{d:"M3 10h7m4 0h7"},null),e(" "),t("path",{d:"M10 3v3m0 4v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_At={name:"TableOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},WAt={name:"TablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},XAt={name:"TableShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qAt={name:"TableShortcutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-shortcut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v11"},null),e(" "),t("path",{d:"M2 22l5 -5"},null),e(" "),t("path",{d:"M7 21.5v-4.5h-4.5"},null),e(" ")])}},YAt={name:"TableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" ")])}},UAt={name:"TagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.792 7.793a1 1 0 0 0 1.414 1.414"},null),e(" "),t("path",{d:"M4.88 4.877a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2 -2l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GAt={name:"TagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z"},null),e(" ")])}},ZAt={name:"TagsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085"},null),e(" "),t("path",{d:"M17.573 18.407l.418 -.418m2 -2l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KAt={name:"TagsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z"},null),e(" "),t("path",{d:"M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" ")])}},QAt={name:"Tallymark1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},JAt={name:"Tallymark2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" ")])}},tBt={name:"Tallymark3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5l0 14"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 5l0 14"},null),e(" ")])}},eBt={name:"Tallymark4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" ")])}},nBt={name:"TallymarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M3 17l18 -10"},null),e(" ")])}},lBt={name:"TankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M6 12l1 -5h5l3 5"},null),e(" "),t("path",{d:"M21 9l-7.8 0"},null),e(" ")])}},rBt={name:"TargetArrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-arrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 0 5 5"},null),e(" "),t("path",{d:"M13 3.055a9 9 0 1 0 7.941 7.945"},null),e(" "),t("path",{d:"M15 6v3h3l3 -3h-3v-3z"},null),e(" "),t("path",{d:"M15 9l-3 3"},null),e(" ")])}},oBt={name:"TargetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.286 11.3a1 1 0 0 0 1.41 1.419"},null),e(" "),t("path",{d:"M8.44 8.49a5 5 0 0 0 7.098 7.044m1.377 -2.611a5 5 0 0 0 -5.846 -5.836"},null),e(" "),t("path",{d:"M5.649 5.623a9 9 0 1 0 12.698 12.758m1.683 -2.313a9 9 0 0 0 -12.076 -12.11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sBt={name:"TargetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},aBt={name:"TeapotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-teapot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.29 3h3.42a2 2 0 0 1 1.988 1.78l1.555 14a2 2 0 0 1 -1.988 2.22h-6.53a2 2 0 0 1 -1.988 -2.22l1.555 -14a2 2 0 0 1 1.988 -1.78z"},null),e(" "),t("path",{d:"M7.47 12.5l-4.257 -5.019a.899 .899 0 0 1 .69 -1.481h13.09a3 3 0 0 1 3.007 3v3c0 1.657 -1.346 3 -3.007 3"},null),e(" "),t("path",{d:"M7 17h10"},null),e(" ")])}},iBt={name:"TelescopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8.238 8.264l-4.183 2.51c-1.02 .614 -1.357 1.898 -.76 2.906l.165 .28c.52 .88 1.624 1.266 2.605 .91l6.457 -2.34m2.907 -1.055l4.878 -1.77a1.023 1.023 0 0 0 .565 -1.455l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-6.016 3.61"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hBt={name:"TelescopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" ")])}},dBt={name:"TemperatureCelsiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-celsius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 9a3 3 0 0 0 -3 -3h-1a3 3 0 0 0 -3 3v6a3 3 0 0 0 3 3h1a3 3 0 0 0 3 -3"},null),e(" ")])}},cBt={name:"TemperatureFahrenheitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-fahrenheit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 12l5 0"},null),e(" "),t("path",{d:"M20 6h-6a1 1 0 0 0 -1 1v11"},null),e(" ")])}},uBt={name:"TemperatureMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" ")])}},pBt={name:"TemperatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v3.5a4 4 0 1 0 5.836 2.33m-1.836 -5.83v-5a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gBt={name:"TemperaturePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" "),t("path",{d:"M19 6l0 6"},null),e(" ")])}},wBt={name:"TemperatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" ")])}},vBt={name:"TemplateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-7m-4 0h-3a1 1 0 0 1 -1 -1v-2c0 -.271 .108 -.517 .283 -.697"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fBt={name:"TemplateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 12l6 0"},null),e(" "),t("path",{d:"M14 16l6 0"},null),e(" "),t("path",{d:"M14 20l6 0"},null),e(" ")])}},mBt={name:"TentOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h5m-2.863 -6.868l-5.137 -9.132l-1.44 2.559m-1.44 2.563l-6.12 10.878h6l4 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kBt={name:"TentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h6l-9 -16l-9 16h6l4 -6"},null),e(" ")])}},bBt={name:"Terminal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},MBt={name:"TerminalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M12 19l7 0"},null),e(" ")])}},xBt={name:"TestPipe2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v15a3 3 0 0 1 -6 0v-15"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M8 3h8"},null),e(" ")])}},zBt={name:"TestPipeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04a803.533 803.533 0 0 0 -4 3.96m-2 2c-1.085 1.085 -3.125 3.14 -6.122 6.164a2.857 2.857 0 0 1 -4.041 -4.04c3.018 -3 5.073 -5.037 6.163 -6.124m2 -2c.872 -.872 2.191 -2.205 3.959 -4"},null),e(" "),t("path",{d:"M7 13h6"},null),e(" "),t("path",{d:"M19 15l1.5 1.6m-.74 3.173a2 2 0 0 1 -2.612 -2.608"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IBt={name:"TestPipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124"},null),e(" "),t("path",{d:"M7 13h8"},null),e(" "),t("path",{d:"M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" ")])}},yBt={name:"TexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1h-6v1"},null),e(" "),t("path",{d:"M6 15v-8"},null),e(" "),t("path",{d:"M21 15l-5 -8"},null),e(" "),t("path",{d:"M16 15l5 -8"},null),e(" "),t("path",{d:"M14 11h-4v8h4"},null),e(" "),t("path",{d:"M10 15h3"},null),e(" ")])}},CBt={name:"TextCaptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-caption",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20h12"},null),e(" ")])}},SBt={name:"TextColorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-color",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-7a3 3 0 0 1 6 0v7"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},$Bt={name:"TextDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},ABt={name:"TextDirectionLtrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-ltr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M17 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" ")])}},BBt={name:"TextDirectionRtlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-rtl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M7 21l-2 -2l2 -2"},null),e(" ")])}},HBt={name:"TextIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},NBt={name:"TextOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5"},null),e(" "),t("path",{d:"M5.5 11.5l5 -5"},null),e(" "),t("path",{d:"M21 12l-9 9"},null),e(" "),t("path",{d:"M21 12v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" ")])}},jBt={name:"TextPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10h-14"},null),e(" "),t("path",{d:"M5 6h14"},null),e(" "),t("path",{d:"M14 14h-9"},null),e(" "),t("path",{d:"M5 18h6"},null),e(" "),t("path",{d:"M18 15v6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" ")])}},PBt={name:"TextRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 16v-7"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},LBt={name:"TextResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M7 5h10"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v10"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" "),t("path",{d:"M12 14v-4"},null),e(" ")])}},DBt={name:"TextSizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-size",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v-2h13v2"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M12 19h-4"},null),e(" "),t("path",{d:"M15 13v-1h6v1"},null),e(" "),t("path",{d:"M18 12v7"},null),e(" "),t("path",{d:"M17 19h2"},null),e(" ")])}},OBt={name:"TextSpellcheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-spellcheck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 15v-7.5a3.5 3.5 0 0 1 7 0v7.5"},null),e(" "),t("path",{d:"M5 10h7"},null),e(" "),t("path",{d:"M10 18l3 3l7 -7"},null),e(" ")])}},FBt={name:"TextWrapDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l10 0"},null),e(" "),t("path",{d:"M4 18l10 0"},null),e(" "),t("path",{d:"M4 12h17l-3 -3m0 6l3 -3"},null),e(" ")])}},RBt={name:"TextWrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 18l5 0"},null),e(" "),t("path",{d:"M4 12h13a3 3 0 0 1 0 6h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},TBt={name:"TextureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-texture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3l-3 3"},null),e(" "),t("path",{d:"M21 18l-3 3"},null),e(" "),t("path",{d:"M11 3l-8 8"},null),e(" "),t("path",{d:"M16 3l-13 13"},null),e(" "),t("path",{d:"M21 3l-18 18"},null),e(" "),t("path",{d:"M21 8l-13 13"},null),e(" "),t("path",{d:"M21 13l-8 8"},null),e(" ")])}},EBt={name:"TheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M20 16v-10a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v10l4 -6c2.667 1.333 5.333 1.333 8 0l4 6z"},null),e(" ")])}},VBt={name:"ThermometerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thermometer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 17l-3 3"},null),e(" ")])}},_Bt={name:"ThumbDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21.008a3 3 0 0 0 2.995 -2.823l.005 -.177v-4h2a3 3 0 0 0 2.98 -2.65l.015 -.173l.005 -.177l-.02 -.196l-1.006 -5.032c-.381 -1.625 -1.502 -2.796 -2.81 -2.78l-.164 .008h-8a1 1 0 0 0 -.993 .884l-.007 .116l.001 9.536a1 1 0 0 0 .5 .866a2.998 2.998 0 0 1 1.492 2.396l.007 .202v1a3 3 0 0 0 3 3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 14.008a1 1 0 0 0 .993 -.883l.007 -.117v-9a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a2 2 0 0 0 -1.995 1.852l-.005 .15v7a2 2 0 0 0 1.85 1.994l.15 .005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WBt={name:"ThumbDownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-6m-3 -3a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 1 0 4 0v-3m2 -2h1a2 2 0 0 0 2 -2l-1 -5c-.295 -1.26 -1.11 -2.076 -2 -2h-7c-.57 0 -1.102 .159 -1.556 .434"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XBt={name:"ThumbDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3"},null),e(" ")])}},qBt={name:"ThumbUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a3 3 0 0 1 2.995 2.824l.005 .176v4h2a3 3 0 0 1 2.98 2.65l.015 .174l.005 .176l-.02 .196l-1.006 5.032c-.381 1.626 -1.502 2.796 -2.81 2.78l-.164 -.008h-8a1 1 0 0 1 -.993 -.883l-.007 -.117l.001 -9.536a1 1 0 0 1 .5 -.865a2.998 2.998 0 0 0 1.492 -2.397l.007 -.202v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 10a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YBt={name:"ThumbUpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a3.987 3.987 0 0 0 2.828 -1.172m1.172 -2.828v-1a2 2 0 1 1 4 0v5h3a2 2 0 0 1 2 2c-.222 1.112 -.39 1.947 -.5 2.503m-.758 3.244c-.392 .823 -1.044 1.312 -1.742 1.253h-7a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UBt={name:"ThumbUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3"},null),e(" ")])}},GBt={name:"TicTacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tic-tac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M4 16l4 4"},null),e(" "),t("path",{d:"M4 20l4 -4"},null),e(" "),t("path",{d:"M16 4l4 4"},null),e(" "),t("path",{d:"M16 8l4 -4"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},ZBt={name:"TicketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5v2"},null),e(" "),t("path",{d:"M15 17v2"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v3a2 2 0 1 0 0 4v3m-2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 1 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KBt={name:"TicketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5l0 2"},null),e(" "),t("path",{d:"M15 11l0 2"},null),e(" "),t("path",{d:"M15 17l0 2"},null),e(" "),t("path",{d:"M5 5h14a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 0 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" ")])}},QBt={name:"TieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z"},null),e(" "),t("path",{d:"M10.5 7h3l5 5.5"},null),e(" ")])}},JBt={name:"TildeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilde",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12c0 -1.657 1.592 -3 3.556 -3c1.963 0 3.11 1.5 4.444 3c1.333 1.5 2.48 3 4.444 3s3.556 -1.343 3.556 -3"},null),e(" ")])}},tHt={name:"TiltShiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -.577 .263"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M10.57 10.602a2 2 0 0 0 2.862 2.795"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eHt={name:"TiltShiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},nHt={name:"TimelineEventExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M12 11v.01"},null),e(" ")])}},lHt={name:"TimelineEventMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" ")])}},rHt={name:"TimelineEventPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" ")])}},oHt={name:"TimelineEventTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M9 9h3"},null),e(" ")])}},sHt={name:"TimelineEventXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M13.5 9.5l-3 -3"},null),e(" "),t("path",{d:"M10.5 9.5l3 -3"},null),e(" ")])}},aHt={name:"TimelineEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" ")])}},iHt={name:"TimelineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16l6 -7l5 5l5 -6"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hHt={name:"TirIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tir",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 7 0 0 0 -5 -7h-1l1.5 7h4.5"},null),e(" "),t("path",{d:"M12 18v-13h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" ")])}},dHt={name:"ToggleLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},cHt={name:"ToggleRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},uHt={name:"ToiletPaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.27 4.28c-.768 1.27 -1.27 3.359 -1.27 5.72c0 3.866 1.343 7 3 7s3 -3.134 3 -7c0 -.34 -.01 -.672 -.03 -1"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M7 3h11"},null),e(" "),t("path",{d:"M21 10v7m-1.513 2.496l-1.487 -.496l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pHt={name:"ToiletPaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10m-3 0a3 7 0 1 0 6 0a3 7 0 1 0 -6 0"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" "),t("path",{d:"M21 10v10l-3 -1l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" ")])}},gHt={name:"TomlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toml",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1.499 8h3"},null),e(" "),t("path",{d:"M2.999 8v8"},null),e(" "),t("path",{d:"M8.5 8a1.5 1.5 0 0 1 1.5 1.5v5a1.5 1.5 0 0 1 -3 0v-5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M20 8v8h2.5"},null),e(" ")])}},wHt={name:"ToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h3v-3l-3.5 -3.5a6 6 0 0 1 8 8l6 6a2 2 0 0 1 -3 3l-6 -6a6 6 0 0 1 -8 -8l3.5 3.5"},null),e(" ")])}},vHt={name:"ToolsKitchen2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941"},null),e(" "),t("path",{d:"M19 19v2h-1v-3"},null),e(" "),t("path",{d:"M8 8v13"},null),e(" "),t("path",{d:"M5 5v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fHt={name:"ToolsKitchen2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-10 -14v17m-3 -17v3a3 3 0 1 0 6 0v-3"},null),e(" ")])}},mHt={name:"ToolsKitchenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h5l-.5 4.5m-.4 3.595l-.1 .905h-6l-.875 -7.874"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M15.225 11.216c.42 -2.518 1.589 -5.177 4.775 -8.216v12h-1"},null),e(" "),t("path",{d:"M20 15v1m0 4v1h-1v-2"},null),e(" "),t("path",{d:"M8 12v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kHt={name:"ToolsKitchenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h8l-1 9h-6z"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M20 3v12h-5c-.023 -3.681 .184 -7.406 5 -12z"},null),e(" "),t("path",{d:"M20 15v6h-1v-3"},null),e(" "),t("path",{d:"M8 12l0 6"},null),e(" ")])}},bHt={name:"ToolsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 -4a2.828 2.828 0 1 0 -4 -4l-4 4m-2 2l-7 7v4h4l7 -7"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5m-2 2l-2 2l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5m-2 2l-2 2l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MHt={name:"ToolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h4l13 -13a1.5 1.5 0 0 0 -4 -4l-13 13v4"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5l-4 4l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5l-4 4l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" ")])}},xHt={name:"TooltipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tooltip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 13l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z"},null),e(" ")])}},zHt={name:"TopologyBusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M2 16h20"},null),e(" "),t("path",{d:"M4 12v4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M20 12v4"},null),e(" ")])}},IHt={name:"TopologyComplexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-complex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},yHt={name:"TopologyFullHierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" "),t("path",{d:"M10.5 13.5l-3 3"},null),e(" ")])}},CHt={name:"TopologyFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},SHt={name:"TopologyRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M18 16l-5 -8"},null),e(" "),t("path",{d:"M11 8l-5 8"},null),e(" ")])}},$Ht={name:"TopologyRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},AHt={name:"TopologyRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" ")])}},BHt={name:"TopologyStar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},HHt={name:"TopologyStar3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" ")])}},NHt={name:"TopologyStarRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M5.5 10.5l5 -5"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M18.5 13.5l-5 5"},null),e(" "),t("path",{d:"M10.5 18.5l-5 -5"},null),e(" ")])}},jHt={name:"TopologyStarRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" "),t("path",{d:"M17 17l2 -3"},null),e(" "),t("path",{d:"M19 10l-2 -3"},null),e(" "),t("path",{d:"M7 7l-2 3"},null),e(" "),t("path",{d:"M5 14l2 3"},null),e(" ")])}},PHt={name:"TopologyStarRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},LHt={name:"TopologyStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M7.5 16.5l3 -3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" ")])}},DHt={name:"ToriiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-torii",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4c5.333 1.333 10.667 1.333 16 0"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M18 4.5v15.5"},null),e(" "),t("path",{d:"M6 4.5v15.5"},null),e(" ")])}},OHt={name:"TornadoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tornado",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 4l-18 0"},null),e(" "),t("path",{d:"M13 16l-6 0"},null),e(" "),t("path",{d:"M11 20l4 0"},null),e(" "),t("path",{d:"M6 8l14 0"},null),e(" "),t("path",{d:"M4 12l12 0"},null),e(" ")])}},FHt={name:"TournamentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tournament",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12h3a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M6 4h7a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M14 10h4"},null),e(" ")])}},RHt={name:"TowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},THt={name:"TowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" ")])}},EHt={name:"TrackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-track",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7"},null),e(" ")])}},VHt={name:"TractorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tractor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 15l0 .01"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.5 17l6.5 0"},null),e(" "),t("path",{d:"M20 15.2v-4.2a1 1 0 0 0 -1 -1h-6l-2 -5h-6v6.5"},null),e(" "),t("path",{d:"M18 5h-1a1 1 0 0 0 -1 1v4"},null),e(" ")])}},_Ht={name:"TrademarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trademark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9h5m-2.5 0v6"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},WHt={name:"TrafficConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M9.4 10h.6m4 0h.6"},null),e(" "),t("path",{d:"M7.8 15h7.2"},null),e(" "),t("path",{d:"M6 20l3.5 -10.5"},null),e(" "),t("path",{d:"M10.5 6.5l.5 -1.5h2l2 6m2 6l1 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XHt={name:"TrafficConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9.4 10l5.2 0"},null),e(" "),t("path",{d:"M7.8 15l8.4 0"},null),e(" "),t("path",{d:"M6 20l5 -15h2l5 15"},null),e(" ")])}},qHt={name:"TrafficLightsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4c.912 -1.219 2.36 -2 4 -2a5 5 0 0 1 5 5v6m0 4a5 5 0 0 1 -10 0v-10"},null),e(" "),t("path",{d:"M12 8a1 1 0 1 0 -1 -1"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 1.418 1.41"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YHt={name:"TrafficLightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 2m0 5a5 5 0 0 1 5 -5h0a5 5 0 0 1 5 5v10a5 5 0 0 1 -5 5h0a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},UHt={name:"TrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-train",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 13c0 -3.87 -3.37 -7 -10 -7h-8"},null),e(" "),t("path",{d:"M3 15h16a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M3 6v5h17.5"},null),e(" "),t("path",{d:"M3 10l0 4"},null),e(" "),t("path",{d:"M8 11l0 -5"},null),e(" "),t("path",{d:"M13 11l0 -4.5"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" ")])}},GHt={name:"TransferInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v3h16v-14l-8 -4l-8 4v3"},null),e(" "),t("path",{d:"M4 14h9"},null),e(" "),t("path",{d:"M10 11l3 3l-3 3"},null),e(" ")])}},ZHt={name:"TransferOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v2h16v-14l-8 -4l-8 4v2"},null),e(" "),t("path",{d:"M13 14h-9"},null),e(" "),t("path",{d:"M7 11l-3 3l3 3"},null),e(" ")])}},KHt={name:"TransformFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QHt={name:"TransformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M15 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},JHt={name:"TransitionBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 9v8"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},tNt={name:"TransitionLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M21 6v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0z"},null),e(" "),t("path",{d:"M15 12h-8"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" ")])}},eNt={name:"TransitionRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z"},null),e(" "),t("path",{d:"M9 12h8"},null),e(" "),t("path",{d:"M14 15l3 -3l-3 -3"},null),e(" ")])}},nNt={name:"TransitionTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M6 21h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M12 15v-8"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" ")])}},lNt={name:"TrashFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rNt={name:"TrashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923"},null),e(" "),t("path",{d:"M18.384 14.373l.616 -7.373"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},oNt={name:"TrashXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16zm-9.489 5.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sNt={name:"TrashXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h16"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},aNt={name:"TrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 11l0 6"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},iNt={name:"TreadmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-treadmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 14l4 1l.5 -.5"},null),e(" "),t("path",{d:"M12 18v-3l-3 -2.923l.75 -5.077"},null),e(" "),t("path",{d:"M6 10v-2l4 -1l2.5 2.5l2.5 .5"},null),e(" "),t("path",{d:"M21 22a1 1 0 0 0 -1 -1h-16a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M18 21l1 -11l2 -1"},null),e(" ")])}},hNt={name:"TreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13l-2 -2"},null),e(" "),t("path",{d:"M12 12l2 -2"},null),e(" "),t("path",{d:"M12 21v-13"},null),e(" "),t("path",{d:"M9.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},dNt={name:"TreesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trees",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5l3 3l-2 1l4 4l-3 1l4 4h-9"},null),e(" "),t("path",{d:"M15 21l0 -3"},null),e(" "),t("path",{d:"M8 13l-2 -2"},null),e(" "),t("path",{d:"M8 12l2 -2"},null),e(" "),t("path",{d:"M8 21v-13"},null),e(" "),t("path",{d:"M5.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},cNt={name:"TrekkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trekking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l2 -4"},null),e(" "),t("path",{d:"M13 21v-4l-3 -3l1 -6l3 4l3 2"},null),e(" "),t("path",{d:"M10 14l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2"},null),e(" "),t("path",{d:"M17 12v9"},null),e(" "),t("path",{d:"M16 20h2"},null),e(" ")])}},uNt={name:"TrendingDown2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h5l7 10h6"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},pNt={name:"TrendingDown3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},gNt={name:"TrendingDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 6l4 -4l8 8"},null),e(" "),t("path",{d:"M21 10l0 7l-7 0"},null),e(" ")])}},wNt={name:"TrendingUp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h5l7 -10h6"},null),e(" ")])}},vNt={name:"TrendingUp3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" ")])}},fNt={name:"TrendingUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l6 -6l4 4l8 -8"},null),e(" "),t("path",{d:"M14 7l7 0l0 7"},null),e(" ")])}},mNt={name:"TriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.99 1.968c1.023 0 1.97 .521 2.512 1.359l.103 .172l7.1 12.25l.062 .126a3 3 0 0 1 -2.568 4.117l-.199 .008h-14l-.049 -.003l-.112 .002a3 3 0 0 1 -2.268 -1.226l-.109 -.16a3 3 0 0 1 -.32 -2.545l.072 -.194l.06 -.125l7.092 -12.233a3 3 0 0 1 2.625 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kNt={name:"TriangleInvertedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.007 3a3 3 0 0 1 2.828 3.94l-.068 .185l-.062 .126l-7.09 12.233a3 3 0 0 1 -5.137 .19l-.103 -.173l-7.1 -12.25l-.061 -.125a3 3 0 0 1 2.625 -4.125l.058 -.001l.06 .002l.043 -.002h14.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bNt={name:"TriangleInvertedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 20.043l-8.422 -14.06a1.989 1.989 0 0 1 1.7 -2.983h16.845a1.989 1.989 0 0 1 1.7 2.983l-8.422 14.06a1.989 1.989 0 0 1 -3.4 0z"},null),e(" ")])}},MNt={name:"TriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -2.014a2 2 0 0 0 -.146 -.736l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.825 1.424m-1.467 2.53l-4.808 8.296a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xNt={name:"TriangleSquareCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-square-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l-4 7h8z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},zNt={name:"TriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},INt={name:"TrianglesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.974 21h8.052a.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a.973 .973 0 0 0 -1.622 0l-4.025 6.048a.977 .977 0 0 0 .81 1.517z"},null),e(" "),t("path",{d:"M4.98 16h14.04c.542 0 .98 -.443 .98 -.989a1 1 0 0 0 -.156 -.534l-7.02 -11.023a.974 .974 0 0 0 -1.648 0l-7.02 11.023a1 1 0 0 0 .294 1.366a.973 .973 0 0 0 .53 .157z"},null),e(" ")])}},yNt={name:"TridentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trident",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2"},null),e(" "),t("path",{d:"M12 21v-18l-2 2m4 0l-2 -2"},null),e(" ")])}},CNt={name:"TrolleyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trolley",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 16l3 2"},null),e(" "),t("path",{d:"M12 17l8 -12"},null),e(" "),t("path",{d:"M17 10l2 1"},null),e(" "),t("path",{d:"M9.592 4.695l3.306 2.104a1.3 1.3 0 0 1 .396 1.8l-3.094 4.811a1.3 1.3 0 0 1 -1.792 .394l-3.306 -2.104a1.3 1.3 0 0 1 -.396 -1.8l3.094 -4.81a1.3 1.3 0 0 1 1.792 -.394z"},null),e(" ")])}},SNt={name:"TrophyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2.17a3 3 0 1 1 0 5.659v.171a6.002 6.002 0 0 1 -5 5.917v2.083h3a1 1 0 0 1 .117 1.993l-.117 .007h-8a1 1 0 0 1 -.117 -1.993l.117 -.007h3v-2.083a6.002 6.002 0 0 1 -4.996 -5.692l-.004 -.225v-.171a3 3 0 0 1 -3.996 -2.653l-.003 -.176l.005 -.176a3 3 0 0 1 3.995 -2.654l-.001 -2.17a1 1 0 0 1 1 -1h10zm-12 5a1 1 0 1 0 0 2a1 1 0 0 0 0 -2zm14 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$Nt={name:"TrophyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M17 4v8c0 .31 -.028 .612 -.082 .905m-1.384 2.632a5 5 0 0 1 -8.534 -3.537v-5"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ANt={name:"TrophyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" "),t("path",{d:"M7 4l10 0"},null),e(" "),t("path",{d:"M17 4v8a5 5 0 0 1 -10 0v-8"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},BNt={name:"TrowelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trowel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.42 9.058l-5.362 5.363a1.978 1.978 0 0 1 -3.275 -.773l-2.682 -8.044a1.978 1.978 0 0 1 2.502 -2.502l8.045 2.682a1.978 1.978 0 0 1 .773 3.274z"},null),e(" "),t("path",{d:"M10 10l6.5 6.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" ")])}},HNt={name:"TruckDeliveryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-delivery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-4m-1 -8h11v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M3 9l4 0"},null),e(" ")])}},NNt={name:"TruckLoadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-loading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15"},null),e(" "),t("path",{d:"M9 6m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},jNt={name:"TruckOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.585 15.586a2 2 0 0 0 2.826 2.831"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h1m3.96 0h4.04v4m0 4v4m-4 0h6m6 0v-6h-6m-2 -5h5l3 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PNt={name:"TruckReturnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-return",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v6h-5l2 2m0 -4l-2 2"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" "),t("path",{d:"M13 6h5l3 5v6h-2"},null),e(" ")])}},LNt={name:"TruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" ")])}},DNt={name:"TxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-txt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},ONt={name:"TypographyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h3"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M6.9 15h6.9"},null),e(" "),t("path",{d:"M13 13l3 7"},null),e(" "),t("path",{d:"M5 20l4.09 -10.906"},null),e(" "),t("path",{d:"M10.181 6.183l.819 -2.183h2l3.904 8.924"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FNt={name:"TypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l3 0"},null),e(" "),t("path",{d:"M14 20l7 0"},null),e(" "),t("path",{d:"M6.9 15l6.9 0"},null),e(" "),t("path",{d:"M10.2 6.3l5.8 13.7"},null),e(" "),t("path",{d:"M5 20l6 -16l2 0l7 16"},null),e(" ")])}},RNt={name:"UfoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M14.69 10.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TNt={name:"UfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M7 9c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" ")])}},ENt={name:"UmbrellaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 9 9a1 1 0 0 1 -.883 .993l-.117 .007h-7v5a1 1 0 0 0 1.993 .117l.007 -.117a1 1 0 0 1 2 0a3 3 0 0 1 -5.995 .176l-.005 -.176v-5h-7a1 1 0 0 1 -.993 -.883l-.007 -.117a9 9 0 0 1 9 -9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VNt={name:"UmbrellaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8c0 -2.209 .895 -4.208 2.342 -5.656m2.382 -1.645a8 8 0 0 1 11.276 7.301l-4 0"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Nt={name:"UmbrellaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12a8 8 0 0 1 16 0z"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 0 4 0"},null),e(" ")])}},WNt={name:"UnderlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-underline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},XNt={name:"UnlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-unlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 22v-2"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M2 7h2"},null),e(" "),t("path",{d:"M7 2v2"},null),e(" ")])}},qNt={name:"UploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 9l5 -5l5 5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},YNt={name:"UrgentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-urgent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-4a4 4 0 0 1 8 0v4"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M6 16m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" ")])}},UNt={name:"UsbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-usb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 17v-11.5"},null),e(" "),t("path",{d:"M7 10v3l5 3"},null),e(" "),t("path",{d:"M12 14.5l5 -2v-2.5"},null),e(" "),t("path",{d:"M16 10h2v-2h-2z"},null),e(" "),t("path",{d:"M7 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 5.5h4l-2 -2.5z"},null),e(" ")])}},GNt={name:"UserBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.267 0 .529 .026 .781 .076"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ZNt={name:"UserCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},KNt={name:"UserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},QNt={name:"UserCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855"},null),e(" ")])}},JNt={name:"UserCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},tjt={name:"UserCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},ejt={name:"UserDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},njt={name:"UserDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.342 0 .674 .043 .99 .124"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ljt={name:"UserEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},rjt={name:"UserExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.008 .128"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ojt={name:"UserHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sjt={name:"UserMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.009 .128"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ajt={name:"UserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.189a4.01 4.01 0 0 0 2.616 2.627m3.507 -.545a4 4 0 1 0 -5.59 -5.552"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.412 0 .81 .062 1.183 .178m2.633 2.618c.12 .38 .184 .785 .184 1.204v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ijt={name:"UserPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},hjt={name:"UserPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},djt={name:"UserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" ")])}},cjt={name:"UserQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ujt={name:"UserSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h1.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},pjt={name:"UserShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},gjt={name:"UserShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" ")])}},wjt={name:"UserStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},vjt={name:"UserUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},fjt={name:"UserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},mjt={name:"UserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" ")])}},kjt={name:"UsersGroupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-group",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M8 21v-1a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M17 10h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M5 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M3 13v-1a2 2 0 0 1 2 -2h2"},null),e(" ")])}},bjt={name:"UsersMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.948 0 1.818 .33 2.504 .88"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Mjt={name:"UsersPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.96 0 1.84 .338 2.53 .901"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},xjt={name:"UsersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"},null),e(" ")])}},zjt={name:"UvIndexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-uv-index",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M12 4v-1"},null),e(" "),t("path",{d:"M13 16l2 5h1l2 -5"},null),e(" "),t("path",{d:"M6 16v3a2 2 0 1 0 4 0v-3"},null),e(" ")])}},Ijt={name:"UxCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ux-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10v2a2 2 0 1 0 4 0v-2"},null),e(" "),t("path",{d:"M14 10l3 4"},null),e(" "),t("path",{d:"M14 14l3 -4"},null),e(" ")])}},yjt={name:"VaccineBottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4"},null),e(" "),t("path",{d:"M8.7 8.705a1.806 1.806 0 0 1 -.2 .045c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m0 -4v-2.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cjt={name:"VaccineBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" ")])}},Sjt={name:"VaccineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-.5 .5m-2 2l-4 4h-4v-4l4 -4m2 -2l.5 -.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$jt={name:"VaccineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-6.5 6.5h-4v-4l6.5 -6.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M10.5 9.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" ")])}},Ajt={name:"VacuumCleanerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vacuum-cleaner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M14 9a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},Bjt={name:"VariableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.775 3.55 2.29 7.102 1.544 11.01m-11.544 -6.01h1c1 0 1 1 2.016 3.527c.782 1.966 .943 3 1.478 3.343"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hjt={name:"VariableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.675 4.68c-2.17 4.776 -2.062 9.592 .325 15.32"},null),e(" "),t("path",{d:"M19 4c1.959 3.917 2.383 7.834 1.272 12.232m-.983 3.051c-.093 .238 -.189 .477 -.289 .717"},null),e(" "),t("path",{d:"M11.696 11.696c.095 .257 .2 .533 .32 .831c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5m2.022 -2.514c.629 -.582 1.304 -.986 1.978 -.986"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Njt={name:"VariablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.38 2.76 2 5.52 1.855 8.448m-11.855 -3.448h1c1 0 1 1 2.016 3.527c.785 1.972 .944 3.008 1.483 3.346"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jjt={name:"VariableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c2.5 5 2.5 10 0 16m-10 -11h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" ")])}},Pjt={name:"VectorBezier2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 5l7 0"},null),e(" "),t("path",{d:"M10 19l7 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 5.5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5"},null),e(" ")])}},Ljt={name:"VectorBezierArcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-arc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},Djt={name:"VectorBezierCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M19 14a5 5 0 0 1 -5 5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},Ojt={name:"VectorBezierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 8.5a6 6 0 0 0 -5 5.5"},null),e(" "),t("path",{d:"M14 8.5a6 6 0 0 1 5 5.5"},null),e(" "),t("path",{d:"M10 8l-6 0"},null),e(" "),t("path",{d:"M20 8l-6 0"},null),e(" "),t("path",{d:"M3 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Fjt={name:"VectorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.68 6.733a1 1 0 0 1 -.68 .267h-2a1 1 0 0 1 -1 -1v-2c0 -.276 .112 -.527 .293 -.708"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.72 20.693a1 1 0 0 1 -.72 .307h-2a1 1 0 0 1 -1 -1v-2c0 -.282 .116 -.536 .304 -.718"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rjt={name:"VectorSplineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-spline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 5c-6.627 0 -12 5.373 -12 12"},null),e(" ")])}},Tjt={name:"VectorTriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.705 20.709a1 1 0 0 1 -.705 .291h-2a1 1 0 0 1 -1 -1v-2c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M6.5 17.1l3.749 -6.823"},null),e(" "),t("path",{d:"M13.158 9.197l-.658 -1.197"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ejt={name:"VectorTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6.5 17.1l5 -9.1"},null),e(" "),t("path",{d:"M17.5 17.1l-5 -9.1"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},Vjt={name:"VectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},_jt={name:"VenusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-venus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M9 18l6 0"},null),e(" ")])}},Wjt={name:"VersionsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 1 .993 .883l.007 .117v10a1 1 0 0 1 -1.993 .117l-.007 -.117v-10a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .993 .883l.007 .117v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xjt={name:"VersionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.184 6.162a2 2 0 0 1 1.816 -1.162h6a2 2 0 0 1 2 2v9m-1.185 2.827a1.993 1.993 0 0 1 -.815 .173h-6a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qjt={name:"VersionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7l0 10"},null),e(" "),t("path",{d:"M4 8l0 8"},null),e(" ")])}},Yjt={name:"VideoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" ")])}},Ujt={name:"VideoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 11v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946"},null),e(" "),t("path",{d:"M10 6h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" ")])}},Gjt={name:"VideoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" "),t("path",{d:"M9 10l0 4"},null),e(" ")])}},Zjt={name:"VideoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Kjt={name:"View360OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.335 8.388a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M8.32 8.349c-3.136 .625 -5.32 2.025 -5.32 3.651c0 2.21 4.03 4 9 4c1.286 0 2.51 -.12 3.616 -.336m3.059 -.98c1.445 -.711 2.325 -1.653 2.325 -2.684c0 -2.21 -4.03 -4 -9 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qjt={name:"View360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-4 0a4 9 0 1 0 8 0a4 9 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12c0 2.21 4.03 4 9 4s9 -1.79 9 -4s-4.03 -4 -9 -4s-9 1.79 -9 4z"},null),e(" ")])}},Jjt={name:"ViewfinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 21v-3"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M21 12h-3"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tPt={name:"ViewfinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 4"},null),e(" "),t("path",{d:"M12 21l0 -3"},null),e(" "),t("path",{d:"M3 12l4 0"},null),e(" "),t("path",{d:"M21 12l-3 0"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" ")])}},ePt={name:"ViewportNarrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-narrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M21 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" ")])}},nPt={name:"ViewportWideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-wide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M14 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 6v-3h18v3"},null),e(" "),t("path",{d:"M3 18v3h18v-3"},null),e(" ")])}},lPt={name:"VinylIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vinyl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3.937a9 9 0 1 0 5 8.063"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4l-3.5 10l-2.5 2"},null),e(" ")])}},rPt={name:"VipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h2m4 0h12"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M16 12v-3h2a2 2 0 1 1 0 4h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oPt={name:"VipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M3 19h18"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M16 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" ")])}},sPt={name:"VirusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.469 8.46a5 5 0 0 0 7.058 7.084"},null),e(" "),t("path",{d:"M16.913 12.936a5 5 0 0 0 -5.826 -5.853"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M18.364 18.363l-.707 .707"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M5.636 5.637l-.707 .707"},null),e(" ")])}},aPt={name:"VirusSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 19.5l2.5 2.5"},null),e(" ")])}},iPt={name:"VirusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M15.535 15.536l2.829 2.828"},null),e(" "),t("path",{d:"M19.071 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" ")])}},hPt={name:"VocabularyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dPt={name:"VocabularyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M7 7h1"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M16 15h1"},null),e(" ")])}},cPt={name:"VolcanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volcano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8v-1a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M4 20l3.472 -7.812a2 2 0 0 1 1.828 -1.188h5.4a2 2 0 0 1 1.828 1.188l3.472 7.812"},null),e(" "),t("path",{d:"M6.192 15.064a2.14 2.14 0 0 1 .475 -.064c.527 -.009 1.026 .178 1.333 .5c.307 .32 .806 .507 1.333 .5c.527 .007 1.026 -.18 1.334 -.5c.307 -.322 .806 -.509 1.333 -.5c.527 -.009 1.026 .178 1.333 .5c.308 .32 .807 .507 1.334 .5c.527 .007 1.026 -.18 1.333 -.5c.307 -.322 .806 -.509 1.333 -.5c.161 .003 .32 .025 .472 .064"},null),e(" "),t("path",{d:"M12 8v-4"},null),e(" ")])}},uPt={name:"Volume2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},pPt={name:"Volume3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" "),t("path",{d:"M16 10l4 4m0 -4l-4 4"},null),e(" ")])}},gPt={name:"VolumeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615"},null),e(" "),t("path",{d:"M9.069 5.054l.431 -.554a.8 .8 0 0 1 1.5 .5v2m0 4v8a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wPt={name:"VolumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 0 14"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},vPt={name:"WalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-walk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l3 -4"},null),e(" "),t("path",{d:"M16 21l-2 -4l-3 -3l1 -6"},null),e(" "),t("path",{d:"M6 12l2 -3l4 -1l3 3l3 1"},null),e(" ")])}},fPt={name:"WallOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.55 .222 -1.047 .58 -1.409"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M20 12h-4m-4 0h-8"},null),e(" "),t("path",{d:"M4 16h12"},null),e(" "),t("path",{d:"M9 4v1"},null),e(" "),t("path",{d:"M14 8v2"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mPt={name:"WallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M20 12h-16"},null),e(" "),t("path",{d:"M4 16h16"},null),e(" "),t("path",{d:"M9 4v4"},null),e(" "),t("path",{d:"M14 8v4"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M16 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" ")])}},kPt={name:"WalletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-8m-3.413 .584a2 2 0 0 0 1.413 3.416h2m4 0h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M19 19a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M16 12h4v4m-4 0a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bPt={name:"WalletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-10a2 2 0 0 0 0 4h12a1 1 0 0 1 1 1v3m0 4v3a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M20 12v4h-4a2 2 0 0 1 0 -4h4"},null),e(" ")])}},MPt={name:"WallpaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h8a2 2 0 0 1 2 2v8m-.58 3.409a2 2 0 0 1 -1.42 .591h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-10m-3.427 -3.402c-.353 .362 -.573 .856 -.573 1.402v12"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xPt={name:"WallpaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-12a2 2 0 1 0 -4 0v12"},null),e(" ")])}},zPt={name:"WandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M8.433 4.395c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589"},null),e(" "),t("path",{d:"M18.418 14.41c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IPt={name:"WandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" ")])}},yPt={name:"WashDry1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},CPt={name:"WashDry2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" ")])}},SPt={name:"WashDry3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" ")])}},$Pt={name:"WashDryAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8"},null),e(" "),t("path",{d:"M15 13h-6"},null),e(" ")])}},APt={name:"WashDryDipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-dip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" ")])}},BPt={name:"WashDryFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" ")])}},HPt={name:"WashDryFlatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-flat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" ")])}},NPt={name:"WashDryHangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-hang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M4 4.01c5.333 5.323 10.667 5.32 16 -.01"},null),e(" ")])}},jPt={name:"WashDryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PPt={name:"WashDryPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" ")])}},LPt={name:"WashDryShadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-shade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 11l8 -8"},null),e(" "),t("path",{d:"M3 17l14 -14"},null),e(" ")])}},DPt={name:"WashDryWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 8l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8"},null),e(" ")])}},OPt={name:"WashDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},FPt={name:"WashDrycleanOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RPt={name:"WashDrycleanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},TPt={name:"WashEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h5.306m8.162 -6.972l.838 -5.028"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},EPt={name:"WashGentleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-gentle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 3l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},VPt={name:"WashHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.426 -.296 .777 -.5 1.5 -.5h1"},null),e(" "),t("path",{d:"M16 8l.615 .034c.552 .067 1.046 .23 1.385 .466c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M14 10.5l.586 .578a1.516 1.516 0 0 0 2 0c.476 -.433 .55 -1.112 .176 -1.622l-1.762 -2.456c-.37 -.506 -1.331 -1 -2 -1h-3.117a1 1 0 0 0 -.992 .876l-.499 3.986a3.857 3.857 0 0 0 2.608 4.138a2.28 2.28 0 0 0 3 -2.162v-2.338z"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},_Pt={name:"WashMachineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-machine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M11 6h.01"},null),e(" "),t("path",{d:"M14 6h2"},null),e(" "),t("path",{d:"M8 14c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},WPt={name:"WashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 0 .339 -.015 .503 -.035"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XPt={name:"WashPressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-press",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 5l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 20h14"},null),e(" ")])}},qPt={name:"WashTemperature1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" ")])}},YPt={name:"WashTemperature2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 13h.01"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" ")])}},UPt={name:"WashTemperature3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M9 13h.01"},null),e(" ")])}},GPt={name:"WashTemperature4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},ZPt={name:"WashTemperature5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},KPt={name:"WashTemperature6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},QPt={name:"WashTumbleDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},JPt={name:"WashTumbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M17.744 13.74a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tLt={name:"WashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},eLt={name:"WaterpoloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-waterpolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 8l3 4l4.5 1l7.5 -1"},null),e(" "),t("path",{d:"M3 18.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" "),t("path",{d:"M12 16l.5 -3"},null),e(" "),t("path",{d:"M6.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},nLt={name:"WaveSawToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-saw-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5l4 8v-16l4 8h5"},null),e(" ")])}},lLt={name:"WaveSineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-sine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2"},null),e(" ")])}},rLt={name:"WaveSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5v8h4v-16h4v8h5"},null),e(" ")])}},oLt={name:"WebhookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 0 0 4.763 -.675m1.171 -2.827a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M16 8a4 4 0 0 0 -6.824 -2.833m-1.176 2.833c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sLt={name:"WebhookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" ")])}},aLt={name:"WeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-weight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.835 9h10.33a1 1 0 0 1 .984 .821l1.637 9a1 1 0 0 1 -.984 1.179h-13.604a1 1 0 0 1 -.984 -1.179l1.637 -9a1 1 0 0 1 .984 -.821z"},null),e(" ")])}},iLt={name:"WheelchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17.582 17.59a2 2 0 0 0 2.833 2.824"},null),e(" "),t("path",{d:"M14 14h-1.4"},null),e(" "),t("path",{d:"M6 6v5"},null),e(" "),t("path",{d:"M6 8h2m4 0h5"},null),e(" "),t("path",{d:"M15 8v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hLt={name:"WheelchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17a3 3 0 0 0 -3 -3h-3.4"},null),e(" "),t("path",{d:"M3 3h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M6 8h11"},null),e(" "),t("path",{d:"M15 8v6"},null),e(" ")])}},dLt={name:"WhirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-whirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5"},null),e(" "),t("path",{d:"M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6"},null),e(" "),t("path",{d:"M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5"},null),e(" "),t("path",{d:"M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6"},null),e(" ")])}},cLt={name:"Wifi0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" ")])}},uLt={name:"Wifi1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" ")])}},pLt={name:"Wifi2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" ")])}},gLt={name:"WifiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a7.963 7.963 0 0 1 3.864 -2.14m4.163 .155a7.965 7.965 0 0 1 3.287 2"},null),e(" "),t("path",{d:"M3.515 9.515a12 12 0 0 1 3.544 -2.455m3.101 -.92a12 12 0 0 1 10.325 3.374"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wLt={name:"WifiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" "),t("path",{d:"M3.515 9.515c4.686 -4.687 12.284 -4.687 17 0"},null),e(" ")])}},vLt={name:"WindOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h3m4 0h1.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h9"},null),e(" "),t("path",{d:"M16 12h2.5a2.5 2.5 0 0 1 1.801 4.282"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fLt={name:"WindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h8.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h15.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" ")])}},mLt={name:"WindmillFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.292 0 6 2.435 6 5.5c0 1.337 -.515 2.554 -1.369 3.5h4.369a1 1 0 0 1 1 1c0 3.292 -2.435 6 -5.5 6c-1.336 0 -2.553 -.515 -3.5 -1.368v4.368a1 1 0 0 1 -1 1c-3.292 0 -6 -2.435 -6 -5.5c0 -1.336 .515 -2.553 1.368 -3.5h-4.368a1 1 0 0 1 -1 -1c0 -3.292 2.435 -6 5.5 -6c1.337 0 2.554 .515 3.5 1.369v-4.369a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kLt={name:"WindmillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.061 11.06c1.18 -.824 1.939 -2.11 1.939 -3.56c0 -2.49 -2.24 -4.5 -5 -4.5v5"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5c.166 0 .33 -.01 .49 -.03m2.624 -1.36c.856 -.91 1.386 -2.19 1.386 -3.61h-5"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M6.981 7.033c-2.244 .285 -3.981 2.402 -3.981 4.967h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bLt={name:"WindmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9z"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9z"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M12 12c0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z"},null),e(" ")])}},MLt={name:"WindowMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M12 8h4v4"},null),e(" "),t("path",{d:"M16 8l-5 5"},null),e(" ")])}},xLt={name:"WindowMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M15 13h-4v-4"},null),e(" "),t("path",{d:"M11 13l5 -5"},null),e(" ")])}},zLt={name:"WindowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.166 6.19a6.903 6.903 0 0 0 -1.166 3.81v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-1m0 -4v-5c0 -3.728 -3.134 -7 -7 -7a6.86 6.86 0 0 0 -3.804 1.158"},null),e(" "),t("path",{d:"M5 13h8m4 0h2"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ILt={name:"WindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c-3.866 0 -7 3.272 -7 7v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-10c0 -3.728 -3.134 -7 -7 -7z"},null),e(" "),t("path",{d:"M5 13l14 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},yLt={name:"WindsockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windsock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v18"},null),e(" "),t("path",{d:"M6 11l12 -1v-4l-12 -1"},null),e(" "),t("path",{d:"M10 5.5v5"},null),e(" "),t("path",{d:"M14 6v4"},null),e(" "),t("path",{d:"M4 21h4"},null),e(" ")])}},CLt={name:"WiperWashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 11l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 20l0 -14"},null),e(" "),t("path",{d:"M4 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M7 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 0 -.4 -1.8"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M15 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M20 6a4 4 0 0 0 -.4 -1.8"},null),e(" ")])}},SLt={name:"WiperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 18l-2.2 -12.8"},null),e(" ")])}},$Lt={name:"WomanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-woman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M8 16h8l-2 -7h-4z"},null),e(" "),t("path",{d:"M5 11c1.667 -1.333 3.333 -2 5 -2"},null),e(" "),t("path",{d:"M19 11c-1.667 -1.333 -3.333 -2 -5 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},ALt={name:"WoodIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wood",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-6 0a6 2.5 0 1 0 12 0a6 2.5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M18 5.5v4.626a1.415 1.415 0 0 1 1.683 2.18l-.097 .108l-1.586 1.586v4c0 1.61 -2.54 2.925 -5.725 3l-.275 0c-3.314 0 -6 -1.343 -6 -3v-2l-1.586 -1.586a1.414 1.414 0 0 1 1.586 -2.287v-6.627"},null),e(" "),t("path",{d:"M10 12.5v1.5"},null),e(" "),t("path",{d:"M14 16v1"},null),e(" ")])}},BLt={name:"WorldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -7.52 8.36"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.856 2.27 12"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},HLt={name:"WorldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.985 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.53 10.275"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},NLt={name:"WorldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.946 12.99a9 9 0 1 0 -9.46 7.995"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h13.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.997 16.997 0 0 1 2.311 12.001"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},jLt={name:"WorldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.02a9 9 0 1 0 -9.47 7.964"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2 3.206 2.837 6.913 2.508 10.537"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},PLt={name:"WorldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.979 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.522 10.376"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},LLt={name:"WorldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.876 10.51a9 9 0 1 0 -7.839 10.43"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.02"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},DLt={name:"WorldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.509a9 9 0 1 0 -8.455 8.476"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.857 2.27 12"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},OLt={name:"WorldDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 14v7m-3 -3l3 3l3 -3"},null),e(" ")])}},FLt={name:"WorldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.51a9 9 0 1 0 -5.71 7.873"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},RLt={name:"WorldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.679 8.974"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.983 16.983 0 0 1 2.556 8.136"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},TLt={name:"WorldLatitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-latitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4.6 7l14.8 0"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M4.6 17l14.8 0"},null),e(" ")])}},ELt={name:"WorldLongitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-longitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 3a11.2 11.2 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a11.2 11.2 0 0 1 0 18"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},VLt={name:"WorldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.483 15.006a9 9 0 1 0 -7.958 5.978"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.94 16.94 0 0 1 2.307 12"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},_Lt={name:"WorldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.657 5.615a9 9 0 1 0 12.717 12.739m1.672 -2.322a9 9 0 0 0 -12.066 -12.084"},null),e(" "),t("path",{d:"M3.6 9h5.4m4 0h7.4"},null),e(" "),t("path",{d:"M3.6 15h11.4m4 0h1.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.493 3.022m-.847 3.145c-.68 4.027 .1 8.244 2.34 11.833"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.005m-.207 3.818a16.979 16.979 0 0 1 -2.342 6.177"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WLt={name:"WorldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.945 12.997a9 9 0 1 0 -7.928 7.945"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.51 10.526"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},XLt={name:"WorldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.972 11.291a9 9 0 1 0 -8.322 9.686"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.018"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},qLt={name:"WorldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.518a9 9 0 1 0 -8.45 8.466"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h11.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.998 16.998 0 0 1 2.283 12.157"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},YLt={name:"WorldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.673 9.043"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.988 16.988 0 0 1 2.57 9.518m-1.056 5.403a17 17 0 0 1 -1.514 3.079"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ULt={name:"WorldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h7.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.984 16.984 0 0 1 2.574 8.62"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},GLt={name:"WorldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.94 13.045a9 9 0 1 0 -8.953 7.955"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.529 10.294"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},ZLt={name:"WorldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.968 8.948"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.886 13.802"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.01"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},KLt={name:"WorldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -8.451 8.463"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.996 16.996 0 0 1 2.391 11.512"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},QLt={name:"WorldUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 21v-7m3 3l-3 -3l-3 3"},null),e(" ")])}},JLt={name:"WorldWwwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-www",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 7a9 9 0 0 0 -7.5 -4a8.991 8.991 0 0 0 -7.484 4"},null),e(" "),t("path",{d:"M11.5 3a16.989 16.989 0 0 0 -1.826 4"},null),e(" "),t("path",{d:"M12.5 3a16.989 16.989 0 0 1 1.828 4"},null),e(" "),t("path",{d:"M19.5 17a9 9 0 0 1 -7.5 4a8.991 8.991 0 0 1 -7.484 -4"},null),e(" "),t("path",{d:"M11.5 21a16.989 16.989 0 0 1 -1.826 -4"},null),e(" "),t("path",{d:"M12.5 21a16.989 16.989 0 0 0 1.828 -4"},null),e(" "),t("path",{d:"M2 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M17 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M9.5 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" ")])}},tDt={name:"WorldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.929 13.131a9 9 0 1 0 -8.931 7.869"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.505 10.573"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},eDt={name:"WorldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" ")])}},nDt={name:"WreckingBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wrecking-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M19 11v-7l-6 7"},null),e(" ")])}},lDt={name:"WritingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rDt={name:"WritingSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oDt={name:"WritingSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" ")])}},sDt={name:"WritingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" ")])}},aDt={name:"XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6l-12 12"},null),e(" "),t("path",{d:"M6 6l12 12"},null),e(" ")])}},iDt={name:"XboxAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M15 16l-3 -8l-3 8"},null),e(" "),t("path",{d:"M14 14h-4"},null),e(" ")])}},hDt={name:"XboxBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 1 0 4h-3v-4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 0 0 -4h-3v4"},null),e(" ")])}},dDt={name:"XboxXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l6 8"},null),e(" "),t("path",{d:"M15 8l-6 8"},null),e(" ")])}},cDt={name:"XboxYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l3 4"},null),e(" "),t("path",{d:"M15 8l-2.988 3.984l-.012 4.016"},null),e(" ")])}},uDt={name:"XdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l4 8"},null),e(" "),t("path",{d:"M6 16l4 -8"},null),e(" "),t("path",{d:"M14 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},pDt={name:"YinYangFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-9 1.732a8 8 0 0 0 4 14.928l.2 -.005a4 4 0 0 0 0 -7.99l-.2 -.005a4 4 0 0 1 -.2 -7.995l.2 -.005a7.995 7.995 0 0 0 -4 1.072zm4 1.428a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 14.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gDt={name:"YinYangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},wDt={name:"YogaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yoga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 20h4l1.5 -3"},null),e(" "),t("path",{d:"M17 20l-1 -5h-5l1 -7"},null),e(" "),t("path",{d:"M4 10l4 -1l4 -1l4 1.5l4 1.5"},null),e(" ")])}},vDt={name:"ZeppelinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.773 15.783c-.723 .141 -1.486 .217 -2.273 .217c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c.13 -.087 .261 -.172 .39 -.256m2.564 -1.42c1.601 -.735 3.071 -1.102 4.411 -1.102c4.694 0 8.5 2.686 8.5 6c0 1.919 -1.276 3.627 -3.261 4.725"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fDt={name:"ZeppelinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778z"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" ")])}},mDt={name:"ZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" ")])}},kDt={name:"ZodiacAquariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aquarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" "),t("path",{d:"M3 17l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" ")])}},bDt={name:"ZodiacAriesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aries",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5a5 5 0 1 0 -4 8"},null),e(" "),t("path",{d:"M16 13a5 5 0 1 0 -4 -8"},null),e(" "),t("path",{d:"M12 21l0 -16"},null),e(" ")])}},MDt={name:"ZodiacCancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-cancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12a10 6.5 0 0 1 14 -6.5"},null),e(" "),t("path",{d:"M21 12a10 6.5 0 0 1 -14 6.5"},null),e(" ")])}},xDt={name:"ZodiacCapricornIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-capricorn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M7 7a3 3 0 0 1 6 0v11a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},zDt={name:"ZodiacGeminiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-gemini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3a21 21 0 0 0 18 0"},null),e(" "),t("path",{d:"M3 21a21 21 0 0 1 18 0"},null),e(" "),t("path",{d:"M7 4.5l0 15"},null),e(" "),t("path",{d:"M17 4.5l0 15"},null),e(" ")])}},IDt={name:"ZodiacLeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-leo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M11 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 7c0 3 2 5 2 9"},null),e(" "),t("path",{d:"M15 7c0 4 -2 6 -2 10"},null),e(" ")])}},yDt={name:"ZodiacLibraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-libra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" "),t("path",{d:"M5 17h5v-.3a7 7 0 1 1 4 0v.3h5"},null),e(" ")])}},CDt={name:"ZodiacPiscesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-pisces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3a21 21 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 3a21 21 0 0 0 0 18"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},SDt={name:"ZodiacSagittariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-sagittarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M13 4h7v7"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" ")])}},$Dt={name:"ZodiacScorpioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-scorpio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3"},null),e(" ")])}},ADt={name:"ZodiacTaurusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-taurus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a6 6 0 0 0 12 0"},null),e(" "),t("path",{d:"M12 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},BDt={name:"ZodiacVirgoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-virgo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5"},null),e(" "),t("path",{d:"M12 21a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0"},null),e(" ")])}},HDt={name:"ZoomCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M8 8l4 4"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},NDt={name:"ZoomCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-.293 4.22a1 1 0 0 0 -1.414 0l-3.293 3.294l-1.293 -1.293l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jDt={name:"ZoomCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M7 10l2 2l4 -4"},null),e(" ")])}},PDt={name:"ZoomCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M8 8l-2 2l2 2"},null),e(" "),t("path",{d:"M12 8l2 2l-2 2"},null),e(" ")])}},LDt={name:"ZoomExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13v.01"},null),e(" "),t("path",{d:"M10 7v3"},null),e(" ")])}},DDt={name:"ZoomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ODt={name:"ZoomInAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a6 6 0 0 1 4.891 9.476l2.816 2.817a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.817 -2.816a6 6 0 0 1 -9.472 -4.666l-.004 -.225l.004 -.225a6 6 0 0 1 5.996 -5.775zm0 3a1 1 0 0 0 -.993 .883l-.007 .117v1h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 14a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 0 .883 .993l.117 .007h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 9a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 0 -.993 .883l-.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a3 3 0 0 1 2.824 -2.995l.176 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FDt={name:"ZoomInAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},RDt={name:"ZoomInFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -.993 .883l-.007 .117v2h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-2h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TDt={name:"ZoomInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M10 7l0 6"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},EDt={name:"ZoomMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M12 7h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M10 13v1m0 -8v1"},null),e(" ")])}},VDt={name:"ZoomOutAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},_Dt={name:"ZoomOutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-1 5.928h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WDt={name:"ZoomOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},XDt={name:"ZoomPanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-pan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17l-2.5 -2.5"},null),e(" "),t("path",{d:"M10 5l2 -2l2 2"},null),e(" "),t("path",{d:"M19 10l2 2l-2 2"},null),e(" "),t("path",{d:"M5 10l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},qDt={name:"ZoomQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13l0 .01"},null),e(" "),t("path",{d:"M10 10a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},YDt={name:"ZoomReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.291 8a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403"},null),e(" "),t("path",{d:"M17 4v4h-4"},null),e(" "),t("path",{d:"M16.705 12a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403"},null),e(" "),t("path",{d:"M3 16v-4h4"},null),e(" ")])}},UDt={name:"ZoomResetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-reset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403"},null),e(" "),t("path",{d:"M3 4v4h4"},null),e(" ")])}},GDt={name:"ZzzOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-5.146 6.862m1.146 1.138h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZDt={name:"ZzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-6 8h6"},null),e(" ")])}},KDt=Object.freeze({__proto__:null,OnetwotreeIcon:Ux,TwentyFourHoursIcon:Gx,TwoFactorAuthIcon:Zx,Deg360ViewIcon:Kx,Deg360Icon:Qx,ThreedCubeSphereOffIcon:Jx,ThreedCubeSphereIcon:tz,ThreedRotateIcon:ez,AB2Icon:nz,ABOffIcon:lz,ABIcon:rz,AbacusOffIcon:oz,AbacusIcon:sz,AbcIcon:az,AccessPointOffIcon:iz,AccessPointIcon:hz,AccessibleOffFilledIcon:dz,AccessibleOffIcon:cz,AccessibleIcon:uz,ActivityHeartbeatIcon:pz,ActivityIcon:gz,Ad2Icon:wz,AdCircleFilledIcon:vz,AdCircleOffIcon:fz,AdCircleIcon:mz,AdFilledIcon:kz,AdOffIcon:bz,AdIcon:Mz,AddressBookOffIcon:xz,AddressBookIcon:zz,AdjustmentsAltIcon:Iz,AdjustmentsBoltIcon:yz,AdjustmentsCancelIcon:Cz,AdjustmentsCheckIcon:Sz,AdjustmentsCodeIcon:$z,AdjustmentsCogIcon:Az,AdjustmentsDollarIcon:Bz,AdjustmentsDownIcon:Hz,AdjustmentsExclamationIcon:Nz,AdjustmentsFilledIcon:jz,AdjustmentsHeartIcon:Pz,AdjustmentsHorizontalIcon:Lz,AdjustmentsMinusIcon:Dz,AdjustmentsOffIcon:Oz,AdjustmentsPauseIcon:Fz,AdjustmentsPinIcon:Rz,AdjustmentsPlusIcon:Tz,AdjustmentsQuestionIcon:Ez,AdjustmentsSearchIcon:Vz,AdjustmentsShareIcon:_z,AdjustmentsStarIcon:Wz,AdjustmentsUpIcon:Xz,AdjustmentsXIcon:qz,AdjustmentsIcon:Yz,AerialLiftIcon:Uz,AffiliateFilledIcon:Gz,AffiliateIcon:Zz,AirBalloonIcon:Kz,AirConditioningDisabledIcon:Qz,AirConditioningIcon:Jz,AlarmFilledIcon:tI,AlarmMinusFilledIcon:eI,AlarmMinusIcon:nI,AlarmOffIcon:lI,AlarmPlusFilledIcon:rI,AlarmPlusIcon:oI,AlarmSnoozeFilledIcon:sI,AlarmSnoozeIcon:aI,AlarmIcon:iI,AlbumOffIcon:hI,AlbumIcon:dI,AlertCircleFilledIcon:cI,AlertCircleIcon:uI,AlertHexagonFilledIcon:pI,AlertHexagonIcon:gI,AlertOctagonFilledIcon:wI,AlertOctagonIcon:vI,AlertSmallIcon:fI,AlertSquareFilledIcon:mI,AlertSquareRoundedFilledIcon:kI,AlertSquareRoundedIcon:bI,AlertSquareIcon:MI,AlertTriangleFilledIcon:xI,AlertTriangleIcon:zI,AlienFilledIcon:II,AlienIcon:yI,AlignBoxBottomCenterFilledIcon:CI,AlignBoxBottomCenterIcon:SI,AlignBoxBottomLeftFilledIcon:$I,AlignBoxBottomLeftIcon:AI,AlignBoxBottomRightFilledIcon:BI,AlignBoxBottomRightIcon:HI,AlignBoxCenterMiddleFilledIcon:NI,AlignBoxCenterMiddleIcon:jI,AlignBoxLeftBottomFilledIcon:PI,AlignBoxLeftBottomIcon:LI,AlignBoxLeftMiddleFilledIcon:DI,AlignBoxLeftMiddleIcon:OI,AlignBoxLeftTopFilledIcon:FI,AlignBoxLeftTopIcon:RI,AlignBoxRightBottomFilledIcon:TI,AlignBoxRightBottomIcon:EI,AlignBoxRightMiddleFilledIcon:VI,AlignBoxRightMiddleIcon:_I,AlignBoxRightTopFilledIcon:WI,AlignBoxRightTopIcon:XI,AlignBoxTopCenterFilledIcon:qI,AlignBoxTopCenterIcon:YI,AlignBoxTopLeftFilledIcon:UI,AlignBoxTopLeftIcon:GI,AlignBoxTopRightFilledIcon:ZI,AlignBoxTopRightIcon:KI,AlignCenterIcon:QI,AlignJustifiedIcon:JI,AlignLeftIcon:ty,AlignRightIcon:ey,AlphaIcon:ny,AlphabetCyrillicIcon:ly,AlphabetGreekIcon:ry,AlphabetLatinIcon:oy,AmbulanceIcon:sy,AmpersandIcon:ay,AnalyzeFilledIcon:iy,AnalyzeOffIcon:hy,AnalyzeIcon:dy,AnchorOffIcon:cy,AnchorIcon:uy,AngleIcon:py,AnkhIcon:gy,AntennaBars1Icon:wy,AntennaBars2Icon:vy,AntennaBars3Icon:fy,AntennaBars4Icon:my,AntennaBars5Icon:ky,AntennaBarsOffIcon:by,AntennaOffIcon:My,AntennaIcon:xy,ApertureOffIcon:zy,ApertureIcon:Iy,ApiAppOffIcon:yy,ApiAppIcon:Cy,ApiOffIcon:Sy,ApiIcon:$y,AppWindowFilledIcon:Ay,AppWindowIcon:By,AppleIcon:Hy,AppsFilledIcon:Ny,AppsOffIcon:jy,AppsIcon:Py,ArchiveFilledIcon:Ly,ArchiveOffIcon:Dy,ArchiveIcon:Oy,Armchair2OffIcon:Fy,Armchair2Icon:Ry,ArmchairOffIcon:Ty,ArmchairIcon:Ey,ArrowAutofitContentFilledIcon:Vy,ArrowAutofitContentIcon:_y,ArrowAutofitDownIcon:Wy,ArrowAutofitHeightIcon:Xy,ArrowAutofitLeftIcon:qy,ArrowAutofitRightIcon:Yy,ArrowAutofitUpIcon:Uy,ArrowAutofitWidthIcon:Gy,ArrowBackUpDoubleIcon:Zy,ArrowBackUpIcon:Ky,ArrowBackIcon:Qy,ArrowBadgeDownFilledIcon:Jy,ArrowBadgeDownIcon:tC,ArrowBadgeLeftFilledIcon:eC,ArrowBadgeLeftIcon:nC,ArrowBadgeRightFilledIcon:lC,ArrowBadgeRightIcon:rC,ArrowBadgeUpFilledIcon:oC,ArrowBadgeUpIcon:sC,ArrowBarDownIcon:aC,ArrowBarLeftIcon:iC,ArrowBarRightIcon:hC,ArrowBarToDownIcon:dC,ArrowBarToLeftIcon:cC,ArrowBarToRightIcon:uC,ArrowBarToUpIcon:pC,ArrowBarUpIcon:gC,ArrowBearLeft2Icon:wC,ArrowBearLeftIcon:vC,ArrowBearRight2Icon:fC,ArrowBearRightIcon:mC,ArrowBigDownFilledIcon:kC,ArrowBigDownLineFilledIcon:bC,ArrowBigDownLineIcon:MC,ArrowBigDownLinesFilledIcon:xC,ArrowBigDownLinesIcon:zC,ArrowBigDownIcon:IC,ArrowBigLeftFilledIcon:yC,ArrowBigLeftLineFilledIcon:CC,ArrowBigLeftLineIcon:SC,ArrowBigLeftLinesFilledIcon:$C,ArrowBigLeftLinesIcon:AC,ArrowBigLeftIcon:BC,ArrowBigRightFilledIcon:HC,ArrowBigRightLineFilledIcon:NC,ArrowBigRightLineIcon:jC,ArrowBigRightLinesFilledIcon:PC,ArrowBigRightLinesIcon:LC,ArrowBigRightIcon:DC,ArrowBigUpFilledIcon:OC,ArrowBigUpLineFilledIcon:FC,ArrowBigUpLineIcon:RC,ArrowBigUpLinesFilledIcon:TC,ArrowBigUpLinesIcon:EC,ArrowBigUpIcon:VC,ArrowBounceIcon:_C,ArrowCurveLeftIcon:WC,ArrowCurveRightIcon:XC,ArrowDownBarIcon:qC,ArrowDownCircleIcon:YC,ArrowDownLeftCircleIcon:UC,ArrowDownLeftIcon:GC,ArrowDownRhombusIcon:ZC,ArrowDownRightCircleIcon:KC,ArrowDownRightIcon:QC,ArrowDownSquareIcon:JC,ArrowDownTailIcon:tS,ArrowDownIcon:eS,ArrowElbowLeftIcon:nS,ArrowElbowRightIcon:lS,ArrowForkIcon:rS,ArrowForwardUpDoubleIcon:oS,ArrowForwardUpIcon:sS,ArrowForwardIcon:aS,ArrowGuideIcon:iS,ArrowIterationIcon:hS,ArrowLeftBarIcon:dS,ArrowLeftCircleIcon:cS,ArrowLeftRhombusIcon:uS,ArrowLeftRightIcon:pS,ArrowLeftSquareIcon:gS,ArrowLeftTailIcon:wS,ArrowLeftIcon:vS,ArrowLoopLeft2Icon:fS,ArrowLoopLeftIcon:mS,ArrowLoopRight2Icon:kS,ArrowLoopRightIcon:bS,ArrowMergeBothIcon:MS,ArrowMergeLeftIcon:xS,ArrowMergeRightIcon:zS,ArrowMergeIcon:IS,ArrowMoveDownIcon:yS,ArrowMoveLeftIcon:CS,ArrowMoveRightIcon:SS,ArrowMoveUpIcon:$S,ArrowNarrowDownIcon:AS,ArrowNarrowLeftIcon:BS,ArrowNarrowRightIcon:HS,ArrowNarrowUpIcon:NS,ArrowRampLeft2Icon:jS,ArrowRampLeft3Icon:PS,ArrowRampLeftIcon:LS,ArrowRampRight2Icon:DS,ArrowRampRight3Icon:OS,ArrowRampRightIcon:FS,ArrowRightBarIcon:RS,ArrowRightCircleIcon:TS,ArrowRightRhombusIcon:ES,ArrowRightSquareIcon:VS,ArrowRightTailIcon:_S,ArrowRightIcon:WS,ArrowRotaryFirstLeftIcon:XS,ArrowRotaryFirstRightIcon:qS,ArrowRotaryLastLeftIcon:YS,ArrowRotaryLastRightIcon:US,ArrowRotaryLeftIcon:GS,ArrowRotaryRightIcon:ZS,ArrowRotaryStraightIcon:KS,ArrowRoundaboutLeftIcon:QS,ArrowRoundaboutRightIcon:JS,ArrowSharpTurnLeftIcon:t$,ArrowSharpTurnRightIcon:e$,ArrowUpBarIcon:n$,ArrowUpCircleIcon:l$,ArrowUpLeftCircleIcon:r$,ArrowUpLeftIcon:o$,ArrowUpRhombusIcon:s$,ArrowUpRightCircleIcon:a$,ArrowUpRightIcon:i$,ArrowUpSquareIcon:h$,ArrowUpTailIcon:d$,ArrowUpIcon:c$,ArrowWaveLeftDownIcon:u$,ArrowWaveLeftUpIcon:p$,ArrowWaveRightDownIcon:g$,ArrowWaveRightUpIcon:w$,ArrowZigZagIcon:v$,ArrowsCrossIcon:f$,ArrowsDiagonal2Icon:m$,ArrowsDiagonalMinimize2Icon:k$,ArrowsDiagonalMinimizeIcon:b$,ArrowsDiagonalIcon:M$,ArrowsDiffIcon:x$,ArrowsDoubleNeSwIcon:z$,ArrowsDoubleNwSeIcon:I$,ArrowsDoubleSeNwIcon:y$,ArrowsDoubleSwNeIcon:C$,ArrowsDownUpIcon:S$,ArrowsDownIcon:$$,ArrowsExchange2Icon:A$,ArrowsExchangeIcon:B$,ArrowsHorizontalIcon:H$,ArrowsJoin2Icon:N$,ArrowsJoinIcon:j$,ArrowsLeftDownIcon:P$,ArrowsLeftRightIcon:L$,ArrowsLeftIcon:D$,ArrowsMaximizeIcon:O$,ArrowsMinimizeIcon:F$,ArrowsMoveHorizontalIcon:R$,ArrowsMoveVerticalIcon:T$,ArrowsMoveIcon:E$,ArrowsRandomIcon:V$,ArrowsRightDownIcon:_$,ArrowsRightLeftIcon:W$,ArrowsRightIcon:X$,ArrowsShuffle2Icon:q$,ArrowsShuffleIcon:Y$,ArrowsSortIcon:U$,ArrowsSplit2Icon:G$,ArrowsSplitIcon:Z$,ArrowsTransferDownIcon:K$,ArrowsTransferUpIcon:Q$,ArrowsUpDownIcon:J$,ArrowsUpLeftIcon:tA,ArrowsUpRightIcon:eA,ArrowsUpIcon:nA,ArrowsVerticalIcon:lA,ArtboardFilledIcon:rA,ArtboardOffIcon:oA,ArtboardIcon:sA,ArticleFilledFilledIcon:aA,ArticleOffIcon:iA,ArticleIcon:hA,AspectRatioFilledIcon:dA,AspectRatioOffIcon:cA,AspectRatioIcon:uA,AssemblyOffIcon:pA,AssemblyIcon:gA,AssetIcon:wA,AsteriskSimpleIcon:vA,AsteriskIcon:fA,AtOffIcon:mA,AtIcon:kA,Atom2FilledIcon:bA,Atom2Icon:MA,AtomOffIcon:xA,AtomIcon:zA,AugmentedReality2Icon:IA,AugmentedRealityOffIcon:yA,AugmentedRealityIcon:CA,AwardFilledIcon:SA,AwardOffIcon:$A,AwardIcon:AA,AxeIcon:BA,AxisXIcon:HA,AxisYIcon:NA,BabyBottleIcon:jA,BabyCarriageIcon:PA,BackhoeIcon:LA,BackpackOffIcon:DA,BackpackIcon:OA,BackspaceFilledIcon:FA,BackspaceIcon:RA,Badge3dIcon:TA,Badge4kIcon:EA,Badge8kIcon:VA,BadgeAdIcon:_A,BadgeArIcon:WA,BadgeCcIcon:XA,BadgeFilledIcon:qA,BadgeHdIcon:YA,BadgeOffIcon:UA,BadgeSdIcon:GA,BadgeTmIcon:ZA,BadgeVoIcon:KA,BadgeVrIcon:QA,BadgeWcIcon:JA,BadgeIcon:tB,BadgesFilledIcon:eB,BadgesOffIcon:nB,BadgesIcon:lB,BaguetteIcon:rB,BallAmericanFootballOffIcon:oB,BallAmericanFootballIcon:sB,BallBaseballIcon:aB,BallBasketballIcon:iB,BallBowlingIcon:hB,BallFootballOffIcon:dB,BallFootballIcon:cB,BallTennisIcon:uB,BallVolleyballIcon:pB,BalloonFilledIcon:gB,BalloonOffIcon:wB,BalloonIcon:vB,BallpenFilledIcon:fB,BallpenOffIcon:mB,BallpenIcon:kB,BanIcon:bB,BandageFilledIcon:MB,BandageOffIcon:xB,BandageIcon:zB,BarbellOffIcon:IB,BarbellIcon:yB,BarcodeOffIcon:CB,BarcodeIcon:SB,BarrelOffIcon:$B,BarrelIcon:AB,BarrierBlockOffIcon:BB,BarrierBlockIcon:HB,BaselineDensityLargeIcon:NB,BaselineDensityMediumIcon:jB,BaselineDensitySmallIcon:PB,BaselineIcon:LB,BasketFilledIcon:DB,BasketOffIcon:OB,BasketIcon:FB,BatIcon:RB,BathFilledIcon:TB,BathOffIcon:EB,BathIcon:VB,Battery1FilledIcon:_B,Battery1Icon:WB,Battery2FilledIcon:XB,Battery2Icon:qB,Battery3FilledIcon:YB,Battery3Icon:UB,Battery4FilledIcon:GB,Battery4Icon:ZB,BatteryAutomotiveIcon:KB,BatteryCharging2Icon:QB,BatteryChargingIcon:JB,BatteryEcoIcon:tH,BatteryFilledIcon:eH,BatteryOffIcon:nH,BatteryIcon:lH,BeachOffIcon:rH,BeachIcon:oH,BedFilledIcon:sH,BedOffIcon:aH,BedIcon:iH,BeerFilledIcon:hH,BeerOffIcon:dH,BeerIcon:cH,BellBoltIcon:uH,BellCancelIcon:pH,BellCheckIcon:gH,BellCodeIcon:wH,BellCogIcon:vH,BellDollarIcon:fH,BellDownIcon:mH,BellExclamationIcon:kH,BellFilledIcon:bH,BellHeartIcon:MH,BellMinusFilledIcon:xH,BellMinusIcon:zH,BellOffIcon:IH,BellPauseIcon:yH,BellPinIcon:CH,BellPlusFilledIcon:SH,BellPlusIcon:$H,BellQuestionIcon:AH,BellRinging2FilledIcon:BH,BellRinging2Icon:HH,BellRingingFilledIcon:NH,BellRingingIcon:jH,BellSchoolIcon:PH,BellSearchIcon:LH,BellShareIcon:DH,BellStarIcon:OH,BellUpIcon:FH,BellXFilledIcon:RH,BellXIcon:TH,BellZFilledIcon:EH,BellZIcon:VH,BellIcon:_H,BetaIcon:WH,BibleIcon:XH,BikeOffIcon:qH,BikeIcon:YH,BinaryOffIcon:UH,BinaryTree2Icon:GH,BinaryTreeIcon:ZH,BinaryIcon:KH,BiohazardOffIcon:QH,BiohazardIcon:JH,BladeFilledIcon:tN,BladeIcon:eN,BleachChlorineIcon:nN,BleachNoChlorineIcon:lN,BleachOffIcon:rN,BleachIcon:oN,BlockquoteIcon:sN,BluetoothConnectedIcon:aN,BluetoothOffIcon:iN,BluetoothXIcon:hN,BluetoothIcon:dN,BlurOffIcon:cN,BlurIcon:uN,BmpIcon:pN,BoldOffIcon:gN,BoldIcon:wN,BoltOffIcon:vN,BoltIcon:fN,BombFilledIcon:mN,BombIcon:kN,BoneOffIcon:bN,BoneIcon:MN,BongOffIcon:xN,BongIcon:zN,Book2Icon:IN,BookDownloadIcon:yN,BookFilledIcon:CN,BookOffIcon:SN,BookUploadIcon:$N,BookIcon:AN,BookmarkEditIcon:BN,BookmarkFilledIcon:HN,BookmarkMinusIcon:NN,BookmarkOffIcon:jN,BookmarkPlusIcon:PN,BookmarkQuestionIcon:LN,BookmarkIcon:DN,BookmarksOffIcon:ON,BookmarksIcon:FN,BooksOffIcon:RN,BooksIcon:TN,BorderAllIcon:EN,BorderBottomIcon:VN,BorderCornersIcon:_N,BorderHorizontalIcon:WN,BorderInnerIcon:XN,BorderLeftIcon:qN,BorderNoneIcon:YN,BorderOuterIcon:UN,BorderRadiusIcon:GN,BorderRightIcon:ZN,BorderSidesIcon:KN,BorderStyle2Icon:QN,BorderStyleIcon:JN,BorderTopIcon:tj,BorderVerticalIcon:ej,BottleFilledIcon:nj,BottleOffIcon:lj,BottleIcon:rj,BounceLeftIcon:oj,BounceRightIcon:sj,BowIcon:aj,BowlIcon:ij,BoxAlignBottomFilledIcon:hj,BoxAlignBottomLeftFilledIcon:dj,BoxAlignBottomLeftIcon:cj,BoxAlignBottomRightFilledIcon:uj,BoxAlignBottomRightIcon:pj,BoxAlignBottomIcon:gj,BoxAlignLeftFilledIcon:wj,BoxAlignLeftIcon:vj,BoxAlignRightFilledIcon:fj,BoxAlignRightIcon:mj,BoxAlignTopFilledIcon:kj,BoxAlignTopLeftFilledIcon:bj,BoxAlignTopLeftIcon:Mj,BoxAlignTopRightFilledIcon:xj,BoxAlignTopRightIcon:zj,BoxAlignTopIcon:Ij,BoxMarginIcon:yj,BoxModel2OffIcon:Cj,BoxModel2Icon:Sj,BoxModelOffIcon:$j,BoxModelIcon:Aj,BoxMultiple0Icon:Bj,BoxMultiple1Icon:Hj,BoxMultiple2Icon:Nj,BoxMultiple3Icon:jj,BoxMultiple4Icon:Pj,BoxMultiple5Icon:Lj,BoxMultiple6Icon:Dj,BoxMultiple7Icon:Oj,BoxMultiple8Icon:Fj,BoxMultiple9Icon:Rj,BoxMultipleIcon:Tj,BoxOffIcon:Ej,BoxPaddingIcon:Vj,BoxSeamIcon:_j,BoxIcon:Wj,BracesOffIcon:Xj,BracesIcon:qj,BracketsContainEndIcon:Yj,BracketsContainStartIcon:Uj,BracketsContainIcon:Gj,BracketsOffIcon:Zj,BracketsIcon:Kj,BrailleIcon:Qj,BrainIcon:Jj,Brand4chanIcon:tP,BrandAbstractIcon:eP,BrandAdobeIcon:nP,BrandAdonisJsIcon:lP,BrandAirbnbIcon:rP,BrandAirtableIcon:oP,BrandAlgoliaIcon:sP,BrandAlipayIcon:aP,BrandAlpineJsIcon:iP,BrandAmazonIcon:hP,BrandAmdIcon:dP,BrandAmigoIcon:cP,BrandAmongUsIcon:uP,BrandAndroidIcon:pP,BrandAngularIcon:gP,BrandAnsibleIcon:wP,BrandAo3Icon:vP,BrandAppgalleryIcon:fP,BrandAppleArcadeIcon:mP,BrandApplePodcastIcon:kP,BrandAppleIcon:bP,BrandAppstoreIcon:MP,BrandAsanaIcon:xP,BrandAwsIcon:zP,BrandAzureIcon:IP,BrandBackboneIcon:yP,BrandBadooIcon:CP,BrandBaiduIcon:SP,BrandBandcampIcon:$P,BrandBandlabIcon:AP,BrandBeatsIcon:BP,BrandBehanceIcon:HP,BrandBilibiliIcon:NP,BrandBinanceIcon:jP,BrandBingIcon:PP,BrandBitbucketIcon:LP,BrandBlackberryIcon:DP,BrandBlenderIcon:OP,BrandBloggerIcon:FP,BrandBookingIcon:RP,BrandBootstrapIcon:TP,BrandBulmaIcon:EP,BrandBumbleIcon:VP,BrandBunpoIcon:_P,BrandCSharpIcon:WP,BrandCakeIcon:XP,BrandCakephpIcon:qP,BrandCampaignmonitorIcon:YP,BrandCarbonIcon:UP,BrandCashappIcon:GP,BrandChromeIcon:ZP,BrandCinema4dIcon:KP,BrandCitymapperIcon:QP,BrandCloudflareIcon:JP,BrandCodecovIcon:tL,BrandCodepenIcon:eL,BrandCodesandboxIcon:nL,BrandCohostIcon:lL,BrandCoinbaseIcon:rL,BrandComedyCentralIcon:oL,BrandCoreosIcon:sL,BrandCouchdbIcon:aL,BrandCouchsurfingIcon:iL,BrandCppIcon:hL,BrandCraftIcon:dL,BrandCrunchbaseIcon:cL,BrandCss3Icon:uL,BrandCtemplarIcon:pL,BrandCucumberIcon:gL,BrandCupraIcon:wL,BrandCypressIcon:vL,BrandD3Icon:fL,BrandDaysCounterIcon:mL,BrandDcosIcon:kL,BrandDebianIcon:bL,BrandDeezerIcon:ML,BrandDeliverooIcon:xL,BrandDenoIcon:zL,BrandDenodoIcon:IL,BrandDeviantartIcon:yL,BrandDiggIcon:CL,BrandDingtalkIcon:SL,BrandDiscordFilledIcon:$L,BrandDiscordIcon:AL,BrandDisneyIcon:BL,BrandDisqusIcon:HL,BrandDjangoIcon:NL,BrandDockerIcon:jL,BrandDoctrineIcon:PL,BrandDolbyDigitalIcon:LL,BrandDoubanIcon:DL,BrandDribbbleFilledIcon:OL,BrandDribbbleIcon:FL,BrandDropsIcon:RL,BrandDrupalIcon:TL,BrandEdgeIcon:EL,BrandElasticIcon:VL,BrandElectronicArtsIcon:_L,BrandEmberIcon:WL,BrandEnvatoIcon:XL,BrandEtsyIcon:qL,BrandEvernoteIcon:YL,BrandFacebookFilledIcon:UL,BrandFacebookIcon:GL,BrandFeedlyIcon:ZL,BrandFigmaIcon:KL,BrandFilezillaIcon:QL,BrandFinderIcon:JL,BrandFirebaseIcon:tD,BrandFirefoxIcon:eD,BrandFiverrIcon:nD,BrandFlickrIcon:lD,BrandFlightradar24Icon:rD,BrandFlipboardIcon:oD,BrandFlutterIcon:sD,BrandFortniteIcon:aD,BrandFoursquareIcon:iD,BrandFramerMotionIcon:hD,BrandFramerIcon:dD,BrandFunimationIcon:cD,BrandGatsbyIcon:uD,BrandGitIcon:pD,BrandGithubCopilotIcon:gD,BrandGithubFilledIcon:wD,BrandGithubIcon:vD,BrandGitlabIcon:fD,BrandGmailIcon:mD,BrandGolangIcon:kD,BrandGoogleAnalyticsIcon:bD,BrandGoogleBigQueryIcon:MD,BrandGoogleDriveIcon:xD,BrandGoogleFitIcon:zD,BrandGoogleHomeIcon:ID,BrandGoogleMapsIcon:yD,BrandGoogleOneIcon:CD,BrandGooglePhotosIcon:SD,BrandGooglePlayIcon:$D,BrandGooglePodcastsIcon:AD,BrandGoogleIcon:BD,BrandGrammarlyIcon:HD,BrandGraphqlIcon:ND,BrandGravatarIcon:jD,BrandGrindrIcon:PD,BrandGuardianIcon:LD,BrandGumroadIcon:DD,BrandHboIcon:OD,BrandHeadlessuiIcon:FD,BrandHexoIcon:RD,BrandHipchatIcon:TD,BrandHtml5Icon:ED,BrandInertiaIcon:VD,BrandInstagramIcon:_D,BrandIntercomIcon:WD,BrandItchIcon:XD,BrandJavascriptIcon:qD,BrandJuejinIcon:YD,BrandKickIcon:UD,BrandKickstarterIcon:GD,BrandKotlinIcon:ZD,BrandLaravelIcon:KD,BrandLastfmIcon:QD,BrandLeetcodeIcon:JD,BrandLetterboxdIcon:tO,BrandLineIcon:eO,BrandLinkedinIcon:nO,BrandLinktreeIcon:lO,BrandLinqpadIcon:rO,BrandLoomIcon:oO,BrandMailgunIcon:sO,BrandMantineIcon:aO,BrandMastercardIcon:iO,BrandMastodonIcon:hO,BrandMatrixIcon:dO,BrandMcdonaldsIcon:cO,BrandMediumIcon:uO,BrandMercedesIcon:pO,BrandMessengerIcon:gO,BrandMetaIcon:wO,BrandMiniprogramIcon:vO,BrandMixpanelIcon:fO,BrandMondayIcon:mO,BrandMongodbIcon:kO,BrandMyOppoIcon:bO,BrandMysqlIcon:MO,BrandNationalGeographicIcon:xO,BrandNemIcon:zO,BrandNetbeansIcon:IO,BrandNeteaseMusicIcon:yO,BrandNetflixIcon:CO,BrandNexoIcon:SO,BrandNextcloudIcon:$O,BrandNextjsIcon:AO,BrandNordVpnIcon:BO,BrandNotionIcon:HO,BrandNpmIcon:NO,BrandNuxtIcon:jO,BrandNytimesIcon:PO,BrandOauthIcon:LO,BrandOfficeIcon:DO,BrandOkRuIcon:OO,BrandOnedriveIcon:FO,BrandOnlyfansIcon:RO,BrandOpenSourceIcon:TO,BrandOpenaiIcon:EO,BrandOpenvpnIcon:VO,BrandOperaIcon:_O,BrandPagekitIcon:WO,BrandPatreonIcon:XO,BrandPaypalFilledIcon:qO,BrandPaypalIcon:YO,BrandPaypayIcon:UO,BrandPeanutIcon:GO,BrandPepsiIcon:ZO,BrandPhpIcon:KO,BrandPicsartIcon:QO,BrandPinterestIcon:JO,BrandPlanetscaleIcon:tF,BrandPocketIcon:eF,BrandPolymerIcon:nF,BrandPowershellIcon:lF,BrandPrismaIcon:rF,BrandProducthuntIcon:oF,BrandPushbulletIcon:sF,BrandPushoverIcon:aF,BrandPythonIcon:iF,BrandQqIcon:hF,BrandRadixUiIcon:dF,BrandReactNativeIcon:cF,BrandReactIcon:uF,BrandReasonIcon:pF,BrandRedditIcon:gF,BrandRedhatIcon:wF,BrandReduxIcon:vF,BrandRevolutIcon:fF,BrandRustIcon:mF,BrandSafariIcon:kF,BrandSamsungpassIcon:bF,BrandSassIcon:MF,BrandSentryIcon:xF,BrandSharikIcon:zF,BrandShazamIcon:IF,BrandShopeeIcon:yF,BrandSketchIcon:CF,BrandSkypeIcon:SF,BrandSlackIcon:$F,BrandSnapchatIcon:AF,BrandSnapseedIcon:BF,BrandSnowflakeIcon:HF,BrandSocketIoIcon:NF,BrandSolidjsIcon:jF,BrandSoundcloudIcon:PF,BrandSpaceheyIcon:LF,BrandSpeedtestIcon:DF,BrandSpotifyIcon:OF,BrandStackoverflowIcon:FF,BrandStackshareIcon:RF,BrandSteamIcon:TF,BrandStorjIcon:EF,BrandStorybookIcon:VF,BrandStorytelIcon:_F,BrandStravaIcon:WF,BrandStripeIcon:XF,BrandSublimeTextIcon:qF,BrandSugarizerIcon:YF,BrandSupabaseIcon:UF,BrandSuperhumanIcon:GF,BrandSupernovaIcon:ZF,BrandSurfsharkIcon:KF,BrandSvelteIcon:QF,BrandSwiftIcon:JF,BrandSymfonyIcon:tR,BrandTablerIcon:eR,BrandTailwindIcon:nR,BrandTaobaoIcon:lR,BrandTedIcon:rR,BrandTelegramIcon:oR,BrandTerraformIcon:sR,BrandTetherIcon:aR,BrandThreejsIcon:iR,BrandTidalIcon:hR,BrandTiktoFilledIcon:dR,BrandTiktokIcon:cR,BrandTinderIcon:uR,BrandTopbuzzIcon:pR,BrandTorchainIcon:gR,BrandToyotaIcon:wR,BrandTrelloIcon:vR,BrandTripadvisorIcon:fR,BrandTumblrIcon:mR,BrandTwilioIcon:kR,BrandTwitchIcon:bR,BrandTwitterFilledIcon:MR,BrandTwitterIcon:xR,BrandTypescriptIcon:zR,BrandUberIcon:IR,BrandUbuntuIcon:yR,BrandUnityIcon:CR,BrandUnsplashIcon:SR,BrandUpworkIcon:$R,BrandValorantIcon:AR,BrandVercelIcon:BR,BrandVimeoIcon:HR,BrandVintedIcon:NR,BrandVisaIcon:jR,BrandVisualStudioIcon:PR,BrandViteIcon:LR,BrandVivaldiIcon:DR,BrandVkIcon:OR,BrandVlcIcon:FR,BrandVolkswagenIcon:RR,BrandVscoIcon:TR,BrandVscodeIcon:ER,BrandVueIcon:VR,BrandWalmartIcon:_R,BrandWazeIcon:WR,BrandWebflowIcon:XR,BrandWechatIcon:qR,BrandWeiboIcon:YR,BrandWhatsappIcon:UR,BrandWikipediaIcon:GR,BrandWindowsIcon:ZR,BrandWindyIcon:KR,BrandWishIcon:QR,BrandWixIcon:JR,BrandWordpressIcon:tT,BrandXamarinIcon:eT,BrandXboxIcon:nT,BrandXingIcon:lT,BrandYahooIcon:rT,BrandYatseIcon:oT,BrandYcombinatorIcon:sT,BrandYoutubeKidsIcon:aT,BrandYoutubeIcon:iT,BrandZalandoIcon:hT,BrandZapierIcon:dT,BrandZeitIcon:cT,BrandZhihuIcon:uT,BrandZoomIcon:pT,BrandZulipIcon:gT,BrandZwiftIcon:wT,BreadOffIcon:vT,BreadIcon:fT,BriefcaseOffIcon:mT,BriefcaseIcon:kT,Brightness2Icon:bT,BrightnessDownIcon:MT,BrightnessHalfIcon:xT,BrightnessOffIcon:zT,BrightnessUpIcon:IT,BrightnessIcon:yT,BroadcastOffIcon:CT,BroadcastIcon:ST,BrowserCheckIcon:$T,BrowserOffIcon:AT,BrowserPlusIcon:BT,BrowserXIcon:HT,BrowserIcon:NT,BrushOffIcon:jT,BrushIcon:PT,BucketDropletIcon:LT,BucketOffIcon:DT,BucketIcon:OT,BugOffIcon:FT,BugIcon:RT,BuildingArchIcon:TT,BuildingBankIcon:ET,BuildingBridge2Icon:VT,BuildingBridgeIcon:_T,BuildingBroadcastTowerIcon:WT,BuildingCarouselIcon:XT,BuildingCastleIcon:qT,BuildingChurchIcon:YT,BuildingCircusIcon:UT,BuildingCommunityIcon:GT,BuildingCottageIcon:ZT,BuildingEstateIcon:KT,BuildingFactory2Icon:QT,BuildingFactoryIcon:JT,BuildingFortressIcon:tE,BuildingHospitalIcon:eE,BuildingLighthouseIcon:nE,BuildingMonumentIcon:lE,BuildingMosqueIcon:rE,BuildingPavilionIcon:oE,BuildingSkyscraperIcon:sE,BuildingStadiumIcon:aE,BuildingStoreIcon:iE,BuildingTunnelIcon:hE,BuildingWarehouseIcon:dE,BuildingWindTurbineIcon:cE,BuildingIcon:uE,BulbFilledIcon:pE,BulbOffIcon:gE,BulbIcon:wE,BulldozerIcon:vE,BusOffIcon:fE,BusStopIcon:mE,BusIcon:kE,BusinessplanIcon:bE,ButterflyIcon:ME,CactusOffIcon:xE,CactusIcon:zE,CakeOffIcon:IE,CakeIcon:yE,CalculatorOffIcon:CE,CalculatorIcon:SE,CalendarBoltIcon:$E,CalendarCancelIcon:AE,CalendarCheckIcon:BE,CalendarCodeIcon:HE,CalendarCogIcon:NE,CalendarDollarIcon:jE,CalendarDownIcon:PE,CalendarDueIcon:LE,CalendarEventIcon:DE,CalendarExclamationIcon:OE,CalendarHeartIcon:FE,CalendarMinusIcon:RE,CalendarOffIcon:TE,CalendarPauseIcon:EE,CalendarPinIcon:VE,CalendarPlusIcon:_E,CalendarQuestionIcon:WE,CalendarSearchIcon:XE,CalendarShareIcon:qE,CalendarStarIcon:YE,CalendarStatsIcon:UE,CalendarTimeIcon:GE,CalendarUpIcon:ZE,CalendarXIcon:KE,CalendarIcon:QE,CameraBoltIcon:JE,CameraCancelIcon:tV,CameraCheckIcon:eV,CameraCodeIcon:nV,CameraCogIcon:lV,CameraDollarIcon:rV,CameraDownIcon:oV,CameraExclamationIcon:sV,CameraFilledIcon:aV,CameraHeartIcon:iV,CameraMinusIcon:hV,CameraOffIcon:dV,CameraPauseIcon:cV,CameraPinIcon:uV,CameraPlusIcon:pV,CameraQuestionIcon:gV,CameraRotateIcon:wV,CameraSearchIcon:vV,CameraSelfieIcon:fV,CameraShareIcon:mV,CameraStarIcon:kV,CameraUpIcon:bV,CameraXIcon:MV,CameraIcon:xV,CamperIcon:zV,CampfireIcon:IV,CandleIcon:yV,CandyOffIcon:CV,CandyIcon:SV,CaneIcon:$V,CannabisIcon:AV,CaptureOffIcon:BV,CaptureIcon:HV,CarCraneIcon:NV,CarCrashIcon:jV,CarOffIcon:PV,CarTurbineIcon:LV,CarIcon:DV,CaravanIcon:OV,CardboardsOffIcon:FV,CardboardsIcon:RV,CardsIcon:TV,CaretDownIcon:EV,CaretLeftIcon:VV,CaretRightIcon:_V,CaretUpIcon:WV,CarouselHorizontalFilledIcon:XV,CarouselHorizontalIcon:qV,CarouselVerticalFilledIcon:YV,CarouselVerticalIcon:UV,CarrotOffIcon:GV,CarrotIcon:ZV,CashBanknoteOffIcon:KV,CashBanknoteIcon:QV,CashOffIcon:JV,CashIcon:t_,CastOffIcon:e_,CastIcon:n_,CatIcon:l_,Category2Icon:r_,CategoryIcon:o_,CeOffIcon:s_,CeIcon:a_,CellSignal1Icon:i_,CellSignal2Icon:h_,CellSignal3Icon:d_,CellSignal4Icon:c_,CellSignal5Icon:u_,CellSignalOffIcon:p_,CellIcon:g_,Certificate2OffIcon:w_,Certificate2Icon:v_,CertificateOffIcon:f_,CertificateIcon:m_,ChairDirectorIcon:k_,ChalkboardOffIcon:b_,ChalkboardIcon:M_,ChargingPileIcon:x_,ChartArcs3Icon:z_,ChartArcsIcon:I_,ChartAreaFilledIcon:y_,ChartAreaLineFilledIcon:C_,ChartAreaLineIcon:S_,ChartAreaIcon:$_,ChartArrowsVerticalIcon:A_,ChartArrowsIcon:B_,ChartBarOffIcon:H_,ChartBarIcon:N_,ChartBubbleFilledIcon:j_,ChartBubbleIcon:P_,ChartCandleFilledIcon:L_,ChartCandleIcon:D_,ChartCirclesIcon:O_,ChartDonut2Icon:F_,ChartDonut3Icon:R_,ChartDonut4Icon:T_,ChartDonutFilledIcon:E_,ChartDonutIcon:V_,ChartDots2Icon:__,ChartDots3Icon:W_,ChartDotsIcon:X_,ChartGridDotsIcon:q_,ChartHistogramIcon:Y_,ChartInfographicIcon:U_,ChartLineIcon:G_,ChartPie2Icon:Z_,ChartPie3Icon:K_,ChartPie4Icon:Q_,ChartPieFilledIcon:J_,ChartPieOffIcon:tW,ChartPieIcon:eW,ChartPpfIcon:nW,ChartRadarIcon:lW,ChartSankeyIcon:rW,ChartTreemapIcon:oW,CheckIcon:sW,CheckboxIcon:aW,ChecklistIcon:iW,ChecksIcon:hW,CheckupListIcon:dW,CheeseIcon:cW,ChefHatOffIcon:uW,ChefHatIcon:pW,CherryFilledIcon:gW,CherryIcon:wW,ChessBishopFilledIcon:vW,ChessBishopIcon:fW,ChessFilledIcon:mW,ChessKingFilledIcon:kW,ChessKingIcon:bW,ChessKnightFilledIcon:MW,ChessKnightIcon:xW,ChessQueenFilledIcon:zW,ChessQueenIcon:IW,ChessRookFilledIcon:yW,ChessRookIcon:CW,ChessIcon:SW,ChevronDownLeftIcon:$W,ChevronDownRightIcon:AW,ChevronDownIcon:BW,ChevronLeftIcon:HW,ChevronRightIcon:NW,ChevronUpLeftIcon:jW,ChevronUpRightIcon:PW,ChevronUpIcon:LW,ChevronsDownLeftIcon:DW,ChevronsDownRightIcon:OW,ChevronsDownIcon:FW,ChevronsLeftIcon:RW,ChevronsRightIcon:TW,ChevronsUpLeftIcon:EW,ChevronsUpRightIcon:VW,ChevronsUpIcon:_W,ChiselIcon:WW,ChristmasTreeOffIcon:XW,ChristmasTreeIcon:qW,Circle0FilledIcon:YW,Circle1FilledIcon:UW,Circle2FilledIcon:GW,Circle3FilledIcon:ZW,Circle4FilledIcon:KW,Circle5FilledIcon:QW,Circle6FilledIcon:JW,Circle7FilledIcon:tX,Circle8FilledIcon:eX,Circle9FilledIcon:nX,CircleArrowDownFilledIcon:lX,CircleArrowDownLeftFilledIcon:rX,CircleArrowDownLeftIcon:oX,CircleArrowDownRightFilledIcon:sX,CircleArrowDownRightIcon:aX,CircleArrowDownIcon:iX,CircleArrowLeftFilledIcon:hX,CircleArrowLeftIcon:dX,CircleArrowRightFilledIcon:cX,CircleArrowRightIcon:uX,CircleArrowUpFilledIcon:pX,CircleArrowUpLeftFilledIcon:gX,CircleArrowUpLeftIcon:wX,CircleArrowUpRightFilledIcon:vX,CircleArrowUpRightIcon:fX,CircleArrowUpIcon:mX,CircleCaretDownIcon:kX,CircleCaretLeftIcon:bX,CircleCaretRightIcon:MX,CircleCaretUpIcon:xX,CircleCheckFilledIcon:zX,CircleCheckIcon:IX,CircleChevronDownIcon:yX,CircleChevronLeftIcon:CX,CircleChevronRightIcon:SX,CircleChevronUpIcon:$X,CircleChevronsDownIcon:AX,CircleChevronsLeftIcon:BX,CircleChevronsRightIcon:HX,CircleChevronsUpIcon:NX,CircleDashedIcon:jX,CircleDotFilledIcon:PX,CircleDotIcon:LX,CircleDottedIcon:DX,CircleFilledIcon:OX,CircleHalf2Icon:FX,CircleHalfVerticalIcon:RX,CircleHalfIcon:TX,CircleKeyFilledIcon:EX,CircleKeyIcon:VX,CircleLetterAIcon:_X,CircleLetterBIcon:WX,CircleLetterCIcon:XX,CircleLetterDIcon:qX,CircleLetterEIcon:YX,CircleLetterFIcon:UX,CircleLetterGIcon:GX,CircleLetterHIcon:ZX,CircleLetterIIcon:KX,CircleLetterJIcon:QX,CircleLetterKIcon:JX,CircleLetterLIcon:tq,CircleLetterMIcon:eq,CircleLetterNIcon:nq,CircleLetterOIcon:lq,CircleLetterPIcon:rq,CircleLetterQIcon:oq,CircleLetterRIcon:sq,CircleLetterSIcon:aq,CircleLetterTIcon:iq,CircleLetterUIcon:hq,CircleLetterVIcon:dq,CircleLetterWIcon:cq,CircleLetterXIcon:uq,CircleLetterYIcon:pq,CircleLetterZIcon:gq,CircleMinusIcon:wq,CircleNumber0Icon:vq,CircleNumber1Icon:fq,CircleNumber2Icon:mq,CircleNumber3Icon:kq,CircleNumber4Icon:bq,CircleNumber5Icon:Mq,CircleNumber6Icon:xq,CircleNumber7Icon:zq,CircleNumber8Icon:Iq,CircleNumber9Icon:yq,CircleOffIcon:Cq,CirclePlusIcon:Sq,CircleRectangleOffIcon:$q,CircleRectangleIcon:Aq,CircleSquareIcon:Bq,CircleTriangleIcon:Hq,CircleXFilledIcon:Nq,CircleXIcon:jq,CircleIcon:Pq,CirclesFilledIcon:Lq,CirclesRelationIcon:Dq,CirclesIcon:Oq,CircuitAmmeterIcon:Fq,CircuitBatteryIcon:Rq,CircuitBulbIcon:Tq,CircuitCapacitorPolarizedIcon:Eq,CircuitCapacitorIcon:Vq,CircuitCellPlusIcon:_q,CircuitCellIcon:Wq,CircuitChangeoverIcon:Xq,CircuitDiodeZenerIcon:qq,CircuitDiodeIcon:Yq,CircuitGroundDigitalIcon:Uq,CircuitGroundIcon:Gq,CircuitInductorIcon:Zq,CircuitMotorIcon:Kq,CircuitPushbuttonIcon:Qq,CircuitResistorIcon:Jq,CircuitSwitchClosedIcon:tY,CircuitSwitchOpenIcon:eY,CircuitVoltmeterIcon:nY,ClearAllIcon:lY,ClearFormattingIcon:rY,ClickIcon:oY,ClipboardCheckIcon:sY,ClipboardCopyIcon:aY,ClipboardDataIcon:iY,ClipboardHeartIcon:hY,ClipboardListIcon:dY,ClipboardOffIcon:cY,ClipboardPlusIcon:uY,ClipboardTextIcon:pY,ClipboardTypographyIcon:gY,ClipboardXIcon:wY,ClipboardIcon:vY,Clock2Icon:fY,ClockBoltIcon:mY,ClockCancelIcon:kY,ClockCheckIcon:bY,ClockCodeIcon:MY,ClockCogIcon:xY,ClockDollarIcon:zY,ClockDownIcon:IY,ClockEditIcon:yY,ClockExclamationIcon:CY,ClockFilledIcon:SY,ClockHeartIcon:$Y,ClockHour1Icon:AY,ClockHour10Icon:BY,ClockHour11Icon:HY,ClockHour12Icon:NY,ClockHour2Icon:jY,ClockHour3Icon:PY,ClockHour4Icon:LY,ClockHour5Icon:DY,ClockHour6Icon:OY,ClockHour7Icon:FY,ClockHour8Icon:RY,ClockHour9Icon:TY,ClockMinusIcon:EY,ClockOffIcon:VY,ClockPauseIcon:_Y,ClockPinIcon:WY,ClockPlayIcon:XY,ClockPlusIcon:qY,ClockQuestionIcon:YY,ClockRecordIcon:UY,ClockSearchIcon:GY,ClockShareIcon:ZY,ClockShieldIcon:KY,ClockStarIcon:QY,ClockStopIcon:JY,ClockUpIcon:tU,ClockXIcon:eU,ClockIcon:nU,ClothesRackOffIcon:lU,ClothesRackIcon:rU,CloudBoltIcon:oU,CloudCancelIcon:sU,CloudCheckIcon:aU,CloudCodeIcon:iU,CloudCogIcon:hU,CloudComputingIcon:dU,CloudDataConnectionIcon:cU,CloudDollarIcon:uU,CloudDownIcon:pU,CloudDownloadIcon:gU,CloudExclamationIcon:wU,CloudFilledIcon:vU,CloudFogIcon:fU,CloudHeartIcon:mU,CloudLockOpenIcon:kU,CloudLockIcon:bU,CloudMinusIcon:MU,CloudOffIcon:xU,CloudPauseIcon:zU,CloudPinIcon:IU,CloudPlusIcon:yU,CloudQuestionIcon:CU,CloudRainIcon:SU,CloudSearchIcon:$U,CloudShareIcon:AU,CloudSnowIcon:BU,CloudStarIcon:HU,CloudStormIcon:NU,CloudUpIcon:jU,CloudUploadIcon:PU,CloudXIcon:LU,CloudIcon:DU,Clover2Icon:OU,CloverIcon:FU,ClubsFilledIcon:RU,ClubsIcon:TU,CodeAsterixIcon:EU,CodeCircle2Icon:VU,CodeCircleIcon:_U,CodeDotsIcon:WU,CodeMinusIcon:XU,CodeOffIcon:qU,CodePlusIcon:YU,CodeIcon:UU,CoffeeOffIcon:GU,CoffeeIcon:ZU,CoffinIcon:KU,CoinBitcoinIcon:QU,CoinEuroIcon:JU,CoinMoneroIcon:tG,CoinOffIcon:eG,CoinPoundIcon:nG,CoinRupeeIcon:lG,CoinYenIcon:rG,CoinYuanIcon:oG,CoinIcon:sG,CoinsIcon:aG,ColorFilterIcon:iG,ColorPickerOffIcon:hG,ColorPickerIcon:dG,ColorSwatchOffIcon:cG,ColorSwatchIcon:uG,ColumnInsertLeftIcon:pG,ColumnInsertRightIcon:gG,Columns1Icon:wG,Columns2Icon:vG,Columns3Icon:fG,ColumnsOffIcon:mG,ColumnsIcon:kG,CometIcon:bG,CommandOffIcon:MG,CommandIcon:xG,CompassOffIcon:zG,CompassIcon:IG,ComponentsOffIcon:yG,ComponentsIcon:CG,Cone2Icon:SG,ConeOffIcon:$G,ConePlusIcon:AG,ConeIcon:BG,ConfettiOffIcon:HG,ConfettiIcon:NG,ConfuciusIcon:jG,ContainerOffIcon:PG,ContainerIcon:LG,Contrast2OffIcon:DG,Contrast2Icon:OG,ContrastOffIcon:FG,ContrastIcon:RG,CookerIcon:TG,CookieManIcon:EG,CookieOffIcon:VG,CookieIcon:_G,CopyOffIcon:WG,CopyIcon:XG,CopyleftFilledIcon:qG,CopyleftOffIcon:YG,CopyleftIcon:UG,CopyrightFilledIcon:GG,CopyrightOffIcon:ZG,CopyrightIcon:KG,CornerDownLeftDoubleIcon:QG,CornerDownLeftIcon:JG,CornerDownRightDoubleIcon:tZ,CornerDownRightIcon:eZ,CornerLeftDownDoubleIcon:nZ,CornerLeftDownIcon:lZ,CornerLeftUpDoubleIcon:rZ,CornerLeftUpIcon:oZ,CornerRightDownDoubleIcon:sZ,CornerRightDownIcon:aZ,CornerRightUpDoubleIcon:iZ,CornerRightUpIcon:hZ,CornerUpLeftDoubleIcon:dZ,CornerUpLeftIcon:cZ,CornerUpRightDoubleIcon:uZ,CornerUpRightIcon:pZ,Cpu2Icon:gZ,CpuOffIcon:wZ,CpuIcon:vZ,CraneOffIcon:fZ,CraneIcon:mZ,CreativeCommonsByIcon:kZ,CreativeCommonsNcIcon:bZ,CreativeCommonsNdIcon:MZ,CreativeCommonsOffIcon:xZ,CreativeCommonsSaIcon:zZ,CreativeCommonsZeroIcon:IZ,CreativeCommonsIcon:yZ,CreditCardOffIcon:CZ,CreditCardIcon:SZ,CricketIcon:$Z,CropIcon:AZ,CrossFilledIcon:BZ,CrossOffIcon:HZ,CrossIcon:NZ,CrosshairIcon:jZ,CrownOffIcon:PZ,CrownIcon:LZ,CrutchesOffIcon:DZ,CrutchesIcon:OZ,CrystalBallIcon:FZ,CsvIcon:RZ,CubeOffIcon:TZ,CubePlusIcon:EZ,CubeSendIcon:VZ,CubeUnfoldedIcon:_Z,CubeIcon:WZ,CupOffIcon:XZ,CupIcon:qZ,CurlingIcon:YZ,CurlyLoopIcon:UZ,CurrencyAfghaniIcon:GZ,CurrencyBahrainiIcon:ZZ,CurrencyBahtIcon:KZ,CurrencyBitcoinIcon:QZ,CurrencyCentIcon:JZ,CurrencyDinarIcon:tK,CurrencyDirhamIcon:eK,CurrencyDogecoinIcon:nK,CurrencyDollarAustralianIcon:lK,CurrencyDollarBruneiIcon:rK,CurrencyDollarCanadianIcon:oK,CurrencyDollarGuyaneseIcon:sK,CurrencyDollarOffIcon:aK,CurrencyDollarSingaporeIcon:iK,CurrencyDollarZimbabweanIcon:hK,CurrencyDollarIcon:dK,CurrencyDongIcon:cK,CurrencyDramIcon:uK,CurrencyEthereumIcon:pK,CurrencyEuroOffIcon:gK,CurrencyEuroIcon:wK,CurrencyForintIcon:vK,CurrencyFrankIcon:fK,CurrencyGuaraniIcon:mK,CurrencyHryvniaIcon:kK,CurrencyIranianRialIcon:bK,CurrencyKipIcon:MK,CurrencyKroneCzechIcon:xK,CurrencyKroneDanishIcon:zK,CurrencyKroneSwedishIcon:IK,CurrencyLariIcon:yK,CurrencyLeuIcon:CK,CurrencyLiraIcon:SK,CurrencyLitecoinIcon:$K,CurrencyLydIcon:AK,CurrencyManatIcon:BK,CurrencyMoneroIcon:HK,CurrencyNairaIcon:NK,CurrencyNanoIcon:jK,CurrencyOffIcon:PK,CurrencyPaangaIcon:LK,CurrencyPesoIcon:DK,CurrencyPoundOffIcon:OK,CurrencyPoundIcon:FK,CurrencyQuetzalIcon:RK,CurrencyRealIcon:TK,CurrencyRenminbiIcon:EK,CurrencyRippleIcon:VK,CurrencyRiyalIcon:_K,CurrencyRubelIcon:WK,CurrencyRufiyaaIcon:XK,CurrencyRupeeNepaleseIcon:qK,CurrencyRupeeIcon:YK,CurrencyShekelIcon:UK,CurrencySolanaIcon:GK,CurrencySomIcon:ZK,CurrencyTakaIcon:KK,CurrencyTengeIcon:QK,CurrencyTugrikIcon:JK,CurrencyWonIcon:tQ,CurrencyYenOffIcon:eQ,CurrencyYenIcon:nQ,CurrencyYuanIcon:lQ,CurrencyZlotyIcon:rQ,CurrencyIcon:oQ,CurrentLocationOffIcon:sQ,CurrentLocationIcon:aQ,CursorOffIcon:iQ,CursorTextIcon:hQ,CutIcon:dQ,CylinderOffIcon:cQ,CylinderPlusIcon:uQ,CylinderIcon:pQ,DashboardOffIcon:gQ,DashboardIcon:wQ,DatabaseCogIcon:vQ,DatabaseDollarIcon:fQ,DatabaseEditIcon:mQ,DatabaseExclamationIcon:kQ,DatabaseExportIcon:bQ,DatabaseHeartIcon:MQ,DatabaseImportIcon:xQ,DatabaseLeakIcon:zQ,DatabaseMinusIcon:IQ,DatabaseOffIcon:yQ,DatabasePlusIcon:CQ,DatabaseSearchIcon:SQ,DatabaseShareIcon:$Q,DatabaseStarIcon:AQ,DatabaseXIcon:BQ,DatabaseIcon:HQ,DecimalIcon:NQ,DeerIcon:jQ,DeltaIcon:PQ,DentalBrokenIcon:LQ,DentalOffIcon:DQ,DentalIcon:OQ,DeselectIcon:FQ,DetailsOffIcon:RQ,DetailsIcon:TQ,DeviceAirpodsCaseIcon:EQ,DeviceAirpodsIcon:VQ,DeviceAnalyticsIcon:_Q,DeviceAudioTapeIcon:WQ,DeviceCameraPhoneIcon:XQ,DeviceCctvOffIcon:qQ,DeviceCctvIcon:YQ,DeviceComputerCameraOffIcon:UQ,DeviceComputerCameraIcon:GQ,DeviceDesktopAnalyticsIcon:ZQ,DeviceDesktopBoltIcon:KQ,DeviceDesktopCancelIcon:QQ,DeviceDesktopCheckIcon:JQ,DeviceDesktopCodeIcon:tJ,DeviceDesktopCogIcon:eJ,DeviceDesktopDollarIcon:nJ,DeviceDesktopDownIcon:lJ,DeviceDesktopExclamationIcon:rJ,DeviceDesktopHeartIcon:oJ,DeviceDesktopMinusIcon:sJ,DeviceDesktopOffIcon:aJ,DeviceDesktopPauseIcon:iJ,DeviceDesktopPinIcon:hJ,DeviceDesktopPlusIcon:dJ,DeviceDesktopQuestionIcon:cJ,DeviceDesktopSearchIcon:uJ,DeviceDesktopShareIcon:pJ,DeviceDesktopStarIcon:gJ,DeviceDesktopUpIcon:wJ,DeviceDesktopXIcon:vJ,DeviceDesktopIcon:fJ,DeviceFloppyIcon:mJ,DeviceGamepad2Icon:kJ,DeviceGamepadIcon:bJ,DeviceHeartMonitorFilledIcon:MJ,DeviceHeartMonitorIcon:xJ,DeviceImacBoltIcon:zJ,DeviceImacCancelIcon:IJ,DeviceImacCheckIcon:yJ,DeviceImacCodeIcon:CJ,DeviceImacCogIcon:SJ,DeviceImacDollarIcon:$J,DeviceImacDownIcon:AJ,DeviceImacExclamationIcon:BJ,DeviceImacHeartIcon:HJ,DeviceImacMinusIcon:NJ,DeviceImacOffIcon:jJ,DeviceImacPauseIcon:PJ,DeviceImacPinIcon:LJ,DeviceImacPlusIcon:DJ,DeviceImacQuestionIcon:OJ,DeviceImacSearchIcon:FJ,DeviceImacShareIcon:RJ,DeviceImacStarIcon:TJ,DeviceImacUpIcon:EJ,DeviceImacXIcon:VJ,DeviceImacIcon:_J,DeviceIpadBoltIcon:WJ,DeviceIpadCancelIcon:XJ,DeviceIpadCheckIcon:qJ,DeviceIpadCodeIcon:YJ,DeviceIpadCogIcon:UJ,DeviceIpadDollarIcon:GJ,DeviceIpadDownIcon:ZJ,DeviceIpadExclamationIcon:KJ,DeviceIpadHeartIcon:QJ,DeviceIpadHorizontalBoltIcon:JJ,DeviceIpadHorizontalCancelIcon:ttt,DeviceIpadHorizontalCheckIcon:ett,DeviceIpadHorizontalCodeIcon:ntt,DeviceIpadHorizontalCogIcon:ltt,DeviceIpadHorizontalDollarIcon:rtt,DeviceIpadHorizontalDownIcon:ott,DeviceIpadHorizontalExclamationIcon:stt,DeviceIpadHorizontalHeartIcon:att,DeviceIpadHorizontalMinusIcon:itt,DeviceIpadHorizontalOffIcon:htt,DeviceIpadHorizontalPauseIcon:dtt,DeviceIpadHorizontalPinIcon:ctt,DeviceIpadHorizontalPlusIcon:utt,DeviceIpadHorizontalQuestionIcon:ptt,DeviceIpadHorizontalSearchIcon:gtt,DeviceIpadHorizontalShareIcon:wtt,DeviceIpadHorizontalStarIcon:vtt,DeviceIpadHorizontalUpIcon:ftt,DeviceIpadHorizontalXIcon:mtt,DeviceIpadHorizontalIcon:ktt,DeviceIpadMinusIcon:btt,DeviceIpadOffIcon:Mtt,DeviceIpadPauseIcon:xtt,DeviceIpadPinIcon:ztt,DeviceIpadPlusIcon:Itt,DeviceIpadQuestionIcon:ytt,DeviceIpadSearchIcon:Ctt,DeviceIpadShareIcon:Stt,DeviceIpadStarIcon:$tt,DeviceIpadUpIcon:Att,DeviceIpadXIcon:Btt,DeviceIpadIcon:Htt,DeviceLandlinePhoneIcon:Ntt,DeviceLaptopOffIcon:jtt,DeviceLaptopIcon:Ptt,DeviceMobileBoltIcon:Ltt,DeviceMobileCancelIcon:Dtt,DeviceMobileChargingIcon:Ott,DeviceMobileCheckIcon:Ftt,DeviceMobileCodeIcon:Rtt,DeviceMobileCogIcon:Ttt,DeviceMobileDollarIcon:Ett,DeviceMobileDownIcon:Vtt,DeviceMobileExclamationIcon:_tt,DeviceMobileFilledIcon:Wtt,DeviceMobileHeartIcon:Xtt,DeviceMobileMessageIcon:qtt,DeviceMobileMinusIcon:Ytt,DeviceMobileOffIcon:Utt,DeviceMobilePauseIcon:Gtt,DeviceMobilePinIcon:Ztt,DeviceMobilePlusIcon:Ktt,DeviceMobileQuestionIcon:Qtt,DeviceMobileRotatedIcon:Jtt,DeviceMobileSearchIcon:tet,DeviceMobileShareIcon:eet,DeviceMobileStarIcon:net,DeviceMobileUpIcon:ret,DeviceMobileVibrationIcon:oet,DeviceMobileXIcon:set,DeviceMobileIcon:aet,DeviceNintendoOffIcon:iet,DeviceNintendoIcon:het,DeviceRemoteIcon:det,DeviceSdCardIcon:cet,DeviceSim1Icon:uet,DeviceSim2Icon:pet,DeviceSim3Icon:get,DeviceSimIcon:wet,DeviceSpeakerOffIcon:vet,DeviceSpeakerIcon:fet,DeviceTabletBoltIcon:met,DeviceTabletCancelIcon:ket,DeviceTabletCheckIcon:bet,DeviceTabletCodeIcon:Met,DeviceTabletCogIcon:xet,DeviceTabletDollarIcon:zet,DeviceTabletDownIcon:Iet,DeviceTabletExclamationIcon:yet,DeviceTabletFilledIcon:Cet,DeviceTabletHeartIcon:$et,DeviceTabletMinusIcon:Aet,DeviceTabletOffIcon:Bet,DeviceTabletPauseIcon:Het,DeviceTabletPinIcon:Net,DeviceTabletPlusIcon:jet,DeviceTabletQuestionIcon:Pet,DeviceTabletSearchIcon:Let,DeviceTabletShareIcon:Det,DeviceTabletStarIcon:Oet,DeviceTabletUpIcon:Fet,DeviceTabletXIcon:Ret,DeviceTabletIcon:Tet,DeviceTvOffIcon:Eet,DeviceTvOldIcon:Vet,DeviceTvIcon:_et,DeviceWatchBoltIcon:Wet,DeviceWatchCancelIcon:Xet,DeviceWatchCheckIcon:qet,DeviceWatchCodeIcon:Yet,DeviceWatchCogIcon:Uet,DeviceWatchDollarIcon:Get,DeviceWatchDownIcon:Zet,DeviceWatchExclamationIcon:Ket,DeviceWatchHeartIcon:Qet,DeviceWatchMinusIcon:Jet,DeviceWatchOffIcon:tnt,DeviceWatchPauseIcon:ent,DeviceWatchPinIcon:nnt,DeviceWatchPlusIcon:lnt,DeviceWatchQuestionIcon:rnt,DeviceWatchSearchIcon:ont,DeviceWatchShareIcon:snt,DeviceWatchStarIcon:ant,DeviceWatchStats2Icon:int,DeviceWatchStatsIcon:hnt,DeviceWatchUpIcon:dnt,DeviceWatchXIcon:cnt,DeviceWatchIcon:unt,Devices2Icon:pnt,DevicesBoltIcon:gnt,DevicesCancelIcon:wnt,DevicesCheckIcon:vnt,DevicesCodeIcon:fnt,DevicesCogIcon:mnt,DevicesDollarIcon:knt,DevicesDownIcon:bnt,DevicesExclamationIcon:Mnt,DevicesHeartIcon:xnt,DevicesMinusIcon:znt,DevicesOffIcon:Int,DevicesPauseIcon:ynt,DevicesPcOffIcon:Cnt,DevicesPcIcon:Snt,DevicesPinIcon:$nt,DevicesPlusIcon:Ant,DevicesQuestionIcon:Bnt,DevicesSearchIcon:Hnt,DevicesShareIcon:Nnt,DevicesStarIcon:jnt,DevicesUpIcon:Pnt,DevicesXIcon:Lnt,DevicesIcon:Dnt,DiaboloOffIcon:Ont,DiaboloPlusIcon:Fnt,DiaboloIcon:Rnt,DialpadFilledIcon:Tnt,DialpadOffIcon:Ent,DialpadIcon:Vnt,DiamondFilledIcon:_nt,DiamondOffIcon:Wnt,DiamondIcon:Xnt,DiamondsFilledIcon:qnt,DiamondsIcon:Ynt,Dice1FilledIcon:Unt,Dice1Icon:Gnt,Dice2FilledIcon:Znt,Dice2Icon:Knt,Dice3FilledIcon:Qnt,Dice3Icon:Jnt,Dice4FilledIcon:tlt,Dice4Icon:elt,Dice5FilledIcon:nlt,Dice5Icon:llt,Dice6FilledIcon:rlt,Dice6Icon:olt,DiceFilledIcon:slt,DiceIcon:alt,DimensionsIcon:ilt,DirectionHorizontalIcon:hlt,DirectionSignFilledIcon:dlt,DirectionSignOffIcon:clt,DirectionSignIcon:ult,DirectionIcon:plt,DirectionsOffIcon:glt,DirectionsIcon:wlt,Disabled2Icon:vlt,DisabledOffIcon:flt,DisabledIcon:mlt,DiscGolfIcon:klt,DiscOffIcon:blt,DiscIcon:Mlt,Discount2OffIcon:xlt,Discount2Icon:zlt,DiscountCheckFilledIcon:Ilt,DiscountCheckIcon:ylt,DiscountOffIcon:Clt,DiscountIcon:Slt,DivideIcon:$lt,Dna2OffIcon:Alt,Dna2Icon:Blt,DnaOffIcon:Hlt,DnaIcon:Nlt,DogBowlIcon:jlt,DogIcon:Plt,DoorEnterIcon:Llt,DoorExitIcon:Dlt,DoorOffIcon:Olt,DoorIcon:Flt,DotsCircleHorizontalIcon:Rlt,DotsDiagonal2Icon:Tlt,DotsDiagonalIcon:Elt,DotsVerticalIcon:Vlt,DotsIcon:_lt,DownloadOffIcon:Wlt,DownloadIcon:Xlt,DragDrop2Icon:qlt,DragDropIcon:Ylt,DroneOffIcon:Ult,DroneIcon:Glt,DropCircleIcon:Zlt,DropletBoltIcon:Klt,DropletCancelIcon:Qlt,DropletCheckIcon:Jlt,DropletCodeIcon:trt,DropletCogIcon:ert,DropletDollarIcon:nrt,DropletDownIcon:lrt,DropletExclamationIcon:rrt,DropletFilled2Icon:ort,DropletFilledIcon:srt,DropletHalf2Icon:art,DropletHalfFilledIcon:irt,DropletHalfIcon:hrt,DropletHeartIcon:drt,DropletMinusIcon:crt,DropletOffIcon:urt,DropletPauseIcon:prt,DropletPinIcon:grt,DropletPlusIcon:wrt,DropletQuestionIcon:vrt,DropletSearchIcon:frt,DropletShareIcon:mrt,DropletStarIcon:krt,DropletUpIcon:brt,DropletXIcon:Mrt,DropletIcon:xrt,DualScreenIcon:zrt,EPassportIcon:Irt,EarOffIcon:yrt,EarIcon:Crt,EaseInControlPointIcon:Srt,EaseInOutControlPointsIcon:$rt,EaseInOutIcon:Art,EaseInIcon:Brt,EaseOutControlPointIcon:Hrt,EaseOutIcon:Nrt,EditCircleOffIcon:jrt,EditCircleIcon:Prt,EditOffIcon:Lrt,EditIcon:Drt,EggCrackedIcon:Ort,EggFilledIcon:Frt,EggFriedIcon:Rrt,EggOffIcon:Trt,EggIcon:Ert,EggsIcon:Vrt,ElevatorOffIcon:_rt,ElevatorIcon:Wrt,EmergencyBedIcon:Xrt,EmpathizeOffIcon:qrt,EmpathizeIcon:Yrt,EmphasisIcon:Urt,EngineOffIcon:Grt,EngineIcon:Zrt,EqualDoubleIcon:Krt,EqualNotIcon:Qrt,EqualIcon:Jrt,EraserOffIcon:tot,EraserIcon:eot,Error404OffIcon:not,Error404Icon:lot,ExchangeOffIcon:rot,ExchangeIcon:oot,ExclamationCircleIcon:sot,ExclamationMarkOffIcon:aot,ExclamationMarkIcon:iot,ExplicitOffIcon:hot,ExplicitIcon:dot,Exposure0Icon:cot,ExposureMinus1Icon:uot,ExposureMinus2Icon:pot,ExposureOffIcon:got,ExposurePlus1Icon:wot,ExposurePlus2Icon:vot,ExposureIcon:fot,ExternalLinkOffIcon:mot,ExternalLinkIcon:kot,EyeCheckIcon:bot,EyeClosedIcon:Mot,EyeCogIcon:xot,EyeEditIcon:zot,EyeExclamationIcon:Iot,EyeFilledIcon:yot,EyeHeartIcon:Cot,EyeOffIcon:Sot,EyeTableIcon:$ot,EyeXIcon:Aot,EyeIcon:Bot,Eyeglass2Icon:Hot,EyeglassOffIcon:Not,EyeglassIcon:jot,FaceIdErrorIcon:Pot,FaceIdIcon:Lot,FaceMaskOffIcon:Dot,FaceMaskIcon:Oot,FallIcon:Fot,FeatherOffIcon:Rot,FeatherIcon:Tot,FenceOffIcon:Eot,FenceIcon:Vot,FidgetSpinnerIcon:_ot,File3dIcon:Wot,FileAlertIcon:Xot,FileAnalyticsIcon:qot,FileArrowLeftIcon:Yot,FileArrowRightIcon:Uot,FileBarcodeIcon:Got,FileBrokenIcon:Zot,FileCertificateIcon:Kot,FileChartIcon:Qot,FileCheckIcon:Jot,FileCode2Icon:tst,FileCodeIcon:est,FileCvIcon:nst,FileDatabaseIcon:lst,FileDeltaIcon:rst,FileDescriptionIcon:ost,FileDiffIcon:sst,FileDigitIcon:ast,FileDislikeIcon:ist,FileDollarIcon:hst,FileDotsIcon:dst,FileDownloadIcon:cst,FileEuroIcon:ust,FileExportIcon:pst,FileFilledIcon:gst,FileFunctionIcon:wst,FileHorizontalIcon:vst,FileImportIcon:fst,FileInfinityIcon:mst,FileInfoIcon:kst,FileInvoiceIcon:bst,FileLambdaIcon:Mst,FileLikeIcon:xst,FileMinusIcon:zst,FileMusicIcon:Ist,FileOffIcon:yst,FileOrientationIcon:Cst,FilePencilIcon:Sst,FilePercentIcon:$st,FilePhoneIcon:Ast,FilePlusIcon:Bst,FilePowerIcon:Hst,FileReportIcon:Nst,FileRssIcon:jst,FileScissorsIcon:Pst,FileSearchIcon:Lst,FileSettingsIcon:Dst,FileShredderIcon:Ost,FileSignalIcon:Fst,FileSpreadsheetIcon:Rst,FileStackIcon:Tst,FileStarIcon:Est,FileSymlinkIcon:Vst,FileTextAiIcon:_st,FileTextIcon:Wst,FileTimeIcon:Xst,FileTypographyIcon:qst,FileUnknownIcon:Yst,FileUploadIcon:Ust,FileVectorIcon:Gst,FileXFilledIcon:Zst,FileXIcon:Kst,FileZipIcon:Qst,FileIcon:Jst,FilesOffIcon:tat,FilesIcon:eat,FilterCogIcon:nat,FilterDollarIcon:lat,FilterEditIcon:rat,FilterMinusIcon:oat,FilterOffIcon:sat,FilterPlusIcon:aat,FilterStarIcon:iat,FilterXIcon:hat,FilterIcon:dat,FiltersIcon:cat,FingerprintOffIcon:uat,FingerprintIcon:pat,FireHydrantOffIcon:gat,FireHydrantIcon:wat,FiretruckIcon:vat,FirstAidKitOffIcon:fat,FirstAidKitIcon:mat,FishBoneIcon:kat,FishChristianityIcon:bat,FishHookOffIcon:Mat,FishHookIcon:xat,FishOffIcon:zat,FishIcon:Iat,Flag2FilledIcon:yat,Flag2OffIcon:Cat,Flag2Icon:Sat,Flag3FilledIcon:$at,Flag3Icon:Aat,FlagFilledIcon:Bat,FlagOffIcon:Hat,FlagIcon:Nat,FlameOffIcon:jat,FlameIcon:Pat,FlareIcon:Lat,Flask2OffIcon:Dat,Flask2Icon:Oat,FlaskOffIcon:Fat,FlaskIcon:Rat,FlipFlopsIcon:Tat,FlipHorizontalIcon:Eat,FlipVerticalIcon:Vat,FloatCenterIcon:_at,FloatLeftIcon:Wat,FloatNoneIcon:Xat,FloatRightIcon:qat,FlowerOffIcon:Yat,FlowerIcon:Uat,Focus2Icon:Gat,FocusAutoIcon:Zat,FocusCenteredIcon:Kat,FocusIcon:Qat,FoldDownIcon:Jat,FoldUpIcon:tit,FoldIcon:eit,FolderBoltIcon:nit,FolderCancelIcon:lit,FolderCheckIcon:rit,FolderCodeIcon:oit,FolderCogIcon:sit,FolderDollarIcon:ait,FolderDownIcon:iit,FolderExclamationIcon:hit,FolderFilledIcon:dit,FolderHeartIcon:cit,FolderMinusIcon:uit,FolderOffIcon:pit,FolderPauseIcon:git,FolderPinIcon:wit,FolderPlusIcon:vit,FolderQuestionIcon:fit,FolderSearchIcon:mit,FolderShareIcon:kit,FolderStarIcon:bit,FolderSymlinkIcon:Mit,FolderUpIcon:xit,FolderXIcon:zit,FolderIcon:Iit,FoldersOffIcon:yit,FoldersIcon:Cit,Forbid2Icon:Sit,ForbidIcon:$it,ForkliftIcon:Ait,FormsIcon:Bit,FountainOffIcon:Hit,FountainIcon:Nit,FrameOffIcon:jit,FrameIcon:Pit,FreeRightsIcon:Lit,FreezeColumnIcon:Dit,FreezeRowColumnIcon:Oit,FreezeRowIcon:Fit,FridgeOffIcon:Rit,FridgeIcon:Tit,FriendsOffIcon:Eit,FriendsIcon:Vit,FrustumOffIcon:_it,FrustumPlusIcon:Wit,FrustumIcon:Xit,FunctionOffIcon:qit,FunctionIcon:Yit,GardenCartOffIcon:Uit,GardenCartIcon:Git,GasStationOffIcon:Zit,GasStationIcon:Kit,GaugeOffIcon:Qit,GaugeIcon:Jit,GavelIcon:t0t,GenderAgenderIcon:e0t,GenderAndrogyneIcon:n0t,GenderBigenderIcon:l0t,GenderDemiboyIcon:r0t,GenderDemigirlIcon:o0t,GenderEpiceneIcon:s0t,GenderFemaleIcon:a0t,GenderFemmeIcon:i0t,GenderGenderfluidIcon:h0t,GenderGenderlessIcon:d0t,GenderGenderqueerIcon:c0t,GenderHermaphroditeIcon:u0t,GenderIntergenderIcon:p0t,GenderMaleIcon:g0t,GenderNeutroisIcon:w0t,GenderThirdIcon:v0t,GenderTransgenderIcon:f0t,GenderTrasvestiIcon:m0t,GeometryIcon:k0t,Ghost2FilledIcon:b0t,Ghost2Icon:M0t,GhostFilledIcon:x0t,GhostOffIcon:z0t,GhostIcon:I0t,GifIcon:y0t,GiftCardIcon:C0t,GiftOffIcon:S0t,GiftIcon:$0t,GitBranchDeletedIcon:A0t,GitBranchIcon:B0t,GitCherryPickIcon:H0t,GitCommitIcon:N0t,GitCompareIcon:j0t,GitForkIcon:P0t,GitMergeIcon:L0t,GitPullRequestClosedIcon:D0t,GitPullRequestDraftIcon:O0t,GitPullRequestIcon:F0t,GizmoIcon:R0t,GlassFullIcon:T0t,GlassOffIcon:E0t,GlassIcon:V0t,GlobeOffIcon:_0t,GlobeIcon:W0t,GoGameIcon:X0t,GolfOffIcon:q0t,GolfIcon:Y0t,GpsIcon:U0t,GradienterIcon:G0t,GrainIcon:Z0t,GraphOffIcon:K0t,GraphIcon:Q0t,Grave2Icon:J0t,GraveIcon:tht,GridDotsIcon:eht,GridPatternIcon:nht,GrillForkIcon:lht,GrillOffIcon:rht,GrillSpatulaIcon:oht,GrillIcon:sht,GripHorizontalIcon:aht,GripVerticalIcon:iht,GrowthIcon:hht,GuitarPickFilledIcon:dht,GuitarPickIcon:cht,H1Icon:uht,H2Icon:pht,H3Icon:ght,H4Icon:wht,H5Icon:vht,H6Icon:fht,HammerOffIcon:mht,HammerIcon:kht,HandClickIcon:bht,HandFingerOffIcon:Mht,HandFingerIcon:xht,HandGrabIcon:zht,HandLittleFingerIcon:Iht,HandMiddleFingerIcon:yht,HandMoveIcon:Cht,HandOffIcon:Sht,HandRingFingerIcon:$ht,HandRockIcon:Aht,HandSanitizerIcon:Bht,HandStopIcon:Hht,HandThreeFingersIcon:Nht,HandTwoFingersIcon:jht,Hanger2Icon:Pht,HangerOffIcon:Lht,HangerIcon:Dht,HashIcon:Oht,HazeIcon:Fht,HdrIcon:Rht,HeadingOffIcon:Tht,HeadingIcon:Eht,HeadphonesFilledIcon:Vht,HeadphonesOffIcon:_ht,HeadphonesIcon:Wht,HeadsetOffIcon:Xht,HeadsetIcon:qht,HealthRecognitionIcon:Yht,HeartBrokenIcon:Uht,HeartFilledIcon:Ght,HeartHandshakeIcon:Zht,HeartMinusIcon:Kht,HeartOffIcon:Qht,HeartPlusIcon:Jht,HeartRateMonitorIcon:t2t,HeartIcon:e2t,HeartbeatIcon:n2t,HeartsOffIcon:l2t,HeartsIcon:r2t,HelicopterLandingIcon:o2t,HelicopterIcon:s2t,HelmetOffIcon:a2t,HelmetIcon:i2t,HelpCircleFilledIcon:h2t,HelpCircleIcon:d2t,HelpHexagonFilledIcon:c2t,HelpHexagonIcon:u2t,HelpOctagonFilledIcon:p2t,HelpOctagonIcon:g2t,HelpOffIcon:w2t,HelpSmallIcon:v2t,HelpSquareFilledIcon:f2t,HelpSquareRoundedFilledIcon:m2t,HelpSquareRoundedIcon:k2t,HelpSquareIcon:b2t,HelpTriangleFilledIcon:M2t,HelpTriangleIcon:x2t,HelpIcon:z2t,HemisphereOffIcon:I2t,HemispherePlusIcon:y2t,HemisphereIcon:C2t,Hexagon0FilledIcon:S2t,Hexagon1FilledIcon:$2t,Hexagon2FilledIcon:A2t,Hexagon3FilledIcon:B2t,Hexagon3dIcon:H2t,Hexagon4FilledIcon:N2t,Hexagon5FilledIcon:j2t,Hexagon6FilledIcon:P2t,Hexagon7FilledIcon:L2t,Hexagon8FilledIcon:D2t,Hexagon9FilledIcon:O2t,HexagonFilledIcon:F2t,HexagonLetterAIcon:R2t,HexagonLetterBIcon:T2t,HexagonLetterCIcon:E2t,HexagonLetterDIcon:V2t,HexagonLetterEIcon:_2t,HexagonLetterFIcon:W2t,HexagonLetterGIcon:X2t,HexagonLetterHIcon:q2t,HexagonLetterIIcon:Y2t,HexagonLetterJIcon:U2t,HexagonLetterKIcon:G2t,HexagonLetterLIcon:Z2t,HexagonLetterMIcon:K2t,HexagonLetterNIcon:Q2t,HexagonLetterOIcon:J2t,HexagonLetterPIcon:t1t,HexagonLetterQIcon:e1t,HexagonLetterRIcon:n1t,HexagonLetterSIcon:l1t,HexagonLetterTIcon:r1t,HexagonLetterUIcon:o1t,HexagonLetterVIcon:s1t,HexagonLetterWIcon:a1t,HexagonLetterXIcon:i1t,HexagonLetterYIcon:h1t,HexagonLetterZIcon:d1t,HexagonNumber0Icon:c1t,HexagonNumber1Icon:u1t,HexagonNumber2Icon:p1t,HexagonNumber3Icon:g1t,HexagonNumber4Icon:w1t,HexagonNumber5Icon:v1t,HexagonNumber6Icon:f1t,HexagonNumber7Icon:m1t,HexagonNumber8Icon:k1t,HexagonNumber9Icon:b1t,HexagonOffIcon:M1t,HexagonIcon:x1t,HexagonalPrismOffIcon:z1t,HexagonalPrismPlusIcon:I1t,HexagonalPrismIcon:y1t,HexagonalPyramidOffIcon:C1t,HexagonalPyramidPlusIcon:S1t,HexagonalPyramidIcon:$1t,HexagonsOffIcon:A1t,HexagonsIcon:B1t,Hierarchy2Icon:H1t,Hierarchy3Icon:N1t,HierarchyOffIcon:j1t,HierarchyIcon:P1t,HighlightOffIcon:L1t,HighlightIcon:D1t,HistoryOffIcon:O1t,HistoryToggleIcon:F1t,HistoryIcon:R1t,Home2Icon:T1t,HomeBoltIcon:E1t,HomeCancelIcon:V1t,HomeCheckIcon:_1t,HomeCogIcon:W1t,HomeDollarIcon:X1t,HomeDotIcon:q1t,HomeDownIcon:Y1t,HomeEcoIcon:U1t,HomeEditIcon:G1t,HomeExclamationIcon:Z1t,HomeHandIcon:K1t,HomeHeartIcon:Q1t,HomeInfinityIcon:J1t,HomeLinkIcon:tdt,HomeMinusIcon:edt,HomeMoveIcon:ndt,HomeOffIcon:ldt,HomePlusIcon:rdt,HomeQuestionIcon:odt,HomeRibbonIcon:sdt,HomeSearchIcon:adt,HomeShareIcon:idt,HomeShieldIcon:hdt,HomeSignalIcon:ddt,HomeStarIcon:cdt,HomeStatsIcon:udt,HomeUpIcon:pdt,HomeXIcon:gdt,HomeIcon:wdt,HorseToyIcon:vdt,HotelServiceIcon:fdt,HourglassEmptyIcon:mdt,HourglassFilledIcon:kdt,HourglassHighIcon:bdt,HourglassLowIcon:Mdt,HourglassOffIcon:xdt,HourglassIcon:zdt,HtmlIcon:Idt,HttpConnectIcon:ydt,HttpDeleteIcon:Cdt,HttpGetIcon:Sdt,HttpHeadIcon:$dt,HttpOptionsIcon:Adt,HttpPatchIcon:Bdt,HttpPostIcon:Hdt,HttpPutIcon:Ndt,HttpQueIcon:jdt,HttpTraceIcon:Pdt,IceCream2Icon:Ldt,IceCreamOffIcon:Ddt,IceCreamIcon:Odt,IceSkatingIcon:Fdt,IconsOffIcon:Rdt,IconsIcon:Tdt,IdBadge2Icon:Edt,IdBadgeOffIcon:Vdt,IdBadgeIcon:_dt,IdOffIcon:Wdt,IdIcon:Xdt,InboxOffIcon:qdt,InboxIcon:Ydt,IndentDecreaseIcon:Udt,IndentIncreaseIcon:Gdt,InfinityOffIcon:Zdt,InfinityIcon:Kdt,InfoCircleFilledIcon:Qdt,InfoCircleIcon:Jdt,InfoHexagonFilledIcon:tct,InfoHexagonIcon:ect,InfoOctagonFilledIcon:nct,InfoOctagonIcon:lct,InfoSmallIcon:rct,InfoSquareFilledIcon:oct,InfoSquareRoundedFilledIcon:sct,InfoSquareRoundedIcon:act,InfoSquareIcon:ict,InfoTriangleFilledIcon:hct,InfoTriangleIcon:dct,InnerShadowBottomFilledIcon:cct,InnerShadowBottomLeftFilledIcon:uct,InnerShadowBottomLeftIcon:pct,InnerShadowBottomRightFilledIcon:gct,InnerShadowBottomRightIcon:wct,InnerShadowBottomIcon:vct,InnerShadowLeftFilledIcon:fct,InnerShadowLeftIcon:mct,InnerShadowRightFilledIcon:kct,InnerShadowRightIcon:bct,InnerShadowTopFilledIcon:Mct,InnerShadowTopLeftFilledIcon:xct,InnerShadowTopLeftIcon:zct,InnerShadowTopRightFilledIcon:Ict,InnerShadowTopRightIcon:yct,InnerShadowTopIcon:Cct,InputSearchIcon:Sct,Ironing1Icon:$ct,Ironing2Icon:Act,Ironing3Icon:Bct,IroningOffIcon:Hct,IroningSteamOffIcon:Nct,IroningSteamIcon:jct,IroningIcon:Pct,IrregularPolyhedronOffIcon:Lct,IrregularPolyhedronPlusIcon:Dct,IrregularPolyhedronIcon:Oct,ItalicIcon:Fct,JacketIcon:Rct,JetpackIcon:Tct,JewishStarFilledIcon:Ect,JewishStarIcon:Vct,JpgIcon:_ct,JsonIcon:Wct,JumpRopeIcon:Xct,KarateIcon:qct,KayakIcon:Yct,KeringIcon:Uct,KeyOffIcon:Gct,KeyIcon:Zct,KeyboardHideIcon:Kct,KeyboardOffIcon:Qct,KeyboardShowIcon:Jct,KeyboardIcon:tut,KeyframeAlignCenterIcon:eut,KeyframeAlignHorizontalIcon:nut,KeyframeAlignVerticalIcon:lut,KeyframeIcon:rut,KeyframesIcon:out,LadderOffIcon:sut,LadderIcon:aut,LambdaIcon:iut,Lamp2Icon:hut,LampOffIcon:dut,LampIcon:cut,LanguageHiraganaIcon:uut,LanguageKatakanaIcon:put,LanguageOffIcon:gut,LanguageIcon:wut,LassoOffIcon:vut,LassoPolygonIcon:fut,LassoIcon:mut,LayersDifferenceIcon:kut,LayersIntersect2Icon:but,LayersIntersectIcon:Mut,LayersLinkedIcon:xut,LayersOffIcon:zut,LayersSubtractIcon:Iut,LayersUnionIcon:yut,Layout2Icon:Cut,LayoutAlignBottomIcon:Sut,LayoutAlignCenterIcon:$ut,LayoutAlignLeftIcon:Aut,LayoutAlignMiddleIcon:But,LayoutAlignRightIcon:Hut,LayoutAlignTopIcon:Nut,LayoutBoardSplitIcon:jut,LayoutBoardIcon:Put,LayoutBottombarCollapseIcon:Lut,LayoutBottombarExpandIcon:Dut,LayoutBottombarIcon:Out,LayoutCardsIcon:Fut,LayoutCollageIcon:Rut,LayoutColumnsIcon:Tut,LayoutDashboardIcon:Eut,LayoutDistributeHorizontalIcon:Vut,LayoutDistributeVerticalIcon:_ut,LayoutGridAddIcon:Wut,LayoutGridRemoveIcon:Xut,LayoutGridIcon:qut,LayoutKanbanIcon:Yut,LayoutListIcon:Uut,LayoutNavbarCollapseIcon:Gut,LayoutNavbarExpandIcon:Zut,LayoutNavbarIcon:Kut,LayoutOffIcon:Qut,LayoutRowsIcon:Jut,LayoutSidebarLeftCollapseIcon:tpt,LayoutSidebarLeftExpandIcon:ept,LayoutSidebarRightCollapseIcon:npt,LayoutSidebarRightExpandIcon:lpt,LayoutSidebarRightIcon:rpt,LayoutSidebarIcon:opt,LayoutIcon:spt,LeafOffIcon:apt,LeafIcon:ipt,LegoOffIcon:hpt,LegoIcon:dpt,Lemon2Icon:cpt,LemonIcon:upt,LetterAIcon:ppt,LetterBIcon:gpt,LetterCIcon:wpt,LetterCaseLowerIcon:vpt,LetterCaseToggleIcon:fpt,LetterCaseUpperIcon:mpt,LetterCaseIcon:kpt,LetterDIcon:bpt,LetterEIcon:Mpt,LetterFIcon:xpt,LetterGIcon:zpt,LetterHIcon:Ipt,LetterIIcon:ypt,LetterJIcon:Cpt,LetterKIcon:Spt,LetterLIcon:$pt,LetterMIcon:Apt,LetterNIcon:Bpt,LetterOIcon:Hpt,LetterPIcon:Npt,LetterQIcon:jpt,LetterRIcon:Ppt,LetterSIcon:Lpt,LetterSpacingIcon:Dpt,LetterTIcon:Opt,LetterUIcon:Fpt,LetterVIcon:Rpt,LetterWIcon:Tpt,LetterXIcon:Ept,LetterYIcon:Vpt,LetterZIcon:_pt,LicenseOffIcon:Wpt,LicenseIcon:Xpt,LifebuoyOffIcon:qpt,LifebuoyIcon:Ypt,LighterIcon:Upt,LineDashedIcon:Gpt,LineDottedIcon:Zpt,LineHeightIcon:Kpt,LineIcon:Qpt,LinkOffIcon:Jpt,LinkIcon:t4t,ListCheckIcon:e4t,ListDetailsIcon:n4t,ListNumbersIcon:l4t,ListSearchIcon:r4t,ListIcon:o4t,LivePhotoOffIcon:s4t,LivePhotoIcon:a4t,LiveViewIcon:i4t,LoadBalancerIcon:h4t,Loader2Icon:d4t,Loader3Icon:c4t,LoaderQuarterIcon:u4t,LoaderIcon:p4t,LocationBrokenIcon:g4t,LocationFilledIcon:w4t,LocationOffIcon:v4t,LocationIcon:f4t,LockAccessOffIcon:m4t,LockAccessIcon:k4t,LockBoltIcon:b4t,LockCancelIcon:M4t,LockCheckIcon:x4t,LockCodeIcon:z4t,LockCogIcon:I4t,LockDollarIcon:y4t,LockDownIcon:C4t,LockExclamationIcon:S4t,LockHeartIcon:$4t,LockMinusIcon:A4t,LockOffIcon:B4t,LockOpenOffIcon:H4t,LockOpenIcon:N4t,LockPauseIcon:j4t,LockPinIcon:P4t,LockPlusIcon:L4t,LockQuestionIcon:D4t,LockSearchIcon:O4t,LockShareIcon:F4t,LockSquareRoundedFilledIcon:R4t,LockSquareRoundedIcon:T4t,LockSquareIcon:E4t,LockStarIcon:V4t,LockUpIcon:_4t,LockXIcon:W4t,LockIcon:X4t,LogicAndIcon:q4t,LogicBufferIcon:Y4t,LogicNandIcon:U4t,LogicNorIcon:G4t,LogicNotIcon:Z4t,LogicOrIcon:K4t,LogicXnorIcon:Q4t,LogicXorIcon:J4t,LoginIcon:tgt,Logout2Icon:egt,LogoutIcon:ngt,LollipopOffIcon:lgt,LollipopIcon:rgt,LuggageOffIcon:ogt,LuggageIcon:sgt,LungsOffIcon:agt,LungsIcon:igt,MacroOffIcon:hgt,MacroIcon:dgt,MagnetOffIcon:cgt,MagnetIcon:ugt,MailAiIcon:pgt,MailBoltIcon:ggt,MailCancelIcon:wgt,MailCheckIcon:vgt,MailCodeIcon:fgt,MailCogIcon:mgt,MailDollarIcon:kgt,MailDownIcon:bgt,MailExclamationIcon:Mgt,MailFastIcon:xgt,MailFilledIcon:zgt,MailForwardIcon:Igt,MailHeartIcon:ygt,MailMinusIcon:Cgt,MailOffIcon:Sgt,MailOpenedFilledIcon:$gt,MailOpenedIcon:Agt,MailPauseIcon:Bgt,MailPinIcon:Hgt,MailPlusIcon:Ngt,MailQuestionIcon:jgt,MailSearchIcon:Pgt,MailShareIcon:Lgt,MailStarIcon:Dgt,MailUpIcon:Ogt,MailXIcon:Fgt,MailIcon:Rgt,MailboxOffIcon:Tgt,MailboxIcon:Egt,ManIcon:Vgt,ManualGearboxIcon:_gt,Map2Icon:Wgt,MapOffIcon:Xgt,MapPinBoltIcon:qgt,MapPinCancelIcon:Ygt,MapPinCheckIcon:Ugt,MapPinCodeIcon:Ggt,MapPinCogIcon:Zgt,MapPinDollarIcon:Kgt,MapPinDownIcon:Qgt,MapPinExclamationIcon:Jgt,MapPinFilledIcon:twt,MapPinHeartIcon:ewt,MapPinMinusIcon:nwt,MapPinOffIcon:lwt,MapPinPauseIcon:rwt,MapPinPinIcon:owt,MapPinPlusIcon:swt,MapPinQuestionIcon:awt,MapPinSearchIcon:iwt,MapPinShareIcon:hwt,MapPinStarIcon:dwt,MapPinUpIcon:cwt,MapPinXIcon:uwt,MapPinIcon:pwt,MapPinsIcon:gwt,MapSearchIcon:wwt,MapIcon:vwt,MarkdownOffIcon:fwt,MarkdownIcon:mwt,Marquee2Icon:kwt,MarqueeOffIcon:bwt,MarqueeIcon:Mwt,MarsIcon:xwt,MaskOffIcon:zwt,MaskIcon:Iwt,MasksTheaterOffIcon:ywt,MasksTheaterIcon:Cwt,MassageIcon:Swt,MatchstickIcon:$wt,Math1Divide2Icon:Awt,Math1Divide3Icon:Bwt,MathAvgIcon:Hwt,MathEqualGreaterIcon:Nwt,MathEqualLowerIcon:jwt,MathFunctionOffIcon:Pwt,MathFunctionYIcon:Lwt,MathFunctionIcon:Dwt,MathGreaterIcon:Owt,MathIntegralXIcon:Fwt,MathIntegralIcon:Rwt,MathIntegralsIcon:Twt,MathLowerIcon:Ewt,MathMaxIcon:Vwt,MathMinIcon:_wt,MathNotIcon:Wwt,MathOffIcon:Xwt,MathPiDivide2Icon:qwt,MathPiIcon:Ywt,MathSymbolsIcon:Uwt,MathXDivide2Icon:Gwt,MathXDivideY2Icon:Zwt,MathXDivideYIcon:Kwt,MathXMinusXIcon:Qwt,MathXMinusYIcon:Jwt,MathXPlusXIcon:tvt,MathXPlusYIcon:evt,MathXyIcon:nvt,MathYMinusYIcon:lvt,MathYPlusYIcon:rvt,MathIcon:ovt,MaximizeOffIcon:svt,MaximizeIcon:avt,MeatOffIcon:ivt,MeatIcon:hvt,Medal2Icon:dvt,MedalIcon:cvt,MedicalCrossFilledIcon:uvt,MedicalCrossOffIcon:pvt,MedicalCrossIcon:gvt,MedicineSyrupIcon:wvt,MeepleIcon:vvt,MenorahIcon:fvt,Menu2Icon:mvt,MenuOrderIcon:kvt,MenuIcon:bvt,Message2BoltIcon:Mvt,Message2CancelIcon:xvt,Message2CheckIcon:zvt,Message2CodeIcon:Ivt,Message2CogIcon:yvt,Message2DollarIcon:Cvt,Message2DownIcon:Svt,Message2ExclamationIcon:$vt,Message2HeartIcon:Avt,Message2MinusIcon:Bvt,Message2OffIcon:Hvt,Message2PauseIcon:Nvt,Message2PinIcon:jvt,Message2PlusIcon:Pvt,Message2QuestionIcon:Lvt,Message2SearchIcon:Dvt,Message2ShareIcon:Ovt,Message2StarIcon:Fvt,Message2UpIcon:Rvt,Message2XIcon:Tvt,Message2Icon:Evt,MessageBoltIcon:Vvt,MessageCancelIcon:_vt,MessageChatbotIcon:Wvt,MessageCheckIcon:Xvt,MessageCircle2FilledIcon:qvt,MessageCircle2Icon:Yvt,MessageCircleBoltIcon:Uvt,MessageCircleCancelIcon:Gvt,MessageCircleCheckIcon:Zvt,MessageCircleCodeIcon:Kvt,MessageCircleCogIcon:Qvt,MessageCircleDollarIcon:Jvt,MessageCircleDownIcon:t3t,MessageCircleExclamationIcon:e3t,MessageCircleHeartIcon:n3t,MessageCircleMinusIcon:l3t,MessageCircleOffIcon:r3t,MessageCirclePauseIcon:o3t,MessageCirclePinIcon:s3t,MessageCirclePlusIcon:a3t,MessageCircleQuestionIcon:i3t,MessageCircleSearchIcon:h3t,MessageCircleShareIcon:d3t,MessageCircleStarIcon:c3t,MessageCircleUpIcon:u3t,MessageCircleXIcon:p3t,MessageCircleIcon:g3t,MessageCodeIcon:w3t,MessageCogIcon:v3t,MessageDollarIcon:f3t,MessageDotsIcon:m3t,MessageDownIcon:k3t,MessageExclamationIcon:b3t,MessageForwardIcon:M3t,MessageHeartIcon:x3t,MessageLanguageIcon:z3t,MessageMinusIcon:I3t,MessageOffIcon:y3t,MessagePauseIcon:C3t,MessagePinIcon:S3t,MessagePlusIcon:$3t,MessageQuestionIcon:A3t,MessageReportIcon:B3t,MessageSearchIcon:H3t,MessageShareIcon:N3t,MessageStarIcon:j3t,MessageUpIcon:P3t,MessageXIcon:L3t,MessageIcon:D3t,MessagesOffIcon:O3t,MessagesIcon:F3t,MeteorOffIcon:R3t,MeteorIcon:T3t,MickeyFilledIcon:E3t,MickeyIcon:V3t,Microphone2OffIcon:_3t,Microphone2Icon:W3t,MicrophoneOffIcon:X3t,MicrophoneIcon:q3t,MicroscopeOffIcon:Y3t,MicroscopeIcon:U3t,MicrowaveOffIcon:G3t,MicrowaveIcon:Z3t,MilitaryAwardIcon:K3t,MilitaryRankIcon:Q3t,MilkOffIcon:J3t,MilkIcon:tft,MilkshakeIcon:eft,MinimizeIcon:nft,MinusVerticalIcon:lft,MinusIcon:rft,MistOffIcon:oft,MistIcon:sft,MobiledataOffIcon:aft,MobiledataIcon:ift,MoneybagIcon:hft,MoodAngryIcon:dft,MoodAnnoyed2Icon:cft,MoodAnnoyedIcon:uft,MoodBoyIcon:pft,MoodCheckIcon:gft,MoodCogIcon:wft,MoodConfuzedFilledIcon:vft,MoodConfuzedIcon:fft,MoodCrazyHappyIcon:mft,MoodCryIcon:kft,MoodDollarIcon:bft,MoodEditIcon:Mft,MoodEmptyFilledIcon:xft,MoodEmptyIcon:zft,MoodHappyFilledIcon:Ift,MoodHappyIcon:yft,MoodHeartIcon:Cft,MoodKidFilledIcon:Sft,MoodKidIcon:$ft,MoodLookLeftIcon:Aft,MoodLookRightIcon:Bft,MoodMinusIcon:Hft,MoodNerdIcon:Nft,MoodNervousIcon:jft,MoodNeutralFilledIcon:Pft,MoodNeutralIcon:Lft,MoodOffIcon:Dft,MoodPinIcon:Oft,MoodPlusIcon:Fft,MoodSad2Icon:Rft,MoodSadDizzyIcon:Tft,MoodSadFilledIcon:Eft,MoodSadSquintIcon:Vft,MoodSadIcon:_ft,MoodSearchIcon:Wft,MoodShareIcon:Xft,MoodSickIcon:qft,MoodSilenceIcon:Yft,MoodSingIcon:Uft,MoodSmileBeamIcon:Gft,MoodSmileDizzyIcon:Zft,MoodSmileFilledIcon:Kft,MoodSmileIcon:Qft,MoodSuprisedIcon:Jft,MoodTongueWink2Icon:t5t,MoodTongueWinkIcon:e5t,MoodTongueIcon:n5t,MoodUnamusedIcon:l5t,MoodUpIcon:r5t,MoodWink2Icon:o5t,MoodWinkIcon:s5t,MoodWrrrIcon:a5t,MoodXIcon:i5t,MoodXdIcon:h5t,Moon2Icon:d5t,MoonFilledIcon:c5t,MoonOffIcon:u5t,MoonStarsIcon:p5t,MoonIcon:g5t,MopedIcon:w5t,MotorbikeIcon:v5t,MountainOffIcon:f5t,MountainIcon:m5t,Mouse2Icon:k5t,MouseOffIcon:b5t,MouseIcon:M5t,MoustacheIcon:x5t,MovieOffIcon:z5t,MovieIcon:I5t,MugOffIcon:y5t,MugIcon:C5t,Multiplier05xIcon:S5t,Multiplier15xIcon:$5t,Multiplier1xIcon:A5t,Multiplier2xIcon:B5t,MushroomFilledIcon:H5t,MushroomOffIcon:N5t,MushroomIcon:j5t,MusicOffIcon:P5t,MusicIcon:L5t,NavigationFilledIcon:D5t,NavigationOffIcon:O5t,NavigationIcon:F5t,NeedleThreadIcon:R5t,NeedleIcon:T5t,NetworkOffIcon:E5t,NetworkIcon:V5t,NewSectionIcon:_5t,NewsOffIcon:W5t,NewsIcon:X5t,NfcOffIcon:q5t,NfcIcon:Y5t,NoCopyrightIcon:U5t,NoCreativeCommonsIcon:G5t,NoDerivativesIcon:Z5t,NorthStarIcon:K5t,NoteOffIcon:Q5t,NoteIcon:J5t,NotebookOffIcon:tmt,NotebookIcon:emt,NotesOffIcon:nmt,NotesIcon:lmt,NotificationOffIcon:rmt,NotificationIcon:omt,Number0Icon:smt,Number1Icon:amt,Number2Icon:imt,Number3Icon:hmt,Number4Icon:dmt,Number5Icon:cmt,Number6Icon:umt,Number7Icon:pmt,Number8Icon:gmt,Number9Icon:wmt,NumberIcon:vmt,NumbersIcon:fmt,NurseIcon:mmt,OctagonFilledIcon:kmt,OctagonOffIcon:bmt,OctagonIcon:Mmt,OctahedronOffIcon:xmt,OctahedronPlusIcon:zmt,OctahedronIcon:Imt,OldIcon:ymt,OlympicsOffIcon:Cmt,OlympicsIcon:Smt,OmIcon:$mt,OmegaIcon:Amt,OutboundIcon:Bmt,OutletIcon:Hmt,OvalFilledIcon:Nmt,OvalVerticalFilledIcon:jmt,OvalVerticalIcon:Pmt,OvalIcon:Lmt,OverlineIcon:Dmt,PackageExportIcon:Omt,PackageImportIcon:Fmt,PackageOffIcon:Rmt,PackageIcon:Tmt,PackagesIcon:Emt,PacmanIcon:Vmt,PageBreakIcon:_mt,PaintFilledIcon:Wmt,PaintOffIcon:Xmt,PaintIcon:qmt,PaletteOffIcon:Ymt,PaletteIcon:Umt,PanoramaHorizontalOffIcon:Gmt,PanoramaHorizontalIcon:Zmt,PanoramaVerticalOffIcon:Kmt,PanoramaVerticalIcon:Qmt,PaperBagOffIcon:Jmt,PaperBagIcon:tkt,PaperclipIcon:ekt,ParachuteOffIcon:nkt,ParachuteIcon:lkt,ParenthesesOffIcon:rkt,ParenthesesIcon:okt,ParkingOffIcon:skt,ParkingIcon:akt,PasswordIcon:ikt,PawFilledIcon:hkt,PawOffIcon:dkt,PawIcon:ckt,PdfIcon:ukt,PeaceIcon:pkt,PencilMinusIcon:gkt,PencilOffIcon:wkt,PencilPlusIcon:vkt,PencilIcon:fkt,Pennant2FilledIcon:mkt,Pennant2Icon:kkt,PennantFilledIcon:bkt,PennantOffIcon:Mkt,PennantIcon:xkt,PentagonFilledIcon:zkt,PentagonOffIcon:Ikt,PentagonIcon:ykt,PentagramIcon:Ckt,PepperOffIcon:Skt,PepperIcon:$kt,PercentageIcon:Akt,PerfumeIcon:Bkt,PerspectiveOffIcon:Hkt,PerspectiveIcon:Nkt,PhoneCallIcon:jkt,PhoneCallingIcon:Pkt,PhoneCheckIcon:Lkt,PhoneFilledIcon:Dkt,PhoneIncomingIcon:Okt,PhoneOffIcon:Fkt,PhoneOutgoingIcon:Rkt,PhonePauseIcon:Tkt,PhonePlusIcon:Ekt,PhoneXIcon:Vkt,PhoneIcon:_kt,PhotoAiIcon:Wkt,PhotoBoltIcon:Xkt,PhotoCancelIcon:qkt,PhotoCheckIcon:Ykt,PhotoCodeIcon:Ukt,PhotoCogIcon:Gkt,PhotoDollarIcon:Zkt,PhotoDownIcon:Kkt,PhotoEditIcon:Qkt,PhotoExclamationIcon:Jkt,PhotoFilledIcon:t6t,PhotoHeartIcon:e6t,PhotoMinusIcon:n6t,PhotoOffIcon:l6t,PhotoPauseIcon:r6t,PhotoPinIcon:o6t,PhotoPlusIcon:s6t,PhotoQuestionIcon:a6t,PhotoSearchIcon:i6t,PhotoSensor2Icon:h6t,PhotoSensor3Icon:d6t,PhotoSensorIcon:c6t,PhotoShareIcon:u6t,PhotoShieldIcon:p6t,PhotoStarIcon:g6t,PhotoUpIcon:w6t,PhotoXIcon:v6t,PhotoIcon:f6t,PhysotherapistIcon:m6t,PictureInPictureOffIcon:k6t,PictureInPictureOnIcon:b6t,PictureInPictureTopIcon:M6t,PictureInPictureIcon:x6t,PigMoneyIcon:z6t,PigOffIcon:I6t,PigIcon:y6t,PilcrowIcon:C6t,PillOffIcon:S6t,PillIcon:$6t,PillsIcon:A6t,PinFilledIcon:B6t,PinIcon:H6t,PingPongIcon:N6t,PinnedFilledIcon:j6t,PinnedOffIcon:P6t,PinnedIcon:L6t,PizzaOffIcon:D6t,PizzaIcon:O6t,PlaceholderIcon:F6t,PlaneArrivalIcon:R6t,PlaneDepartureIcon:T6t,PlaneInflightIcon:E6t,PlaneOffIcon:V6t,PlaneTiltIcon:_6t,PlaneIcon:W6t,PlanetOffIcon:X6t,PlanetIcon:q6t,Plant2OffIcon:Y6t,Plant2Icon:U6t,PlantOffIcon:G6t,PlantIcon:Z6t,PlayBasketballIcon:K6t,PlayCardOffIcon:Q6t,PlayCardIcon:J6t,PlayFootballIcon:t7t,PlayHandballIcon:e7t,PlayVolleyballIcon:n7t,PlayerEjectFilledIcon:l7t,PlayerEjectIcon:r7t,PlayerPauseFilledIcon:o7t,PlayerPauseIcon:s7t,PlayerPlayFilledIcon:a7t,PlayerPlayIcon:i7t,PlayerRecordFilledIcon:h7t,PlayerRecordIcon:d7t,PlayerSkipBackFilledIcon:c7t,PlayerSkipBackIcon:u7t,PlayerSkipForwardFilledIcon:p7t,PlayerSkipForwardIcon:g7t,PlayerStopFilledIcon:w7t,PlayerStopIcon:v7t,PlayerTrackNextFilledIcon:f7t,PlayerTrackNextIcon:m7t,PlayerTrackPrevFilledIcon:k7t,PlayerTrackPrevIcon:b7t,PlaylistAddIcon:M7t,PlaylistOffIcon:x7t,PlaylistXIcon:z7t,PlaylistIcon:I7t,PlaystationCircleIcon:y7t,PlaystationSquareIcon:C7t,PlaystationTriangleIcon:S7t,PlaystationXIcon:$7t,PlugConnectedXIcon:A7t,PlugConnectedIcon:B7t,PlugOffIcon:H7t,PlugXIcon:N7t,PlugIcon:j7t,PlusEqualIcon:P7t,PlusMinusIcon:L7t,PlusIcon:D7t,PngIcon:O7t,PodiumOffIcon:F7t,PodiumIcon:R7t,PointFilledIcon:T7t,PointOffIcon:E7t,PointIcon:V7t,PointerBoltIcon:_7t,PointerCancelIcon:W7t,PointerCheckIcon:X7t,PointerCodeIcon:q7t,PointerCogIcon:Y7t,PointerDollarIcon:U7t,PointerDownIcon:G7t,PointerExclamationIcon:Z7t,PointerHeartIcon:K7t,PointerMinusIcon:Q7t,PointerOffIcon:J7t,PointerPauseIcon:tbt,PointerPinIcon:ebt,PointerPlusIcon:nbt,PointerQuestionIcon:lbt,PointerSearchIcon:rbt,PointerShareIcon:obt,PointerStarIcon:sbt,PointerUpIcon:abt,PointerXIcon:ibt,PointerIcon:hbt,PokeballOffIcon:dbt,PokeballIcon:cbt,PokerChipIcon:ubt,PolaroidFilledIcon:pbt,PolaroidIcon:gbt,PolygonOffIcon:wbt,PolygonIcon:vbt,PooIcon:fbt,PoolOffIcon:mbt,PoolIcon:kbt,PowerIcon:bbt,PrayIcon:Mbt,PremiumRightsIcon:xbt,PrescriptionIcon:zbt,PresentationAnalyticsIcon:Ibt,PresentationOffIcon:ybt,PresentationIcon:Cbt,PrinterOffIcon:Sbt,PrinterIcon:$bt,PrismOffIcon:Abt,PrismPlusIcon:Bbt,PrismIcon:Hbt,PrisonIcon:Nbt,ProgressAlertIcon:jbt,ProgressBoltIcon:Pbt,ProgressCheckIcon:Lbt,ProgressDownIcon:Dbt,ProgressHelpIcon:Obt,ProgressXIcon:Fbt,ProgressIcon:Rbt,PromptIcon:Tbt,PropellerOffIcon:Ebt,PropellerIcon:Vbt,PumpkinScaryIcon:_bt,Puzzle2Icon:Wbt,PuzzleFilledIcon:Xbt,PuzzleOffIcon:qbt,PuzzleIcon:Ybt,PyramidOffIcon:Ubt,PyramidPlusIcon:Gbt,PyramidIcon:Zbt,QrcodeOffIcon:Kbt,QrcodeIcon:Qbt,QuestionMarkIcon:Jbt,QuoteOffIcon:t8t,QuoteIcon:e8t,Radar2Icon:n8t,RadarOffIcon:l8t,RadarIcon:r8t,RadioOffIcon:o8t,RadioIcon:s8t,RadioactiveFilledIcon:a8t,RadioactiveOffIcon:i8t,RadioactiveIcon:h8t,RadiusBottomLeftIcon:d8t,RadiusBottomRightIcon:c8t,RadiusTopLeftIcon:u8t,RadiusTopRightIcon:p8t,RainbowOffIcon:g8t,RainbowIcon:w8t,Rating12PlusIcon:v8t,Rating14PlusIcon:f8t,Rating16PlusIcon:m8t,Rating18PlusIcon:k8t,Rating21PlusIcon:b8t,RazorElectricIcon:M8t,RazorIcon:x8t,Receipt2Icon:z8t,ReceiptOffIcon:I8t,ReceiptRefundIcon:y8t,ReceiptTaxIcon:C8t,ReceiptIcon:S8t,RechargingIcon:$8t,RecordMailOffIcon:A8t,RecordMailIcon:B8t,RectangleFilledIcon:H8t,RectangleVerticalFilledIcon:N8t,RectangleVerticalIcon:j8t,RectangleIcon:P8t,RectangularPrismOffIcon:L8t,RectangularPrismPlusIcon:D8t,RectangularPrismIcon:O8t,RecycleOffIcon:F8t,RecycleIcon:R8t,RefreshAlertIcon:T8t,RefreshDotIcon:E8t,RefreshOffIcon:V8t,RefreshIcon:_8t,RegexOffIcon:W8t,RegexIcon:X8t,RegisteredIcon:q8t,RelationManyToManyIcon:Y8t,RelationOneToManyIcon:U8t,RelationOneToOneIcon:G8t,ReloadIcon:Z8t,RepeatOffIcon:K8t,RepeatOnceIcon:Q8t,RepeatIcon:J8t,ReplaceFilledIcon:t9t,ReplaceOffIcon:e9t,ReplaceIcon:n9t,ReportAnalyticsIcon:l9t,ReportMedicalIcon:r9t,ReportMoneyIcon:o9t,ReportOffIcon:s9t,ReportSearchIcon:a9t,ReportIcon:i9t,ReservedLineIcon:h9t,ResizeIcon:d9t,RibbonHealthIcon:c9t,RingsIcon:u9t,RippleOffIcon:p9t,RippleIcon:g9t,RoadOffIcon:w9t,RoadSignIcon:v9t,RoadIcon:f9t,RobotOffIcon:m9t,RobotIcon:k9t,RocketOffIcon:b9t,RocketIcon:M9t,RollerSkatingIcon:x9t,RollercoasterOffIcon:z9t,RollercoasterIcon:I9t,RosetteFilledIcon:y9t,RosetteNumber0Icon:C9t,RosetteNumber1Icon:S9t,RosetteNumber2Icon:$9t,RosetteNumber3Icon:A9t,RosetteNumber4Icon:B9t,RosetteNumber5Icon:H9t,RosetteNumber6Icon:N9t,RosetteNumber7Icon:j9t,RosetteNumber8Icon:P9t,RosetteNumber9Icon:L9t,RosetteIcon:D9t,Rotate2Icon:O9t,Rotate360Icon:F9t,RotateClockwise2Icon:R9t,RotateClockwiseIcon:T9t,RotateDotIcon:E9t,RotateRectangleIcon:V9t,RotateIcon:_9t,Route2Icon:W9t,RouteOffIcon:X9t,RouteIcon:q9t,RouterOffIcon:Y9t,RouterIcon:U9t,RowInsertBottomIcon:G9t,RowInsertTopIcon:Z9t,RssIcon:K9t,RubberStampOffIcon:Q9t,RubberStampIcon:J9t,Ruler2OffIcon:tMt,Ruler2Icon:eMt,Ruler3Icon:nMt,RulerMeasureIcon:lMt,RulerOffIcon:rMt,RulerIcon:oMt,RunIcon:sMt,STurnDownIcon:aMt,STurnLeftIcon:iMt,STurnRightIcon:hMt,STurnUpIcon:dMt,Sailboat2Icon:cMt,SailboatOffIcon:uMt,SailboatIcon:pMt,SaladIcon:gMt,SaltIcon:wMt,SatelliteOffIcon:vMt,SatelliteIcon:fMt,SausageIcon:mMt,ScaleOffIcon:kMt,ScaleOutlineOffIcon:bMt,ScaleOutlineIcon:MMt,ScaleIcon:xMt,ScanEyeIcon:zMt,ScanIcon:IMt,SchemaOffIcon:yMt,SchemaIcon:CMt,SchoolBellIcon:SMt,SchoolOffIcon:$Mt,SchoolIcon:AMt,ScissorsOffIcon:BMt,ScissorsIcon:HMt,ScooterElectricIcon:NMt,ScooterIcon:jMt,ScoreboardIcon:PMt,ScreenShareOffIcon:LMt,ScreenShareIcon:DMt,ScreenshotIcon:OMt,ScribbleOffIcon:FMt,ScribbleIcon:RMt,ScriptMinusIcon:TMt,ScriptPlusIcon:EMt,ScriptXIcon:VMt,ScriptIcon:_Mt,ScubaMaskOffIcon:WMt,ScubaMaskIcon:XMt,SdkIcon:qMt,SearchOffIcon:YMt,SearchIcon:UMt,SectionSignIcon:GMt,SectionIcon:ZMt,SeedingOffIcon:KMt,SeedingIcon:QMt,SelectAllIcon:JMt,SelectIcon:txt,SelectorIcon:ext,SendOffIcon:nxt,SendIcon:lxt,SeoIcon:rxt,SeparatorHorizontalIcon:oxt,SeparatorVerticalIcon:sxt,SeparatorIcon:axt,Server2Icon:ixt,ServerBoltIcon:hxt,ServerCogIcon:dxt,ServerOffIcon:cxt,ServerIcon:uxt,ServicemarkIcon:pxt,Settings2Icon:gxt,SettingsAutomationIcon:wxt,SettingsBoltIcon:vxt,SettingsCancelIcon:fxt,SettingsCheckIcon:mxt,SettingsCodeIcon:kxt,SettingsCogIcon:bxt,SettingsDollarIcon:Mxt,SettingsDownIcon:xxt,SettingsExclamationIcon:zxt,SettingsFilledIcon:Ixt,SettingsHeartIcon:yxt,SettingsMinusIcon:Cxt,SettingsOffIcon:Sxt,SettingsPauseIcon:$xt,SettingsPinIcon:Axt,SettingsPlusIcon:Bxt,SettingsQuestionIcon:Hxt,SettingsSearchIcon:Nxt,SettingsShareIcon:jxt,SettingsStarIcon:Pxt,SettingsUpIcon:Lxt,SettingsXIcon:Dxt,SettingsIcon:Oxt,ShadowOffIcon:Fxt,ShadowIcon:Rxt,Shape2Icon:Txt,Shape3Icon:Ext,ShapeOffIcon:Vxt,ShapeIcon:_xt,Share2Icon:Wxt,Share3Icon:Xxt,ShareOffIcon:qxt,ShareIcon:Yxt,ShiJumpingIcon:Uxt,ShieldBoltIcon:Gxt,ShieldCancelIcon:Zxt,ShieldCheckFilledIcon:Kxt,ShieldCheckIcon:Qxt,ShieldCheckeredFilledIcon:Jxt,ShieldCheckeredIcon:tzt,ShieldChevronIcon:ezt,ShieldCodeIcon:nzt,ShieldCogIcon:lzt,ShieldDollarIcon:rzt,ShieldDownIcon:ozt,ShieldExclamationIcon:szt,ShieldFilledIcon:azt,ShieldHalfFilledIcon:izt,ShieldHalfIcon:hzt,ShieldHeartIcon:dzt,ShieldLockFilledIcon:czt,ShieldLockIcon:uzt,ShieldMinusIcon:pzt,ShieldOffIcon:gzt,ShieldPauseIcon:wzt,ShieldPinIcon:vzt,ShieldPlusIcon:fzt,ShieldQuestionIcon:mzt,ShieldSearchIcon:kzt,ShieldShareIcon:bzt,ShieldStarIcon:Mzt,ShieldUpIcon:xzt,ShieldXIcon:zzt,ShieldIcon:Izt,ShipOffIcon:yzt,ShipIcon:Czt,ShirtFilledIcon:Szt,ShirtOffIcon:$zt,ShirtSportIcon:Azt,ShirtIcon:Bzt,ShoeOffIcon:Hzt,ShoeIcon:Nzt,ShoppingBagIcon:jzt,ShoppingCartDiscountIcon:Pzt,ShoppingCartOffIcon:Lzt,ShoppingCartPlusIcon:Dzt,ShoppingCartXIcon:Ozt,ShoppingCartIcon:Fzt,ShovelIcon:Rzt,ShredderIcon:Tzt,SignLeftFilledIcon:Ezt,SignLeftIcon:Vzt,SignRightFilledIcon:_zt,SignRightIcon:Wzt,Signal2gIcon:Xzt,Signal3gIcon:qzt,Signal4gPlusIcon:Yzt,Signal4gIcon:Uzt,Signal5gIcon:Gzt,Signal6gIcon:Zzt,SignalEIcon:Kzt,SignalGIcon:Qzt,SignalHPlusIcon:Jzt,SignalHIcon:tIt,SignalLteIcon:eIt,SignatureOffIcon:nIt,SignatureIcon:lIt,SitemapOffIcon:rIt,SitemapIcon:oIt,SkateboardOffIcon:sIt,SkateboardIcon:aIt,SkullIcon:iIt,SlashIcon:hIt,SlashesIcon:dIt,SleighIcon:cIt,SliceIcon:uIt,SlideshowIcon:pIt,SmartHomeOffIcon:gIt,SmartHomeIcon:wIt,SmokingNoIcon:vIt,SmokingIcon:fIt,SnowflakeOffIcon:mIt,SnowflakeIcon:kIt,SnowmanIcon:bIt,SoccerFieldIcon:MIt,SocialOffIcon:xIt,SocialIcon:zIt,SockIcon:IIt,SofaOffIcon:yIt,SofaIcon:CIt,SolarPanel2Icon:SIt,SolarPanelIcon:$It,Sort09Icon:AIt,Sort90Icon:BIt,SortAZIcon:HIt,SortAscending2Icon:NIt,SortAscendingLettersIcon:jIt,SortAscendingNumbersIcon:PIt,SortAscendingIcon:LIt,SortDescending2Icon:DIt,SortDescendingLettersIcon:OIt,SortDescendingNumbersIcon:FIt,SortDescendingIcon:RIt,SortZAIcon:TIt,SosIcon:EIt,SoupOffIcon:VIt,SoupIcon:_It,SourceCodeIcon:WIt,SpaceOffIcon:XIt,SpaceIcon:qIt,SpacingHorizontalIcon:YIt,SpacingVerticalIcon:UIt,SpadeFilledIcon:GIt,SpadeIcon:ZIt,SparklesIcon:KIt,SpeakerphoneIcon:QIt,SpeedboatIcon:JIt,SphereOffIcon:tyt,SpherePlusIcon:eyt,SphereIcon:nyt,SpiderIcon:lyt,SpiralOffIcon:ryt,SpiralIcon:oyt,SportBillardIcon:syt,SprayIcon:ayt,SpyOffIcon:iyt,SpyIcon:hyt,SqlIcon:dyt,Square0FilledIcon:cyt,Square1FilledIcon:uyt,Square2FilledIcon:pyt,Square3FilledIcon:gyt,Square4FilledIcon:wyt,Square5FilledIcon:vyt,Square6FilledIcon:fyt,Square7FilledIcon:myt,Square8FilledIcon:kyt,Square9FilledIcon:byt,SquareArrowDownIcon:Myt,SquareArrowLeftIcon:xyt,SquareArrowRightIcon:zyt,SquareArrowUpIcon:Iyt,SquareAsteriskIcon:yyt,SquareCheckFilledIcon:Cyt,SquareCheckIcon:Syt,SquareChevronDownIcon:$yt,SquareChevronLeftIcon:Ayt,SquareChevronRightIcon:Byt,SquareChevronUpIcon:Hyt,SquareChevronsDownIcon:Nyt,SquareChevronsLeftIcon:jyt,SquareChevronsRightIcon:Pyt,SquareChevronsUpIcon:Lyt,SquareDotIcon:Dyt,SquareF0FilledIcon:Oyt,SquareF0Icon:Fyt,SquareF1FilledIcon:Ryt,SquareF1Icon:Tyt,SquareF2FilledIcon:Eyt,SquareF2Icon:Vyt,SquareF3FilledIcon:_yt,SquareF3Icon:Wyt,SquareF4FilledIcon:Xyt,SquareF4Icon:qyt,SquareF5FilledIcon:Yyt,SquareF5Icon:Uyt,SquareF6FilledIcon:Gyt,SquareF6Icon:Zyt,SquareF7FilledIcon:Kyt,SquareF7Icon:Qyt,SquareF8FilledIcon:Jyt,SquareF8Icon:tCt,SquareF9FilledIcon:eCt,SquareF9Icon:nCt,SquareForbid2Icon:lCt,SquareForbidIcon:rCt,SquareHalfIcon:oCt,SquareKeyIcon:sCt,SquareLetterAIcon:aCt,SquareLetterBIcon:iCt,SquareLetterCIcon:hCt,SquareLetterDIcon:dCt,SquareLetterEIcon:cCt,SquareLetterFIcon:uCt,SquareLetterGIcon:pCt,SquareLetterHIcon:gCt,SquareLetterIIcon:wCt,SquareLetterJIcon:vCt,SquareLetterKIcon:fCt,SquareLetterLIcon:mCt,SquareLetterMIcon:kCt,SquareLetterNIcon:bCt,SquareLetterOIcon:MCt,SquareLetterPIcon:xCt,SquareLetterQIcon:zCt,SquareLetterRIcon:ICt,SquareLetterSIcon:yCt,SquareLetterTIcon:CCt,SquareLetterUIcon:SCt,SquareLetterVIcon:$Ct,SquareLetterWIcon:ACt,SquareLetterXIcon:BCt,SquareLetterYIcon:HCt,SquareLetterZIcon:NCt,SquareMinusIcon:jCt,SquareNumber0Icon:PCt,SquareNumber1Icon:LCt,SquareNumber2Icon:DCt,SquareNumber3Icon:OCt,SquareNumber4Icon:FCt,SquareNumber5Icon:RCt,SquareNumber6Icon:TCt,SquareNumber7Icon:ECt,SquareNumber8Icon:VCt,SquareNumber9Icon:_Ct,SquareOffIcon:WCt,SquarePlusIcon:XCt,SquareRoot2Icon:qCt,SquareRootIcon:YCt,SquareRotatedFilledIcon:UCt,SquareRotatedForbid2Icon:GCt,SquareRotatedForbidIcon:ZCt,SquareRotatedOffIcon:KCt,SquareRotatedIcon:QCt,SquareRoundedArrowDownFilledIcon:JCt,SquareRoundedArrowDownIcon:tSt,SquareRoundedArrowLeftFilledIcon:eSt,SquareRoundedArrowLeftIcon:nSt,SquareRoundedArrowRightFilledIcon:lSt,SquareRoundedArrowRightIcon:rSt,SquareRoundedArrowUpFilledIcon:oSt,SquareRoundedArrowUpIcon:sSt,SquareRoundedCheckFilledIcon:aSt,SquareRoundedCheckIcon:iSt,SquareRoundedChevronDownFilledIcon:hSt,SquareRoundedChevronDownIcon:dSt,SquareRoundedChevronLeftFilledIcon:cSt,SquareRoundedChevronLeftIcon:uSt,SquareRoundedChevronRightFilledIcon:pSt,SquareRoundedChevronRightIcon:gSt,SquareRoundedChevronUpFilledIcon:wSt,SquareRoundedChevronUpIcon:vSt,SquareRoundedChevronsDownFilledIcon:fSt,SquareRoundedChevronsDownIcon:mSt,SquareRoundedChevronsLeftFilledIcon:kSt,SquareRoundedChevronsLeftIcon:bSt,SquareRoundedChevronsRightFilledIcon:MSt,SquareRoundedChevronsRightIcon:xSt,SquareRoundedChevronsUpFilledIcon:zSt,SquareRoundedChevronsUpIcon:ISt,SquareRoundedFilledIcon:ySt,SquareRoundedLetterAIcon:CSt,SquareRoundedLetterBIcon:SSt,SquareRoundedLetterCIcon:$St,SquareRoundedLetterDIcon:ASt,SquareRoundedLetterEIcon:BSt,SquareRoundedLetterFIcon:HSt,SquareRoundedLetterGIcon:NSt,SquareRoundedLetterHIcon:jSt,SquareRoundedLetterIIcon:PSt,SquareRoundedLetterJIcon:LSt,SquareRoundedLetterKIcon:DSt,SquareRoundedLetterLIcon:OSt,SquareRoundedLetterMIcon:FSt,SquareRoundedLetterNIcon:RSt,SquareRoundedLetterOIcon:TSt,SquareRoundedLetterPIcon:ESt,SquareRoundedLetterQIcon:VSt,SquareRoundedLetterRIcon:_St,SquareRoundedLetterSIcon:WSt,SquareRoundedLetterTIcon:XSt,SquareRoundedLetterUIcon:qSt,SquareRoundedLetterVIcon:YSt,SquareRoundedLetterWIcon:USt,SquareRoundedLetterXIcon:GSt,SquareRoundedLetterYIcon:ZSt,SquareRoundedLetterZIcon:KSt,SquareRoundedMinusIcon:QSt,SquareRoundedNumber0FilledIcon:JSt,SquareRoundedNumber0Icon:t$t,SquareRoundedNumber1FilledIcon:e$t,SquareRoundedNumber1Icon:n$t,SquareRoundedNumber2FilledIcon:l$t,SquareRoundedNumber2Icon:r$t,SquareRoundedNumber3FilledIcon:o$t,SquareRoundedNumber3Icon:s$t,SquareRoundedNumber4FilledIcon:a$t,SquareRoundedNumber4Icon:i$t,SquareRoundedNumber5FilledIcon:h$t,SquareRoundedNumber5Icon:d$t,SquareRoundedNumber6FilledIcon:c$t,SquareRoundedNumber6Icon:u$t,SquareRoundedNumber7FilledIcon:p$t,SquareRoundedNumber7Icon:g$t,SquareRoundedNumber8FilledIcon:w$t,SquareRoundedNumber8Icon:v$t,SquareRoundedNumber9FilledIcon:f$t,SquareRoundedNumber9Icon:m$t,SquareRoundedPlusFilledIcon:k$t,SquareRoundedPlusIcon:b$t,SquareRoundedXFilledIcon:M$t,SquareRoundedXIcon:x$t,SquareRoundedIcon:z$t,SquareToggleHorizontalIcon:I$t,SquareToggleIcon:y$t,SquareXIcon:C$t,SquareIcon:S$t,SquaresDiagonalIcon:$$t,SquaresFilledIcon:A$t,Stack2Icon:B$t,Stack3Icon:H$t,StackPopIcon:N$t,StackPushIcon:j$t,StackIcon:P$t,StairsDownIcon:L$t,StairsUpIcon:D$t,StairsIcon:O$t,StarFilledIcon:F$t,StarHalfFilledIcon:R$t,StarHalfIcon:T$t,StarOffIcon:E$t,StarIcon:V$t,StarsFilledIcon:_$t,StarsOffIcon:W$t,StarsIcon:X$t,StatusChangeIcon:q$t,SteamIcon:Y$t,SteeringWheelOffIcon:U$t,SteeringWheelIcon:G$t,StepIntoIcon:Z$t,StepOutIcon:K$t,StereoGlassesIcon:Q$t,StethoscopeOffIcon:J$t,StethoscopeIcon:tAt,StickerIcon:eAt,StormOffIcon:nAt,StormIcon:lAt,Stretching2Icon:rAt,StretchingIcon:oAt,StrikethroughIcon:sAt,SubmarineIcon:aAt,SubscriptIcon:iAt,SubtaskIcon:hAt,SumOffIcon:dAt,SumIcon:cAt,SunFilledIcon:uAt,SunHighIcon:pAt,SunLowIcon:gAt,SunMoonIcon:wAt,SunOffIcon:vAt,SunWindIcon:fAt,SunIcon:mAt,SunglassesIcon:kAt,SunriseIcon:bAt,Sunset2Icon:MAt,SunsetIcon:xAt,SuperscriptIcon:zAt,SvgIcon:IAt,SwimmingIcon:yAt,SwipeIcon:CAt,Switch2Icon:SAt,Switch3Icon:$At,SwitchHorizontalIcon:AAt,SwitchVerticalIcon:BAt,SwitchIcon:HAt,SwordOffIcon:NAt,SwordIcon:jAt,SwordsIcon:PAt,TableAliasIcon:LAt,TableDownIcon:DAt,TableExportIcon:OAt,TableFilledIcon:FAt,TableHeartIcon:RAt,TableImportIcon:TAt,TableMinusIcon:EAt,TableOffIcon:VAt,TableOptionsIcon:_At,TablePlusIcon:WAt,TableShareIcon:XAt,TableShortcutIcon:qAt,TableIcon:YAt,TagOffIcon:UAt,TagIcon:GAt,TagsOffIcon:ZAt,TagsIcon:KAt,Tallymark1Icon:QAt,Tallymark2Icon:JAt,Tallymark3Icon:tBt,Tallymark4Icon:eBt,TallymarksIcon:nBt,TankIcon:lBt,TargetArrowIcon:rBt,TargetOffIcon:oBt,TargetIcon:sBt,TeapotIcon:aBt,TelescopeOffIcon:iBt,TelescopeIcon:hBt,TemperatureCelsiusIcon:dBt,TemperatureFahrenheitIcon:cBt,TemperatureMinusIcon:uBt,TemperatureOffIcon:pBt,TemperaturePlusIcon:gBt,TemperatureIcon:wBt,TemplateOffIcon:vBt,TemplateIcon:fBt,TentOffIcon:mBt,TentIcon:kBt,Terminal2Icon:bBt,TerminalIcon:MBt,TestPipe2Icon:xBt,TestPipeOffIcon:zBt,TestPipeIcon:IBt,TexIcon:yBt,TextCaptionIcon:CBt,TextColorIcon:SBt,TextDecreaseIcon:$Bt,TextDirectionLtrIcon:ABt,TextDirectionRtlIcon:BBt,TextIncreaseIcon:HBt,TextOrientationIcon:NBt,TextPlusIcon:jBt,TextRecognitionIcon:PBt,TextResizeIcon:LBt,TextSizeIcon:DBt,TextSpellcheckIcon:OBt,TextWrapDisabledIcon:FBt,TextWrapIcon:RBt,TextureIcon:TBt,TheaterIcon:EBt,ThermometerIcon:VBt,ThumbDownFilledIcon:_Bt,ThumbDownOffIcon:WBt,ThumbDownIcon:XBt,ThumbUpFilledIcon:qBt,ThumbUpOffIcon:YBt,ThumbUpIcon:UBt,TicTacIcon:GBt,TicketOffIcon:ZBt,TicketIcon:KBt,TieIcon:QBt,TildeIcon:JBt,TiltShiftOffIcon:tHt,TiltShiftIcon:eHt,TimelineEventExclamationIcon:nHt,TimelineEventMinusIcon:lHt,TimelineEventPlusIcon:rHt,TimelineEventTextIcon:oHt,TimelineEventXIcon:sHt,TimelineEventIcon:aHt,TimelineIcon:iHt,TirIcon:hHt,ToggleLeftIcon:dHt,ToggleRightIcon:cHt,ToiletPaperOffIcon:uHt,ToiletPaperIcon:pHt,TomlIcon:gHt,ToolIcon:wHt,ToolsKitchen2OffIcon:vHt,ToolsKitchen2Icon:fHt,ToolsKitchenOffIcon:mHt,ToolsKitchenIcon:kHt,ToolsOffIcon:bHt,ToolsIcon:MHt,TooltipIcon:xHt,TopologyBusIcon:zHt,TopologyComplexIcon:IHt,TopologyFullHierarchyIcon:yHt,TopologyFullIcon:CHt,TopologyRing2Icon:SHt,TopologyRing3Icon:$Ht,TopologyRingIcon:AHt,TopologyStar2Icon:BHt,TopologyStar3Icon:HHt,TopologyStarRing2Icon:NHt,TopologyStarRing3Icon:jHt,TopologyStarRingIcon:PHt,TopologyStarIcon:LHt,ToriiIcon:DHt,TornadoIcon:OHt,TournamentIcon:FHt,TowerOffIcon:RHt,TowerIcon:THt,TrackIcon:EHt,TractorIcon:VHt,TrademarkIcon:_Ht,TrafficConeOffIcon:WHt,TrafficConeIcon:XHt,TrafficLightsOffIcon:qHt,TrafficLightsIcon:YHt,TrainIcon:UHt,TransferInIcon:GHt,TransferOutIcon:ZHt,TransformFilledIcon:KHt,TransformIcon:QHt,TransitionBottomIcon:JHt,TransitionLeftIcon:tNt,TransitionRightIcon:eNt,TransitionTopIcon:nNt,TrashFilledIcon:lNt,TrashOffIcon:rNt,TrashXFilledIcon:oNt,TrashXIcon:sNt,TrashIcon:aNt,TreadmillIcon:iNt,TreeIcon:hNt,TreesIcon:dNt,TrekkingIcon:cNt,TrendingDown2Icon:uNt,TrendingDown3Icon:pNt,TrendingDownIcon:gNt,TrendingUp2Icon:wNt,TrendingUp3Icon:vNt,TrendingUpIcon:fNt,TriangleFilledIcon:mNt,TriangleInvertedFilledIcon:kNt,TriangleInvertedIcon:bNt,TriangleOffIcon:MNt,TriangleSquareCircleIcon:xNt,TriangleIcon:zNt,TrianglesIcon:INt,TridentIcon:yNt,TrolleyIcon:CNt,TrophyFilledIcon:SNt,TrophyOffIcon:$Nt,TrophyIcon:ANt,TrowelIcon:BNt,TruckDeliveryIcon:HNt,TruckLoadingIcon:NNt,TruckOffIcon:jNt,TruckReturnIcon:PNt,TruckIcon:LNt,TxtIcon:DNt,TypographyOffIcon:ONt,TypographyIcon:FNt,UfoOffIcon:RNt,UfoIcon:TNt,UmbrellaFilledIcon:ENt,UmbrellaOffIcon:VNt,UmbrellaIcon:_Nt,UnderlineIcon:WNt,UnlinkIcon:XNt,UploadIcon:qNt,UrgentIcon:YNt,UsbIcon:UNt,UserBoltIcon:GNt,UserCancelIcon:ZNt,UserCheckIcon:KNt,UserCircleIcon:QNt,UserCodeIcon:JNt,UserCogIcon:tjt,UserDollarIcon:ejt,UserDownIcon:njt,UserEditIcon:ljt,UserExclamationIcon:rjt,UserHeartIcon:ojt,UserMinusIcon:sjt,UserOffIcon:ajt,UserPauseIcon:ijt,UserPinIcon:hjt,UserPlusIcon:djt,UserQuestionIcon:cjt,UserSearchIcon:ujt,UserShareIcon:pjt,UserShieldIcon:gjt,UserStarIcon:wjt,UserUpIcon:vjt,UserXIcon:fjt,UserIcon:mjt,UsersGroupIcon:kjt,UsersMinusIcon:bjt,UsersPlusIcon:Mjt,UsersIcon:xjt,UvIndexIcon:zjt,UxCircleIcon:Ijt,VaccineBottleOffIcon:yjt,VaccineBottleIcon:Cjt,VaccineOffIcon:Sjt,VaccineIcon:$jt,VacuumCleanerIcon:Ajt,VariableMinusIcon:Bjt,VariableOffIcon:Hjt,VariablePlusIcon:Njt,VariableIcon:jjt,VectorBezier2Icon:Pjt,VectorBezierArcIcon:Ljt,VectorBezierCircleIcon:Djt,VectorBezierIcon:Ojt,VectorOffIcon:Fjt,VectorSplineIcon:Rjt,VectorTriangleOffIcon:Tjt,VectorTriangleIcon:Ejt,VectorIcon:Vjt,VenusIcon:_jt,VersionsFilledIcon:Wjt,VersionsOffIcon:Xjt,VersionsIcon:qjt,VideoMinusIcon:Yjt,VideoOffIcon:Ujt,VideoPlusIcon:Gjt,VideoIcon:Zjt,View360OffIcon:Kjt,View360Icon:Qjt,ViewfinderOffIcon:Jjt,ViewfinderIcon:tPt,ViewportNarrowIcon:ePt,ViewportWideIcon:nPt,VinylIcon:lPt,VipOffIcon:rPt,VipIcon:oPt,VirusOffIcon:sPt,VirusSearchIcon:aPt,VirusIcon:iPt,VocabularyOffIcon:hPt,VocabularyIcon:dPt,VolcanoIcon:cPt,Volume2Icon:uPt,Volume3Icon:pPt,VolumeOffIcon:gPt,VolumeIcon:wPt,WalkIcon:vPt,WallOffIcon:fPt,WallIcon:mPt,WalletOffIcon:kPt,WalletIcon:bPt,WallpaperOffIcon:MPt,WallpaperIcon:xPt,WandOffIcon:zPt,WandIcon:IPt,WashDry1Icon:yPt,WashDry2Icon:CPt,WashDry3Icon:SPt,WashDryAIcon:$Pt,WashDryDipIcon:APt,WashDryFIcon:BPt,WashDryFlatIcon:HPt,WashDryHangIcon:NPt,WashDryOffIcon:jPt,WashDryPIcon:PPt,WashDryShadeIcon:LPt,WashDryWIcon:DPt,WashDryIcon:OPt,WashDrycleanOffIcon:FPt,WashDrycleanIcon:RPt,WashEcoIcon:TPt,WashGentleIcon:EPt,WashHandIcon:VPt,WashMachineIcon:_Pt,WashOffIcon:WPt,WashPressIcon:XPt,WashTemperature1Icon:qPt,WashTemperature2Icon:YPt,WashTemperature3Icon:UPt,WashTemperature4Icon:GPt,WashTemperature5Icon:ZPt,WashTemperature6Icon:KPt,WashTumbleDryIcon:QPt,WashTumbleOffIcon:JPt,WashIcon:tLt,WaterpoloIcon:eLt,WaveSawToolIcon:nLt,WaveSineIcon:lLt,WaveSquareIcon:rLt,WebhookOffIcon:oLt,WebhookIcon:sLt,WeightIcon:aLt,WheelchairOffIcon:iLt,WheelchairIcon:hLt,WhirlIcon:dLt,Wifi0Icon:cLt,Wifi1Icon:uLt,Wifi2Icon:pLt,WifiOffIcon:gLt,WifiIcon:wLt,WindOffIcon:vLt,WindIcon:fLt,WindmillFilledIcon:mLt,WindmillOffIcon:kLt,WindmillIcon:bLt,WindowMaximizeIcon:MLt,WindowMinimizeIcon:xLt,WindowOffIcon:zLt,WindowIcon:ILt,WindsockIcon:yLt,WiperWashIcon:CLt,WiperIcon:SLt,WomanIcon:$Lt,WoodIcon:ALt,WorldBoltIcon:BLt,WorldCancelIcon:HLt,WorldCheckIcon:NLt,WorldCodeIcon:jLt,WorldCogIcon:PLt,WorldDollarIcon:LLt,WorldDownIcon:DLt,WorldDownloadIcon:OLt,WorldExclamationIcon:FLt,WorldHeartIcon:RLt,WorldLatitudeIcon:TLt,WorldLongitudeIcon:ELt,WorldMinusIcon:VLt,WorldOffIcon:_Lt,WorldPauseIcon:WLt,WorldPinIcon:XLt,WorldPlusIcon:qLt,WorldQuestionIcon:YLt,WorldSearchIcon:ULt,WorldShareIcon:GLt,WorldStarIcon:ZLt,WorldUpIcon:KLt,WorldUploadIcon:QLt,WorldWwwIcon:JLt,WorldXIcon:tDt,WorldIcon:eDt,WreckingBallIcon:nDt,WritingOffIcon:lDt,WritingSignOffIcon:rDt,WritingSignIcon:oDt,WritingIcon:sDt,XIcon:aDt,XboxAIcon:iDt,XboxBIcon:hDt,XboxXIcon:dDt,XboxYIcon:cDt,XdIcon:uDt,YinYangFilledIcon:pDt,YinYangIcon:gDt,YogaIcon:wDt,ZeppelinOffIcon:vDt,ZeppelinIcon:fDt,ZipIcon:mDt,ZodiacAquariusIcon:kDt,ZodiacAriesIcon:bDt,ZodiacCancerIcon:MDt,ZodiacCapricornIcon:xDt,ZodiacGeminiIcon:zDt,ZodiacLeoIcon:IDt,ZodiacLibraIcon:yDt,ZodiacPiscesIcon:CDt,ZodiacSagittariusIcon:SDt,ZodiacScorpioIcon:$Dt,ZodiacTaurusIcon:ADt,ZodiacVirgoIcon:BDt,ZoomCancelIcon:HDt,ZoomCheckFilledIcon:NDt,ZoomCheckIcon:jDt,ZoomCodeIcon:PDt,ZoomExclamationIcon:LDt,ZoomFilledIcon:DDt,ZoomInAreaFilledIcon:ODt,ZoomInAreaIcon:FDt,ZoomInFilledIcon:RDt,ZoomInIcon:TDt,ZoomMoneyIcon:EDt,ZoomOutAreaIcon:VDt,ZoomOutFilledIcon:_Dt,ZoomOutIcon:WDt,ZoomPanIcon:XDt,ZoomQuestionIcon:qDt,ZoomReplaceIcon:YDt,ZoomResetIcon:UDt,ZzzOffIcon:GDt,ZzzIcon:ZDt}),QDt={install(n){Object.entries(KDt).forEach(([l,r])=>n.component(l,r))}};function JDt(){const n=[{id:1,username:"",password:"",firstName:"AstrBot",lastName:"dev"}],l=window.fetch;window.fetch=function(r,h){return new Promise((c,g)=>{setTimeout(v,500);function v(){switch(!0){case(r.endsWith("/users/authenticate")&&h.method==="POST"):return k();case(r.endsWith("/users")&&h.method==="GET"):return x();default:return l(r,h).then(D=>c(D)).catch(D=>g(D))}}function k(){P();const D=n[0];return D?I({id:D.id,username:D.username,firstName:D.firstName,lastName:D.lastName,token:"fake-jwt-token"}):$("Username or password is incorrect")}function x(){return B()?I(n):S()}function I(D){c({ok:!0,text:()=>Promise.resolve(JSON.stringify(D))})}function S(){c({status:401,text:()=>Promise.resolve(JSON.stringify({message:"Unauthorized"}))})}function $(D){c({status:400,text:()=>Promise.resolve(JSON.stringify({message:D}))})}function B(){return h.headers.Authorization==="Bearer fake-jwt-token"}function P(){return h.body&&JSON.parse(h.body)}})}}class tOt{constructor(l){this.standards={strict:"strict",loose:"loose",html5:"html5"},this.previewBody=null,this.close=null,this.previewBodyUtilPrintBtn=null,this.selectArray=[],this.counter=0,this.settings={standard:this.standards.html5},Object.assign(this.settings,l),this.init()}init(){this.counter++,this.settings.id=`printArea_${this.counter}`;let l="";this.settings.url&&!this.settings.asyncUrl&&(l=this.settings.url);let r=this;if(this.settings.asyncUrl)return void r.settings.asyncUrl(function(c){let g=r.getPrintWindow(c);r.settings.preview?r.previewIfrmaeLoad():r.print(g)},r.settings.vue);let h=this.getPrintWindow(l);this.settings.url||this.write(h.doc),this.settings.preview?this.previewIfrmaeLoad():this.print(h)}addEvent(l,r,h){l.addEventListener?l.addEventListener(r,h,!1):l.attachEvent?l.attachEvent("on"+r,h):l["on"+r]=h}previewIfrmaeLoad(){let l=document.getElementById("vue-pirnt-nb-previewBox");if(l){let r=this,h=l.querySelector("iframe");this.settings.previewBeforeOpenCallback(),this.addEvent(h,"load",function(){r.previewBoxShow(),r.removeCanvasImg(),r.settings.previewOpenCallback()}),this.addEvent(l.querySelector(".previewBodyUtilPrintBtn"),"click",function(){r.settings.beforeOpenCallback(),r.settings.openCallback(),h.contentWindow.print(),r.settings.closeCallback()})}}removeCanvasImg(){let l=this;try{if(l.elsdom){let r=l.elsdom.querySelectorAll(".canvasImg");for(let h=0;h${this.getHead()}${this.getBody()}`),l.close()}docType(){return this.settings.standard===this.standards.html5?"":``}getHead(){let l="",r="",h="";this.settings.extraHead&&this.settings.extraHead.replace(/([^,]+)/g,g=>{l+=g}),[].forEach.call(document.querySelectorAll("link"),function(g){g.href.indexOf(".css")>=0&&(r+=``)});let c=document.styleSheets;if(c&&c.length>0)for(let g=0;g{r+=``}),`${this.settings.popTitle}${l}${r}`}getBody(){let l=this.settings.ids;return l=l.replace(new RegExp("#","g"),""),this.elsdom=this.beforeHanler(document.getElementById(l)),""+this.getFormData(this.elsdom).outerHTML+""}beforeHanler(l){let r=l.querySelectorAll("canvas");for(let h=0;h{if(typeof l.value=="string")c=l.value;else{if(typeof l.value!="object"||!l.value.id)return void window.print();{c=l.value.id;let I=c.replace(new RegExp("#","g"),"");document.getElementById(I)||(console.log("id in Error"),c="")}}x()},(g=n).addEventListener?g.addEventListener(v,k,!1):g.attachEvent?g.attachEvent("on"+v,k):g["on"+v]=k;const x=()=>{new tOt({ids:c,vue:h,url:l.value.url,standard:"",extraHead:l.value.extraHead,extraCss:l.value.extraCss,zIndex:l.value.zIndex||20002,previewTitle:l.value.previewTitle||"打印预览",previewPrintBtnLabel:l.value.previewPrintBtnLabel||"打印",popTitle:l.value.popTitle,preview:l.value.preview||!1,asyncUrl:l.value.asyncUrl,previewBeforeOpenCallback(){l.value.previewBeforeOpenCallback&&l.value.previewBeforeOpenCallback(h)},previewOpenCallback(){l.value.previewOpenCallback&&l.value.previewOpenCallback(h)},openCallback(){l.value.openCallback&&l.value.openCallback(h)},closeCallback(){l.value.closeCallback&&l.value.closeCallback(h)},beforeOpenCallback(){l.value.beforeOpenCallback&&l.value.beforeOpenCallback(h)}})}},install:function(n){n.directive("print",qg)}};const Pr=Tu(nm);JDt();Pr.use(fa);Pr.use(Ex);Pr.use(Yf());Pr.use(QDt);Pr.use(qg);Pr.use(Yx);Pr.use($x).mount("#app");export{pi as $,T4 as A,je as B,SM as C,Lt as D,Ff as E,Kt as F,nM as G,B9 as H,Me as I,I8 as J,ag as K,hg as L,mvt as M,W9 as N,Ir as O,og as P,$e as Q,Dn as R,M7 as S,Ik as T,yk as U,eM as V,e7 as W,ms as X,mM as Y,lp as Z,vM as _,t as a,sh as a0,Cdt as a1,q as a2,tx as a3,Og as a4,J0 as a5,th as a6,o8 as a7,ig as a8,Gv as a9,F9 as aa,qM as ab,UM as ac,$9 as ad,M8 as ae,NW as af,Ht as ag,Ln as ah,Ze as ai,we as aj,Ve as ak,_t as al,Se as am,uo as an,bn as ao,Yw as ap,J7 as aq,X7 as ar,_x as as,eOt as at,Vx as au,V9 as av,Jf as aw,Z5 as ax,Rh as b,_a as c,pn as d,e,U9 as f,R4 as g,Uv as h,As as i,xe as j,j3 as k,F4 as l,O4 as m,Ml as n,xs as o,qv as p,o as q,Xc as r,A3 as s,vv as t,Yv as u,G0 as v,Ch as w,Cr as x,Wt as y,ci as z}; diff --git a/dashboard/dist/assets/index-7e5a38e4.js b/dashboard/dist/assets/index-7e5a38e4.js new file mode 100644 index 00000000..e6fa4c1c --- /dev/null +++ b/dashboard/dist/assets/index-7e5a38e4.js @@ -0,0 +1,716 @@ +(function(){const a=document.createElement("link").relList;if(a&&a.supports&&a.supports("modulepreload"))return;for(const l of document.querySelectorAll('link[rel="modulepreload"]'))r(l);new MutationObserver(l=>{for(const d of l)if(d.type==="childList")for(const f of d.addedNodes)f.tagName==="LINK"&&f.rel==="modulepreload"&&r(f)}).observe(document,{childList:!0,subtree:!0});function i(l){const d={};return l.integrity&&(d.integrity=l.integrity),l.referrerPolicy&&(d.referrerPolicy=l.referrerPolicy),l.crossOrigin==="use-credentials"?d.credentials="include":l.crossOrigin==="anonymous"?d.credentials="omit":d.credentials="same-origin",d}function r(l){if(l.ep)return;l.ep=!0;const d=i(l);fetch(l.href,d)}})();function Db(e,a){const i=Object.create(null),r=e.split(",");for(let l=0;l!!i[l.toLowerCase()]:l=>!!i[l]}const zb=()=>{},Gc=Object.assign,Nb=Object.prototype.hasOwnProperty,uo=(e,a)=>Nb.call(e,a),ca=Array.isArray,Nr=e=>Nf(e)==="[object Map]",Uc=e=>typeof e=="function",Hb=e=>typeof e=="string",qc=e=>typeof e=="symbol",tr=e=>e!==null&&typeof e=="object",Xb=Object.prototype.toString,Nf=e=>Xb.call(e),Yb=e=>Nf(e).slice(8,-1),Kc=e=>Hb(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Zc=(e,a)=>!Object.is(e,a),Wb=(e,a,i)=>{Object.defineProperty(e,a,{configurable:!0,enumerable:!1,value:i})};let bn;class Jc{constructor(a=!1){this.detached=a,this._active=!0,this.effects=[],this.cleanups=[],this.parent=bn,!a&&bn&&(this.index=(bn.scopes||(bn.scopes=[])).push(this)-1)}get active(){return this._active}run(a){if(this._active){const i=bn;try{return bn=this,a()}finally{bn=i}}}on(){bn=this}off(){bn=this.parent}stop(a){if(this._active){let i,r;for(i=0,r=this.effects.length;i{const a=new Set(e);return a.w=0,a.n=0,a},Xf=e=>(e.w&Ba)>0,Yf=e=>(e.n&Ba)>0,$b=({deps:e})=>{if(e.length)for(let a=0;a{const{deps:a}=e;if(a.length){let i=0;for(let r=0;r{(C==="length"||C>=y)&&p.push(k)})}else switch(i!==void 0&&p.push(f.get(i)),a){case"add":ca(e)?Kc(i)&&p.push(f.get("length")):(p.push(f.get(ri)),Nr(e)&&p.push(f.get(Fl)));break;case"delete":ca(e)||(p.push(f.get(ri)),Nr(e)&&p.push(f.get(Fl)));break;case"set":Nr(e)&&p.push(f.get(ri));break}if(p.length===1)p[0]&&Bl(p[0]);else{const y=[];for(const k of p)k&&y.push(...k);Bl(eu(y))}}function Bl(e,a){const i=ca(e)?e:[...e];for(const r of i)r.computed&&Td(r);for(const r of i)r.computed||Td(r)}function Td(e,a){(e!==zn||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}function qb(e,a){var i;return(i=qr.get(e))==null?void 0:i.get(a)}const Kb=Db("__proto__,__v_isRef,__isVue"),jf=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(qc)),Zb=ho(),Jb=ho(!1,!0),Qb=ho(!0),ex=ho(!0,!0),Id=tx();function tx(){const e={};return["includes","indexOf","lastIndexOf"].forEach(a=>{e[a]=function(...i){const r=nt(this);for(let d=0,f=this.length;d{e[a]=function(...i){Qi();const r=nt(this)[a].apply(this,i);return es(),r}}),e}function nx(e){const a=nt(this);return fn(a,"has",e),a.hasOwnProperty(e)}function ho(e=!1,a=!1){return function(r,l,d){if(l==="__v_isReactive")return!e;if(l==="__v_isReadonly")return e;if(l==="__v_isShallow")return a;if(l==="__v_raw"&&d===(e?a?Qf:Jf:a?Zf:Kf).get(r))return r;const f=ca(r);if(!e){if(f&&uo(Id,l))return Reflect.get(Id,l,d);if(l==="hasOwnProperty")return nx}const p=Reflect.get(r,l,d);return(qc(l)?jf.has(l):Kb(l))||(e||fn(r,"get",l),a)?p:yt(p)?f&&Kc(l)?p:p.value:tr(p)?e?ts(p):Gt(p):p}}const ax=Gf(),ix=Gf(!0);function Gf(e=!1){return function(i,r,l,d){let f=i[r];if(di(f)&&yt(f)&&!yt(l))return!1;if(!e&&(!Fs(l)&&!di(l)&&(f=nt(f),l=nt(l)),!ca(i)&&yt(f)&&!yt(l)))return f.value=l,!0;const p=ca(i)&&Kc(r)?Number(r)e,fo=e=>Reflect.getPrototypeOf(e);function Cr(e,a,i=!1,r=!1){e=e.__v_raw;const l=nt(e),d=nt(a);i||(a!==d&&fn(l,"get",a),fn(l,"get",d));const{has:f}=fo(l),p=r?tu:i?iu:Bs;if(f.call(l,a))return p(e.get(a));if(f.call(l,d))return p(e.get(d));e!==l&&e.get(a)}function Ar(e,a=!1){const i=this.__v_raw,r=nt(i),l=nt(e);return a||(e!==l&&fn(r,"has",e),fn(r,"has",l)),e===l?i.has(e):i.has(e)||i.has(l)}function Pr(e,a=!1){return e=e.__v_raw,!a&&fn(nt(e),"iterate",ri),Reflect.get(e,"size",e)}function Ld(e){e=nt(e);const a=nt(this);return fo(a).has.call(a,e)||(a.add(e),fa(a,"add",e,e)),this}function _d(e,a){a=nt(a);const i=nt(this),{has:r,get:l}=fo(i);let d=r.call(i,e);d||(e=nt(e),d=r.call(i,e));const f=l.call(i,e);return i.set(e,a),d?Zc(a,f)&&fa(i,"set",e,a):fa(i,"add",e,a),this}function Vd(e){const a=nt(this),{has:i,get:r}=fo(a);let l=i.call(a,e);l||(e=nt(e),l=i.call(a,e)),r&&r.call(a,e);const d=a.delete(e);return l&&fa(a,"delete",e,void 0),d}function Rd(){const e=nt(this),a=e.size!==0,i=e.clear();return a&&fa(e,"clear",void 0,void 0),i}function Er(e,a){return function(r,l){const d=this,f=d.__v_raw,p=nt(f),y=a?tu:e?iu:Bs;return!e&&fn(p,"iterate",ri),f.forEach((k,C)=>r.call(l,y(k),y(C),d))}}function Tr(e,a,i){return function(...r){const l=this.__v_raw,d=nt(l),f=Nr(d),p=e==="entries"||e===Symbol.iterator&&f,y=e==="keys"&&f,k=l[e](...r),C=i?tu:a?iu:Bs;return!a&&fn(d,"iterate",y?Fl:ri),{next(){const{value:A,done:E}=k.next();return E?{value:A,done:E}:{value:p?[C(A[0]),C(A[1])]:C(A),done:E}},[Symbol.iterator](){return this}}}}function Ca(e){return function(...a){return e==="delete"?!1:this}}function ux(){const e={get(d){return Cr(this,d)},get size(){return Pr(this)},has:Ar,add:Ld,set:_d,delete:Vd,clear:Rd,forEach:Er(!1,!1)},a={get(d){return Cr(this,d,!1,!0)},get size(){return Pr(this)},has:Ar,add:Ld,set:_d,delete:Vd,clear:Rd,forEach:Er(!1,!0)},i={get(d){return Cr(this,d,!0)},get size(){return Pr(this,!0)},has(d){return Ar.call(this,d,!0)},add:Ca("add"),set:Ca("set"),delete:Ca("delete"),clear:Ca("clear"),forEach:Er(!0,!1)},r={get(d){return Cr(this,d,!0,!0)},get size(){return Pr(this,!0)},has(d){return Ar.call(this,d,!0)},add:Ca("add"),set:Ca("set"),delete:Ca("delete"),clear:Ca("clear"),forEach:Er(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(d=>{e[d]=Tr(d,!1,!1),i[d]=Tr(d,!0,!1),a[d]=Tr(d,!1,!0),r[d]=Tr(d,!0,!0)}),[e,i,a,r]}const[dx,hx,fx,gx]=ux();function go(e,a){const i=a?e?gx:fx:e?hx:dx;return(r,l,d)=>l==="__v_isReactive"?!e:l==="__v_isReadonly"?e:l==="__v_raw"?r:Reflect.get(uo(i,l)&&l in r?i:r,l,d)}const vx={get:go(!1,!1)},mx={get:go(!1,!0)},px={get:go(!0,!1)},bx={get:go(!0,!0)},Kf=new WeakMap,Zf=new WeakMap,Jf=new WeakMap,Qf=new WeakMap;function xx(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function yx(e){return e.__v_skip||!Object.isExtensible(e)?0:xx(Yb(e))}function Gt(e){return di(e)?e:vo(e,!1,Uf,vx,Kf)}function nu(e){return vo(e,!1,lx,mx,Zf)}function ts(e){return vo(e,!0,qf,px,Jf)}function wx(e){return vo(e,!0,cx,bx,Qf)}function vo(e,a,i,r,l){if(!tr(e)||e.__v_raw&&!(a&&e.__v_isReactive))return e;const d=l.get(e);if(d)return d;const f=yx(e);if(f===0)return e;const p=new Proxy(e,f===2?r:i);return l.set(e,p),p}function ua(e){return di(e)?ua(e.__v_raw):!!(e&&e.__v_isReactive)}function di(e){return!!(e&&e.__v_isReadonly)}function Fs(e){return!!(e&&e.__v_isShallow)}function au(e){return ua(e)||di(e)}function nt(e){const a=e&&e.__v_raw;return a?nt(a):e}function ar(e){return Wb(e,"__v_skip",!0),e}const Bs=e=>tr(e)?Gt(e):e,iu=e=>tr(e)?ts(e):e;function su(e){Oa&&zn&&(e=nt(e),$f(e.dep||(e.dep=eu())))}function mo(e,a){e=nt(e);const i=e.dep;i&&Bl(i)}function yt(e){return!!(e&&e.__v_isRef===!0)}function Re(e){return eg(e,!1)}function Xe(e){return eg(e,!0)}function eg(e,a){return yt(e)?e:new Sx(e,a)}class Sx{constructor(a,i){this.__v_isShallow=i,this.dep=void 0,this.__v_isRef=!0,this._rawValue=i?a:nt(a),this._value=i?a:Bs(a)}get value(){return su(this),this._value}set value(a){const i=this.__v_isShallow||Fs(a)||di(a);a=i?a:nt(a),Zc(a,this._rawValue)&&(this._rawValue=a,this._value=i?a:Bs(a),mo(this))}}function kx(e){mo(e)}function _t(e){return yt(e)?e.value:e}function Cx(e){return Uc(e)?e():_t(e)}const Ax={get:(e,a,i)=>_t(Reflect.get(e,a,i)),set:(e,a,i,r)=>{const l=e[a];return yt(l)&&!yt(i)?(l.value=i,!0):Reflect.set(e,a,i,r)}};function ru(e){return ua(e)?e:new Proxy(e,Ax)}class Px{constructor(a){this.dep=void 0,this.__v_isRef=!0;const{get:i,set:r}=a(()=>su(this),()=>mo(this));this._get=i,this._set=r}get value(){return this._get()}set value(a){this._set(a)}}function Ex(e){return new Px(e)}function ir(e){const a=ca(e)?new Array(e.length):{};for(const i in e)a[i]=tg(e,i);return a}class Tx{constructor(a,i,r){this._object=a,this._key=i,this._defaultValue=r,this.__v_isRef=!0}get value(){const a=this._object[this._key];return a===void 0?this._defaultValue:a}set value(a){this._object[this._key]=a}get dep(){return qb(nt(this._object),this._key)}}class Ix{constructor(a){this._getter=a,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Ie(e,a,i){return yt(e)?e:Uc(e)?new Ix(e):tr(e)&&arguments.length>1?tg(e,a,i):Re(e)}function tg(e,a,i){const r=e[a];return yt(r)?r:new Tx(e,a,i)}class Lx{constructor(a,i,r,l){this._setter=i,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this._dirty=!0,this.effect=new nr(a,()=>{this._dirty||(this._dirty=!0,mo(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!l,this.__v_isReadonly=r}get value(){const a=nt(this);return su(a),(a._dirty||!a._cacheable)&&(a._dirty=!1,a._value=a.effect.run()),a._value}set value(a){this._setter(a)}}function _x(e,a,i=!1){let r,l;const d=Uc(e);return d?(r=e,l=zb):(r=e.get,l=e.set),new Lx(r,l,d||!l,i)}function ng(e,a){const i=Object.create(null),r=e.split(",");for(let l=0;l!!i[l.toLowerCase()]:l=>!!i[l]}const Ct={},Di=[],Jn=()=>{},Vx=()=>!1,Rx=/^on[^a-z]/,po=e=>Rx.test(e),ag=e=>e.startsWith("onUpdate:"),Yt=Object.assign,ou=(e,a)=>{const i=e.indexOf(a);i>-1&&e.splice(i,1)},Mx=Object.prototype.hasOwnProperty,pt=(e,a)=>Mx.call(e,a),st=Array.isArray,ig=e=>bo(e)==="[object Map]",sg=e=>bo(e)==="[object Set]",Ox=e=>bo(e)==="[object RegExp]",it=e=>typeof e=="function",Dt=e=>typeof e=="string",Ot=e=>e!==null&&typeof e=="object",lu=e=>Ot(e)&&it(e.then)&&it(e.catch),rg=Object.prototype.toString,bo=e=>rg.call(e),og=e=>bo(e)==="[object Object]",Cs=ng(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),xo=e=>{const a=Object.create(null);return i=>a[i]||(a[i]=e(i))},Fx=/-(\w)/g,Sn=xo(e=>e.replace(Fx,(a,i)=>i?i.toUpperCase():"")),Bx=/\B([A-Z])/g,yo=xo(e=>e.replace(Bx,"-$1").toLowerCase()),pa=xo(e=>e.charAt(0).toUpperCase()+e.slice(1)),As=xo(e=>e?`on${pa(e)}`:""),Dl=(e,a)=>!Object.is(e,a),Ps=(e,a)=>{for(let i=0;i{Object.defineProperty(e,a,{configurable:!0,enumerable:!1,value:i})},Dx=e=>{const a=parseFloat(e);return isNaN(a)?e:a},zx=e=>{const a=Dt(e)?Number(e):NaN;return isNaN(a)?e:a};let Md;const Nl=()=>Md||(Md=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),Nx="Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console",Hx=ng(Nx);function sr(e){if(st(e)){const a={};for(let i=0;i{if(i){const r=i.split(Yx);r.length>1&&(a[r[0].trim()]=r[1].trim())}}),a}function rr(e){let a="";if(Dt(e))a=e;else if(st(e))for(let i=0;iDt(e)?e:e==null?"":st(e)||Ot(e)&&(e.toString===rg||!it(e.toString))?JSON.stringify(e,lg,2):String(e),lg=(e,a)=>a&&a.__v_isRef?lg(e,a.value):ig(a)?{[`Map(${a.size})`]:[...a.entries()].reduce((i,[r,l])=>(i[`${r} =>`]=l,i),{})}:sg(a)?{[`Set(${a.size})`]:[...a.values()]}:Ot(a)&&!st(a)&&!og(a)?String(a):a;function Ux(e,...a){}function qx(e,a){}function da(e,a,i,r){let l;try{l=r?e(...r):e()}catch(d){bi(d,a,i)}return l}function wn(e,a,i,r){if(it(e)){const d=da(e,a,i,r);return d&&lu(d)&&d.catch(f=>{bi(f,a,i)}),d}const l=[];for(let d=0;d>>1;zs(Jt[r])Kn&&Jt.splice(a,1)}function uu(e){st(e)?zi.push(...e):(!ra||!ra.includes(e,e.allowRecurse?ti+1:ti))&&zi.push(e),ug()}function Od(e,a=Ds?Kn+1:0){for(;azs(i)-zs(r)),ti=0;tie.id==null?1/0:e.id,Qx=(e,a)=>{const i=zs(e)-zs(a);if(i===0){if(e.pre&&!a.pre)return-1;if(a.pre&&!e.pre)return 1}return i};function dg(e){Hl=!1,Ds=!0,Jt.sort(Qx);const a=Jn;try{for(Kn=0;KnOi.emit(l,...d)),Ir=[]):typeof window<"u"&&window.HTMLElement&&!((r=(i=window.navigator)==null?void 0:i.userAgent)!=null&&r.includes("jsdom"))?((a.__VUE_DEVTOOLS_HOOK_REPLAY__=a.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(d=>{hg(d,a)}),setTimeout(()=>{Oi||(a.__VUE_DEVTOOLS_HOOK_REPLAY__=null,Ir=[])},3e3)):Ir=[]}function ey(e,a,...i){if(e.isUnmounted)return;const r=e.vnode.props||Ct;let l=i;const d=a.startsWith("update:"),f=d&&a.slice(7);if(f&&f in r){const C=`${f==="modelValue"?"model":f}Modifiers`,{number:A,trim:E}=r[C]||Ct;E&&(l=i.map(_=>Dt(_)?_.trim():_)),A&&(l=i.map(Dx))}let p,y=r[p=As(a)]||r[p=As(Sn(a))];!y&&d&&(y=r[p=As(yo(a))]),y&&wn(y,e,6,l);const k=r[p+"Once"];if(k){if(!e.emitted)e.emitted={};else if(e.emitted[p])return;e.emitted[p]=!0,wn(k,e,6,l)}}function fg(e,a,i=!1){const r=a.emitsCache,l=r.get(e);if(l!==void 0)return l;const d=e.emits;let f={},p=!1;if(!it(e)){const y=k=>{const C=fg(k,a,!0);C&&(p=!0,Yt(f,C))};!i&&a.mixins.length&&a.mixins.forEach(y),e.extends&&y(e.extends),e.mixins&&e.mixins.forEach(y)}return!d&&!p?(Ot(e)&&r.set(e,null),null):(st(d)?d.forEach(y=>f[y]=null):Yt(f,d),Ot(e)&&r.set(e,f),f)}function So(e,a){return!e||!po(a)?!1:(a=a.slice(2).replace(/Once$/,""),pt(e,a[0].toLowerCase()+a.slice(1))||pt(e,yo(a))||pt(e,a))}let Xt=null,ko=null;function Ns(e){const a=Xt;return Xt=e,ko=e&&e.type.__scopeId||null,a}function ty(e){ko=e}function ny(){ko=null}const ay=e=>du;function du(e,a=Xt,i){if(!a||e._n)return e;const r=(...l)=>{r._d&&Ul(-1);const d=Ns(a);let f;try{f=e(...l)}finally{Ns(d),r._d&&Ul(1)}return f};return r._n=!0,r._c=!0,r._d=!0,r}function Hr(e){const{type:a,vnode:i,proxy:r,withProxy:l,props:d,propsOptions:[f],slots:p,attrs:y,emit:k,render:C,renderCache:A,data:E,setupState:_,ctx:M,inheritAttrs:F}=e;let $,B;const L=Ns(e);try{if(i.shapeFlag&4){const Y=l||r;$=xn(C.call(Y,Y,A,d,_,E,M)),B=y}else{const Y=a;$=xn(Y.length>1?Y(d,{attrs:y,slots:p,emit:k}):Y(d,null)),B=a.props?y:sy(y)}}catch(Y){Is.length=0,bi(Y,e,1),$=R(tn)}let q=$;if(B&&F!==!1){const Y=Object.keys(B),{shapeFlag:H}=q;Y.length&&H&7&&(f&&Y.some(ag)&&(B=ry(B,f)),q=Yn(q,B))}return i.dirs&&(q=Yn(q),q.dirs=q.dirs?q.dirs.concat(i.dirs):i.dirs),i.transition&&(q.transition=i.transition),$=q,Ns(L),$}function iy(e){let a;for(let i=0;i{let a;for(const i in e)(i==="class"||i==="style"||po(i))&&((a||(a={}))[i]=e[i]);return a},ry=(e,a)=>{const i={};for(const r in e)(!ag(r)||!(r.slice(9)in a))&&(i[r]=e[r]);return i};function oy(e,a,i){const{props:r,children:l,component:d}=e,{props:f,children:p,patchFlag:y}=a,k=d.emitsOptions;if(a.dirs||a.transition)return!0;if(i&&y>=0){if(y&1024)return!0;if(y&16)return r?Fd(r,f,k):!!f;if(y&8){const C=a.dynamicProps;for(let A=0;Ae.__isSuspense,ly={name:"Suspense",__isSuspense:!0,process(e,a,i,r,l,d,f,p,y,k){e==null?uy(a,i,r,l,d,f,p,y,k):dy(e,a,i,r,l,f,p,y,k)},hydrate:hy,create:fu,normalize:fy},cy=ly;function Hs(e,a){const i=e.props&&e.props[a];it(i)&&i()}function uy(e,a,i,r,l,d,f,p,y){const{p:k,o:{createElement:C}}=y,A=C("div"),E=e.suspense=fu(e,l,r,a,A,i,d,f,p,y);k(null,E.pendingBranch=e.ssContent,A,null,r,E,d,f),E.deps>0?(Hs(e,"onPending"),Hs(e,"onFallback"),k(null,e.ssFallback,a,i,r,null,d,f),Ni(E,e.ssFallback)):E.resolve(!1,!0)}function dy(e,a,i,r,l,d,f,p,{p:y,um:k,o:{createElement:C}}){const A=a.suspense=e.suspense;A.vnode=a,a.el=e.el;const E=a.ssContent,_=a.ssFallback,{activeBranch:M,pendingBranch:F,isInFallback:$,isHydrating:B}=A;if(F)A.pendingBranch=E,Nn(E,F)?(y(F,E,A.hiddenContainer,null,l,A,d,f,p),A.deps<=0?A.resolve():$&&(y(M,_,i,r,l,null,d,f,p),Ni(A,_))):(A.pendingId++,B?(A.isHydrating=!1,A.activeBranch=F):k(F,l,A),A.deps=0,A.effects.length=0,A.hiddenContainer=C("div"),$?(y(null,E,A.hiddenContainer,null,l,A,d,f,p),A.deps<=0?A.resolve():(y(M,_,i,r,l,null,d,f,p),Ni(A,_))):M&&Nn(E,M)?(y(M,E,i,r,l,A,d,f,p),A.resolve(!0)):(y(null,E,A.hiddenContainer,null,l,A,d,f,p),A.deps<=0&&A.resolve()));else if(M&&Nn(E,M))y(M,E,i,r,l,A,d,f,p),Ni(A,E);else if(Hs(a,"onPending"),A.pendingBranch=E,A.pendingId++,y(null,E,A.hiddenContainer,null,l,A,d,f,p),A.deps<=0)A.resolve();else{const{timeout:L,pendingId:q}=A;L>0?setTimeout(()=>{A.pendingId===q&&A.fallback(_)},L):L===0&&A.fallback(_)}}function fu(e,a,i,r,l,d,f,p,y,k,C=!1){const{p:A,m:E,um:_,n:M,o:{parentNode:F,remove:$}}=k;let B;const L=gy(e);L&&a!=null&&a.pendingBranch&&(B=a.pendingId,a.deps++);const q=e.props?zx(e.props.timeout):void 0,Y={vnode:e,parent:a,parentComponent:i,isSVG:f,container:r,hiddenContainer:l,anchor:d,deps:0,pendingId:0,timeout:typeof q=="number"?q:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:C,isUnmounted:!1,effects:[],resolve(H=!1,J=!1){const{vnode:ee,activeBranch:W,pendingBranch:j,pendingId:Q,effects:ie,parentComponent:ne,container:oe}=Y;if(Y.isHydrating)Y.isHydrating=!1;else if(!H){const ye=W&&j.transition&&j.transition.mode==="out-in";ye&&(W.transition.afterLeave=()=>{Q===Y.pendingId&&E(j,oe,fe,0)});let{anchor:fe}=Y;W&&(fe=M(W),_(W,ne,Y,!0)),ye||E(j,oe,fe,0)}Ni(Y,j),Y.pendingBranch=null,Y.isInFallback=!1;let le=Y.parent,Ce=!1;for(;le;){if(le.pendingBranch){le.effects.push(...ie),Ce=!0;break}le=le.parent}Ce||uu(ie),Y.effects=[],L&&a&&a.pendingBranch&&B===a.pendingId&&(a.deps--,a.deps===0&&!J&&a.resolve()),Hs(ee,"onResolve")},fallback(H){if(!Y.pendingBranch)return;const{vnode:J,activeBranch:ee,parentComponent:W,container:j,isSVG:Q}=Y;Hs(J,"onFallback");const ie=M(ee),ne=()=>{Y.isInFallback&&(A(null,H,j,ie,W,null,Q,p,y),Ni(Y,H))},oe=H.transition&&H.transition.mode==="out-in";oe&&(ee.transition.afterLeave=ne),Y.isInFallback=!0,_(ee,W,null,!0),oe||ne()},move(H,J,ee){Y.activeBranch&&E(Y.activeBranch,H,J,ee),Y.container=H},next(){return Y.activeBranch&&M(Y.activeBranch)},registerDep(H,J){const ee=!!Y.pendingBranch;ee&&Y.deps++;const W=H.vnode.el;H.asyncDep.catch(j=>{bi(j,H,0)}).then(j=>{if(H.isUnmounted||Y.isUnmounted||Y.pendingId!==H.suspenseId)return;H.asyncResolved=!0;const{vnode:Q}=H;ql(H,j,!1),W&&(Q.el=W);const ie=!W&&H.subTree.el;J(H,Q,F(W||H.subTree.el),W?null:M(H.subTree),Y,f,y),ie&&$(ie),hu(H,Q.el),ee&&--Y.deps===0&&Y.resolve()})},unmount(H,J){Y.isUnmounted=!0,Y.activeBranch&&_(Y.activeBranch,i,H,J),Y.pendingBranch&&_(Y.pendingBranch,i,H,J)}};return Y}function hy(e,a,i,r,l,d,f,p,y){const k=a.suspense=fu(a,r,i,e.parentNode,document.createElement("div"),null,l,d,f,p,!0),C=y(e,k.pendingBranch=a.ssContent,i,k,d,f);return k.deps===0&&k.resolve(!1,!0),C}function fy(e){const{shapeFlag:a,children:i}=e,r=a&32;e.ssContent=Bd(r?i.default:i),e.ssFallback=r?Bd(i.fallback):R(tn)}function Bd(e){let a;if(it(e)){const i=fi&&e._c;i&&(e._d=!1,ur()),e=e(),i&&(e._d=!0,a=hn,Xg())}return st(e)&&(e=iy(e)),e=xn(e),a&&!e.dynamicChildren&&(e.dynamicChildren=a.filter(i=>i!==e)),e}function vg(e,a){a&&a.pendingBranch?st(e)?a.effects.push(...e):a.effects.push(e):uu(e)}function Ni(e,a){e.activeBranch=a;const{vnode:i,parentComponent:r}=e,l=i.el=a.el;r&&r.subTree===i&&(r.vnode.el=l,hu(r,l))}function gy(e){var a;return((a=e.props)==null?void 0:a.suspensible)!=null&&e.props.suspensible!==!1}function vn(e,a){return or(e,null,a)}function mg(e,a){return or(e,null,{flush:"post"})}function vy(e,a){return or(e,null,{flush:"sync"})}const Lr={};function He(e,a,i){return or(e,a,i)}function or(e,a,{immediate:i,deep:r,flush:l,onTrack:d,onTrigger:f}=Ct){var p;const y=Qc()===((p=Mt)==null?void 0:p.scope)?Mt:null;let k,C=!1,A=!1;if(yt(e)?(k=()=>e.value,C=Fs(e)):ua(e)?(k=()=>e,r=!0):st(e)?(A=!0,C=e.some(Y=>ua(Y)||Fs(Y)),k=()=>e.map(Y=>{if(yt(Y))return Y.value;if(ua(Y))return ai(Y);if(it(Y))return da(Y,y,2)})):it(e)?a?k=()=>da(e,y,2):k=()=>{if(!(y&&y.isUnmounted))return E&&E(),wn(e,y,3,[_])}:k=Jn,a&&r){const Y=k;k=()=>ai(Y())}let E,_=Y=>{E=L.onStop=()=>{da(Y,y,4)}},M;if(Yi)if(_=Jn,a?i&&wn(a,y,3,[k(),A?[]:void 0,_]):k(),l==="sync"){const Y=Jg();M=Y.__watcherHandles||(Y.__watcherHandles=[])}else return Jn;let F=A?new Array(e.length).fill(Lr):Lr;const $=()=>{if(L.active)if(a){const Y=L.run();(r||C||(A?Y.some((H,J)=>Dl(H,F[J])):Dl(Y,F)))&&(E&&E(),wn(a,y,3,[Y,F===Lr?void 0:A&&F[0]===Lr?[]:F,_]),F=Y)}else L.run()};$.allowRecurse=!!a;let B;l==="sync"?B=$:l==="post"?B=()=>jt($,y&&y.suspense):($.pre=!0,y&&($.id=y.uid),B=()=>wo($));const L=new nr(k,B);a?i?$():F=L.run():l==="post"?jt(L.run.bind(L),y&&y.suspense):L.run();const q=()=>{L.stop(),y&&y.scope&&ou(y.scope.effects,L)};return M&&M.push(q),q}function my(e,a,i){const r=this.proxy,l=Dt(e)?e.includes(".")?pg(r,e):()=>r[e]:e.bind(r,r);let d;it(a)?d=a:(d=a.handler,i=a);const f=Mt;Na(this);const p=or(l,d.bind(r),i);return f?Na(f):Fa(),p}function pg(e,a){const i=a.split(".");return()=>{let r=e;for(let l=0;l{ai(i,a)});else if(og(e))for(const i in e)ai(e[i],a);return e}function Et(e,a){const i=Xt;if(i===null)return e;const r=Lo(i)||i.proxy,l=e.dirs||(e.dirs=[]);for(let d=0;d{e.isMounted=!0}),qt(()=>{e.isUnmounting=!0}),e}const Pn=[Function,Array],vu={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Pn,onEnter:Pn,onAfterEnter:Pn,onEnterCancelled:Pn,onBeforeLeave:Pn,onLeave:Pn,onAfterLeave:Pn,onLeaveCancelled:Pn,onBeforeAppear:Pn,onAppear:Pn,onAfterAppear:Pn,onAppearCancelled:Pn},py={name:"BaseTransition",props:vu,setup(e,{slots:a}){const i=ta(),r=gu();let l;return()=>{const d=a.default&&Co(a.default(),!0);if(!d||!d.length)return;let f=d[0];if(d.length>1){for(const F of d)if(F.type!==tn){f=F;break}}const p=nt(e),{mode:y}=p;if(r.isLeaving)return ul(f);const k=Dd(f);if(!k)return ul(f);const C=Xi(k,p,r,i);hi(k,C);const A=i.subTree,E=A&&Dd(A);let _=!1;const{getTransitionKey:M}=k.type;if(M){const F=M();l===void 0?l=F:F!==l&&(l=F,_=!0)}if(E&&E.type!==tn&&(!Nn(k,E)||_)){const F=Xi(E,p,r,i);if(hi(E,F),y==="out-in")return r.isLeaving=!0,F.afterLeave=()=>{r.isLeaving=!1,i.update.active!==!1&&i.update()},ul(f);y==="in-out"&&k.type!==tn&&(F.delayLeave=($,B,L)=>{const q=xg(r,E);q[String(E.key)]=E,$._leaveCb=()=>{B(),$._leaveCb=void 0,delete C.delayedLeave},C.delayedLeave=L})}return f}}},bg=py;function xg(e,a){const{leavingVNodes:i}=e;let r=i.get(a.type);return r||(r=Object.create(null),i.set(a.type,r)),r}function Xi(e,a,i,r){const{appear:l,mode:d,persisted:f=!1,onBeforeEnter:p,onEnter:y,onAfterEnter:k,onEnterCancelled:C,onBeforeLeave:A,onLeave:E,onAfterLeave:_,onLeaveCancelled:M,onBeforeAppear:F,onAppear:$,onAfterAppear:B,onAppearCancelled:L}=a,q=String(e.key),Y=xg(i,e),H=(W,j)=>{W&&wn(W,r,9,j)},J=(W,j)=>{const Q=j[1];H(W,j),st(W)?W.every(ie=>ie.length<=1)&&Q():W.length<=1&&Q()},ee={mode:d,persisted:f,beforeEnter(W){let j=p;if(!i.isMounted)if(l)j=F||p;else return;W._leaveCb&&W._leaveCb(!0);const Q=Y[q];Q&&Nn(e,Q)&&Q.el._leaveCb&&Q.el._leaveCb(),H(j,[W])},enter(W){let j=y,Q=k,ie=C;if(!i.isMounted)if(l)j=$||y,Q=B||k,ie=L||C;else return;let ne=!1;const oe=W._enterCb=le=>{ne||(ne=!0,le?H(ie,[W]):H(Q,[W]),ee.delayedLeave&&ee.delayedLeave(),W._enterCb=void 0)};j?J(j,[W,oe]):oe()},leave(W,j){const Q=String(e.key);if(W._enterCb&&W._enterCb(!0),i.isUnmounting)return j();H(A,[W]);let ie=!1;const ne=W._leaveCb=oe=>{ie||(ie=!0,j(),oe?H(M,[W]):H(_,[W]),W._leaveCb=void 0,Y[Q]===e&&delete Y[Q])};Y[Q]=e,E?J(E,[W,ne]):ne()},clone(W){return Xi(W,a,i,r)}};return ee}function ul(e){if(lr(e))return e=Yn(e),e.children=null,e}function Dd(e){return lr(e)?e.children?e.children[0]:void 0:e}function hi(e,a){e.shapeFlag&6&&e.component?hi(e.component.subTree,a):e.shapeFlag&128?(e.ssContent.transition=a.clone(e.ssContent),e.ssFallback.transition=a.clone(e.ssFallback)):e.transition=a}function Co(e,a=!1,i){let r=[],l=0;for(let d=0;d1)for(let d=0;dYt({name:e.name},a,{setup:e}))():e}const oi=e=>!!e.type.__asyncLoader;function by(e){it(e)&&(e={loader:e});const{loader:a,loadingComponent:i,errorComponent:r,delay:l=200,timeout:d,suspensible:f=!0,onError:p}=e;let y=null,k,C=0;const A=()=>(C++,y=null,E()),E=()=>{let _;return y||(_=y=a().catch(M=>{if(M=M instanceof Error?M:new Error(String(M)),p)return new Promise((F,$)=>{p(M,()=>F(A()),()=>$(M),C+1)});throw M}).then(M=>_!==y&&y?y:(M&&(M.__esModule||M[Symbol.toStringTag]==="Module")&&(M=M.default),k=M,M)))};return xi({name:"AsyncComponentWrapper",__asyncLoader:E,get __asyncResolved(){return k},setup(){const _=Mt;if(k)return()=>dl(k,_);const M=L=>{y=null,bi(L,_,13,!r)};if(f&&_.suspense||Yi)return E().then(L=>()=>dl(L,_)).catch(L=>(M(L),()=>r?R(r,{error:L}):null));const F=Re(!1),$=Re(),B=Re(!!l);return l&&setTimeout(()=>{B.value=!1},l),d!=null&&setTimeout(()=>{if(!F.value&&!$.value){const L=new Error(`Async component timed out after ${d}ms.`);M(L),$.value=L}},d),E().then(()=>{F.value=!0,_.parent&&lr(_.parent.vnode)&&wo(_.parent.update)}).catch(L=>{M(L),$.value=L}),()=>{if(F.value&&k)return dl(k,_);if($.value&&r)return R(r,{error:$.value});if(i&&!B.value)return R(i)}}})}function dl(e,a){const{ref:i,props:r,children:l,ce:d}=a.vnode,f=R(e,r,l);return f.ref=i,f.ce=d,delete a.vnode.ce,f}const lr=e=>e.type.__isKeepAlive,xy={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:a}){const i=ta(),r=i.ctx;if(!r.renderer)return()=>{const L=a.default&&a.default();return L&&L.length===1?L[0]:L};const l=new Map,d=new Set;let f=null;const p=i.suspense,{renderer:{p:y,m:k,um:C,o:{createElement:A}}}=r,E=A("div");r.activate=(L,q,Y,H,J)=>{const ee=L.component;k(L,q,Y,0,p),y(ee.vnode,L,q,Y,ee,p,H,L.slotScopeIds,J),jt(()=>{ee.isDeactivated=!1,ee.a&&Ps(ee.a);const W=L.props&&L.props.onVnodeMounted;W&&dn(W,ee.parent,L)},p)},r.deactivate=L=>{const q=L.component;k(L,E,null,1,p),jt(()=>{q.da&&Ps(q.da);const Y=L.props&&L.props.onVnodeUnmounted;Y&&dn(Y,q.parent,L),q.isDeactivated=!0},p)};function _(L){hl(L),C(L,i,p,!0)}function M(L){l.forEach((q,Y)=>{const H=Zl(q.type);H&&(!L||!L(H))&&F(Y)})}function F(L){const q=l.get(L);!f||!Nn(q,f)?_(q):f&&hl(f),l.delete(L),d.delete(L)}He(()=>[e.include,e.exclude],([L,q])=>{L&&M(Y=>ws(L,Y)),q&&M(Y=>!ws(q,Y))},{flush:"post",deep:!0});let $=null;const B=()=>{$!=null&&l.set($,fl(i.subTree))};return zt(B),Po(B),qt(()=>{l.forEach(L=>{const{subTree:q,suspense:Y}=i,H=fl(q);if(L.type===H.type&&L.key===H.key){hl(H);const J=H.component.da;J&&jt(J,Y);return}_(L)})}),()=>{if($=null,!a.default)return null;const L=a.default(),q=L[0];if(L.length>1)return f=null,L;if(!za(q)||!(q.shapeFlag&4)&&!(q.shapeFlag&128))return f=null,q;let Y=fl(q);const H=Y.type,J=Zl(oi(Y)?Y.type.__asyncResolved||{}:H),{include:ee,exclude:W,max:j}=e;if(ee&&(!J||!ws(ee,J))||W&&J&&ws(W,J))return f=Y,q;const Q=Y.key==null?H:Y.key,ie=l.get(Q);return Y.el&&(Y=Yn(Y),q.shapeFlag&128&&(q.ssContent=Y)),$=Q,ie?(Y.el=ie.el,Y.component=ie.component,Y.transition&&hi(Y,Y.transition),Y.shapeFlag|=512,d.delete(Q),d.add(Q)):(d.add(Q),j&&d.size>parseInt(j,10)&&F(d.values().next().value)),Y.shapeFlag|=256,f=Y,gg(q.type)?q:Y}}},yy=xy;function ws(e,a){return st(e)?e.some(i=>ws(i,a)):Dt(e)?e.split(",").includes(a):Ox(e)?e.test(a):!1}function mu(e,a){yg(e,"a",a)}function pu(e,a){yg(e,"da",a)}function yg(e,a,i=Mt){const r=e.__wdc||(e.__wdc=()=>{let l=i;for(;l;){if(l.isDeactivated)return;l=l.parent}return e()});if(Ao(a,r,i),i){let l=i.parent;for(;l&&l.parent;)lr(l.parent.vnode)&&wy(r,a,i,l),l=l.parent}}function wy(e,a,i,r){const l=Ao(a,e,r,!0);Eo(()=>{ou(r[a],l)},i)}function hl(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function fl(e){return e.shapeFlag&128?e.ssContent:e}function Ao(e,a,i=Mt,r=!1){if(i){const l=i[e]||(i[e]=[]),d=a.__weh||(a.__weh=(...f)=>{if(i.isUnmounted)return;Qi(),Na(i);const p=wn(a,i,e,f);return Fa(),es(),p});return r?l.unshift(d):l.push(d),d}}const ba=e=>(a,i=Mt)=>(!Yi||e==="sp")&&Ao(e,(...r)=>a(...r),i),cr=ba("bm"),zt=ba("m"),bu=ba("bu"),Po=ba("u"),qt=ba("bum"),Eo=ba("um"),wg=ba("sp"),Sg=ba("rtg"),kg=ba("rtc");function Cg(e,a=Mt){Ao("ec",e,a)}const xu="components",Sy="directives";function ky(e,a){return yu(xu,e,!0,a)||e}const Ag=Symbol.for("v-ndc");function Pg(e){return Dt(e)?yu(xu,e,!1)||e:e||Ag}function mn(e){return yu(Sy,e)}function yu(e,a,i=!0,r=!1){const l=Xt||Mt;if(l){const d=l.type;if(e===xu){const p=Zl(d,!1);if(p&&(p===a||p===Sn(a)||p===pa(Sn(a))))return d}const f=zd(l[e]||d[e],a)||zd(l.appContext[e],a);return!f&&r?d:f}}function zd(e,a){return e&&(e[a]||e[Sn(a)]||e[pa(Sn(a))])}function Cy(e,a,i,r){let l;const d=i&&i[r];if(st(e)||Dt(e)){l=new Array(e.length);for(let f=0,p=e.length;fa(f,p,void 0,d&&d[p]));else{const f=Object.keys(e);l=new Array(f.length);for(let p=0,y=f.length;p{const d=r.fn(...l);return d&&(d.key=r.key),d}:r.fn)}return e}function Py(e,a,i={},r,l){if(Xt.isCE||Xt.parent&&oi(Xt.parent)&&Xt.parent.isCE)return a!=="default"&&(i.name=a),R("slot",i,r&&r());let d=e[a];d&&d._c&&(d._d=!1),ur();const f=d&&Eg(d(i)),p=To(Ke,{key:i.key||f&&f.key||`_${a}`},f||(r?r():[]),f&&e._===1?64:-2);return!l&&p.scopeId&&(p.slotScopeIds=[p.scopeId+"-s"]),d&&d._c&&(d._d=!0),p}function Eg(e){return e.some(a=>za(a)?!(a.type===tn||a.type===Ke&&!Eg(a.children)):!0)?e:null}function Ey(e,a){const i={};for(const r in e)i[a&&/[A-Z]/.test(r)?`on:${r}`:As(r)]=e[r];return i}const Xl=e=>e?Gg(e)?Lo(e)||e.proxy:Xl(e.parent):null,Es=Yt(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Xl(e.parent),$root:e=>Xl(e.root),$emit:e=>e.emit,$options:e=>wu(e),$forceUpdate:e=>e.f||(e.f=()=>wo(e.update)),$nextTick:e=>e.n||(e.n=gt.bind(e.proxy)),$watch:e=>my.bind(e)}),gl=(e,a)=>e!==Ct&&!e.__isScriptSetup&&pt(e,a),Yl={get({_:e},a){const{ctx:i,setupState:r,data:l,props:d,accessCache:f,type:p,appContext:y}=e;let k;if(a[0]!=="$"){const _=f[a];if(_!==void 0)switch(_){case 1:return r[a];case 2:return l[a];case 4:return i[a];case 3:return d[a]}else{if(gl(r,a))return f[a]=1,r[a];if(l!==Ct&&pt(l,a))return f[a]=2,l[a];if((k=e.propsOptions[0])&&pt(k,a))return f[a]=3,d[a];if(i!==Ct&&pt(i,a))return f[a]=4,i[a];Wl&&(f[a]=0)}}const C=Es[a];let A,E;if(C)return a==="$attrs"&&fn(e,"get",a),C(e);if((A=p.__cssModules)&&(A=A[a]))return A;if(i!==Ct&&pt(i,a))return f[a]=4,i[a];if(E=y.config.globalProperties,pt(E,a))return E[a]},set({_:e},a,i){const{data:r,setupState:l,ctx:d}=e;return gl(l,a)?(l[a]=i,!0):r!==Ct&&pt(r,a)?(r[a]=i,!0):pt(e.props,a)||a[0]==="$"&&a.slice(1)in e?!1:(d[a]=i,!0)},has({_:{data:e,setupState:a,accessCache:i,ctx:r,appContext:l,propsOptions:d}},f){let p;return!!i[f]||e!==Ct&&pt(e,f)||gl(a,f)||(p=d[0])&&pt(p,f)||pt(r,f)||pt(Es,f)||pt(l.config.globalProperties,f)},defineProperty(e,a,i){return i.get!=null?e._.accessCache[a]=0:pt(i,"value")&&this.set(e,a,i.value,null),Reflect.defineProperty(e,a,i)}},Ty=Yt({},Yl,{get(e,a){if(a!==Symbol.unscopables)return Yl.get(e,a,e)},has(e,a){return a[0]!=="_"&&!Hx(a)}});function Iy(){return null}function Ly(){return null}function _y(e){}function Vy(e){}function Ry(){return null}function My(){}function Oy(e,a){return null}function Fy(){return Tg().slots}function By(){return Tg().attrs}function Dy(e,a,i){const r=ta();if(i&&i.local){const l=Re(e[a]);return He(()=>e[a],d=>l.value=d),He(l,d=>{d!==e[a]&&r.emit(`update:${a}`,d)}),l}else return{__v_isRef:!0,get value(){return e[a]},set value(l){r.emit(`update:${a}`,l)}}}function Tg(){const e=ta();return e.setupContext||(e.setupContext=Kg(e))}function Xs(e){return st(e)?e.reduce((a,i)=>(a[i]=null,a),{}):e}function zy(e,a){const i=Xs(e);for(const r in a){if(r.startsWith("__skip"))continue;let l=i[r];l?st(l)||it(l)?l=i[r]={type:l,default:a[r]}:l.default=a[r]:l===null&&(l=i[r]={default:a[r]}),l&&a[`__skip_${r}`]&&(l.skipFactory=!0)}return i}function Ny(e,a){return!e||!a?e||a:st(e)&&st(a)?e.concat(a):Yt({},Xs(e),Xs(a))}function Hy(e,a){const i={};for(const r in e)a.includes(r)||Object.defineProperty(i,r,{enumerable:!0,get:()=>e[r]});return i}function Xy(e){const a=ta();let i=e();return Fa(),lu(i)&&(i=i.catch(r=>{throw Na(a),r})),[i,()=>Na(a)]}let Wl=!0;function Yy(e){const a=wu(e),i=e.proxy,r=e.ctx;Wl=!1,a.beforeCreate&&Nd(a.beforeCreate,e,"bc");const{data:l,computed:d,methods:f,watch:p,provide:y,inject:k,created:C,beforeMount:A,mounted:E,beforeUpdate:_,updated:M,activated:F,deactivated:$,beforeDestroy:B,beforeUnmount:L,destroyed:q,unmounted:Y,render:H,renderTracked:J,renderTriggered:ee,errorCaptured:W,serverPrefetch:j,expose:Q,inheritAttrs:ie,components:ne,directives:oe,filters:le}=a;if(k&&Wy(k,r,null),f)for(const fe in f){const he=f[fe];it(he)&&(r[fe]=he.bind(i))}if(l){const fe=l.call(i,i);Ot(fe)&&(e.data=Gt(fe))}if(Wl=!0,d)for(const fe in d){const he=d[fe],Se=it(he)?he.bind(i,i):it(he.get)?he.get.bind(i,i):Jn,Ee=!it(he)&&it(he.set)?he.set.bind(i):Jn,De=X({get:Se,set:Ee});Object.defineProperty(r,fe,{enumerable:!0,configurable:!0,get:()=>De.value,set:Fe=>De.value=Fe})}if(p)for(const fe in p)Ig(p[fe],r,i,fe);if(y){const fe=it(y)?y.call(i):y;Reflect.ownKeys(fe).forEach(he=>{Pt(he,fe[he])})}C&&Nd(C,e,"c");function ye(fe,he){st(he)?he.forEach(Se=>fe(Se.bind(i))):he&&fe(he.bind(i))}if(ye(cr,A),ye(zt,E),ye(bu,_),ye(Po,M),ye(mu,F),ye(pu,$),ye(Cg,W),ye(kg,J),ye(Sg,ee),ye(qt,L),ye(Eo,Y),ye(wg,j),st(Q))if(Q.length){const fe=e.exposed||(e.exposed={});Q.forEach(he=>{Object.defineProperty(fe,he,{get:()=>i[he],set:Se=>i[he]=Se})})}else e.exposed||(e.exposed={});H&&e.render===Jn&&(e.render=H),ie!=null&&(e.inheritAttrs=ie),ne&&(e.components=ne),oe&&(e.directives=oe)}function Wy(e,a,i=Jn){st(e)&&(e=$l(e));for(const r in e){const l=e[r];let d;Ot(l)?"default"in l?d=ct(l.from||r,l.default,!0):d=ct(l.from||r):d=ct(l),yt(d)?Object.defineProperty(a,r,{enumerable:!0,configurable:!0,get:()=>d.value,set:f=>d.value=f}):a[r]=d}}function Nd(e,a,i){wn(st(e)?e.map(r=>r.bind(a.proxy)):e.bind(a.proxy),a,i)}function Ig(e,a,i,r){const l=r.includes(".")?pg(i,r):()=>i[r];if(Dt(e)){const d=a[e];it(d)&&He(l,d)}else if(it(e))He(l,e.bind(i));else if(Ot(e))if(st(e))e.forEach(d=>Ig(d,a,i,r));else{const d=it(e.handler)?e.handler.bind(i):a[e.handler];it(d)&&He(l,d,e)}}function wu(e){const a=e.type,{mixins:i,extends:r}=a,{mixins:l,optionsCache:d,config:{optionMergeStrategies:f}}=e.appContext,p=d.get(a);let y;return p?y=p:!l.length&&!i&&!r?y=a:(y={},l.length&&l.forEach(k=>Zr(y,k,f,!0)),Zr(y,a,f)),Ot(a)&&d.set(a,y),y}function Zr(e,a,i,r=!1){const{mixins:l,extends:d}=a;d&&Zr(e,d,i,!0),l&&l.forEach(f=>Zr(e,f,i,!0));for(const f in a)if(!(r&&f==="expose")){const p=$y[f]||i&&i[f];e[f]=p?p(e[f],a[f]):a[f]}return e}const $y={data:Hd,props:Xd,emits:Xd,methods:Ss,computed:Ss,beforeCreate:ln,created:ln,beforeMount:ln,mounted:ln,beforeUpdate:ln,updated:ln,beforeDestroy:ln,beforeUnmount:ln,destroyed:ln,unmounted:ln,activated:ln,deactivated:ln,errorCaptured:ln,serverPrefetch:ln,components:Ss,directives:Ss,watch:Gy,provide:Hd,inject:jy};function Hd(e,a){return a?e?function(){return Yt(it(e)?e.call(this,this):e,it(a)?a.call(this,this):a)}:a:e}function jy(e,a){return Ss($l(e),$l(a))}function $l(e){if(st(e)){const a={};for(let i=0;i1)return i&&it(a)?a.call(r&&r.proxy):a}}function _g(){return!!(Mt||Xt||Ys)}function Ky(e,a,i,r=!1){const l={},d={};zl(d,Io,1),e.propsDefaults=Object.create(null),Vg(e,a,l,d);for(const f in e.propsOptions[0])f in l||(l[f]=void 0);i?e.props=r?l:nu(l):e.type.props?e.props=l:e.props=d,e.attrs=d}function Zy(e,a,i,r){const{props:l,attrs:d,vnode:{patchFlag:f}}=e,p=nt(l),[y]=e.propsOptions;let k=!1;if((r||f>0)&&!(f&16)){if(f&8){const C=e.vnode.dynamicProps;for(let A=0;A{y=!0;const[E,_]=Rg(A,a,!0);Yt(f,E),_&&p.push(..._)};!i&&a.mixins.length&&a.mixins.forEach(C),e.extends&&C(e.extends),e.mixins&&e.mixins.forEach(C)}if(!d&&!y)return Ot(e)&&r.set(e,Di),Di;if(st(d))for(let C=0;C-1,_[1]=F<0||M-1||pt(_,"default"))&&p.push(A)}}}const k=[f,p];return Ot(e)&&r.set(e,k),k}function Yd(e){return e[0]!=="$"}function Wd(e){const a=e&&e.toString().match(/^\s*(function|class) (\w+)/);return a?a[2]:e===null?"null":""}function $d(e,a){return Wd(e)===Wd(a)}function jd(e,a){return st(a)?a.findIndex(i=>$d(i,e)):it(a)&&$d(a,e)?0:-1}const Mg=e=>e[0]==="_"||e==="$stable",Su=e=>st(e)?e.map(xn):[xn(e)],Jy=(e,a,i)=>{if(a._n)return a;const r=du((...l)=>Su(a(...l)),i);return r._c=!1,r},Og=(e,a,i)=>{const r=e._ctx;for(const l in e){if(Mg(l))continue;const d=e[l];if(it(d))a[l]=Jy(l,d,r);else if(d!=null){const f=Su(d);a[l]=()=>f}}},Fg=(e,a)=>{const i=Su(a);e.slots.default=()=>i},Qy=(e,a)=>{if(e.vnode.shapeFlag&32){const i=a._;i?(e.slots=nt(a),zl(a,"_",i)):Og(a,e.slots={})}else e.slots={},a&&Fg(e,a);zl(e.slots,Io,1)},e0=(e,a,i)=>{const{vnode:r,slots:l}=e;let d=!0,f=Ct;if(r.shapeFlag&32){const p=a._;p?i&&p===1?d=!1:(Yt(l,a),!i&&p===1&&delete l._):(d=!a.$stable,Og(a,l)),f=a}else a&&(Fg(e,a),f={default:1});if(d)for(const p in l)!Mg(p)&&!(p in f)&&delete l[p]};function Jr(e,a,i,r,l=!1){if(st(e)){e.forEach((E,_)=>Jr(E,a&&(st(a)?a[_]:a),i,r,l));return}if(oi(r)&&!l)return;const d=r.shapeFlag&4?Lo(r.component)||r.component.proxy:r.el,f=l?null:d,{i:p,r:y}=e,k=a&&a.r,C=p.refs===Ct?p.refs={}:p.refs,A=p.setupState;if(k!=null&&k!==y&&(Dt(k)?(C[k]=null,pt(A,k)&&(A[k]=null)):yt(k)&&(k.value=null)),it(y))da(y,p,12,[f,C]);else{const E=Dt(y),_=yt(y);if(E||_){const M=()=>{if(e.f){const F=E?pt(A,y)?A[y]:C[y]:y.value;l?st(F)&&ou(F,d):st(F)?F.includes(d)||F.push(d):E?(C[y]=[d],pt(A,y)&&(A[y]=C[y])):(y.value=[d],e.k&&(C[e.k]=y.value))}else E?(C[y]=f,pt(A,y)&&(A[y]=f)):_&&(y.value=f,e.k&&(C[e.k]=f))};f?(M.id=-1,jt(M,i)):M()}}}let Aa=!1;const _r=e=>/svg/.test(e.namespaceURI)&&e.tagName!=="foreignObject",Vr=e=>e.nodeType===8;function t0(e){const{mt:a,p:i,o:{patchProp:r,createText:l,nextSibling:d,parentNode:f,remove:p,insert:y,createComment:k}}=e,C=(B,L)=>{if(!L.hasChildNodes()){i(null,B,L),Kr(),L._vnode=B;return}Aa=!1,A(L.firstChild,B,null,null,null),Kr(),L._vnode=B,Aa&&console.error("Hydration completed but contains mismatches.")},A=(B,L,q,Y,H,J=!1)=>{const ee=Vr(B)&&B.data==="[",W=()=>F(B,L,q,Y,H,ee),{type:j,ref:Q,shapeFlag:ie,patchFlag:ne}=L;let oe=B.nodeType;L.el=B,ne===-2&&(J=!1,L.dynamicChildren=null);let le=null;switch(j){case Da:oe!==3?L.children===""?(y(L.el=l(""),f(B),B),le=B):le=W():(B.data!==L.children&&(Aa=!0,B.data=L.children),le=d(B));break;case tn:oe!==8||ee?le=W():le=d(B);break;case li:if(ee&&(B=d(B),oe=B.nodeType),oe===1||oe===3){le=B;const Ce=!L.children.length;for(let ye=0;ye{J=J||!!L.dynamicChildren;const{type:ee,props:W,patchFlag:j,shapeFlag:Q,dirs:ie}=L,ne=ee==="input"&&ie||ee==="option";if(ne||j!==-1){if(ie&&qn(L,null,q,"created"),W)if(ne||!J||j&48)for(const le in W)(ne&&le.endsWith("value")||po(le)&&!Cs(le))&&r(B,le,null,W[le],!1,void 0,q);else W.onClick&&r(B,"onClick",null,W.onClick,!1,void 0,q);let oe;if((oe=W&&W.onVnodeBeforeMount)&&dn(oe,q,L),ie&&qn(L,null,q,"beforeMount"),((oe=W&&W.onVnodeMounted)||ie)&&vg(()=>{oe&&dn(oe,q,L),ie&&qn(L,null,q,"mounted")},Y),Q&16&&!(W&&(W.innerHTML||W.textContent))){let le=_(B.firstChild,L,B,q,Y,H,J);for(;le;){Aa=!0;const Ce=le;le=le.nextSibling,p(Ce)}}else Q&8&&B.textContent!==L.children&&(Aa=!0,B.textContent=L.children)}return B.nextSibling},_=(B,L,q,Y,H,J,ee)=>{ee=ee||!!L.dynamicChildren;const W=L.children,j=W.length;for(let Q=0;Q{const{slotScopeIds:ee}=L;ee&&(H=H?H.concat(ee):ee);const W=f(B),j=_(d(B),L,W,q,Y,H,J);return j&&Vr(j)&&j.data==="]"?d(L.anchor=j):(Aa=!0,y(L.anchor=k("]"),W,j),j)},F=(B,L,q,Y,H,J)=>{if(Aa=!0,L.el=null,J){const j=$(B);for(;;){const Q=d(B);if(Q&&Q!==j)p(Q);else break}}const ee=d(B),W=f(B);return p(B),i(null,L,W,ee,q,Y,_r(W),H),ee},$=B=>{let L=0;for(;B;)if(B=d(B),B&&Vr(B)&&(B.data==="["&&L++,B.data==="]")){if(L===0)return d(B);L--}return B};return[C,A]}const jt=vg;function Bg(e){return zg(e)}function Dg(e){return zg(e,t0)}function zg(e,a){const i=Nl();i.__VUE__=!0;const{insert:r,remove:l,patchProp:d,createElement:f,createText:p,createComment:y,setText:k,setElementText:C,parentNode:A,nextSibling:E,setScopeId:_=Jn,insertStaticContent:M}=e,F=(Z,te,se,ce=null,pe=null,ke=null,Oe=!1,Pe=null,Be=!!te.dynamicChildren)=>{if(Z===te)return;Z&&!Nn(Z,te)&&(ce=de(Z),Fe(Z,pe,ke,!0),Z=null),te.patchFlag===-2&&(Be=!1,te.dynamicChildren=null);const{type:Ve,ref:qe,shapeFlag:Ge}=te;switch(Ve){case Da:$(Z,te,se,ce);break;case tn:B(Z,te,se,ce);break;case li:Z==null&&L(te,se,ce,Oe);break;case Ke:ne(Z,te,se,ce,pe,ke,Oe,Pe,Be);break;default:Ge&1?H(Z,te,se,ce,pe,ke,Oe,Pe,Be):Ge&6?oe(Z,te,se,ce,pe,ke,Oe,Pe,Be):(Ge&64||Ge&128)&&Ve.process(Z,te,se,ce,pe,ke,Oe,Pe,Be,_e)}qe!=null&&pe&&Jr(qe,Z&&Z.ref,ke,te||Z,!te)},$=(Z,te,se,ce)=>{if(Z==null)r(te.el=p(te.children),se,ce);else{const pe=te.el=Z.el;te.children!==Z.children&&k(pe,te.children)}},B=(Z,te,se,ce)=>{Z==null?r(te.el=y(te.children||""),se,ce):te.el=Z.el},L=(Z,te,se,ce)=>{[Z.el,Z.anchor]=M(Z.children,te,se,ce,Z.el,Z.anchor)},q=({el:Z,anchor:te},se,ce)=>{let pe;for(;Z&&Z!==te;)pe=E(Z),r(Z,se,ce),Z=pe;r(te,se,ce)},Y=({el:Z,anchor:te})=>{let se;for(;Z&&Z!==te;)se=E(Z),l(Z),Z=se;l(te)},H=(Z,te,se,ce,pe,ke,Oe,Pe,Be)=>{Oe=Oe||te.type==="svg",Z==null?J(te,se,ce,pe,ke,Oe,Pe,Be):j(Z,te,pe,ke,Oe,Pe,Be)},J=(Z,te,se,ce,pe,ke,Oe,Pe)=>{let Be,Ve;const{type:qe,props:Ge,shapeFlag:Ue,transition:Qe,dirs:rt}=Z;if(Be=Z.el=f(Z.type,ke,Ge&&Ge.is,Ge),Ue&8?C(Be,Z.children):Ue&16&&W(Z.children,Be,null,ce,pe,ke&&qe!=="foreignObject",Oe,Pe),rt&&qn(Z,null,ce,"created"),ee(Be,Z,Z.scopeId,Oe,ce),Ge){for(const ft in Ge)ft!=="value"&&!Cs(ft)&&d(Be,ft,null,Ge[ft],ke,Z.children,ce,pe,ue);"value"in Ge&&d(Be,"value",null,Ge.value),(Ve=Ge.onVnodeBeforeMount)&&dn(Ve,ce,Z)}rt&&qn(Z,null,ce,"beforeMount");const xt=(!pe||pe&&!pe.pendingBranch)&&Qe&&!Qe.persisted;xt&&Qe.beforeEnter(Be),r(Be,te,se),((Ve=Ge&&Ge.onVnodeMounted)||xt||rt)&&jt(()=>{Ve&&dn(Ve,ce,Z),xt&&Qe.enter(Be),rt&&qn(Z,null,ce,"mounted")},pe)},ee=(Z,te,se,ce,pe)=>{if(se&&_(Z,se),ce)for(let ke=0;ke{for(let Ve=Be;Ve{const Pe=te.el=Z.el;let{patchFlag:Be,dynamicChildren:Ve,dirs:qe}=te;Be|=Z.patchFlag&16;const Ge=Z.props||Ct,Ue=te.props||Ct;let Qe;se&&Za(se,!1),(Qe=Ue.onVnodeBeforeUpdate)&&dn(Qe,se,te,Z),qe&&qn(te,Z,se,"beforeUpdate"),se&&Za(se,!0);const rt=pe&&te.type!=="foreignObject";if(Ve?Q(Z.dynamicChildren,Ve,Pe,se,ce,rt,ke):Oe||he(Z,te,Pe,null,se,ce,rt,ke,!1),Be>0){if(Be&16)ie(Pe,te,Ge,Ue,se,ce,pe);else if(Be&2&&Ge.class!==Ue.class&&d(Pe,"class",null,Ue.class,pe),Be&4&&d(Pe,"style",Ge.style,Ue.style,pe),Be&8){const xt=te.dynamicProps;for(let ft=0;ft{Qe&&dn(Qe,se,te,Z),qe&&qn(te,Z,se,"updated")},ce)},Q=(Z,te,se,ce,pe,ke,Oe)=>{for(let Pe=0;Pe{if(se!==ce){if(se!==Ct)for(const Pe in se)!Cs(Pe)&&!(Pe in ce)&&d(Z,Pe,se[Pe],null,Oe,te.children,pe,ke,ue);for(const Pe in ce){if(Cs(Pe))continue;const Be=ce[Pe],Ve=se[Pe];Be!==Ve&&Pe!=="value"&&d(Z,Pe,Ve,Be,Oe,te.children,pe,ke,ue)}"value"in ce&&d(Z,"value",se.value,ce.value)}},ne=(Z,te,se,ce,pe,ke,Oe,Pe,Be)=>{const Ve=te.el=Z?Z.el:p(""),qe=te.anchor=Z?Z.anchor:p("");let{patchFlag:Ge,dynamicChildren:Ue,slotScopeIds:Qe}=te;Qe&&(Pe=Pe?Pe.concat(Qe):Qe),Z==null?(r(Ve,se,ce),r(qe,se,ce),W(te.children,se,qe,pe,ke,Oe,Pe,Be)):Ge>0&&Ge&64&&Ue&&Z.dynamicChildren?(Q(Z.dynamicChildren,Ue,se,pe,ke,Oe,Pe),(te.key!=null||pe&&te===pe.subTree)&&ku(Z,te,!0)):he(Z,te,se,qe,pe,ke,Oe,Pe,Be)},oe=(Z,te,se,ce,pe,ke,Oe,Pe,Be)=>{te.slotScopeIds=Pe,Z==null?te.shapeFlag&512?pe.ctx.activate(te,se,ce,Oe,Be):le(te,se,ce,pe,ke,Oe,Be):Ce(Z,te,Be)},le=(Z,te,se,ce,pe,ke,Oe)=>{const Pe=Z.component=jg(Z,ce,pe);if(lr(Z)&&(Pe.ctx.renderer=_e),Ug(Pe),Pe.asyncDep){if(pe&&pe.registerDep(Pe,ye),!Z.el){const Be=Pe.subTree=R(tn);B(null,Be,te,se)}return}ye(Pe,Z,te,se,pe,ke,Oe)},Ce=(Z,te,se)=>{const ce=te.component=Z.component;if(oy(Z,te,se))if(ce.asyncDep&&!ce.asyncResolved){fe(ce,te,se);return}else ce.next=te,Jx(ce.update),ce.update();else te.el=Z.el,ce.vnode=te},ye=(Z,te,se,ce,pe,ke,Oe)=>{const Pe=()=>{if(Z.isMounted){let{next:qe,bu:Ge,u:Ue,parent:Qe,vnode:rt}=Z,xt=qe,ft;Za(Z,!1),qe?(qe.el=rt.el,fe(Z,qe,Oe)):qe=rt,Ge&&Ps(Ge),(ft=qe.props&&qe.props.onVnodeBeforeUpdate)&&dn(ft,Qe,qe,rt),Za(Z,!0);const Tt=Hr(Z),pn=Z.subTree;Z.subTree=Tt,F(pn,Tt,A(pn.el),de(pn),Z,pe,ke),qe.el=Tt.el,xt===null&&hu(Z,Tt.el),Ue&&jt(Ue,pe),(ft=qe.props&&qe.props.onVnodeUpdated)&&jt(()=>dn(ft,Qe,qe,rt),pe)}else{let qe;const{el:Ge,props:Ue}=te,{bm:Qe,m:rt,parent:xt}=Z,ft=oi(te);if(Za(Z,!1),Qe&&Ps(Qe),!ft&&(qe=Ue&&Ue.onVnodeBeforeMount)&&dn(qe,xt,te),Za(Z,!0),Ge&&ve){const Tt=()=>{Z.subTree=Hr(Z),ve(Ge,Z.subTree,Z,pe,null)};ft?te.type.__asyncLoader().then(()=>!Z.isUnmounted&&Tt()):Tt()}else{const Tt=Z.subTree=Hr(Z);F(null,Tt,se,ce,Z,pe,ke),te.el=Tt.el}if(rt&&jt(rt,pe),!ft&&(qe=Ue&&Ue.onVnodeMounted)){const Tt=te;jt(()=>dn(qe,xt,Tt),pe)}(te.shapeFlag&256||xt&&oi(xt.vnode)&&xt.vnode.shapeFlag&256)&&Z.a&&jt(Z.a,pe),Z.isMounted=!0,te=se=ce=null}},Be=Z.effect=new nr(Pe,()=>wo(Ve),Z.scope),Ve=Z.update=()=>Be.run();Ve.id=Z.uid,Za(Z,!0),Ve()},fe=(Z,te,se)=>{te.component=Z;const ce=Z.vnode.props;Z.vnode=te,Z.next=null,Zy(Z,te.props,ce,se),e0(Z,te.children,se),Qi(),Od(),es()},he=(Z,te,se,ce,pe,ke,Oe,Pe,Be=!1)=>{const Ve=Z&&Z.children,qe=Z?Z.shapeFlag:0,Ge=te.children,{patchFlag:Ue,shapeFlag:Qe}=te;if(Ue>0){if(Ue&128){Ee(Ve,Ge,se,ce,pe,ke,Oe,Pe,Be);return}else if(Ue&256){Se(Ve,Ge,se,ce,pe,ke,Oe,Pe,Be);return}}Qe&8?(qe&16&&ue(Ve,pe,ke),Ge!==Ve&&C(se,Ge)):qe&16?Qe&16?Ee(Ve,Ge,se,ce,pe,ke,Oe,Pe,Be):ue(Ve,pe,ke,!0):(qe&8&&C(se,""),Qe&16&&W(Ge,se,ce,pe,ke,Oe,Pe,Be))},Se=(Z,te,se,ce,pe,ke,Oe,Pe,Be)=>{Z=Z||Di,te=te||Di;const Ve=Z.length,qe=te.length,Ge=Math.min(Ve,qe);let Ue;for(Ue=0;Ueqe?ue(Z,pe,ke,!0,!1,Ge):W(te,se,ce,pe,ke,Oe,Pe,Be,Ge)},Ee=(Z,te,se,ce,pe,ke,Oe,Pe,Be)=>{let Ve=0;const qe=te.length;let Ge=Z.length-1,Ue=qe-1;for(;Ve<=Ge&&Ve<=Ue;){const Qe=Z[Ve],rt=te[Ve]=Be?_a(te[Ve]):xn(te[Ve]);if(Nn(Qe,rt))F(Qe,rt,se,null,pe,ke,Oe,Pe,Be);else break;Ve++}for(;Ve<=Ge&&Ve<=Ue;){const Qe=Z[Ge],rt=te[Ue]=Be?_a(te[Ue]):xn(te[Ue]);if(Nn(Qe,rt))F(Qe,rt,se,null,pe,ke,Oe,Pe,Be);else break;Ge--,Ue--}if(Ve>Ge){if(Ve<=Ue){const Qe=Ue+1,rt=QeUe)for(;Ve<=Ge;)Fe(Z[Ve],pe,ke,!0),Ve++;else{const Qe=Ve,rt=Ve,xt=new Map;for(Ve=rt;Ve<=Ue;Ve++){const on=te[Ve]=Be?_a(te[Ve]):xn(te[Ve]);on.key!=null&&xt.set(on.key,Ve)}let ft,Tt=0;const pn=Ue-rt+1;let aa=!1,wr=0;const ka=new Array(pn);for(Ve=0;Ve=pn){Fe(on,pe,ke,!0);continue}let An;if(on.key!=null)An=xt.get(on.key);else for(ft=rt;ft<=Ue;ft++)if(ka[ft-rt]===0&&Nn(on,te[ft])){An=ft;break}An===void 0?Fe(on,pe,ke,!0):(ka[An-rt]=Ve+1,An>=wr?wr=An:aa=!0,F(on,te[An],se,null,pe,ke,Oe,Pe,Be),Tt++)}const Sr=aa?n0(ka):Di;for(ft=Sr.length-1,Ve=pn-1;Ve>=0;Ve--){const on=rt+Ve,An=te[on],fs=on+1{const{el:ke,type:Oe,transition:Pe,children:Be,shapeFlag:Ve}=Z;if(Ve&6){De(Z.component.subTree,te,se,ce);return}if(Ve&128){Z.suspense.move(te,se,ce);return}if(Ve&64){Oe.move(Z,te,se,_e);return}if(Oe===Ke){r(ke,te,se);for(let Ge=0;GePe.enter(ke),pe);else{const{leave:Ge,delayLeave:Ue,afterLeave:Qe}=Pe,rt=()=>r(ke,te,se),xt=()=>{Ge(ke,()=>{rt(),Qe&&Qe()})};Ue?Ue(ke,rt,xt):xt()}else r(ke,te,se)},Fe=(Z,te,se,ce=!1,pe=!1)=>{const{type:ke,props:Oe,ref:Pe,children:Be,dynamicChildren:Ve,shapeFlag:qe,patchFlag:Ge,dirs:Ue}=Z;if(Pe!=null&&Jr(Pe,null,se,Z,!0),qe&256){te.ctx.deactivate(Z);return}const Qe=qe&1&&Ue,rt=!oi(Z);let xt;if(rt&&(xt=Oe&&Oe.onVnodeBeforeUnmount)&&dn(xt,te,Z),qe&6)ze(Z.component,se,ce);else{if(qe&128){Z.suspense.unmount(se,ce);return}Qe&&qn(Z,null,te,"beforeUnmount"),qe&64?Z.type.remove(Z,te,se,pe,_e,ce):Ve&&(ke!==Ke||Ge>0&&Ge&64)?ue(Ve,te,se,!1,!0):(ke===Ke&&Ge&384||!pe&&qe&16)&&ue(Be,te,se),ce&&Ze(Z)}(rt&&(xt=Oe&&Oe.onVnodeUnmounted)||Qe)&&jt(()=>{xt&&dn(xt,te,Z),Qe&&qn(Z,null,te,"unmounted")},se)},Ze=Z=>{const{type:te,el:se,anchor:ce,transition:pe}=Z;if(te===Ke){Je(se,ce);return}if(te===li){Y(Z);return}const ke=()=>{l(se),pe&&!pe.persisted&&pe.afterLeave&&pe.afterLeave()};if(Z.shapeFlag&1&&pe&&!pe.persisted){const{leave:Oe,delayLeave:Pe}=pe,Be=()=>Oe(se,ke);Pe?Pe(Z.el,ke,Be):Be()}else ke()},Je=(Z,te)=>{let se;for(;Z!==te;)se=E(Z),l(Z),Z=se;l(te)},ze=(Z,te,se)=>{const{bum:ce,scope:pe,update:ke,subTree:Oe,um:Pe}=Z;ce&&Ps(ce),pe.stop(),ke&&(ke.active=!1,Fe(Oe,Z,te,se)),Pe&&jt(Pe,te),jt(()=>{Z.isUnmounted=!0},te),te&&te.pendingBranch&&!te.isUnmounted&&Z.asyncDep&&!Z.asyncResolved&&Z.suspenseId===te.pendingId&&(te.deps--,te.deps===0&&te.resolve())},ue=(Z,te,se,ce=!1,pe=!1,ke=0)=>{for(let Oe=ke;OeZ.shapeFlag&6?de(Z.component.subTree):Z.shapeFlag&128?Z.suspense.next():E(Z.anchor||Z.el),Le=(Z,te,se)=>{Z==null?te._vnode&&Fe(te._vnode,null,null,!0):F(te._vnode||null,Z,te,null,null,null,se),Od(),Kr(),te._vnode=Z},_e={p:F,um:Fe,m:De,r:Ze,mt:le,mc:W,pc:he,pbc:Q,n:de,o:e};let be,ve;return a&&([be,ve]=a(_e)),{render:Le,hydrate:be,createApp:qy(Le,be)}}function Za({effect:e,update:a},i){e.allowRecurse=a.allowRecurse=i}function ku(e,a,i=!1){const r=e.children,l=a.children;if(st(r)&&st(l))for(let d=0;d>1,e[i[p]]0&&(a[r]=i[d-1]),i[d]=r)}}for(d=i.length,f=i[d-1];d-- >0;)i[d]=f,f=a[f];return i}const a0=e=>e.__isTeleport,Ts=e=>e&&(e.disabled||e.disabled===""),Gd=e=>typeof SVGElement<"u"&&e instanceof SVGElement,Gl=(e,a)=>{const i=e&&e.to;return Dt(i)?a?a(i):null:i},i0={__isTeleport:!0,process(e,a,i,r,l,d,f,p,y,k){const{mc:C,pc:A,pbc:E,o:{insert:_,querySelector:M,createText:F,createComment:$}}=k,B=Ts(a.props);let{shapeFlag:L,children:q,dynamicChildren:Y}=a;if(e==null){const H=a.el=F(""),J=a.anchor=F("");_(H,i,r),_(J,i,r);const ee=a.target=Gl(a.props,M),W=a.targetAnchor=F("");ee&&(_(W,ee),f=f||Gd(ee));const j=(Q,ie)=>{L&16&&C(q,Q,ie,l,d,f,p,y)};B?j(i,J):ee&&j(ee,W)}else{a.el=e.el;const H=a.anchor=e.anchor,J=a.target=e.target,ee=a.targetAnchor=e.targetAnchor,W=Ts(e.props),j=W?i:J,Q=W?H:ee;if(f=f||Gd(J),Y?(E(e.dynamicChildren,Y,j,l,d,f,p),ku(e,a,!0)):y||A(e,a,j,Q,l,d,f,p,!1),B)W||Rr(a,i,H,k,1);else if((a.props&&a.props.to)!==(e.props&&e.props.to)){const ie=a.target=Gl(a.props,M);ie&&Rr(a,ie,null,k,0)}else W&&Rr(a,J,ee,k,1)}Hg(a)},remove(e,a,i,r,{um:l,o:{remove:d}},f){const{shapeFlag:p,children:y,anchor:k,targetAnchor:C,target:A,props:E}=e;if(A&&d(C),(f||!Ts(E))&&(d(k),p&16))for(let _=0;_0?hn||Di:null,Xg(),fi>0&&hn&&hn.push(e),e}function r0(e,a,i,r,l,d){return Yg(Cu(e,a,i,r,l,d,!0))}function To(e,a,i,r,l){return Yg(R(e,a,i,r,l,!0))}function za(e){return e?e.__v_isVNode===!0:!1}function Nn(e,a){return e.type===a.type&&e.key===a.key}function o0(e){}const Io="__vInternal",Wg=({key:e})=>e??null,Xr=({ref:e,ref_key:a,ref_for:i})=>(typeof e=="number"&&(e=""+e),e!=null?Dt(e)||yt(e)||it(e)?{i:Xt,r:e,k:a,f:!!i}:e:null);function Cu(e,a=null,i=null,r=0,l=null,d=e===Ke?0:1,f=!1,p=!1){const y={__v_isVNode:!0,__v_skip:!0,type:e,props:a,key:a&&Wg(a),ref:a&&Xr(a),scopeId:ko,slotScopeIds:null,children:i,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:d,patchFlag:r,dynamicProps:l,dynamicChildren:null,appContext:null,ctx:Xt};return p?(Au(y,i),d&128&&e.normalize(y)):i&&(y.shapeFlag|=Dt(i)?8:16),fi>0&&!f&&hn&&(y.patchFlag>0||d&6)&&y.patchFlag!==32&&hn.push(y),y}const R=l0;function l0(e,a=null,i=null,r=0,l=null,d=!1){if((!e||e===Ag)&&(e=tn),za(e)){const p=Yn(e,a,!0);return i&&Au(p,i),fi>0&&!d&&hn&&(p.shapeFlag&6?hn[hn.indexOf(e)]=p:hn.push(p)),p.patchFlag|=-2,p}if(p0(e)&&(e=e.__vccOpts),a){a=$g(a);let{class:p,style:y}=a;p&&!Dt(p)&&(a.class=rr(p)),Ot(y)&&(au(y)&&!st(y)&&(y=Yt({},y)),a.style=sr(y))}const f=Dt(e)?1:gg(e)?128:a0(e)?64:Ot(e)?4:it(e)?2:0;return Cu(e,a,i,r,l,f,d,!0)}function $g(e){return e?au(e)||Io in e?Yt({},e):e:null}function Yn(e,a,i=!1){const{props:r,ref:l,patchFlag:d,children:f}=e,p=a?Ye(r||{},a):r;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:p,key:p&&Wg(p),ref:a&&a.ref?i&&l?st(l)?l.concat(Xr(a)):[l,Xr(a)]:Xr(a):l,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:f,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:a&&e.type!==Ke?d===-1?16:d|16:d,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Yn(e.ssContent),ssFallback:e.ssFallback&&Yn(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function yi(e=" ",a=0){return R(Da,null,e,a)}function c0(e,a){const i=R(li,null,e);return i.staticCount=a,i}function u0(e="",a=!1){return a?(ur(),To(tn,null,e)):R(tn,null,e)}function xn(e){return e==null||typeof e=="boolean"?R(tn):st(e)?R(Ke,null,e.slice()):typeof e=="object"?_a(e):R(Da,null,String(e))}function _a(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Yn(e)}function Au(e,a){let i=0;const{shapeFlag:r}=e;if(a==null)a=null;else if(st(a))i=16;else if(typeof a=="object")if(r&65){const l=a.default;l&&(l._c&&(l._d=!1),Au(e,l()),l._c&&(l._d=!0));return}else{i=32;const l=a._;!l&&!(Io in a)?a._ctx=Xt:l===3&&Xt&&(Xt.slots._===1?a._=1:(a._=2,e.patchFlag|=1024))}else it(a)?(a={default:a,_ctx:Xt},i=32):(a=String(a),r&64?(i=16,a=[yi(a)]):i=8);e.children=a,e.shapeFlag|=i}function Ye(...e){const a={};for(let i=0;iMt||Xt;let Pu,Ii,Ud="__VUE_INSTANCE_SETTERS__";(Ii=Nl()[Ud])||(Ii=Nl()[Ud]=[]),Ii.push(e=>Mt=e),Pu=e=>{Ii.length>1?Ii.forEach(a=>a(e)):Ii[0](e)};const Na=e=>{Pu(e),e.scope.on()},Fa=()=>{Mt&&Mt.scope.off(),Pu(null)};function Gg(e){return e.vnode.shapeFlag&4}let Yi=!1;function Ug(e,a=!1){Yi=a;const{props:i,children:r}=e.vnode,l=Gg(e);Ky(e,i,l,a),Qy(e,r);const d=l?f0(e,a):void 0;return Yi=!1,d}function f0(e,a){const i=e.type;e.accessCache=Object.create(null),e.proxy=ar(new Proxy(e.ctx,Yl));const{setup:r}=i;if(r){const l=e.setupContext=r.length>1?Kg(e):null;Na(e),Qi();const d=da(r,e,0,[e.props,l]);if(es(),Fa(),lu(d)){if(d.then(Fa,Fa),a)return d.then(f=>{ql(e,f,a)}).catch(f=>{bi(f,e,0)});e.asyncDep=d}else ql(e,d,a)}else qg(e,a)}function ql(e,a,i){it(a)?e.type.__ssrInlineRender?e.ssrRender=a:e.render=a:Ot(a)&&(e.setupState=ru(a)),qg(e,i)}let Qr,Kl;function g0(e){Qr=e,Kl=a=>{a.render._rc&&(a.withProxy=new Proxy(a.ctx,Ty))}}const v0=()=>!Qr;function qg(e,a,i){const r=e.type;if(!e.render){if(!a&&Qr&&!r.render){const l=r.template||wu(e).template;if(l){const{isCustomElement:d,compilerOptions:f}=e.appContext.config,{delimiters:p,compilerOptions:y}=r,k=Yt(Yt({isCustomElement:d,delimiters:p},f),y);r.render=Qr(l,k)}}e.render=r.render||Jn,Kl&&Kl(e)}Na(e),Qi(),Yy(e),es(),Fa()}function m0(e){return e.attrsProxy||(e.attrsProxy=new Proxy(e.attrs,{get(a,i){return fn(e,"get","$attrs"),a[i]}}))}function Kg(e){const a=i=>{e.exposed=i||{}};return{get attrs(){return m0(e)},slots:e.slots,emit:e.emit,expose:a}}function Lo(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(ru(ar(e.exposed)),{get(a,i){if(i in a)return a[i];if(i in Es)return Es[i](e)},has(a,i){return i in a||i in Es}}))}function Zl(e,a=!0){return it(e)?e.displayName||e.name:e.name||a&&e.__name}function p0(e){return it(e)&&"__vccOpts"in e}const X=(e,a)=>_x(e,a,Yi);function jn(e,a,i){const r=arguments.length;return r===2?Ot(a)&&!st(a)?za(a)?R(e,null,[a]):R(e,a):R(e,null,a):(r>3?i=Array.prototype.slice.call(arguments,2):r===3&&za(i)&&(i=[i]),R(e,a,i))}const Zg=Symbol.for("v-scx"),Jg=()=>ct(Zg);function b0(){}function x0(e,a,i,r){const l=i[r];if(l&&Qg(l,e))return l;const d=a();return d.memo=e.slice(),i[r]=d}function Qg(e,a){const i=e.memo;if(i.length!=a.length)return!1;for(let r=0;r0&&hn&&hn.push(e),!0}const ev="3.3.4",y0={createComponentInstance:jg,setupComponent:Ug,renderComponentRoot:Hr,setCurrentRenderingInstance:Ns,isVNode:za,normalizeVNode:xn},w0=y0,S0=null,k0=null;function C0(e,a){const i=Object.create(null),r=e.split(",");for(let l=0;l!!i[l.toLowerCase()]:l=>!!i[l]}const vl={},A0=/^on[^a-z]/,P0=e=>A0.test(e),E0=e=>e.startsWith("onUpdate:"),dr=Object.assign,gn=Array.isArray,hr=e=>nv(e)==="[object Set]",qd=e=>nv(e)==="[object Date]",tv=e=>typeof e=="function",Ws=e=>typeof e=="string",Kd=e=>typeof e=="symbol",Jl=e=>e!==null&&typeof e=="object",T0=Object.prototype.toString,nv=e=>T0.call(e),Eu=e=>{const a=Object.create(null);return i=>a[i]||(a[i]=e(i))},I0=/-(\w)/g,ml=Eu(e=>e.replace(I0,(a,i)=>i?i.toUpperCase():"")),L0=/\B([A-Z])/g,Ma=Eu(e=>e.replace(L0,"-$1").toLowerCase()),_0=Eu(e=>e.charAt(0).toUpperCase()+e.slice(1)),V0=(e,a)=>{for(let i=0;i{const a=parseFloat(e);return isNaN(a)?e:a},ec=e=>{const a=Ws(e)?Number(e):NaN;return isNaN(a)?e:a},R0="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",M0=C0(R0);function av(e){return!!e||e===""}function O0(e,a){if(e.length!==a.length)return!1;let i=!0;for(let r=0;i&&rHa(i,a))}const F0="http://www.w3.org/2000/svg",ni=typeof document<"u"?document:null,Zd=ni&&ni.createElement("template"),B0={insert:(e,a,i)=>{a.insertBefore(e,i||null)},remove:e=>{const a=e.parentNode;a&&a.removeChild(e)},createElement:(e,a,i,r)=>{const l=a?ni.createElementNS(F0,e):ni.createElement(e,i?{is:i}:void 0);return e==="select"&&r&&r.multiple!=null&&l.setAttribute("multiple",r.multiple),l},createText:e=>ni.createTextNode(e),createComment:e=>ni.createComment(e),setText:(e,a)=>{e.nodeValue=a},setElementText:(e,a)=>{e.textContent=a},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>ni.querySelector(e),setScopeId(e,a){e.setAttribute(a,"")},insertStaticContent(e,a,i,r,l,d){const f=i?i.previousSibling:a.lastChild;if(l&&(l===d||l.nextSibling))for(;a.insertBefore(l.cloneNode(!0),i),!(l===d||!(l=l.nextSibling)););else{Zd.innerHTML=r?`${e}`:e;const p=Zd.content;if(r){const y=p.firstChild;for(;y.firstChild;)p.appendChild(y.firstChild);p.removeChild(y)}a.insertBefore(p,i)}return[f?f.nextSibling:a.firstChild,i?i.previousSibling:a.lastChild]}};function D0(e,a,i){const r=e._vtc;r&&(a=(a?[a,...r]:[...r]).join(" ")),a==null?e.removeAttribute("class"):i?e.setAttribute("class",a):e.className=a}function z0(e,a,i){const r=e.style,l=Ws(i);if(i&&!l){if(a&&!Ws(a))for(const d in a)i[d]==null&&tc(r,d,"");for(const d in i)tc(r,d,i[d])}else{const d=r.display;l?a!==i&&(r.cssText=i):a&&e.removeAttribute("style"),"_vod"in e&&(r.display=d)}}const Jd=/\s*!important$/;function tc(e,a,i){if(gn(i))i.forEach(r=>tc(e,a,r));else if(i==null&&(i=""),a.startsWith("--"))e.setProperty(a,i);else{const r=N0(e,a);Jd.test(i)?e.setProperty(Ma(r),i.replace(Jd,""),"important"):e[r]=i}}const Qd=["Webkit","Moz","ms"],pl={};function N0(e,a){const i=pl[a];if(i)return i;let r=Sn(a);if(r!=="filter"&&r in e)return pl[a]=r;r=_0(r);for(let l=0;lbl||(j0.then(()=>bl=0),bl=Date.now());function U0(e,a){const i=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=i.attached)return;wn(q0(r,i.value),a,5,[r])};return i.value=e,i.attached=G0(),i}function q0(e,a){if(gn(a)){const i=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{i.call(e),e._stopped=!0},a.map(r=>l=>!l._stopped&&r&&r(l))}else return a}const nh=/^on[a-z]/,K0=(e,a,i,r,l=!1,d,f,p,y)=>{a==="class"?D0(e,r,l):a==="style"?z0(e,i,r):P0(a)?E0(a)||W0(e,a,i,r,f):(a[0]==="."?(a=a.slice(1),!0):a[0]==="^"?(a=a.slice(1),!1):Z0(e,a,r,l))?X0(e,a,r,d,f,p,y):(a==="true-value"?e._trueValue=r:a==="false-value"&&(e._falseValue=r),H0(e,a,r,l))};function Z0(e,a,i,r){return r?!!(a==="innerHTML"||a==="textContent"||a in e&&nh.test(a)&&tv(i)):a==="spellcheck"||a==="draggable"||a==="translate"||a==="form"||a==="list"&&e.tagName==="INPUT"||a==="type"&&e.tagName==="TEXTAREA"||nh.test(a)&&Ws(i)?!1:a in e}function iv(e,a){const i=xi(e);class r extends Vo{constructor(d){super(i,d,a)}}return r.def=i,r}const J0=e=>iv(e,yv),Q0=typeof HTMLElement<"u"?HTMLElement:class{};class Vo extends Q0{constructor(a,i={},r){super(),this._def=a,this._props=i,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this.shadowRoot&&r?r(this._createVNode(),this.shadowRoot):(this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,gt(()=>{this._connected||(ic(null,this.shadowRoot),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let r=0;r{for(const l of r)this._setAttr(l.attributeName)}).observe(this,{attributes:!0});const a=(r,l=!1)=>{const{props:d,styles:f}=r;let p;if(d&&!gn(d))for(const y in d){const k=d[y];(k===Number||k&&k.type===Number)&&(y in this._props&&(this._props[y]=ec(this._props[y])),(p||(p=Object.create(null)))[ml(y)]=!0)}this._numberProps=p,l&&this._resolveProps(r),this._applyStyles(f),this._update()},i=this._def.__asyncLoader;i?i().then(r=>a(r,!0)):a(this._def)}_resolveProps(a){const{props:i}=a,r=gn(i)?i:Object.keys(i||{});for(const l of Object.keys(this))l[0]!=="_"&&r.includes(l)&&this._setProp(l,this[l],!0,!1);for(const l of r.map(ml))Object.defineProperty(this,l,{get(){return this._getProp(l)},set(d){this._setProp(l,d)}})}_setAttr(a){let i=this.getAttribute(a);const r=ml(a);this._numberProps&&this._numberProps[r]&&(i=ec(i)),this._setProp(r,i,!1)}_getProp(a){return this._props[a]}_setProp(a,i,r=!0,l=!0){i!==this._props[a]&&(this._props[a]=i,l&&this._instance&&this._update(),r&&(i===!0?this.setAttribute(Ma(a),""):typeof i=="string"||typeof i=="number"?this.setAttribute(Ma(a),i+""):i||this.removeAttribute(Ma(a))))}_update(){ic(this._createVNode(),this.shadowRoot)}_createVNode(){const a=R(this._def,dr({},this._props));return this._instance||(a.ce=i=>{this._instance=i,i.isCE=!0;const r=(d,f)=>{this.dispatchEvent(new CustomEvent(d,{detail:f}))};i.emit=(d,...f)=>{r(d,f),Ma(d)!==d&&r(Ma(d),f)};let l=this;for(;l=l&&(l.parentNode||l.host);)if(l instanceof Vo){i.parent=l._instance,i.provides=l._instance.provides;break}}),a}_applyStyles(a){a&&a.forEach(i=>{const r=document.createElement("style");r.textContent=i,this.shadowRoot.appendChild(r)})}}function ew(e="$style"){{const a=ta();if(!a)return vl;const i=a.type.__cssModules;if(!i)return vl;const r=i[e];return r||vl}}function tw(e){const a=ta();if(!a)return;const i=a.ut=(l=e(a.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${a.uid}"]`)).forEach(d=>ac(d,l))},r=()=>{const l=e(a.proxy);nc(a.subTree,l),i(l)};mg(r),zt(()=>{const l=new MutationObserver(r);l.observe(a.subTree.el.parentNode,{childList:!0}),Eo(()=>l.disconnect())})}function nc(e,a){if(e.shapeFlag&128){const i=e.suspense;e=i.activeBranch,i.pendingBranch&&!i.isHydrating&&i.effects.push(()=>{nc(i.activeBranch,a)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)ac(e.el,a);else if(e.type===Ke)e.children.forEach(i=>nc(i,a));else if(e.type===li){let{el:i,anchor:r}=e;for(;i&&(ac(i,a),i!==r);)i=i.nextSibling}}function ac(e,a){if(e.nodeType===1){const i=e.style;for(const r in a)i.setProperty(`--${r}`,a[r])}}const Pa="transition",gs="animation",Wn=(e,{slots:a})=>jn(bg,rv(e),a);Wn.displayName="Transition";const sv={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},nw=Wn.props=dr({},vu,sv),Ja=(e,a=[])=>{gn(e)?e.forEach(i=>i(...a)):e&&e(...a)},ah=e=>e?gn(e)?e.some(a=>a.length>1):e.length>1:!1;function rv(e){const a={};for(const ne in e)ne in sv||(a[ne]=e[ne]);if(e.css===!1)return a;const{name:i="v",type:r,duration:l,enterFromClass:d=`${i}-enter-from`,enterActiveClass:f=`${i}-enter-active`,enterToClass:p=`${i}-enter-to`,appearFromClass:y=d,appearActiveClass:k=f,appearToClass:C=p,leaveFromClass:A=`${i}-leave-from`,leaveActiveClass:E=`${i}-leave-active`,leaveToClass:_=`${i}-leave-to`}=e,M=aw(l),F=M&&M[0],$=M&&M[1],{onBeforeEnter:B,onEnter:L,onEnterCancelled:q,onLeave:Y,onLeaveCancelled:H,onBeforeAppear:J=B,onAppear:ee=L,onAppearCancelled:W=q}=a,j=(ne,oe,le)=>{Ia(ne,oe?C:p),Ia(ne,oe?k:f),le&&le()},Q=(ne,oe)=>{ne._isLeaving=!1,Ia(ne,A),Ia(ne,_),Ia(ne,E),oe&&oe()},ie=ne=>(oe,le)=>{const Ce=ne?ee:L,ye=()=>j(oe,ne,le);Ja(Ce,[oe,ye]),ih(()=>{Ia(oe,ne?y:d),sa(oe,ne?C:p),ah(Ce)||sh(oe,r,F,ye)})};return dr(a,{onBeforeEnter(ne){Ja(B,[ne]),sa(ne,d),sa(ne,f)},onBeforeAppear(ne){Ja(J,[ne]),sa(ne,y),sa(ne,k)},onEnter:ie(!1),onAppear:ie(!0),onLeave(ne,oe){ne._isLeaving=!0;const le=()=>Q(ne,oe);sa(ne,A),lv(),sa(ne,E),ih(()=>{ne._isLeaving&&(Ia(ne,A),sa(ne,_),ah(Y)||sh(ne,r,$,le))}),Ja(Y,[ne,le])},onEnterCancelled(ne){j(ne,!1),Ja(q,[ne])},onAppearCancelled(ne){j(ne,!0),Ja(W,[ne])},onLeaveCancelled(ne){Q(ne),Ja(H,[ne])}})}function aw(e){if(e==null)return null;if(Jl(e))return[xl(e.enter),xl(e.leave)];{const a=xl(e);return[a,a]}}function xl(e){return ec(e)}function sa(e,a){a.split(/\s+/).forEach(i=>i&&e.classList.add(i)),(e._vtc||(e._vtc=new Set)).add(a)}function Ia(e,a){a.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const{_vtc:i}=e;i&&(i.delete(a),i.size||(e._vtc=void 0))}function ih(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let iw=0;function sh(e,a,i,r){const l=e._endId=++iw,d=()=>{l===e._endId&&r()};if(i)return setTimeout(d,i);const{type:f,timeout:p,propCount:y}=ov(e,a);if(!f)return r();const k=f+"end";let C=0;const A=()=>{e.removeEventListener(k,E),d()},E=_=>{_.target===e&&++C>=y&&A()};setTimeout(()=>{C(i[M]||"").split(", "),l=r(`${Pa}Delay`),d=r(`${Pa}Duration`),f=rh(l,d),p=r(`${gs}Delay`),y=r(`${gs}Duration`),k=rh(p,y);let C=null,A=0,E=0;a===Pa?f>0&&(C=Pa,A=f,E=d.length):a===gs?k>0&&(C=gs,A=k,E=y.length):(A=Math.max(f,k),C=A>0?f>k?Pa:gs:null,E=C?C===Pa?d.length:y.length:0);const _=C===Pa&&/\b(transform|all)(,|$)/.test(r(`${Pa}Property`).toString());return{type:C,timeout:A,propCount:E,hasTransform:_}}function rh(e,a){for(;e.lengthoh(i)+oh(e[r])))}function oh(e){return Number(e.slice(0,-1).replace(",","."))*1e3}function lv(){return document.body.offsetHeight}const cv=new WeakMap,uv=new WeakMap,dv={name:"TransitionGroup",props:dr({},nw,{tag:String,moveClass:String}),setup(e,{slots:a}){const i=ta(),r=gu();let l,d;return Po(()=>{if(!l.length)return;const f=e.moveClass||`${e.name||"v"}-move`;if(!cw(l[0].el,i.vnode.el,f))return;l.forEach(rw),l.forEach(ow);const p=l.filter(lw);lv(),p.forEach(y=>{const k=y.el,C=k.style;sa(k,f),C.transform=C.webkitTransform=C.transitionDuration="";const A=k._moveCb=E=>{E&&E.target!==k||(!E||/transform$/.test(E.propertyName))&&(k.removeEventListener("transitionend",A),k._moveCb=null,Ia(k,f))};k.addEventListener("transitionend",A)})}),()=>{const f=nt(e),p=rv(f);let y=f.tag||Ke;l=d,d=a.default?Co(a.default()):[];for(let k=0;kdelete e.mode;dv.props;const hv=dv;function rw(e){const a=e.el;a._moveCb&&a._moveCb(),a._enterCb&&a._enterCb()}function ow(e){uv.set(e,e.el.getBoundingClientRect())}function lw(e){const a=cv.get(e),i=uv.get(e),r=a.left-i.left,l=a.top-i.top;if(r||l){const d=e.el.style;return d.transform=d.webkitTransform=`translate(${r}px,${l}px)`,d.transitionDuration="0s",e}}function cw(e,a,i){const r=e.cloneNode();e._vtc&&e._vtc.forEach(f=>{f.split(/\s+/).forEach(p=>p&&r.classList.remove(p))}),i.split(/\s+/).forEach(f=>f&&r.classList.add(f)),r.style.display="none";const l=a.nodeType===1?a:a.parentNode;l.appendChild(r);const{hasTransform:d}=ov(r);return l.removeChild(r),d}const Xa=e=>{const a=e.props["onUpdate:modelValue"]||!1;return gn(a)?i=>V0(a,i):a};function uw(e){e.target.composing=!0}function lh(e){const a=e.target;a.composing&&(a.composing=!1,a.dispatchEvent(new Event("input")))}const $s={created(e,{modifiers:{lazy:a,trim:i,number:r}},l){e._assign=Xa(l);const d=r||l.props&&l.props.type==="number";oa(e,a?"change":"input",f=>{if(f.target.composing)return;let p=e.value;i&&(p=p.trim()),d&&(p=Ql(p)),e._assign(p)}),i&&oa(e,"change",()=>{e.value=e.value.trim()}),a||(oa(e,"compositionstart",uw),oa(e,"compositionend",lh),oa(e,"change",lh))},mounted(e,{value:a}){e.value=a??""},beforeUpdate(e,{value:a,modifiers:{lazy:i,trim:r,number:l}},d){if(e._assign=Xa(d),e.composing||document.activeElement===e&&e.type!=="range"&&(i||r&&e.value.trim()===a||(l||e.type==="number")&&Ql(e.value)===a))return;const f=a??"";e.value!==f&&(e.value=f)}},Tu={deep:!0,created(e,a,i){e._assign=Xa(i),oa(e,"change",()=>{const r=e._modelValue,l=Wi(e),d=e.checked,f=e._assign;if(gn(r)){const p=_o(r,l),y=p!==-1;if(d&&!y)f(r.concat(l));else if(!d&&y){const k=[...r];k.splice(p,1),f(k)}}else if(hr(r)){const p=new Set(r);d?p.add(l):p.delete(l),f(p)}else f(gv(e,d))})},mounted:ch,beforeUpdate(e,a,i){e._assign=Xa(i),ch(e,a,i)}};function ch(e,{value:a,oldValue:i},r){e._modelValue=a,gn(a)?e.checked=_o(a,r.props.value)>-1:hr(a)?e.checked=a.has(r.props.value):a!==i&&(e.checked=Ha(a,gv(e,!0)))}const Iu={created(e,{value:a},i){e.checked=Ha(a,i.props.value),e._assign=Xa(i),oa(e,"change",()=>{e._assign(Wi(e))})},beforeUpdate(e,{value:a,oldValue:i},r){e._assign=Xa(r),a!==i&&(e.checked=Ha(a,r.props.value))}},fv={deep:!0,created(e,{value:a,modifiers:{number:i}},r){const l=hr(a);oa(e,"change",()=>{const d=Array.prototype.filter.call(e.options,f=>f.selected).map(f=>i?Ql(Wi(f)):Wi(f));e._assign(e.multiple?l?new Set(d):d:d[0])}),e._assign=Xa(r)},mounted(e,{value:a}){uh(e,a)},beforeUpdate(e,a,i){e._assign=Xa(i)},updated(e,{value:a}){uh(e,a)}};function uh(e,a){const i=e.multiple;if(!(i&&!gn(a)&&!hr(a))){for(let r=0,l=e.options.length;r-1:d.selected=a.has(f);else if(Ha(Wi(d),a)){e.selectedIndex!==r&&(e.selectedIndex=r);return}}!i&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function Wi(e){return"_value"in e?e._value:e.value}function gv(e,a){const i=a?"_trueValue":"_falseValue";return i in e?e[i]:a}const vv={created(e,a,i){Mr(e,a,i,null,"created")},mounted(e,a,i){Mr(e,a,i,null,"mounted")},beforeUpdate(e,a,i,r){Mr(e,a,i,r,"beforeUpdate")},updated(e,a,i,r){Mr(e,a,i,r,"updated")}};function mv(e,a){switch(e){case"SELECT":return fv;case"TEXTAREA":return $s;default:switch(a){case"checkbox":return Tu;case"radio":return Iu;default:return $s}}}function Mr(e,a,i,r,l){const f=mv(e.tagName,i.props&&i.props.type)[l];f&&f(e,a,i,r)}function dw(){$s.getSSRProps=({value:e})=>({value:e}),Iu.getSSRProps=({value:e},a)=>{if(a.props&&Ha(a.props.value,e))return{checked:!0}},Tu.getSSRProps=({value:e},a)=>{if(gn(e)){if(a.props&&_o(e,a.props.value)>-1)return{checked:!0}}else if(hr(e)){if(a.props&&e.has(a.props.value))return{checked:!0}}else if(e)return{checked:!0}},vv.getSSRProps=(e,a)=>{if(typeof a.type!="string")return;const i=mv(a.type.toUpperCase(),a.props&&a.props.type);if(i.getSSRProps)return i.getSSRProps(e,a)}}const hw=["ctrl","shift","alt","meta"],fw={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,a)=>hw.some(i=>e[`${i}Key`]&&!a.includes(i))},gw=(e,a)=>(i,...r)=>{for(let l=0;li=>{if(!("key"in i))return;const r=Ma(i.key);if(a.some(l=>l===r||vw[l]===r))return e(i)},Ln={beforeMount(e,{value:a},{transition:i}){e._vod=e.style.display==="none"?"":e.style.display,i&&a?i.beforeEnter(e):vs(e,a)},mounted(e,{value:a},{transition:i}){i&&a&&i.enter(e)},updated(e,{value:a,oldValue:i},{transition:r}){!a!=!i&&(r?a?(r.beforeEnter(e),vs(e,!0),r.enter(e)):r.leave(e,()=>{vs(e,!1)}):vs(e,a))},beforeUnmount(e,{value:a}){vs(e,a)}};function vs(e,a){e.style.display=a?e._vod:"none"}function pw(){Ln.getSSRProps=({value:e})=>{if(!e)return{style:{display:"none"}}}}const pv=dr({patchProp:K0},B0);let Ls,dh=!1;function bv(){return Ls||(Ls=Bg(pv))}function xv(){return Ls=dh?Ls:Dg(pv),dh=!0,Ls}const ic=(...e)=>{bv().render(...e)},yv=(...e)=>{xv().hydrate(...e)},wv=(...e)=>{const a=bv().createApp(...e),{mount:i}=a;return a.mount=r=>{const l=Sv(r);if(!l)return;const d=a._component;!tv(d)&&!d.render&&!d.template&&(d.template=l.innerHTML),l.innerHTML="";const f=i(l,!1,l instanceof SVGElement);return l instanceof Element&&(l.removeAttribute("v-cloak"),l.setAttribute("data-v-app","")),f},a},bw=(...e)=>{const a=xv().createApp(...e),{mount:i}=a;return a.mount=r=>{const l=Sv(r);if(l)return i(l,!0,l instanceof SVGElement)},a};function Sv(e){return Ws(e)?document.querySelector(e):e}let hh=!1;const xw=()=>{hh||(hh=!0,dw(),pw())},yw=()=>{},ww=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:bg,BaseTransitionPropsValidators:vu,Comment:tn,EffectScope:Jc,Fragment:Ke,KeepAlive:yy,ReactiveEffect:nr,Static:li,Suspense:cy,Teleport:Ng,Text:Da,Transition:Wn,TransitionGroup:hv,VueElement:Vo,assertNumber:qx,callWithAsyncErrorHandling:wn,callWithErrorHandling:da,camelize:Sn,capitalize:pa,cloneVNode:Yn,compatUtils:k0,compile:yw,computed:X,createApp:wv,createBlock:To,createCommentVNode:u0,createElementBlock:r0,createElementVNode:Cu,createHydrationRenderer:Dg,createPropsRestProxy:Hy,createRenderer:Bg,createSSRApp:bw,createSlots:Ay,createStaticVNode:c0,createTextVNode:yi,createVNode:R,customRef:Ex,defineAsyncComponent:by,defineComponent:xi,defineCustomElement:iv,defineEmits:Ly,defineExpose:_y,defineModel:My,defineOptions:Vy,defineProps:Iy,defineSSRCustomElement:J0,defineSlots:Ry,get devtools(){return Oi},effect:Gb,effectScope:Ji,getCurrentInstance:ta,getCurrentScope:Qc,getTransitionRawChildren:Co,guardReactiveProps:$g,h:jn,handleError:bi,hasInjectionContext:_g,hydrate:yv,initCustomFormatter:b0,initDirectivesForSSR:xw,inject:ct,isMemoSame:Qg,isProxy:au,isReactive:ua,isReadonly:di,isRef:yt,isRuntimeOnly:v0,isShallow:Fs,isVNode:za,markRaw:ar,mergeDefaults:zy,mergeModels:Ny,mergeProps:Ye,nextTick:gt,normalizeClass:rr,normalizeProps:jx,normalizeStyle:sr,onActivated:mu,onBeforeMount:cr,onBeforeUnmount:qt,onBeforeUpdate:bu,onDeactivated:pu,onErrorCaptured:Cg,onMounted:zt,onRenderTracked:kg,onRenderTriggered:Sg,onScopeDispose:nn,onServerPrefetch:wg,onUnmounted:Eo,onUpdated:Po,openBlock:ur,popScopeId:ny,provide:Pt,proxyRefs:ru,pushScopeId:ty,queuePostFlushCb:uu,reactive:Gt,readonly:ts,ref:Re,registerRuntimeCompiler:g0,render:ic,renderList:Cy,renderSlot:Py,resolveComponent:ky,resolveDirective:mn,resolveDynamicComponent:Pg,resolveFilter:S0,resolveTransitionHooks:Xi,setBlockTracking:Ul,setDevtoolsHook:hg,setTransitionHooks:hi,shallowReactive:nu,shallowReadonly:wx,shallowRef:Xe,ssrContextKey:Zg,ssrUtils:w0,stop:Ub,toDisplayString:Gx,toHandlerKey:As,toHandlers:Ey,toRaw:nt,toRef:Ie,toRefs:ir,toValue:Cx,transformVNodeArgs:o0,triggerRef:kx,unref:_t,useAttrs:By,useCssModule:ew,useCssVars:tw,useModel:Dy,useSSRContext:Jg,useSlots:Fy,useTransitionState:gu,vModelCheckbox:Tu,vModelDynamic:vv,vModelRadio:Iu,vModelSelect:fv,vModelText:$s,vShow:Ln,version:ev,warn:Ux,watch:He,watchEffect:vn,watchPostEffect:mg,watchSyncEffect:vy,withAsyncContext:Xy,withCtx:du,withDefaults:Oy,withDirectives:Et,withKeys:mw,withMemo:x0,withModifiers:gw,withScopeId:ay},Symbol.toStringTag,{value:"Module"}));var Sw=!1;/*! + * pinia v2.1.6 + * (c) 2023 Eduardo San Martin Morote + * @license MIT + */let kv;const Ro=e=>kv=e,Cv=Symbol();function sc(e){return e&&typeof e=="object"&&Object.prototype.toString.call(e)==="[object Object]"&&typeof e.toJSON!="function"}var _s;(function(e){e.direct="direct",e.patchObject="patch object",e.patchFunction="patch function"})(_s||(_s={}));function kw(){const e=Ji(!0),a=e.run(()=>Re({}));let i=[],r=[];const l=ar({install(d){Ro(l),l._a=d,d.provide(Cv,l),d.config.globalProperties.$pinia=l,r.forEach(f=>i.push(f)),r=[]},use(d){return!this._a&&!Sw?r.push(d):i.push(d),this},_p:i,_a:null,_e:e,_s:new Map,state:a});return l}const Av=()=>{};function fh(e,a,i,r=Av){e.push(a);const l=()=>{const d=e.indexOf(a);d>-1&&(e.splice(d,1),r())};return!i&&Qc()&&nn(l),l}function Li(e,...a){e.slice().forEach(i=>{i(...a)})}const Cw=e=>e();function rc(e,a){e instanceof Map&&a instanceof Map&&a.forEach((i,r)=>e.set(r,i)),e instanceof Set&&a instanceof Set&&a.forEach(e.add,e);for(const i in a){if(!a.hasOwnProperty(i))continue;const r=a[i],l=e[i];sc(l)&&sc(r)&&e.hasOwnProperty(i)&&!yt(r)&&!ua(r)?e[i]=rc(l,r):e[i]=r}return e}const Aw=Symbol();function Pw(e){return!sc(e)||!e.hasOwnProperty(Aw)}const{assign:La}=Object;function Ew(e){return!!(yt(e)&&e.effect)}function Tw(e,a,i,r){const{state:l,actions:d,getters:f}=a,p=i.state.value[e];let y;function k(){p||(i.state.value[e]=l?l():{});const C=ir(i.state.value[e]);return La(C,d,Object.keys(f||{}).reduce((A,E)=>(A[E]=ar(X(()=>{Ro(i);const _=i._s.get(e);return f[E].call(_,_)})),A),{}))}return y=Pv(e,k,a,i,r,!0),y}function Pv(e,a,i={},r,l,d){let f;const p=La({actions:{}},i),y={deep:!0};let k,C,A=[],E=[],_;const M=r.state.value[e];!d&&!M&&(r.state.value[e]={}),Re({});let F;function $(W){let j;k=C=!1,typeof W=="function"?(W(r.state.value[e]),j={type:_s.patchFunction,storeId:e,events:_}):(rc(r.state.value[e],W),j={type:_s.patchObject,payload:W,storeId:e,events:_});const Q=F=Symbol();gt().then(()=>{F===Q&&(k=!0)}),C=!0,Li(A,j,r.state.value[e])}const B=d?function(){const{state:j}=i,Q=j?j():{};this.$patch(ie=>{La(ie,Q)})}:Av;function L(){f.stop(),A=[],E=[],r._s.delete(e)}function q(W,j){return function(){Ro(r);const Q=Array.from(arguments),ie=[],ne=[];function oe(ye){ie.push(ye)}function le(ye){ne.push(ye)}Li(E,{args:Q,name:W,store:H,after:oe,onError:le});let Ce;try{Ce=j.apply(this&&this.$id===e?this:H,Q)}catch(ye){throw Li(ne,ye),ye}return Ce instanceof Promise?Ce.then(ye=>(Li(ie,ye),ye)).catch(ye=>(Li(ne,ye),Promise.reject(ye))):(Li(ie,Ce),Ce)}}const Y={_p:r,$id:e,$onAction:fh.bind(null,E),$patch:$,$reset:B,$subscribe(W,j={}){const Q=fh(A,W,j.detached,()=>ie()),ie=f.run(()=>He(()=>r.state.value[e],ne=>{(j.flush==="sync"?C:k)&&W({storeId:e,type:_s.direct,events:_},ne)},La({},y,j)));return Q},$dispose:L},H=Gt(Y);r._s.set(e,H);const J=r._a&&r._a.runWithContext||Cw,ee=r._e.run(()=>(f=Ji(),J(()=>f.run(a))));for(const W in ee){const j=ee[W];if(yt(j)&&!Ew(j)||ua(j))d||(M&&Pw(j)&&(yt(j)?j.value=M[W]:rc(j,M[W])),r.state.value[e][W]=j);else if(typeof j=="function"){const Q=q(W,j);ee[W]=Q,p.actions[W]=j}}return La(H,ee),La(nt(H),ee),Object.defineProperty(H,"$state",{get:()=>r.state.value[e],set:W=>{$(j=>{La(j,W)})}}),r._p.forEach(W=>{La(H,f.run(()=>W({store:H,app:r._a,pinia:r,options:p})))}),M&&d&&i.hydrate&&i.hydrate(H.$state,M),k=!0,C=!0,H}function Iw(e,a,i){let r,l;const d=typeof a=="function";typeof e=="string"?(r=e,l=d?i:a):(l=e,r=e.id);function f(p,y){const k=_g();return p=p||(k?ct(Cv,null):null),p&&Ro(p),p=kv,p._s.has(r)||(d?Pv(r,a,l,p):Tw(r,l,p)),p._s.get(r)}return f.$id=r,f}/*! + * vue-router v4.2.4 + * (c) 2023 Eduardo San Martin Morote + * @license MIT + */const Fi=typeof window<"u";function Lw(e){return e.__esModule||e[Symbol.toStringTag]==="Module"}const mt=Object.assign;function yl(e,a){const i={};for(const r in a){const l=a[r];i[r]=$n(l)?l.map(e):e(l)}return i}const Vs=()=>{},$n=Array.isArray,_w=/\/$/,Vw=e=>e.replace(_w,"");function wl(e,a,i="/"){let r,l={},d="",f="";const p=a.indexOf("#");let y=a.indexOf("?");return p=0&&(y=-1),y>-1&&(r=a.slice(0,y),d=a.slice(y+1,p>-1?p:a.length),l=e(d)),p>-1&&(r=r||a.slice(0,p),f=a.slice(p,a.length)),r=Fw(r??a,i),{fullPath:r+(d&&"?")+d+f,path:r,query:l,hash:f}}function Rw(e,a){const i=a.query?e(a.query):"";return a.path+(i&&"?")+i+(a.hash||"")}function gh(e,a){return!a||!e.toLowerCase().startsWith(a.toLowerCase())?e:e.slice(a.length)||"/"}function Mw(e,a,i){const r=a.matched.length-1,l=i.matched.length-1;return r>-1&&r===l&&$i(a.matched[r],i.matched[l])&&Ev(a.params,i.params)&&e(a.query)===e(i.query)&&a.hash===i.hash}function $i(e,a){return(e.aliasOf||e)===(a.aliasOf||a)}function Ev(e,a){if(Object.keys(e).length!==Object.keys(a).length)return!1;for(const i in e)if(!Ow(e[i],a[i]))return!1;return!0}function Ow(e,a){return $n(e)?vh(e,a):$n(a)?vh(a,e):e===a}function vh(e,a){return $n(a)?e.length===a.length&&e.every((i,r)=>i===a[r]):e.length===1&&e[0]===a}function Fw(e,a){if(e.startsWith("/"))return e;if(!e)return a;const i=a.split("/"),r=e.split("/"),l=r[r.length-1];(l===".."||l===".")&&r.push("");let d=i.length-1,f,p;for(f=0;f1&&d--;else break;return i.slice(0,d).join("/")+"/"+r.slice(f-(f===r.length?1:0)).join("/")}var js;(function(e){e.pop="pop",e.push="push"})(js||(js={}));var Rs;(function(e){e.back="back",e.forward="forward",e.unknown=""})(Rs||(Rs={}));function Bw(e){if(!e)if(Fi){const a=document.querySelector("base");e=a&&a.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Vw(e)}const Dw=/^[^#]+#/;function zw(e,a){return e.replace(Dw,"#")+a}function Nw(e,a){const i=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:a.behavior,left:r.left-i.left-(a.left||0),top:r.top-i.top-(a.top||0)}}const Mo=()=>({left:window.pageXOffset,top:window.pageYOffset});function Hw(e){let a;if("el"in e){const i=e.el,r=typeof i=="string"&&i.startsWith("#"),l=typeof i=="string"?r?document.getElementById(i.slice(1)):document.querySelector(i):i;if(!l)return;a=Nw(l,e)}else a=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(a):window.scrollTo(a.left!=null?a.left:window.pageXOffset,a.top!=null?a.top:window.pageYOffset)}function mh(e,a){return(history.state?history.state.position-a:-1)+e}const oc=new Map;function Xw(e,a){oc.set(e,a)}function Yw(e){const a=oc.get(e);return oc.delete(e),a}let Ww=()=>location.protocol+"//"+location.host;function Tv(e,a){const{pathname:i,search:r,hash:l}=a,d=e.indexOf("#");if(d>-1){let p=l.includes(e.slice(d))?e.slice(d).length:1,y=l.slice(p);return y[0]!=="/"&&(y="/"+y),gh(y,"")}return gh(i,e)+r+l}function $w(e,a,i,r){let l=[],d=[],f=null;const p=({state:E})=>{const _=Tv(e,location),M=i.value,F=a.value;let $=0;if(E){if(i.value=_,a.value=E,f&&f===M){f=null;return}$=F?E.position-F.position:0}else r(_);l.forEach(B=>{B(i.value,M,{delta:$,type:js.pop,direction:$?$>0?Rs.forward:Rs.back:Rs.unknown})})};function y(){f=i.value}function k(E){l.push(E);const _=()=>{const M=l.indexOf(E);M>-1&&l.splice(M,1)};return d.push(_),_}function C(){const{history:E}=window;E.state&&E.replaceState(mt({},E.state,{scroll:Mo()}),"")}function A(){for(const E of d)E();d=[],window.removeEventListener("popstate",p),window.removeEventListener("beforeunload",C)}return window.addEventListener("popstate",p),window.addEventListener("beforeunload",C,{passive:!0}),{pauseListeners:y,listen:k,destroy:A}}function ph(e,a,i,r=!1,l=!1){return{back:e,current:a,forward:i,replaced:r,position:window.history.length,scroll:l?Mo():null}}function jw(e){const{history:a,location:i}=window,r={value:Tv(e,i)},l={value:a.state};l.value||d(r.value,{back:null,current:r.value,forward:null,position:a.length-1,replaced:!0,scroll:null},!0);function d(y,k,C){const A=e.indexOf("#"),E=A>-1?(i.host&&document.querySelector("base")?e:e.slice(A))+y:Ww()+e+y;try{a[C?"replaceState":"pushState"](k,"",E),l.value=k}catch(_){console.error(_),i[C?"replace":"assign"](E)}}function f(y,k){const C=mt({},a.state,ph(l.value.back,y,l.value.forward,!0),k,{position:l.value.position});d(y,C,!0),r.value=y}function p(y,k){const C=mt({},l.value,a.state,{forward:y,scroll:Mo()});d(C.current,C,!0);const A=mt({},ph(r.value,y,null),{position:C.position+1},k);d(y,A,!1),r.value=y}return{location:r,state:l,push:p,replace:f}}function Gw(e){e=Bw(e);const a=jw(e),i=$w(e,a.state,a.location,a.replace);function r(d,f=!0){f||i.pauseListeners(),history.go(d)}const l=mt({location:"",base:e,go:r,createHref:zw.bind(null,e)},a,i);return Object.defineProperty(l,"location",{enumerable:!0,get:()=>a.location.value}),Object.defineProperty(l,"state",{enumerable:!0,get:()=>a.state.value}),l}function Uw(e){return typeof e=="string"||e&&typeof e=="object"}function Iv(e){return typeof e=="string"||typeof e=="symbol"}const Ea={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Lv=Symbol("");var bh;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(bh||(bh={}));function ji(e,a){return mt(new Error,{type:e,[Lv]:!0},a)}function ia(e,a){return e instanceof Error&&Lv in e&&(a==null||!!(e.type&a))}const xh="[^/]+?",qw={sensitive:!1,strict:!1,start:!0,end:!0},Kw=/[.+*?^${}()[\]/\\]/g;function Zw(e,a){const i=mt({},qw,a),r=[];let l=i.start?"^":"";const d=[];for(const k of e){const C=k.length?[]:[90];i.strict&&!k.length&&(l+="/");for(let A=0;Aa.length?a.length===1&&a[0]===40+40?1:-1:0}function Qw(e,a){let i=0;const r=e.score,l=a.score;for(;i0&&a[a.length-1]<0}const e1={type:0,value:""},t1=/[a-zA-Z0-9_]/;function n1(e){if(!e)return[[]];if(e==="/")return[[e1]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function a(_){throw new Error(`ERR (${i})/"${k}": ${_}`)}let i=0,r=i;const l=[];let d;function f(){d&&l.push(d),d=[]}let p=0,y,k="",C="";function A(){k&&(i===0?d.push({type:0,value:k}):i===1||i===2||i===3?(d.length>1&&(y==="*"||y==="+")&&a(`A repeatable param (${k}) must be alone in its segment. eg: '/:ids+.`),d.push({type:1,value:k,regexp:C,repeatable:y==="*"||y==="+",optional:y==="*"||y==="?"})):a("Invalid state to consume buffer"),k="")}function E(){k+=y}for(;p{f(L)}:Vs}function f(C){if(Iv(C)){const A=r.get(C);A&&(r.delete(C),i.splice(i.indexOf(A),1),A.children.forEach(f),A.alias.forEach(f))}else{const A=i.indexOf(C);A>-1&&(i.splice(A,1),C.record.name&&r.delete(C.record.name),C.children.forEach(f),C.alias.forEach(f))}}function p(){return i}function y(C){let A=0;for(;A=0&&(C.record.path!==i[A].record.path||!_v(C,i[A]));)A++;i.splice(A,0,C),C.record.name&&!Sh(C)&&r.set(C.record.name,C)}function k(C,A){let E,_={},M,F;if("name"in C&&C.name){if(E=r.get(C.name),!E)throw ji(1,{location:C});F=E.record.name,_=mt(wh(A.params,E.keys.filter(L=>!L.optional).map(L=>L.name)),C.params&&wh(C.params,E.keys.map(L=>L.name))),M=E.stringify(_)}else if("path"in C)M=C.path,E=i.find(L=>L.re.test(M)),E&&(_=E.parse(M),F=E.record.name);else{if(E=A.name?r.get(A.name):i.find(L=>L.re.test(A.path)),!E)throw ji(1,{location:C,currentLocation:A});F=E.record.name,_=mt({},A.params,C.params),M=E.stringify(_)}const $=[];let B=E;for(;B;)$.unshift(B.record),B=B.parent;return{name:F,path:M,params:_,matched:$,meta:o1($)}}return e.forEach(C=>d(C)),{addRoute:d,resolve:k,removeRoute:f,getRoutes:p,getRecordMatcher:l}}function wh(e,a){const i={};for(const r of a)r in e&&(i[r]=e[r]);return i}function s1(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:r1(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}}}function r1(e){const a={},i=e.props||!1;if("component"in e)a.default=i;else for(const r in e.components)a[r]=typeof i=="object"?i[r]:i;return a}function Sh(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function o1(e){return e.reduce((a,i)=>mt(a,i.meta),{})}function kh(e,a){const i={};for(const r in e)i[r]=r in a?a[r]:e[r];return i}function _v(e,a){return a.children.some(i=>i===e||_v(e,i))}const Vv=/#/g,l1=/&/g,c1=/\//g,u1=/=/g,d1=/\?/g,Rv=/\+/g,h1=/%5B/g,f1=/%5D/g,Mv=/%5E/g,g1=/%60/g,Ov=/%7B/g,v1=/%7C/g,Fv=/%7D/g,m1=/%20/g;function Lu(e){return encodeURI(""+e).replace(v1,"|").replace(h1,"[").replace(f1,"]")}function p1(e){return Lu(e).replace(Ov,"{").replace(Fv,"}").replace(Mv,"^")}function lc(e){return Lu(e).replace(Rv,"%2B").replace(m1,"+").replace(Vv,"%23").replace(l1,"%26").replace(g1,"`").replace(Ov,"{").replace(Fv,"}").replace(Mv,"^")}function b1(e){return lc(e).replace(u1,"%3D")}function x1(e){return Lu(e).replace(Vv,"%23").replace(d1,"%3F")}function y1(e){return e==null?"":x1(e).replace(c1,"%2F")}function eo(e){try{return decodeURIComponent(""+e)}catch{}return""+e}function w1(e){const a={};if(e===""||e==="?")return a;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let l=0;ld&&lc(d)):[r&&lc(r)]).forEach(d=>{d!==void 0&&(a+=(a.length?"&":"")+i,d!=null&&(a+="="+d))})}return a}function S1(e){const a={};for(const i in e){const r=e[i];r!==void 0&&(a[i]=$n(r)?r.map(l=>l==null?null:""+l):r==null?r:""+r)}return a}const k1=Symbol(""),Ah=Symbol(""),_u=Symbol(""),Bv=Symbol(""),cc=Symbol("");function ms(){let e=[];function a(r){return e.push(r),()=>{const l=e.indexOf(r);l>-1&&e.splice(l,1)}}function i(){e=[]}return{add:a,list:()=>e.slice(),reset:i}}function Va(e,a,i,r,l){const d=r&&(r.enterCallbacks[l]=r.enterCallbacks[l]||[]);return()=>new Promise((f,p)=>{const y=A=>{A===!1?p(ji(4,{from:i,to:a})):A instanceof Error?p(A):Uw(A)?p(ji(2,{from:a,to:A})):(d&&r.enterCallbacks[l]===d&&typeof A=="function"&&d.push(A),f())},k=e.call(r&&r.instances[l],a,i,y);let C=Promise.resolve(k);e.length<3&&(C=C.then(y)),C.catch(A=>p(A))})}function Sl(e,a,i,r){const l=[];for(const d of e)for(const f in d.components){let p=d.components[f];if(!(a!=="beforeRouteEnter"&&!d.instances[f]))if(C1(p)){const k=(p.__vccOpts||p)[a];k&&l.push(Va(k,i,r,d,f))}else{let y=p();l.push(()=>y.then(k=>{if(!k)return Promise.reject(new Error(`Couldn't resolve component "${f}" at "${d.path}"`));const C=Lw(k)?k.default:k;d.components[f]=C;const E=(C.__vccOpts||C)[a];return E&&Va(E,i,r,d,f)()}))}}return l}function C1(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function Ph(e){const a=ct(_u),i=ct(Bv),r=X(()=>a.resolve(_t(e.to))),l=X(()=>{const{matched:y}=r.value,{length:k}=y,C=y[k-1],A=i.matched;if(!C||!A.length)return-1;const E=A.findIndex($i.bind(null,C));if(E>-1)return E;const _=Eh(y[k-2]);return k>1&&Eh(C)===_&&A[A.length-1].path!==_?A.findIndex($i.bind(null,y[k-2])):E}),d=X(()=>l.value>-1&&T1(i.params,r.value.params)),f=X(()=>l.value>-1&&l.value===i.matched.length-1&&Ev(i.params,r.value.params));function p(y={}){return E1(y)?a[_t(e.replace)?"replace":"push"](_t(e.to)).catch(Vs):Promise.resolve()}return{route:r,href:X(()=>r.value.href),isActive:d,isExactActive:f,navigate:p}}const A1=xi({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:Ph,setup(e,{slots:a}){const i=Gt(Ph(e)),{options:r}=ct(_u),l=X(()=>({[Th(e.activeClass,r.linkActiveClass,"router-link-active")]:i.isActive,[Th(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:i.isExactActive}));return()=>{const d=a.default&&a.default(i);return e.custom?d:jn("a",{"aria-current":i.isExactActive?e.ariaCurrentValue:null,href:i.href,onClick:i.navigate,class:l.value},d)}}}),P1=A1;function E1(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const a=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(a))return}return e.preventDefault&&e.preventDefault(),!0}}function T1(e,a){for(const i in a){const r=a[i],l=e[i];if(typeof r=="string"){if(r!==l)return!1}else if(!$n(l)||l.length!==r.length||r.some((d,f)=>d!==l[f]))return!1}return!0}function Eh(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const Th=(e,a,i)=>e??a??i,I1=xi({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:a,slots:i}){const r=ct(cc),l=X(()=>e.route||r.value),d=ct(Ah,0),f=X(()=>{let k=_t(d);const{matched:C}=l.value;let A;for(;(A=C[k])&&!A.components;)k++;return k}),p=X(()=>l.value.matched[f.value]);Pt(Ah,X(()=>f.value+1)),Pt(k1,p),Pt(cc,l);const y=Re();return He(()=>[y.value,p.value,e.name],([k,C,A],[E,_,M])=>{C&&(C.instances[A]=k,_&&_!==C&&k&&k===E&&(C.leaveGuards.size||(C.leaveGuards=_.leaveGuards),C.updateGuards.size||(C.updateGuards=_.updateGuards))),k&&C&&(!_||!$i(C,_)||!E)&&(C.enterCallbacks[A]||[]).forEach(F=>F(k))},{flush:"post"}),()=>{const k=l.value,C=e.name,A=p.value,E=A&&A.components[C];if(!E)return Ih(i.default,{Component:E,route:k});const _=A.props[C],M=_?_===!0?k.params:typeof _=="function"?_(k):_:null,$=jn(E,mt({},M,a,{onVnodeUnmounted:B=>{B.component.isUnmounted&&(A.instances[C]=null)},ref:y}));return Ih(i.default,{Component:$,route:k})||$}}});function Ih(e,a){if(!e)return null;const i=e(a);return i.length===1?i[0]:i}const Dv=I1;function L1(e){const a=i1(e.routes,e),i=e.parseQuery||w1,r=e.stringifyQuery||Ch,l=e.history,d=ms(),f=ms(),p=ms(),y=Xe(Ea);let k=Ea;Fi&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const C=yl.bind(null,de=>""+de),A=yl.bind(null,y1),E=yl.bind(null,eo);function _(de,Le){let _e,be;return Iv(de)?(_e=a.getRecordMatcher(de),be=Le):be=de,a.addRoute(be,_e)}function M(de){const Le=a.getRecordMatcher(de);Le&&a.removeRoute(Le)}function F(){return a.getRoutes().map(de=>de.record)}function $(de){return!!a.getRecordMatcher(de)}function B(de,Le){if(Le=mt({},Le||y.value),typeof de=="string"){const se=wl(i,de,Le.path),ce=a.resolve({path:se.path},Le),pe=l.createHref(se.fullPath);return mt(se,ce,{params:E(ce.params),hash:eo(se.hash),redirectedFrom:void 0,href:pe})}let _e;if("path"in de)_e=mt({},de,{path:wl(i,de.path,Le.path).path});else{const se=mt({},de.params);for(const ce in se)se[ce]==null&&delete se[ce];_e=mt({},de,{params:A(se)}),Le.params=A(Le.params)}const be=a.resolve(_e,Le),ve=de.hash||"";be.params=C(E(be.params));const Z=Rw(r,mt({},de,{hash:p1(ve),path:be.path})),te=l.createHref(Z);return mt({fullPath:Z,hash:ve,query:r===Ch?S1(de.query):de.query||{}},be,{redirectedFrom:void 0,href:te})}function L(de){return typeof de=="string"?wl(i,de,y.value.path):mt({},de)}function q(de,Le){if(k!==de)return ji(8,{from:Le,to:de})}function Y(de){return ee(de)}function H(de){return Y(mt(L(de),{replace:!0}))}function J(de){const Le=de.matched[de.matched.length-1];if(Le&&Le.redirect){const{redirect:_e}=Le;let be=typeof _e=="function"?_e(de):_e;return typeof be=="string"&&(be=be.includes("?")||be.includes("#")?be=L(be):{path:be},be.params={}),mt({query:de.query,hash:de.hash,params:"path"in be?{}:de.params},be)}}function ee(de,Le){const _e=k=B(de),be=y.value,ve=de.state,Z=de.force,te=de.replace===!0,se=J(_e);if(se)return ee(mt(L(se),{state:typeof se=="object"?mt({},ve,se.state):ve,force:Z,replace:te}),Le||_e);const ce=_e;ce.redirectedFrom=Le;let pe;return!Z&&Mw(r,be,_e)&&(pe=ji(16,{to:ce,from:be}),De(be,be,!0,!1)),(pe?Promise.resolve(pe):Q(ce,be)).catch(ke=>ia(ke)?ia(ke,2)?ke:Ee(ke):he(ke,ce,be)).then(ke=>{if(ke){if(ia(ke,2))return ee(mt({replace:te},L(ke.to),{state:typeof ke.to=="object"?mt({},ve,ke.to.state):ve,force:Z}),Le||ce)}else ke=ne(ce,be,!0,te,ve);return ie(ce,be,ke),ke})}function W(de,Le){const _e=q(de,Le);return _e?Promise.reject(_e):Promise.resolve()}function j(de){const Le=Je.values().next().value;return Le&&typeof Le.runWithContext=="function"?Le.runWithContext(de):de()}function Q(de,Le){let _e;const[be,ve,Z]=_1(de,Le);_e=Sl(be.reverse(),"beforeRouteLeave",de,Le);for(const se of be)se.leaveGuards.forEach(ce=>{_e.push(Va(ce,de,Le))});const te=W.bind(null,de,Le);return _e.push(te),ue(_e).then(()=>{_e=[];for(const se of d.list())_e.push(Va(se,de,Le));return _e.push(te),ue(_e)}).then(()=>{_e=Sl(ve,"beforeRouteUpdate",de,Le);for(const se of ve)se.updateGuards.forEach(ce=>{_e.push(Va(ce,de,Le))});return _e.push(te),ue(_e)}).then(()=>{_e=[];for(const se of Z)if(se.beforeEnter)if($n(se.beforeEnter))for(const ce of se.beforeEnter)_e.push(Va(ce,de,Le));else _e.push(Va(se.beforeEnter,de,Le));return _e.push(te),ue(_e)}).then(()=>(de.matched.forEach(se=>se.enterCallbacks={}),_e=Sl(Z,"beforeRouteEnter",de,Le),_e.push(te),ue(_e))).then(()=>{_e=[];for(const se of f.list())_e.push(Va(se,de,Le));return _e.push(te),ue(_e)}).catch(se=>ia(se,8)?se:Promise.reject(se))}function ie(de,Le,_e){p.list().forEach(be=>j(()=>be(de,Le,_e)))}function ne(de,Le,_e,be,ve){const Z=q(de,Le);if(Z)return Z;const te=Le===Ea,se=Fi?history.state:{};_e&&(be||te?l.replace(de.fullPath,mt({scroll:te&&se&&se.scroll},ve)):l.push(de.fullPath,ve)),y.value=de,De(de,Le,_e,te),Ee()}let oe;function le(){oe||(oe=l.listen((de,Le,_e)=>{if(!ze.listening)return;const be=B(de),ve=J(be);if(ve){ee(mt(ve,{replace:!0}),be).catch(Vs);return}k=be;const Z=y.value;Fi&&Xw(mh(Z.fullPath,_e.delta),Mo()),Q(be,Z).catch(te=>ia(te,12)?te:ia(te,2)?(ee(te.to,be).then(se=>{ia(se,20)&&!_e.delta&&_e.type===js.pop&&l.go(-1,!1)}).catch(Vs),Promise.reject()):(_e.delta&&l.go(-_e.delta,!1),he(te,be,Z))).then(te=>{te=te||ne(be,Z,!1),te&&(_e.delta&&!ia(te,8)?l.go(-_e.delta,!1):_e.type===js.pop&&ia(te,20)&&l.go(-1,!1)),ie(be,Z,te)}).catch(Vs)}))}let Ce=ms(),ye=ms(),fe;function he(de,Le,_e){Ee(de);const be=ye.list();return be.length?be.forEach(ve=>ve(de,Le,_e)):console.error(de),Promise.reject(de)}function Se(){return fe&&y.value!==Ea?Promise.resolve():new Promise((de,Le)=>{Ce.add([de,Le])})}function Ee(de){return fe||(fe=!de,le(),Ce.list().forEach(([Le,_e])=>de?_e(de):Le()),Ce.reset()),de}function De(de,Le,_e,be){const{scrollBehavior:ve}=e;if(!Fi||!ve)return Promise.resolve();const Z=!_e&&Yw(mh(de.fullPath,0))||(be||!_e)&&history.state&&history.state.scroll||null;return gt().then(()=>ve(de,Le,Z)).then(te=>te&&Hw(te)).catch(te=>he(te,de,Le))}const Fe=de=>l.go(de);let Ze;const Je=new Set,ze={currentRoute:y,listening:!0,addRoute:_,removeRoute:M,hasRoute:$,getRoutes:F,resolve:B,options:e,push:Y,replace:H,go:Fe,back:()=>Fe(-1),forward:()=>Fe(1),beforeEach:d.add,beforeResolve:f.add,afterEach:p.add,onError:ye.add,isReady:Se,install(de){const Le=this;de.component("RouterLink",P1),de.component("RouterView",Dv),de.config.globalProperties.$router=Le,Object.defineProperty(de.config.globalProperties,"$route",{enumerable:!0,get:()=>_t(y)}),Fi&&!Ze&&y.value===Ea&&(Ze=!0,Y(l.location).catch(ve=>{}));const _e={};for(const ve in Ea)Object.defineProperty(_e,ve,{get:()=>y.value[ve],enumerable:!0});de.provide(_u,Le),de.provide(Bv,nu(_e)),de.provide(cc,y);const be=de.unmount;Je.add(de),de.unmount=function(){Je.delete(de),Je.size<1&&(k=Ea,oe&&oe(),oe=null,y.value=Ea,Ze=!1,fe=!1),be()}}};function ue(de){return de.reduce((Le,_e)=>Le.then(()=>j(_e)),Promise.resolve())}return ze}function _1(e,a){const i=[],r=[],l=[],d=Math.max(a.matched.length,e.matched.length);for(let f=0;f$i(k,p))?r.push(p):i.push(p));const y=e.matched[f];y&&(a.matched.find(k=>$i(k,y))||l.push(y))}return[i,r,l]}const V1=xi({__name:"App",setup(e){return(a,i)=>(ur(),To(_t(Dv)))}}),R1="modulepreload",M1=function(e){return"/"+e},Lh={},Ra=function(a,i,r){if(!i||i.length===0)return a();const l=document.getElementsByTagName("link");return Promise.all(i.map(d=>{if(d=M1(d),d in Lh)return;Lh[d]=!0;const f=d.endsWith(".css"),p=f?'[rel="stylesheet"]':"";if(!!r)for(let C=l.length-1;C>=0;C--){const A=l[C];if(A.href===d&&(!f||A.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${d}"]${p}`))return;const k=document.createElement("link");if(k.rel=f?"stylesheet":R1,f||(k.as="script",k.crossOrigin=""),k.href=d,document.head.appendChild(k),f)return new Promise((C,A)=>{k.addEventListener("load",C),k.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${d}`)))})})).then(()=>a()).catch(d=>{const f=new Event("vite:preloadError",{cancelable:!0});if(f.payload=d,window.dispatchEvent(f),!f.defaultPrevented)throw d})},O1={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>Ra(()=>import("./FullLayout-579d0529.js"),["assets/FullLayout-579d0529.js","assets/md5-6c2e1fd5.js"]),children:[{name:"Dashboard",path:"/",component:()=>Ra(()=>import("./DefaultDashboard-68301edf.js"),["assets/DefaultDashboard-68301edf.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Extensions",path:"/extension",component:()=>Ra(()=>import("./ExtensionPage-38225584.js"),["assets/ExtensionPage-38225584.js","assets/ConfigDetailCard-5542b7f5.js"])},{name:"Configs",path:"/config",component:()=>Ra(()=>import("./ConfigPage-e84879b9.js"),["assets/ConfigPage-e84879b9.js","assets/ConfigDetailCard-5542b7f5.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/ConfigPage-f564cc69.css"])},{name:"Default",path:"/dashboard/default",component:()=>Ra(()=>import("./DefaultDashboard-68301edf.js"),["assets/DefaultDashboard-68301edf.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Console",path:"/console",component:()=>Ra(()=>import("./ConsolePage-b25b7cd3.js"),["assets/ConsolePage-b25b7cd3.js","assets/ConsolePage-ff373be6.css"])}]},F1={path:"/auth",component:()=>Ra(()=>import("./BlankLayout-a90e5c8d.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>Ra(()=>import("./LoginPage-ca95c6ab.js"),["assets/LoginPage-ca95c6ab.js","assets/md5-6c2e1fd5.js","assets/LoginPage-74e85ca7.css"])}]};function zv(e,a){return function(){return e.apply(a,arguments)}}const{toString:B1}=Object.prototype,{getPrototypeOf:Vu}=Object,Oo=(e=>a=>{const i=B1.call(a);return e[i]||(e[i]=i.slice(8,-1).toLowerCase())})(Object.create(null)),na=e=>(e=e.toLowerCase(),a=>Oo(a)===e),Fo=e=>a=>typeof a===e,{isArray:ns}=Array,Gs=Fo("undefined");function D1(e){return e!==null&&!Gs(e)&&e.constructor!==null&&!Gs(e.constructor)&&Tn(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const Nv=na("ArrayBuffer");function z1(e){let a;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?a=ArrayBuffer.isView(e):a=e&&e.buffer&&Nv(e.buffer),a}const N1=Fo("string"),Tn=Fo("function"),Hv=Fo("number"),Bo=e=>e!==null&&typeof e=="object",H1=e=>e===!0||e===!1,Yr=e=>{if(Oo(e)!=="object")return!1;const a=Vu(e);return(a===null||a===Object.prototype||Object.getPrototypeOf(a)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},X1=na("Date"),Y1=na("File"),W1=na("Blob"),$1=na("FileList"),j1=e=>Bo(e)&&Tn(e.pipe),G1=e=>{let a;return e&&(typeof FormData=="function"&&e instanceof FormData||Tn(e.append)&&((a=Oo(e))==="formdata"||a==="object"&&Tn(e.toString)&&e.toString()==="[object FormData]"))},U1=na("URLSearchParams"),q1=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function fr(e,a,{allOwnKeys:i=!1}={}){if(e===null||typeof e>"u")return;let r,l;if(typeof e!="object"&&(e=[e]),ns(e))for(r=0,l=e.length;r0;)if(l=i[r],a===l.toLowerCase())return l;return null}const Yv=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),Wv=e=>!Gs(e)&&e!==Yv;function uc(){const{caseless:e}=Wv(this)&&this||{},a={},i=(r,l)=>{const d=e&&Xv(a,l)||l;Yr(a[d])&&Yr(r)?a[d]=uc(a[d],r):Yr(r)?a[d]=uc({},r):ns(r)?a[d]=r.slice():a[d]=r};for(let r=0,l=arguments.length;r(fr(a,(l,d)=>{i&&Tn(l)?e[d]=zv(l,i):e[d]=l},{allOwnKeys:r}),e),Z1=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),J1=(e,a,i,r)=>{e.prototype=Object.create(a.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:a.prototype}),i&&Object.assign(e.prototype,i)},Q1=(e,a,i,r)=>{let l,d,f;const p={};if(a=a||{},e==null)return a;do{for(l=Object.getOwnPropertyNames(e),d=l.length;d-- >0;)f=l[d],(!r||r(f,e,a))&&!p[f]&&(a[f]=e[f],p[f]=!0);e=i!==!1&&Vu(e)}while(e&&(!i||i(e,a))&&e!==Object.prototype);return a},eS=(e,a,i)=>{e=String(e),(i===void 0||i>e.length)&&(i=e.length),i-=a.length;const r=e.indexOf(a,i);return r!==-1&&r===i},tS=e=>{if(!e)return null;if(ns(e))return e;let a=e.length;if(!Hv(a))return null;const i=new Array(a);for(;a-- >0;)i[a]=e[a];return i},nS=(e=>a=>e&&a instanceof e)(typeof Uint8Array<"u"&&Vu(Uint8Array)),aS=(e,a)=>{const r=(e&&e[Symbol.iterator]).call(e);let l;for(;(l=r.next())&&!l.done;){const d=l.value;a.call(e,d[0],d[1])}},iS=(e,a)=>{let i;const r=[];for(;(i=e.exec(a))!==null;)r.push(i);return r},sS=na("HTMLFormElement"),rS=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(i,r,l){return r.toUpperCase()+l}),_h=(({hasOwnProperty:e})=>(a,i)=>e.call(a,i))(Object.prototype),oS=na("RegExp"),$v=(e,a)=>{const i=Object.getOwnPropertyDescriptors(e),r={};fr(i,(l,d)=>{let f;(f=a(l,d,e))!==!1&&(r[d]=f||l)}),Object.defineProperties(e,r)},lS=e=>{$v(e,(a,i)=>{if(Tn(e)&&["arguments","caller","callee"].indexOf(i)!==-1)return!1;const r=e[i];if(Tn(r)){if(a.enumerable=!1,"writable"in a){a.writable=!1;return}a.set||(a.set=()=>{throw Error("Can not rewrite read-only method '"+i+"'")})}})},cS=(e,a)=>{const i={},r=l=>{l.forEach(d=>{i[d]=!0})};return ns(e)?r(e):r(String(e).split(a)),i},uS=()=>{},dS=(e,a)=>(e=+e,Number.isFinite(e)?e:a),kl="abcdefghijklmnopqrstuvwxyz",Vh="0123456789",jv={DIGIT:Vh,ALPHA:kl,ALPHA_DIGIT:kl+kl.toUpperCase()+Vh},hS=(e=16,a=jv.ALPHA_DIGIT)=>{let i="";const{length:r}=a;for(;e--;)i+=a[Math.random()*r|0];return i};function fS(e){return!!(e&&Tn(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const gS=e=>{const a=new Array(10),i=(r,l)=>{if(Bo(r)){if(a.indexOf(r)>=0)return;if(!("toJSON"in r)){a[l]=r;const d=ns(r)?[]:{};return fr(r,(f,p)=>{const y=i(f,l+1);!Gs(y)&&(d[p]=y)}),a[l]=void 0,d}}return r};return i(e,0)},vS=na("AsyncFunction"),mS=e=>e&&(Bo(e)||Tn(e))&&Tn(e.then)&&Tn(e.catch),Ae={isArray:ns,isArrayBuffer:Nv,isBuffer:D1,isFormData:G1,isArrayBufferView:z1,isString:N1,isNumber:Hv,isBoolean:H1,isObject:Bo,isPlainObject:Yr,isUndefined:Gs,isDate:X1,isFile:Y1,isBlob:W1,isRegExp:oS,isFunction:Tn,isStream:j1,isURLSearchParams:U1,isTypedArray:nS,isFileList:$1,forEach:fr,merge:uc,extend:K1,trim:q1,stripBOM:Z1,inherits:J1,toFlatObject:Q1,kindOf:Oo,kindOfTest:na,endsWith:eS,toArray:tS,forEachEntry:aS,matchAll:iS,isHTMLForm:sS,hasOwnProperty:_h,hasOwnProp:_h,reduceDescriptors:$v,freezeMethods:lS,toObjectSet:cS,toCamelCase:rS,noop:uS,toFiniteNumber:dS,findKey:Xv,global:Yv,isContextDefined:Wv,ALPHABET:jv,generateString:hS,isSpecCompliantForm:fS,toJSONObject:gS,isAsyncFn:vS,isThenable:mS};function ht(e,a,i,r,l){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",a&&(this.code=a),i&&(this.config=i),r&&(this.request=r),l&&(this.response=l)}Ae.inherits(ht,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:Ae.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Gv=ht.prototype,Uv={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Uv[e]={value:e}});Object.defineProperties(ht,Uv);Object.defineProperty(Gv,"isAxiosError",{value:!0});ht.from=(e,a,i,r,l,d)=>{const f=Object.create(Gv);return Ae.toFlatObject(e,f,function(y){return y!==Error.prototype},p=>p!=="isAxiosError"),ht.call(f,e.message,a,i,r,l),f.cause=e,f.name=e.name,d&&Object.assign(f,d),f};const pS=null;function dc(e){return Ae.isPlainObject(e)||Ae.isArray(e)}function qv(e){return Ae.endsWith(e,"[]")?e.slice(0,-2):e}function Rh(e,a,i){return e?e.concat(a).map(function(l,d){return l=qv(l),!i&&d?"["+l+"]":l}).join(i?".":""):a}function bS(e){return Ae.isArray(e)&&!e.some(dc)}const xS=Ae.toFlatObject(Ae,{},null,function(a){return/^is[A-Z]/.test(a)});function Do(e,a,i){if(!Ae.isObject(e))throw new TypeError("target must be an object");a=a||new FormData,i=Ae.toFlatObject(i,{metaTokens:!0,dots:!1,indexes:!1},!1,function(F,$){return!Ae.isUndefined($[F])});const r=i.metaTokens,l=i.visitor||C,d=i.dots,f=i.indexes,y=(i.Blob||typeof Blob<"u"&&Blob)&&Ae.isSpecCompliantForm(a);if(!Ae.isFunction(l))throw new TypeError("visitor must be a function");function k(M){if(M===null)return"";if(Ae.isDate(M))return M.toISOString();if(!y&&Ae.isBlob(M))throw new ht("Blob is not supported. Use a Buffer instead.");return Ae.isArrayBuffer(M)||Ae.isTypedArray(M)?y&&typeof Blob=="function"?new Blob([M]):Buffer.from(M):M}function C(M,F,$){let B=M;if(M&&!$&&typeof M=="object"){if(Ae.endsWith(F,"{}"))F=r?F:F.slice(0,-2),M=JSON.stringify(M);else if(Ae.isArray(M)&&bS(M)||(Ae.isFileList(M)||Ae.endsWith(F,"[]"))&&(B=Ae.toArray(M)))return F=qv(F),B.forEach(function(q,Y){!(Ae.isUndefined(q)||q===null)&&a.append(f===!0?Rh([F],Y,d):f===null?F:F+"[]",k(q))}),!1}return dc(M)?!0:(a.append(Rh($,F,d),k(M)),!1)}const A=[],E=Object.assign(xS,{defaultVisitor:C,convertValue:k,isVisitable:dc});function _(M,F){if(!Ae.isUndefined(M)){if(A.indexOf(M)!==-1)throw Error("Circular reference detected in "+F.join("."));A.push(M),Ae.forEach(M,function(B,L){(!(Ae.isUndefined(B)||B===null)&&l.call(a,B,Ae.isString(L)?L.trim():L,F,E))===!0&&_(B,F?F.concat(L):[L])}),A.pop()}}if(!Ae.isObject(e))throw new TypeError("data must be an object");return _(e),a}function Mh(e){const a={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return a[r]})}function Ru(e,a){this._pairs=[],e&&Do(e,this,a)}const Kv=Ru.prototype;Kv.append=function(a,i){this._pairs.push([a,i])};Kv.toString=function(a){const i=a?function(r){return a.call(this,r,Mh)}:Mh;return this._pairs.map(function(l){return i(l[0])+"="+i(l[1])},"").join("&")};function yS(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Zv(e,a,i){if(!a)return e;const r=i&&i.encode||yS,l=i&&i.serialize;let d;if(l?d=l(a,i):d=Ae.isURLSearchParams(a)?a.toString():new Ru(a,i).toString(r),d){const f=e.indexOf("#");f!==-1&&(e=e.slice(0,f)),e+=(e.indexOf("?")===-1?"?":"&")+d}return e}class wS{constructor(){this.handlers=[]}use(a,i,r){return this.handlers.push({fulfilled:a,rejected:i,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(a){this.handlers[a]&&(this.handlers[a]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(a){Ae.forEach(this.handlers,function(r){r!==null&&a(r)})}}const Oh=wS,Jv={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},SS=typeof URLSearchParams<"u"?URLSearchParams:Ru,kS=typeof FormData<"u"?FormData:null,CS=typeof Blob<"u"?Blob:null,AS={isBrowser:!0,classes:{URLSearchParams:SS,FormData:kS,Blob:CS},protocols:["http","https","file","blob","url","data"]},Qv=typeof window<"u"&&typeof document<"u",PS=(e=>Qv&&["ReactNative","NativeScript","NS"].indexOf(e)<0)(typeof navigator<"u"&&navigator.product),ES=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),TS=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Qv,hasStandardBrowserEnv:PS,hasStandardBrowserWebWorkerEnv:ES},Symbol.toStringTag,{value:"Module"})),Zn={...TS,...AS};function IS(e,a){return Do(e,new Zn.classes.URLSearchParams,Object.assign({visitor:function(i,r,l,d){return Zn.isNode&&Ae.isBuffer(i)?(this.append(r,i.toString("base64")),!1):d.defaultVisitor.apply(this,arguments)}},a))}function LS(e){return Ae.matchAll(/\w+|\[(\w*)]/g,e).map(a=>a[0]==="[]"?"":a[1]||a[0])}function _S(e){const a={},i=Object.keys(e);let r;const l=i.length;let d;for(r=0;r=i.length;return f=!f&&Ae.isArray(l)?l.length:f,y?(Ae.hasOwnProp(l,f)?l[f]=[l[f],r]:l[f]=r,!p):((!l[f]||!Ae.isObject(l[f]))&&(l[f]=[]),a(i,r,l[f],d)&&Ae.isArray(l[f])&&(l[f]=_S(l[f])),!p)}if(Ae.isFormData(e)&&Ae.isFunction(e.entries)){const i={};return Ae.forEachEntry(e,(r,l)=>{a(LS(r),l,i,0)}),i}return null}function VS(e,a,i){if(Ae.isString(e))try{return(a||JSON.parse)(e),Ae.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(i||JSON.stringify)(e)}const Mu={transitional:Jv,adapter:["xhr","http"],transformRequest:[function(a,i){const r=i.getContentType()||"",l=r.indexOf("application/json")>-1,d=Ae.isObject(a);if(d&&Ae.isHTMLForm(a)&&(a=new FormData(a)),Ae.isFormData(a))return l&&l?JSON.stringify(em(a)):a;if(Ae.isArrayBuffer(a)||Ae.isBuffer(a)||Ae.isStream(a)||Ae.isFile(a)||Ae.isBlob(a))return a;if(Ae.isArrayBufferView(a))return a.buffer;if(Ae.isURLSearchParams(a))return i.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),a.toString();let p;if(d){if(r.indexOf("application/x-www-form-urlencoded")>-1)return IS(a,this.formSerializer).toString();if((p=Ae.isFileList(a))||r.indexOf("multipart/form-data")>-1){const y=this.env&&this.env.FormData;return Do(p?{"files[]":a}:a,y&&new y,this.formSerializer)}}return d||l?(i.setContentType("application/json",!1),VS(a)):a}],transformResponse:[function(a){const i=this.transitional||Mu.transitional,r=i&&i.forcedJSONParsing,l=this.responseType==="json";if(a&&Ae.isString(a)&&(r&&!this.responseType||l)){const f=!(i&&i.silentJSONParsing)&&l;try{return JSON.parse(a)}catch(p){if(f)throw p.name==="SyntaxError"?ht.from(p,ht.ERR_BAD_RESPONSE,this,null,this.response):p}}return a}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:Zn.classes.FormData,Blob:Zn.classes.Blob},validateStatus:function(a){return a>=200&&a<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};Ae.forEach(["delete","get","head","post","put","patch"],e=>{Mu.headers[e]={}});const Ou=Mu,RS=Ae.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),MS=e=>{const a={};let i,r,l;return e&&e.split(` +`).forEach(function(f){l=f.indexOf(":"),i=f.substring(0,l).trim().toLowerCase(),r=f.substring(l+1).trim(),!(!i||a[i]&&RS[i])&&(i==="set-cookie"?a[i]?a[i].push(r):a[i]=[r]:a[i]=a[i]?a[i]+", "+r:r)}),a},Fh=Symbol("internals");function ps(e){return e&&String(e).trim().toLowerCase()}function Wr(e){return e===!1||e==null?e:Ae.isArray(e)?e.map(Wr):String(e)}function OS(e){const a=Object.create(null),i=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=i.exec(e);)a[r[1]]=r[2];return a}const FS=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function Cl(e,a,i,r,l){if(Ae.isFunction(r))return r.call(this,a,i);if(l&&(a=i),!!Ae.isString(a)){if(Ae.isString(r))return a.indexOf(r)!==-1;if(Ae.isRegExp(r))return r.test(a)}}function BS(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(a,i,r)=>i.toUpperCase()+r)}function DS(e,a){const i=Ae.toCamelCase(" "+a);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+i,{value:function(l,d,f){return this[r].call(this,a,l,d,f)},configurable:!0})})}class zo{constructor(a){a&&this.set(a)}set(a,i,r){const l=this;function d(p,y,k){const C=ps(y);if(!C)throw new Error("header name must be a non-empty string");const A=Ae.findKey(l,C);(!A||l[A]===void 0||k===!0||k===void 0&&l[A]!==!1)&&(l[A||y]=Wr(p))}const f=(p,y)=>Ae.forEach(p,(k,C)=>d(k,C,y));return Ae.isPlainObject(a)||a instanceof this.constructor?f(a,i):Ae.isString(a)&&(a=a.trim())&&!FS(a)?f(MS(a),i):a!=null&&d(i,a,r),this}get(a,i){if(a=ps(a),a){const r=Ae.findKey(this,a);if(r){const l=this[r];if(!i)return l;if(i===!0)return OS(l);if(Ae.isFunction(i))return i.call(this,l,r);if(Ae.isRegExp(i))return i.exec(l);throw new TypeError("parser must be boolean|regexp|function")}}}has(a,i){if(a=ps(a),a){const r=Ae.findKey(this,a);return!!(r&&this[r]!==void 0&&(!i||Cl(this,this[r],r,i)))}return!1}delete(a,i){const r=this;let l=!1;function d(f){if(f=ps(f),f){const p=Ae.findKey(r,f);p&&(!i||Cl(r,r[p],p,i))&&(delete r[p],l=!0)}}return Ae.isArray(a)?a.forEach(d):d(a),l}clear(a){const i=Object.keys(this);let r=i.length,l=!1;for(;r--;){const d=i[r];(!a||Cl(this,this[d],d,a,!0))&&(delete this[d],l=!0)}return l}normalize(a){const i=this,r={};return Ae.forEach(this,(l,d)=>{const f=Ae.findKey(r,d);if(f){i[f]=Wr(l),delete i[d];return}const p=a?BS(d):String(d).trim();p!==d&&delete i[d],i[p]=Wr(l),r[p]=!0}),this}concat(...a){return this.constructor.concat(this,...a)}toJSON(a){const i=Object.create(null);return Ae.forEach(this,(r,l)=>{r!=null&&r!==!1&&(i[l]=a&&Ae.isArray(r)?r.join(", "):r)}),i}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([a,i])=>a+": "+i).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(a){return a instanceof this?a:new this(a)}static concat(a,...i){const r=new this(a);return i.forEach(l=>r.set(l)),r}static accessor(a){const r=(this[Fh]=this[Fh]={accessors:{}}).accessors,l=this.prototype;function d(f){const p=ps(f);r[p]||(DS(l,f),r[p]=!0)}return Ae.isArray(a)?a.forEach(d):d(a),this}}zo.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);Ae.reduceDescriptors(zo.prototype,({value:e},a)=>{let i=a[0].toUpperCase()+a.slice(1);return{get:()=>e,set(r){this[i]=r}}});Ae.freezeMethods(zo);const ha=zo;function Al(e,a){const i=this||Ou,r=a||i,l=ha.from(r.headers);let d=r.data;return Ae.forEach(e,function(p){d=p.call(i,d,l.normalize(),a?a.status:void 0)}),l.normalize(),d}function tm(e){return!!(e&&e.__CANCEL__)}function gr(e,a,i){ht.call(this,e??"canceled",ht.ERR_CANCELED,a,i),this.name="CanceledError"}Ae.inherits(gr,ht,{__CANCEL__:!0});function zS(e,a,i){const r=i.config.validateStatus;!i.status||!r||r(i.status)?e(i):a(new ht("Request failed with status code "+i.status,[ht.ERR_BAD_REQUEST,ht.ERR_BAD_RESPONSE][Math.floor(i.status/100)-4],i.config,i.request,i))}const NS=Zn.hasStandardBrowserEnv?{write(e,a,i,r,l,d){const f=[e+"="+encodeURIComponent(a)];Ae.isNumber(i)&&f.push("expires="+new Date(i).toGMTString()),Ae.isString(r)&&f.push("path="+r),Ae.isString(l)&&f.push("domain="+l),d===!0&&f.push("secure"),document.cookie=f.join("; ")},read(e){const a=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return a?decodeURIComponent(a[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function HS(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function XS(e,a){return a?e.replace(/\/+$/,"")+"/"+a.replace(/^\/+/,""):e}function nm(e,a){return e&&!HS(a)?XS(e,a):a}const YS=Zn.hasStandardBrowserEnv?function(){const a=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");let r;function l(d){let f=d;return a&&(i.setAttribute("href",f),f=i.href),i.setAttribute("href",f),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:i.pathname.charAt(0)==="/"?i.pathname:"/"+i.pathname}}return r=l(window.location.href),function(f){const p=Ae.isString(f)?l(f):f;return p.protocol===r.protocol&&p.host===r.host}}():function(){return function(){return!0}}();function WS(e){const a=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return a&&a[1]||""}function $S(e,a){e=e||10;const i=new Array(e),r=new Array(e);let l=0,d=0,f;return a=a!==void 0?a:1e3,function(y){const k=Date.now(),C=r[d];f||(f=k),i[l]=y,r[l]=k;let A=d,E=0;for(;A!==l;)E+=i[A++],A=A%e;if(l=(l+1)%e,l===d&&(d=(d+1)%e),k-f{const d=l.loaded,f=l.lengthComputable?l.total:void 0,p=d-i,y=r(p),k=d<=f;i=d;const C={loaded:d,total:f,progress:f?d/f:void 0,bytes:p,rate:y||void 0,estimated:y&&f&&k?(f-d)/y:void 0,event:l};C[a?"download":"upload"]=!0,e(C)}}const jS=typeof XMLHttpRequest<"u",GS=jS&&function(e){return new Promise(function(i,r){let l=e.data;const d=ha.from(e.headers).normalize();let{responseType:f,withXSRFToken:p}=e,y;function k(){e.cancelToken&&e.cancelToken.unsubscribe(y),e.signal&&e.signal.removeEventListener("abort",y)}let C;if(Ae.isFormData(l)){if(Zn.hasStandardBrowserEnv||Zn.hasStandardBrowserWebWorkerEnv)d.setContentType(!1);else if((C=d.getContentType())!==!1){const[F,...$]=C?C.split(";").map(B=>B.trim()).filter(Boolean):[];d.setContentType([F||"multipart/form-data",...$].join("; "))}}let A=new XMLHttpRequest;if(e.auth){const F=e.auth.username||"",$=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";d.set("Authorization","Basic "+btoa(F+":"+$))}const E=nm(e.baseURL,e.url);A.open(e.method.toUpperCase(),Zv(E,e.params,e.paramsSerializer),!0),A.timeout=e.timeout;function _(){if(!A)return;const F=ha.from("getAllResponseHeaders"in A&&A.getAllResponseHeaders()),B={data:!f||f==="text"||f==="json"?A.responseText:A.response,status:A.status,statusText:A.statusText,headers:F,config:e,request:A};zS(function(q){i(q),k()},function(q){r(q),k()},B),A=null}if("onloadend"in A?A.onloadend=_:A.onreadystatechange=function(){!A||A.readyState!==4||A.status===0&&!(A.responseURL&&A.responseURL.indexOf("file:")===0)||setTimeout(_)},A.onabort=function(){A&&(r(new ht("Request aborted",ht.ECONNABORTED,e,A)),A=null)},A.onerror=function(){r(new ht("Network Error",ht.ERR_NETWORK,e,A)),A=null},A.ontimeout=function(){let $=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const B=e.transitional||Jv;e.timeoutErrorMessage&&($=e.timeoutErrorMessage),r(new ht($,B.clarifyTimeoutError?ht.ETIMEDOUT:ht.ECONNABORTED,e,A)),A=null},Zn.hasStandardBrowserEnv&&(p&&Ae.isFunction(p)&&(p=p(e)),p||p!==!1&&YS(E))){const F=e.xsrfHeaderName&&e.xsrfCookieName&&NS.read(e.xsrfCookieName);F&&d.set(e.xsrfHeaderName,F)}l===void 0&&d.setContentType(null),"setRequestHeader"in A&&Ae.forEach(d.toJSON(),function($,B){A.setRequestHeader(B,$)}),Ae.isUndefined(e.withCredentials)||(A.withCredentials=!!e.withCredentials),f&&f!=="json"&&(A.responseType=e.responseType),typeof e.onDownloadProgress=="function"&&A.addEventListener("progress",Bh(e.onDownloadProgress,!0)),typeof e.onUploadProgress=="function"&&A.upload&&A.upload.addEventListener("progress",Bh(e.onUploadProgress)),(e.cancelToken||e.signal)&&(y=F=>{A&&(r(!F||F.type?new gr(null,e,A):F),A.abort(),A=null)},e.cancelToken&&e.cancelToken.subscribe(y),e.signal&&(e.signal.aborted?y():e.signal.addEventListener("abort",y)));const M=WS(E);if(M&&Zn.protocols.indexOf(M)===-1){r(new ht("Unsupported protocol "+M+":",ht.ERR_BAD_REQUEST,e));return}A.send(l||null)})},hc={http:pS,xhr:GS};Ae.forEach(hc,(e,a)=>{if(e){try{Object.defineProperty(e,"name",{value:a})}catch{}Object.defineProperty(e,"adapterName",{value:a})}});const Dh=e=>`- ${e}`,US=e=>Ae.isFunction(e)||e===null||e===!1,am={getAdapter:e=>{e=Ae.isArray(e)?e:[e];const{length:a}=e;let i,r;const l={};for(let d=0;d`adapter ${p} `+(y===!1?"is not supported by the environment":"is not available in the build"));let f=a?d.length>1?`since : +`+d.map(Dh).join(` +`):" "+Dh(d[0]):"as no adapter specified";throw new ht("There is no suitable adapter to dispatch the request "+f,"ERR_NOT_SUPPORT")}return r},adapters:hc};function Pl(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new gr(null,e)}function zh(e){return Pl(e),e.headers=ha.from(e.headers),e.data=Al.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),am.getAdapter(e.adapter||Ou.adapter)(e).then(function(r){return Pl(e),r.data=Al.call(e,e.transformResponse,r),r.headers=ha.from(r.headers),r},function(r){return tm(r)||(Pl(e),r&&r.response&&(r.response.data=Al.call(e,e.transformResponse,r.response),r.response.headers=ha.from(r.response.headers))),Promise.reject(r)})}const Nh=e=>e instanceof ha?e.toJSON():e;function Gi(e,a){a=a||{};const i={};function r(k,C,A){return Ae.isPlainObject(k)&&Ae.isPlainObject(C)?Ae.merge.call({caseless:A},k,C):Ae.isPlainObject(C)?Ae.merge({},C):Ae.isArray(C)?C.slice():C}function l(k,C,A){if(Ae.isUndefined(C)){if(!Ae.isUndefined(k))return r(void 0,k,A)}else return r(k,C,A)}function d(k,C){if(!Ae.isUndefined(C))return r(void 0,C)}function f(k,C){if(Ae.isUndefined(C)){if(!Ae.isUndefined(k))return r(void 0,k)}else return r(void 0,C)}function p(k,C,A){if(A in a)return r(k,C);if(A in e)return r(void 0,k)}const y={url:d,method:d,data:d,baseURL:f,transformRequest:f,transformResponse:f,paramsSerializer:f,timeout:f,timeoutMessage:f,withCredentials:f,withXSRFToken:f,adapter:f,responseType:f,xsrfCookieName:f,xsrfHeaderName:f,onUploadProgress:f,onDownloadProgress:f,decompress:f,maxContentLength:f,maxBodyLength:f,beforeRedirect:f,transport:f,httpAgent:f,httpsAgent:f,cancelToken:f,socketPath:f,responseEncoding:f,validateStatus:p,headers:(k,C)=>l(Nh(k),Nh(C),!0)};return Ae.forEach(Object.keys(Object.assign({},e,a)),function(C){const A=y[C]||l,E=A(e[C],a[C],C);Ae.isUndefined(E)&&A!==p||(i[C]=E)}),i}const im="1.6.2",Fu={};["object","boolean","number","function","string","symbol"].forEach((e,a)=>{Fu[e]=function(r){return typeof r===e||"a"+(a<1?"n ":" ")+e}});const Hh={};Fu.transitional=function(a,i,r){function l(d,f){return"[Axios v"+im+"] Transitional option '"+d+"'"+f+(r?". "+r:"")}return(d,f,p)=>{if(a===!1)throw new ht(l(f," has been removed"+(i?" in "+i:"")),ht.ERR_DEPRECATED);return i&&!Hh[f]&&(Hh[f]=!0,console.warn(l(f," has been deprecated since v"+i+" and will be removed in the near future"))),a?a(d,f,p):!0}};function qS(e,a,i){if(typeof e!="object")throw new ht("options must be an object",ht.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let l=r.length;for(;l-- >0;){const d=r[l],f=a[d];if(f){const p=e[d],y=p===void 0||f(p,d,e);if(y!==!0)throw new ht("option "+d+" must be "+y,ht.ERR_BAD_OPTION_VALUE);continue}if(i!==!0)throw new ht("Unknown option "+d,ht.ERR_BAD_OPTION)}}const fc={assertOptions:qS,validators:Fu},Ta=fc.validators;class to{constructor(a){this.defaults=a,this.interceptors={request:new Oh,response:new Oh}}request(a,i){typeof a=="string"?(i=i||{},i.url=a):i=a||{},i=Gi(this.defaults,i);const{transitional:r,paramsSerializer:l,headers:d}=i;r!==void 0&&fc.assertOptions(r,{silentJSONParsing:Ta.transitional(Ta.boolean),forcedJSONParsing:Ta.transitional(Ta.boolean),clarifyTimeoutError:Ta.transitional(Ta.boolean)},!1),l!=null&&(Ae.isFunction(l)?i.paramsSerializer={serialize:l}:fc.assertOptions(l,{encode:Ta.function,serialize:Ta.function},!0)),i.method=(i.method||this.defaults.method||"get").toLowerCase();let f=d&&Ae.merge(d.common,d[i.method]);d&&Ae.forEach(["delete","get","head","post","put","patch","common"],M=>{delete d[M]}),i.headers=ha.concat(f,d);const p=[];let y=!0;this.interceptors.request.forEach(function(F){typeof F.runWhen=="function"&&F.runWhen(i)===!1||(y=y&&F.synchronous,p.unshift(F.fulfilled,F.rejected))});const k=[];this.interceptors.response.forEach(function(F){k.push(F.fulfilled,F.rejected)});let C,A=0,E;if(!y){const M=[zh.bind(this),void 0];for(M.unshift.apply(M,p),M.push.apply(M,k),E=M.length,C=Promise.resolve(i);A{if(!r._listeners)return;let d=r._listeners.length;for(;d-- >0;)r._listeners[d](l);r._listeners=null}),this.promise.then=l=>{let d;const f=new Promise(p=>{r.subscribe(p),d=p}).then(l);return f.cancel=function(){r.unsubscribe(d)},f},a(function(d,f,p){r.reason||(r.reason=new gr(d,f,p),i(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(a){if(this.reason){a(this.reason);return}this._listeners?this._listeners.push(a):this._listeners=[a]}unsubscribe(a){if(!this._listeners)return;const i=this._listeners.indexOf(a);i!==-1&&this._listeners.splice(i,1)}static source(){let a;return{token:new Bu(function(l){a=l}),cancel:a}}}const KS=Bu;function ZS(e){return function(i){return e.apply(null,i)}}function JS(e){return Ae.isObject(e)&&e.isAxiosError===!0}const gc={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(gc).forEach(([e,a])=>{gc[a]=e});const QS=gc;function sm(e){const a=new $r(e),i=zv($r.prototype.request,a);return Ae.extend(i,$r.prototype,a,{allOwnKeys:!0}),Ae.extend(i,a,null,{allOwnKeys:!0}),i.create=function(l){return sm(Gi(e,l))},i}const Ft=sm(Ou);Ft.Axios=$r;Ft.CanceledError=gr;Ft.CancelToken=KS;Ft.isCancel=tm;Ft.VERSION=im;Ft.toFormData=Do;Ft.AxiosError=ht;Ft.Cancel=Ft.CanceledError;Ft.all=function(a){return Promise.all(a)};Ft.spread=ZS;Ft.isAxiosError=JS;Ft.mergeConfig=Gi;Ft.AxiosHeaders=ha;Ft.formToJSON=e=>em(Ae.isHTMLForm(e)?new FormData(e):e);Ft.getAdapter=am.getAdapter;Ft.HttpStatusCode=QS;Ft.default=Ft;const ek=Ft,tk=Iw({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(e,a){try{const i=await ek.post("/api/auth/login",{username:e,password:a});if(i.data.status==="error")return Promise.reject(i.data.message);this.user=i.data.data,localStorage.setItem("user",JSON.stringify(this.user)),no.push(this.returnUrl||"/dashboard/default")}catch(i){return Promise.reject(i)}},logout(){this.user=null,localStorage.removeItem("user"),no.push("/auth/login")}}}),no=L1({history:Gw("/"),routes:[O1,F1]});no.beforeEach(async(e,a,i)=>{const l=!["/auth/login"].includes(e.path),d=tk();if(e.matched.some(f=>f.meta.requiresAuth)){if(l&&!d.user)return d.returnUrl=e.fullPath,i("/auth/login");i()}else i()});const St=typeof window<"u",Du=St&&"IntersectionObserver"in window,nk=St&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function Xh(e,a,i){ak(e,a),a.set(e,i)}function ak(e,a){if(a.has(e))throw new TypeError("Cannot initialize the same private elements twice on an object")}function ik(e,a,i){var r=rm(e,a,"set");return sk(e,r,i),i}function sk(e,a,i){if(a.set)a.set.call(e,i);else{if(!a.writable)throw new TypeError("attempted to set read only private field");a.value=i}}function Qa(e,a){var i=rm(e,a,"get");return rk(e,i)}function rm(e,a,i){if(!a.has(e))throw new TypeError("attempted to "+i+" private field on non-instance");return a.get(e)}function rk(e,a){return a.get?a.get.call(e):a.value}function om(e,a,i){const r=a.length-1;if(r<0)return e===void 0?i:e;for(let l=0;lwi(e[r],a[r]))}function vc(e,a,i){return e==null||!a||typeof a!="string"?i:e[a]!==void 0?e[a]:(a=a.replace(/\[(\w+)\]/g,".$1"),a=a.replace(/^\./,""),om(e,a.split("."),i))}function Qt(e,a,i){if(a==null)return e===void 0?i:e;if(e!==Object(e)){if(typeof a!="function")return i;const l=a(e,i);return typeof l>"u"?i:l}if(typeof a=="string")return vc(e,a,i);if(Array.isArray(a))return om(e,a,i);if(typeof a!="function")return i;const r=a(e,i);return typeof r>"u"?i:r}function la(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:e},(i,r)=>a+r)}function $e(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(e==null||e===""))return isNaN(+e)?String(e):isFinite(+e)?`${Number(e)}${a}`:void 0}function mc(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)}function pc(e){return e&&"$el"in e?e.$el:e}const Yh=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),bc=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function lm(e){return Object.keys(e)}function ii(e,a){return a.every(i=>e.hasOwnProperty(i))}function gi(e,a,i){const r=Object.create(null),l=Object.create(null);for(const d in e)a.some(f=>f instanceof RegExp?f.test(d):f===d)&&!(i!=null&&i.some(f=>f===d))?r[d]=e[d]:l[d]=e[d];return[r,l]}function _n(e,a){const i={...e};return a.forEach(r=>delete i[r]),i}const cm=/^on[^a-z]/,zu=e=>cm.test(e),ok=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function Si(e){const[a,i]=gi(e,[cm]),r=_n(a,ok),[l,d]=gi(i,["class","style","id",/^data-/]);return Object.assign(l,a),Object.assign(d,r),[l,d]}function In(e){return e==null?[]:Array.isArray(e)?e:[e]}function en(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(a,Math.min(i,e))}function Wh(e){const a=e.toString().trim();return a.includes(".")?a.length-a.indexOf(".")-1:0}function $h(e,a){let i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return e+i.repeat(Math.max(0,a-e.length))}function lk(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const i=[];let r=0;for(;r1&&arguments[1]!==void 0?arguments[1]:1e3;if(e=a&&r0&&arguments[0]!==void 0?arguments[0]:{},a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},i=arguments.length>2?arguments[2]:void 0;const r={};for(const l in e)r[l]=e[l];for(const l in a){const d=e[l],f=a[l];if(mc(d)&&mc(f)){r[l]=En(d,f,i);continue}if(Array.isArray(d)&&Array.isArray(f)&&i){r[l]=i(d,f);continue}r[l]=f}return r}function um(e){return e.map(a=>a.type===Ke?um(a.children):a).flat()}function ci(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(ci.cache.has(e))return ci.cache.get(e);const a=e.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return ci.cache.set(e,a),a}ci.cache=new Map;function Ms(e,a){if(!a||typeof a!="object")return[];if(Array.isArray(a))return a.map(i=>Ms(e,i)).flat(1);if(Array.isArray(a.children))return a.children.map(i=>Ms(e,i)).flat(1);if(a.component){if(Object.getOwnPropertySymbols(a.component.provides).includes(e))return[a.component];if(a.component.subTree)return Ms(e,a.component.subTree).flat(1)}return[]}var Or=new WeakMap,_i=new WeakMap;class ck{constructor(a){Xh(this,Or,{writable:!0,value:[]}),Xh(this,_i,{writable:!0,value:0}),this.size=a}push(a){Qa(this,Or)[Qa(this,_i)]=a,ik(this,_i,(Qa(this,_i)+1)%this.size)}values(){return Qa(this,Or).slice(Qa(this,_i)).concat(Qa(this,Or).slice(0,Qa(this,_i)))}}function uk(e){return"touches"in e?{clientX:e.touches[0].clientX,clientY:e.touches[0].clientY}:{clientX:e.clientX,clientY:e.clientY}}function Nu(e){const a=Gt({}),i=X(e);return vn(()=>{for(const r in i.value)a[r]=i.value[r]},{flush:"sync"}),ir(a)}function ao(e,a){return e.includes(a)}function dm(e){return e[2].toLowerCase()+e.slice(3)}const Qn=()=>[Function,Array];function Gh(e,a){return a="on"+pa(a),!!(e[a]||e[`${a}Once`]||e[`${a}Capture`]||e[`${a}OnceCapture`]||e[`${a}CaptureOnce`])}function Hu(e){for(var a=arguments.length,i=new Array(a>1?a-1:0),r=1;r1&&arguments[1]!==void 0?arguments[1]:!0;const i=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(r=>`${r}${a?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...e.querySelectorAll(i)]}function hm(e,a,i){let r,l=e.indexOf(document.activeElement);const d=a==="next"?1:-1;do l+=d,r=e[l];while((!r||r.offsetParent==null||!((i==null?void 0:i(r))??!0))&&l=0);return r}function io(e,a){var r,l,d,f;const i=Us(e);if(!a)(e===document.activeElement||!e.contains(document.activeElement))&&((r=i[0])==null||r.focus());else if(a==="first")(l=i[0])==null||l.focus();else if(a==="last")(d=i.at(-1))==null||d.focus();else if(typeof a=="number")(f=i[a])==null||f.focus();else{const p=hm(i,a);p?p.focus():io(e,a==="next"?"first":"last")}}function fm(){}function Ui(e,a){if(!(St&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${a})`)))return null;try{return!!e&&e.matches(a)}catch{return null}}const gm=["top","bottom"],dk=["start","end","left","right"];function xc(e,a){let[i,r]=e.split(" ");return r||(r=ao(gm,i)?"start":ao(dk,i)?"top":"center"),{side:yc(i,a),align:yc(r,a)}}function yc(e,a){return e==="start"?a?"right":"left":e==="end"?a?"left":"right":e}function El(e){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[e.side],align:e.align}}function Tl(e){return{side:e.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[e.align]}}function Uh(e){return{side:e.align,align:e.side}}function qh(e){return ao(gm,e.side)?"y":"x"}class Hi{constructor(a){let{x:i,y:r,width:l,height:d}=a;this.x=i,this.y=r,this.width=l,this.height=d}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function Kh(e,a){return{x:{before:Math.max(0,a.left-e.left),after:Math.max(0,e.right-a.right)},y:{before:Math.max(0,a.top-e.top),after:Math.max(0,e.bottom-a.bottom)}}}function Xu(e){const a=e.getBoundingClientRect(),i=getComputedStyle(e),r=i.transform;if(r){let l,d,f,p,y;if(r.startsWith("matrix3d("))l=r.slice(9,-1).split(/, /),d=+l[0],f=+l[5],p=+l[12],y=+l[13];else if(r.startsWith("matrix("))l=r.slice(7,-1).split(/, /),d=+l[0],f=+l[3],p=+l[4],y=+l[5];else return new Hi(a);const k=i.transformOrigin,C=a.x-p-(1-d)*parseFloat(k),A=a.y-y-(1-f)*parseFloat(k.slice(k.indexOf(" ")+1)),E=d?a.width/d:e.offsetWidth+1,_=f?a.height/f:e.offsetHeight+1;return new Hi({x:C,y:A,width:E,height:_})}else return new Hi(a)}function si(e,a,i){if(typeof e.animate>"u")return{finished:Promise.resolve()};let r;try{r=e.animate(a,i)}catch{return{finished:Promise.resolve()}}return typeof r.finished>"u"&&(r.finished=new Promise(l=>{r.onfinish=()=>{l(r)}})),r}const jr=new WeakMap;function hk(e,a){Object.keys(a).forEach(i=>{if(zu(i)){const r=dm(i),l=jr.get(e);if(a[i]==null)l==null||l.forEach(d=>{const[f,p]=d;f===r&&(e.removeEventListener(r,p),l.delete(d))});else if(!l||![...l].some(d=>d[0]===r&&d[1]===a[i])){e.addEventListener(r,a[i]);const d=l||new Set;d.add([r,a[i]]),jr.has(e)||jr.set(e,d)}}else a[i]==null?e.removeAttribute(i):e.setAttribute(i,a[i])})}function fk(e,a){Object.keys(a).forEach(i=>{if(zu(i)){const r=dm(i),l=jr.get(e);l==null||l.forEach(d=>{const[f,p]=d;f===r&&(e.removeEventListener(r,p),l.delete(d))})}else e.removeAttribute(i)})}const Vi=2.4,Zh=.2126729,Jh=.7151522,Qh=.072175,gk=.55,vk=.58,mk=.57,pk=.62,Fr=.03,ef=1.45,bk=5e-4,xk=1.25,yk=1.25,tf=.078,nf=12.82051282051282,Br=.06,af=.001;function sf(e,a){const i=(e.r/255)**Vi,r=(e.g/255)**Vi,l=(e.b/255)**Vi,d=(a.r/255)**Vi,f=(a.g/255)**Vi,p=(a.b/255)**Vi;let y=i*Zh+r*Jh+l*Qh,k=d*Zh+f*Jh+p*Qh;if(y<=Fr&&(y+=(Fr-y)**ef),k<=Fr&&(k+=(Fr-k)**ef),Math.abs(k-y)y){const A=(k**gk-y**vk)*xk;C=A-af?0:A>-tf?A-A*nf*Br:A+Br}return C*100}function wk(e,a){a=Array.isArray(a)?a.slice(0,-1).map(i=>`'${i}'`).join(", ")+` or '${a.at(-1)}'`:`'${a}'`}const so=.20689655172413793,Sk=e=>e>so**3?Math.cbrt(e):e/(3*so**2)+4/29,kk=e=>e>so?e**3:3*so**2*(e-4/29);function vm(e){const a=Sk,i=a(e[1]);return[116*i-16,500*(a(e[0]/.95047)-i),200*(i-a(e[2]/1.08883))]}function mm(e){const a=kk,i=(e[0]+16)/116;return[a(i+e[1]/500)*.95047,a(i),a(i-e[2]/200)*1.08883]}const Ck=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],Ak=e=>e<=.0031308?e*12.92:1.055*e**(1/2.4)-.055,Pk=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],Ek=e=>e<=.04045?e/12.92:((e+.055)/1.055)**2.4;function pm(e){const a=Array(3),i=Ak,r=Ck;for(let l=0;l<3;++l)a[l]=Math.round(en(i(r[l][0]*e[0]+r[l][1]*e[1]+r[l][2]*e[2]))*255);return{r:a[0],g:a[1],b:a[2]}}function Yu(e){let{r:a,g:i,b:r}=e;const l=[0,0,0],d=Ek,f=Pk;a=d(a/255),i=d(i/255),r=d(r/255);for(let p=0;p<3;++p)l[p]=f[p][0]*a+f[p][1]*i+f[p][2]*r;return l}function rf(e){return!!e&&/^(#|var\(--|(rgb|hsl)a?\()/.test(e)}const of=/^(?(?:rgb|hsl)a?)\((?.+)\)/,Tk={rgb:(e,a,i,r)=>({r:e,g:a,b:i,a:r}),rgba:(e,a,i,r)=>({r:e,g:a,b:i,a:r}),hsl:(e,a,i,r)=>lf({h:e,s:a,l:i,a:r}),hsla:(e,a,i,r)=>lf({h:e,s:a,l:i,a:r}),hsv:(e,a,i,r)=>ga({h:e,s:a,v:i,a:r}),hsva:(e,a,i,r)=>ga({h:e,s:a,v:i,a:r})};function Hn(e){if(typeof e=="number")return{r:(e&16711680)>>16,g:(e&65280)>>8,b:e&255};if(typeof e=="string"&&of.test(e)){const{groups:a}=e.match(of),{fn:i,values:r}=a,l=r.split(/,\s*/).map(d=>d.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(i)?parseFloat(d)/100:parseFloat(d));return Tk[i](...l)}else if(typeof e=="string"){let a=e.startsWith("#")?e.slice(1):e;return[3,4].includes(a.length)?a=a.split("").map(i=>i+i).join(""):[6,8].includes(a.length),Sm(a)}else if(typeof e=="object"){if(ii(e,["r","g","b"]))return e;if(ii(e,["h","s","l"]))return ga(Wu(e));if(ii(e,["h","s","v"]))return ga(e)}throw new TypeError(`Invalid color: ${e==null?e:String(e)||e.constructor.name} +Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function ga(e){const{h:a,s:i,v:r,a:l}=e,d=p=>{const y=(p+a/60)%6;return r-r*i*Math.max(Math.min(y,4-y,1),0)},f=[d(5),d(3),d(1)].map(p=>Math.round(p*255));return{r:f[0],g:f[1],b:f[2],a:l}}function lf(e){return ga(Wu(e))}function No(e){if(!e)return{h:0,s:1,v:1,a:1};const a=e.r/255,i=e.g/255,r=e.b/255,l=Math.max(a,i,r),d=Math.min(a,i,r);let f=0;l!==d&&(l===a?f=60*(0+(i-r)/(l-d)):l===i?f=60*(2+(r-a)/(l-d)):l===r&&(f=60*(4+(a-i)/(l-d)))),f<0&&(f=f+360);const p=l===0?0:(l-d)/l,y=[f,p,l];return{h:y[0],s:y[1],v:y[2],a:e.a}}function bm(e){const{h:a,s:i,v:r,a:l}=e,d=r-r*i/2,f=d===1||d===0?0:(r-d)/Math.min(d,1-d);return{h:a,s:f,l:d,a:l}}function Wu(e){const{h:a,s:i,l:r,a:l}=e,d=r+i*Math.min(r,1-r),f=d===0?0:2-2*r/d;return{h:a,s:f,v:d,a:l}}function xm(e){let{r:a,g:i,b:r,a:l}=e;return l===void 0?`rgb(${a}, ${i}, ${r})`:`rgba(${a}, ${i}, ${r}, ${l})`}function ym(e){return xm(ga(e))}function Dr(e){const a=Math.round(e).toString(16);return("00".substr(0,2-a.length)+a).toUpperCase()}function wm(e){let{r:a,g:i,b:r,a:l}=e;return`#${[Dr(a),Dr(i),Dr(r),l!==void 0?Dr(Math.round(l*255)):""].join("")}`}function Sm(e){e=Lk(e);let[a,i,r,l]=lk(e,2).map(d=>parseInt(d,16));return l=l===void 0?l:l/255,{r:a,g:i,b:r,a:l}}function Ik(e){const a=Sm(e);return No(a)}function km(e){return wm(ga(e))}function Lk(e){return e.startsWith("#")&&(e=e.slice(1)),e=e.replace(/([^0-9a-f])/gi,"F"),(e.length===3||e.length===4)&&(e=e.split("").map(a=>a+a).join("")),e.length!==6&&(e=$h($h(e,6),8,"F")),e}function _k(e,a){const i=vm(Yu(e));return i[0]=i[0]+a*10,pm(mm(i))}function Vk(e,a){const i=vm(Yu(e));return i[0]=i[0]-a*10,pm(mm(i))}function wc(e){const a=Hn(e);return Yu(a)[1]}function Rk(e,a){const i=wc(e),r=wc(a),l=Math.max(i,r),d=Math.min(i,r);return(l+.05)/(d+.05)}function Cm(e){const a=Math.abs(sf(Hn(0),Hn(e)));return Math.abs(sf(Hn(16777215),Hn(e)))>Math.min(a,50)?"#fff":"#000"}function me(e,a){return i=>Object.keys(e).reduce((r,l)=>{const f=typeof e[l]=="object"&&e[l]!=null&&!Array.isArray(e[l])?e[l]:{type:e[l]};return i&&l in i?r[l]={...f,default:i[l]}:r[l]=f,a&&!r[l].source&&(r[l].source=a),r},{})}const We=me({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component");function Vn(e){if(e._setup=e._setup??e.setup,!e.name)return e;if(e._setup){e.props=me(e.props??{},e.name)();const a=Object.keys(e.props);e.filterProps=function(r){return gi(r,a,["class","style"])},e.props._as=String,e.setup=function(r,l){const d=Gu();if(!d.value)return e._setup(r,l);const{props:f,provideSubDefaults:p}=Hk(r,r._as??e.name,d),y=e._setup(f,l);return p(),y}}return e}function Te(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;return a=>(e?Vn:xi)(a)}function Gn(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",i=arguments.length>2?arguments[2]:void 0;return Te()({name:i??pa(Sn(e.replace(/__/g,"-"))),props:{tag:{type:String,default:a},...We()},setup(r,l){let{slots:d}=l;return()=>{var f;return jn(r.tag,{class:[e,r.class],style:r.style},(f=d.default)==null?void 0:f.call(d))}}})}function Am(e){if(typeof e.getRootNode!="function"){for(;e.parentNode;)e=e.parentNode;return e!==document?null:document}const a=e.getRootNode();return a!==document&&a.getRootNode({composed:!0})!==document?null:a}const qs="cubic-bezier(0.4, 0, 0.2, 1)",Mk="cubic-bezier(0.0, 0, 0.2, 1)",Ok="cubic-bezier(0.4, 0, 1, 1)";function Wt(e,a){const i=ta();if(!i)throw new Error(`[Vuetify] ${e} ${a||"must be called from inside a setup function"}`);return i}function xa(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables";const a=Wt(e).type;return ci((a==null?void 0:a.aliasName)||(a==null?void 0:a.name))}let Pm=0,Gr=new WeakMap;function sn(){const e=Wt("getUid");if(Gr.has(e))return Gr.get(e);{const a=Pm++;return Gr.set(e,a),a}}sn.reset=()=>{Pm=0,Gr=new WeakMap};function $u(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;for(;e;){if(a?Fk(e):ju(e))return e;e=e.parentElement}return document.scrollingElement}function ro(e,a){const i=[];if(a&&e&&!a.contains(e))return i;for(;e&&(ju(e)&&i.push(e),e!==a);)e=e.parentElement;return i}function ju(e){if(!e||e.nodeType!==Node.ELEMENT_NODE)return!1;const a=window.getComputedStyle(e);return a.overflowY==="scroll"||a.overflowY==="auto"&&e.scrollHeight>e.clientHeight}function Fk(e){if(!e||e.nodeType!==Node.ELEMENT_NODE)return!1;const a=window.getComputedStyle(e);return["scroll","auto"].includes(a.overflowY)}function Bk(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Wt("injectSelf");const{provides:i}=a;if(i&&e in i)return i[e]}function Dk(e){for(;e;){if(window.getComputedStyle(e).position==="fixed")return!0;e=e.offsetParent}return!1}function Me(e){const a=Wt("useRender");a.render=e}const qi=Symbol.for("vuetify:defaults");function zk(e){return Re(e)}function Gu(){const e=ct(qi);if(!e)throw new Error("[Vuetify] Could not find defaults instance");return e}function Bt(e,a){const i=Gu(),r=Re(e),l=X(()=>{if(_t(a==null?void 0:a.disabled))return i.value;const f=_t(a==null?void 0:a.scoped),p=_t(a==null?void 0:a.reset),y=_t(a==null?void 0:a.root);if(r.value==null&&!(f||p||y))return i.value;let k=En(r.value,{prev:i.value});if(f)return k;if(p||y){const C=Number(p||1/0);for(let A=0;A<=C&&!(!k||!("prev"in k));A++)k=k.prev;return k&&typeof y=="string"&&y in k&&(k=En(En(k,{prev:k}),k[y])),k}return k.prev?En(k.prev,k):k});return Pt(qi,l),l}function Nk(e,a){var i,r;return typeof((i=e.props)==null?void 0:i[a])<"u"||typeof((r=e.props)==null?void 0:r[ci(a)])<"u"}function Hk(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},a=arguments.length>1?arguments[1]:void 0,i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Gu();const r=Wt("useDefaults");if(a=a??r.type.name??r.type.__name,!a)throw new Error("[Vuetify] Could not determine component name");const l=X(()=>{var y;return(y=i.value)==null?void 0:y[e._as??a]}),d=new Proxy(e,{get(y,k){var A,E,_,M;const C=Reflect.get(y,k);return k==="class"||k==="style"?[(A=l.value)==null?void 0:A[k],C].filter(F=>F!=null):typeof k=="string"&&!Nk(r.vnode,k)?((E=l.value)==null?void 0:E[k])??((M=(_=i.value)==null?void 0:_.global)==null?void 0:M[k])??C:C}}),f=Xe();vn(()=>{if(l.value){const y=Object.entries(l.value).filter(k=>{let[C]=k;return C.startsWith(C[0].toUpperCase())});f.value=y.length?Object.fromEntries(y):void 0}else f.value=void 0});function p(){const y=Bk(qi,r);Pt(qi,X(()=>f.value?En((y==null?void 0:y.value)??{},f.value):y==null?void 0:y.value))}return{props:d,provideSubDefaults:p}}const Ho=["sm","md","lg","xl","xxl"],Sc=Symbol.for("vuetify:display"),cf={mobileBreakpoint:"lg",thresholds:{xs:0,sm:600,md:960,lg:1280,xl:1920,xxl:2560}},Xk=function(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:cf;return En(cf,e)};function uf(e){return St&&!e?window.innerWidth:typeof e=="object"&&e.clientWidth||0}function df(e){return St&&!e?window.innerHeight:typeof e=="object"&&e.clientHeight||0}function hf(e){const a=St&&!e?window.navigator.userAgent:"ssr";function i(M){return!!a.match(M)}const r=i(/android/i),l=i(/iphone|ipad|ipod/i),d=i(/cordova/i),f=i(/electron/i),p=i(/chrome/i),y=i(/edge/i),k=i(/firefox/i),C=i(/opera/i),A=i(/win/i),E=i(/mac/i),_=i(/linux/i);return{android:r,ios:l,cordova:d,electron:f,chrome:p,edge:y,firefox:k,opera:C,win:A,mac:E,linux:_,touch:nk,ssr:a==="ssr"}}function Yk(e,a){const{thresholds:i,mobileBreakpoint:r}=Xk(e),l=Xe(df(a)),d=Xe(hf(a)),f=Gt({}),p=Xe(uf(a));function y(){l.value=df(),p.value=uf()}function k(){y(),d.value=hf()}return vn(()=>{const C=p.value=i.xxl,$=C?"xs":A?"sm":E?"md":_?"lg":M?"xl":"xxl",B=typeof r=="number"?r:i[r],L=p.valuejn(qu,{...e,class:"mdi"})},et=[String,Function,Object,Array],kc=Symbol.for("vuetify:icons"),Xo=me({icon:{type:et},tag:{type:String,required:!0}},"icon"),Cc=Te()({name:"VComponentIcon",props:Xo(),setup(e,a){let{slots:i}=a;return()=>{const r=e.icon;return R(e.tag,null,{default:()=>{var l;return[e.icon?R(r,null,null):(l=i.default)==null?void 0:l.call(i)]}})}}}),Uu=Vn({name:"VSvgIcon",inheritAttrs:!1,props:Xo(),setup(e,a){let{attrs:i}=a;return()=>R(e.tag,Ye(i,{style:null}),{default:()=>[R("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(e.icon)?e.icon.map(r=>Array.isArray(r)?R("path",{d:r[0],"fill-opacity":r[1]},null):R("path",{d:r},null)):R("path",{d:e.icon},null)])]})}}),jk=Vn({name:"VLigatureIcon",props:Xo(),setup(e){return()=>R(e.tag,null,{default:()=>[e.icon]})}}),qu=Vn({name:"VClassIcon",props:Xo(),setup(e){return()=>R(e.tag,{class:e.icon},null)}}),Gk={svg:{component:Uu},class:{component:qu}};function Uk(e){return En({defaultSet:"mdi",sets:{...Gk,mdi:$k},aliases:{...Wk,vuetify:["M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z",["M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z",.6]],"vuetify-outline":"svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z"}},e)}const qk=e=>{const a=ct(kc);if(!a)throw new Error("Missing Vuetify Icons provide!");return{iconData:X(()=>{var y;const r=_t(e);if(!r)return{component:Cc};let l=r;if(typeof l=="string"&&(l=l.trim(),l.startsWith("$")&&(l=(y=a.aliases)==null?void 0:y[l.slice(1)])),!l)throw new Error(`Could not find aliased icon "${r}"`);if(Array.isArray(l))return{component:Uu,icon:l};if(typeof l!="string")return{component:Cc,icon:l};const d=Object.keys(a.sets).find(k=>typeof l=="string"&&l.startsWith(`${k}:`)),f=d?l.slice(d.length+1):l;return{component:a.sets[d??a.defaultSet].component,icon:f}})}},Kk={badge:"Badge",open:"Open",close:"Close",dataIterator:{noResultsText:"No matching records found",loadingText:"Loading items..."},dataTable:{itemsPerPageText:"Rows per page:",ariaLabel:{sortDescending:"Sorted descending.",sortAscending:"Sorted ascending.",sortNone:"Not sorted.",activateNone:"Activate to remove sorting.",activateDescending:"Activate to sort descending.",activateAscending:"Activate to sort ascending."},sortBy:"Sort by"},dataFooter:{itemsPerPageText:"Items per page:",itemsPerPageAll:"All",nextPage:"Next page",prevPage:"Previous page",firstPage:"First page",lastPage:"Last page",pageText:"{0}-{1} of {2}"},dateRangeInput:{divider:"to"},datePicker:{ok:"OK",cancel:"Cancel",range:{title:"Select dates",header:"Enter dates"},title:"Select date",header:"Enter date",input:{placeholder:"Enter date"}},noDataText:"No data available",carousel:{prev:"Previous visual",next:"Next visual",ariaLabel:{delimiter:"Carousel slide {0} of {1}"}},calendar:{moreEvents:"{0} more"},input:{clear:"Clear {0}",prependAction:"{0} prepended action",appendAction:"{0} appended action",otp:"Please enter OTP character {0}"},fileInput:{counter:"{0} files",counterSize:"{0} files ({1} in total)"},timePicker:{am:"AM",pm:"PM"},pagination:{ariaLabel:{root:"Pagination Navigation",next:"Next page",previous:"Previous page",page:"Go to page {0}",currentPage:"Page {0}, Current page",first:"First page",last:"Last page"}},stepper:{next:"Next",prev:"Previous"},rating:{ariaLabel:{item:"Rating {0} of {1}"}},loading:"Loading...",infiniteScroll:{loadMore:"Load more",empty:"No more"}},Zk={af:!1,ar:!0,bg:!1,ca:!1,ckb:!1,cs:!1,de:!1,el:!1,en:!1,es:!1,et:!1,fa:!0,fi:!1,fr:!1,hr:!1,hu:!1,he:!0,id:!1,it:!1,ja:!1,ko:!1,lv:!1,lt:!1,nl:!1,no:!1,pl:!1,pt:!1,ro:!1,ru:!1,sk:!1,sl:!1,srCyrl:!1,srLatn:!1,sv:!1,th:!1,tr:!1,az:!1,uk:!1,vi:!1,zhHans:!1,zhHant:!1};function Ya(e,a){let i;function r(){i=Ji(),i.run(()=>a.length?a(()=>{i==null||i.stop(),r()}):a())}He(e,l=>{l&&!i?r():l||(i==null||i.stop(),i=void 0)},{immediate:!0}),nn(()=>{i==null||i.stop()})}function tt(e,a,i){let r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:A=>A,l=arguments.length>4&&arguments[4]!==void 0?arguments[4]:A=>A;const d=Wt("useProxiedModel"),f=Re(e[a]!==void 0?e[a]:i),p=ci(a),k=X(p!==a?()=>{var A,E,_,M;return e[a],!!(((A=d.vnode.props)!=null&&A.hasOwnProperty(a)||(E=d.vnode.props)!=null&&E.hasOwnProperty(p))&&((_=d.vnode.props)!=null&&_.hasOwnProperty(`onUpdate:${a}`)||(M=d.vnode.props)!=null&&M.hasOwnProperty(`onUpdate:${p}`)))}:()=>{var A,E;return e[a],!!((A=d.vnode.props)!=null&&A.hasOwnProperty(a)&&((E=d.vnode.props)!=null&&E.hasOwnProperty(`onUpdate:${a}`)))});Ya(()=>!k.value,()=>{He(()=>e[a],A=>{f.value=A})});const C=X({get(){const A=e[a];return r(k.value?A:f.value)},set(A){const E=l(A),_=nt(k.value?e[a]:f.value);_===E||r(_)===A||(f.value=E,d==null||d.emit(`update:${a}`,E))}});return Object.defineProperty(C,"externalValue",{get:()=>k.value?e[a]:f.value}),C}const ff="$vuetify.",gf=(e,a)=>e.replace(/\{(\d+)\}/g,(i,r)=>String(a[+r])),Em=(e,a,i)=>function(r){for(var l=arguments.length,d=new Array(l>1?l-1:0),f=1;fnew Intl.NumberFormat([e.value,a.value],r).format(i)}function Il(e,a,i){const r=tt(e,a,e[a]??i.value);return r.value=e[a]??i.value,He(i,l=>{e[a]==null&&(r.value=i.value)}),r}function Im(e){return a=>{const i=Il(a,"locale",e.current),r=Il(a,"fallback",e.fallback),l=Il(a,"messages",e.messages);return{name:"vuetify",current:i,fallback:r,messages:l,t:Em(i,r,l),n:Tm(i,r),provide:Im({current:i,fallback:r,messages:l})}}}function Jk(e){const a=Xe((e==null?void 0:e.locale)??"en"),i=Xe((e==null?void 0:e.fallback)??"en"),r=Re({en:Kk,...e==null?void 0:e.messages});return{name:"vuetify",current:a,fallback:i,messages:r,t:Em(a,i,r),n:Tm(a,i),provide:Im({current:a,fallback:i,messages:r})}}const Ki=Symbol.for("vuetify:locale");function Qk(e){return e.name!=null}function eC(e){const a=e!=null&&e.adapter&&Qk(e==null?void 0:e.adapter)?e==null?void 0:e.adapter:Jk(e),i=nC(a,e);return{...a,...i}}function Rn(){const e=ct(Ki);if(!e)throw new Error("[Vuetify] Could not find injected locale instance");return e}function tC(e){const a=ct(Ki);if(!a)throw new Error("[Vuetify] Could not find injected locale instance");const i=a.provide(e),r=aC(i,a.rtl,e),l={...i,...r};return Pt(Ki,l),l}function nC(e,a){const i=Re((a==null?void 0:a.rtl)??Zk),r=X(()=>i.value[e.current.value]??!1);return{isRtl:r,rtl:i,rtlClasses:X(()=>`v-locale--is-${r.value?"rtl":"ltr"}`)}}function aC(e,a,i){const r=X(()=>i.rtl??a.value[e.current.value]??!1);return{isRtl:r,rtl:a,rtlClasses:X(()=>`v-locale--is-${r.value?"rtl":"ltr"}`)}}function $t(){const e=ct(Ki);if(!e)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:e.isRtl,rtlClasses:e.rtlClasses}}const Ks=Symbol.for("vuetify:theme"),dt=me({theme:String},"theme"),bs={defaultTheme:"light",variations:{colors:[],lighten:0,darken:0},themes:{light:{dark:!1,colors:{background:"#FFFFFF",surface:"#FFFFFF","surface-variant":"#424242","on-surface-variant":"#EEEEEE",primary:"#6200EE","primary-darken-1":"#3700B3",secondary:"#03DAC6","secondary-darken-1":"#018786",error:"#B00020",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#000000","border-opacity":.12,"high-emphasis-opacity":.87,"medium-emphasis-opacity":.6,"disabled-opacity":.38,"idle-opacity":.04,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.12,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#F5F5F5","theme-on-code":"#000000"}},dark:{dark:!0,colors:{background:"#121212",surface:"#212121","surface-variant":"#BDBDBD","on-surface-variant":"#424242",primary:"#BB86FC","primary-darken-1":"#3700B3",secondary:"#03DAC5","secondary-darken-1":"#03DAC5",error:"#CF6679",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#FFFFFF","border-opacity":.12,"high-emphasis-opacity":1,"medium-emphasis-opacity":.7,"disabled-opacity":.5,"idle-opacity":.1,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.16,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#343434","theme-on-code":"#CCCCCC"}}}};function iC(){var i,r;let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:bs;if(!e)return{...bs,isDisabled:!0};const a={};for(const[l,d]of Object.entries(e.themes??{})){const f=d.dark||l==="dark"?(i=bs.themes)==null?void 0:i.dark:(r=bs.themes)==null?void 0:r.light;a[l]=En(f,d)}return En(bs,{...e,themes:a})}function sC(e){const a=iC(e),i=Re(a.defaultTheme),r=Re(a.themes),l=X(()=>{const C={};for(const[A,E]of Object.entries(r.value)){const _=C[A]={...E,colors:{...E.colors}};if(a.variations)for(const M of a.variations.colors){const F=_.colors[M];if(F)for(const $ of["lighten","darken"]){const B=$==="lighten"?_k:Vk;for(const L of la(a.variations[$],1))_.colors[`${M}-${$}-${L}`]=wm(B(Hn(F),L))}}for(const M of Object.keys(_.colors)){if(/^on-[a-z]/.test(M)||_.colors[`on-${M}`])continue;const F=`on-${M}`,$=Hn(_.colors[M]);_.colors[F]=Cm($)}}return C}),d=X(()=>l.value[i.value]),f=X(()=>{const C=[];d.value.dark&&ei(C,":root",["color-scheme: dark"]),ei(C,":root",vf(d.value));for(const[M,F]of Object.entries(l.value))ei(C,`.v-theme--${M}`,[`color-scheme: ${F.dark?"dark":"normal"}`,...vf(F)]);const A=[],E=[],_=new Set(Object.values(l.value).flatMap(M=>Object.keys(M.colors)));for(const M of _)/^on-[a-z]/.test(M)?ei(E,`.${M}`,[`color: rgb(var(--v-theme-${M})) !important`]):(ei(A,`.bg-${M}`,[`--v-theme-overlay-multiplier: var(--v-theme-${M}-overlay-multiplier)`,`background-color: rgb(var(--v-theme-${M})) !important`,`color: rgb(var(--v-theme-on-${M})) !important`]),ei(E,`.text-${M}`,[`color: rgb(var(--v-theme-${M})) !important`]),ei(E,`.border-${M}`,[`--v-border-color: var(--v-theme-${M})`]));return C.push(...A,...E),C.map((M,F)=>F===0?M:` ${M}`).join("")});function p(){return{style:[{children:f.value,id:"vuetify-theme-stylesheet",nonce:a.cspNonce||!1}]}}function y(C){if(a.isDisabled)return;const A=C._context.provides.usehead;if(A)if(A.push){const E=A.push(p);St&&He(f,()=>{E.patch(p)})}else St?(A.addHeadObjs(X(p)),vn(()=>A.updateDOM())):A.addHeadObjs(p());else{let _=function(){if(typeof document<"u"&&!E){const M=document.createElement("style");M.type="text/css",M.id="vuetify-theme-stylesheet",a.cspNonce&&M.setAttribute("nonce",a.cspNonce),E=M,document.head.appendChild(E)}E&&(E.innerHTML=f.value)},E=St?document.getElementById("vuetify-theme-stylesheet"):null;St?He(f,_,{immediate:!0}):_()}}const k=X(()=>a.isDisabled?void 0:`v-theme--${i.value}`);return{install:y,isDisabled:a.isDisabled,name:i,themes:r,current:d,computedThemes:l,themeClasses:k,styles:f,global:{name:i,current:d}}}function vt(e){Wt("provideTheme");const a=ct(Ks,null);if(!a)throw new Error("Could not find Vuetify theme injection");const i=X(()=>e.theme??(a==null?void 0:a.name.value)),r=X(()=>a.isDisabled?void 0:`v-theme--${i.value}`),l={...a,name:i,themeClasses:r};return Pt(Ks,l),l}function Lm(){Wt("useTheme");const e=ct(Ks,null);if(!e)throw new Error("Could not find Vuetify theme injection");return e}function ei(e,a,i){e.push(`${a} { +`,...i.map(r=>` ${r}; +`),`} +`)}function vf(e){const a=e.dark?2:1,i=e.dark?1:2,r=[];for(const[l,d]of Object.entries(e.colors)){const f=Hn(d);r.push(`--v-theme-${l}: ${f.r},${f.g},${f.b}`),l.startsWith("on-")||r.push(`--v-theme-${l}-overlay-multiplier: ${wc(d)>.18?a:i}`)}for(const[l,d]of Object.entries(e.variables)){const f=typeof d=="string"&&d.startsWith("#")?Hn(d):void 0,p=f?`${f.r}, ${f.g}, ${f.b}`:void 0;r.push(`--v-${l}: ${p??d}`)}return r}const Ac={"001":1,AD:1,AE:6,AF:6,AG:0,AI:1,AL:1,AM:1,AN:1,AR:1,AS:0,AT:1,AU:1,AX:1,AZ:1,BA:1,BD:0,BE:1,BG:1,BH:6,BM:1,BN:1,BR:0,BS:0,BT:0,BW:0,BY:1,BZ:0,CA:0,CH:1,CL:1,CM:1,CN:1,CO:0,CR:1,CY:1,CZ:1,DE:1,DJ:6,DK:1,DM:0,DO:0,DZ:6,EC:1,EE:1,EG:6,ES:1,ET:0,FI:1,FJ:1,FO:1,FR:1,GB:1,"GB-alt-variant":0,GE:1,GF:1,GP:1,GR:1,GT:0,GU:0,HK:0,HN:0,HR:1,HU:1,ID:0,IE:1,IL:0,IN:0,IQ:6,IR:6,IS:1,IT:1,JM:0,JO:6,JP:0,KE:0,KG:1,KH:0,KR:0,KW:6,KZ:1,LA:0,LB:1,LI:1,LK:1,LT:1,LU:1,LV:1,LY:6,MC:1,MD:1,ME:1,MH:0,MK:1,MM:0,MN:1,MO:0,MQ:1,MT:0,MV:5,MX:0,MY:1,MZ:0,NI:0,NL:1,NO:1,NP:0,NZ:1,OM:6,PA:0,PE:0,PH:0,PK:0,PL:1,PR:0,PT:0,PY:0,QA:6,RE:1,RO:1,RS:1,RU:1,SA:0,SD:6,SE:1,SG:0,SI:1,SK:1,SM:1,SV:0,SY:6,TH:0,TJ:1,TM:1,TR:1,TT:0,TW:0,UA:1,UM:0,US:0,UY:1,UZ:1,VA:1,VE:0,VI:0,VN:1,WS:0,XK:1,YE:0,ZA:0,ZW:0};function rC(e,a){const i=[];let r=[];const l=_m(e),d=Vm(e),f=l.getDay()-Ac[a.slice(-2).toUpperCase()],p=d.getDay()-Ac[a.slice(-2).toUpperCase()];for(let y=0;y{const r=new Date(mf);return r.setDate(mf.getDate()+a+i),new Intl.DateTimeFormat(e,{weekday:"narrow"}).format(r)})}function dC(e,a,i){const r=new Date(e);let l={};switch(a){case"fullDateWithWeekday":l={weekday:"long",day:"numeric",month:"long",year:"numeric"};break;case"normalDateWithWeekday":l={weekday:"short",day:"numeric",month:"short"};break;case"keyboardDate":l={};break;case"monthAndDate":l={month:"long",day:"numeric"};break;case"monthAndYear":l={month:"long",year:"numeric"};break;case"dayOfMonth":l={day:"numeric"};break;default:l={timeZone:"UTC",timeZoneName:"short"}}return new Intl.DateTimeFormat(i,l).format(r)}function hC(e,a){const i=new Date(e);return i.setDate(i.getDate()+a),i}function fC(e,a){const i=new Date(e);return i.setMonth(i.getMonth()+a),i}function gC(e){return e.getFullYear()}function vC(e){return e.getMonth()}function mC(e){return new Date(e.getFullYear(),0,1)}function pC(e){return new Date(e.getFullYear(),11,31)}function bC(e,a){return Pc(e,a[0])&&yC(e,a[1])}function xC(e){const a=new Date(e);return a instanceof Date&&!isNaN(a.getTime())}function Pc(e,a){return e.getTime()>a.getTime()}function yC(e,a){return e.getTime()1&&arguments[1]!==void 0?arguments[1]:"content";const i=Re(),r=Re();if(St){const l=new ResizeObserver(d=>{e==null||e(d,l),d.length&&(a==="content"?r.value=d[0].contentRect:r.value=d[0].target.getBoundingClientRect())});qt(()=>{l.disconnect()}),He(i,(d,f)=>{f&&(l.unobserve(pc(f)),r.value=void 0),d&&l.observe(pc(d))},{flush:"post"})}return{resizeRef:i,contentRect:ts(r)}}const oo=Symbol.for("vuetify:layout"),Rm=Symbol.for("vuetify:layout-item"),xf=1e3,Mm=me({overlaps:{type:Array,default:()=>[]},fullHeight:Boolean},"layout"),as=me({name:{type:String},order:{type:[Number,String],default:0},absolute:Boolean},"layout-item");function EC(){const e=ct(oo);if(!e)throw new Error("[Vuetify] Could not find injected layout");return{getLayoutItem:e.getLayoutItem,mainRect:e.mainRect,mainStyles:e.mainStyles}}function is(e){const a=ct(oo);if(!a)throw new Error("[Vuetify] Could not find injected layout");const i=e.id??`layout-item-${sn()}`,r=Wt("useLayoutItem");Pt(Rm,{id:i});const l=Xe(!1);pu(()=>l.value=!0),mu(()=>l.value=!1);const{layoutItemStyles:d,layoutItemScrimStyles:f}=a.register(r,{...e,active:X(()=>l.value?!1:e.active.value),id:i});return qt(()=>a.unregister(i)),{layoutItemStyles:d,layoutRect:a.layoutRect,layoutItemScrimStyles:f}}const TC=(e,a,i,r)=>{let l={top:0,left:0,right:0,bottom:0};const d=[{id:"",layer:{...l}}];for(const f of e){const p=a.get(f),y=i.get(f),k=r.get(f);if(!p||!y||!k)continue;const C={...l,[p.value]:parseInt(l[p.value],10)+(k.value?parseInt(y.value,10):0)};d.push({id:f,layer:C}),l=C}return d};function Om(e){const a=ct(oo,null),i=X(()=>a?a.rootZIndex.value-100:xf),r=Re([]),l=Gt(new Map),d=Gt(new Map),f=Gt(new Map),p=Gt(new Map),y=Gt(new Map),{resizeRef:k,contentRect:C}=ea(),A=X(()=>{const J=new Map,ee=e.overlaps??[];for(const W of ee.filter(j=>j.includes(":"))){const[j,Q]=W.split(":");if(!r.value.includes(j)||!r.value.includes(Q))continue;const ie=l.get(j),ne=l.get(Q),oe=d.get(j),le=d.get(Q);!ie||!ne||!oe||!le||(J.set(Q,{position:ie.value,amount:parseInt(oe.value,10)}),J.set(j,{position:ne.value,amount:-parseInt(le.value,10)}))}return J}),E=X(()=>{const J=[...new Set([...f.values()].map(W=>W.value))].sort((W,j)=>W-j),ee=[];for(const W of J){const j=r.value.filter(Q=>{var ie;return((ie=f.get(Q))==null?void 0:ie.value)===W});ee.push(...j)}return TC(ee,l,d,p)}),_=X(()=>!Array.from(y.values()).some(J=>J.value)),M=X(()=>E.value[E.value.length-1].layer),F=X(()=>({"--v-layout-left":$e(M.value.left),"--v-layout-right":$e(M.value.right),"--v-layout-top":$e(M.value.top),"--v-layout-bottom":$e(M.value.bottom),..._.value?void 0:{transition:"none"}})),$=X(()=>E.value.slice(1).map((J,ee)=>{let{id:W}=J;const{layer:j}=E.value[ee],Q=d.get(W),ie=l.get(W);return{id:W,...j,size:Number(Q.value),position:ie.value}})),B=J=>$.value.find(ee=>ee.id===J),L=Wt("createLayout"),q=Xe(!1);zt(()=>{q.value=!0}),Pt(oo,{register:(J,ee)=>{let{id:W,order:j,position:Q,layoutSize:ie,elementSize:ne,active:oe,disableTransitions:le,absolute:Ce}=ee;f.set(W,j),l.set(W,Q),d.set(W,ie),p.set(W,oe),le&&y.set(W,le);const fe=Ms(Rm,L==null?void 0:L.vnode).indexOf(J);fe>-1?r.value.splice(fe,0,W):r.value.push(W);const he=X(()=>$.value.findIndex(Fe=>Fe.id===W)),Se=X(()=>i.value+E.value.length*2-he.value*2),Ee=X(()=>{const Fe=Q.value==="left"||Q.value==="right",Ze=Q.value==="right",Je=Q.value==="bottom",ze={[Q.value]:0,zIndex:Se.value,transform:`translate${Fe?"X":"Y"}(${(oe.value?0:-110)*(Ze||Je?-1:1)}%)`,position:Ce.value||i.value!==xf?"absolute":"fixed",..._.value?void 0:{transition:"none"}};if(!q.value)return ze;const ue=$.value[he.value];if(!ue)throw new Error(`[Vuetify] Could not find layout item "${W}"`);const de=A.value.get(W);return de&&(ue[de.position]+=de.amount),{...ze,height:Fe?`calc(100% - ${ue.top}px - ${ue.bottom}px)`:ne.value?`${ne.value}px`:void 0,left:Ze?void 0:`${ue.left}px`,right:Ze?`${ue.right}px`:void 0,top:Q.value!=="bottom"?`${ue.top}px`:void 0,bottom:Q.value!=="top"?`${ue.bottom}px`:void 0,width:Fe?ne.value?`${ne.value}px`:void 0:`calc(100% - ${ue.left}px - ${ue.right}px)`}}),De=X(()=>({zIndex:Se.value-1}));return{layoutItemStyles:Ee,layoutItemScrimStyles:De,zIndex:Se}},unregister:J=>{f.delete(J),l.delete(J),d.delete(J),p.delete(J),y.delete(J),r.value=r.value.filter(ee=>ee!==J)},mainRect:M,mainStyles:F,getLayoutItem:B,items:$,layoutRect:C,rootZIndex:i});const Y=X(()=>["v-layout",{"v-layout--full-height":e.fullHeight}]),H=X(()=>({zIndex:i.value,position:a?"relative":void 0,overflow:a?"hidden":void 0}));return{layoutClasses:Y,layoutStyles:H,getLayoutItem:B,items:$,layoutRect:C,layoutRef:k}}function Fm(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const{blueprint:a,...i}=e,r=En(a,i),{aliases:l={},components:d={},directives:f={}}=r,p=zk(r.defaults),y=Yk(r.display,r.ssr),k=sC(r.theme),C=Uk(r.icons),A=eC(r.locale),E=PC(r.date);return{install:M=>{for(const F in f)M.directive(F,f[F]);for(const F in d)M.component(F,d[F]);for(const F in l)M.component(F,Vn({...l[F],name:F,aliasName:l[F].name}));if(k.install(M),M.provide(qi,p),M.provide(Sc,y),M.provide(Ks,k),M.provide(kc,C),M.provide(Ki,A),M.provide(bf,E),St&&r.ssr)if(M.$nuxt)M.$nuxt.hook("app:suspense:resolve",()=>{y.update()});else{const{mount:F}=M;M.mount=function(){const $=F(...arguments);return gt(()=>y.update()),M.mount=F,$}}sn.reset(),M.mixin({computed:{$vuetify(){return Gt({defaults:Ri.call(this,qi),display:Ri.call(this,Sc),theme:Ri.call(this,Ks),icons:Ri.call(this,kc),locale:Ri.call(this,Ki),date:Ri.call(this,bf)})}}})},defaults:p,display:y,theme:k,icons:C,locale:A,date:E}}const IC="3.3.14";Fm.version=IC;function Ri(e){var r,l;const a=this.$,i=((r=a.parent)==null?void 0:r.provides)??((l=a.vnode.appContext)==null?void 0:l.provides);if(i&&e in i)return i[e]}const LC=me({...We(),...Mm({fullHeight:!0}),...dt()},"VApp"),_C=Te()({name:"VApp",props:LC(),setup(e,a){let{slots:i}=a;const r=vt(e),{layoutClasses:l,layoutStyles:d,getLayoutItem:f,items:p,layoutRef:y}=Om(e),{rtlClasses:k}=$t();return Me(()=>{var C;return R("div",{ref:y,class:["v-application",r.themeClasses.value,l.value,k.value,e.class],style:[d.value,e.style]},[R("div",{class:"v-application__wrap"},[(C=i.default)==null?void 0:C.call(i)])])}),{getLayoutItem:f,items:p,theme:r}}});const at=me({tag:{type:String,default:"div"}},"tag"),Bm=me({text:String,...We(),...at()},"VToolbarTitle"),Ku=Te()({name:"VToolbarTitle",props:Bm(),setup(e,a){let{slots:i}=a;return Me(()=>{const r=!!(i.default||i.text||e.text);return R(e.tag,{class:["v-toolbar-title",e.class],style:e.style},{default:()=>{var l;return[r&&R("div",{class:"v-toolbar-title__placeholder"},[i.text?i.text():e.text,(l=i.default)==null?void 0:l.call(i)])]}})}),{}}}),VC=me({disabled:Boolean,group:Boolean,hideOnLeave:Boolean,leaveAbsolute:Boolean,mode:String,origin:String},"transition");function kn(e,a,i){return Te()({name:e,props:VC({mode:i,origin:a}),setup(r,l){let{slots:d}=l;const f={onBeforeEnter(p){r.origin&&(p.style.transformOrigin=r.origin)},onLeave(p){if(r.leaveAbsolute){const{offsetTop:y,offsetLeft:k,offsetWidth:C,offsetHeight:A}=p;p._transitionInitialStyles={position:p.style.position,top:p.style.top,left:p.style.left,width:p.style.width,height:p.style.height},p.style.position="absolute",p.style.top=`${y}px`,p.style.left=`${k}px`,p.style.width=`${C}px`,p.style.height=`${A}px`}r.hideOnLeave&&p.style.setProperty("display","none","important")},onAfterLeave(p){if(r.leaveAbsolute&&(p!=null&&p._transitionInitialStyles)){const{position:y,top:k,left:C,width:A,height:E}=p._transitionInitialStyles;delete p._transitionInitialStyles,p.style.position=y||"",p.style.top=k||"",p.style.left=C||"",p.style.width=A||"",p.style.height=E||""}}};return()=>{const p=r.group?hv:Wn;return jn(p,{name:r.disabled?"":e,css:!r.disabled,...r.group?void 0:{mode:r.mode},...r.disabled?{}:f},d.default)}}})}function Dm(e,a){let i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"in-out";return Te()({name:e,props:{mode:{type:String,default:i},disabled:Boolean},setup(r,l){let{slots:d}=l;return()=>jn(Wn,{name:r.disabled?"":e,css:!r.disabled,...r.disabled?{}:a},d.default)}})}function zm(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";const i=(arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1)?"width":"height",r=Sn(`offset-${i}`);return{onBeforeEnter(f){f._parent=f.parentNode,f._initialStyle={transition:f.style.transition,overflow:f.style.overflow,[i]:f.style[i]}},onEnter(f){const p=f._initialStyle;f.style.setProperty("transition","none","important"),f.style.overflow="hidden";const y=`${f[r]}px`;f.style[i]="0",f.offsetHeight,f.style.transition=p.transition,e&&f._parent&&f._parent.classList.add(e),requestAnimationFrame(()=>{f.style[i]=y})},onAfterEnter:d,onEnterCancelled:d,onLeave(f){f._initialStyle={transition:"",overflow:f.style.overflow,[i]:f.style[i]},f.style.overflow="hidden",f.style[i]=`${f[r]}px`,f.offsetHeight,requestAnimationFrame(()=>f.style[i]="0")},onAfterLeave:l,onLeaveCancelled:l};function l(f){e&&f._parent&&f._parent.classList.remove(e),d(f)}function d(f){const p=f._initialStyle[i];f.style.overflow=f._initialStyle.overflow,p!=null&&(f.style[i]=p),delete f._initialStyle}}const RC=me({target:Object},"v-dialog-transition"),Yo=Te()({name:"VDialogTransition",props:RC(),setup(e,a){let{slots:i}=a;const r={onBeforeEnter(l){l.style.pointerEvents="none",l.style.visibility="hidden"},async onEnter(l,d){var E;await new Promise(_=>requestAnimationFrame(_)),await new Promise(_=>requestAnimationFrame(_)),l.style.visibility="";const{x:f,y:p,sx:y,sy:k,speed:C}=wf(e.target,l),A=si(l,[{transform:`translate(${f}px, ${p}px) scale(${y}, ${k})`,opacity:0},{}],{duration:225*C,easing:Mk});(E=yf(l))==null||E.forEach(_=>{si(_,[{opacity:0},{opacity:0,offset:.33},{}],{duration:225*2*C,easing:qs})}),A.finished.then(()=>d())},onAfterEnter(l){l.style.removeProperty("pointer-events")},onBeforeLeave(l){l.style.pointerEvents="none"},async onLeave(l,d){var E;await new Promise(_=>requestAnimationFrame(_));const{x:f,y:p,sx:y,sy:k,speed:C}=wf(e.target,l);si(l,[{},{transform:`translate(${f}px, ${p}px) scale(${y}, ${k})`,opacity:0}],{duration:125*C,easing:Ok}).finished.then(()=>d()),(E=yf(l))==null||E.forEach(_=>{si(_,[{},{opacity:0,offset:.2},{opacity:0}],{duration:125*2*C,easing:qs})})},onAfterLeave(l){l.style.removeProperty("pointer-events")}};return()=>e.target?R(Wn,Ye({name:"dialog-transition"},r,{css:!1}),i):R(Wn,{name:"dialog-transition"},i)}});function yf(e){var i;const a=(i=e.querySelector(":scope > .v-card, :scope > .v-sheet, :scope > .v-list"))==null?void 0:i.children;return a&&[...a]}function wf(e,a){const i=e.getBoundingClientRect(),r=Xu(a),[l,d]=getComputedStyle(a).transformOrigin.split(" ").map(B=>parseFloat(B)),[f,p]=getComputedStyle(a).getPropertyValue("--v-overlay-anchor-origin").split(" ");let y=i.left+i.width/2;f==="left"||p==="left"?y-=i.width/2:(f==="right"||p==="right")&&(y+=i.width/2);let k=i.top+i.height/2;f==="top"||p==="top"?k-=i.height/2:(f==="bottom"||p==="bottom")&&(k+=i.height/2);const C=i.width/r.width,A=i.height/r.height,E=Math.max(1,C,A),_=C/E||0,M=A/E||0,F=r.width*r.height/(window.innerWidth*window.innerHeight),$=F>.12?Math.min(1.5,(F-.12)*10+1):1;return{x:y-(l+r.left),y:k-(d+r.top),sx:_,sy:M,speed:$}}const MC=kn("fab-transition","center center","out-in"),OC=kn("dialog-bottom-transition"),FC=kn("dialog-top-transition"),Ec=kn("fade-transition"),Zu=kn("scale-transition"),BC=kn("scroll-x-transition"),DC=kn("scroll-x-reverse-transition"),zC=kn("scroll-y-transition"),NC=kn("scroll-y-reverse-transition"),HC=kn("slide-x-transition"),XC=kn("slide-x-reverse-transition"),Ju=kn("slide-y-transition"),YC=kn("slide-y-reverse-transition"),Wo=Dm("expand-transition",zm()),Qu=Dm("expand-x-transition",zm("",!0)),WC=me({defaults:Object,disabled:Boolean,reset:[Number,String],root:[Boolean,String],scoped:Boolean},"VDefaultsProvider"),bt=Te(!1)({name:"VDefaultsProvider",props:WC(),setup(e,a){let{slots:i}=a;const{defaults:r,disabled:l,reset:d,root:f,scoped:p}=ir(e);return Bt(r,{reset:d,root:f,scoped:p,disabled:l}),()=>{var y;return(y=i.default)==null?void 0:y.call(i)}}});const Mn=me({height:[Number,String],maxHeight:[Number,String],maxWidth:[Number,String],minHeight:[Number,String],minWidth:[Number,String],width:[Number,String]},"dimension");function On(e){return{dimensionStyles:X(()=>({height:$e(e.height),maxHeight:$e(e.maxHeight),maxWidth:$e(e.maxWidth),minHeight:$e(e.minHeight),minWidth:$e(e.minWidth),width:$e(e.width)}))}}function $C(e){return{aspectStyles:X(()=>{const a=Number(e.aspectRatio);return a?{paddingBottom:String(1/a*100)+"%"}:void 0})}}const Nm=me({aspectRatio:[String,Number],contentClass:String,inline:Boolean,...We(),...Mn()},"VResponsive"),Tc=Te()({name:"VResponsive",props:Nm(),setup(e,a){let{slots:i}=a;const{aspectStyles:r}=$C(e),{dimensionStyles:l}=On(e);return Me(()=>{var d;return R("div",{class:["v-responsive",{"v-responsive--inline":e.inline},e.class],style:[l.value,e.style]},[R("div",{class:"v-responsive__sizer",style:r.value},null),(d=i.additional)==null?void 0:d.call(i),i.default&&R("div",{class:["v-responsive__content",e.contentClass]},[i.default()])])}),{}}}),ya=me({transition:{type:[Boolean,String,Object],default:"fade-transition",validator:e=>e!==!0}},"transition"),Xn=(e,a)=>{let{slots:i}=a;const{transition:r,disabled:l,...d}=e,{component:f=Wn,...p}=typeof r=="object"?r:{};return jn(f,Ye(typeof r=="string"?{name:l?"":r}:p,d,{disabled:l}),i)};function jC(e,a){if(!Du)return;const i=a.modifiers||{},r=a.value,{handler:l,options:d}=typeof r=="object"?r:{handler:r,options:{}},f=new IntersectionObserver(function(){var A;let p=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],y=arguments.length>1?arguments[1]:void 0;const k=(A=e._observe)==null?void 0:A[a.instance.$.uid];if(!k)return;const C=p.some(E=>E.isIntersecting);l&&(!i.quiet||k.init)&&(!i.once||C||k.init)&&l(C,p,y),C&&i.once?Hm(e,a):k.init=!0},d);e._observe=Object(e._observe),e._observe[a.instance.$.uid]={init:!1,observer:f},f.observe(e)}function Hm(e,a){var r;const i=(r=e._observe)==null?void 0:r[a.instance.$.uid];i&&(i.observer.unobserve(e),delete e._observe[a.instance.$.uid])}const Xm={mounted:jC,unmounted:Hm},$o=Xm,Ym=me({alt:String,cover:Boolean,eager:Boolean,gradient:String,lazySrc:String,options:{type:Object,default:()=>({root:void 0,rootMargin:void 0,threshold:void 0})},sizes:String,src:{type:[String,Object],default:""},srcset:String,...Nm(),...We(),...ya()},"VImg"),vi=Te()({name:"VImg",directives:{intersect:$o},props:Ym(),emits:{loadstart:e=>!0,load:e=>!0,error:e=>!0},setup(e,a){let{emit:i,slots:r}=a;const l=Xe(""),d=Re(),f=Xe(e.eager?"loading":"idle"),p=Xe(),y=Xe(),k=X(()=>e.src&&typeof e.src=="object"?{src:e.src.src,srcset:e.srcset||e.src.srcset,lazySrc:e.lazySrc||e.src.lazySrc,aspect:Number(e.aspectRatio||e.src.aspect||0)}:{src:e.src,srcset:e.srcset,lazySrc:e.lazySrc,aspect:Number(e.aspectRatio||0)}),C=X(()=>k.value.aspect||p.value/y.value||0);He(()=>e.src,()=>{A(f.value!=="idle")}),He(C,(W,j)=>{!W&&j&&d.value&&$(d.value)}),cr(()=>A());function A(W){if(!(e.eager&&W)&&!(Du&&!W&&!e.eager)){if(f.value="loading",k.value.lazySrc){const j=new Image;j.src=k.value.lazySrc,$(j,null)}k.value.src&>(()=>{var j,Q;if(i("loadstart",((j=d.value)==null?void 0:j.currentSrc)||k.value.src),(Q=d.value)!=null&&Q.complete){if(d.value.naturalWidth||_(),f.value==="error")return;C.value||$(d.value,null),E()}else C.value||$(d.value),M()})}}function E(){var W;M(),f.value="loaded",i("load",((W=d.value)==null?void 0:W.currentSrc)||k.value.src)}function _(){var W;f.value="error",i("error",((W=d.value)==null?void 0:W.currentSrc)||k.value.src)}function M(){const W=d.value;W&&(l.value=W.currentSrc||W.src)}let F=-1;function $(W){let j=arguments.length>1&&arguments[1]!==void 0?arguments[1]:100;const Q=()=>{clearTimeout(F);const{naturalHeight:ie,naturalWidth:ne}=W;ie||ne?(p.value=ne,y.value=ie):!W.complete&&f.value==="loading"&&j!=null?F=window.setTimeout(Q,j):(W.currentSrc.endsWith(".svg")||W.currentSrc.startsWith("data:image/svg+xml"))&&(p.value=1,y.value=1)};Q()}const B=X(()=>({"v-img__img--cover":e.cover,"v-img__img--contain":!e.cover})),L=()=>{var Q;if(!k.value.src||f.value==="idle")return null;const W=R("img",{class:["v-img__img",B.value],src:k.value.src,srcset:k.value.srcset,alt:e.alt,sizes:e.sizes,ref:d,onLoad:E,onError:_},null),j=(Q=r.sources)==null?void 0:Q.call(r);return R(Xn,{transition:e.transition,appear:!0},{default:()=>[Et(j?R("picture",{class:"v-img__picture"},[j,W]):W,[[Ln,f.value==="loaded"]])]})},q=()=>R(Xn,{transition:e.transition},{default:()=>[k.value.lazySrc&&f.value!=="loaded"&&R("img",{class:["v-img__img","v-img__img--preload",B.value],src:k.value.lazySrc,alt:e.alt},null)]}),Y=()=>r.placeholder?R(Xn,{transition:e.transition,appear:!0},{default:()=>[(f.value==="loading"||f.value==="error"&&!r.error)&&R("div",{class:"v-img__placeholder"},[r.placeholder()])]}):null,H=()=>r.error?R(Xn,{transition:e.transition,appear:!0},{default:()=>[f.value==="error"&&R("div",{class:"v-img__error"},[r.error()])]}):null,J=()=>e.gradient?R("div",{class:"v-img__gradient",style:{backgroundImage:`linear-gradient(${e.gradient})`}},null):null,ee=Xe(!1);{const W=He(C,j=>{j&&(requestAnimationFrame(()=>{requestAnimationFrame(()=>{ee.value=!0})}),W())})}return Me(()=>{const[W]=Tc.filterProps(e);return Et(R(Tc,Ye({class:["v-img",{"v-img--booting":!ee.value},e.class],style:[{width:$e(e.width==="auto"?p.value:e.width)},e.style]},W,{aspectRatio:C.value,"aria-label":e.alt,role:e.alt?"img":void 0}),{additional:()=>R(Ke,null,[R(L,null,null),R(q,null,null),R(J,null,null),R(Y,null,null),R(H,null,null)]),default:r.default}),[[mn("intersect"),{handler:A,options:e.options},null,{once:!0}]])}),{currentSrc:l,image:d,state:f,naturalWidth:p,naturalHeight:y}}}),Cn=me({border:[Boolean,Number,String]},"border");function Fn(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:xa();return{borderClasses:X(()=>{const r=yt(e)?e.value:e.border,l=[];if(r===!0||r==="")l.push(`${a}--border`);else if(typeof r=="string"||r===0)for(const d of String(r).split(" "))l.push(`border-${d}`);return l})}}function ed(e){return Nu(()=>{const a=[],i={};if(e.value.background)if(rf(e.value.background)){if(i.backgroundColor=e.value.background,!e.value.text){const r=Cm(i.backgroundColor);i.color=r,i.caretColor=r}}else a.push(`bg-${e.value.background}`);return e.value.text&&(rf(e.value.text)?(i.color=e.value.text,i.caretColor=e.value.text):a.push(`text-${e.value.text}`)),{colorClasses:a,colorStyles:i}})}function an(e,a){const i=X(()=>({text:yt(e)?e.value:a?e[a]:null})),{colorClasses:r,colorStyles:l}=ed(i);return{textColorClasses:r,textColorStyles:l}}function Vt(e,a){const i=X(()=>({background:yt(e)?e.value:a?e[a]:null})),{colorClasses:r,colorStyles:l}=ed(i);return{backgroundColorClasses:r,backgroundColorStyles:l}}const Nt=me({elevation:{type:[Number,String],validator(e){const a=parseInt(e);return!isNaN(a)&&a>=0&&a<=24}}},"elevation");function Kt(e){return{elevationClasses:X(()=>{const i=yt(e)?e.value:e.elevation,r=[];return i==null||r.push(`elevation-${i}`),r})}}const At=me({rounded:{type:[Boolean,Number,String],default:void 0}},"rounded");function Lt(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:xa();return{roundedClasses:X(()=>{const r=yt(e)?e.value:e.rounded,l=[];if(r===!0||r==="")l.push(`${a}--rounded`);else if(typeof r=="string"||r===0)for(const d of String(r).split(" "))l.push(`rounded-${d}`);return l})}}const GC=[null,"prominent","default","comfortable","compact"],Wm=me({absolute:Boolean,collapse:Boolean,color:String,density:{type:String,default:"default",validator:e=>GC.includes(e)},extended:Boolean,extensionHeight:{type:[Number,String],default:48},flat:Boolean,floating:Boolean,height:{type:[Number,String],default:64},image:String,title:String,...Cn(),...We(),...Nt(),...At(),...at({tag:"header"}),...dt()},"VToolbar"),Ic=Te()({name:"VToolbar",props:Wm(),setup(e,a){var _;let{slots:i}=a;const{backgroundColorClasses:r,backgroundColorStyles:l}=Vt(Ie(e,"color")),{borderClasses:d}=Fn(e),{elevationClasses:f}=Kt(e),{roundedClasses:p}=Lt(e),{themeClasses:y}=vt(e),{rtlClasses:k}=$t(),C=Xe(!!(e.extended||(_=i.extension)!=null&&_.call(i))),A=X(()=>parseInt(Number(e.height)+(e.density==="prominent"?Number(e.height):0)-(e.density==="comfortable"?8:0)-(e.density==="compact"?16:0),10)),E=X(()=>C.value?parseInt(Number(e.extensionHeight)+(e.density==="prominent"?Number(e.extensionHeight):0)-(e.density==="comfortable"?4:0)-(e.density==="compact"?8:0),10):0);return Bt({VBtn:{variant:"text"}}),Me(()=>{var B;const M=!!(e.title||i.title),F=!!(i.image||e.image),$=(B=i.extension)==null?void 0:B.call(i);return C.value=!!(e.extended||$),R(e.tag,{class:["v-toolbar",{"v-toolbar--absolute":e.absolute,"v-toolbar--collapse":e.collapse,"v-toolbar--flat":e.flat,"v-toolbar--floating":e.floating,[`v-toolbar--density-${e.density}`]:!0},r.value,d.value,f.value,p.value,y.value,k.value,e.class],style:[l.value,e.style]},{default:()=>[F&&R("div",{key:"image",class:"v-toolbar__image"},[i.image?R(bt,{key:"image-defaults",disabled:!e.image,defaults:{VImg:{cover:!0,src:e.image}}},i.image):R(vi,{key:"image-img",cover:!0,src:e.image},null)]),R(bt,{defaults:{VTabs:{height:$e(A.value)}}},{default:()=>{var L,q,Y;return[R("div",{class:"v-toolbar__content",style:{height:$e(A.value)}},[i.prepend&&R("div",{class:"v-toolbar__prepend"},[(L=i.prepend)==null?void 0:L.call(i)]),M&&R(Ku,{key:"title",text:e.title},{text:i.title}),(q=i.default)==null?void 0:q.call(i),i.append&&R("div",{class:"v-toolbar__append"},[(Y=i.append)==null?void 0:Y.call(i)])])]}}),R(bt,{defaults:{VTabs:{height:$e(E.value)}}},{default:()=>[R(Wo,null,{default:()=>[C.value&&R("div",{class:"v-toolbar__extension",style:{height:$e(E.value)}},[$])]})]})]})}),{contentHeight:A,extensionHeight:E}}}),UC=me({scrollTarget:{type:String},scrollThreshold:{type:[String,Number],default:300}},"scroll");function qC(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};const{canScroll:i}=a;let r=0;const l=Re(null),d=Xe(0),f=Xe(0),p=Xe(0),y=Xe(!1),k=Xe(!1),C=X(()=>Number(e.scrollThreshold)),A=X(()=>en((C.value-d.value)/C.value||0)),E=()=>{const _=l.value;!_||i&&!i.value||(r=d.value,d.value="window"in _?_.pageYOffset:_.scrollTop,k.value=d.value{f.value=f.value||d.value}),He(y,()=>{f.value=0}),zt(()=>{He(()=>e.scrollTarget,_=>{var F;const M=_?document.querySelector(_):window;M&&M!==l.value&&((F=l.value)==null||F.removeEventListener("scroll",E),l.value=M,l.value.addEventListener("scroll",E,{passive:!0}))},{immediate:!0})}),qt(()=>{var _;(_=l.value)==null||_.removeEventListener("scroll",E)}),i&&He(i,E,{immediate:!0}),{scrollThreshold:C,currentScroll:d,currentThreshold:p,isScrollActive:y,scrollRatio:A,isScrollingUp:k,savedScroll:f}}function Ci(){const e=Xe(!1);return zt(()=>{window.requestAnimationFrame(()=>{e.value=!0})}),{ssrBootStyles:X(()=>e.value?void 0:{transition:"none !important"}),isBooted:ts(e)}}const KC=me({scrollBehavior:String,modelValue:{type:Boolean,default:!0},location:{type:String,default:"top",validator:e=>["top","bottom"].includes(e)},...Wm(),...as(),...UC(),height:{type:[Number,String],default:64}},"VAppBar"),ZC=Te()({name:"VAppBar",props:KC(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const r=Re(),l=tt(e,"modelValue"),d=X(()=>{var L;const B=new Set(((L=e.scrollBehavior)==null?void 0:L.split(" "))??[]);return{hide:B.has("hide"),inverted:B.has("inverted"),collapse:B.has("collapse"),elevate:B.has("elevate"),fadeImage:B.has("fade-image")}}),f=X(()=>{const B=d.value;return B.hide||B.inverted||B.collapse||B.elevate||B.fadeImage||!l.value}),{currentScroll:p,scrollThreshold:y,isScrollingUp:k,scrollRatio:C}=qC(e,{canScroll:f}),A=X(()=>e.collapse||d.value.collapse&&(d.value.inverted?C.value>0:C.value===0)),E=X(()=>e.flat||d.value.elevate&&(d.value.inverted?p.value>0:p.value===0)),_=X(()=>d.value.fadeImage?d.value.inverted?1-C.value:C.value:void 0),M=X(()=>{var q,Y;if(d.value.hide&&d.value.inverted)return 0;const B=((q=r.value)==null?void 0:q.contentHeight)??0,L=((Y=r.value)==null?void 0:Y.extensionHeight)??0;return B+L});Ya(X(()=>!!e.scrollBehavior),()=>{vn(()=>{d.value.hide?d.value.inverted?l.value=p.value>y.value:l.value=k.value||p.valueparseInt(e.order,10)),position:Ie(e,"location"),layoutSize:M,elementSize:Xe(void 0),active:l,absolute:Ie(e,"absolute")});return Me(()=>{const[B]=Ic.filterProps(e);return R(Ic,Ye({ref:r,class:["v-app-bar",{"v-app-bar--bottom":e.location==="bottom"},e.class],style:[{...$.value,"--v-toolbar-image-opacity":_.value,height:void 0,...F.value},e.style]},B,{collapse:A.value,flat:E.value}),i)}),{}}});const JC=[null,"default","comfortable","compact"],Ht=me({density:{type:String,default:"default",validator:e=>JC.includes(e)}},"density");function rn(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:xa();return{densityClasses:X(()=>`${a}--density-${e.density}`)}}const QC=["elevated","flat","tonal","outlined","text","plain"];function Ai(e,a){return R(Ke,null,[e&&R("span",{key:"overlay",class:`${a}__overlay`},null),R("span",{key:"underlay",class:`${a}__underlay`},null)])}const Bn=me({color:String,variant:{type:String,default:"elevated",validator:e=>QC.includes(e)}},"variant");function Pi(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:xa();const i=X(()=>{const{variant:d}=_t(e);return`${a}--variant-${d}`}),{colorClasses:r,colorStyles:l}=ed(X(()=>{const{variant:d,color:f}=_t(e);return{[["elevated","flat"].includes(d)?"background":"text"]:f}}));return{colorClasses:r,colorStyles:l,variantClasses:i}}const $m=me({divided:Boolean,...Cn(),...We(),...Ht(),...Nt(),...At(),...at(),...dt(),...Bn()},"VBtnGroup"),Lc=Te()({name:"VBtnGroup",props:$m(),setup(e,a){let{slots:i}=a;const{themeClasses:r}=vt(e),{densityClasses:l}=rn(e),{borderClasses:d}=Fn(e),{elevationClasses:f}=Kt(e),{roundedClasses:p}=Lt(e);Bt({VBtn:{height:"auto",color:Ie(e,"color"),density:Ie(e,"density"),flat:!0,variant:Ie(e,"variant")}}),Me(()=>R(e.tag,{class:["v-btn-group",{"v-btn-group--divided":e.divided},r.value,d.value,l.value,f.value,p.value,e.class],style:e.style},i))}}),ss=me({modelValue:{type:null,default:void 0},multiple:Boolean,mandatory:[Boolean,String],max:Number,selectedClass:String,disabled:Boolean},"group"),rs=me({value:null,disabled:Boolean,selectedClass:String},"group-item");function os(e,a){let i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;const r=Wt("useGroupItem");if(!r)throw new Error("[Vuetify] useGroupItem composable must be used inside a component setup function");const l=sn();Pt(Symbol.for(`${a.description}:id`),l);const d=ct(a,null);if(!d){if(!i)return d;throw new Error(`[Vuetify] Could not find useGroup injection with symbol ${a.description}`)}const f=Ie(e,"value"),p=X(()=>!!(d.disabled.value||e.disabled));d.register({id:l,value:f,disabled:p},r),qt(()=>{d.unregister(l)});const y=X(()=>d.isSelected(l)),k=X(()=>y.value&&[d.selectedClass.value,e.selectedClass]);return He(y,C=>{r.emit("group:selected",{value:C})}),{id:l,isSelected:y,toggle:()=>d.select(l,!y.value),select:C=>d.select(l,C),selectedClass:k,value:f,disabled:p,group:d}}function Ei(e,a){let i=!1;const r=Gt([]),l=tt(e,"modelValue",[],E=>E==null?[]:jm(r,In(E)),E=>{const _=tA(r,E);return e.multiple?_:_[0]}),d=Wt("useGroup");function f(E,_){const M=E,F=Symbol.for(`${a.description}:id`),B=Ms(F,d==null?void 0:d.vnode).indexOf(_);B>-1?r.splice(B,0,M):r.push(M)}function p(E){if(i)return;y();const _=r.findIndex(M=>M.id===E);r.splice(_,1)}function y(){const E=r.find(_=>!_.disabled);E&&e.mandatory==="force"&&!l.value.length&&(l.value=[E.id])}zt(()=>{y()}),qt(()=>{i=!0});function k(E,_){const M=r.find(F=>F.id===E);if(!(_&&(M!=null&&M.disabled)))if(e.multiple){const F=l.value.slice(),$=F.findIndex(L=>L===E),B=~$;if(_=_??!B,B&&e.mandatory&&F.length<=1||!B&&e.max!=null&&F.length+1>e.max)return;$<0&&_?F.push(E):$>=0&&!_&&F.splice($,1),l.value=F}else{const F=l.value.includes(E);if(e.mandatory&&F)return;l.value=_??!F?[E]:[]}}function C(E){if(e.multiple,l.value.length){const _=l.value[0],M=r.findIndex(B=>B.id===_);let F=(M+E)%r.length,$=r[F];for(;$.disabled&&F!==M;)F=(F+E)%r.length,$=r[F];if($.disabled)return;l.value=[r[F].id]}else{const _=r.find(M=>!M.disabled);_&&(l.value=[_.id])}}const A={register:f,unregister:p,selected:l,select:k,disabled:Ie(e,"disabled"),prev:()=>C(r.length-1),next:()=>C(1),isSelected:E=>l.value.includes(E),selectedClass:X(()=>e.selectedClass),items:X(()=>r),getItemIndex:E=>eA(r,E)};return Pt(a,A),A}function eA(e,a){const i=jm(e,[a]);return i.length?e.findIndex(r=>r.id===i[0]):-1}function jm(e,a){const i=[];return a.forEach(r=>{const l=e.find(f=>wi(r,f.value)),d=e[r];(l==null?void 0:l.value)!=null?i.push(l.id):d!=null&&i.push(d.id)}),i}function tA(e,a){const i=[];return a.forEach(r=>{const l=e.findIndex(d=>d.id===r);if(~l){const d=e[l];i.push(d.value!=null?d.value:l)}}),i}const td=Symbol.for("vuetify:v-btn-toggle"),nA=me({...$m(),...ss()},"VBtnToggle"),aA=Te()({name:"VBtnToggle",props:nA(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const{isSelected:r,next:l,prev:d,select:f,selected:p}=Ei(e,td);return Me(()=>{const[y]=Lc.filterProps(e);return R(Lc,Ye({class:["v-btn-toggle",e.class]},y,{style:e.style}),{default:()=>{var k;return[(k=i.default)==null?void 0:k.call(i,{isSelected:r,next:l,prev:d,select:f,selected:p})]}})}),{next:l,prev:d,select:f}}});const iA=["x-small","small","default","large","x-large"],wa=me({size:{type:[String,Number],default:"default"}},"size");function ls(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:xa();return Nu(()=>{let i,r;return ao(iA,e.size)?i=`${a}--size-${e.size}`:e.size&&(r={width:$e(e.size),height:$e(e.size)}),{sizeClasses:i,sizeStyles:r}})}const sA=me({color:String,start:Boolean,end:Boolean,icon:et,...We(),...wa(),...at({tag:"i"}),...dt()},"VIcon"),wt=Te()({name:"VIcon",props:sA(),setup(e,a){let{attrs:i,slots:r}=a;const l=Re(),{themeClasses:d}=vt(e),{iconData:f}=qk(X(()=>l.value||e.icon)),{sizeClasses:p}=ls(e),{textColorClasses:y,textColorStyles:k}=an(Ie(e,"color"));return Me(()=>{var A,E;const C=(A=r.default)==null?void 0:A.call(r);return C&&(l.value=(E=um(C).filter(_=>_.type===Da&&_.children&&typeof _.children=="string")[0])==null?void 0:E.children),R(f.value.component,{tag:e.tag,icon:f.value.icon,class:["v-icon","notranslate",d.value,p.value,y.value,{"v-icon--clickable":!!i.onClick,"v-icon--start":e.start,"v-icon--end":e.end},e.class],style:[p.value?void 0:{fontSize:$e(e.size),height:$e(e.size),width:$e(e.size)},k.value,e.style],role:i.onClick?"button":void 0,"aria-hidden":!i.onClick},{default:()=>[C]})}),{}}});function nd(e,a){const i=Re(),r=Xe(!1);if(Du){const l=new IntersectionObserver(d=>{e==null||e(d,l),r.value=!!d.find(f=>f.isIntersecting)},a);qt(()=>{l.disconnect()}),He(i,(d,f)=>{f&&(l.unobserve(f),r.value=!1),d&&l.observe(d)},{flush:"post"})}return{intersectionRef:i,isIntersecting:r}}const rA=me({bgColor:String,color:String,indeterminate:[Boolean,String],modelValue:{type:[Number,String],default:0},rotate:{type:[Number,String],default:0},width:{type:[Number,String],default:4},...We(),...wa(),...at({tag:"div"}),...dt()},"VProgressCircular"),ad=Te()({name:"VProgressCircular",props:rA(),setup(e,a){let{slots:i}=a;const r=20,l=2*Math.PI*r,d=Re(),{themeClasses:f}=vt(e),{sizeClasses:p,sizeStyles:y}=ls(e),{textColorClasses:k,textColorStyles:C}=an(Ie(e,"color")),{textColorClasses:A,textColorStyles:E}=an(Ie(e,"bgColor")),{intersectionRef:_,isIntersecting:M}=nd(),{resizeRef:F,contentRect:$}=ea(),B=X(()=>Math.max(0,Math.min(100,parseFloat(e.modelValue)))),L=X(()=>Number(e.width)),q=X(()=>y.value?Number(e.size):$.value?$.value.width:Math.max(L.value,32)),Y=X(()=>r/(1-L.value/q.value)*2),H=X(()=>L.value/q.value*Y.value),J=X(()=>$e((100-B.value)/100*l));return vn(()=>{_.value=d.value,F.value=d.value}),Me(()=>R(e.tag,{ref:d,class:["v-progress-circular",{"v-progress-circular--indeterminate":!!e.indeterminate,"v-progress-circular--visible":M.value,"v-progress-circular--disable-shrink":e.indeterminate==="disable-shrink"},f.value,p.value,k.value,e.class],style:[y.value,C.value,e.style],role:"progressbar","aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":e.indeterminate?void 0:B.value},{default:()=>[R("svg",{style:{transform:`rotate(calc(-90deg + ${Number(e.rotate)}deg))`},xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${Y.value} ${Y.value}`},[R("circle",{class:["v-progress-circular__underlay",A.value],style:E.value,fill:"transparent",cx:"50%",cy:"50%",r,"stroke-width":H.value,"stroke-dasharray":l,"stroke-dashoffset":0},null),R("circle",{class:"v-progress-circular__overlay",fill:"transparent",cx:"50%",cy:"50%",r,"stroke-width":H.value,"stroke-dasharray":l,"stroke-dashoffset":J.value},null)]),i.default&&R("div",{class:"v-progress-circular__content"},[i.default({value:B.value})])]})),{}}});const Sf={center:"center",top:"bottom",bottom:"top",left:"right",right:"left"},$a=me({location:String},"location");function ja(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,i=arguments.length>2?arguments[2]:void 0;const{isRtl:r}=$t();return{locationStyles:X(()=>{if(!e.location)return{};const{side:d,align:f}=xc(e.location.split(" ").length>1?e.location:`${e.location} center`,r.value);function p(k){return i?i(k):0}const y={};return d!=="center"&&(a?y[Sf[d]]=`calc(100% - ${p(d)}px)`:y[d]=0),f!=="center"?a?y[Sf[f]]=`calc(100% - ${p(f)}px)`:y[f]=0:(d==="center"?y.top=y.left="50%":y[{top:"left",bottom:"left",left:"top",right:"top"}[d]]="50%",y.transform={top:"translateX(-50%)",bottom:"translateX(-50%)",left:"translateY(-50%)",right:"translateY(-50%)",center:"translate(-50%, -50%)"}[d]),y})}}const oA=me({absolute:Boolean,active:{type:Boolean,default:!0},bgColor:String,bgOpacity:[Number,String],bufferValue:{type:[Number,String],default:0},clickable:Boolean,color:String,height:{type:[Number,String],default:4},indeterminate:Boolean,max:{type:[Number,String],default:100},modelValue:{type:[Number,String],default:0},reverse:Boolean,stream:Boolean,striped:Boolean,roundedBar:Boolean,...We(),...$a({location:"top"}),...At(),...at(),...dt()},"VProgressLinear"),id=Te()({name:"VProgressLinear",props:oA(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const r=tt(e,"modelValue"),{isRtl:l,rtlClasses:d}=$t(),{themeClasses:f}=vt(e),{locationStyles:p}=ja(e),{textColorClasses:y,textColorStyles:k}=an(e,"color"),{backgroundColorClasses:C,backgroundColorStyles:A}=Vt(X(()=>e.bgColor||e.color)),{backgroundColorClasses:E,backgroundColorStyles:_}=Vt(e,"color"),{roundedClasses:M}=Lt(e),{intersectionRef:F,isIntersecting:$}=nd(),B=X(()=>parseInt(e.max,10)),L=X(()=>parseInt(e.height,10)),q=X(()=>parseFloat(e.bufferValue)/B.value*100),Y=X(()=>parseFloat(r.value)/B.value*100),H=X(()=>l.value!==e.reverse),J=X(()=>e.indeterminate?"fade-transition":"slide-x-transition"),ee=X(()=>e.bgOpacity==null?e.bgOpacity:parseFloat(e.bgOpacity));function W(j){if(!F.value)return;const{left:Q,right:ie,width:ne}=F.value.getBoundingClientRect(),oe=H.value?ne-j.clientX+(ie-ne):j.clientX-Q;r.value=Math.round(oe/ne*B.value)}return Me(()=>R(e.tag,{ref:F,class:["v-progress-linear",{"v-progress-linear--absolute":e.absolute,"v-progress-linear--active":e.active&&$.value,"v-progress-linear--reverse":H.value,"v-progress-linear--rounded":e.rounded,"v-progress-linear--rounded-bar":e.roundedBar,"v-progress-linear--striped":e.striped},M.value,f.value,d.value,e.class],style:[{bottom:e.location==="bottom"?0:void 0,top:e.location==="top"?0:void 0,height:e.active?$e(L.value):0,"--v-progress-linear-height":$e(L.value),...p.value},e.style],role:"progressbar","aria-hidden":e.active?"false":"true","aria-valuemin":"0","aria-valuemax":e.max,"aria-valuenow":e.indeterminate?void 0:Y.value,onClick:e.clickable&&W},{default:()=>[e.stream&&R("div",{key:"stream",class:["v-progress-linear__stream",y.value],style:{...k.value,[H.value?"left":"right"]:$e(-L.value),borderTop:`${$e(L.value/2)} dotted`,opacity:ee.value,top:`calc(50% - ${$e(L.value/4)})`,width:$e(100-q.value,"%"),"--v-progress-linear-stream-to":$e(L.value*(H.value?1:-1))}},null),R("div",{class:["v-progress-linear__background",C.value],style:[A.value,{opacity:ee.value,width:$e(e.stream?q.value:100,"%")}]},null),R(Wn,{name:J.value},{default:()=>[e.indeterminate?R("div",{class:"v-progress-linear__indeterminate"},[["long","short"].map(j=>R("div",{key:j,class:["v-progress-linear__indeterminate",j,E.value],style:_.value},null))]):R("div",{class:["v-progress-linear__determinate",E.value],style:[_.value,{width:$e(Y.value,"%")}]},null)]}),i.default&&R("div",{class:"v-progress-linear__content"},[i.default({value:Y.value,buffer:q.value})])]})),{}}}),sd=me({loading:[Boolean,String]},"loader");function jo(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:xa();return{loaderClasses:X(()=>({[`${a}--loading`]:e.loading}))}}function rd(e,a){var r;let{slots:i}=a;return R("div",{class:`${e.name}__loader`},[((r=i.default)==null?void 0:r.call(i,{color:e.color,isActive:e.active}))||R(id,{active:e.active,color:e.color,height:"2",indeterminate:!0},null)])}const lA=["static","relative","fixed","absolute","sticky"],cs=me({position:{type:String,validator:e=>lA.includes(e)}},"position");function us(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:xa();return{positionClasses:X(()=>e.position?`${a}--${e.position}`:void 0)}}function Gm(){var e,a;return(a=(e=Wt("useRouter"))==null?void 0:e.proxy)==null?void 0:a.$router}function vr(e,a){const i=Pg("RouterLink"),r=X(()=>!!(e.href||e.to)),l=X(()=>(r==null?void 0:r.value)||Gh(a,"click")||Gh(e,"click"));if(typeof i=="string")return{isLink:r,isClickable:l,href:Ie(e,"href")};const d=e.to?i.useLink(e):void 0;return{isLink:r,isClickable:l,route:d==null?void 0:d.route,navigate:d==null?void 0:d.navigate,isActive:d&&X(()=>{var f,p;return e.exact?(f=d.isExactActive)==null?void 0:f.value:(p=d.isActive)==null?void 0:p.value}),href:X(()=>e.to?d==null?void 0:d.route.value.href:e.href)}}const mr=me({href:String,replace:Boolean,to:[String,Object],exact:Boolean},"router");let Ll=!1;function cA(e,a){let i=!1,r,l;St&&(gt(()=>{window.addEventListener("popstate",d),r=e==null?void 0:e.beforeEach((f,p,y)=>{Ll?i?a(y):y():setTimeout(()=>i?a(y):y()),Ll=!0}),l=e==null?void 0:e.afterEach(()=>{Ll=!1})}),nn(()=>{window.removeEventListener("popstate",d),r==null||r(),l==null||l()}));function d(f){var p;(p=f.state)!=null&&p.replaced||(i=!0,setTimeout(()=>i=!1))}}function uA(e,a){He(()=>{var i;return(i=e.isActive)==null?void 0:i.value},i=>{e.isLink.value&&i&&a&>(()=>{a(!0)})},{immediate:!0})}const _c=Symbol("rippleStop"),dA=80;function kf(e,a){e.style.transform=a,e.style.webkitTransform=a}function Vc(e){return e.constructor.name==="TouchEvent"}function Um(e){return e.constructor.name==="KeyboardEvent"}const hA=function(e,a){var A;let i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},r=0,l=0;if(!Um(e)){const E=a.getBoundingClientRect(),_=Vc(e)?e.touches[e.touches.length-1]:e;r=_.clientX-E.left,l=_.clientY-E.top}let d=0,f=.3;(A=a._ripple)!=null&&A.circle?(f=.15,d=a.clientWidth/2,d=i.center?d:d+Math.sqrt((r-d)**2+(l-d)**2)/4):d=Math.sqrt(a.clientWidth**2+a.clientHeight**2)/2;const p=`${(a.clientWidth-d*2)/2}px`,y=`${(a.clientHeight-d*2)/2}px`,k=i.center?p:`${r-d}px`,C=i.center?y:`${l-d}px`;return{radius:d,scale:f,x:k,y:C,centerX:p,centerY:y}},lo={show(e,a){var _;let i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!((_=a==null?void 0:a._ripple)!=null&&_.enabled))return;const r=document.createElement("span"),l=document.createElement("span");r.appendChild(l),r.className="v-ripple__container",i.class&&(r.className+=` ${i.class}`);const{radius:d,scale:f,x:p,y,centerX:k,centerY:C}=hA(e,a,i),A=`${d*2}px`;l.className="v-ripple__animation",l.style.width=A,l.style.height=A,a.appendChild(r);const E=window.getComputedStyle(a);E&&E.position==="static"&&(a.style.position="relative",a.dataset.previousPosition="static"),l.classList.add("v-ripple__animation--enter"),l.classList.add("v-ripple__animation--visible"),kf(l,`translate(${p}, ${y}) scale3d(${f},${f},${f})`),l.dataset.activated=String(performance.now()),setTimeout(()=>{l.classList.remove("v-ripple__animation--enter"),l.classList.add("v-ripple__animation--in"),kf(l,`translate(${k}, ${C}) scale3d(1,1,1)`)},0)},hide(e){var d;if(!((d=e==null?void 0:e._ripple)!=null&&d.enabled))return;const a=e.getElementsByClassName("v-ripple__animation");if(a.length===0)return;const i=a[a.length-1];if(i.dataset.isHiding)return;i.dataset.isHiding="true";const r=performance.now()-Number(i.dataset.activated),l=Math.max(250-r,0);setTimeout(()=>{i.classList.remove("v-ripple__animation--in"),i.classList.add("v-ripple__animation--out"),setTimeout(()=>{var p;e.getElementsByClassName("v-ripple__animation").length===1&&e.dataset.previousPosition&&(e.style.position=e.dataset.previousPosition,delete e.dataset.previousPosition),((p=i.parentNode)==null?void 0:p.parentNode)===e&&e.removeChild(i.parentNode)},300)},l)}};function qm(e){return typeof e>"u"||!!e}function Zs(e){const a={},i=e.currentTarget;if(!(!(i!=null&&i._ripple)||i._ripple.touched||e[_c])){if(e[_c]=!0,Vc(e))i._ripple.touched=!0,i._ripple.isTouch=!0;else if(i._ripple.isTouch)return;if(a.center=i._ripple.centered||Um(e),i._ripple.class&&(a.class=i._ripple.class),Vc(e)){if(i._ripple.showTimerCommit)return;i._ripple.showTimerCommit=()=>{lo.show(e,i,a)},i._ripple.showTimer=window.setTimeout(()=>{var r;(r=i==null?void 0:i._ripple)!=null&&r.showTimerCommit&&(i._ripple.showTimerCommit(),i._ripple.showTimerCommit=null)},dA)}else lo.show(e,i,a)}}function Cf(e){e[_c]=!0}function yn(e){const a=e.currentTarget;if(a!=null&&a._ripple){if(window.clearTimeout(a._ripple.showTimer),e.type==="touchend"&&a._ripple.showTimerCommit){a._ripple.showTimerCommit(),a._ripple.showTimerCommit=null,a._ripple.showTimer=window.setTimeout(()=>{yn(e)});return}window.setTimeout(()=>{a._ripple&&(a._ripple.touched=!1)}),lo.hide(a)}}function Km(e){const a=e.currentTarget;a!=null&&a._ripple&&(a._ripple.showTimerCommit&&(a._ripple.showTimerCommit=null),window.clearTimeout(a._ripple.showTimer))}let Js=!1;function Zm(e){!Js&&(e.keyCode===Yh.enter||e.keyCode===Yh.space)&&(Js=!0,Zs(e))}function Jm(e){Js=!1,yn(e)}function Qm(e){Js&&(Js=!1,yn(e))}function ep(e,a,i){const{value:r,modifiers:l}=a,d=qm(r);if(d||lo.hide(e),e._ripple=e._ripple??{},e._ripple.enabled=d,e._ripple.centered=l.center,e._ripple.circle=l.circle,mc(r)&&r.class&&(e._ripple.class=r.class),d&&!i){if(l.stop){e.addEventListener("touchstart",Cf,{passive:!0}),e.addEventListener("mousedown",Cf);return}e.addEventListener("touchstart",Zs,{passive:!0}),e.addEventListener("touchend",yn,{passive:!0}),e.addEventListener("touchmove",Km,{passive:!0}),e.addEventListener("touchcancel",yn),e.addEventListener("mousedown",Zs),e.addEventListener("mouseup",yn),e.addEventListener("mouseleave",yn),e.addEventListener("keydown",Zm),e.addEventListener("keyup",Jm),e.addEventListener("blur",Qm),e.addEventListener("dragstart",yn,{passive:!0})}else!d&&i&&tp(e)}function tp(e){e.removeEventListener("mousedown",Zs),e.removeEventListener("touchstart",Zs),e.removeEventListener("touchend",yn),e.removeEventListener("touchmove",Km),e.removeEventListener("touchcancel",yn),e.removeEventListener("mouseup",yn),e.removeEventListener("mouseleave",yn),e.removeEventListener("keydown",Zm),e.removeEventListener("keyup",Jm),e.removeEventListener("dragstart",yn),e.removeEventListener("blur",Qm)}function fA(e,a){ep(e,a,!1)}function gA(e){delete e._ripple,tp(e)}function vA(e,a){if(a.value===a.oldValue)return;const i=qm(a.oldValue);ep(e,a,i)}const Ga={mounted:fA,unmounted:gA,updated:vA},od=me({active:{type:Boolean,default:void 0},symbol:{type:null,default:td},flat:Boolean,icon:[Boolean,String,Function,Object],prependIcon:et,appendIcon:et,block:Boolean,stacked:Boolean,ripple:{type:[Boolean,Object],default:!0},text:String,...Cn(),...We(),...Ht(),...Mn(),...Nt(),...rs(),...sd(),...$a(),...cs(),...At(),...mr(),...wa(),...at({tag:"button"}),...dt(),...Bn({variant:"elevated"})},"VBtn"),cn=Te()({name:"VBtn",directives:{Ripple:Ga},props:od(),emits:{"group:selected":e=>!0},setup(e,a){let{attrs:i,slots:r}=a;const{themeClasses:l}=vt(e),{borderClasses:d}=Fn(e),{colorClasses:f,colorStyles:p,variantClasses:y}=Pi(e),{densityClasses:k}=rn(e),{dimensionStyles:C}=On(e),{elevationClasses:A}=Kt(e),{loaderClasses:E}=jo(e),{locationStyles:_}=ja(e),{positionClasses:M}=us(e),{roundedClasses:F}=Lt(e),{sizeClasses:$,sizeStyles:B}=ls(e),L=os(e,e.symbol,!1),q=vr(e,i),Y=X(()=>{var j;return e.active!==void 0?e.active:q.isLink.value?(j=q.isActive)==null?void 0:j.value:L==null?void 0:L.isSelected.value}),H=X(()=>(L==null?void 0:L.disabled.value)||e.disabled),J=X(()=>e.variant==="elevated"&&!(e.disabled||e.flat||e.border)),ee=X(()=>{if(e.value!==void 0)return Object(e.value)===e.value?JSON.stringify(e.value,null,0):e.value});function W(j){var Q;H.value||q.isLink.value&&(j.metaKey||j.ctrlKey||j.shiftKey||j.button!==0||i.target==="_blank")||((Q=q.navigate)==null||Q.call(q,j),L==null||L.toggle())}return uA(q,L==null?void 0:L.select),Me(()=>{var le,Ce;const j=q.isLink.value?"a":e.tag,Q=!!(e.prependIcon||r.prepend),ie=!!(e.appendIcon||r.append),ne=!!(e.icon&&e.icon!==!0),oe=(L==null?void 0:L.isSelected.value)&&(!q.isLink.value||((le=q.isActive)==null?void 0:le.value))||!L||((Ce=q.isActive)==null?void 0:Ce.value);return Et(R(j,{type:j==="a"?void 0:"button",class:["v-btn",L==null?void 0:L.selectedClass.value,{"v-btn--active":Y.value,"v-btn--block":e.block,"v-btn--disabled":H.value,"v-btn--elevated":J.value,"v-btn--flat":e.flat,"v-btn--icon":!!e.icon,"v-btn--loading":e.loading,"v-btn--stacked":e.stacked},l.value,d.value,oe?f.value:void 0,k.value,A.value,E.value,M.value,F.value,$.value,y.value,e.class],style:[oe?p.value:void 0,C.value,_.value,B.value,e.style],disabled:H.value||void 0,href:q.href.value,onClick:W,value:ee.value},{default:()=>{var ye;return[Ai(!0,"v-btn"),!e.icon&&Q&&R("span",{key:"prepend",class:"v-btn__prepend"},[r.prepend?R(bt,{key:"prepend-defaults",disabled:!e.prependIcon,defaults:{VIcon:{icon:e.prependIcon}}},r.prepend):R(wt,{key:"prepend-icon",icon:e.prependIcon},null)]),R("span",{class:"v-btn__content","data-no-activator":""},[!r.default&&ne?R(wt,{key:"content-icon",icon:e.icon},null):R(bt,{key:"content-defaults",disabled:!ne,defaults:{VIcon:{icon:e.icon}}},{default:()=>{var fe;return[((fe=r.default)==null?void 0:fe.call(r))??e.text]}})]),!e.icon&&ie&&R("span",{key:"append",class:"v-btn__append"},[r.append?R(bt,{key:"append-defaults",disabled:!e.appendIcon,defaults:{VIcon:{icon:e.appendIcon}}},r.append):R(wt,{key:"append-icon",icon:e.appendIcon},null)]),!!e.loading&&R("span",{key:"loader",class:"v-btn__loader"},[((ye=r.loader)==null?void 0:ye.call(r))??R(ad,{color:typeof e.loading=="boolean"?void 0:e.loading,indeterminate:!0,size:"23",width:"2"},null)])]}}),[[mn("ripple"),!H.value&&e.ripple,null]])}),{}}}),mA=me({...od({icon:"$menu",variant:"text"})},"VAppBarNavIcon"),pA=Te()({name:"VAppBarNavIcon",props:mA(),setup(e,a){let{slots:i}=a;return Me(()=>R(cn,Ye(e,{class:["v-app-bar-nav-icon"]}),i)),{}}}),bA=Te()({name:"VAppBarTitle",props:Bm(),setup(e,a){let{slots:i}=a;return Me(()=>R(Ku,Ye(e,{class:"v-app-bar-title"}),i)),{}}});const np=Gn("v-alert-title"),xA=["success","info","warning","error"],yA=me({border:{type:[Boolean,String],validator:e=>typeof e=="boolean"||["top","end","bottom","start"].includes(e)},borderColor:String,closable:Boolean,closeIcon:{type:et,default:"$close"},closeLabel:{type:String,default:"$vuetify.close"},icon:{type:[Boolean,String,Function,Object],default:null},modelValue:{type:Boolean,default:!0},prominent:Boolean,title:String,text:String,type:{type:String,validator:e=>xA.includes(e)},...We(),...Ht(),...Mn(),...Nt(),...$a(),...cs(),...At(),...at(),...dt(),...Bn({variant:"flat"})},"VAlert"),wA=Te()({name:"VAlert",props:yA(),emits:{"click:close":e=>!0,"update:modelValue":e=>!0},setup(e,a){let{emit:i,slots:r}=a;const l=tt(e,"modelValue"),d=X(()=>{if(e.icon!==!1)return e.type?e.icon??`$${e.type}`:e.icon}),f=X(()=>({color:e.color??e.type,variant:e.variant})),{themeClasses:p}=vt(e),{colorClasses:y,colorStyles:k,variantClasses:C}=Pi(f),{densityClasses:A}=rn(e),{dimensionStyles:E}=On(e),{elevationClasses:_}=Kt(e),{locationStyles:M}=ja(e),{positionClasses:F}=us(e),{roundedClasses:$}=Lt(e),{textColorClasses:B,textColorStyles:L}=an(Ie(e,"borderColor")),{t:q}=Rn(),Y=X(()=>({"aria-label":q(e.closeLabel),onClick(H){l.value=!1,i("click:close",H)}}));return()=>{const H=!!(r.prepend||d.value),J=!!(r.title||e.title),ee=!!(r.close||e.closable);return l.value&&R(e.tag,{class:["v-alert",e.border&&{"v-alert--border":!!e.border,[`v-alert--border-${e.border===!0?"start":e.border}`]:!0},{"v-alert--prominent":e.prominent},p.value,y.value,A.value,_.value,F.value,$.value,C.value,e.class],style:[k.value,E.value,M.value,e.style],role:"alert"},{default:()=>{var W,j;return[Ai(!1,"v-alert"),e.border&&R("div",{key:"border",class:["v-alert__border",B.value],style:L.value},null),H&&R("div",{key:"prepend",class:"v-alert__prepend"},[r.prepend?R(bt,{key:"prepend-defaults",disabled:!d.value,defaults:{VIcon:{density:e.density,icon:d.value,size:e.prominent?44:28}}},r.prepend):R(wt,{key:"prepend-icon",density:e.density,icon:d.value,size:e.prominent?44:28},null)]),R("div",{class:"v-alert__content"},[J&&R(np,{key:"title"},{default:()=>{var Q;return[((Q=r.title)==null?void 0:Q.call(r))??e.title]}}),((W=r.text)==null?void 0:W.call(r))??e.text,(j=r.default)==null?void 0:j.call(r)]),r.append&&R("div",{key:"append",class:"v-alert__append"},[r.append()]),ee&&R("div",{key:"close",class:"v-alert__close"},[r.close?R(bt,{key:"close-defaults",defaults:{VBtn:{icon:e.closeIcon,size:"x-small",variant:"text"}}},{default:()=>{var Q;return[(Q=r.close)==null?void 0:Q.call(r,{props:Y.value})]}}):R(cn,Ye({key:"close-btn",icon:e.closeIcon,size:"x-small",variant:"text"},Y.value),null)])]}})}}});const SA=me({text:String,clickable:Boolean,...We(),...dt()},"VLabel"),ds=Te()({name:"VLabel",props:SA(),setup(e,a){let{slots:i}=a;return Me(()=>{var r;return R("label",{class:["v-label",{"v-label--clickable":e.clickable},e.class],style:e.style},[e.text,(r=i.default)==null?void 0:r.call(i)])}),{}}});const ap=Symbol.for("vuetify:selection-control-group"),ld=me({color:String,disabled:{type:Boolean,default:null},defaultsTarget:String,error:Boolean,id:String,inline:Boolean,falseIcon:et,trueIcon:et,ripple:{type:Boolean,default:!0},multiple:{type:Boolean,default:null},name:String,readonly:Boolean,modelValue:null,type:String,valueComparator:{type:Function,default:wi},...We(),...Ht(),...dt()},"SelectionControlGroup"),kA=me({...ld({defaultsTarget:"VSelectionControl"})},"VSelectionControlGroup"),ip=Te()({name:"VSelectionControlGroup",props:kA(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const r=tt(e,"modelValue"),l=sn(),d=X(()=>e.id||`v-selection-control-group-${l}`),f=X(()=>e.name||d.value),p=new Set;return Pt(ap,{modelValue:r,forceUpdate:()=>{p.forEach(y=>y())},onForceUpdate:y=>{p.add(y),nn(()=>{p.delete(y)})}}),Bt({[e.defaultsTarget]:{color:Ie(e,"color"),disabled:Ie(e,"disabled"),density:Ie(e,"density"),error:Ie(e,"error"),inline:Ie(e,"inline"),modelValue:r,multiple:X(()=>!!e.multiple||e.multiple==null&&Array.isArray(r.value)),name:f,falseIcon:Ie(e,"falseIcon"),trueIcon:Ie(e,"trueIcon"),readonly:Ie(e,"readonly"),ripple:Ie(e,"ripple"),type:Ie(e,"type"),valueComparator:Ie(e,"valueComparator")}}),Me(()=>{var y;return R("div",{class:["v-selection-control-group",{"v-selection-control-group--inline":e.inline},e.class],style:e.style,role:e.type==="radio"?"radiogroup":void 0},[(y=i.default)==null?void 0:y.call(i)])}),{}}}),Go=me({label:String,trueValue:null,falseValue:null,value:null,...We(),...ld()},"VSelectionControl");function CA(e){const a=ct(ap,void 0),{densityClasses:i}=rn(e),r=tt(e,"modelValue"),l=X(()=>e.trueValue!==void 0?e.trueValue:e.value!==void 0?e.value:!0),d=X(()=>e.falseValue!==void 0?e.falseValue:!1),f=X(()=>!!e.multiple||e.multiple==null&&Array.isArray(r.value)),p=X({get(){const A=a?a.modelValue.value:r.value;return f.value?A.some(E=>e.valueComparator(E,l.value)):e.valueComparator(A,l.value)},set(A){if(e.readonly)return;const E=A?l.value:d.value;let _=E;f.value&&(_=A?[...In(r.value),E]:In(r.value).filter(M=>!e.valueComparator(M,l.value))),a?a.modelValue.value=_:r.value=_}}),{textColorClasses:y,textColorStyles:k}=an(X(()=>p.value&&!e.error&&!e.disabled?e.color:void 0)),C=X(()=>p.value?e.trueIcon:e.falseIcon);return{group:a,densityClasses:i,trueValue:l,falseValue:d,model:p,textColorClasses:y,textColorStyles:k,icon:C}}const mi=Te()({name:"VSelectionControl",directives:{Ripple:Ga},inheritAttrs:!1,props:Go(),emits:{"update:modelValue":e=>!0},setup(e,a){let{attrs:i,slots:r}=a;const{group:l,densityClasses:d,icon:f,model:p,textColorClasses:y,textColorStyles:k,trueValue:C}=CA(e),A=sn(),E=X(()=>e.id||`input-${A}`),_=Xe(!1),M=Xe(!1),F=Re();l==null||l.onForceUpdate(()=>{F.value&&(F.value.checked=p.value)});function $(q){_.value=!0,Ui(q.target,":focus-visible")!==!1&&(M.value=!0)}function B(){_.value=!1,M.value=!1}function L(q){e.readonly&&l&>(()=>l.forceUpdate()),p.value=q.target.checked}return Me(()=>{var ee,W;const q=r.label?r.label({label:e.label,props:{for:E.value}}):e.label,[Y,H]=Si(i),J=R("input",Ye({ref:F,checked:p.value,disabled:!!(e.readonly||e.disabled),id:E.value,onBlur:B,onFocus:$,onInput:L,"aria-disabled":!!(e.readonly||e.disabled),type:e.type,value:C.value,name:e.name,"aria-checked":e.type==="checkbox"?p.value:void 0},H),null);return R("div",Ye({class:["v-selection-control",{"v-selection-control--dirty":p.value,"v-selection-control--disabled":e.disabled,"v-selection-control--error":e.error,"v-selection-control--focused":_.value,"v-selection-control--focus-visible":M.value,"v-selection-control--inline":e.inline},d.value,e.class]},Y,{style:e.style}),[R("div",{class:["v-selection-control__wrapper",y.value],style:k.value},[(ee=r.default)==null?void 0:ee.call(r),Et(R("div",{class:["v-selection-control__input"]},[((W=r.input)==null?void 0:W.call(r,{model:p,textColorClasses:y,textColorStyles:k,inputNode:J,icon:f.value,props:{onFocus:$,onBlur:B,id:E.value}}))??R(Ke,null,[f.value&&R(wt,{key:"icon",icon:f.value},null),J])]),[[mn("ripple"),e.ripple&&[!e.disabled&&!e.readonly,null,["center","circle"]]]])]),q&&R(ds,{for:E.value,clickable:!0,onClick:j=>j.stopPropagation()},{default:()=>[q]})])}),{isFocused:_,input:F}}}),sp=me({indeterminate:Boolean,indeterminateIcon:{type:et,default:"$checkboxIndeterminate"},...Go({falseIcon:"$checkboxOff",trueIcon:"$checkboxOn"})},"VCheckboxBtn"),Zi=Te()({name:"VCheckboxBtn",props:sp(),emits:{"update:modelValue":e=>!0,"update:indeterminate":e=>!0},setup(e,a){let{slots:i}=a;const r=tt(e,"indeterminate"),l=tt(e,"modelValue");function d(y){r.value&&(r.value=!1)}const f=X(()=>r.value?e.indeterminateIcon:e.falseIcon),p=X(()=>r.value?e.indeterminateIcon:e.trueIcon);return Me(()=>{const y=_n(mi.filterProps(e)[0],["modelValue"]);return R(mi,Ye(y,{modelValue:l.value,"onUpdate:modelValue":[k=>l.value=k,d],class:["v-checkbox-btn",e.class],style:e.style,type:"checkbox",falseIcon:f.value,trueIcon:p.value,"aria-checked":r.value?"mixed":void 0}),i)}),{}}});function rp(e){const{t:a}=Rn();function i(r){let{name:l}=r;const d={prepend:"prependAction",prependInner:"prependAction",append:"appendAction",appendInner:"appendAction",clear:"clear"}[l],f=e[`onClick:${l}`],p=f&&d?a(`$vuetify.input.${d}`,e.label??""):void 0;return R(wt,{icon:e[`${l}Icon`],"aria-label":p,onClick:f},null)}return{InputIcon:i}}const AA=me({active:Boolean,color:String,messages:{type:[Array,String],default:()=>[]},...We(),...ya({transition:{component:Ju,leaveAbsolute:!0,group:!0}})},"VMessages"),op=Te()({name:"VMessages",props:AA(),setup(e,a){let{slots:i}=a;const r=X(()=>In(e.messages)),{textColorClasses:l,textColorStyles:d}=an(X(()=>e.color));return Me(()=>R(Xn,{transition:e.transition,tag:"div",class:["v-messages",l.value,e.class],style:[d.value,e.style],role:"alert","aria-live":"polite"},{default:()=>[e.active&&r.value.map((f,p)=>R("div",{class:"v-messages__message",key:`${p}-${r.value}`},[i.message?i.message({message:f}):f]))]})),{}}}),Uo=me({focused:Boolean,"onUpdate:focused":Qn()},"focus");function Ua(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:xa();const i=tt(e,"focused"),r=X(()=>({[`${a}--focused`]:i.value}));function l(){i.value=!0}function d(){i.value=!1}return{focusClasses:r,isFocused:i,focus:l,blur:d}}const lp=Symbol.for("vuetify:form"),PA=me({disabled:Boolean,fastFail:Boolean,readonly:Boolean,modelValue:{type:Boolean,default:null},validateOn:{type:String,default:"input"}},"form");function EA(e){const a=tt(e,"modelValue"),i=X(()=>e.disabled),r=X(()=>e.readonly),l=Xe(!1),d=Re([]),f=Re([]);async function p(){const C=[];let A=!0;f.value=[],l.value=!0;for(const E of d.value){const _=await E.validate();if(_.length>0&&(A=!1,C.push({id:E.id,errorMessages:_})),!A&&e.fastFail)break}return f.value=C,l.value=!1,{valid:A,errors:f.value}}function y(){d.value.forEach(C=>C.reset())}function k(){d.value.forEach(C=>C.resetValidation())}return He(d,()=>{let C=0,A=0;const E=[];for(const _ of d.value)_.isValid===!1?(A++,E.push({id:_.id,errorMessages:_.errorMessages})):_.isValid===!0&&C++;f.value=E,a.value=A>0?!1:C===d.value.length?!0:null},{deep:!0}),Pt(lp,{register:C=>{let{id:A,validate:E,reset:_,resetValidation:M}=C;d.value.some(F=>F.id===A),d.value.push({id:A,validate:E,reset:_,resetValidation:M,isValid:null,errorMessages:[]})},unregister:C=>{d.value=d.value.filter(A=>A.id!==C)},update:(C,A,E)=>{const _=d.value.find(M=>M.id===C);_&&(_.isValid=A,_.errorMessages=E)},isDisabled:i,isReadonly:r,isValidating:l,isValid:a,items:d,validateOn:Ie(e,"validateOn")}),{errors:f,isDisabled:i,isReadonly:r,isValidating:l,isValid:a,items:d,validate:p,reset:y,resetValidation:k}}function qo(){return ct(lp,null)}const cp=me({disabled:{type:Boolean,default:null},error:Boolean,errorMessages:{type:[Array,String],default:()=>[]},maxErrors:{type:[Number,String],default:1},name:String,label:String,readonly:{type:Boolean,default:null},rules:{type:Array,default:()=>[]},modelValue:null,validateOn:String,validationValue:null,...Uo()},"validation");function up(e){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:xa(),i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:sn();const r=tt(e,"modelValue"),l=X(()=>e.validationValue===void 0?r.value:e.validationValue),d=qo(),f=Re([]),p=Xe(!0),y=X(()=>!!(In(r.value===""?null:r.value).length||In(l.value===""?null:l.value).length)),k=X(()=>!!(e.disabled??(d==null?void 0:d.isDisabled.value))),C=X(()=>!!(e.readonly??(d==null?void 0:d.isReadonly.value))),A=X(()=>e.errorMessages.length?In(e.errorMessages).slice(0,Math.max(0,+e.maxErrors)):f.value),E=X(()=>{let Y=(e.validateOn??(d==null?void 0:d.validateOn.value))||"input";Y==="lazy"&&(Y="input lazy");const H=new Set((Y==null?void 0:Y.split(" "))??[]);return{blur:H.has("blur")||H.has("input"),input:H.has("input"),submit:H.has("submit"),lazy:H.has("lazy")}}),_=X(()=>e.error||e.errorMessages.length?!1:e.rules.length?p.value?f.value.length||E.value.lazy?null:!0:!f.value.length:!0),M=Xe(!1),F=X(()=>({[`${a}--error`]:_.value===!1,[`${a}--dirty`]:y.value,[`${a}--disabled`]:k.value,[`${a}--readonly`]:C.value})),$=X(()=>e.name??_t(i));cr(()=>{d==null||d.register({id:$.value,validate:q,reset:B,resetValidation:L})}),qt(()=>{d==null||d.unregister($.value)}),zt(async()=>{E.value.lazy||await q(!0),d==null||d.update($.value,_.value,A.value)}),Ya(()=>E.value.input,()=>{He(l,()=>{if(l.value!=null)q();else if(e.focused){const Y=He(()=>e.focused,H=>{H||q(),Y()})}})}),Ya(()=>E.value.blur,()=>{He(()=>e.focused,Y=>{Y||q()})}),He(_,()=>{d==null||d.update($.value,_.value,A.value)});function B(){r.value=null,gt(L)}function L(){p.value=!0,E.value.lazy?f.value=[]:q(!0)}async function q(){let Y=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1;const H=[];M.value=!0;for(const J of e.rules){if(H.length>=+(e.maxErrors??1))break;const W=await(typeof J=="function"?J:()=>J)(l.value);if(W!==!0){if(W!==!1&&typeof W!="string"){console.warn(`${W} is not a valid value. Rule functions must return boolean true or a string.`);continue}H.push(W||"")}}return f.value=H,M.value=!1,p.value=Y,f.value}return{errorMessages:A,isDirty:y,isDisabled:k,isReadonly:C,isPristine:p,isValid:_,isValidating:M,reset:B,resetValidation:L,validate:q,validationClasses:F}}const Sa=me({id:String,appendIcon:et,centerAffix:{type:Boolean,default:!0},prependIcon:et,hideDetails:[Boolean,String],hint:String,persistentHint:Boolean,messages:{type:[Array,String],default:()=>[]},direction:{type:String,default:"horizontal",validator:e=>["horizontal","vertical"].includes(e)},"onClick:prepend":Qn(),"onClick:append":Qn(),...We(),...Ht(),...cp()},"VInput"),Ut=Te()({name:"VInput",props:{...Sa()},emits:{"update:modelValue":e=>!0},setup(e,a){let{attrs:i,slots:r,emit:l}=a;const{densityClasses:d}=rn(e),{rtlClasses:f}=$t(),{InputIcon:p}=rp(e),y=sn(),k=X(()=>e.id||`input-${y}`),C=X(()=>`${k.value}-messages`),{errorMessages:A,isDirty:E,isDisabled:_,isReadonly:M,isPristine:F,isValid:$,isValidating:B,reset:L,resetValidation:q,validate:Y,validationClasses:H}=up(e,"v-input",k),J=X(()=>({id:k,messagesId:C,isDirty:E,isDisabled:_,isReadonly:M,isPristine:F,isValid:$,isValidating:B,reset:L,resetValidation:q,validate:Y})),ee=X(()=>{var W;return(W=e.errorMessages)!=null&&W.length||!F.value&&A.value.length?A.value:e.hint&&(e.persistentHint||e.focused)?e.hint:e.messages});return Me(()=>{var ne,oe,le,Ce;const W=!!(r.prepend||e.prependIcon),j=!!(r.append||e.appendIcon),Q=ee.value.length>0,ie=!e.hideDetails||e.hideDetails==="auto"&&(Q||!!r.details);return R("div",{class:["v-input",`v-input--${e.direction}`,{"v-input--center-affix":e.centerAffix},d.value,f.value,H.value,e.class],style:e.style},[W&&R("div",{key:"prepend",class:"v-input__prepend"},[(ne=r.prepend)==null?void 0:ne.call(r,J.value),e.prependIcon&&R(p,{key:"prepend-icon",name:"prepend"},null)]),r.default&&R("div",{class:"v-input__control"},[(oe=r.default)==null?void 0:oe.call(r,J.value)]),j&&R("div",{key:"append",class:"v-input__append"},[e.appendIcon&&R(p,{key:"append-icon",name:"append"},null),(le=r.append)==null?void 0:le.call(r,J.value)]),ie&&R("div",{class:"v-input__details"},[R(op,{id:C.value,active:Q,messages:ee.value},{message:r.message}),(Ce=r.details)==null?void 0:Ce.call(r,J.value)])])}),{reset:L,resetValidation:q,validate:Y}}}),TA=me({...Sa(),..._n(sp(),["inline"])},"VCheckbox"),IA=Te()({name:"VCheckbox",inheritAttrs:!1,props:TA(),emits:{"update:modelValue":e=>!0,"update:focused":e=>!0},setup(e,a){let{attrs:i,slots:r}=a;const l=tt(e,"modelValue"),{isFocused:d,focus:f,blur:p}=Ua(e),y=sn(),k=X(()=>e.id||`checkbox-${y}`);return Me(()=>{const[C,A]=Si(i),[E,_]=Ut.filterProps(e),[M,F]=Zi.filterProps(e);return R(Ut,Ye({class:["v-checkbox",e.class]},C,E,{modelValue:l.value,"onUpdate:modelValue":$=>l.value=$,id:k.value,focused:d.value,style:e.style}),{...r,default:$=>{let{id:B,messagesId:L,isDisabled:q,isReadonly:Y}=$;return R(Zi,Ye(M,{id:B.value,"aria-describedby":L.value,disabled:q.value,readonly:Y.value},A,{modelValue:l.value,"onUpdate:modelValue":H=>l.value=H,onFocus:f,onBlur:p}),r)}})}),{}}});const LA=me({start:Boolean,end:Boolean,icon:et,image:String,...We(),...Ht(),...At(),...wa(),...at(),...dt(),...Bn({variant:"flat"})},"VAvatar"),Wa=Te()({name:"VAvatar",props:LA(),setup(e,a){let{slots:i}=a;const{themeClasses:r}=vt(e),{colorClasses:l,colorStyles:d,variantClasses:f}=Pi(e),{densityClasses:p}=rn(e),{roundedClasses:y}=Lt(e),{sizeClasses:k,sizeStyles:C}=ls(e);return Me(()=>R(e.tag,{class:["v-avatar",{"v-avatar--start":e.start,"v-avatar--end":e.end},r.value,l.value,p.value,y.value,k.value,f.value,e.class],style:[d.value,C.value,e.style]},{default:()=>{var A;return[e.image?R(vi,{key:"image",src:e.image,alt:"",cover:!0},null):e.icon?R(wt,{key:"icon",icon:e.icon},null):(A=i.default)==null?void 0:A.call(i),Ai(!1,"v-avatar")]}})),{}}});const dp=Symbol.for("vuetify:v-chip-group"),_A=me({column:Boolean,filter:Boolean,valueComparator:{type:Function,default:wi},...We(),...ss({selectedClass:"v-chip--selected"}),...at(),...dt(),...Bn({variant:"tonal"})},"VChipGroup"),VA=Te()({name:"VChipGroup",props:_A(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const{themeClasses:r}=vt(e),{isSelected:l,select:d,next:f,prev:p,selected:y}=Ei(e,dp);return Bt({VChip:{color:Ie(e,"color"),disabled:Ie(e,"disabled"),filter:Ie(e,"filter"),variant:Ie(e,"variant")}}),Me(()=>R(e.tag,{class:["v-chip-group",{"v-chip-group--column":e.column},r.value,e.class],style:e.style},{default:()=>{var k;return[(k=i.default)==null?void 0:k.call(i,{isSelected:l,select:d,next:f,prev:p,selected:y.value})]}})),{}}}),RA=me({activeClass:String,appendAvatar:String,appendIcon:et,closable:Boolean,closeIcon:{type:et,default:"$delete"},closeLabel:{type:String,default:"$vuetify.close"},draggable:Boolean,filter:Boolean,filterIcon:{type:String,default:"$complete"},label:Boolean,link:{type:Boolean,default:void 0},pill:Boolean,prependAvatar:String,prependIcon:et,ripple:{type:[Boolean,Object],default:!0},text:String,modelValue:{type:Boolean,default:!0},onClick:Qn(),onClickOnce:Qn(),...Cn(),...We(),...Ht(),...Nt(),...rs(),...At(),...mr(),...wa(),...at({tag:"span"}),...dt(),...Bn({variant:"tonal"})},"VChip"),pr=Te()({name:"VChip",directives:{Ripple:Ga},props:RA(),emits:{"click:close":e=>!0,"update:modelValue":e=>!0,"group:selected":e=>!0,click:e=>!0},setup(e,a){let{attrs:i,emit:r,slots:l}=a;const{t:d}=Rn(),{borderClasses:f}=Fn(e),{colorClasses:p,colorStyles:y,variantClasses:k}=Pi(e),{densityClasses:C}=rn(e),{elevationClasses:A}=Kt(e),{roundedClasses:E}=Lt(e),{sizeClasses:_}=ls(e),{themeClasses:M}=vt(e),F=tt(e,"modelValue"),$=os(e,dp,!1),B=vr(e,i),L=X(()=>e.link!==!1&&B.isLink.value),q=X(()=>!e.disabled&&e.link!==!1&&(!!$||e.link||B.isClickable.value)),Y=X(()=>({"aria-label":d(e.closeLabel),onClick(ee){ee.stopPropagation(),F.value=!1,r("click:close",ee)}}));function H(ee){var W;r("click",ee),q.value&&((W=B.navigate)==null||W.call(B,ee),$==null||$.toggle())}function J(ee){(ee.key==="Enter"||ee.key===" ")&&(ee.preventDefault(),H(ee))}return()=>{const ee=B.isLink.value?"a":e.tag,W=!!(e.appendIcon||e.appendAvatar),j=!!(W||l.append),Q=!!(l.close||e.closable),ie=!!(l.filter||e.filter)&&$,ne=!!(e.prependIcon||e.prependAvatar),oe=!!(ne||l.prepend),le=!$||$.isSelected.value;return F.value&&Et(R(ee,{class:["v-chip",{"v-chip--disabled":e.disabled,"v-chip--label":e.label,"v-chip--link":q.value,"v-chip--filter":ie,"v-chip--pill":e.pill},M.value,f.value,le?p.value:void 0,C.value,A.value,E.value,_.value,k.value,$==null?void 0:$.selectedClass.value,e.class],style:[le?y.value:void 0,e.style],disabled:e.disabled||void 0,draggable:e.draggable,href:B.href.value,tabindex:q.value?0:void 0,onClick:H,onKeydown:q.value&&!L.value&&J},{default:()=>{var Ce;return[Ai(q.value,"v-chip"),ie&&R(Qu,{key:"filter"},{default:()=>[Et(R("div",{class:"v-chip__filter"},[l.filter?R(bt,{key:"filter-defaults",disabled:!e.filterIcon,defaults:{VIcon:{icon:e.filterIcon}}},l.filter):R(wt,{key:"filter-icon",icon:e.filterIcon},null)]),[[Ln,$.isSelected.value]])]}),oe&&R("div",{key:"prepend",class:"v-chip__prepend"},[l.prepend?R(bt,{key:"prepend-defaults",disabled:!ne,defaults:{VAvatar:{image:e.prependAvatar,start:!0},VIcon:{icon:e.prependIcon,start:!0}}},l.prepend):R(Ke,null,[e.prependIcon&&R(wt,{key:"prepend-icon",icon:e.prependIcon,start:!0},null),e.prependAvatar&&R(Wa,{key:"prepend-avatar",image:e.prependAvatar,start:!0},null)])]),R("div",{class:"v-chip__content"},[((Ce=l.default)==null?void 0:Ce.call(l,{isSelected:$==null?void 0:$.isSelected.value,selectedClass:$==null?void 0:$.selectedClass.value,select:$==null?void 0:$.select,toggle:$==null?void 0:$.toggle,value:$==null?void 0:$.value.value,disabled:e.disabled}))??e.text]),j&&R("div",{key:"append",class:"v-chip__append"},[l.append?R(bt,{key:"append-defaults",disabled:!W,defaults:{VAvatar:{end:!0,image:e.appendAvatar},VIcon:{end:!0,icon:e.appendIcon}}},l.append):R(Ke,null,[e.appendIcon&&R(wt,{key:"append-icon",end:!0,icon:e.appendIcon},null),e.appendAvatar&&R(Wa,{key:"append-avatar",end:!0,image:e.appendAvatar},null)])]),Q&&R("div",Ye({key:"close",class:"v-chip__close"},Y.value),[l.close?R(bt,{key:"close-defaults",defaults:{VIcon:{icon:e.closeIcon,size:"x-small"}}},l.close):R(wt,{key:"close-icon",icon:e.closeIcon,size:"x-small"},null)])]}}),[[mn("ripple"),q.value&&e.ripple,null]])}}});const Rc=Symbol.for("vuetify:list");function hp(){const e=ct(Rc,{hasPrepend:Xe(!1),updateHasPrepend:()=>null}),a={hasPrepend:Xe(!1),updateHasPrepend:i=>{i&&(a.hasPrepend.value=i)}};return Pt(Rc,a),e}function fp(){return ct(Rc,null)}const MA={open:e=>{let{id:a,value:i,opened:r,parents:l}=e;if(i){const d=new Set;d.add(a);let f=l.get(a);for(;f!=null;)d.add(f),f=l.get(f);return d}else return r.delete(a),r},select:()=>null},gp={open:e=>{let{id:a,value:i,opened:r,parents:l}=e;if(i){let d=l.get(a);for(r.add(a);d!=null&&d!==a;)r.add(d),d=l.get(d);return r}else r.delete(a);return r},select:()=>null},OA={open:gp.open,select:e=>{let{id:a,value:i,opened:r,parents:l}=e;if(!i)return r;const d=[];let f=l.get(a);for(;f!=null;)d.push(f),f=l.get(f);return new Set(d)}},cd=e=>{const a={select:i=>{let{id:r,value:l,selected:d}=i;if(r=nt(r),e&&!l){const f=Array.from(d.entries()).reduce((p,y)=>{let[k,C]=y;return C==="on"?[...p,k]:p},[]);if(f.length===1&&f[0]===r)return d}return d.set(r,l?"on":"off"),d},in:(i,r,l)=>{let d=new Map;for(const f of i||[])d=a.select({id:f,value:!0,selected:new Map(d),children:r,parents:l});return d},out:i=>{const r=[];for(const[l,d]of i.entries())d==="on"&&r.push(l);return r}};return a},vp=e=>{const a=cd(e);return{select:r=>{let{selected:l,id:d,...f}=r;d=nt(d);const p=l.has(d)?new Map([[d,l.get(d)]]):new Map;return a.select({...f,id:d,selected:p})},in:(r,l,d)=>{let f=new Map;return r!=null&&r.length&&(f=a.in(r.slice(0,1),l,d)),f},out:(r,l,d)=>a.out(r,l,d)}},FA=e=>{const a=cd(e);return{select:r=>{let{id:l,selected:d,children:f,...p}=r;return l=nt(l),f.has(l)?d:a.select({id:l,selected:d,children:f,...p})},in:a.in,out:a.out}},BA=e=>{const a=vp(e);return{select:r=>{let{id:l,selected:d,children:f,...p}=r;return l=nt(l),f.has(l)?d:a.select({id:l,selected:d,children:f,...p})},in:a.in,out:a.out}},DA=e=>{const a={select:i=>{let{id:r,value:l,selected:d,children:f,parents:p}=i;r=nt(r);const y=new Map(d),k=[r];for(;k.length;){const A=k.shift();d.set(A,l?"on":"off"),f.has(A)&&k.push(...f.get(A))}let C=p.get(r);for(;C;){const A=f.get(C),E=A.every(M=>d.get(M)==="on"),_=A.every(M=>!d.has(M)||d.get(M)==="off");d.set(C,E?"on":_?"off":"indeterminate"),C=p.get(C)}return e&&!l&&Array.from(d.entries()).reduce((E,_)=>{let[M,F]=_;return F==="on"?[...E,M]:E},[]).length===0?y:d},in:(i,r,l)=>{let d=new Map;for(const f of i||[])d=a.select({id:f,value:!0,selected:new Map(d),children:r,parents:l});return d},out:(i,r)=>{const l=[];for(const[d,f]of i.entries())f==="on"&&!r.has(d)&&l.push(d);return l}};return a},Qs=Symbol.for("vuetify:nested"),mp={id:Xe(),root:{register:()=>null,unregister:()=>null,parents:Re(new Map),children:Re(new Map),open:()=>null,openOnSelect:()=>null,select:()=>null,opened:Re(new Set),selected:Re(new Map),selectedValues:Re([])}},zA=me({selectStrategy:[String,Function],openStrategy:[String,Object],opened:Array,selected:Array,mandatory:Boolean},"nested"),NA=e=>{let a=!1;const i=Re(new Map),r=Re(new Map),l=tt(e,"opened",e.opened,A=>new Set(A),A=>[...A.values()]),d=X(()=>{if(typeof e.selectStrategy=="object")return e.selectStrategy;switch(e.selectStrategy){case"single-leaf":return BA(e.mandatory);case"leaf":return FA(e.mandatory);case"independent":return cd(e.mandatory);case"single-independent":return vp(e.mandatory);case"classic":default:return DA(e.mandatory)}}),f=X(()=>{if(typeof e.openStrategy=="object")return e.openStrategy;switch(e.openStrategy){case"list":return OA;case"single":return MA;case"multiple":default:return gp}}),p=tt(e,"selected",e.selected,A=>d.value.in(A,i.value,r.value),A=>d.value.out(A,i.value,r.value));qt(()=>{a=!0});function y(A){const E=[];let _=A;for(;_!=null;)E.unshift(_),_=r.value.get(_);return E}const k=Wt("nested"),C={id:Xe(),root:{opened:l,selected:p,selectedValues:X(()=>{const A=[];for(const[E,_]of p.value.entries())_==="on"&&A.push(E);return A}),register:(A,E,_)=>{E&&A!==E&&r.value.set(A,E),_&&i.value.set(A,[]),E!=null&&i.value.set(E,[...i.value.get(E)||[],A])},unregister:A=>{if(a)return;i.value.delete(A);const E=r.value.get(A);if(E){const _=i.value.get(E)??[];i.value.set(E,_.filter(M=>M!==A))}r.value.delete(A),l.value.delete(A)},open:(A,E,_)=>{k.emit("click:open",{id:A,value:E,path:y(A),event:_});const M=f.value.open({id:A,value:E,opened:new Set(l.value),children:i.value,parents:r.value,event:_});M&&(l.value=M)},openOnSelect:(A,E,_)=>{const M=f.value.select({id:A,value:E,selected:new Map(p.value),opened:new Set(l.value),children:i.value,parents:r.value,event:_});M&&(l.value=M)},select:(A,E,_)=>{k.emit("click:select",{id:A,value:E,path:y(A),event:_});const M=d.value.select({id:A,value:E,selected:new Map(p.value),children:i.value,parents:r.value,event:_});M&&(p.value=M),C.root.openOnSelect(A,E,_)},children:i,parents:r}};return Pt(Qs,C),C.root},pp=(e,a)=>{const i=ct(Qs,mp),r=Symbol(sn()),l=X(()=>e.value!==void 0?e.value:r),d={...i,id:l,open:(f,p)=>i.root.open(l.value,f,p),openOnSelect:(f,p)=>i.root.openOnSelect(l.value,f,p),isOpen:X(()=>i.root.opened.value.has(l.value)),parent:X(()=>i.root.parents.value.get(l.value)),select:(f,p)=>i.root.select(l.value,f,p),isSelected:X(()=>i.root.selected.value.get(nt(l.value))==="on"),isIndeterminate:X(()=>i.root.selected.value.get(l.value)==="indeterminate"),isLeaf:X(()=>!i.root.children.value.get(l.value)),isGroupActivator:i.isGroupActivator};return!i.isGroupActivator&&i.root.register(l.value,i.id.value,a),qt(()=>{!i.isGroupActivator&&i.root.unregister(l.value)}),a&&Pt(Qs,d),d},HA=()=>{const e=ct(Qs,mp);Pt(Qs,{...e,isGroupActivator:!0})},XA=Vn({name:"VListGroupActivator",setup(e,a){let{slots:i}=a;return HA(),()=>{var r;return(r=i.default)==null?void 0:r.call(i)}}}),YA=me({activeColor:String,baseColor:String,color:String,collapseIcon:{type:et,default:"$collapse"},expandIcon:{type:et,default:"$expand"},prependIcon:et,appendIcon:et,fluid:Boolean,subgroup:Boolean,title:String,value:null,...We(),...at()},"VListGroup"),Mc=Te()({name:"VListGroup",props:YA(),setup(e,a){let{slots:i}=a;const{isOpen:r,open:l,id:d}=pp(Ie(e,"value"),!0),f=X(()=>`v-list-group--id-${String(d.value)}`),p=fp(),{isBooted:y}=Ci();function k(_){l(!r.value,_)}const C=X(()=>({onClick:k,class:"v-list-group__header",id:f.value})),A=X(()=>r.value?e.collapseIcon:e.expandIcon),E=X(()=>({VListItem:{active:r.value,activeColor:e.activeColor,baseColor:e.baseColor,color:e.color,prependIcon:e.prependIcon||e.subgroup&&A.value,appendIcon:e.appendIcon||!e.subgroup&&A.value,title:e.title,value:e.value}}));return Me(()=>R(e.tag,{class:["v-list-group",{"v-list-group--prepend":p==null?void 0:p.hasPrepend.value,"v-list-group--fluid":e.fluid,"v-list-group--subgroup":e.subgroup,"v-list-group--open":r.value},e.class],style:e.style},{default:()=>[i.activator&&R(bt,{defaults:E.value},{default:()=>[R(XA,null,{default:()=>[i.activator({props:C.value,isOpen:r.value})]})]}),R(Xn,{transition:{component:Wo},disabled:!y.value},{default:()=>{var _;return[Et(R("div",{class:"v-list-group__items",role:"group","aria-labelledby":f.value},[(_=i.default)==null?void 0:_.call(i)]),[[Ln,r.value]])]}})]})),{}}});const bp=Gn("v-list-item-subtitle"),xp=Gn("v-list-item-title"),WA=me({active:{type:Boolean,default:void 0},activeClass:String,activeColor:String,appendAvatar:String,appendIcon:et,baseColor:String,disabled:Boolean,lines:String,link:{type:Boolean,default:void 0},nav:Boolean,prependAvatar:String,prependIcon:et,ripple:{type:[Boolean,Object],default:!0},subtitle:[String,Number,Boolean],title:[String,Number,Boolean],value:null,onClick:Qn(),onClickOnce:Qn(),...Cn(),...We(),...Ht(),...Mn(),...Nt(),...At(),...mr(),...at(),...dt(),...Bn({variant:"text"})},"VListItem"),va=Te()({name:"VListItem",directives:{Ripple:Ga},props:WA(),emits:{click:e=>!0},setup(e,a){let{attrs:i,slots:r,emit:l}=a;const d=vr(e,i),f=X(()=>e.value===void 0?d.href.value:e.value),{select:p,isSelected:y,isIndeterminate:k,isGroupActivator:C,root:A,parent:E,openOnSelect:_}=pp(f,!1),M=fp(),F=X(()=>{var he;return e.active!==!1&&(e.active||((he=d.isActive)==null?void 0:he.value)||y.value)}),$=X(()=>e.link!==!1&&d.isLink.value),B=X(()=>!e.disabled&&e.link!==!1&&(e.link||d.isClickable.value||e.value!=null&&!!M)),L=X(()=>e.rounded||e.nav),q=X(()=>e.color??e.activeColor),Y=X(()=>({color:F.value?q.value??e.baseColor:e.baseColor,variant:e.variant}));He(()=>{var he;return(he=d.isActive)==null?void 0:he.value},he=>{he&&E.value!=null&&A.open(E.value,!0),he&&_(he)},{immediate:!0});const{themeClasses:H}=vt(e),{borderClasses:J}=Fn(e),{colorClasses:ee,colorStyles:W,variantClasses:j}=Pi(Y),{densityClasses:Q}=rn(e),{dimensionStyles:ie}=On(e),{elevationClasses:ne}=Kt(e),{roundedClasses:oe}=Lt(L),le=X(()=>e.lines?`v-list-item--${e.lines}-line`:void 0),Ce=X(()=>({isActive:F.value,select:p,isSelected:y.value,isIndeterminate:k.value}));function ye(he){var Se;l("click",he),!(C||!B.value)&&((Se=d.navigate)==null||Se.call(d,he),e.value!=null&&p(!y.value,he))}function fe(he){(he.key==="Enter"||he.key===" ")&&(he.preventDefault(),ye(he))}return Me(()=>{const he=$.value?"a":e.tag,Se=r.title||e.title,Ee=r.subtitle||e.subtitle,De=!!(e.appendAvatar||e.appendIcon),Fe=!!(De||r.append),Ze=!!(e.prependAvatar||e.prependIcon),Je=!!(Ze||r.prepend);return M==null||M.updateHasPrepend(Je),e.activeColor&&wk("active-color",["color","base-color"]),Et(R(he,{class:["v-list-item",{"v-list-item--active":F.value,"v-list-item--disabled":e.disabled,"v-list-item--link":B.value,"v-list-item--nav":e.nav,"v-list-item--prepend":!Je&&(M==null?void 0:M.hasPrepend.value),[`${e.activeClass}`]:e.activeClass&&F.value},H.value,J.value,ee.value,Q.value,ne.value,le.value,oe.value,j.value,e.class],style:[W.value,ie.value,e.style],href:d.href.value,tabindex:B.value?M?-2:0:void 0,onClick:ye,onKeydown:B.value&&!$.value&&fe},{default:()=>{var ze;return[Ai(B.value||F.value,"v-list-item"),Je&&R("div",{key:"prepend",class:"v-list-item__prepend"},[r.prepend?R(bt,{key:"prepend-defaults",disabled:!Ze,defaults:{VAvatar:{density:e.density,image:e.prependAvatar},VIcon:{density:e.density,icon:e.prependIcon},VListItemAction:{start:!0}}},{default:()=>{var ue;return[(ue=r.prepend)==null?void 0:ue.call(r,Ce.value)]}}):R(Ke,null,[e.prependAvatar&&R(Wa,{key:"prepend-avatar",density:e.density,image:e.prependAvatar},null),e.prependIcon&&R(wt,{key:"prepend-icon",density:e.density,icon:e.prependIcon},null)]),R("div",{class:"v-list-item__spacer"},null)]),R("div",{class:"v-list-item__content","data-no-activator":""},[Se&&R(xp,{key:"title"},{default:()=>{var ue;return[((ue=r.title)==null?void 0:ue.call(r,{title:e.title}))??e.title]}}),Ee&&R(bp,{key:"subtitle"},{default:()=>{var ue;return[((ue=r.subtitle)==null?void 0:ue.call(r,{subtitle:e.subtitle}))??e.subtitle]}}),(ze=r.default)==null?void 0:ze.call(r,Ce.value)]),Fe&&R("div",{key:"append",class:"v-list-item__append"},[r.append?R(bt,{key:"append-defaults",disabled:!De,defaults:{VAvatar:{density:e.density,image:e.appendAvatar},VIcon:{density:e.density,icon:e.appendIcon},VListItemAction:{end:!0}}},{default:()=>{var ue;return[(ue=r.append)==null?void 0:ue.call(r,Ce.value)]}}):R(Ke,null,[e.appendIcon&&R(wt,{key:"append-icon",density:e.density,icon:e.appendIcon},null),e.appendAvatar&&R(Wa,{key:"append-avatar",density:e.density,image:e.appendAvatar},null)]),R("div",{class:"v-list-item__spacer"},null)])]}}),[[mn("ripple"),B.value&&e.ripple]])}),{}}}),$A=me({color:String,inset:Boolean,sticky:Boolean,title:String,...We(),...at()},"VListSubheader"),yp=Te()({name:"VListSubheader",props:$A(),setup(e,a){let{slots:i}=a;const{textColorClasses:r,textColorStyles:l}=an(Ie(e,"color"));return Me(()=>{const d=!!(i.default||e.title);return R(e.tag,{class:["v-list-subheader",{"v-list-subheader--inset":e.inset,"v-list-subheader--sticky":e.sticky},r.value,e.class],style:[{textColorStyles:l},e.style]},{default:()=>{var f;return[d&&R("div",{class:"v-list-subheader__text"},[((f=i.default)==null?void 0:f.call(i))??e.title])]}})}),{}}});const jA=me({color:String,inset:Boolean,length:[Number,String],thickness:[Number,String],vertical:Boolean,...We(),...dt()},"VDivider"),wp=Te()({name:"VDivider",props:jA(),setup(e,a){let{attrs:i}=a;const{themeClasses:r}=vt(e),{textColorClasses:l,textColorStyles:d}=an(Ie(e,"color")),f=X(()=>{const p={};return e.length&&(p[e.vertical?"maxHeight":"maxWidth"]=$e(e.length)),e.thickness&&(p[e.vertical?"borderRightWidth":"borderTopWidth"]=$e(e.thickness)),p});return Me(()=>R("hr",{class:[{"v-divider":!0,"v-divider--inset":e.inset,"v-divider--vertical":e.vertical},r.value,l.value,e.class],style:[f.value,d.value,e.style],"aria-orientation":!i.role||i.role==="separator"?e.vertical?"vertical":"horizontal":void 0,role:`${i.role||"separator"}`},null)),{}}}),GA=me({items:Array},"VListChildren"),Sp=Te()({name:"VListChildren",props:GA(),setup(e,a){let{slots:i}=a;return hp(),()=>{var r,l;return((r=i.default)==null?void 0:r.call(i))??((l=e.items)==null?void 0:l.map(d=>{var _,M;let{children:f,props:p,type:y,raw:k}=d;if(y==="divider")return((_=i.divider)==null?void 0:_.call(i,{props:p}))??R(wp,p,null);if(y==="subheader")return((M=i.subheader)==null?void 0:M.call(i,{props:p}))??R(yp,p,null);const C={subtitle:i.subtitle?F=>{var $;return($=i.subtitle)==null?void 0:$.call(i,{...F,item:k})}:void 0,prepend:i.prepend?F=>{var $;return($=i.prepend)==null?void 0:$.call(i,{...F,item:k})}:void 0,append:i.append?F=>{var $;return($=i.append)==null?void 0:$.call(i,{...F,item:k})}:void 0,title:i.title?F=>{var $;return($=i.title)==null?void 0:$.call(i,{...F,item:k})}:void 0},[A,E]=Mc.filterProps(p);return f?R(Mc,Ye({value:p==null?void 0:p.value},A),{activator:F=>{let{props:$}=F;return i.header?i.header({props:{...p,...$}}):R(va,Ye(p,$),C)},default:()=>R(Sp,{items:f},i)}):i.item?i.item({props:p}):R(va,p,C)}))}}}),kp=me({items:{type:Array,default:()=>[]},itemTitle:{type:[String,Array,Function],default:"title"},itemValue:{type:[String,Array,Function],default:"value"},itemChildren:{type:[Boolean,String,Array,Function],default:"children"},itemProps:{type:[Boolean,String,Array,Function],default:"props"},returnObject:Boolean},"list-items");function Bi(e,a){const i=Qt(a,e.itemTitle,a),r=e.returnObject?a:Qt(a,e.itemValue,i),l=Qt(a,e.itemChildren),d=e.itemProps===!0?typeof a=="object"&&a!=null&&!Array.isArray(a)?"children"in a?gi(a,["children"])[1]:a:void 0:Qt(a,e.itemProps),f={title:i,value:r,...d};return{title:String(f.title??""),value:f.value,props:f,children:Array.isArray(l)?Cp(e,l):void 0,raw:a}}function Cp(e,a){const i=[];for(const r of a)i.push(Bi(e,r));return i}function ud(e){const a=X(()=>Cp(e,e.items));return UA(a,i=>Bi(e,i))}function UA(e,a){function i(l){return l.filter(d=>d!==null||e.value.some(f=>f.value===null)).map(d=>e.value.find(p=>wi(d,p.value))??a(d))}function r(l){return l.map(d=>{let{value:f}=d;return f})}return{items:e,transformIn:i,transformOut:r}}function qA(e){return typeof e=="string"||typeof e=="number"||typeof e=="boolean"}function KA(e,a){const i=Qt(a,e.itemType,"item"),r=qA(a)?a:Qt(a,e.itemTitle),l=Qt(a,e.itemValue,void 0),d=Qt(a,e.itemChildren),f=e.itemProps===!0?gi(a,["children"])[1]:Qt(a,e.itemProps),p={title:r,value:l,...f};return{type:i,title:p.title,value:p.value,props:p,children:i==="item"&&d?Ap(e,d):void 0,raw:a}}function Ap(e,a){const i=[];for(const r of a)i.push(KA(e,r));return i}function ZA(e){return{items:X(()=>Ap(e,e.items))}}const JA=me({baseColor:String,activeColor:String,activeClass:String,bgColor:String,disabled:Boolean,lines:{type:[Boolean,String],default:"one"},nav:Boolean,...zA({selectStrategy:"single-leaf",openStrategy:"list"}),...Cn(),...We(),...Ht(),...Mn(),...Nt(),itemType:{type:String,default:"type"},...kp(),...At(),...at(),...dt(),...Bn({variant:"text"})},"VList"),Ko=Te()({name:"VList",props:JA(),emits:{"update:selected":e=>!0,"update:opened":e=>!0,"click:open":e=>!0,"click:select":e=>!0},setup(e,a){let{slots:i}=a;const{items:r}=ZA(e),{themeClasses:l}=vt(e),{backgroundColorClasses:d,backgroundColorStyles:f}=Vt(Ie(e,"bgColor")),{borderClasses:p}=Fn(e),{densityClasses:y}=rn(e),{dimensionStyles:k}=On(e),{elevationClasses:C}=Kt(e),{roundedClasses:A}=Lt(e),{open:E,select:_}=NA(e),M=X(()=>e.lines?`v-list--${e.lines}-line`:void 0),F=Ie(e,"activeColor"),$=Ie(e,"baseColor"),B=Ie(e,"color");hp(),Bt({VListGroup:{activeColor:F,baseColor:$,color:B},VListItem:{activeClass:Ie(e,"activeClass"),activeColor:F,baseColor:$,color:B,density:Ie(e,"density"),disabled:Ie(e,"disabled"),lines:Ie(e,"lines"),nav:Ie(e,"nav"),variant:Ie(e,"variant")}});const L=Xe(!1),q=Re();function Y(j){L.value=!0}function H(j){L.value=!1}function J(j){var Q;!L.value&&!(j.relatedTarget&&((Q=q.value)!=null&&Q.contains(j.relatedTarget)))&&W()}function ee(j){if(q.value){if(j.key==="ArrowDown")W("next");else if(j.key==="ArrowUp")W("prev");else if(j.key==="Home")W("first");else if(j.key==="End")W("last");else return;j.preventDefault()}}function W(j){if(q.value)return io(q.value,j)}return Me(()=>R(e.tag,{ref:q,class:["v-list",{"v-list--disabled":e.disabled,"v-list--nav":e.nav},l.value,d.value,p.value,y.value,C.value,M.value,A.value,e.class],style:[f.value,k.value,e.style],tabindex:e.disabled||L.value?-1:0,role:"listbox","aria-activedescendant":void 0,onFocusin:Y,onFocusout:H,onFocus:J,onKeydown:ee},{default:()=>[R(Sp,{items:r.value},i)]})),{open:E,select:_,focus:W}}}),QA=Gn("v-list-img"),eP=me({start:Boolean,end:Boolean,...We(),...at()},"VListItemAction"),tP=Te()({name:"VListItemAction",props:eP(),setup(e,a){let{slots:i}=a;return Me(()=>R(e.tag,{class:["v-list-item-action",{"v-list-item-action--start":e.start,"v-list-item-action--end":e.end},e.class],style:e.style},i)),{}}}),nP=me({start:Boolean,end:Boolean,...We(),...at()},"VListItemMedia"),aP=Te()({name:"VListItemMedia",props:nP(),setup(e,a){let{slots:i}=a;return Me(()=>R(e.tag,{class:["v-list-item-media",{"v-list-item-media--start":e.start,"v-list-item-media--end":e.end},e.class],style:e.style},i)),{}}});function _l(e,a){return{x:e.x+a.x,y:e.y+a.y}}function iP(e,a){return{x:e.x-a.x,y:e.y-a.y}}function Af(e,a){if(e.side==="top"||e.side==="bottom"){const{side:i,align:r}=e,l=r==="left"?0:r==="center"?a.width/2:r==="right"?a.width:r,d=i==="top"?0:i==="bottom"?a.height:i;return _l({x:l,y:d},a)}else if(e.side==="left"||e.side==="right"){const{side:i,align:r}=e,l=i==="left"?0:i==="right"?a.width:i,d=r==="top"?0:r==="center"?a.height/2:r==="bottom"?a.height:r;return _l({x:l,y:d},a)}return _l({x:a.width/2,y:a.height/2},a)}const Pp={static:oP,connected:cP},sP=me({locationStrategy:{type:[String,Function],default:"static",validator:e=>typeof e=="function"||e in Pp},location:{type:String,default:"bottom"},origin:{type:String,default:"auto"},offset:[Number,String,Array]},"VOverlay-location-strategies");function rP(e,a){const i=Re({}),r=Re();St&&(Ya(()=>!!(a.isActive.value&&e.locationStrategy),d=>{var f,p;He(()=>e.locationStrategy,d),nn(()=>{r.value=void 0}),typeof e.locationStrategy=="function"?r.value=(f=e.locationStrategy(a,e,i))==null?void 0:f.updateLocation:r.value=(p=Pp[e.locationStrategy](a,e,i))==null?void 0:p.updateLocation}),window.addEventListener("resize",l,{passive:!0}),nn(()=>{window.removeEventListener("resize",l),r.value=void 0}));function l(d){var f;(f=r.value)==null||f.call(r,d)}return{contentStyles:i,updateLocation:r}}function oP(){}function lP(e,a){a?e.style.removeProperty("left"):e.style.removeProperty("right");const i=Xu(e);return a?i.x+=parseFloat(e.style.right||0):i.x-=parseFloat(e.style.left||0),i.y-=parseFloat(e.style.top||0),i}function cP(e,a,i){Dk(e.activatorEl.value)&&Object.assign(i.value,{position:"fixed",top:0,[e.isRtl.value?"right":"left"]:0});const{preferredAnchor:l,preferredOrigin:d}=Nu(()=>{const M=xc(a.location,e.isRtl.value),F=a.origin==="overlap"?M:a.origin==="auto"?El(M):xc(a.origin,e.isRtl.value);return M.side===F.side&&M.align===Tl(F).align?{preferredAnchor:Uh(M),preferredOrigin:Uh(F)}:{preferredAnchor:M,preferredOrigin:F}}),[f,p,y,k]=["minWidth","minHeight","maxWidth","maxHeight"].map(M=>X(()=>{const F=parseFloat(a[M]);return isNaN(F)?1/0:F})),C=X(()=>{if(Array.isArray(a.offset))return a.offset;if(typeof a.offset=="string"){const M=a.offset.split(" ").map(parseFloat);return M.length<2&&M.push(0),M}return typeof a.offset=="number"?[a.offset,0]:[0,0]});let A=!1;const E=new ResizeObserver(()=>{A&&_()});He([e.activatorEl,e.contentEl],(M,F)=>{let[$,B]=M,[L,q]=F;L&&E.unobserve(L),$&&E.observe($),q&&E.unobserve(q),B&&E.observe(B)},{immediate:!0}),nn(()=>{E.disconnect()});function _(){if(A=!1,requestAnimationFrame(()=>{requestAnimationFrame(()=>A=!0)}),!e.activatorEl.value||!e.contentEl.value)return;const M=e.activatorEl.value.getBoundingClientRect(),F=lP(e.contentEl.value,e.isRtl.value),$=ro(e.contentEl.value),B=12;$.length||($.push(document.documentElement),e.contentEl.value.style.top&&e.contentEl.value.style.left||(F.x-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-x")||0),F.y-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-y")||0)));const L=$.reduce((ie,ne)=>{const oe=ne.getBoundingClientRect(),le=new Hi({x:ne===document.documentElement?0:oe.x,y:ne===document.documentElement?0:oe.y,width:ne.clientWidth,height:ne.clientHeight});return ie?new Hi({x:Math.max(ie.left,le.left),y:Math.max(ie.top,le.top),width:Math.min(ie.right,le.right)-Math.max(ie.left,le.left),height:Math.min(ie.bottom,le.bottom)-Math.max(ie.top,le.top)}):le},void 0);L.x+=B,L.y+=B,L.width-=B*2,L.height-=B*2;let q={anchor:l.value,origin:d.value};function Y(ie){const ne=new Hi(F),oe=Af(ie.anchor,M),le=Af(ie.origin,ne);let{x:Ce,y:ye}=iP(oe,le);switch(ie.anchor.side){case"top":ye-=C.value[0];break;case"bottom":ye+=C.value[0];break;case"left":Ce-=C.value[0];break;case"right":Ce+=C.value[0];break}switch(ie.anchor.align){case"top":ye-=C.value[1];break;case"bottom":ye+=C.value[1];break;case"left":Ce-=C.value[1];break;case"right":Ce+=C.value[1];break}return ne.x+=Ce,ne.y+=ye,ne.width=Math.min(ne.width,y.value),ne.height=Math.min(ne.height,k.value),{overflows:Kh(ne,L),x:Ce,y:ye}}let H=0,J=0;const ee={x:0,y:0},W={x:!1,y:!1};let j=-1;for(;!(j++>10);){const{x:ie,y:ne,overflows:oe}=Y(q);H+=ie,J+=ne,F.x+=ie,F.y+=ne;{const le=qh(q.anchor),Ce=oe.x.before||oe.x.after,ye=oe.y.before||oe.y.after;let fe=!1;if(["x","y"].forEach(he=>{if(he==="x"&&Ce&&!W.x||he==="y"&&ye&&!W.y){const Se={anchor:{...q.anchor},origin:{...q.origin}},Ee=he==="x"?le==="y"?Tl:El:le==="y"?El:Tl;Se.anchor=Ee(Se.anchor),Se.origin=Ee(Se.origin);const{overflows:De}=Y(Se);(De[he].before<=oe[he].before&&De[he].after<=oe[he].after||De[he].before+De[he].after<(oe[he].before+oe[he].after)/2)&&(q=Se,fe=W[he]=!0)}}),fe)continue}oe.x.before&&(H+=oe.x.before,F.x+=oe.x.before),oe.x.after&&(H-=oe.x.after,F.x-=oe.x.after),oe.y.before&&(J+=oe.y.before,F.y+=oe.y.before),oe.y.after&&(J-=oe.y.after,F.y-=oe.y.after);{const le=Kh(F,L);ee.x=L.width-le.x.before-le.x.after,ee.y=L.height-le.y.before-le.y.after,H+=le.x.before,F.x+=le.x.before,J+=le.y.before,F.y+=le.y.before}break}const Q=qh(q.anchor);return Object.assign(i.value,{"--v-overlay-anchor-origin":`${q.anchor.side} ${q.anchor.align}`,transformOrigin:`${q.origin.side} ${q.origin.align}`,top:$e(Vl(J)),left:e.isRtl.value?void 0:$e(Vl(H)),right:e.isRtl.value?$e(Vl(-H)):void 0,minWidth:$e(Q==="y"?Math.min(f.value,M.width):f.value),maxWidth:$e(Pf(en(ee.x,f.value===1/0?0:f.value,y.value))),maxHeight:$e(Pf(en(ee.y,p.value===1/0?0:p.value,k.value)))}),{available:ee,contentBox:F}}return He(()=>[l.value,d.value,a.offset,a.minWidth,a.minHeight,a.maxWidth,a.maxHeight],()=>_()),gt(()=>{const M=_();if(!M)return;const{available:F,contentBox:$}=M;$.height>F.y&&requestAnimationFrame(()=>{_(),requestAnimationFrame(()=>{_()})})}),{updateLocation:_}}function Vl(e){return Math.round(e*devicePixelRatio)/devicePixelRatio}function Pf(e){return Math.ceil(e*devicePixelRatio)/devicePixelRatio}let Oc=!0;const co=[];function uP(e){!Oc||co.length?(co.push(e),Fc()):(Oc=!1,e(),Fc())}let Ef=-1;function Fc(){cancelAnimationFrame(Ef),Ef=requestAnimationFrame(()=>{const e=co.shift();e&&e(),co.length?Fc():Oc=!0})}const Ur={none:null,close:fP,block:gP,reposition:vP},dP=me({scrollStrategy:{type:[String,Function],default:"block",validator:e=>typeof e=="function"||e in Ur}},"VOverlay-scroll-strategies");function hP(e,a){if(!St)return;let i;vn(async()=>{i==null||i.stop(),a.isActive.value&&e.scrollStrategy&&(i=Ji(),await gt(),i.active&&i.run(()=>{var r;typeof e.scrollStrategy=="function"?e.scrollStrategy(a,e,i):(r=Ur[e.scrollStrategy])==null||r.call(Ur,a,e,i)}))}),nn(()=>{i==null||i.stop()})}function fP(e){function a(i){e.isActive.value=!1}Ep(e.activatorEl.value??e.contentEl.value,a)}function gP(e,a){var f;const i=(f=e.root.value)==null?void 0:f.offsetParent,r=[...new Set([...ro(e.activatorEl.value,a.contained?i:void 0),...ro(e.contentEl.value,a.contained?i:void 0)])].filter(p=>!p.classList.contains("v-overlay-scroll-blocked")),l=window.innerWidth-document.documentElement.offsetWidth,d=(p=>ju(p)&&p)(i||document.documentElement);d&&e.root.value.classList.add("v-overlay--scroll-blocked"),r.forEach((p,y)=>{p.style.setProperty("--v-body-scroll-x",$e(-p.scrollLeft)),p.style.setProperty("--v-body-scroll-y",$e(-p.scrollTop)),p!==document.documentElement&&p.style.setProperty("--v-scrollbar-offset",$e(l)),p.classList.add("v-overlay-scroll-blocked")}),nn(()=>{r.forEach((p,y)=>{const k=parseFloat(p.style.getPropertyValue("--v-body-scroll-x")),C=parseFloat(p.style.getPropertyValue("--v-body-scroll-y"));p.style.removeProperty("--v-body-scroll-x"),p.style.removeProperty("--v-body-scroll-y"),p.style.removeProperty("--v-scrollbar-offset"),p.classList.remove("v-overlay-scroll-blocked"),p.scrollLeft=-k,p.scrollTop=-C}),d&&e.root.value.classList.remove("v-overlay--scroll-blocked")})}function vP(e,a,i){let r=!1,l=-1,d=-1;function f(p){uP(()=>{var C,A;const y=performance.now();(A=(C=e.updateLocation).value)==null||A.call(C,p),r=(performance.now()-y)/(1e3/60)>2})}d=(typeof requestIdleCallback>"u"?p=>p():requestIdleCallback)(()=>{i.run(()=>{Ep(e.activatorEl.value??e.contentEl.value,p=>{r?(cancelAnimationFrame(l),l=requestAnimationFrame(()=>{l=requestAnimationFrame(()=>{f(p)})})):f(p)})})}),nn(()=>{typeof cancelIdleCallback<"u"&&cancelIdleCallback(d),cancelAnimationFrame(l)})}function Ep(e,a){const i=[document,...ro(e)];i.forEach(r=>{r.addEventListener("scroll",a,{passive:!0})}),nn(()=>{i.forEach(r=>{r.removeEventListener("scroll",a)})})}const Bc=Symbol.for("vuetify:v-menu"),Tp=me({closeDelay:[Number,String],openDelay:[Number,String]},"delay");function Ip(e,a){const i={},r=l=>()=>{if(!St)return Promise.resolve(!0);const d=l==="openDelay";return i.closeDelay&&window.clearTimeout(i.closeDelay),delete i.closeDelay,i.openDelay&&window.clearTimeout(i.openDelay),delete i.openDelay,new Promise(f=>{const p=parseInt(e[l]??0,10);i[l]=window.setTimeout(()=>{a==null||a(d),f(d)},p)})};return{runCloseDelay:r("closeDelay"),runOpenDelay:r("openDelay")}}const mP=me({activator:[String,Object],activatorProps:{type:Object,default:()=>({})},openOnClick:{type:Boolean,default:void 0},openOnHover:Boolean,openOnFocus:{type:Boolean,default:void 0},closeOnContentClick:Boolean,...Tp()},"VOverlay-activator");function pP(e,a){let{isActive:i,isTop:r}=a;const l=Re();let d=!1,f=!1,p=!0;const y=X(()=>e.openOnFocus||e.openOnFocus==null&&e.openOnHover),k=X(()=>e.openOnClick||e.openOnClick==null&&!e.openOnHover&&!y.value),{runOpenDelay:C,runCloseDelay:A}=Ip(e,q=>{q===(e.openOnHover&&d||y.value&&f)&&!(e.openOnHover&&i.value&&!r.value)&&(i.value!==q&&(p=!0),i.value=q)}),E={onClick:q=>{q.stopPropagation(),l.value=q.currentTarget||q.target,i.value=!i.value},onMouseenter:q=>{var Y;(Y=q.sourceCapabilities)!=null&&Y.firesTouchEvents||(d=!0,l.value=q.currentTarget||q.target,C())},onMouseleave:q=>{d=!1,A()},onFocus:q=>{Ui(q.target,":focus-visible")!==!1&&(f=!0,q.stopPropagation(),l.value=q.currentTarget||q.target,C())},onBlur:q=>{f=!1,q.stopPropagation(),A()}},_=X(()=>{const q={};return k.value&&(q.onClick=E.onClick),e.openOnHover&&(q.onMouseenter=E.onMouseenter,q.onMouseleave=E.onMouseleave),y.value&&(q.onFocus=E.onFocus,q.onBlur=E.onBlur),q}),M=X(()=>{const q={};if(e.openOnHover&&(q.onMouseenter=()=>{d=!0,C()},q.onMouseleave=()=>{d=!1,A()}),y.value&&(q.onFocusin=()=>{f=!0,C()},q.onFocusout=()=>{f=!1,A()}),e.closeOnContentClick){const Y=ct(Bc,null);q.onClick=()=>{i.value=!1,Y==null||Y.closeParents()}}return q}),F=X(()=>{const q={};return e.openOnHover&&(q.onMouseenter=()=>{p&&(d=!0,p=!1,C())},q.onMouseleave=()=>{d=!1,A()}),q});He(r,q=>{q&&(e.openOnHover&&!d&&(!y.value||!f)||y.value&&!f&&(!e.openOnHover||!d))&&(i.value=!1)});const $=Re();vn(()=>{$.value&>(()=>{l.value=pc($.value)})});const B=Wt("useActivator");let L;return He(()=>!!e.activator,q=>{q&&St?(L=Ji(),L.run(()=>{bP(e,B,{activatorEl:l,activatorEvents:_})})):L&&L.stop()},{flush:"post",immediate:!0}),nn(()=>{L==null||L.stop()}),{activatorEl:l,activatorRef:$,activatorEvents:_,contentEvents:M,scrimEvents:F}}function bP(e,a,i){let{activatorEl:r,activatorEvents:l}=i;He(()=>e.activator,(y,k)=>{if(k&&y!==k){const C=p(k);C&&f(C)}y&>(()=>d())},{immediate:!0}),He(()=>e.activatorProps,()=>{d()}),nn(()=>{f()});function d(){let y=arguments.length>0&&arguments[0]!==void 0?arguments[0]:p(),k=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e.activatorProps;y&&hk(y,Ye(l.value,k))}function f(){let y=arguments.length>0&&arguments[0]!==void 0?arguments[0]:p(),k=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e.activatorProps;y&&fk(y,Ye(l.value,k))}function p(){var C,A;let y=arguments.length>0&&arguments[0]!==void 0?arguments[0]:e.activator,k;if(y)if(y==="parent"){let E=(A=(C=a==null?void 0:a.proxy)==null?void 0:C.$el)==null?void 0:A.parentNode;for(;E.hasAttribute("data-no-activator");)E=E.parentNode;k=E}else typeof y=="string"?k=document.querySelector(y):"$el"in y?k=y.$el:k=y;return r.value=(k==null?void 0:k.nodeType)===Node.ELEMENT_NODE?k:null,r.value}}function Lp(){if(!St)return Xe(!1);const{ssr:e}=ki();if(e){const a=Xe(!1);return zt(()=>{a.value=!0}),a}else return Xe(!0)}const Zo=me({eager:Boolean},"lazy");function dd(e,a){const i=Xe(!1),r=X(()=>i.value||e.eager||a.value);He(a,()=>i.value=!0);function l(){e.eager||(i.value=!1)}return{isBooted:i,hasContent:r,onAfterLeave:l}}function hs(){const a=Wt("useScopeId").vnode.scopeId;return{scopeId:a?{[a]:""}:void 0}}const Tf=Symbol.for("vuetify:stack"),xs=Gt([]);function xP(e,a,i){const r=Wt("useStack"),l=!i,d=ct(Tf,void 0),f=Gt({activeChildren:new Set});Pt(Tf,f);const p=Xe(+a.value);Ya(e,()=>{var A;const C=(A=xs.at(-1))==null?void 0:A[1];p.value=C?C+10:+a.value,l&&xs.push([r.uid,p.value]),d==null||d.activeChildren.add(r.uid),nn(()=>{if(l){const E=nt(xs).findIndex(_=>_[0]===r.uid);xs.splice(E,1)}d==null||d.activeChildren.delete(r.uid)})});const y=Xe(!0);l&&vn(()=>{var A;const C=((A=xs.at(-1))==null?void 0:A[0])===r.uid;setTimeout(()=>y.value=C)});const k=X(()=>!f.activeChildren.size);return{globalTop:ts(y),localTop:k,stackStyles:X(()=>({zIndex:p.value}))}}function yP(e){return{teleportTarget:X(()=>{const i=e.value;if(i===!0||!St)return;const r=i===!1?document.body:typeof i=="string"?document.querySelector(i):i;if(r==null)return;let l=r.querySelector(":scope > .v-overlay-container");return l||(l=document.createElement("div"),l.className="v-overlay-container",r.appendChild(l)),l})}}function wP(){return!0}function _p(e,a,i){if(!e||Vp(e,i)===!1)return!1;const r=Am(a);if(typeof ShadowRoot<"u"&&r instanceof ShadowRoot&&r.host===e.target)return!1;const l=(typeof i.value=="object"&&i.value.include||(()=>[]))();return l.push(a),!l.some(d=>d==null?void 0:d.contains(e.target))}function Vp(e,a){return(typeof a.value=="object"&&a.value.closeConditional||wP)(e)}function SP(e,a,i){const r=typeof i.value=="function"?i.value:i.value.handler;a._clickOutside.lastMousedownWasOutside&&_p(e,a,i)&&setTimeout(()=>{Vp(e,i)&&r&&r(e)},0)}function If(e,a){const i=Am(e);a(document),typeof ShadowRoot<"u"&&i instanceof ShadowRoot&&a(i)}const Rp={mounted(e,a){const i=l=>SP(l,e,a),r=l=>{e._clickOutside.lastMousedownWasOutside=_p(l,e,a)};If(e,l=>{l.addEventListener("click",i,!0),l.addEventListener("mousedown",r,!0)}),e._clickOutside||(e._clickOutside={lastMousedownWasOutside:!1}),e._clickOutside[a.instance.$.uid]={onClick:i,onMousedown:r}},unmounted(e,a){e._clickOutside&&(If(e,i=>{var d;if(!i||!((d=e._clickOutside)!=null&&d[a.instance.$.uid]))return;const{onClick:r,onMousedown:l}=e._clickOutside[a.instance.$.uid];i.removeEventListener("click",r,!0),i.removeEventListener("mousedown",l,!0)}),delete e._clickOutside[a.instance.$.uid])}};function kP(e){const{modelValue:a,color:i,...r}=e;return R(Wn,{name:"fade-transition",appear:!0},{default:()=>[e.modelValue&&R("div",Ye({class:["v-overlay__scrim",e.color.backgroundColorClasses.value],style:e.color.backgroundColorStyles.value},r),null)]})}const br=me({absolute:Boolean,attach:[Boolean,String,Object],closeOnBack:{type:Boolean,default:!0},contained:Boolean,contentClass:null,contentProps:null,disabled:Boolean,noClickAnimation:Boolean,modelValue:Boolean,persistent:Boolean,scrim:{type:[Boolean,String],default:!0},zIndex:{type:[Number,String],default:2e3},...mP(),...We(),...Mn(),...Zo(),...sP(),...dP(),...dt(),...ya()},"VOverlay"),ma=Te()({name:"VOverlay",directives:{ClickOutside:Rp},inheritAttrs:!1,props:{_disableGlobalStack:Boolean,...br()},emits:{"click:outside":e=>!0,"update:modelValue":e=>!0,afterLeave:()=>!0},setup(e,a){let{slots:i,attrs:r,emit:l}=a;const d=tt(e,"modelValue"),f=X({get:()=>d.value,set:Se=>{Se&&e.disabled||(d.value=Se)}}),{teleportTarget:p}=yP(X(()=>e.attach||e.contained)),{themeClasses:y}=vt(e),{rtlClasses:k,isRtl:C}=$t(),{hasContent:A,onAfterLeave:E}=dd(e,f),_=Vt(X(()=>typeof e.scrim=="string"?e.scrim:null)),{globalTop:M,localTop:F,stackStyles:$}=xP(f,Ie(e,"zIndex"),e._disableGlobalStack),{activatorEl:B,activatorRef:L,activatorEvents:q,contentEvents:Y,scrimEvents:H}=pP(e,{isActive:f,isTop:F}),{dimensionStyles:J}=On(e),ee=Lp(),{scopeId:W}=hs();He(()=>e.disabled,Se=>{Se&&(f.value=!1)});const j=Re(),Q=Re(),{contentStyles:ie,updateLocation:ne}=rP(e,{isRtl:C,contentEl:Q,activatorEl:B,isActive:f});hP(e,{root:j,contentEl:Q,activatorEl:B,isActive:f,updateLocation:ne});function oe(Se){l("click:outside",Se),e.persistent?he():f.value=!1}function le(){return f.value&&M.value}St&&He(f,Se=>{Se?window.addEventListener("keydown",Ce):window.removeEventListener("keydown",Ce)},{immediate:!0});function Ce(Se){var Ee,De;Se.key==="Escape"&&M.value&&(e.persistent?he():(f.value=!1,(Ee=Q.value)!=null&&Ee.contains(document.activeElement)&&((De=B.value)==null||De.focus())))}const ye=Gm();Ya(()=>e.closeOnBack,()=>{cA(ye,Se=>{M.value&&f.value?(Se(!1),e.persistent?he():f.value=!1):Se()})});const fe=Re();He(()=>f.value&&(e.absolute||e.contained)&&p.value==null,Se=>{if(Se){const Ee=$u(j.value);Ee&&Ee!==document.scrollingElement&&(fe.value=Ee.scrollTop)}});function he(){e.noClickAnimation||Q.value&&si(Q.value,[{transformOrigin:"center"},{transform:"scale(1.03)"},{transformOrigin:"center"}],{duration:150,easing:qs})}return Me(()=>{var Se;return R(Ke,null,[(Se=i.activator)==null?void 0:Se.call(i,{isActive:f.value,props:Ye({ref:L},q.value,e.activatorProps)}),ee.value&&A.value&&R(Ng,{disabled:!p.value,to:p.value},{default:()=>[R("div",Ye({class:["v-overlay",{"v-overlay--absolute":e.absolute||e.contained,"v-overlay--active":f.value,"v-overlay--contained":e.contained},y.value,k.value,e.class],style:[$.value,{top:$e(fe.value)},e.style],ref:j},W,r),[R(kP,Ye({color:_,modelValue:f.value&&!!e.scrim},H.value),null),R(Xn,{appear:!0,persisted:!0,transition:e.transition,target:B.value,onAfterLeave:()=>{E(),l("afterLeave")}},{default:()=>{var Ee;return[Et(R("div",Ye({ref:Q,class:["v-overlay__content",e.contentClass],style:[J.value,ie.value]},Y.value,e.contentProps),[(Ee=i.default)==null?void 0:Ee.call(i,{isActive:f})]),[[Ln,f.value],[mn("click-outside"),{handler:oe,closeConditional:le,include:()=>[B.value]}]])]}})])]})])}),{activatorEl:B,animateClick:he,contentEl:Q,globalTop:M,localTop:F,updateLocation:ne}}}),Rl=Symbol("Forwarded refs");function Ml(e,a){let i=e;for(;i;){const r=Reflect.getOwnPropertyDescriptor(i,a);if(r)return r;i=Object.getPrototypeOf(i)}}function Un(e){for(var a=arguments.length,i=new Array(a>1?a-1:0),r=1;r!0},setup(e,a){let{slots:i}=a;const r=tt(e,"modelValue"),{scopeId:l}=hs(),d=sn(),f=X(()=>e.id||`v-menu-${d}`),p=Re(),y=ct(Bc,null),k=Xe(0);Pt(Bc,{register(){++k.value},unregister(){--k.value},closeParents(){setTimeout(()=>{k.value||(r.value=!1,y==null||y.closeParents())},40)}});async function C(F){var L,q,Y;const $=F.relatedTarget,B=F.target;await gt(),r.value&&$!==B&&((L=p.value)!=null&&L.contentEl)&&((q=p.value)!=null&&q.globalTop)&&![document,p.value.contentEl].includes(B)&&!p.value.contentEl.contains(B)&&((Y=Us(p.value.contentEl)[0])==null||Y.focus())}He(r,F=>{F?(y==null||y.register(),document.addEventListener("focusin",C,{once:!0})):(y==null||y.unregister(),document.removeEventListener("focusin",C))});function A(){y==null||y.closeParents()}function E(F){var $,B,L;e.disabled||F.key==="Tab"&&(hm(Us(($=p.value)==null?void 0:$.contentEl,!1),F.shiftKey?"prev":"next",Y=>Y.tabIndex>=0)||(r.value=!1,(L=(B=p.value)==null?void 0:B.activatorEl)==null||L.focus()))}function _(F){var B;if(e.disabled)return;const $=(B=p.value)==null?void 0:B.contentEl;$&&r.value?F.key==="ArrowDown"?(F.preventDefault(),io($,"next")):F.key==="ArrowUp"&&(F.preventDefault(),io($,"prev")):["ArrowDown","ArrowUp"].includes(F.key)&&(r.value=!0,F.preventDefault(),setTimeout(()=>setTimeout(()=>_(F))))}const M=X(()=>Ye({"aria-haspopup":"menu","aria-expanded":String(r.value),"aria-owns":f.value,onKeydown:_},e.activatorProps));return Me(()=>{const[F]=ma.filterProps(e);return R(ma,Ye({ref:p,class:["v-menu",e.class],style:e.style},F,{modelValue:r.value,"onUpdate:modelValue":$=>r.value=$,absolute:!0,activatorProps:M.value,"onClick:outside":A,onKeydown:E},l),{activator:i.activator,default:function(){for(var $=arguments.length,B=new Array($),L=0;L<$;L++)B[L]=arguments[L];return R(bt,{root:"VMenu"},{default:()=>{var q;return[(q=i.default)==null?void 0:q.call(i,...B)]}})}})}),Un({id:f,ΨopenChildren:k},p)}});const AP=me({active:Boolean,max:[Number,String],value:{type:[Number,String],default:0},...We(),...ya({transition:{component:Ju}})},"VCounter"),Qo=Te()({name:"VCounter",functional:!0,props:AP(),setup(e,a){let{slots:i}=a;const r=X(()=>e.max?`${e.value} / ${e.max}`:String(e.value));return Me(()=>R(Xn,{transition:e.transition},{default:()=>[Et(R("div",{class:["v-counter",e.class],style:e.style},[i.default?i.default({counter:r.value,max:e.max,value:e.value}):r.value]),[[Ln,e.active]])]})),{}}});const PP=me({floating:Boolean,...We()},"VFieldLabel"),ks=Te()({name:"VFieldLabel",props:PP(),setup(e,a){let{slots:i}=a;return Me(()=>R(ds,{class:["v-field-label",{"v-field-label--floating":e.floating},e.class],style:e.style,"aria-hidden":e.floating||void 0},i)),{}}}),EP=["underlined","outlined","filled","solo","solo-inverted","solo-filled","plain"],el=me({appendInnerIcon:et,bgColor:String,clearable:Boolean,clearIcon:{type:et,default:"$clear"},active:Boolean,centerAffix:{type:Boolean,default:void 0},color:String,baseColor:String,dirty:Boolean,disabled:{type:Boolean,default:null},error:Boolean,flat:Boolean,label:String,persistentClear:Boolean,prependInnerIcon:et,reverse:Boolean,singleLine:Boolean,variant:{type:String,default:"filled",validator:e=>EP.includes(e)},"onClick:clear":Qn(),"onClick:appendInner":Qn(),"onClick:prependInner":Qn(),...We(),...sd(),...At(),...dt()},"VField"),xr=Te()({name:"VField",inheritAttrs:!1,props:{id:String,...Uo(),...el()},emits:{"update:focused":e=>!0,"update:modelValue":e=>!0},setup(e,a){let{attrs:i,emit:r,slots:l}=a;const{themeClasses:d}=vt(e),{loaderClasses:f}=jo(e),{focusClasses:p,isFocused:y,focus:k,blur:C}=Ua(e),{InputIcon:A}=rp(e),{roundedClasses:E}=Lt(e),{rtlClasses:_}=$t(),M=X(()=>e.dirty||e.active),F=X(()=>!e.singleLine&&!!(e.label||l.label)),$=sn(),B=X(()=>e.id||`input-${$}`),L=X(()=>`${B.value}-messages`),q=Re(),Y=Re(),H=Re(),J=X(()=>["plain","underlined"].includes(e.variant)),{backgroundColorClasses:ee,backgroundColorStyles:W}=Vt(Ie(e,"bgColor")),{textColorClasses:j,textColorStyles:Q}=an(X(()=>e.error||e.disabled?void 0:M.value&&y.value?e.color:e.baseColor));He(M,oe=>{if(F.value){const le=q.value.$el,Ce=Y.value.$el;requestAnimationFrame(()=>{const ye=Xu(le),fe=Ce.getBoundingClientRect(),he=fe.x-ye.x,Se=fe.y-ye.y-(ye.height/2-fe.height/2),Ee=fe.width/.75,De=Math.abs(Ee-ye.width)>1?{maxWidth:$e(Ee)}:void 0,Fe=getComputedStyle(le),Ze=getComputedStyle(Ce),Je=parseFloat(Fe.transitionDuration)*1e3||150,ze=parseFloat(Ze.getPropertyValue("--v-field-label-scale")),ue=Ze.getPropertyValue("color");le.style.visibility="visible",Ce.style.visibility="hidden",si(le,{transform:`translate(${he}px, ${Se}px) scale(${ze})`,color:ue,...De},{duration:Je,easing:qs,direction:oe?"normal":"reverse"}).finished.then(()=>{le.style.removeProperty("visibility"),Ce.style.removeProperty("visibility")})})}},{flush:"post"});const ie=X(()=>({isActive:M,isFocused:y,controlRef:H,blur:C,focus:k}));function ne(oe){oe.target!==document.activeElement&&oe.preventDefault()}return Me(()=>{var he,Se,Ee;const oe=e.variant==="outlined",le=l["prepend-inner"]||e.prependInnerIcon,Ce=!!(e.clearable||l.clear),ye=!!(l["append-inner"]||e.appendInnerIcon||Ce),fe=l.label?l.label({...ie.value,label:e.label,props:{for:B.value}}):e.label;return R("div",Ye({class:["v-field",{"v-field--active":M.value,"v-field--appended":ye,"v-field--center-affix":e.centerAffix??!J.value,"v-field--disabled":e.disabled,"v-field--dirty":e.dirty,"v-field--error":e.error,"v-field--flat":e.flat,"v-field--has-background":!!e.bgColor,"v-field--persistent-clear":e.persistentClear,"v-field--prepended":le,"v-field--reverse":e.reverse,"v-field--single-line":e.singleLine,"v-field--no-label":!fe,[`v-field--variant-${e.variant}`]:!0},d.value,ee.value,p.value,f.value,E.value,_.value,e.class],style:[W.value,e.style],onClick:ne},i),[R("div",{class:"v-field__overlay"},null),R(rd,{name:"v-field",active:!!e.loading,color:e.error?"error":typeof e.loading=="string"?e.loading:e.color},{default:l.loader}),le&&R("div",{key:"prepend",class:"v-field__prepend-inner"},[e.prependInnerIcon&&R(A,{key:"prepend-icon",name:"prependInner"},null),(he=l["prepend-inner"])==null?void 0:he.call(l,ie.value)]),R("div",{class:"v-field__field","data-no-activator":""},[["filled","solo","solo-inverted","solo-filled"].includes(e.variant)&&F.value&&R(ks,{key:"floating-label",ref:Y,class:[j.value],floating:!0,for:B.value,style:Q.value},{default:()=>[fe]}),R(ks,{ref:q,for:B.value},{default:()=>[fe]}),(Se=l.default)==null?void 0:Se.call(l,{...ie.value,props:{id:B.value,class:"v-field__input","aria-describedby":L.value},focus:k,blur:C})]),Ce&&R(Qu,{key:"clear"},{default:()=>[Et(R("div",{class:"v-field__clearable",onMousedown:De=>{De.preventDefault(),De.stopPropagation()}},[l.clear?l.clear():R(A,{name:"clear"},null)]),[[Ln,e.dirty]])]}),ye&&R("div",{key:"append",class:"v-field__append-inner"},[(Ee=l["append-inner"])==null?void 0:Ee.call(l,ie.value),e.appendInnerIcon&&R(A,{key:"append-icon",name:"appendInner"},null)]),R("div",{class:["v-field__outline",j.value],style:Q.value},[oe&&R(Ke,null,[R("div",{class:"v-field__outline__start"},null),F.value&&R("div",{class:"v-field__outline__notch"},[R(ks,{ref:Y,floating:!0,for:B.value},{default:()=>[fe]})]),R("div",{class:"v-field__outline__end"},null)]),J.value&&F.value&&R(ks,{ref:Y,floating:!0,for:B.value},{default:()=>[fe]})])])}),{controlRef:H}}});function hd(e){const a=Object.keys(xr.props).filter(i=>!zu(i)&&i!=="class"&&i!=="style");return gi(e,a)}const TP=["color","file","time","date","datetime-local","week","month"],tl=me({autofocus:Boolean,counter:[Boolean,Number,String],counterValue:Function,prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,suffix:String,role:String,type:{type:String,default:"text"},modelModifiers:Object,...Sa(),...el()},"VTextField"),pi=Te()({name:"VTextField",directives:{Intersect:$o},inheritAttrs:!1,props:tl(),emits:{"click:control":e=>!0,"mousedown:control":e=>!0,"update:focused":e=>!0,"update:modelValue":e=>!0},setup(e,a){let{attrs:i,emit:r,slots:l}=a;const d=tt(e,"modelValue"),{isFocused:f,focus:p,blur:y}=Ua(e),k=X(()=>typeof e.counterValue=="function"?e.counterValue(d.value):(d.value??"").toString().length),C=X(()=>{if(i.maxlength)return i.maxlength;if(!(!e.counter||typeof e.counter!="number"&&typeof e.counter!="string"))return e.counter}),A=X(()=>["plain","underlined"].includes(e.variant));function E(J,ee){var W,j;!e.autofocus||!J||(j=(W=ee[0].target)==null?void 0:W.focus)==null||j.call(W)}const _=Re(),M=Re(),F=Re(),$=X(()=>TP.includes(e.type)||e.persistentPlaceholder||f.value||e.active);function B(){var J;F.value!==document.activeElement&&((J=F.value)==null||J.focus()),f.value||p()}function L(J){r("mousedown:control",J),J.target!==F.value&&(B(),J.preventDefault())}function q(J){B(),r("click:control",J)}function Y(J){J.stopPropagation(),B(),gt(()=>{d.value=null,Hu(e["onClick:clear"],J)})}function H(J){var W;const ee=J.target;if(d.value=ee.value,(W=e.modelModifiers)!=null&&W.trim&&["text","search","password","tel","url"].includes(e.type)){const j=[ee.selectionStart,ee.selectionEnd];gt(()=>{ee.selectionStart=j[0],ee.selectionEnd=j[1]})}}return Me(()=>{const J=!!(l.counter||e.counter||e.counterValue),ee=!!(J||l.details),[W,j]=Si(i),[{modelValue:Q,...ie}]=Ut.filterProps(e),[ne]=hd(e);return R(Ut,Ye({ref:_,modelValue:d.value,"onUpdate:modelValue":oe=>d.value=oe,class:["v-text-field",{"v-text-field--prefixed":e.prefix,"v-text-field--suffixed":e.suffix,"v-text-field--plain-underlined":["plain","underlined"].includes(e.variant)},e.class],style:e.style},W,ie,{centerAffix:!A.value,focused:f.value}),{...l,default:oe=>{let{id:le,isDisabled:Ce,isDirty:ye,isReadonly:fe,isValid:he}=oe;return R(xr,Ye({ref:M,onMousedown:L,onClick:q,"onClick:clear":Y,"onClick:prependInner":e["onClick:prependInner"],"onClick:appendInner":e["onClick:appendInner"],role:e.role},ne,{id:le.value,active:$.value||ye.value,dirty:ye.value||e.dirty,disabled:Ce.value,focused:f.value,error:he.value===!1}),{...l,default:Se=>{let{props:{class:Ee,...De}}=Se;const Fe=Et(R("input",Ye({ref:F,value:d.value,onInput:H,autofocus:e.autofocus,readonly:fe.value,disabled:Ce.value,name:e.name,placeholder:e.placeholder,size:1,type:e.type,onFocus:B,onBlur:y},De,j),null),[[mn("intersect"),{handler:E},null,{once:!0}]]);return R(Ke,null,[e.prefix&&R("span",{class:"v-text-field__prefix"},[R("span",{class:"v-text-field__prefix__text"},[e.prefix])]),l.default?R("div",{class:Ee,"data-no-activator":""},[l.default(),Fe]):Yn(Fe,{class:Ee}),e.suffix&&R("span",{class:"v-text-field__suffix"},[R("span",{class:"v-text-field__suffix__text"},[e.suffix])])])}})},details:ee?oe=>{var le;return R(Ke,null,[(le=l.details)==null?void 0:le.call(l,oe),J&&R(Ke,null,[R("span",null,null),R(Qo,{active:e.persistentCounter||f.value,value:k.value,max:C.value},l.counter)])])}:void 0})}),Un({},_,M,F)}});const IP=me({renderless:Boolean,...We()},"VVirtualScrollItem"),LP=Te()({name:"VVirtualScrollItem",inheritAttrs:!1,props:IP(),emits:{"update:height":e=>!0},setup(e,a){let{attrs:i,emit:r,slots:l}=a;const{resizeRef:d,contentRect:f}=ea(void 0,"border");He(()=>{var p;return(p=f.value)==null?void 0:p.height},p=>{p!=null&&r("update:height",p)}),Me(()=>{var p,y;return e.renderless?R(Ke,null,[(p=l.default)==null?void 0:p.call(l,{itemRef:d})]):R("div",Ye({ref:d,class:["v-virtual-scroll__item",e.class],style:e.style},i),[(y=l.default)==null?void 0:y.call(l)])})}}),Lf=-1,_f=1,_P=me({itemHeight:{type:[Number,String],default:48}},"virtual");function VP(e,a,i){const r=Xe(0),l=Xe(e.itemHeight),d=X({get:()=>parseInt(l.value??0,10),set(ee){l.value=ee}}),f=Re(),{resizeRef:p,contentRect:y}=ea();vn(()=>{p.value=f.value});const k=ki(),C=new Map;let A=Array.from({length:a.value.length});const E=X(()=>{const ee=(!y.value||f.value===document.documentElement?k.height.value:y.value.height)-((i==null?void 0:i.value)??0);return Math.ceil(ee/d.value*1.7+1)});function _(ee,W){d.value=Math.max(d.value,W),A[ee]=W,C.set(a.value[ee],W)}function M(ee){return A.slice(0,ee).reduce((W,j)=>W+(j||d.value),0)}function F(ee){const W=a.value.length;let j=0,Q=0;for(;Q=oe&&(r.value=en(ne,0,a.value.length-E.value)),$=W}function L(ee){if(!f.value)return;const W=M(ee);f.value.scrollTop=W}const q=X(()=>Math.min(a.value.length,r.value+E.value)),Y=X(()=>a.value.slice(r.value,q.value).map((ee,W)=>({raw:ee,index:W+r.value}))),H=X(()=>M(r.value)),J=X(()=>M(a.value.length)-M(q.value));return He(()=>a.value.length,()=>{A=la(a.value.length).map(()=>d.value),C.forEach((ee,W)=>{const j=a.value.indexOf(W);j===-1?C.delete(W):A[j]=ee})}),{containerRef:f,computedItems:Y,itemHeight:d,paddingTop:H,paddingBottom:J,scrollToIndex:L,handleScroll:B,handleItemResize:_}}const RP=me({items:{type:Array,default:()=>[]},renderless:Boolean,..._P(),...We(),...Mn()},"VVirtualScroll"),nl=Te()({name:"VVirtualScroll",props:RP(),setup(e,a){let{slots:i}=a;const r=Wt("VVirtualScroll"),{dimensionStyles:l}=On(e),{containerRef:d,handleScroll:f,handleItemResize:p,scrollToIndex:y,paddingTop:k,paddingBottom:C,computedItems:A}=VP(e,Ie(e,"items"));return Ya(()=>e.renderless,()=>{zt(()=>{var E;d.value=$u(r.vnode.el,!0),(E=d.value)==null||E.addEventListener("scroll",f)}),nn(()=>{var E;(E=d.value)==null||E.removeEventListener("scroll",f)})}),Me(()=>{const E=A.value.map(_=>R(LP,{key:_.index,renderless:e.renderless,"onUpdate:height":M=>p(_.index,M)},{default:M=>{var F;return(F=i.default)==null?void 0:F.call(i,{item:_.raw,index:_.index,...M})}}));return e.renderless?R(Ke,null,[R("div",{class:"v-virtual-scroll__spacer",style:{paddingTop:$e(k.value)}},null),E,R("div",{class:"v-virtual-scroll__spacer",style:{paddingBottom:$e(C.value)}},null)]):R("div",{ref:d,class:["v-virtual-scroll",e.class],onScroll:f,style:[l.value,e.style]},[R("div",{class:"v-virtual-scroll__container",style:{paddingTop:$e(k.value),paddingBottom:$e(C.value)}},[E])])}),{scrollToIndex:y}}});function fd(e,a){const i=Xe(!1);let r;function l(p){cancelAnimationFrame(r),i.value=!0,r=requestAnimationFrame(()=>{r=requestAnimationFrame(()=>{i.value=!1})})}async function d(){await new Promise(p=>requestAnimationFrame(p)),await new Promise(p=>requestAnimationFrame(p)),await new Promise(p=>requestAnimationFrame(p)),await new Promise(p=>{if(i.value){const y=He(i,()=>{y(),p()})}else p()})}async function f(p){var C,A;if(p.key==="Tab"&&((C=a.value)==null||C.focus()),!["PageDown","PageUp","Home","End"].includes(p.key))return;const y=(A=e.value)==null?void 0:A.$el;if(!y)return;(p.key==="Home"||p.key==="End")&&y.scrollTo({top:p.key==="Home"?0:y.scrollHeight,behavior:"smooth"}),await d();const k=y.querySelectorAll(":scope > :not(.v-virtual-scroll__spacer)");if(p.key==="PageDown"||p.key==="Home"){const E=y.getBoundingClientRect().top;for(const _ of k)if(_.getBoundingClientRect().top>=E){_.focus();break}}else{const E=y.getBoundingClientRect().bottom;for(const _ of[...k].reverse())if(_.getBoundingClientRect().bottom<=E){_.focus();break}}}return{onListScroll:l,onListKeydown:f}}const gd=me({chips:Boolean,closableChips:Boolean,closeText:{type:String,default:"$vuetify.close"},openText:{type:String,default:"$vuetify.open"},eager:Boolean,hideNoData:Boolean,hideSelected:Boolean,menu:Boolean,menuIcon:{type:et,default:"$dropdown"},menuProps:{type:Object},multiple:Boolean,noDataText:{type:String,default:"$vuetify.noDataText"},openOnClear:Boolean,valueComparator:{type:Function,default:wi},itemColor:String,...kp({itemChildren:!1})},"Select"),MP=me({...gd(),..._n(tl({modelValue:null,role:"button"}),["validationValue","dirty","appendInnerIcon"]),...ya({transition:{component:Yo}})},"VSelect"),OP=Te()({name:"VSelect",props:MP(),emits:{"update:focused":e=>!0,"update:modelValue":e=>!0,"update:menu":e=>!0},setup(e,a){let{slots:i}=a;const{t:r}=Rn(),l=Re(),d=Re(),f=Re(),p=tt(e,"menu"),y=X({get:()=>p.value,set:fe=>{var he;p.value&&!fe&&((he=d.value)!=null&&he.ΨopenChildren)||(p.value=fe)}}),{items:k,transformIn:C,transformOut:A}=ud(e),E=tt(e,"modelValue",[],fe=>C(fe===null?[null]:In(fe)),fe=>{const he=A(fe);return e.multiple?he:he[0]??null}),_=qo(),M=X(()=>E.value.map(fe=>k.value.find(he=>{const Se=Qt(he.raw,e.itemValue),Ee=Qt(fe.raw,e.itemValue);return Se===void 0||Ee===void 0?!1:e.returnObject?e.valueComparator(Se,Ee):e.valueComparator(he.value,fe.value)})||fe)),F=X(()=>M.value.map(fe=>fe.props.value)),$=Xe(!1),B=X(()=>y.value?e.closeText:e.openText);let L="",q;const Y=X(()=>e.hideSelected?k.value.filter(fe=>!M.value.some(he=>he===fe)):k.value),H=X(()=>e.hideNoData&&!k.value.length||e.readonly||(_==null?void 0:_.isReadonly.value)),J=Re(),{onListScroll:ee,onListKeydown:W}=fd(J,l);function j(fe){e.openOnClear&&(y.value=!0)}function Q(){H.value||(y.value=!y.value)}function ie(fe){var Fe,Ze;if(!fe.key||e.readonly||_!=null&&_.isReadonly.value)return;["Enter"," ","ArrowDown","ArrowUp","Home","End"].includes(fe.key)&&fe.preventDefault(),["Enter","ArrowDown"," "].includes(fe.key)&&(y.value=!0),["Escape","Tab"].includes(fe.key)&&(y.value=!1),fe.key==="Home"?(Fe=J.value)==null||Fe.focus("first"):fe.key==="End"&&((Ze=J.value)==null||Ze.focus("last"));const he=1e3;function Se(Je){const ze=Je.key.length===1,ue=!Je.ctrlKey&&!Je.metaKey&&!Je.altKey;return ze&&ue}if(e.multiple||!Se(fe))return;const Ee=performance.now();Ee-q>he&&(L=""),L+=fe.key.toLowerCase(),q=Ee;const De=k.value.find(Je=>Je.title.toLowerCase().startsWith(L));De!==void 0&&(E.value=[De])}function ne(fe){if(e.multiple){const he=F.value.findIndex(Se=>e.valueComparator(Se,fe.value));if(he===-1)E.value=[...E.value,fe];else{const Se=[...E.value];Se.splice(he,1),E.value=Se}}else E.value=[fe],y.value=!1}function oe(fe){var he;(he=J.value)!=null&&he.$el.contains(fe.relatedTarget)||(y.value=!1)}function le(){var fe;$.value&&((fe=l.value)==null||fe.focus())}function Ce(fe){$.value=!0}function ye(fe){if(fe==null)E.value=[];else if(Ui(l.value,":autofill")||Ui(l.value,":-webkit-autofill")){const he=k.value.find(Se=>Se.title===fe);he&&ne(he)}else l.value&&(l.value.value="")}return He(y,()=>{if(!e.hideSelected&&y.value&&M.value.length){const fe=Y.value.findIndex(he=>M.value.some(Se=>he.value===Se.value));St&&window.requestAnimationFrame(()=>{var he;fe>=0&&((he=f.value)==null||he.scrollToIndex(fe))})}}),Me(()=>{const fe=!!(e.chips||i.chip),he=!!(!e.hideNoData||Y.value.length||i["prepend-item"]||i["append-item"]||i["no-data"]),Se=E.value.length>0,[Ee]=pi.filterProps(e),De=Se||!$.value&&e.label&&!e.persistentPlaceholder?void 0:e.placeholder;return R(pi,Ye({ref:l},Ee,{modelValue:E.value.map(Fe=>Fe.props.value).join(", "),"onUpdate:modelValue":ye,focused:$.value,"onUpdate:focused":Fe=>$.value=Fe,validationValue:E.externalValue,dirty:Se,class:["v-select",{"v-select--active-menu":y.value,"v-select--chips":!!e.chips,[`v-select--${e.multiple?"multiple":"single"}`]:!0,"v-select--selected":E.value.length,"v-select--selection-slot":!!i.selection},e.class],style:e.style,inputmode:"none",placeholder:De,"onClick:clear":j,"onMousedown:control":Q,onBlur:oe,onKeydown:ie,"aria-label":r(B.value),title:r(B.value)}),{...i,default:()=>R(Ke,null,[R(Jo,Ye({ref:d,modelValue:y.value,"onUpdate:modelValue":Fe=>y.value=Fe,activator:"parent",contentClass:"v-select__content",disabled:H.value,eager:e.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:e.transition,onAfterLeave:le},e.menuProps),{default:()=>[he&&R(Ko,{ref:J,selected:F.value,selectStrategy:e.multiple?"independent":"single-independent",onMousedown:Fe=>Fe.preventDefault(),onKeydown:W,onFocusin:Ce,onScrollPassive:ee,tabindex:"-1",color:e.itemColor??e.color},{default:()=>{var Fe,Ze,Je;return[(Fe=i["prepend-item"])==null?void 0:Fe.call(i),!Y.value.length&&!e.hideNoData&&(((Ze=i["no-data"])==null?void 0:Ze.call(i))??R(va,{title:r(e.noDataText)},null)),R(nl,{ref:f,renderless:!0,items:Y.value},{default:ze=>{var be;let{item:ue,index:de,itemRef:Le}=ze;const _e=Ye(ue.props,{ref:Le,key:de,onClick:()=>ne(ue)});return((be=i.item)==null?void 0:be.call(i,{item:ue,index:de,props:_e}))??R(va,_e,{prepend:ve=>{let{isSelected:Z}=ve;return R(Ke,null,[e.multiple&&!e.hideSelected?R(Zi,{key:ue.value,modelValue:Z,ripple:!1,tabindex:"-1"},null):void 0,ue.props.prependIcon&&R(wt,{icon:ue.props.prependIcon},null)])}})}}),(Je=i["append-item"])==null?void 0:Je.call(i)]}})]}),M.value.map((Fe,Ze)=>{var ue;function Je(de){de.stopPropagation(),de.preventDefault(),ne(Fe)}const ze={"onClick:close":Je,onMousedown(de){de.preventDefault(),de.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return R("div",{key:Fe.value,class:"v-select__selection"},[fe?i.chip?R(bt,{key:"chip-defaults",defaults:{VChip:{closable:e.closableChips,size:"small",text:Fe.title}}},{default:()=>{var de;return[(de=i.chip)==null?void 0:de.call(i,{item:Fe,index:Ze,props:ze})]}}):R(pr,Ye({key:"chip",closable:e.closableChips,size:"small",text:Fe.title},ze),null):((ue=i.selection)==null?void 0:ue.call(i,{item:Fe,index:Ze}))??R("span",{class:"v-select__selection-text"},[Fe.title,e.multiple&&Zee==null||a==null?-1:e.toString().toLocaleLowerCase().indexOf(a.toString().toLocaleLowerCase()),Mp=me({customFilter:Function,customKeyFilter:Object,filterKeys:[Array,String],filterMode:{type:String,default:"intersection"},noFilter:Boolean},"filter");function BP(e,a,i){var p;const r=[],l=(i==null?void 0:i.default)??FP,d=i!=null&&i.filterKeys?In(i.filterKeys):!1,f=Object.keys((i==null?void 0:i.customKeyFilter)??{}).length;if(!(e!=null&&e.length))return r;e:for(let y=0;yr!=null&&r.transform?_t(a).map(r==null?void 0:r.transform):_t(a));vn(()=>{const y=typeof i=="function"?i():_t(i),k=typeof y!="string"&&typeof y!="number"?"":String(y),C=BP(f.value,k,{customKeyFilter:e.customKeyFilter,default:e.customFilter,filterKeys:e.filterKeys,filterMode:e.filterMode,noFilter:e.noFilter}),A=_t(a),E=[],_=new Map;C.forEach(M=>{let{index:F,matches:$}=M;const B=A[F];E.push(B),_.set(B.value,$)}),l.value=E,d.value=_});function p(y){return d.value.get(y.value)}return{filteredItems:l,filteredMatches:d,getMatches:p}}function DP(e,a,i){if(a==null)return e;if(Array.isArray(a))throw new Error("Multiple matches is not implemented");return typeof a=="number"&&~a?R(Ke,null,[R("span",{class:"v-autocomplete__unmask"},[e.substr(0,a)]),R("span",{class:"v-autocomplete__mask"},[e.substr(a,i)]),R("span",{class:"v-autocomplete__unmask"},[e.substr(a+i)])]):e}const zP=me({autoSelectFirst:{type:[Boolean,String]},search:String,...Mp({filterKeys:["title"]}),...gd(),..._n(tl({modelValue:null,role:"combobox"}),["validationValue","dirty","appendInnerIcon"]),...ya({transition:!1})},"VAutocomplete"),NP=Te()({name:"VAutocomplete",props:zP(),emits:{"update:focused":e=>!0,"update:search":e=>!0,"update:modelValue":e=>!0,"update:menu":e=>!0},setup(e,a){let{slots:i}=a;const{t:r}=Rn(),l=Re(),d=Xe(!1),f=Xe(!0),p=Xe(!1),y=Re(),k=Re(),C=tt(e,"menu"),A=X({get:()=>C.value,set:be=>{var ve;C.value&&!be&&((ve=y.value)!=null&&ve.ΨopenChildren)||(C.value=be)}}),E=Xe(-1),_=X(()=>{var be;return(be=l.value)==null?void 0:be.color}),M=X(()=>A.value?e.closeText:e.openText),{items:F,transformIn:$,transformOut:B}=ud(e),{textColorClasses:L,textColorStyles:q}=an(_),Y=tt(e,"search",""),H=tt(e,"modelValue",[],be=>$(be===null?[null]:In(be)),be=>{const ve=B(be);return e.multiple?ve:ve[0]??null}),J=qo(),{filteredItems:ee,getMatches:W}=Op(e,F,()=>f.value?"":Y.value),j=X(()=>H.value.map(be=>F.value.find(ve=>{const Z=Qt(ve.raw,e.itemValue),te=Qt(be.raw,e.itemValue);return Z===void 0||te===void 0?!1:e.returnObject?e.valueComparator(Z,te):e.valueComparator(ve.value,be.value)})||be)),Q=X(()=>e.hideSelected?ee.value.filter(be=>!j.value.some(ve=>ve.value===be.value)):ee.value),ie=X(()=>j.value.map(be=>be.props.value)),ne=X(()=>j.value[E.value]),oe=X(()=>{var ve;return(e.autoSelectFirst===!0||e.autoSelectFirst==="exact"&&Y.value===((ve=Q.value[0])==null?void 0:ve.title))&&Q.value.length>0&&!f.value&&!p.value}),le=X(()=>e.hideNoData&&!F.value.length||e.readonly||(J==null?void 0:J.isReadonly.value)),Ce=Re(),{onListScroll:ye,onListKeydown:fe}=fd(Ce,l);function he(be){e.openOnClear&&(A.value=!0),Y.value=""}function Se(){le.value||(A.value=!0)}function Ee(be){le.value||(d.value&&(be.preventDefault(),be.stopPropagation()),A.value=!A.value)}function De(be){var te,se,ce;if(e.readonly||J!=null&&J.isReadonly.value)return;const ve=l.value.selectionStart,Z=ie.value.length;if((E.value>-1||["Enter","ArrowDown","ArrowUp"].includes(be.key))&&be.preventDefault(),["Enter","ArrowDown"].includes(be.key)&&(A.value=!0),["Escape"].includes(be.key)&&(A.value=!1),oe.value&&["Enter","Tab"].includes(be.key)&&_e(Q.value[0]),be.key==="ArrowDown"&&oe.value&&((te=Ce.value)==null||te.focus("next")),!!e.multiple){if(["Backspace","Delete"].includes(be.key)){if(E.value<0){be.key==="Backspace"&&!Y.value&&(E.value=Z-1);return}const pe=E.value;ne.value&&_e(ne.value),E.value=pe>=Z-1?Z-2:pe}if(be.key==="ArrowLeft"){if(E.value<0&&ve>0)return;const pe=E.value>-1?E.value-1:Z-1;j.value[pe]?E.value=pe:(E.value=-1,l.value.setSelectionRange((se=Y.value)==null?void 0:se.length,(ce=Y.value)==null?void 0:ce.length))}if(be.key==="ArrowRight"){if(E.value<0)return;const pe=E.value+1;j.value[pe]?E.value=pe:(E.value=-1,l.value.setSelectionRange(0,0))}}}function Fe(be){Y.value=be.target.value}function Ze(be){if(Ui(l.value,":autofill")||Ui(l.value,":-webkit-autofill")){const ve=F.value.find(Z=>Z.title===be.target.value);ve&&_e(ve)}}function Je(){var be;d.value&&(f.value=!0,(be=l.value)==null||be.focus())}function ze(be){d.value=!0,setTimeout(()=>{p.value=!0})}function ue(be){p.value=!1}function de(be){(be==null||be===""&&!e.multiple)&&(H.value=[])}const Le=Xe(!1);function _e(be){if(e.multiple){const ve=ie.value.findIndex(Z=>e.valueComparator(Z,be.value));if(ve===-1)H.value=[...H.value,be];else{const Z=[...H.value];Z.splice(ve,1),H.value=Z}}else H.value=[be],Le.value=!0,Y.value=be.title,A.value=!1,f.value=!0,gt(()=>Le.value=!1)}return He(d,(be,ve)=>{var Z;be!==ve&&(be?(Le.value=!0,Y.value=e.multiple?"":String(((Z=j.value.at(-1))==null?void 0:Z.props.title)??""),f.value=!0,gt(()=>Le.value=!1)):(!e.multiple&&!Y.value?H.value=[]:oe.value&&!p.value&&!j.value.some(te=>{let{value:se}=te;return se===Q.value[0].value})&&_e(Q.value[0]),A.value=!1,Y.value="",E.value=-1))}),He(Y,be=>{!d.value||Le.value||(be&&(A.value=!0),f.value=!be)}),He(A,()=>{if(!e.hideSelected&&A.value&&j.value.length){const be=Q.value.findIndex(ve=>j.value.some(Z=>ve.value===Z.value));St&&window.requestAnimationFrame(()=>{var ve;be>=0&&((ve=k.value)==null||ve.scrollToIndex(be))})}}),Me(()=>{const be=!!(e.chips||i.chip),ve=!!(!e.hideNoData||Q.value.length||i["prepend-item"]||i["append-item"]||i["no-data"]),Z=H.value.length>0,[te]=pi.filterProps(e);return R(pi,Ye({ref:l},te,{modelValue:Y.value,"onUpdate:modelValue":de,focused:d.value,"onUpdate:focused":se=>d.value=se,validationValue:H.externalValue,dirty:Z,onInput:Fe,onChange:Ze,class:["v-autocomplete",`v-autocomplete--${e.multiple?"multiple":"single"}`,{"v-autocomplete--active-menu":A.value,"v-autocomplete--chips":!!e.chips,"v-autocomplete--selection-slot":!!i.selection,"v-autocomplete--selecting-index":E.value>-1},e.class],style:e.style,readonly:e.readonly,placeholder:Z?void 0:e.placeholder,"onClick:clear":he,"onMousedown:control":Se,onKeydown:De}),{...i,default:()=>R(Ke,null,[R(Jo,Ye({ref:y,modelValue:A.value,"onUpdate:modelValue":se=>A.value=se,activator:"parent",contentClass:"v-autocomplete__content",disabled:le.value,eager:e.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:e.transition,onAfterLeave:Je},e.menuProps),{default:()=>[ve&&R(Ko,{ref:Ce,selected:ie.value,selectStrategy:e.multiple?"independent":"single-independent",onMousedown:se=>se.preventDefault(),onKeydown:fe,onFocusin:ze,onFocusout:ue,onScrollPassive:ye,tabindex:"-1",color:e.itemColor??e.color},{default:()=>{var se,ce,pe;return[(se=i["prepend-item"])==null?void 0:se.call(i),!Q.value.length&&!e.hideNoData&&(((ce=i["no-data"])==null?void 0:ce.call(i))??R(va,{title:r(e.noDataText)},null)),R(nl,{ref:k,renderless:!0,items:Q.value},{default:ke=>{var qe;let{item:Oe,index:Pe,itemRef:Be}=ke;const Ve=Ye(Oe.props,{ref:Be,key:Pe,active:oe.value&&Pe===0?!0:void 0,onClick:()=>_e(Oe)});return((qe=i.item)==null?void 0:qe.call(i,{item:Oe,index:Pe,props:Ve}))??R(va,Ve,{prepend:Ge=>{let{isSelected:Ue}=Ge;return R(Ke,null,[e.multiple&&!e.hideSelected?R(Zi,{key:Oe.value,modelValue:Ue,ripple:!1,tabindex:"-1"},null):void 0,Oe.props.prependIcon&&R(wt,{icon:Oe.props.prependIcon},null)])},title:()=>{var Ge,Ue;return f.value?Oe.title:DP(Oe.title,(Ge=W(Oe))==null?void 0:Ge.title,((Ue=Y.value)==null?void 0:Ue.length)??0)}})}}),(pe=i["append-item"])==null?void 0:pe.call(i)]}})]}),j.value.map((se,ce)=>{var Oe;function pe(Pe){Pe.stopPropagation(),Pe.preventDefault(),_e(se)}const ke={"onClick:close":pe,onMousedown(Pe){Pe.preventDefault(),Pe.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return R("div",{key:se.value,class:["v-autocomplete__selection",ce===E.value&&["v-autocomplete__selection--selected",L.value]],style:ce===E.value?q.value:{}},[be?i.chip?R(bt,{key:"chip-defaults",defaults:{VChip:{closable:e.closableChips,size:"small",text:se.title}}},{default:()=>{var Pe;return[(Pe=i.chip)==null?void 0:Pe.call(i,{item:se,index:ce,props:ke})]}}):R(pr,Ye({key:"chip",closable:e.closableChips,size:"small",text:se.title},ke),null):((Oe=i.selection)==null?void 0:Oe.call(i,{item:se,index:ce}))??R("span",{class:"v-autocomplete__selection-text"},[se.title,e.multiple&&ce(e.floating?e.dot?2:4:e.dot?8:12)+(["top","bottom"].includes(C)?+(e.offsetY??0):["left","right"].includes(C)?+(e.offsetX??0):0));return Me(()=>{const C=Number(e.content),A=!e.max||isNaN(C)?e.content:C<=+e.max?C:`${e.max}+`,[E,_]=gi(a.attrs,["aria-atomic","aria-label","aria-live","role","title"]);return R(e.tag,Ye({class:["v-badge",{"v-badge--bordered":e.bordered,"v-badge--dot":e.dot,"v-badge--floating":e.floating,"v-badge--inline":e.inline},e.class]},_,{style:e.style}),{default:()=>{var M,F;return[R("div",{class:"v-badge__wrapper"},[(F=(M=a.slots).default)==null?void 0:F.call(M),R(Xn,{transition:e.transition},{default:()=>{var $,B;return[Et(R("span",Ye({class:["v-badge__badge",y.value,i.value,l.value,f.value],style:[r.value,p.value,e.inline?{}:k.value],"aria-atomic":"true","aria-label":d(e.label,C),"aria-live":"polite",role:"status"},E),[e.dot?void 0:a.slots.badge?(B=($=a.slots).badge)==null?void 0:B.call($):e.icon?R(wt,{icon:e.icon},null):A]),[[Ln,e.modelValue]])]}})])]}})}),{}}});const YP=me({color:String,density:String,...We()},"VBannerActions"),Fp=Te()({name:"VBannerActions",props:YP(),setup(e,a){let{slots:i}=a;return Bt({VBtn:{color:e.color,density:e.density,variant:"text"}}),Me(()=>{var r;return R("div",{class:["v-banner-actions",e.class],style:e.style},[(r=i.default)==null?void 0:r.call(i)])}),{}}}),Bp=Gn("v-banner-text"),WP=me({avatar:String,color:String,icon:et,lines:String,stacked:Boolean,sticky:Boolean,text:String,...Cn(),...We(),...Ht(),...Mn(),...Nt(),...$a(),...cs(),...At(),...at(),...dt()},"VBanner"),$P=Te()({name:"VBanner",props:WP(),setup(e,a){let{slots:i}=a;const{borderClasses:r}=Fn(e),{densityClasses:l}=rn(e),{mobile:d}=ki(),{dimensionStyles:f}=On(e),{elevationClasses:p}=Kt(e),{locationStyles:y}=ja(e),{positionClasses:k}=us(e),{roundedClasses:C}=Lt(e),{themeClasses:A}=vt(e),E=Ie(e,"color"),_=Ie(e,"density");Bt({VBannerActions:{color:E,density:_}}),Me(()=>{const M=!!(e.text||i.text),F=!!(e.avatar||e.icon),$=!!(F||i.prepend);return R(e.tag,{class:["v-banner",{"v-banner--stacked":e.stacked||d.value,"v-banner--sticky":e.sticky,[`v-banner--${e.lines}-line`]:!!e.lines},r.value,l.value,p.value,k.value,C.value,A.value,e.class],style:[f.value,y.value,e.style],role:"banner"},{default:()=>{var B;return[$&&R("div",{key:"prepend",class:"v-banner__prepend"},[i.prepend?R(bt,{key:"prepend-defaults",disabled:!F,defaults:{VAvatar:{color:E.value,density:_.value,icon:e.icon,image:e.avatar}}},i.prepend):R(Wa,{key:"prepend-avatar",color:E.value,density:_.value,icon:e.icon,image:e.avatar},null)]),R("div",{class:"v-banner__content"},[M&&R(Bp,{key:"text"},{default:()=>{var L;return[((L=i.text)==null?void 0:L.call(i))??e.text]}}),(B=i.default)==null?void 0:B.call(i)]),i.actions&&R(Fp,{key:"actions"},i.actions)]}})})}});const jP=me({bgColor:String,color:String,grow:Boolean,mode:{type:String,validator:e=>!e||["horizontal","shift"].includes(e)},height:{type:[Number,String],default:56},active:{type:Boolean,default:!0},...Cn(),...We(),...Ht(),...Nt(),...At(),...as({name:"bottom-navigation"}),...at({tag:"header"}),...ss({modelValue:!0,selectedClass:"v-btn--selected"}),...dt()},"VBottomNavigation"),GP=Te()({name:"VBottomNavigation",props:jP(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const{themeClasses:r}=Lm(),{borderClasses:l}=Fn(e),{backgroundColorClasses:d,backgroundColorStyles:f}=Vt(Ie(e,"bgColor")),{densityClasses:p}=rn(e),{elevationClasses:y}=Kt(e),{roundedClasses:k}=Lt(e),{ssrBootStyles:C}=Ci(),A=X(()=>Number(e.height)-(e.density==="comfortable"?8:0)-(e.density==="compact"?16:0)),E=Ie(e,"active"),{layoutItemStyles:_}=is({id:e.name,order:X(()=>parseInt(e.order,10)),position:X(()=>"bottom"),layoutSize:X(()=>E.value?A.value:0),elementSize:A,active:E,absolute:Ie(e,"absolute")});return Ei(e,td),Bt({VBtn:{color:Ie(e,"color"),density:Ie(e,"density"),stacked:X(()=>e.mode!=="horizontal"),variant:"text"}},{scoped:!0}),Me(()=>R(e.tag,{class:["v-bottom-navigation",{"v-bottom-navigation--active":E.value,"v-bottom-navigation--grow":e.grow,"v-bottom-navigation--shift":e.mode==="shift"},r.value,d.value,l.value,p.value,y.value,k.value,e.class],style:[f.value,_.value,{height:$e(A.value),transform:`translateY(${$e(E.value?0:100,"%")})`},C.value,e.style]},{default:()=>[i.default&&R("div",{class:"v-bottom-navigation__content"},[i.default()])]})),{}}});const UP=me({divider:[Number,String],...We()},"VBreadcrumbsDivider"),Dp=Te()({name:"VBreadcrumbsDivider",props:UP(),setup(e,a){let{slots:i}=a;return Me(()=>{var r;return R("li",{class:["v-breadcrumbs-divider",e.class],style:e.style},[((r=i==null?void 0:i.default)==null?void 0:r.call(i))??e.divider])}),{}}}),qP=me({active:Boolean,activeClass:String,activeColor:String,color:String,disabled:Boolean,title:String,...We(),...mr(),...at({tag:"li"})},"VBreadcrumbsItem"),zp=Te()({name:"VBreadcrumbsItem",props:qP(),setup(e,a){let{slots:i,attrs:r}=a;const l=vr(e,r),d=X(()=>{var k;return e.active||((k=l.isActive)==null?void 0:k.value)}),f=X(()=>d.value?e.activeColor:e.color),{textColorClasses:p,textColorStyles:y}=an(f);return Me(()=>R(e.tag,{class:["v-breadcrumbs-item",{"v-breadcrumbs-item--active":d.value,"v-breadcrumbs-item--disabled":e.disabled,[`${e.activeClass}`]:d.value&&e.activeClass},p.value,e.class],style:[y.value,e.style],"aria-current":d.value?"page":void 0},{default:()=>{var k,C;return[l.isLink.value?R("a",{class:"v-breadcrumbs-item--link",href:l.href.value,"aria-current":d.value?"page":void 0,onClick:l.navigate},[((C=i.default)==null?void 0:C.call(i))??e.title]):((k=i.default)==null?void 0:k.call(i))??e.title]}})),{}}}),KP=me({activeClass:String,activeColor:String,bgColor:String,color:String,disabled:Boolean,divider:{type:String,default:"/"},icon:et,items:{type:Array,default:()=>[]},...We(),...Ht(),...At(),...at({tag:"ul"})},"VBreadcrumbs"),ZP=Te()({name:"VBreadcrumbs",props:KP(),setup(e,a){let{slots:i}=a;const{backgroundColorClasses:r,backgroundColorStyles:l}=Vt(Ie(e,"bgColor")),{densityClasses:d}=rn(e),{roundedClasses:f}=Lt(e);Bt({VBreadcrumbsDivider:{divider:Ie(e,"divider")},VBreadcrumbsItem:{activeClass:Ie(e,"activeClass"),activeColor:Ie(e,"activeColor"),color:Ie(e,"color"),disabled:Ie(e,"disabled")}});const p=X(()=>e.items.map(y=>typeof y=="string"?{item:{title:y},raw:y}:{item:y,raw:y}));return Me(()=>{const y=!!(i.prepend||e.icon);return R(e.tag,{class:["v-breadcrumbs",r.value,d.value,f.value,e.class],style:[l.value,e.style]},{default:()=>{var k;return[y&&R("li",{key:"prepend",class:"v-breadcrumbs__prepend"},[i.prepend?R(bt,{key:"prepend-defaults",disabled:!e.icon,defaults:{VIcon:{icon:e.icon,start:!0}}},i.prepend):R(wt,{key:"prepend-icon",start:!0,icon:e.icon},null)]),p.value.map((C,A,E)=>{let{item:_,raw:M}=C;return R(Ke,null,[R(zp,Ye({key:_.title,disabled:A>=E.length-1},_),{default:i.title?()=>{var F;return(F=i.title)==null?void 0:F.call(i,{item:M,index:A})}:void 0}),A{var F;return(F=i.divider)==null?void 0:F.call(i,{item:M,index:A})}:void 0})])}),(k=i.default)==null?void 0:k.call(i)]}})}),{}}});const Np=Te()({name:"VCardActions",props:We(),setup(e,a){let{slots:i}=a;return Bt({VBtn:{variant:"text"}}),Me(()=>{var r;return R("div",{class:["v-card-actions",e.class],style:e.style},[(r=i.default)==null?void 0:r.call(i)])}),{}}}),Hp=Gn("v-card-subtitle"),Xp=Gn("v-card-title"),JP=me({appendAvatar:String,appendIcon:et,prependAvatar:String,prependIcon:et,subtitle:String,title:String,...We(),...Ht()},"VCardItem"),Yp=Te()({name:"VCardItem",props:JP(),setup(e,a){let{slots:i}=a;return Me(()=>{var k;const r=!!(e.prependAvatar||e.prependIcon),l=!!(r||i.prepend),d=!!(e.appendAvatar||e.appendIcon),f=!!(d||i.append),p=!!(e.title||i.title),y=!!(e.subtitle||i.subtitle);return R("div",{class:["v-card-item",e.class],style:e.style},[l&&R("div",{key:"prepend",class:"v-card-item__prepend"},[i.prepend?R(bt,{key:"prepend-defaults",disabled:!r,defaults:{VAvatar:{density:e.density,icon:e.prependIcon,image:e.prependAvatar}}},i.prepend):r&&R(Wa,{key:"prepend-avatar",density:e.density,icon:e.prependIcon,image:e.prependAvatar},null)]),R("div",{class:"v-card-item__content"},[p&&R(Xp,{key:"title"},{default:()=>{var C;return[((C=i.title)==null?void 0:C.call(i))??e.title]}}),y&&R(Hp,{key:"subtitle"},{default:()=>{var C;return[((C=i.subtitle)==null?void 0:C.call(i))??e.subtitle]}}),(k=i.default)==null?void 0:k.call(i)]),f&&R("div",{key:"append",class:"v-card-item__append"},[i.append?R(bt,{key:"append-defaults",disabled:!d,defaults:{VAvatar:{density:e.density,icon:e.appendIcon,image:e.appendAvatar}}},i.append):d&&R(Wa,{key:"append-avatar",density:e.density,icon:e.appendIcon,image:e.appendAvatar},null)])])}),{}}}),Wp=Gn("v-card-text"),QP=me({appendAvatar:String,appendIcon:et,disabled:Boolean,flat:Boolean,hover:Boolean,image:String,link:{type:Boolean,default:void 0},prependAvatar:String,prependIcon:et,ripple:{type:[Boolean,Object],default:!0},subtitle:String,text:String,title:String,...Cn(),...We(),...Ht(),...Mn(),...Nt(),...sd(),...$a(),...cs(),...At(),...mr(),...at(),...dt(),...Bn({variant:"elevated"})},"VCard"),eE=Te()({name:"VCard",directives:{Ripple:Ga},props:QP(),setup(e,a){let{attrs:i,slots:r}=a;const{themeClasses:l}=vt(e),{borderClasses:d}=Fn(e),{colorClasses:f,colorStyles:p,variantClasses:y}=Pi(e),{densityClasses:k}=rn(e),{dimensionStyles:C}=On(e),{elevationClasses:A}=Kt(e),{loaderClasses:E}=jo(e),{locationStyles:_}=ja(e),{positionClasses:M}=us(e),{roundedClasses:F}=Lt(e),$=vr(e,i),B=X(()=>e.link!==!1&&$.isLink.value),L=X(()=>!e.disabled&&e.link!==!1&&(e.link||$.isClickable.value));return Me(()=>{const q=B.value?"a":e.tag,Y=!!(r.title||e.title),H=!!(r.subtitle||e.subtitle),J=Y||H,ee=!!(r.append||e.appendAvatar||e.appendIcon),W=!!(r.prepend||e.prependAvatar||e.prependIcon),j=!!(r.image||e.image),Q=J||W||ee,ie=!!(r.text||e.text);return Et(R(q,{class:["v-card",{"v-card--disabled":e.disabled,"v-card--flat":e.flat,"v-card--hover":e.hover&&!(e.disabled||e.flat),"v-card--link":L.value},l.value,d.value,f.value,k.value,A.value,E.value,M.value,F.value,y.value,e.class],style:[p.value,C.value,_.value,e.style],href:$.href.value,onClick:L.value&&$.navigate,tabindex:e.disabled?-1:void 0},{default:()=>{var ne;return[j&&R("div",{key:"image",class:"v-card__image"},[r.image?R(bt,{key:"image-defaults",disabled:!e.image,defaults:{VImg:{cover:!0,src:e.image}}},r.image):R(vi,{key:"image-img",cover:!0,src:e.image},null)]),R(rd,{name:"v-card",active:!!e.loading,color:typeof e.loading=="boolean"?void 0:e.loading},{default:r.loader}),Q&&R(Yp,{key:"item",prependAvatar:e.prependAvatar,prependIcon:e.prependIcon,title:e.title,subtitle:e.subtitle,appendAvatar:e.appendAvatar,appendIcon:e.appendIcon},{default:r.item,prepend:r.prepend,title:r.title,subtitle:r.subtitle,append:r.append}),ie&&R(Wp,{key:"text"},{default:()=>{var oe;return[((oe=r.text)==null?void 0:oe.call(r))??e.text]}}),(ne=r.default)==null?void 0:ne.call(r),r.actions&&R(Np,null,{default:r.actions}),Ai(L.value,"v-card")]}}),[[mn("ripple"),L.value&&e.ripple]])}),{}}});const tE=e=>{const{touchstartX:a,touchendX:i,touchstartY:r,touchendY:l}=e,d=.5,f=16;e.offsetX=i-a,e.offsetY=l-r,Math.abs(e.offsetY)a+f&&e.right(e)),Math.abs(e.offsetX)r+f&&e.down(e))};function nE(e,a){var r;const i=e.changedTouches[0];a.touchstartX=i.clientX,a.touchstartY=i.clientY,(r=a.start)==null||r.call(a,{originalEvent:e,...a})}function aE(e,a){var r;const i=e.changedTouches[0];a.touchendX=i.clientX,a.touchendY=i.clientY,(r=a.end)==null||r.call(a,{originalEvent:e,...a}),tE(a)}function iE(e,a){var r;const i=e.changedTouches[0];a.touchmoveX=i.clientX,a.touchmoveY=i.clientY,(r=a.move)==null||r.call(a,{originalEvent:e,...a})}function sE(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const a={touchstartX:0,touchstartY:0,touchendX:0,touchendY:0,touchmoveX:0,touchmoveY:0,offsetX:0,offsetY:0,left:e.left,right:e.right,up:e.up,down:e.down,start:e.start,move:e.move,end:e.end};return{touchstart:i=>nE(i,a),touchend:i=>aE(i,a),touchmove:i=>iE(i,a)}}function rE(e,a){var p;const i=a.value,r=i!=null&&i.parent?e.parentElement:e,l=(i==null?void 0:i.options)??{passive:!0},d=(p=a.instance)==null?void 0:p.$.uid;if(!r||!d)return;const f=sE(a.value);r._touchHandlers=r._touchHandlers??Object.create(null),r._touchHandlers[d]=f,lm(f).forEach(y=>{r.addEventListener(y,f[y],l)})}function oE(e,a){var d,f;const i=(d=a.value)!=null&&d.parent?e.parentElement:e,r=(f=a.instance)==null?void 0:f.$.uid;if(!(i!=null&&i._touchHandlers)||!r)return;const l=i._touchHandlers[r];lm(l).forEach(p=>{i.removeEventListener(p,l[p])}),delete i._touchHandlers[r]}const vd={mounted:rE,unmounted:oE},$p=Symbol.for("vuetify:v-window"),jp=Symbol.for("vuetify:v-window-group"),Gp=me({continuous:Boolean,nextIcon:{type:[Boolean,String,Function,Object],default:"$next"},prevIcon:{type:[Boolean,String,Function,Object],default:"$prev"},reverse:Boolean,showArrows:{type:[Boolean,String],validator:e=>typeof e=="boolean"||e==="hover"},touch:{type:[Object,Boolean],default:void 0},direction:{type:String,default:"horizontal"},modelValue:null,disabled:Boolean,selectedClass:{type:String,default:"v-window-item--active"},mandatory:{type:[Boolean,String],default:"force"},...We(),...at(),...dt()},"VWindow"),Dc=Te()({name:"VWindow",directives:{Touch:vd},props:Gp(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const{themeClasses:r}=vt(e),{isRtl:l}=$t(),{t:d}=Rn(),f=Ei(e,jp),p=Re(),y=X(()=>l.value?!e.reverse:e.reverse),k=Xe(!1),C=X(()=>{const Y=e.direction==="vertical"?"y":"x",J=(y.value?!k.value:k.value)?"-reverse":"";return`v-window-${Y}${J}-transition`}),A=Xe(0),E=Re(void 0),_=X(()=>f.items.value.findIndex(Y=>f.selected.value.includes(Y.id)));He(_,(Y,H)=>{const J=f.items.value.length,ee=J-1;J<=2?k.value=Ye.continuous||_.value!==0),F=X(()=>e.continuous||_.value!==f.items.value.length-1);function $(){M.value&&f.prev()}function B(){F.value&&f.next()}const L=X(()=>{const Y=[],H={icon:l.value?e.nextIcon:e.prevIcon,class:`v-window__${y.value?"right":"left"}`,onClick:f.prev,ariaLabel:d("$vuetify.carousel.prev")};Y.push(M.value?i.prev?i.prev({props:H}):R(cn,H,null):R("div",null,null));const J={icon:l.value?e.prevIcon:e.nextIcon,class:`v-window__${y.value?"left":"right"}`,onClick:f.next,ariaLabel:d("$vuetify.carousel.next")};return Y.push(F.value?i.next?i.next({props:J}):R(cn,J,null):R("div",null,null)),Y}),q=X(()=>e.touch===!1?e.touch:{...{left:()=>{y.value?$():B()},right:()=>{y.value?B():$()},start:H=>{let{originalEvent:J}=H;J.stopPropagation()}},...e.touch===!0?{}:e.touch});return Me(()=>Et(R(e.tag,{ref:p,class:["v-window",{"v-window--show-arrows-on-hover":e.showArrows==="hover"},r.value,e.class],style:e.style},{default:()=>{var Y,H;return[R("div",{class:"v-window__container",style:{height:E.value}},[(Y=i.default)==null?void 0:Y.call(i,{group:f}),e.showArrows!==!1&&R("div",{class:"v-window__controls"},[L.value])]),(H=i.additional)==null?void 0:H.call(i,{group:f})]}}),[[mn("touch"),q.value]])),{group:f}}}),lE=me({color:String,cycle:Boolean,delimiterIcon:{type:et,default:"$delimiter"},height:{type:[Number,String],default:500},hideDelimiters:Boolean,hideDelimiterBackground:Boolean,interval:{type:[Number,String],default:6e3,validator:e=>Number(e)>0},progress:[Boolean,String],verticalDelimiters:[Boolean,String],...Gp({continuous:!0,mandatory:"force",showArrows:!0})},"VCarousel"),cE=Te()({name:"VCarousel",props:lE(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const r=tt(e,"modelValue"),{t:l}=Rn(),d=Re();let f=-1;He(r,y),He(()=>e.interval,y),He(()=>e.cycle,k=>{k?y():window.clearTimeout(f)}),zt(p);function p(){!e.cycle||!d.value||(f=window.setTimeout(d.value.group.next,+e.interval>0?+e.interval:6e3))}function y(){window.clearTimeout(f),window.requestAnimationFrame(p)}return Me(()=>{const[k]=Dc.filterProps(e);return R(Dc,Ye({ref:d},k,{modelValue:r.value,"onUpdate:modelValue":C=>r.value=C,class:["v-carousel",{"v-carousel--hide-delimiter-background":e.hideDelimiterBackground,"v-carousel--vertical-delimiters":e.verticalDelimiters},e.class],style:[{height:$e(e.height)},e.style]}),{default:i.default,additional:C=>{let{group:A}=C;return R(Ke,null,[!e.hideDelimiters&&R("div",{class:"v-carousel__controls",style:{left:e.verticalDelimiters==="left"&&e.verticalDelimiters?0:"auto",right:e.verticalDelimiters==="right"?0:"auto"}},[A.items.value.length>0&&R(bt,{defaults:{VBtn:{color:e.color,icon:e.delimiterIcon,size:"x-small",variant:"text"}},scoped:!0},{default:()=>[A.items.value.map((E,_)=>{const M={id:`carousel-item-${E.id}`,"aria-label":l("$vuetify.carousel.ariaLabel.delimiter",_+1,A.items.value.length),class:[A.isSelected(E.id)&&"v-btn--active"],onClick:()=>A.select(E.id,!0)};return i.item?i.item({props:M,item:E}):R(cn,Ye(E,M),null)})]})]),e.progress&&R(id,{class:"v-carousel__progress",color:typeof e.progress=="string"?e.progress:void 0,modelValue:(A.getItemIndex(r.value)+1)/A.items.value.length*100},null)])},prev:i.prev,next:i.next})}),{}}}),Up=me({reverseTransition:{type:[Boolean,String],default:void 0},transition:{type:[Boolean,String],default:void 0},...We(),...rs(),...Zo()},"VWindowItem"),zc=Te()({name:"VWindowItem",directives:{Touch:vd},props:Up(),emits:{"group:selected":e=>!0},setup(e,a){let{slots:i}=a;const r=ct($p),l=os(e,jp),{isBooted:d}=Ci();if(!r||!l)throw new Error("[Vuetify] VWindowItem must be used inside VWindow");const f=Xe(!1),p=X(()=>d.value&&(r.isReversed.value?e.reverseTransition!==!1:e.transition!==!1));function y(){!f.value||!r||(f.value=!1,r.transitionCount.value>0&&(r.transitionCount.value-=1,r.transitionCount.value===0&&(r.transitionHeight.value=void 0)))}function k(){var M;f.value||!r||(f.value=!0,r.transitionCount.value===0&&(r.transitionHeight.value=$e((M=r.rootRef.value)==null?void 0:M.clientHeight)),r.transitionCount.value+=1)}function C(){y()}function A(M){f.value&>(()=>{!p.value||!f.value||!r||(r.transitionHeight.value=$e(M.clientHeight))})}const E=X(()=>{const M=r.isReversed.value?e.reverseTransition:e.transition;return p.value?{name:typeof M!="string"?r.transition.value:M,onBeforeEnter:k,onAfterEnter:y,onEnterCancelled:C,onBeforeLeave:k,onAfterLeave:y,onLeaveCancelled:C,onEnter:A}:!1}),{hasContent:_}=dd(e,l.isSelected);return Me(()=>R(Xn,{transition:E.value,disabled:!d.value},{default:()=>{var M;return[Et(R("div",{class:["v-window-item",l.selectedClass.value,e.class],style:e.style},[_.value&&((M=i.default)==null?void 0:M.call(i))]),[[Ln,l.isSelected.value]])]}})),{groupItem:l}}}),uE=me({...Ym(),...Up()},"VCarouselItem"),dE=Te()({name:"VCarouselItem",inheritAttrs:!1,props:uE(),setup(e,a){let{slots:i,attrs:r}=a;Me(()=>{const[l]=vi.filterProps(e),[d]=zc.filterProps(e);return R(zc,Ye({class:"v-carousel-item"},d),{default:()=>[R(vi,Ye(r,l),i)]})})}});const hE=Gn("v-code");const fE=me({color:{type:Object},disabled:Boolean,dotSize:{type:[Number,String],default:10},height:{type:[Number,String],default:150},width:{type:[Number,String],default:300},...We()},"VColorPickerCanvas"),gE=Vn({name:"VColorPickerCanvas",props:fE(),emits:{"update:color":e=>!0,"update:position":e=>!0},setup(e,a){let{emit:i}=a;const r=Xe(!1),l=Xe(!1),d=Re({x:0,y:0}),f=X(()=>{const{x:B,y:L}=d.value,q=parseInt(e.dotSize,10)/2;return{width:$e(e.dotSize),height:$e(e.dotSize),transform:`translate(${$e(B-q)}, ${$e(L-q)})`}}),p=Re(),y=Xe(parseFloat(e.width)),k=Xe(parseFloat(e.height)),{resizeRef:C}=ea(B=>{var Y;if(!((Y=C.value)!=null&&Y.offsetParent))return;const{width:L,height:q}=B[0].contentRect;y.value=L,k.value=q});function A(B,L,q){const{left:Y,top:H,width:J,height:ee}=q;d.value={x:en(B-Y,0,J),y:en(L-H,0,ee)}}function E(B){e.disabled||!p.value||A(B.clientX,B.clientY,p.value.getBoundingClientRect())}function _(B){B.preventDefault(),!e.disabled&&(r.value=!0,window.addEventListener("mousemove",M),window.addEventListener("mouseup",F),window.addEventListener("touchmove",M),window.addEventListener("touchend",F))}function M(B){if(e.disabled||!p.value)return;r.value=!0;const L=uk(B);A(L.clientX,L.clientY,p.value.getBoundingClientRect())}function F(){window.removeEventListener("mousemove",M),window.removeEventListener("mouseup",F),window.removeEventListener("touchmove",M),window.removeEventListener("touchend",F)}He(d,()=>{var q,Y;if(l.value){l.value=!1;return}if(!p.value)return;const{x:B,y:L}=d.value;i("update:color",{h:((q=e.color)==null?void 0:q.h)??0,s:en(B,0,y.value)/y.value,v:1-en(L,0,k.value)/k.value,a:((Y=e.color)==null?void 0:Y.a)??1})});function $(){var H;if(!p.value)return;const B=p.value,L=B.getContext("2d");if(!L)return;const q=L.createLinearGradient(0,0,B.width,0);q.addColorStop(0,"hsla(0, 0%, 100%, 1)"),q.addColorStop(1,`hsla(${((H=e.color)==null?void 0:H.h)??0}, 100%, 50%, 1)`),L.fillStyle=q,L.fillRect(0,0,B.width,B.height);const Y=L.createLinearGradient(0,0,0,B.height);Y.addColorStop(0,"hsla(0, 0%, 100%, 0)"),Y.addColorStop(1,"hsla(0, 0%, 0%, 1)"),L.fillStyle=Y,L.fillRect(0,0,B.width,B.height)}return He(()=>{var B;return(B=e.color)==null?void 0:B.h},$,{immediate:!0}),He(()=>[y.value,k.value],(B,L)=>{$(),d.value={x:d.value.x*B[0]/L[0],y:d.value.y*B[1]/L[1]}},{flush:"post"}),He(()=>e.color,()=>{if(r.value){r.value=!1;return}l.value=!0,d.value=e.color?{x:e.color.s*y.value,y:(1-e.color.v)*k.value}:{x:0,y:0}},{deep:!0,immediate:!0}),zt(()=>$()),Me(()=>R("div",{ref:C,class:["v-color-picker-canvas",e.class],style:e.style,onClick:E,onMousedown:_,onTouchstart:_},[R("canvas",{ref:p,width:y.value,height:k.value},null),e.color&&R("div",{class:["v-color-picker-canvas__dot",{"v-color-picker-canvas__dot--disabled":e.disabled}],style:f.value},null)])),{}}});function vE(e,a){if(a){const{a:i,...r}=e;return r}return e}function mE(e,a){if(a==null||typeof a=="string"){const i=km(e);return e.a===1?i.slice(0,7):i}if(typeof a=="object"){let i;return ii(a,["r","g","b"])?i=ga(e):ii(a,["h","s","l"])?i=bm(e):ii(a,["h","s","v"])&&(i=e),vE(i,!ii(a,["a"])&&e.a===1)}return e}const Os={h:0,s:0,v:1,a:1},Nc={inputProps:{type:"number",min:0},inputs:[{label:"R",max:255,step:1,getValue:e=>Math.round(e.r),getColor:(e,a)=>({...e,r:Number(a)})},{label:"G",max:255,step:1,getValue:e=>Math.round(e.g),getColor:(e,a)=>({...e,g:Number(a)})},{label:"B",max:255,step:1,getValue:e=>Math.round(e.b),getColor:(e,a)=>({...e,b:Number(a)})},{label:"A",max:1,step:.01,getValue:e=>{let{a}=e;return a!=null?Math.round(a*100)/100:1},getColor:(e,a)=>({...e,a:Number(a)})}],to:ga,from:No};var zf;const pE={...Nc,inputs:(zf=Nc.inputs)==null?void 0:zf.slice(0,3)},Hc={inputProps:{type:"number",min:0},inputs:[{label:"H",max:360,step:1,getValue:e=>Math.round(e.h),getColor:(e,a)=>({...e,h:Number(a)})},{label:"S",max:1,step:.01,getValue:e=>Math.round(e.s*100)/100,getColor:(e,a)=>({...e,s:Number(a)})},{label:"L",max:1,step:.01,getValue:e=>Math.round(e.l*100)/100,getColor:(e,a)=>({...e,l:Number(a)})},{label:"A",max:1,step:.01,getValue:e=>{let{a}=e;return a!=null?Math.round(a*100)/100:1},getColor:(e,a)=>({...e,a:Number(a)})}],to:bm,from:Wu},bE={...Hc,inputs:Hc.inputs.slice(0,3)},qp={inputProps:{type:"text"},inputs:[{label:"HEXA",getValue:e=>e,getColor:(e,a)=>a}],to:km,from:Ik},xE={...qp,inputs:[{label:"HEX",getValue:e=>e.slice(0,7),getColor:(e,a)=>a}]},ui={rgb:pE,rgba:Nc,hsl:bE,hsla:Hc,hex:xE,hexa:qp},yE=e=>{let{label:a,...i}=e;return R("div",{class:"v-color-picker-edit__input"},[R("input",i,null),R("span",null,[a])])},wE=me({color:Object,disabled:Boolean,mode:{type:String,default:"rgba",validator:e=>Object.keys(ui).includes(e)},modes:{type:Array,default:()=>Object.keys(ui),validator:e=>Array.isArray(e)&&e.every(a=>Object.keys(ui).includes(a))},...We()},"VColorPickerEdit"),SE=Vn({name:"VColorPickerEdit",props:wE(),emits:{"update:color":e=>!0,"update:mode":e=>!0},setup(e,a){let{emit:i}=a;const r=X(()=>e.modes.map(d=>({...ui[d],name:d}))),l=X(()=>{var p;const d=r.value.find(y=>y.name===e.mode);if(!d)return[];const f=e.color?d.to(e.color):null;return(p=d.inputs)==null?void 0:p.map(y=>{let{getValue:k,getColor:C,...A}=y;return{...d.inputProps,...A,disabled:e.disabled,value:f&&k(f),onChange:E=>{const _=E.target;_&&i("update:color",d.from(C(f??Os,_.value)))}}})});return Me(()=>{var d;return R("div",{class:["v-color-picker-edit",e.class],style:e.style},[(d=l.value)==null?void 0:d.map(f=>R(yE,f,null)),r.value.length>1&&R(cn,{icon:"$unfold",size:"x-small",variant:"plain",onClick:()=>{const f=r.value.findIndex(p=>p.name===e.mode);i("update:mode",r.value[(f+1)%r.value.length].name)}},null)])}),{}}});const md=Symbol.for("vuetify:v-slider");function Xc(e,a,i){const r=i==="vertical",l=a.getBoundingClientRect(),d="touches"in e?e.touches[0]:e;return r?d.clientY-(l.top+l.height/2):d.clientX-(l.left+l.width/2)}function kE(e,a){return"touches"in e&&e.touches.length?e.touches[0][a]:"changedTouches"in e&&e.changedTouches.length?e.changedTouches[0][a]:e[a]}const Kp=me({disabled:{type:Boolean,default:null},error:Boolean,readonly:{type:Boolean,default:null},max:{type:[Number,String],default:100},min:{type:[Number,String],default:0},step:{type:[Number,String],default:0},thumbColor:String,thumbLabel:{type:[Boolean,String],default:void 0,validator:e=>typeof e=="boolean"||e==="always"},thumbSize:{type:[Number,String],default:20},showTicks:{type:[Boolean,String],default:!1,validator:e=>typeof e=="boolean"||e==="always"},ticks:{type:[Array,Object]},tickSize:{type:[Number,String],default:2},color:String,trackColor:String,trackFillColor:String,trackSize:{type:[Number,String],default:4},direction:{type:String,default:"horizontal",validator:e=>["vertical","horizontal"].includes(e)},reverse:Boolean,...At(),...Nt({elevation:2})},"Slider"),Zp=e=>{const a=X(()=>parseFloat(e.min)),i=X(()=>parseFloat(e.max)),r=X(()=>+e.step>0?parseFloat(e.step):0),l=X(()=>Math.max(Wh(r.value),Wh(a.value)));function d(f){if(f=parseFloat(f),r.value<=0)return f;const p=en(f,a.value,i.value),y=a.value%r.value,k=Math.round((p-y)/r.value)*r.value+y;return parseFloat(Math.min(k,i.value).toFixed(l.value))}return{min:a,max:i,step:r,decimals:l,roundValue:d}},Jp=e=>{let{props:a,steps:i,onSliderStart:r,onSliderMove:l,onSliderEnd:d,getActiveThumb:f}=e;const{isRtl:p}=$t(),y=Ie(a,"reverse"),k=X(()=>{let ue=p.value?"rtl":"ltr";return a.reverse&&(ue=ue==="rtl"?"ltr":"rtl"),ue}),{min:C,max:A,step:E,decimals:_,roundValue:M}=i,F=X(()=>parseInt(a.thumbSize,10)),$=X(()=>parseInt(a.tickSize,10)),B=X(()=>parseInt(a.trackSize,10)),L=X(()=>(A.value-C.value)/E.value),q=Ie(a,"disabled"),Y=X(()=>a.direction==="vertical"),H=X(()=>a.error||a.disabled?void 0:a.thumbColor??a.color),J=X(()=>a.error||a.disabled?void 0:a.trackColor??a.color),ee=X(()=>a.error||a.disabled?void 0:a.trackFillColor??a.color),W=Xe(!1),j=Xe(0),Q=Re(),ie=Re();function ne(ue){var ce;const de=a.direction==="vertical",Le=de?"top":"left",_e=de?"height":"width",be=de?"clientY":"clientX",{[Le]:ve,[_e]:Z}=(ce=Q.value)==null?void 0:ce.$el.getBoundingClientRect(),te=kE(ue,be);let se=Math.min(Math.max((te-ve-j.value)/Z,0),1)||0;return(de||k.value==="rtl")&&(se=1-se),M(C.value+se*(A.value-C.value))}const oe=ue=>{d({value:ne(ue)}),W.value=!1,j.value=0},le=ue=>{ie.value=f(ue),ie.value&&(ie.value.focus(),W.value=!0,ie.value.contains(ue.target)?j.value=Xc(ue,ie.value,a.direction):(j.value=0,l({value:ne(ue)})),r({value:ne(ue)}))},Ce={passive:!0,capture:!0};function ye(ue){l({value:ne(ue)})}function fe(ue){ue.stopPropagation(),ue.preventDefault(),oe(ue),window.removeEventListener("mousemove",ye,Ce),window.removeEventListener("mouseup",fe)}function he(ue){var de;oe(ue),window.removeEventListener("touchmove",ye,Ce),(de=ue.target)==null||de.removeEventListener("touchend",he)}function Se(ue){var de;le(ue),window.addEventListener("touchmove",ye,Ce),(de=ue.target)==null||de.addEventListener("touchend",he,{passive:!1})}function Ee(ue){ue.preventDefault(),le(ue),window.addEventListener("mousemove",ye,Ce),window.addEventListener("mouseup",fe,{passive:!1})}const De=ue=>{const de=(ue-C.value)/(A.value-C.value)*100;return en(isNaN(de)?0:de,0,100)},Fe=Ie(a,"showTicks"),Ze=X(()=>Fe.value?a.ticks?Array.isArray(a.ticks)?a.ticks.map(ue=>({value:ue,position:De(ue),label:ue.toString()})):Object.keys(a.ticks).map(ue=>({value:parseFloat(ue),position:De(parseFloat(ue)),label:a.ticks[ue]})):L.value!==1/0?la(L.value+1).map(ue=>{const de=C.value+ue*E.value;return{value:de,position:De(de)}}):[]:[]),Je=X(()=>Ze.value.some(ue=>{let{label:de}=ue;return!!de})),ze={activeThumbRef:ie,color:Ie(a,"color"),decimals:_,disabled:q,direction:Ie(a,"direction"),elevation:Ie(a,"elevation"),hasLabels:Je,horizontalDirection:k,isReversed:y,min:C,max:A,mousePressed:W,numTicks:L,onSliderMousedown:Ee,onSliderTouchstart:Se,parsedTicks:Ze,parseMouseMove:ne,position:De,readonly:Ie(a,"readonly"),rounded:Ie(a,"rounded"),roundValue:M,showTicks:Fe,startOffset:j,step:E,thumbSize:F,thumbColor:H,thumbLabel:Ie(a,"thumbLabel"),ticks:Ie(a,"ticks"),tickSize:$,trackColor:J,trackContainerRef:Q,trackFillColor:ee,trackSize:B,vertical:Y};return Pt(md,ze),ze},CE=me({focused:Boolean,max:{type:Number,required:!0},min:{type:Number,required:!0},modelValue:{type:Number,required:!0},position:{type:Number,required:!0},ripple:{type:[Boolean,Object],default:!0},...We()},"VSliderThumb"),Yc=Te()({name:"VSliderThumb",directives:{Ripple:Ga},props:CE(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i,emit:r}=a;const l=ct(md),{rtlClasses:d}=$t();if(!l)throw new Error("[Vuetify] v-slider-thumb must be used inside v-slider or v-range-slider");const{thumbColor:f,step:p,vertical:y,disabled:k,thumbSize:C,thumbLabel:A,direction:E,readonly:_,elevation:M,isReversed:F,horizontalDirection:$,mousePressed:B,decimals:L}=l,{textColorClasses:q,textColorStyles:Y}=an(f),{pageup:H,pagedown:J,end:ee,home:W,left:j,right:Q,down:ie,up:ne}=bc,oe=[H,J,ee,W,j,Q,ie,ne],le=X(()=>p.value?[1,2,3]:[1,5,10]);function Ce(fe,he){if(!oe.includes(fe.key))return;fe.preventDefault();const Se=p.value||.1,Ee=(e.max-e.min)/Se;if([j,Q,ie,ne].includes(fe.key)){const Fe=($.value==="rtl"?[j,ne]:[Q,ne]).includes(fe.key)?1:-1,Ze=fe.shiftKey?2:fe.ctrlKey?1:0;he=he+Fe*Se*le.value[Ze]}else if(fe.key===W)he=e.min;else if(fe.key===ee)he=e.max;else{const De=fe.key===J?1:-1;he=he-De*Se*(Ee>100?Ee/10:10)}return Math.max(e.min,Math.min(e.max,he))}function ye(fe){const he=Ce(fe,e.modelValue);he!=null&&r("update:modelValue",he)}return Me(()=>{const fe=$e(y.value||F.value?100-e.position:e.position,"%"),{elevationClasses:he}=Kt(X(()=>k.value?void 0:M.value));return R("div",{class:["v-slider-thumb",{"v-slider-thumb--focused":e.focused,"v-slider-thumb--pressed":e.focused&&B.value},e.class,d.value],style:[{"--v-slider-thumb-position":fe,"--v-slider-thumb-size":$e(C.value)},e.style],role:"slider",tabindex:k.value?-1:0,"aria-valuemin":e.min,"aria-valuemax":e.max,"aria-valuenow":e.modelValue,"aria-readonly":!!_.value,"aria-orientation":E.value,onKeydown:_.value?void 0:ye},[R("div",{class:["v-slider-thumb__surface",q.value,he.value],style:{...Y.value}},null),Et(R("div",{class:["v-slider-thumb__ripple",q.value],style:Y.value},null),[[mn("ripple"),e.ripple,null,{circle:!0,center:!0}]]),R(Zu,{origin:"bottom center"},{default:()=>{var Se;return[Et(R("div",{class:"v-slider-thumb__label-container"},[R("div",{class:["v-slider-thumb__label"]},[R("div",null,[((Se=i["thumb-label"])==null?void 0:Se.call(i,{modelValue:e.modelValue}))??e.modelValue.toFixed(p.value?L.value:1)])])]),[[Ln,A.value&&e.focused||A.value==="always"]])]}})])}),{}}});const AE=me({start:{type:Number,required:!0},stop:{type:Number,required:!0},...We()},"VSliderTrack"),Qp=Te()({name:"VSliderTrack",props:AE(),emits:{},setup(e,a){let{slots:i}=a;const r=ct(md);if(!r)throw new Error("[Vuetify] v-slider-track must be inside v-slider or v-range-slider");const{color:l,horizontalDirection:d,parsedTicks:f,rounded:p,showTicks:y,tickSize:k,trackColor:C,trackFillColor:A,trackSize:E,vertical:_,min:M,max:F}=r,{roundedClasses:$}=Lt(p),{backgroundColorClasses:B,backgroundColorStyles:L}=Vt(A),{backgroundColorClasses:q,backgroundColorStyles:Y}=Vt(C),H=X(()=>`inset-${_.value?"block-end":"inline-start"}`),J=X(()=>_.value?"height":"width"),ee=X(()=>({[H.value]:"0%",[J.value]:"100%"})),W=X(()=>e.stop-e.start),j=X(()=>({[H.value]:$e(e.start,"%"),[J.value]:$e(W.value,"%")})),Q=X(()=>y.value?(_.value?f.value.slice().reverse():f.value).map((ne,oe)=>{var ye;const le=_.value?"bottom":"margin-inline-start",Ce=ne.value!==M.value&&ne.value!==F.value?$e(ne.position,"%"):void 0;return R("div",{key:ne.value,class:["v-slider-track__tick",{"v-slider-track__tick--filled":ne.position>=e.start&&ne.position<=e.stop,"v-slider-track__tick--first":ne.value===M.value,"v-slider-track__tick--last":ne.value===F.value}],style:{[le]:Ce}},[(ne.label||i["tick-label"])&&R("div",{class:"v-slider-track__tick-label"},[((ye=i["tick-label"])==null?void 0:ye.call(i,{tick:ne,index:oe}))??ne.label])])}):[]);return Me(()=>R("div",{class:["v-slider-track",$.value,e.class],style:[{"--v-slider-track-size":$e(E.value),"--v-slider-tick-size":$e(k.value),direction:_.value?void 0:d.value},e.style]},[R("div",{class:["v-slider-track__background",q.value,{"v-slider-track__background--opacity":!!l.value||!A.value}],style:{...ee.value,...Y.value}},null),R("div",{class:["v-slider-track__fill",B.value],style:{...j.value,...L.value}},null),y.value&&R("div",{class:["v-slider-track__ticks",{"v-slider-track__ticks--always-show":y.value==="always"}]},[Q.value])])),{}}}),PE=me({...Uo(),...Kp(),...Sa(),modelValue:{type:[Number,String],default:0}},"VSlider"),Wc=Te()({name:"VSlider",props:PE(),emits:{"update:focused":e=>!0,"update:modelValue":e=>!0,start:e=>!0,end:e=>!0},setup(e,a){let{slots:i,emit:r}=a;const l=Re(),{rtlClasses:d}=$t(),f=Zp(e),p=tt(e,"modelValue",void 0,J=>f.roundValue(J??f.min.value)),{min:y,max:k,mousePressed:C,roundValue:A,onSliderMousedown:E,onSliderTouchstart:_,trackContainerRef:M,position:F,hasLabels:$,readonly:B}=Jp({props:e,steps:f,onSliderStart:()=>{r("start",p.value)},onSliderEnd:J=>{let{value:ee}=J;const W=A(ee);p.value=W,r("end",W)},onSliderMove:J=>{let{value:ee}=J;return p.value=A(ee)},getActiveThumb:()=>{var J;return(J=l.value)==null?void 0:J.$el}}),{isFocused:L,focus:q,blur:Y}=Ua(e),H=X(()=>F(p.value));return Me(()=>{const[J,ee]=Ut.filterProps(e),W=!!(e.label||i.label||i.prepend);return R(Ut,Ye({class:["v-slider",{"v-slider--has-labels":!!i["tick-label"]||$.value,"v-slider--focused":L.value,"v-slider--pressed":C.value,"v-slider--disabled":e.disabled},d.value,e.class],style:e.style},J,{focused:L.value}),{...i,prepend:W?j=>{var Q,ie;return R(Ke,null,[((Q=i.label)==null?void 0:Q.call(i,j))??e.label?R(ds,{id:j.id.value,class:"v-slider__label",text:e.label},null):void 0,(ie=i.prepend)==null?void 0:ie.call(i,j)])}:void 0,default:j=>{let{id:Q,messagesId:ie}=j;return R("div",{class:"v-slider__container",onMousedown:B.value?void 0:E,onTouchstartPassive:B.value?void 0:_},[R("input",{id:Q.value,name:e.name||Q.value,disabled:!!e.disabled,readonly:!!e.readonly,tabindex:"-1",value:p.value},null),R(Qp,{ref:M,start:0,stop:H.value},{"tick-label":i["tick-label"]}),R(Yc,{ref:l,"aria-describedby":ie.value,focused:L.value,min:y.value,max:k.value,modelValue:p.value,"onUpdate:modelValue":ne=>p.value=ne,position:H.value,elevation:e.elevation,onFocus:q,onBlur:Y},{"thumb-label":i["thumb-label"]})])}})}),{}}}),EE=me({color:{type:Object},disabled:Boolean,hideAlpha:Boolean,...We()},"VColorPickerPreview"),TE=Vn({name:"VColorPickerPreview",props:EE(),emits:{"update:color":e=>!0},setup(e,a){let{emit:i}=a;return Me(()=>{var r,l;return R("div",{class:["v-color-picker-preview",{"v-color-picker-preview--hide-alpha":e.hideAlpha},e.class],style:e.style},[R("div",{class:"v-color-picker-preview__dot"},[R("div",{style:{background:ym(e.color??Os)}},null)]),R("div",{class:"v-color-picker-preview__sliders"},[R(Wc,{class:"v-color-picker-preview__track v-color-picker-preview__hue",modelValue:(r=e.color)==null?void 0:r.h,"onUpdate:modelValue":d=>i("update:color",{...e.color??Os,h:d}),step:0,min:0,max:360,disabled:e.disabled,thumbSize:14,trackSize:8,trackFillColor:"white",hideDetails:!0},null),!e.hideAlpha&&R(Wc,{class:"v-color-picker-preview__track v-color-picker-preview__alpha",modelValue:((l=e.color)==null?void 0:l.a)??1,"onUpdate:modelValue":d=>i("update:color",{...e.color??Os,a:d}),step:1/256,min:0,max:1,disabled:e.disabled,thumbSize:14,trackSize:8,trackFillColor:"white",hideDetails:!0},null)])])}),{}}});const IE=Object.freeze({base:"#f44336",lighten5:"#ffebee",lighten4:"#ffcdd2",lighten3:"#ef9a9a",lighten2:"#e57373",lighten1:"#ef5350",darken1:"#e53935",darken2:"#d32f2f",darken3:"#c62828",darken4:"#b71c1c",accent1:"#ff8a80",accent2:"#ff5252",accent3:"#ff1744",accent4:"#d50000"}),LE=Object.freeze({base:"#e91e63",lighten5:"#fce4ec",lighten4:"#f8bbd0",lighten3:"#f48fb1",lighten2:"#f06292",lighten1:"#ec407a",darken1:"#d81b60",darken2:"#c2185b",darken3:"#ad1457",darken4:"#880e4f",accent1:"#ff80ab",accent2:"#ff4081",accent3:"#f50057",accent4:"#c51162"}),_E=Object.freeze({base:"#9c27b0",lighten5:"#f3e5f5",lighten4:"#e1bee7",lighten3:"#ce93d8",lighten2:"#ba68c8",lighten1:"#ab47bc",darken1:"#8e24aa",darken2:"#7b1fa2",darken3:"#6a1b9a",darken4:"#4a148c",accent1:"#ea80fc",accent2:"#e040fb",accent3:"#d500f9",accent4:"#aa00ff"}),VE=Object.freeze({base:"#673ab7",lighten5:"#ede7f6",lighten4:"#d1c4e9",lighten3:"#b39ddb",lighten2:"#9575cd",lighten1:"#7e57c2",darken1:"#5e35b1",darken2:"#512da8",darken3:"#4527a0",darken4:"#311b92",accent1:"#b388ff",accent2:"#7c4dff",accent3:"#651fff",accent4:"#6200ea"}),RE=Object.freeze({base:"#3f51b5",lighten5:"#e8eaf6",lighten4:"#c5cae9",lighten3:"#9fa8da",lighten2:"#7986cb",lighten1:"#5c6bc0",darken1:"#3949ab",darken2:"#303f9f",darken3:"#283593",darken4:"#1a237e",accent1:"#8c9eff",accent2:"#536dfe",accent3:"#3d5afe",accent4:"#304ffe"}),ME=Object.freeze({base:"#2196f3",lighten5:"#e3f2fd",lighten4:"#bbdefb",lighten3:"#90caf9",lighten2:"#64b5f6",lighten1:"#42a5f5",darken1:"#1e88e5",darken2:"#1976d2",darken3:"#1565c0",darken4:"#0d47a1",accent1:"#82b1ff",accent2:"#448aff",accent3:"#2979ff",accent4:"#2962ff"}),OE=Object.freeze({base:"#03a9f4",lighten5:"#e1f5fe",lighten4:"#b3e5fc",lighten3:"#81d4fa",lighten2:"#4fc3f7",lighten1:"#29b6f6",darken1:"#039be5",darken2:"#0288d1",darken3:"#0277bd",darken4:"#01579b",accent1:"#80d8ff",accent2:"#40c4ff",accent3:"#00b0ff",accent4:"#0091ea"}),FE=Object.freeze({base:"#00bcd4",lighten5:"#e0f7fa",lighten4:"#b2ebf2",lighten3:"#80deea",lighten2:"#4dd0e1",lighten1:"#26c6da",darken1:"#00acc1",darken2:"#0097a7",darken3:"#00838f",darken4:"#006064",accent1:"#84ffff",accent2:"#18ffff",accent3:"#00e5ff",accent4:"#00b8d4"}),BE=Object.freeze({base:"#009688",lighten5:"#e0f2f1",lighten4:"#b2dfdb",lighten3:"#80cbc4",lighten2:"#4db6ac",lighten1:"#26a69a",darken1:"#00897b",darken2:"#00796b",darken3:"#00695c",darken4:"#004d40",accent1:"#a7ffeb",accent2:"#64ffda",accent3:"#1de9b6",accent4:"#00bfa5"}),DE=Object.freeze({base:"#4caf50",lighten5:"#e8f5e9",lighten4:"#c8e6c9",lighten3:"#a5d6a7",lighten2:"#81c784",lighten1:"#66bb6a",darken1:"#43a047",darken2:"#388e3c",darken3:"#2e7d32",darken4:"#1b5e20",accent1:"#b9f6ca",accent2:"#69f0ae",accent3:"#00e676",accent4:"#00c853"}),zE=Object.freeze({base:"#8bc34a",lighten5:"#f1f8e9",lighten4:"#dcedc8",lighten3:"#c5e1a5",lighten2:"#aed581",lighten1:"#9ccc65",darken1:"#7cb342",darken2:"#689f38",darken3:"#558b2f",darken4:"#33691e",accent1:"#ccff90",accent2:"#b2ff59",accent3:"#76ff03",accent4:"#64dd17"}),NE=Object.freeze({base:"#cddc39",lighten5:"#f9fbe7",lighten4:"#f0f4c3",lighten3:"#e6ee9c",lighten2:"#dce775",lighten1:"#d4e157",darken1:"#c0ca33",darken2:"#afb42b",darken3:"#9e9d24",darken4:"#827717",accent1:"#f4ff81",accent2:"#eeff41",accent3:"#c6ff00",accent4:"#aeea00"}),HE=Object.freeze({base:"#ffeb3b",lighten5:"#fffde7",lighten4:"#fff9c4",lighten3:"#fff59d",lighten2:"#fff176",lighten1:"#ffee58",darken1:"#fdd835",darken2:"#fbc02d",darken3:"#f9a825",darken4:"#f57f17",accent1:"#ffff8d",accent2:"#ffff00",accent3:"#ffea00",accent4:"#ffd600"}),XE=Object.freeze({base:"#ffc107",lighten5:"#fff8e1",lighten4:"#ffecb3",lighten3:"#ffe082",lighten2:"#ffd54f",lighten1:"#ffca28",darken1:"#ffb300",darken2:"#ffa000",darken3:"#ff8f00",darken4:"#ff6f00",accent1:"#ffe57f",accent2:"#ffd740",accent3:"#ffc400",accent4:"#ffab00"}),YE=Object.freeze({base:"#ff9800",lighten5:"#fff3e0",lighten4:"#ffe0b2",lighten3:"#ffcc80",lighten2:"#ffb74d",lighten1:"#ffa726",darken1:"#fb8c00",darken2:"#f57c00",darken3:"#ef6c00",darken4:"#e65100",accent1:"#ffd180",accent2:"#ffab40",accent3:"#ff9100",accent4:"#ff6d00"}),WE=Object.freeze({base:"#ff5722",lighten5:"#fbe9e7",lighten4:"#ffccbc",lighten3:"#ffab91",lighten2:"#ff8a65",lighten1:"#ff7043",darken1:"#f4511e",darken2:"#e64a19",darken3:"#d84315",darken4:"#bf360c",accent1:"#ff9e80",accent2:"#ff6e40",accent3:"#ff3d00",accent4:"#dd2c00"}),$E=Object.freeze({base:"#795548",lighten5:"#efebe9",lighten4:"#d7ccc8",lighten3:"#bcaaa4",lighten2:"#a1887f",lighten1:"#8d6e63",darken1:"#6d4c41",darken2:"#5d4037",darken3:"#4e342e",darken4:"#3e2723"}),jE=Object.freeze({base:"#607d8b",lighten5:"#eceff1",lighten4:"#cfd8dc",lighten3:"#b0bec5",lighten2:"#90a4ae",lighten1:"#78909c",darken1:"#546e7a",darken2:"#455a64",darken3:"#37474f",darken4:"#263238"}),GE=Object.freeze({base:"#9e9e9e",lighten5:"#fafafa",lighten4:"#f5f5f5",lighten3:"#eeeeee",lighten2:"#e0e0e0",lighten1:"#bdbdbd",darken1:"#757575",darken2:"#616161",darken3:"#424242",darken4:"#212121"}),UE=Object.freeze({black:"#000000",white:"#ffffff",transparent:"#ffffff00"}),qE=Object.freeze({red:IE,pink:LE,purple:_E,deepPurple:VE,indigo:RE,blue:ME,lightBlue:OE,cyan:FE,teal:BE,green:DE,lightGreen:zE,lime:NE,yellow:HE,amber:XE,orange:YE,deepOrange:WE,brown:$E,blueGrey:jE,grey:GE,shades:UE}),KE=me({swatches:{type:Array,default:()=>ZE(qE)},disabled:Boolean,color:Object,maxHeight:[Number,String],...We()},"VColorPickerSwatches");function ZE(e){return Object.keys(e).map(a=>{const i=e[a];return i.base?[i.base,i.darken4,i.darken3,i.darken2,i.darken1,i.lighten1,i.lighten2,i.lighten3,i.lighten4,i.lighten5]:[i.black,i.white,i.transparent]})}const JE=Vn({name:"VColorPickerSwatches",props:KE(),emits:{"update:color":e=>!0},setup(e,a){let{emit:i}=a;return Me(()=>R("div",{class:["v-color-picker-swatches",e.class],style:[{maxHeight:$e(e.maxHeight)},e.style]},[R("div",null,[e.swatches.map(r=>R("div",{class:"v-color-picker-swatches__swatch"},[r.map(l=>{const d=Hn(l),f=No(d),p=xm(d);return R("div",{class:"v-color-picker-swatches__color",onClick:()=>f&&i("update:color",f)},[R("div",{style:{background:p}},[e.color&&wi(e.color,f)?R(wt,{size:"x-small",icon:"$success",color:Rk(l,"#FFFFFF")>2?"white":"black"},null):void 0])])})]))])])),{}}});const eb=me({color:String,...Cn(),...We(),...Mn(),...Nt(),...$a(),...cs(),...At(),...at(),...dt()},"VSheet"),$c=Te()({name:"VSheet",props:eb(),setup(e,a){let{slots:i}=a;const{themeClasses:r}=vt(e),{backgroundColorClasses:l,backgroundColorStyles:d}=Vt(Ie(e,"color")),{borderClasses:f}=Fn(e),{dimensionStyles:p}=On(e),{elevationClasses:y}=Kt(e),{locationStyles:k}=ja(e),{positionClasses:C}=us(e),{roundedClasses:A}=Lt(e);return Me(()=>R(e.tag,{class:["v-sheet",r.value,l.value,f.value,y.value,C.value,A.value,e.class],style:[d.value,p.value,k.value,e.style]},i)),{}}}),QE=me({canvasHeight:{type:[String,Number],default:150},disabled:Boolean,dotSize:{type:[Number,String],default:10},hideCanvas:Boolean,hideSliders:Boolean,hideInputs:Boolean,mode:{type:String,default:"rgba",validator:e=>Object.keys(ui).includes(e)},modes:{type:Array,default:()=>Object.keys(ui),validator:e=>Array.isArray(e)&&e.every(a=>Object.keys(ui).includes(a))},showSwatches:Boolean,swatches:Array,swatchesMaxHeight:{type:[Number,String],default:150},modelValue:{type:[Object,String]},..._n(eb({width:300}),["height","location","minHeight","maxHeight","minWidth","maxWidth"])},"VColorPicker"),eT=Vn({name:"VColorPicker",props:QE(),emits:{"update:modelValue":e=>!0,"update:mode":e=>!0},setup(e){const a=tt(e,"mode"),i=Re(null),r=tt(e,"modelValue",void 0,f=>{if(f==null||f==="")return null;let p;try{p=No(Hn(f))}catch{return null}return i.value&&(p={...p,h:i.value.h},i.value=null),p},f=>f?mE(f,e.modelValue):null),{rtlClasses:l}=$t(),d=f=>{r.value=f,i.value=f};return zt(()=>{e.modes.includes(a.value)||(a.value=e.modes[0])}),Bt({VSlider:{color:void 0,trackColor:void 0,trackFillColor:void 0}}),Me(()=>{const[f]=$c.filterProps(e);return R($c,Ye({rounded:e.rounded,elevation:e.elevation,theme:e.theme,class:["v-color-picker",l.value,e.class],style:[{"--v-color-picker-color-hsv":ym({...r.value??Os,a:1})},e.style]},f,{maxWidth:e.width}),{default:()=>[!e.hideCanvas&&R(gE,{key:"canvas",color:r.value,"onUpdate:color":d,disabled:e.disabled,dotSize:e.dotSize,width:e.width,height:e.canvasHeight},null),(!e.hideSliders||!e.hideInputs)&&R("div",{key:"controls",class:"v-color-picker__controls"},[!e.hideSliders&&R(TE,{key:"preview",color:r.value,"onUpdate:color":d,hideAlpha:!a.value.endsWith("a"),disabled:e.disabled},null),!e.hideInputs&&R(SE,{key:"edit",modes:e.modes,mode:a.value,"onUpdate:mode":p=>a.value=p,color:r.value,"onUpdate:color":d,disabled:e.disabled},null)]),e.showSwatches&&R(JE,{key:"swatches",color:r.value,"onUpdate:color":d,maxHeight:e.swatchesMaxHeight,swatches:e.swatches,disabled:e.disabled},null)]})}),{}}});function tT(e,a,i){if(a==null)return e;if(Array.isArray(a))throw new Error("Multiple matches is not implemented");return typeof a=="number"&&~a?R(Ke,null,[R("span",{class:"v-combobox__unmask"},[e.substr(0,a)]),R("span",{class:"v-combobox__mask"},[e.substr(a,i)]),R("span",{class:"v-combobox__unmask"},[e.substr(a+i)])]):e}const nT=me({autoSelectFirst:{type:[Boolean,String]},delimiters:Array,...Mp({filterKeys:["title"]}),...gd({hideNoData:!0,returnObject:!0}),..._n(tl({modelValue:null,role:"combobox"}),["validationValue","dirty","appendInnerIcon"]),...ya({transition:!1})},"VCombobox"),aT=Te()({name:"VCombobox",props:nT(),emits:{"update:focused":e=>!0,"update:modelValue":e=>!0,"update:search":e=>!0,"update:menu":e=>!0},setup(e,a){var be;let{emit:i,slots:r}=a;const{t:l}=Rn(),d=Re(),f=Xe(!1),p=Xe(!0),y=Xe(!1),k=Re(),C=Re(),A=tt(e,"menu"),E=X({get:()=>A.value,set:ve=>{var Z;A.value&&!ve&&((Z=k.value)!=null&&Z.ΨopenChildren)||(A.value=ve)}}),_=Xe(-1);let M=!1;const F=X(()=>{var ve;return(ve=d.value)==null?void 0:ve.color}),$=X(()=>E.value?e.closeText:e.openText),{items:B,transformIn:L,transformOut:q}=ud(e),{textColorClasses:Y,textColorStyles:H}=an(F),J=tt(e,"modelValue",[],ve=>L(In(ve)),ve=>{const Z=q(ve);return e.multiple?Z:Z[0]??null}),ee=qo(),W=Xe(e.multiple?"":((be=J.value[0])==null?void 0:be.title)??""),j=X({get:()=>W.value,set:ve=>{var Z;if(W.value=ve,e.multiple||(J.value=[Bi(e,ve)]),ve&&e.multiple&&((Z=e.delimiters)!=null&&Z.length)){const te=ve.split(new RegExp(`(?:${e.delimiters.join("|")})+`));te.length>1&&(te.forEach(se=>{se=se.trim(),se&&ue(Bi(e,se))}),W.value="")}ve||(_.value=-1),p.value=!ve}});He(W,ve=>{M?gt(()=>M=!1):f.value&&!E.value&&(E.value=!0),i("update:search",ve)}),He(J,ve=>{var Z;e.multiple||(W.value=((Z=ve[0])==null?void 0:Z.title)??"")});const{filteredItems:Q,getMatches:ie}=Op(e,B,()=>p.value?"":j.value),ne=X(()=>J.value.map(ve=>B.value.find(Z=>{const te=Qt(Z.raw,e.itemValue),se=Qt(ve.raw,e.itemValue);return te===void 0||se===void 0?!1:e.returnObject?e.valueComparator(te,se):e.valueComparator(Z.value,ve.value)})||ve)),oe=X(()=>e.hideSelected?Q.value.filter(ve=>!ne.value.some(Z=>Z.value===ve.value)):Q.value),le=X(()=>ne.value.map(ve=>ve.props.value)),Ce=X(()=>ne.value[_.value]),ye=X(()=>{var Z;return(e.autoSelectFirst===!0||e.autoSelectFirst==="exact"&&j.value===((Z=oe.value[0])==null?void 0:Z.title))&&oe.value.length>0&&!p.value&&!y.value}),fe=X(()=>e.hideNoData&&!B.value.length||e.readonly||(ee==null?void 0:ee.isReadonly.value)),he=Re(),{onListScroll:Se,onListKeydown:Ee}=fd(he,d);function De(ve){M=!0,e.openOnClear&&(E.value=!0)}function Fe(){fe.value||(E.value=!0)}function Ze(ve){fe.value||(f.value&&(ve.preventDefault(),ve.stopPropagation()),E.value=!E.value)}function Je(ve){var se;if(e.readonly||ee!=null&&ee.isReadonly.value)return;const Z=d.value.selectionStart,te=le.value.length;if((_.value>-1||["Enter","ArrowDown","ArrowUp"].includes(ve.key))&&ve.preventDefault(),["Enter","ArrowDown"].includes(ve.key)&&(E.value=!0),["Escape"].includes(ve.key)&&(E.value=!1),["Enter","Escape","Tab"].includes(ve.key)&&(ye.value&&["Enter","Tab"].includes(ve.key)&&ue(Q.value[0]),p.value=!0),ve.key==="ArrowDown"&&ye.value&&((se=he.value)==null||se.focus("next")),!!e.multiple){if(["Backspace","Delete"].includes(ve.key)){if(_.value<0){ve.key==="Backspace"&&!j.value&&(_.value=te-1);return}const ce=_.value;Ce.value&&ue(Ce.value),_.value=ce>=te-1?te-2:ce}if(ve.key==="ArrowLeft"){if(_.value<0&&Z>0)return;const ce=_.value>-1?_.value-1:te-1;ne.value[ce]?_.value=ce:(_.value=-1,d.value.setSelectionRange(j.value.length,j.value.length))}if(ve.key==="ArrowRight"){if(_.value<0)return;const ce=_.value+1;ne.value[ce]?_.value=ce:(_.value=-1,d.value.setSelectionRange(0,0))}ve.key==="Enter"&&j.value&&(ue(Bi(e,j.value)),j.value="")}}function ze(){var ve;f.value&&(p.value=!0,(ve=d.value)==null||ve.focus())}function ue(ve){if(e.multiple){const Z=le.value.findIndex(te=>e.valueComparator(te,ve.value));if(Z===-1)J.value=[...J.value,ve];else{const te=[...J.value];te.splice(Z,1),J.value=te}j.value=""}else J.value=[ve],W.value=ve.title,gt(()=>{E.value=!1,p.value=!0})}function de(ve){f.value=!0,setTimeout(()=>{y.value=!0})}function Le(ve){y.value=!1}function _e(ve){(ve==null||ve===""&&!e.multiple)&&(J.value=[])}return He(Q,ve=>{!ve.length&&e.hideNoData&&(E.value=!1)}),He(f,(ve,Z)=>{ve||ve===Z||(_.value=-1,E.value=!1,ye.value&&!y.value&&!ne.value.some(te=>{let{value:se}=te;return se===oe.value[0].value})?ue(oe.value[0]):e.multiple&&j.value&&(J.value=[...J.value,Bi(e,j.value)],j.value=""))}),He(E,()=>{if(!e.hideSelected&&E.value&&ne.value.length){const ve=oe.value.findIndex(Z=>ne.value.some(te=>Z.value===te.value));St&&window.requestAnimationFrame(()=>{var Z;ve>=0&&((Z=C.value)==null||Z.scrollToIndex(ve))})}}),Me(()=>{const ve=!!(e.chips||r.chip),Z=!!(!e.hideNoData||oe.value.length||r["prepend-item"]||r["append-item"]||r["no-data"]),te=J.value.length>0,[se]=pi.filterProps(e);return R(pi,Ye({ref:d},se,{modelValue:j.value,"onUpdate:modelValue":[ce=>j.value=ce,_e],focused:f.value,"onUpdate:focused":ce=>f.value=ce,validationValue:J.externalValue,dirty:te,class:["v-combobox",{"v-combobox--active-menu":E.value,"v-combobox--chips":!!e.chips,"v-combobox--selection-slot":!!r.selection,"v-combobox--selecting-index":_.value>-1,[`v-combobox--${e.multiple?"multiple":"single"}`]:!0},e.class],style:e.style,readonly:e.readonly,placeholder:te?void 0:e.placeholder,"onClick:clear":De,"onMousedown:control":Fe,onKeydown:Je}),{...r,default:()=>R(Ke,null,[R(Jo,Ye({ref:k,modelValue:E.value,"onUpdate:modelValue":ce=>E.value=ce,activator:"parent",contentClass:"v-combobox__content",disabled:fe.value,eager:e.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:e.transition,onAfterLeave:ze},e.menuProps),{default:()=>[Z&&R(Ko,{ref:he,selected:le.value,selectStrategy:e.multiple?"independent":"single-independent",onMousedown:ce=>ce.preventDefault(),onKeydown:Ee,onFocusin:de,onFocusout:Le,onScrollPassive:Se,tabindex:"-1",color:e.itemColor??e.color},{default:()=>{var ce,pe,ke;return[(ce=r["prepend-item"])==null?void 0:ce.call(r),!oe.value.length&&!e.hideNoData&&(((pe=r["no-data"])==null?void 0:pe.call(r))??R(va,{title:l(e.noDataText)},null)),R(nl,{ref:C,renderless:!0,items:oe.value},{default:Oe=>{var Ge;let{item:Pe,index:Be,itemRef:Ve}=Oe;const qe=Ye(Pe.props,{ref:Ve,key:Be,active:ye.value&&Be===0?!0:void 0,onClick:()=>ue(Pe)});return((Ge=r.item)==null?void 0:Ge.call(r,{item:Pe,index:Be,props:qe}))??R(va,qe,{prepend:Ue=>{let{isSelected:Qe}=Ue;return R(Ke,null,[e.multiple&&!e.hideSelected?R(Zi,{key:Pe.value,modelValue:Qe,ripple:!1,tabindex:"-1"},null):void 0,Pe.props.prependIcon&&R(wt,{icon:Pe.props.prependIcon},null)])},title:()=>{var Ue,Qe;return p.value?Pe.title:tT(Pe.title,(Ue=ie(Pe))==null?void 0:Ue.title,((Qe=j.value)==null?void 0:Qe.length)??0)}})}}),(ke=r["append-item"])==null?void 0:ke.call(r)]}})]}),ne.value.map((ce,pe)=>{var Pe;function ke(Be){Be.stopPropagation(),Be.preventDefault(),ue(ce)}const Oe={"onClick:close":ke,onMousedown(Be){Be.preventDefault(),Be.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return R("div",{key:ce.value,class:["v-combobox__selection",pe===_.value&&["v-combobox__selection--selected",Y.value]],style:pe===_.value?H.value:{}},[ve?r.chip?R(bt,{key:"chip-defaults",defaults:{VChip:{closable:e.closableChips,size:"small",text:ce.title}}},{default:()=>{var Be;return[(Be=r.chip)==null?void 0:Be.call(r,{item:ce,index:pe,props:Oe})]}}):R(pr,Ye({key:"chip",closable:e.closableChips,size:"small",text:ce.title},Oe),null):((Pe=r.selection)==null?void 0:Pe.call(r,{item:ce,index:pe}))??R("span",{class:"v-combobox__selection-text"},[ce.title,e.multiple&&pe!0},setup(e,a){let{slots:i}=a;const r=tt(e,"modelValue"),{scopeId:l}=hs(),d=Re();function f(y){var A,E;const k=y.relatedTarget,C=y.target;if(k!==C&&((A=d.value)!=null&&A.contentEl)&&((E=d.value)!=null&&E.globalTop)&&![document,d.value.contentEl].includes(C)&&!d.value.contentEl.contains(C)){const _=Us(d.value.contentEl);if(!_.length)return;const M=_[0],F=_[_.length-1];k===M?F.focus():M.focus()}}St&&He(()=>r.value&&e.retainFocus,y=>{y?document.addEventListener("focusin",f):document.removeEventListener("focusin",f)},{immediate:!0}),He(r,async y=>{var k,C;await gt(),y?(k=d.value.contentEl)==null||k.focus({preventScroll:!0}):(C=d.value.activatorEl)==null||C.focus({preventScroll:!0})});const p=X(()=>Ye({"aria-haspopup":"dialog","aria-expanded":String(r.value)},e.activatorProps));return Me(()=>{const[y]=ma.filterProps(e);return R(ma,Ye({ref:d,class:["v-dialog",{"v-dialog--fullscreen":e.fullscreen,"v-dialog--scrollable":e.scrollable},e.class],style:e.style},y,{modelValue:r.value,"onUpdate:modelValue":k=>r.value=k,"aria-modal":"true",activatorProps:p.value,role:"dialog"},l),{activator:i.activator,default:function(){for(var k=arguments.length,C=new Array(k),A=0;A{var E;return[(E=i.default)==null?void 0:E.call(i,...C)]}})}})}),Un({},d)}});const er=Symbol.for("vuetify:v-expansion-panel"),rT=["default","accordion","inset","popout"],oT=me({color:String,variant:{type:String,default:"default",validator:e=>rT.includes(e)},readonly:Boolean,...We(),...ss(),...at(),...dt()},"VExpansionPanels"),lT=Te()({name:"VExpansionPanels",props:oT(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;Ei(e,er);const{themeClasses:r}=vt(e),l=X(()=>e.variant&&`v-expansion-panels--variant-${e.variant}`);return Bt({VExpansionPanel:{color:Ie(e,"color")},VExpansionPanelTitle:{readonly:Ie(e,"readonly")}}),Me(()=>R(e.tag,{class:["v-expansion-panels",r.value,l.value,e.class],style:e.style},i)),{}}}),cT=me({...We(),...Zo()},"VExpansionPanelText"),tb=Te()({name:"VExpansionPanelText",props:cT(),setup(e,a){let{slots:i}=a;const r=ct(er);if(!r)throw new Error("[Vuetify] v-expansion-panel-text needs to be placed inside v-expansion-panel");const{hasContent:l,onAfterLeave:d}=dd(e,r.isSelected);return Me(()=>R(Wo,{onAfterLeave:d},{default:()=>{var f;return[Et(R("div",{class:["v-expansion-panel-text",e.class],style:e.style},[i.default&&l.value&&R("div",{class:"v-expansion-panel-text__wrapper"},[(f=i.default)==null?void 0:f.call(i)])]),[[Ln,r.isSelected.value]])]}})),{}}}),nb=me({color:String,expandIcon:{type:et,default:"$expand"},collapseIcon:{type:et,default:"$collapse"},hideActions:Boolean,ripple:{type:[Boolean,Object],default:!1},readonly:Boolean,...We()},"VExpansionPanelTitle"),ab=Te()({name:"VExpansionPanelTitle",directives:{Ripple:Ga},props:nb(),setup(e,a){let{slots:i}=a;const r=ct(er);if(!r)throw new Error("[Vuetify] v-expansion-panel-title needs to be placed inside v-expansion-panel");const{backgroundColorClasses:l,backgroundColorStyles:d}=Vt(e,"color"),f=X(()=>({collapseIcon:e.collapseIcon,disabled:r.disabled.value,expanded:r.isSelected.value,expandIcon:e.expandIcon,readonly:e.readonly}));return Me(()=>{var p;return Et(R("button",{class:["v-expansion-panel-title",{"v-expansion-panel-title--active":r.isSelected.value},l.value,e.class],style:[d.value,e.style],type:"button",tabindex:r.disabled.value?-1:void 0,disabled:r.disabled.value,"aria-expanded":r.isSelected.value,onClick:e.readonly?void 0:r.toggle},[R("span",{class:"v-expansion-panel-title__overlay"},null),(p=i.default)==null?void 0:p.call(i,f.value),!e.hideActions&&R("span",{class:"v-expansion-panel-title__icon"},[i.actions?i.actions(f.value):R(wt,{icon:r.isSelected.value?e.collapseIcon:e.expandIcon},null)])]),[[mn("ripple"),e.ripple]])}),{}}}),uT=me({title:String,text:String,bgColor:String,...We(),...Nt(),...rs(),...Zo(),...At(),...at(),...nb()},"VExpansionPanel"),dT=Te()({name:"VExpansionPanel",props:uT(),emits:{"group:selected":e=>!0},setup(e,a){let{slots:i}=a;const r=os(e,er),{backgroundColorClasses:l,backgroundColorStyles:d}=Vt(e,"bgColor"),{elevationClasses:f}=Kt(e),{roundedClasses:p}=Lt(e),y=X(()=>(r==null?void 0:r.disabled.value)||e.disabled),k=X(()=>r.group.items.value.reduce((E,_,M)=>(r.group.selected.value.includes(_.id)&&E.push(M),E),[])),C=X(()=>{const E=r.group.items.value.findIndex(_=>_.id===r.id);return!r.isSelected.value&&k.value.some(_=>_-E===1)}),A=X(()=>{const E=r.group.items.value.findIndex(_=>_.id===r.id);return!r.isSelected.value&&k.value.some(_=>_-E===-1)});return Pt(er,r),Bt({VExpansionPanelText:{eager:Ie(e,"eager")}}),Me(()=>{const E=!!(i.text||e.text),_=!!(i.title||e.title);return R(e.tag,{class:["v-expansion-panel",{"v-expansion-panel--active":r.isSelected.value,"v-expansion-panel--before-active":C.value,"v-expansion-panel--after-active":A.value,"v-expansion-panel--disabled":y.value},p.value,l.value,e.class],style:[d.value,e.style]},{default:()=>{var M;return[R("div",{class:["v-expansion-panel__shadow",...f.value]},null),_&&R(ab,{key:"title",collapseIcon:e.collapseIcon,color:e.color,expandIcon:e.expandIcon,hideActions:e.hideActions,ripple:e.ripple},{default:()=>[i.title?i.title():e.title]}),E&&R(tb,{key:"text"},{default:()=>[i.text?i.text():e.text]}),(M=i.default)==null?void 0:M.call(i)]}})}),{}}});const hT=me({chips:Boolean,counter:Boolean,counterSizeString:{type:String,default:"$vuetify.fileInput.counterSize"},counterString:{type:String,default:"$vuetify.fileInput.counter"},multiple:Boolean,showSize:{type:[Boolean,Number],default:!1,validator:e=>typeof e=="boolean"||[1e3,1024].includes(e)},...Sa({prependIcon:"$file"}),modelValue:{type:Array,default:()=>[],validator:e=>In(e).every(a=>a!=null&&typeof a=="object")},...el({clearable:!0})},"VFileInput"),fT=Te()({name:"VFileInput",inheritAttrs:!1,props:hT(),emits:{"click:control":e=>!0,"mousedown:control":e=>!0,"update:focused":e=>!0,"update:modelValue":e=>!0},setup(e,a){let{attrs:i,emit:r,slots:l}=a;const{t:d}=Rn(),f=tt(e,"modelValue"),{isFocused:p,focus:y,blur:k}=Ua(e),C=X(()=>typeof e.showSize!="boolean"?e.showSize:void 0),A=X(()=>(f.value??[]).reduce((j,Q)=>{let{size:ie=0}=Q;return j+ie},0)),E=X(()=>jh(A.value,C.value)),_=X(()=>(f.value??[]).map(j=>{const{name:Q="",size:ie=0}=j;return e.showSize?`${Q} (${jh(ie,C.value)})`:Q})),M=X(()=>{var Q;const j=((Q=f.value)==null?void 0:Q.length)??0;return e.showSize?d(e.counterSizeString,j,E.value):d(e.counterString,j)}),F=Re(),$=Re(),B=Re(),L=X(()=>p.value||e.active),q=X(()=>["plain","underlined"].includes(e.variant));function Y(){var j;B.value!==document.activeElement&&((j=B.value)==null||j.focus()),p.value||y()}function H(j){ee(j)}function J(j){r("mousedown:control",j)}function ee(j){var Q;(Q=B.value)==null||Q.click(),r("click:control",j)}function W(j){j.stopPropagation(),Y(),gt(()=>{f.value=[],Hu(e["onClick:clear"],j)})}return He(f,j=>{(!Array.isArray(j)||!j.length)&&B.value&&(B.value.value="")}),Me(()=>{const j=!!(l.counter||e.counter),Q=!!(j||l.details),[ie,ne]=Si(i),[{modelValue:oe,...le}]=Ut.filterProps(e),[Ce]=hd(e);return R(Ut,Ye({ref:F,modelValue:f.value,"onUpdate:modelValue":ye=>f.value=ye,class:["v-file-input",{"v-text-field--plain-underlined":q.value},e.class],style:e.style,"onClick:prepend":H},ie,le,{centerAffix:!q.value,focused:p.value}),{...l,default:ye=>{let{id:fe,isDisabled:he,isDirty:Se,isReadonly:Ee,isValid:De}=ye;return R(xr,Ye({ref:$,"prepend-icon":e.prependIcon,onMousedown:J,onClick:ee,"onClick:clear":W,"onClick:prependInner":e["onClick:prependInner"],"onClick:appendInner":e["onClick:appendInner"]},Ce,{id:fe.value,active:L.value||Se.value,dirty:Se.value,disabled:he.value,focused:p.value,error:De.value===!1}),{...l,default:Fe=>{var ze;let{props:{class:Ze,...Je}}=Fe;return R(Ke,null,[R("input",Ye({ref:B,type:"file",readonly:Ee.value,disabled:he.value,multiple:e.multiple,name:e.name,onClick:ue=>{ue.stopPropagation(),Ee.value&&ue.preventDefault(),Y()},onChange:ue=>{if(!ue.target)return;const de=ue.target;f.value=[...de.files??[]]},onFocus:Y,onBlur:k},Je,ne),null),R("div",{class:Ze},[!!((ze=f.value)!=null&&ze.length)&&(l.selection?l.selection({fileNames:_.value,totalBytes:A.value,totalBytesReadable:E.value}):e.chips?_.value.map(ue=>R(pr,{key:ue,size:"small",color:e.color},{default:()=>[ue]})):_.value.join(", "))])])}})},details:Q?ye=>{var fe,he;return R(Ke,null,[(fe=l.details)==null?void 0:fe.call(l,ye),j&&R(Ke,null,[R("span",null,null),R(Qo,{active:!!((he=f.value)!=null&&he.length),value:M.value},l.counter)])])}:void 0})}),Un({},F,$,B)}});const gT=me({app:Boolean,color:String,height:{type:[Number,String],default:"auto"},...Cn(),...We(),...Nt(),...as(),...At(),...at({tag:"footer"}),...dt()},"VFooter"),vT=Te()({name:"VFooter",props:gT(),setup(e,a){let{slots:i}=a;const{themeClasses:r}=vt(e),{backgroundColorClasses:l,backgroundColorStyles:d}=Vt(Ie(e,"color")),{borderClasses:f}=Fn(e),{elevationClasses:p}=Kt(e),{roundedClasses:y}=Lt(e),k=Xe(32),{resizeRef:C}=ea(_=>{_.length&&(k.value=_[0].target.clientHeight)}),A=X(()=>e.height==="auto"?k.value:parseInt(e.height,10)),{layoutItemStyles:E}=is({id:e.name,order:X(()=>parseInt(e.order,10)),position:X(()=>"bottom"),layoutSize:A,elementSize:X(()=>e.height==="auto"?void 0:A.value),active:X(()=>e.app),absolute:Ie(e,"absolute")});return Me(()=>R(e.tag,{ref:C,class:["v-footer",r.value,l.value,f.value,p.value,y.value,e.class],style:[d.value,e.app?E.value:{height:$e(e.height)},e.style]},i)),{}}}),mT=me({...We(),...PA()},"VForm"),pT=Te()({name:"VForm",props:mT(),emits:{"update:modelValue":e=>!0,submit:e=>!0},setup(e,a){let{slots:i,emit:r}=a;const l=EA(e),d=Re();function f(y){y.preventDefault(),l.reset()}function p(y){const k=y,C=l.validate();k.then=C.then.bind(C),k.catch=C.catch.bind(C),k.finally=C.finally.bind(C),r("submit",k),k.defaultPrevented||C.then(A=>{var _;let{valid:E}=A;E&&((_=d.value)==null||_.submit())}),k.preventDefault()}return Me(()=>{var y;return R("form",{ref:d,class:["v-form",e.class],style:e.style,novalidate:!0,onReset:f,onSubmit:p},[(y=i.default)==null?void 0:y.call(i,l)])}),Un(l,d)}});const bT=me({fluid:{type:Boolean,default:!1},...We(),...at()},"VContainer"),xT=Te()({name:"VContainer",props:bT(),setup(e,a){let{slots:i}=a;const{rtlClasses:r}=$t();return Me(()=>R(e.tag,{class:["v-container",{"v-container--fluid":e.fluid},r.value,e.class],style:e.style},i)),{}}}),ib=(()=>Ho.reduce((e,a)=>(e[a]={type:[Boolean,String,Number],default:!1},e),{}))(),sb=(()=>Ho.reduce((e,a)=>{const i="offset"+pa(a);return e[i]={type:[String,Number],default:null},e},{}))(),rb=(()=>Ho.reduce((e,a)=>{const i="order"+pa(a);return e[i]={type:[String,Number],default:null},e},{}))(),Vf={col:Object.keys(ib),offset:Object.keys(sb),order:Object.keys(rb)};function yT(e,a,i){let r=e;if(!(i==null||i===!1)){if(a){const l=a.replace(e,"");r+=`-${l}`}return e==="col"&&(r="v-"+r),e==="col"&&(i===""||i===!0)||(r+=`-${i}`),r.toLowerCase()}}const wT=["auto","start","end","center","baseline","stretch"],ST=me({cols:{type:[Boolean,String,Number],default:!1},...ib,offset:{type:[String,Number],default:null},...sb,order:{type:[String,Number],default:null},...rb,alignSelf:{type:String,default:null,validator:e=>wT.includes(e)},...We(),...at()},"VCol"),kT=Te()({name:"VCol",props:ST(),setup(e,a){let{slots:i}=a;const r=X(()=>{const l=[];let d;for(d in Vf)Vf[d].forEach(p=>{const y=e[p],k=yT(d,p,y);k&&l.push(k)});const f=l.some(p=>p.startsWith("v-col-"));return l.push({"v-col":!f||!e.cols,[`v-col-${e.cols}`]:e.cols,[`offset-${e.offset}`]:e.offset,[`order-${e.order}`]:e.order,[`align-self-${e.alignSelf}`]:e.alignSelf}),l});return()=>{var l;return jn(e.tag,{class:[r.value,e.class],style:e.style},(l=i.default)==null?void 0:l.call(i))}}}),pd=["start","end","center"],ob=["space-between","space-around","space-evenly"];function bd(e,a){return Ho.reduce((i,r)=>{const l=e+pa(r);return i[l]=a(),i},{})}const CT=[...pd,"baseline","stretch"],lb=e=>CT.includes(e),cb=bd("align",()=>({type:String,default:null,validator:lb})),AT=[...pd,...ob],ub=e=>AT.includes(e),db=bd("justify",()=>({type:String,default:null,validator:ub})),PT=[...pd,...ob,"stretch"],hb=e=>PT.includes(e),fb=bd("alignContent",()=>({type:String,default:null,validator:hb})),Rf={align:Object.keys(cb),justify:Object.keys(db),alignContent:Object.keys(fb)},ET={align:"align",justify:"justify",alignContent:"align-content"};function TT(e,a,i){let r=ET[e];if(i!=null){if(a){const l=a.replace(e,"");r+=`-${l}`}return r+=`-${i}`,r.toLowerCase()}}const IT=me({dense:Boolean,noGutters:Boolean,align:{type:String,default:null,validator:lb},...cb,justify:{type:String,default:null,validator:ub},...db,alignContent:{type:String,default:null,validator:hb},...fb,...We(),...at()},"VRow"),LT=Te()({name:"VRow",props:IT(),setup(e,a){let{slots:i}=a;const r=X(()=>{const l=[];let d;for(d in Rf)Rf[d].forEach(f=>{const p=e[f],y=TT(d,f,p);y&&l.push(y)});return l.push({"v-row--no-gutters":e.noGutters,"v-row--dense":e.dense,[`align-${e.align}`]:e.align,[`justify-${e.justify}`]:e.justify,[`align-content-${e.alignContent}`]:e.alignContent}),l});return()=>{var l;return jn(e.tag,{class:["v-row",r.value,e.class],style:e.style},(l=i.default)==null?void 0:l.call(i))}}}),_T=Gn("v-spacer","div","VSpacer"),VT=me({disabled:Boolean,modelValue:{type:Boolean,default:void 0},...Tp()},"VHover"),RT=Te()({name:"VHover",props:VT(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const r=tt(e,"modelValue"),{runOpenDelay:l,runCloseDelay:d}=Ip(e,f=>!e.disabled&&(r.value=f));return()=>{var f;return(f=i.default)==null?void 0:f.call(i,{isHovering:r.value,props:{onMouseenter:l,onMouseleave:d}})}}});const gb=Symbol.for("vuetify:v-item-group"),MT=me({...We(),...ss({selectedClass:"v-item--selected"}),...at(),...dt()},"VItemGroup"),OT=Te()({name:"VItemGroup",props:MT(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const{themeClasses:r}=vt(e),{isSelected:l,select:d,next:f,prev:p,selected:y}=Ei(e,gb);return()=>R(e.tag,{class:["v-item-group",r.value,e.class],style:e.style},{default:()=>{var k;return[(k=i.default)==null?void 0:k.call(i,{isSelected:l,select:d,next:f,prev:p,selected:y.value})]}})}}),FT=Te()({name:"VItem",props:rs(),emits:{"group:selected":e=>!0},setup(e,a){let{slots:i}=a;const{isSelected:r,select:l,toggle:d,selectedClass:f,value:p,disabled:y}=os(e,gb);return()=>{var k;return(k=i.default)==null?void 0:k.call(i,{isSelected:r.value,selectedClass:f.value,select:l,toggle:d,value:p.value,disabled:y.value})}}});const BT=Gn("v-kbd");const DT=me({...We(),...Mm()},"VLayout"),zT=Te()({name:"VLayout",props:DT(),setup(e,a){let{slots:i}=a;const{layoutClasses:r,layoutStyles:l,getLayoutItem:d,items:f,layoutRef:p}=Om(e);return Me(()=>{var y;return R("div",{ref:p,class:[r.value,e.class],style:[l.value,e.style]},[(y=i.default)==null?void 0:y.call(i)])}),{getLayoutItem:d,items:f}}});const NT=me({position:{type:String,required:!0},size:{type:[Number,String],default:300},modelValue:Boolean,...We(),...as()},"VLayoutItem"),HT=Te()({name:"VLayoutItem",props:NT(),setup(e,a){let{slots:i}=a;const{layoutItemStyles:r}=is({id:e.name,order:X(()=>parseInt(e.order,10)),position:Ie(e,"position"),elementSize:Ie(e,"size"),layoutSize:Ie(e,"size"),active:Ie(e,"modelValue"),absolute:Ie(e,"absolute")});return()=>{var l;return R("div",{class:["v-layout-item",e.class],style:[r.value,e.style]},[(l=i.default)==null?void 0:l.call(i)])}}}),XT=me({modelValue:Boolean,options:{type:Object,default:()=>({root:void 0,rootMargin:void 0,threshold:void 0})},...We(),...Mn(),...at(),...ya({transition:"fade-transition"})},"VLazy"),YT=Te()({name:"VLazy",directives:{intersect:$o},props:XT(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const{dimensionStyles:r}=On(e),l=tt(e,"modelValue");function d(f){l.value||(l.value=f)}return Me(()=>Et(R(e.tag,{class:["v-lazy",e.class],style:[r.value,e.style]},{default:()=>[l.value&&R(Xn,{transition:e.transition,appear:!0},{default:()=>{var f;return[(f=i.default)==null?void 0:f.call(i)]}})]}),[[mn("intersect"),{handler:d,options:e.options},null]])),{}}});const WT=me({locale:String,fallbackLocale:String,messages:Object,rtl:{type:Boolean,default:void 0},...We()},"VLocaleProvider"),$T=Te()({name:"VLocaleProvider",props:WT(),setup(e,a){let{slots:i}=a;const{rtlClasses:r}=tC(e);return Me(()=>{var l;return R("div",{class:["v-locale-provider",r.value,e.class],style:e.style},[(l=i.default)==null?void 0:l.call(i)])}),{}}});const jT=me({scrollable:Boolean,...We(),...at({tag:"main"})},"VMain"),GT=Te()({name:"VMain",props:jT(),setup(e,a){let{slots:i}=a;const{mainStyles:r}=EC(),{ssrBootStyles:l}=Ci();return Me(()=>R(e.tag,{class:["v-main",{"v-main--scrollable":e.scrollable},e.class],style:[r.value,l.value,e.style]},{default:()=>{var d,f;return[e.scrollable?R("div",{class:"v-main__scroller"},[(d=i.default)==null?void 0:d.call(i)]):(f=i.default)==null?void 0:f.call(i)]}})),{}}});function UT(e){let{rootEl:a,isSticky:i,layoutItemStyles:r}=e;const l=Xe(!1),d=Xe(0),f=X(()=>{const k=typeof l.value=="boolean"?"top":l.value;return[i.value?{top:"auto",bottom:"auto",height:void 0}:void 0,l.value?{[k]:$e(d.value)}:{top:r.value.top}]});zt(()=>{He(i,k=>{k?window.addEventListener("scroll",y,{passive:!0}):window.removeEventListener("scroll",y)},{immediate:!0})}),qt(()=>{window.removeEventListener("scroll",y)});let p=0;function y(){const k=p>window.scrollY?"up":"down",C=a.value.getBoundingClientRect(),A=parseFloat(r.value.top??0),E=window.scrollY-Math.max(0,d.value-A),_=C.height+Math.max(d.value,A)-window.scrollY-window.innerHeight,M=parseFloat(getComputedStyle(a.value).getPropertyValue("--v-body-scroll-y"))||0;C.height0;i--){if(e[i].t===e[i-1].t)continue;const r=Mf(a),l=(e[i].d-e[i-1].d)/(e[i].t-e[i-1].t);a+=(l-r)*Math.abs(l),i===e.length-1&&(a*=.5)}return Mf(a)*1e3}function ZT(){const e={};function a(l){Array.from(l.changedTouches).forEach(d=>{(e[d.identifier]??(e[d.identifier]=new ck(KT))).push([l.timeStamp,d])})}function i(l){Array.from(l.changedTouches).forEach(d=>{delete e[d.identifier]})}function r(l){var k;const d=(k=e[l])==null?void 0:k.values().reverse();if(!d)throw new Error(`No samples for touch id ${l}`);const f=d[0],p=[],y=[];for(const C of d){if(f[0]-C[0]>qT)break;p.push({t:C[0],d:C[1].clientX}),y.push({t:C[0],d:C[1].clientY})}return{x:Of(p),y:Of(y),get direction(){const{x:C,y:A}=this,[E,_]=[Math.abs(C),Math.abs(A)];return E>_&&C>=0?"right":E>_&&C<=0?"left":_>E&&A>=0?"down":_>E&&A<=0?"up":JT()}}}return{addMovement:a,endTouch:i,getVelocity:r}}function JT(){throw new Error}function QT(e){let{isActive:a,isTemporary:i,width:r,touchless:l,position:d}=e;zt(()=>{window.addEventListener("touchstart",B,{passive:!0}),window.addEventListener("touchmove",L,{passive:!1}),window.addEventListener("touchend",q,{passive:!0})}),qt(()=>{window.removeEventListener("touchstart",B),window.removeEventListener("touchmove",L),window.removeEventListener("touchend",q)});const f=X(()=>["left","right"].includes(d.value)),{addMovement:p,endTouch:y,getVelocity:k}=ZT();let C=!1;const A=Xe(!1),E=Xe(0),_=Xe(0);let M;function F(H,J){return(d.value==="left"?H:d.value==="right"?document.documentElement.clientWidth-H:d.value==="top"?H:d.value==="bottom"?document.documentElement.clientHeight-H:Mi())-(J?r.value:0)}function $(H){let J=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;const ee=d.value==="left"?(H-_.value)/r.value:d.value==="right"?(document.documentElement.clientWidth-H-_.value)/r.value:d.value==="top"?(H-_.value)/r.value:d.value==="bottom"?(document.documentElement.clientHeight-H-_.value)/r.value:Mi();return J?Math.max(0,Math.min(1,ee)):ee}function B(H){if(l.value)return;const J=H.changedTouches[0].clientX,ee=H.changedTouches[0].clientY,W=25,j=d.value==="left"?Jdocument.documentElement.clientWidth-W:d.value==="top"?eedocument.documentElement.clientHeight-W:Mi(),Q=a.value&&(d.value==="left"?Jdocument.documentElement.clientWidth-r.value:d.value==="top"?eedocument.documentElement.clientHeight-r.value:Mi());(j||Q||a.value&&i.value)&&(C=!0,M=[J,ee],_.value=F(f.value?J:ee,a.value),E.value=$(f.value?J:ee),y(H),p(H))}function L(H){const J=H.changedTouches[0].clientX,ee=H.changedTouches[0].clientY;if(C){if(!H.cancelable){C=!1;return}const j=Math.abs(J-M[0]),Q=Math.abs(ee-M[1]);(f.value?j>Q&&j>3:Q>j&&Q>3)?(A.value=!0,C=!1):(f.value?Q:j)>3&&(C=!1)}if(!A.value)return;H.preventDefault(),p(H);const W=$(f.value?J:ee,!1);E.value=Math.max(0,Math.min(1,W)),W>1?_.value=F(f.value?J:ee,!0):W<0&&(_.value=F(f.value?J:ee,!1))}function q(H){if(C=!1,!A.value)return;p(H),A.value=!1;const J=k(H.changedTouches[0].identifier),ee=Math.abs(J.x),W=Math.abs(J.y);(f.value?ee>W&&ee>400:W>ee&&W>3)?a.value=J.direction===({left:"right",right:"left",top:"down",bottom:"up"}[d.value]||Mi()):a.value=E.value>.5}const Y=X(()=>A.value?{transform:d.value==="left"?`translateX(calc(-100% + ${E.value*r.value}px))`:d.value==="right"?`translateX(calc(100% - ${E.value*r.value}px))`:d.value==="top"?`translateY(calc(-100% + ${E.value*r.value}px))`:d.value==="bottom"?`translateY(calc(100% - ${E.value*r.value}px))`:Mi(),transition:"none"}:void 0);return{isDragging:A,dragProgress:E,dragStyles:Y}}function Mi(){throw new Error}const eI=["start","end","left","right","top","bottom"],tI=me({color:String,disableResizeWatcher:Boolean,disableRouteWatcher:Boolean,expandOnHover:Boolean,floating:Boolean,modelValue:{type:Boolean,default:null},permanent:Boolean,rail:{type:Boolean,default:null},railWidth:{type:[Number,String],default:56},scrim:{type:[Boolean,String],default:!0},image:String,temporary:Boolean,touchless:Boolean,width:{type:[Number,String],default:256},location:{type:String,default:"start",validator:e=>eI.includes(e)},sticky:Boolean,...Cn(),...We(),...Nt(),...as(),...At(),...at({tag:"nav"}),...dt()},"VNavigationDrawer"),nI=Te()({name:"VNavigationDrawer",props:tI(),emits:{"update:modelValue":e=>!0,"update:rail":e=>!0},setup(e,a){let{attrs:i,emit:r,slots:l}=a;const{isRtl:d}=$t(),{themeClasses:f}=vt(e),{borderClasses:p}=Fn(e),{backgroundColorClasses:y,backgroundColorStyles:k}=Vt(Ie(e,"color")),{elevationClasses:C}=Kt(e),{mobile:A}=ki(),{roundedClasses:E}=Lt(e),_=Gm(),M=tt(e,"modelValue",null,Se=>!!Se),{ssrBootStyles:F}=Ci(),{scopeId:$}=hs(),B=Re(),L=Xe(!1),q=X(()=>e.rail&&e.expandOnHover&&L.value?Number(e.width):Number(e.rail?e.railWidth:e.width)),Y=X(()=>yc(e.location,d.value)),H=X(()=>!e.permanent&&(A.value||e.temporary)),J=X(()=>e.sticky&&!H.value&&Y.value!=="bottom");e.expandOnHover&&e.rail!=null&&He(L,Se=>r("update:rail",!Se)),e.disableResizeWatcher||He(H,Se=>!e.permanent&>(()=>M.value=!Se)),!e.disableRouteWatcher&&_&&He(_.currentRoute,()=>H.value&&(M.value=!1)),He(()=>e.permanent,Se=>{Se&&(M.value=!0)}),cr(()=>{e.modelValue!=null||H.value||(M.value=e.permanent||!A.value)});const{isDragging:ee,dragProgress:W,dragStyles:j}=QT({isActive:M,isTemporary:H,width:q,touchless:Ie(e,"touchless"),position:Y}),Q=X(()=>{const Se=H.value?0:e.rail&&e.expandOnHover?Number(e.railWidth):q.value;return ee.value?Se*W.value:Se}),{layoutItemStyles:ie,layoutItemScrimStyles:ne}=is({id:e.name,order:X(()=>parseInt(e.order,10)),position:Y,layoutSize:Q,elementSize:q,active:X(()=>M.value||ee.value),disableTransitions:X(()=>ee.value),absolute:X(()=>e.absolute||J.value&&typeof oe.value!="string")}),{isStuck:oe,stickyStyles:le}=UT({rootEl:B,isSticky:J,layoutItemStyles:ie}),Ce=Vt(X(()=>typeof e.scrim=="string"?e.scrim:null)),ye=X(()=>({...ee.value?{opacity:W.value*.2,transition:"none"}:void 0,...ne.value}));Bt({VList:{bgColor:"transparent"}});function fe(){L.value=!0}function he(){L.value=!1}return Me(()=>{const Se=l.image||e.image;return R(Ke,null,[R(e.tag,Ye({ref:B,onMouseenter:fe,onMouseleave:he,class:["v-navigation-drawer",`v-navigation-drawer--${Y.value}`,{"v-navigation-drawer--expand-on-hover":e.expandOnHover,"v-navigation-drawer--floating":e.floating,"v-navigation-drawer--is-hovering":L.value,"v-navigation-drawer--rail":e.rail,"v-navigation-drawer--temporary":H.value,"v-navigation-drawer--active":M.value,"v-navigation-drawer--sticky":J.value},f.value,y.value,p.value,C.value,E.value,e.class],style:[k.value,ie.value,j.value,F.value,le.value,e.style]},$,i),{default:()=>{var Ee,De,Fe,Ze;return[Se&&R("div",{key:"image",class:"v-navigation-drawer__img"},[l.image?(Ee=l.image)==null?void 0:Ee.call(l,{image:e.image}):R("img",{src:e.image,alt:""},null)]),l.prepend&&R("div",{class:"v-navigation-drawer__prepend"},[(De=l.prepend)==null?void 0:De.call(l)]),R("div",{class:"v-navigation-drawer__content"},[(Fe=l.default)==null?void 0:Fe.call(l)]),l.append&&R("div",{class:"v-navigation-drawer__append"},[(Ze=l.append)==null?void 0:Ze.call(l)])]}}),R(Wn,{name:"fade-transition"},{default:()=>[H.value&&(ee.value||M.value)&&!!e.scrim&&R("div",Ye({class:["v-navigation-drawer__scrim",Ce.backgroundColorClasses.value],style:[ye.value,Ce.backgroundColorStyles.value],onClick:()=>M.value=!1},$),null)]})])}),{isStuck:oe}}}),aI=Vn({name:"VNoSsr",setup(e,a){let{slots:i}=a;const r=Lp();return()=>{var l;return r.value&&((l=i.default)==null?void 0:l.call(i))}}});function iI(){const e=Re([]);bu(()=>e.value=[]);function a(i,r){e.value[r]=i}return{refs:e,updateRef:a}}const sI=me({activeColor:String,start:{type:[Number,String],default:1},modelValue:{type:Number,default:e=>e.start},disabled:Boolean,length:{type:[Number,String],default:1,validator:e=>e%1===0},totalVisible:[Number,String],firstIcon:{type:et,default:"$first"},prevIcon:{type:et,default:"$prev"},nextIcon:{type:et,default:"$next"},lastIcon:{type:et,default:"$last"},ariaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.root"},pageAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.page"},currentPageAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.currentPage"},firstAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.first"},previousAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.previous"},nextAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.next"},lastAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.last"},ellipsis:{type:String,default:"..."},showFirstLastPage:Boolean,...Cn(),...We(),...Ht(),...Nt(),...At(),...wa(),...at({tag:"nav"}),...dt(),...Bn({variant:"text"})},"VPagination"),rI=Te()({name:"VPagination",props:sI(),emits:{"update:modelValue":e=>!0,first:e=>!0,prev:e=>!0,next:e=>!0,last:e=>!0},setup(e,a){let{slots:i,emit:r}=a;const l=tt(e,"modelValue"),{t:d,n:f}=Rn(),{isRtl:p}=$t(),{themeClasses:y}=vt(e),{width:k}=ki(),C=Xe(-1);Bt(void 0,{scoped:!0});const{resizeRef:A}=ea(W=>{if(!W.length)return;const{target:j,contentRect:Q}=W[0],ie=j.querySelector(".v-pagination__list > *");if(!ie)return;const ne=Q.width,oe=ie.offsetWidth+parseFloat(getComputedStyle(ie).marginRight)*2;C.value=F(ne,oe)}),E=X(()=>parseInt(e.length,10)),_=X(()=>parseInt(e.start,10)),M=X(()=>e.totalVisible?parseInt(e.totalVisible,10):C.value>=0?C.value:F(k.value,58));function F(W,j){const Q=e.showFirstLastPage?5:3;return Math.max(0,Math.floor(+((W-j*Q)/j).toFixed(2)))}const $=X(()=>{if(E.value<=0||isNaN(E.value)||E.value>Number.MAX_SAFE_INTEGER)return[];if(M.value<=1)return[l.value];if(E.value<=M.value)return la(E.value,_.value);const W=M.value%2===0,j=W?M.value/2:Math.floor(M.value/2),Q=W?j:j+1,ie=E.value-j;if(Q-l.value>=0)return[...la(Math.max(1,M.value-1),_.value),e.ellipsis,E.value];if(l.value-ie>=(W?1:0)){const ne=M.value-1,oe=E.value-ne+_.value;return[_.value,e.ellipsis,...la(ne,oe)]}else{const ne=Math.max(1,M.value-3),oe=ne===1?l.value:l.value-Math.ceil(ne/2)+_.value;return[_.value,e.ellipsis,...la(ne,oe),e.ellipsis,E.value]}});function B(W,j,Q){W.preventDefault(),l.value=j,Q&&r(Q,j)}const{refs:L,updateRef:q}=iI();Bt({VPaginationBtn:{color:Ie(e,"color"),border:Ie(e,"border"),density:Ie(e,"density"),size:Ie(e,"size"),variant:Ie(e,"variant"),rounded:Ie(e,"rounded"),elevation:Ie(e,"elevation")}});const Y=X(()=>$.value.map((W,j)=>{const Q=ie=>q(ie,j);if(typeof W=="string")return{isActive:!1,key:`ellipsis-${j}`,page:W,props:{ref:Q,ellipsis:!0,icon:!0,disabled:!0}};{const ie=W===l.value;return{isActive:ie,key:W,page:f(W),props:{ref:Q,ellipsis:!1,icon:!0,disabled:!!e.disabled||+e.length<2,color:ie?e.activeColor:e.color,ariaCurrent:ie,ariaLabel:d(ie?e.currentPageAriaLabel:e.pageAriaLabel,W),onClick:ne=>B(ne,W)}}}})),H=X(()=>{const W=!!e.disabled||l.value<=_.value,j=!!e.disabled||l.value>=_.value+E.value-1;return{first:e.showFirstLastPage?{icon:p.value?e.lastIcon:e.firstIcon,onClick:Q=>B(Q,_.value,"first"),disabled:W,ariaLabel:d(e.firstAriaLabel),ariaDisabled:W}:void 0,prev:{icon:p.value?e.nextIcon:e.prevIcon,onClick:Q=>B(Q,l.value-1,"prev"),disabled:W,ariaLabel:d(e.previousAriaLabel),ariaDisabled:W},next:{icon:p.value?e.prevIcon:e.nextIcon,onClick:Q=>B(Q,l.value+1,"next"),disabled:j,ariaLabel:d(e.nextAriaLabel),ariaDisabled:j},last:e.showFirstLastPage?{icon:p.value?e.firstIcon:e.lastIcon,onClick:Q=>B(Q,_.value+E.value-1,"last"),disabled:j,ariaLabel:d(e.lastAriaLabel),ariaDisabled:j}:void 0}});function J(){var j;const W=l.value-_.value;(j=L.value[W])==null||j.$el.focus()}function ee(W){W.key===bc.left&&!e.disabled&&l.value>+e.start?(l.value=l.value-1,gt(J)):W.key===bc.right&&!e.disabled&&l.value<_.value+E.value-1&&(l.value=l.value+1,gt(J))}return Me(()=>R(e.tag,{ref:A,class:["v-pagination",y.value,e.class],style:e.style,role:"navigation","aria-label":d(e.ariaLabel),onKeydown:ee,"data-test":"v-pagination-root"},{default:()=>[R("ul",{class:"v-pagination__list"},[e.showFirstLastPage&&R("li",{key:"first",class:"v-pagination__first","data-test":"v-pagination-first"},[i.first?i.first(H.value.first):R(cn,Ye({_as:"VPaginationBtn"},H.value.first),null)]),R("li",{key:"prev",class:"v-pagination__prev","data-test":"v-pagination-prev"},[i.prev?i.prev(H.value.prev):R(cn,Ye({_as:"VPaginationBtn"},H.value.prev),null)]),Y.value.map((W,j)=>R("li",{key:W.key,class:["v-pagination__item",{"v-pagination__item--is-active":W.isActive}],"data-test":"v-pagination-item"},[i.item?i.item(W):R(cn,Ye({_as:"VPaginationBtn"},W.props),{default:()=>[W.page]})])),R("li",{key:"next",class:"v-pagination__next","data-test":"v-pagination-next"},[i.next?i.next(H.value.next):R(cn,Ye({_as:"VPaginationBtn"},H.value.next),null)]),e.showFirstLastPage&&R("li",{key:"last",class:"v-pagination__last","data-test":"v-pagination-last"},[i.last?i.last(H.value.last):R(cn,Ye({_as:"VPaginationBtn"},H.value.last),null)])])]})),{}}});function oI(e){return Math.floor(Math.abs(e))*Math.sign(e)}const lI=me({scale:{type:[Number,String],default:.5},...We()},"VParallax"),cI=Te()({name:"VParallax",props:lI(),setup(e,a){let{slots:i}=a;const{intersectionRef:r,isIntersecting:l}=nd(),{resizeRef:d,contentRect:f}=ea(),{height:p}=ki(),y=Re();vn(()=>{var _;r.value=d.value=(_=y.value)==null?void 0:_.$el});let k;He(l,_=>{_?(k=$u(r.value),k=k===document.scrollingElement?document:k,k.addEventListener("scroll",E,{passive:!0}),E()):k.removeEventListener("scroll",E)}),qt(()=>{k==null||k.removeEventListener("scroll",E)}),He(p,E),He(()=>{var _;return(_=f.value)==null?void 0:_.height},E);const C=X(()=>1-en(+e.scale));let A=-1;function E(){l.value&&(cancelAnimationFrame(A),A=requestAnimationFrame(()=>{var H;const _=((H=y.value)==null?void 0:H.$el).querySelector(".v-img__img");if(!_)return;const M=k instanceof Document?document.documentElement.clientHeight:k.clientHeight,F=k instanceof Document?window.scrollY:k.scrollTop,$=r.value.getBoundingClientRect().top+F,B=f.value.height,L=$+(B-M)/2,q=oI((F-L)*C.value),Y=Math.max(1,(C.value*(M-B)+B)/B);_.style.setProperty("transform",`translateY(${q}px) scale(${Y})`)}))}return Me(()=>R(vi,{class:["v-parallax",{"v-parallax--active":l.value},e.class],style:e.style,ref:y,cover:!0,onLoadstart:E,onLoad:E},i)),{}}}),uI=me({...Go({falseIcon:"$radioOff",trueIcon:"$radioOn"})},"VRadio"),dI=Te()({name:"VRadio",props:uI(),setup(e,a){let{slots:i}=a;return Me(()=>R(mi,Ye(e,{class:["v-radio",e.class],style:e.style,type:"radio"}),i)),{}}});const hI=me({height:{type:[Number,String],default:"auto"},...Sa(),..._n(ld(),["multiple"]),trueIcon:{type:et,default:"$radioOn"},falseIcon:{type:et,default:"$radioOff"},type:{type:String,default:"radio"}},"VRadioGroup"),fI=Te()({name:"VRadioGroup",inheritAttrs:!1,props:hI(),emits:{"update:modelValue":e=>!0},setup(e,a){let{attrs:i,slots:r}=a;const l=sn(),d=X(()=>e.id||`radio-group-${l}`),f=tt(e,"modelValue");return Me(()=>{const[p,y]=Si(i),[k,C]=Ut.filterProps(e),[A,E]=mi.filterProps(e),_=r.label?r.label({label:e.label,props:{for:d.value}}):e.label;return R(Ut,Ye({class:["v-radio-group",e.class],style:e.style},p,k,{modelValue:f.value,"onUpdate:modelValue":M=>f.value=M,id:d.value}),{...r,default:M=>{let{id:F,messagesId:$,isDisabled:B,isReadonly:L}=M;return R(Ke,null,[_&&R(ds,{id:F.value},{default:()=>[_]}),R(ip,Ye(A,{id:F.value,"aria-describedby":$.value,defaultsTarget:"VRadio",trueIcon:e.trueIcon,falseIcon:e.falseIcon,type:e.type,disabled:B.value,readonly:L.value,"aria-labelledby":_?F.value:void 0,multiple:!1},y,{modelValue:f.value,"onUpdate:modelValue":q=>f.value=q}),r)])}})}),{}}}),gI=me({...Uo(),...Sa(),...Kp(),strict:Boolean,modelValue:{type:Array,default:()=>[0,0]}},"VRangeSlider"),vI=Te()({name:"VRangeSlider",props:gI(),emits:{"update:focused":e=>!0,"update:modelValue":e=>!0,end:e=>!0,start:e=>!0},setup(e,a){let{slots:i,emit:r}=a;const l=Re(),d=Re(),f=Re(),{rtlClasses:p}=$t();function y(j){if(!l.value||!d.value)return;const Q=Xc(j,l.value.$el,e.direction),ie=Xc(j,d.value.$el,e.direction),ne=Math.abs(Q),oe=Math.abs(ie);return nej!=null&&j.length?j.map(Q=>k.roundValue(Q)):[0,0]),{activeThumbRef:A,hasLabels:E,max:_,min:M,mousePressed:F,onSliderMousedown:$,onSliderTouchstart:B,position:L,trackContainerRef:q}=Jp({props:e,steps:k,onSliderStart:()=>{r("start",C.value)},onSliderEnd:j=>{var ne;let{value:Q}=j;const ie=A.value===((ne=l.value)==null?void 0:ne.$el)?[Q,C.value[1]]:[C.value[0],Q];!e.strict&&ie[0]{var oe,le,Ce,ye;let{value:Q}=j;const[ie,ne]=C.value;!e.strict&&ie===ne&&ie!==M.value&&(A.value=Q>ie?(oe=d.value)==null?void 0:oe.$el:(le=l.value)==null?void 0:le.$el,(Ce=A.value)==null||Ce.focus()),A.value===((ye=l.value)==null?void 0:ye.$el)?C.value=[Math.min(Q,ne),ne]:C.value=[ie,Math.max(ie,Q)]},getActiveThumb:y}),{isFocused:Y,focus:H,blur:J}=Ua(e),ee=X(()=>L(C.value[0])),W=X(()=>L(C.value[1]));return Me(()=>{const[j,Q]=Ut.filterProps(e),ie=!!(e.label||i.label||i.prepend);return R(Ut,Ye({class:["v-slider","v-range-slider",{"v-slider--has-labels":!!i["tick-label"]||E.value,"v-slider--focused":Y.value,"v-slider--pressed":F.value,"v-slider--disabled":e.disabled},p.value,e.class],style:e.style,ref:f},j,{focused:Y.value}),{...i,prepend:ie?ne=>{var oe,le;return R(Ke,null,[((oe=i.label)==null?void 0:oe.call(i,ne))??e.label?R(ds,{class:"v-slider__label",text:e.label},null):void 0,(le=i.prepend)==null?void 0:le.call(i,ne)])}:void 0,default:ne=>{var Ce,ye;let{id:oe,messagesId:le}=ne;return R("div",{class:"v-slider__container",onMousedown:$,onTouchstartPassive:B},[R("input",{id:`${oe.value}_start`,name:e.name||oe.value,disabled:!!e.disabled,readonly:!!e.readonly,tabindex:"-1",value:C.value[0]},null),R("input",{id:`${oe.value}_stop`,name:e.name||oe.value,disabled:!!e.disabled,readonly:!!e.readonly,tabindex:"-1",value:C.value[1]},null),R(Qp,{ref:q,start:ee.value,stop:W.value},{"tick-label":i["tick-label"]}),R(Yc,{ref:l,"aria-describedby":le.value,focused:Y&&A.value===((Ce=l.value)==null?void 0:Ce.$el),modelValue:C.value[0],"onUpdate:modelValue":fe=>C.value=[fe,C.value[1]],onFocus:fe=>{var he,Se,Ee,De;H(),A.value=(he=l.value)==null?void 0:he.$el,C.value[0]===C.value[1]&&C.value[1]===M.value&&fe.relatedTarget!==((Se=d.value)==null?void 0:Se.$el)&&((Ee=l.value)==null||Ee.$el.blur(),(De=d.value)==null||De.$el.focus())},onBlur:()=>{J(),A.value=void 0},min:M.value,max:C.value[1],position:ee.value},{"thumb-label":i["thumb-label"]}),R(Yc,{ref:d,"aria-describedby":le.value,focused:Y&&A.value===((ye=d.value)==null?void 0:ye.$el),modelValue:C.value[1],"onUpdate:modelValue":fe=>C.value=[C.value[0],fe],onFocus:fe=>{var he,Se,Ee,De;H(),A.value=(he=d.value)==null?void 0:he.$el,C.value[0]===C.value[1]&&C.value[0]===_.value&&fe.relatedTarget!==((Se=l.value)==null?void 0:Se.$el)&&((Ee=d.value)==null||Ee.$el.blur(),(De=l.value)==null||De.$el.focus())},onBlur:()=>{J(),A.value=void 0},min:C.value[0],max:_.value,position:W.value},{"thumb-label":i["thumb-label"]})])}})}),{}}});const mI=me({name:String,itemAriaLabel:{type:String,default:"$vuetify.rating.ariaLabel.item"},activeColor:String,color:String,clearable:Boolean,disabled:Boolean,emptyIcon:{type:et,default:"$ratingEmpty"},fullIcon:{type:et,default:"$ratingFull"},halfIncrements:Boolean,hover:Boolean,length:{type:[Number,String],default:5},readonly:Boolean,modelValue:{type:[Number,String],default:0},itemLabels:Array,itemLabelPosition:{type:String,default:"top",validator:e=>["top","bottom"].includes(e)},ripple:Boolean,...We(),...Ht(),...wa(),...at(),...dt()},"VRating"),pI=Te()({name:"VRating",props:mI(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const{t:r}=Rn(),{themeClasses:l}=vt(e),d=tt(e,"modelValue"),f=X(()=>en(parseFloat(d.value),0,+e.length)),p=X(()=>la(Number(e.length),1)),y=X(()=>p.value.flatMap(F=>e.halfIncrements?[F-.5,F]:[F])),k=Xe(-1),C=X(()=>y.value.map(F=>{const $=e.hover&&k.value>-1,B=f.value>=F,L=k.value>=F,Y=($?L:B)?e.fullIcon:e.emptyIcon,H=e.activeColor??e.color,J=B||L?H:e.color;return{isFilled:B,isHovered:L,icon:Y,color:J}})),A=X(()=>[0,...y.value].map(F=>{function $(){k.value=F}function B(){k.value=-1}function L(){e.disabled||e.readonly||(d.value=f.value===F&&e.clearable?0:F)}return{onMouseenter:e.hover?$:void 0,onMouseleave:e.hover?B:void 0,onClick:L}})),E=X(()=>e.name??`v-rating-${sn()}`);function _(F){var W,j;let{value:$,index:B,showStar:L=!0}=F;const{onMouseenter:q,onMouseleave:Y,onClick:H}=A.value[B+1],J=`${E.value}-${String($).replace(".","-")}`,ee={color:(W=C.value[B])==null?void 0:W.color,density:e.density,disabled:e.disabled,icon:(j=C.value[B])==null?void 0:j.icon,ripple:e.ripple,size:e.size,variant:"plain"};return R(Ke,null,[R("label",{for:J,class:{"v-rating__item--half":e.halfIncrements&&$%1>0,"v-rating__item--full":e.halfIncrements&&$%1===0},onMouseenter:q,onMouseleave:Y,onClick:H},[R("span",{class:"v-rating__hidden"},[r(e.itemAriaLabel,$,e.length)]),L?i.item?i.item({...C.value[B],props:ee,value:$,index:B,rating:f.value}):R(cn,Ye({"aria-label":r(e.itemAriaLabel,$,e.length)},ee),null):void 0]),R("input",{class:"v-rating__hidden",name:E.value,id:J,type:"radio",value:$,checked:f.value===$,tabindex:-1,readonly:e.readonly,disabled:e.disabled},null)])}function M(F){return i["item-label"]?i["item-label"](F):F.label?R("span",null,[F.label]):R("span",null,[yi(" ")])}return Me(()=>{var $;const F=!!(($=e.itemLabels)!=null&&$.length)||i["item-label"];return R(e.tag,{class:["v-rating",{"v-rating--hover":e.hover,"v-rating--readonly":e.readonly},l.value,e.class],style:e.style},{default:()=>[R(_,{value:0,index:-1,showStar:!1},null),p.value.map((B,L)=>{var q,Y;return R("div",{class:"v-rating__wrapper"},[F&&e.itemLabelPosition==="top"?M({value:B,index:L,label:(q=e.itemLabels)==null?void 0:q[L]}):void 0,R("div",{class:"v-rating__item"},[e.halfIncrements?R(Ke,null,[R(_,{value:B-.5,index:L*2},null),R(_,{value:B,index:L*2+1},null)]):R(_,{value:B,index:L},null)]),F&&e.itemLabelPosition==="bottom"?M({value:B,index:L,label:(Y=e.itemLabels)==null?void 0:Y[L]}):void 0])})]})}),{}}});function Ff(e){const i=Math.abs(e);return Math.sign(e)*(i/((1/.501-2)*(1-i)+1))}function Bf(e){let{selectedElement:a,containerSize:i,contentSize:r,isRtl:l,currentScrollOffset:d,isHorizontal:f}=e;const p=f?a.clientWidth:a.clientHeight,y=f?a.offsetLeft:a.offsetTop,k=l&&f?r-y-p:y,C=i+d,A=p+k,E=p*.4;return k<=d?d=Math.max(k-E,0):C<=A&&(d=Math.min(d-(C-A-E),r-i)),d}function bI(e){let{selectedElement:a,containerSize:i,contentSize:r,isRtl:l,isHorizontal:d}=e;const f=d?a.clientWidth:a.clientHeight,p=d?a.offsetLeft:a.offsetTop,y=l&&d?r-p-f/2-i/2:p+f/2-i/2;return Math.min(r-i,Math.max(0,y))}const vb=Symbol.for("vuetify:v-slide-group"),mb=me({centerActive:Boolean,direction:{type:String,default:"horizontal"},symbol:{type:null,default:vb},nextIcon:{type:et,default:"$next"},prevIcon:{type:et,default:"$prev"},showArrows:{type:[Boolean,String],validator:e=>typeof e=="boolean"||["always","desktop","mobile"].includes(e)},...We(),...at(),...ss({selectedClass:"v-slide-group-item--active"})},"VSlideGroup"),jc=Te()({name:"VSlideGroup",props:mb(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const{isRtl:r}=$t(),{mobile:l}=ki(),d=Ei(e,e.symbol),f=Xe(!1),p=Xe(0),y=Xe(0),k=Xe(0),C=X(()=>e.direction==="horizontal"),{resizeRef:A,contentRect:E}=ea(),{resizeRef:_,contentRect:M}=ea(),F=X(()=>d.selected.value.length?d.items.value.findIndex(Ee=>Ee.id===d.selected.value[0]):-1),$=X(()=>d.selected.value.length?d.items.value.findIndex(Ee=>Ee.id===d.selected.value[d.selected.value.length-1]):-1);if(St){let Ee=-1;He(()=>[d.selected.value,E.value,M.value,C.value],()=>{cancelAnimationFrame(Ee),Ee=requestAnimationFrame(()=>{if(E.value&&M.value){const De=C.value?"width":"height";y.value=E.value[De],k.value=M.value[De],f.value=y.value+1=0&&_.value){const De=_.value.children[$.value];F.value===0||!f.value?p.value=0:e.centerActive?p.value=bI({selectedElement:De,containerSize:y.value,contentSize:k.value,isRtl:r.value,isHorizontal:C.value}):f.value&&(p.value=Bf({selectedElement:De,containerSize:y.value,contentSize:k.value,isRtl:r.value,currentScrollOffset:p.value,isHorizontal:C.value}))}})})}const B=Xe(!1);let L=0,q=0;function Y(Ee){const De=C.value?"clientX":"clientY";q=(r.value&&C.value?-1:1)*p.value,L=Ee.touches[0][De],B.value=!0}function H(Ee){if(!f.value)return;const De=C.value?"clientX":"clientY",Fe=r.value&&C.value?-1:1;p.value=Fe*(q+L-Ee.touches[0][De])}function J(Ee){const De=k.value-y.value;p.value<0||!f.value?p.value=0:p.value>=De&&(p.value=De),B.value=!1}function ee(){A.value&&(A.value[C.value?"scrollLeft":"scrollTop"]=0)}const W=Xe(!1);function j(Ee){if(W.value=!0,!(!f.value||!_.value)){for(const De of Ee.composedPath())for(const Fe of _.value.children)if(Fe===De){p.value=Bf({selectedElement:Fe,containerSize:y.value,contentSize:k.value,isRtl:r.value,currentScrollOffset:p.value,isHorizontal:C.value});return}}}function Q(Ee){W.value=!1}function ie(Ee){var De;!W.value&&!(Ee.relatedTarget&&((De=_.value)!=null&&De.contains(Ee.relatedTarget)))&&oe()}function ne(Ee){_.value&&(C.value?Ee.key==="ArrowRight"?oe(r.value?"prev":"next"):Ee.key==="ArrowLeft"&&oe(r.value?"next":"prev"):Ee.key==="ArrowDown"?oe("next"):Ee.key==="ArrowUp"&&oe("prev"),Ee.key==="Home"?oe("first"):Ee.key==="End"&&oe("last"))}function oe(Ee){var De,Fe,Ze,Je,ze;if(_.value)if(!Ee)(De=Us(_.value)[0])==null||De.focus();else if(Ee==="next"){const ue=(Fe=_.value.querySelector(":focus"))==null?void 0:Fe.nextElementSibling;ue?ue.focus():oe("first")}else if(Ee==="prev"){const ue=(Ze=_.value.querySelector(":focus"))==null?void 0:Ze.previousElementSibling;ue?ue.focus():oe("last")}else Ee==="first"?(Je=_.value.firstElementChild)==null||Je.focus():Ee==="last"&&((ze=_.value.lastElementChild)==null||ze.focus())}function le(Ee){const De=p.value+(Ee==="prev"?-1:1)*y.value;p.value=en(De,0,k.value-y.value)}const Ce=X(()=>{let Ee=p.value>k.value-y.value?-(k.value-y.value)+Ff(k.value-y.value-p.value):-p.value;p.value<=0&&(Ee=Ff(-p.value));const De=r.value&&C.value?-1:1;return{transform:`translate${C.value?"X":"Y"}(${De*Ee}px)`,transition:B.value?"none":"",willChange:B.value?"transform":""}}),ye=X(()=>({next:d.next,prev:d.prev,select:d.select,isSelected:d.isSelected})),fe=X(()=>{switch(e.showArrows){case"always":return!0;case"desktop":return!l.value;case!0:return f.value||Math.abs(p.value)>0;case"mobile":return l.value||f.value||Math.abs(p.value)>0;default:return!l.value&&(f.value||Math.abs(p.value)>0)}}),he=X(()=>Math.abs(p.value)>0),Se=X(()=>k.value>Math.abs(p.value)+y.value);return Me(()=>R(e.tag,{class:["v-slide-group",{"v-slide-group--vertical":!C.value,"v-slide-group--has-affixes":fe.value,"v-slide-group--is-overflowing":f.value},e.class],style:e.style,tabindex:W.value||d.selected.value.length?-1:0,onFocus:ie},{default:()=>{var Ee,De,Fe;return[fe.value&&R("div",{key:"prev",class:["v-slide-group__prev",{"v-slide-group__prev--disabled":!he.value}],onClick:()=>le("prev")},[((Ee=i.prev)==null?void 0:Ee.call(i,ye.value))??R(Ec,null,{default:()=>[R(wt,{icon:r.value?e.nextIcon:e.prevIcon},null)]})]),R("div",{key:"container",ref:A,class:"v-slide-group__container",onScroll:ee},[R("div",{ref:_,class:"v-slide-group__content",style:Ce.value,onTouchstartPassive:Y,onTouchmovePassive:H,onTouchendPassive:J,onFocusin:j,onFocusout:Q,onKeydown:ne},[(De=i.default)==null?void 0:De.call(i,ye.value)])]),fe.value&&R("div",{key:"next",class:["v-slide-group__next",{"v-slide-group__next--disabled":!Se.value}],onClick:()=>le("next")},[((Fe=i.next)==null?void 0:Fe.call(i,ye.value))??R(Ec,null,{default:()=>[R(wt,{icon:r.value?e.prevIcon:e.nextIcon},null)]})])]}})),{selected:d.selected,scrollTo:le,scrollOffset:p,focus:oe}}}),xI=Te()({name:"VSlideGroupItem",props:rs(),emits:{"group:selected":e=>!0},setup(e,a){let{slots:i}=a;const r=os(e,vb);return()=>{var l;return(l=i.default)==null?void 0:l.call(i,{isSelected:r.isSelected.value,select:r.select,toggle:r.toggle,selectedClass:r.selectedClass.value})}}});const yI=me({multiLine:Boolean,timeout:{type:[Number,String],default:5e3},vertical:Boolean,...$a({location:"bottom"}),...cs(),...At(),...Bn(),...dt(),..._n(br({transition:"v-snackbar-transition"}),["persistent","noClickAnimation","scrim","scrollStrategy"])},"VSnackbar"),wI=Te()({name:"VSnackbar",props:yI(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const r=tt(e,"modelValue"),{locationStyles:l}=ja(e),{positionClasses:d}=us(e),{scopeId:f}=hs(),{themeClasses:p}=vt(e),{colorClasses:y,colorStyles:k,variantClasses:C}=Pi(e),{roundedClasses:A}=Lt(e),E=Re();He(r,M),He(()=>e.timeout,M),zt(()=>{r.value&&M()});let _=-1;function M(){window.clearTimeout(_);const $=Number(e.timeout);!r.value||$===-1||(_=window.setTimeout(()=>{r.value=!1},$))}function F(){window.clearTimeout(_)}return Me(()=>{const[$]=ma.filterProps(e);return R(ma,Ye({ref:E,class:["v-snackbar",{"v-snackbar--active":r.value,"v-snackbar--multi-line":e.multiLine&&!e.vertical,"v-snackbar--vertical":e.vertical},d.value,e.class],style:e.style},$,{modelValue:r.value,"onUpdate:modelValue":B=>r.value=B,contentProps:Ye({class:["v-snackbar__wrapper",p.value,y.value,A.value,C.value],style:[l.value,k.value],onPointerenter:F,onPointerleave:M},$.contentProps),persistent:!0,noClickAnimation:!0,scrim:!1,scrollStrategy:"none",_disableGlobalStack:!0},f),{default:()=>[Ai(!1,"v-snackbar"),i.default&&R("div",{class:"v-snackbar__content",role:"status","aria-live":"polite"},[i.default()]),i.actions&&R(bt,{defaults:{VBtn:{variant:"text",ripple:!1}}},{default:()=>[R("div",{class:"v-snackbar__actions"},[i.actions()])]})],activator:i.activator})}),Un({},E)}});const SI=me({indeterminate:Boolean,inset:Boolean,flat:Boolean,loading:{type:[Boolean,String],default:!1},...Sa(),...Go()},"VSwitch"),kI=Te()({name:"VSwitch",inheritAttrs:!1,props:SI(),emits:{"update:focused":e=>!0,"update:modelValue":()=>!0,"update:indeterminate":e=>!0},setup(e,a){let{attrs:i,slots:r}=a;const l=tt(e,"indeterminate"),d=tt(e,"modelValue"),{loaderClasses:f}=jo(e),{isFocused:p,focus:y,blur:k}=Ua(e),C=Re(),A=X(()=>typeof e.loading=="string"&&e.loading!==""?e.loading:e.color),E=sn(),_=X(()=>e.id||`switch-${E}`);function M(){l.value&&(l.value=!1)}function F($){var B,L;$.stopPropagation(),$.preventDefault(),(L=(B=C.value)==null?void 0:B.input)==null||L.click()}return Me(()=>{const[$,B]=Si(i),[L,q]=Ut.filterProps(e),[Y,H]=mi.filterProps(e);return R(Ut,Ye({class:["v-switch",{"v-switch--inset":e.inset},{"v-switch--indeterminate":l.value},f.value,e.class],style:e.style},$,L,{id:_.value,focused:p.value}),{...r,default:J=>{let{id:ee,messagesId:W,isDisabled:j,isReadonly:Q,isValid:ie}=J;return R(mi,Ye({ref:C},Y,{modelValue:d.value,"onUpdate:modelValue":[ne=>d.value=ne,M],id:ee.value,"aria-describedby":W.value,type:"checkbox","aria-checked":l.value?"mixed":void 0,disabled:j.value,readonly:Q.value,onFocus:y,onBlur:k},B),{...r,default:()=>R("div",{class:"v-switch__track",onClick:F},null),input:ne=>{let{inputNode:oe,icon:le}=ne;return R(Ke,null,[oe,R("div",{class:["v-switch__thumb",{"v-switch__thumb--filled":le||e.loading}]},[R(Zu,null,{default:()=>[e.loading?R(rd,{name:"v-switch",active:!0,color:ie.value===!1?void 0:A.value},{default:Ce=>r.loader?r.loader(Ce):R(ad,{active:Ce.isActive,color:Ce.color,indeterminate:!0,size:"16",width:"2"},null)}):le&&R(wt,{key:le,icon:le,size:"x-small"},null)]})])])}})}})}),{}}});const CI=me({color:String,height:[Number,String],window:Boolean,...We(),...Nt(),...as(),...At(),...at(),...dt()},"VSystemBar"),AI=Te()({name:"VSystemBar",props:CI(),setup(e,a){let{slots:i}=a;const{themeClasses:r}=vt(e),{backgroundColorClasses:l,backgroundColorStyles:d}=Vt(Ie(e,"color")),{elevationClasses:f}=Kt(e),{roundedClasses:p}=Lt(e),{ssrBootStyles:y}=Ci(),k=X(()=>e.height??(e.window?32:24)),{layoutItemStyles:C}=is({id:e.name,order:X(()=>parseInt(e.order,10)),position:Xe("top"),layoutSize:k,elementSize:k,active:X(()=>!0),absolute:Ie(e,"absolute")});return Me(()=>R(e.tag,{class:["v-system-bar",{"v-system-bar--window":e.window},r.value,l.value,f.value,p.value,e.class],style:[d.value,C.value,y.value,e.style]},i)),{}}});const pb=Symbol.for("vuetify:v-tabs"),PI=me({fixed:Boolean,sliderColor:String,hideSlider:Boolean,direction:{type:String,default:"horizontal"},..._n(od({selectedClass:"v-tab--selected",variant:"text"}),["active","block","flat","location","position","symbol"])},"VTab"),bb=Te()({name:"VTab",props:PI(),setup(e,a){let{slots:i,attrs:r}=a;const{textColorClasses:l,textColorStyles:d}=an(e,"sliderColor"),f=X(()=>e.direction==="horizontal"),p=Xe(!1),y=Re(),k=Re();function C(A){var _,M;let{value:E}=A;if(p.value=E,E){const F=(M=(_=y.value)==null?void 0:_.$el.parentElement)==null?void 0:M.querySelector(".v-tab--selected .v-tab__slider"),$=k.value;if(!F||!$)return;const B=getComputedStyle(F).color,L=F.getBoundingClientRect(),q=$.getBoundingClientRect(),Y=f.value?"x":"y",H=f.value?"X":"Y",J=f.value?"right":"bottom",ee=f.value?"width":"height",W=L[Y],j=q[Y],Q=W>j?L[J]-q[J]:L[Y]-q[Y],ie=Math.sign(Q)>0?f.value?"right":"bottom":Math.sign(Q)<0?f.value?"left":"top":"center",oe=(Math.abs(Q)+(Math.sign(Q)<0?L[ee]:q[ee]))/Math.max(L[ee],q[ee]),le=L[ee]/q[ee],Ce=1.5;si($,{backgroundColor:[B,"currentcolor"],transform:[`translate${H}(${Q}px) scale${H}(${le})`,`translate${H}(${Q/Ce}px) scale${H}(${(oe-1)/Ce+1})`,"none"],transformOrigin:Array(3).fill(ie)},{duration:225,easing:qs})}}return Me(()=>{const[A]=cn.filterProps(e);return R(cn,Ye({symbol:pb,ref:y,class:["v-tab",e.class],style:e.style,tabindex:p.value?0:-1,role:"tab","aria-selected":String(p.value),active:!1,block:e.fixed,maxWidth:e.fixed?300:void 0,rounded:0},A,r,{"onGroup:selected":C}),{default:()=>{var E;return[((E=i.default)==null?void 0:E.call(i))??e.text,!e.hideSlider&&R("div",{ref:k,class:["v-tab__slider",l.value],style:d.value},null)]}})}),{}}});function EI(e){return e?e.map(a=>typeof a=="string"?{title:a,value:a}:a):[]}const TI=me({alignTabs:{type:String,default:"start"},color:String,fixedTabs:Boolean,items:{type:Array,default:()=>[]},stacked:Boolean,bgColor:String,grow:Boolean,height:{type:[Number,String],default:void 0},hideSlider:Boolean,sliderColor:String,...mb({mandatory:"force"}),...Ht(),...at()},"VTabs"),II=Te()({name:"VTabs",props:TI(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const r=tt(e,"modelValue"),l=X(()=>EI(e.items)),{densityClasses:d}=rn(e),{backgroundColorClasses:f,backgroundColorStyles:p}=Vt(Ie(e,"bgColor"));return Bt({VTab:{color:Ie(e,"color"),direction:Ie(e,"direction"),stacked:Ie(e,"stacked"),fixed:Ie(e,"fixedTabs"),sliderColor:Ie(e,"sliderColor"),hideSlider:Ie(e,"hideSlider")}}),Me(()=>{const[y]=jc.filterProps(e);return R(jc,Ye(y,{modelValue:r.value,"onUpdate:modelValue":k=>r.value=k,class:["v-tabs",`v-tabs--${e.direction}`,`v-tabs--align-tabs-${e.alignTabs}`,{"v-tabs--fixed-tabs":e.fixedTabs,"v-tabs--grow":e.grow,"v-tabs--stacked":e.stacked},d.value,f.value,e.class],style:[{"--v-tabs-height":$e(e.height)},p.value,e.style],role:"tablist",symbol:pb}),{default:()=>[i.default?i.default():l.value.map(k=>R(bb,Ye(k,{key:k.title}),null))]})}),{}}});const LI=me({fixedHeader:Boolean,fixedFooter:Boolean,height:[Number,String],hover:Boolean,...We(),...Ht(),...at(),...dt()},"VTable"),_I=Te()({name:"VTable",props:LI(),setup(e,a){let{slots:i}=a;const{themeClasses:r}=vt(e),{densityClasses:l}=rn(e);return Me(()=>R(e.tag,{class:["v-table",{"v-table--fixed-height":!!e.height,"v-table--fixed-header":e.fixedHeader,"v-table--fixed-footer":e.fixedFooter,"v-table--has-top":!!i.top,"v-table--has-bottom":!!i.bottom,"v-table--hover":e.hover},r.value,l.value,e.class],style:e.style},{default:()=>{var d,f,p;return[(d=i.top)==null?void 0:d.call(i),i.default?R("div",{class:"v-table__wrapper",style:{height:$e(e.height)}},[R("table",null,[i.default()])]):(f=i.wrapper)==null?void 0:f.call(i),(p=i.bottom)==null?void 0:p.call(i)]}})),{}}});const VI=me({autoGrow:Boolean,autofocus:Boolean,counter:[Boolean,Number,String],counterValue:Function,prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,noResize:Boolean,rows:{type:[Number,String],default:5,validator:e=>!isNaN(parseFloat(e))},maxRows:{type:[Number,String],validator:e=>!isNaN(parseFloat(e))},suffix:String,modelModifiers:Object,...Sa(),...el()},"VTextarea"),RI=Te()({name:"VTextarea",directives:{Intersect:$o},inheritAttrs:!1,props:VI(),emits:{"click:control":e=>!0,"mousedown:control":e=>!0,"update:focused":e=>!0,"update:modelValue":e=>!0},setup(e,a){let{attrs:i,emit:r,slots:l}=a;const d=tt(e,"modelValue"),{isFocused:f,focus:p,blur:y}=Ua(e),k=X(()=>typeof e.counterValue=="function"?e.counterValue(d.value):(d.value||"").toString().length),C=X(()=>{if(i.maxlength)return i.maxlength;if(!(!e.counter||typeof e.counter!="number"&&typeof e.counter!="string"))return e.counter});function A(ie,ne){var oe,le;!e.autofocus||!ie||(le=(oe=ne[0].target)==null?void 0:oe.focus)==null||le.call(oe)}const E=Re(),_=Re(),M=Xe(""),F=Re(),$=X(()=>e.persistentPlaceholder||f.value||e.active);function B(){var ie;F.value!==document.activeElement&&((ie=F.value)==null||ie.focus()),f.value||p()}function L(ie){B(),r("click:control",ie)}function q(ie){r("mousedown:control",ie)}function Y(ie){ie.stopPropagation(),B(),gt(()=>{d.value="",Hu(e["onClick:clear"],ie)})}function H(ie){var oe;const ne=ie.target;if(d.value=ne.value,(oe=e.modelModifiers)!=null&&oe.trim){const le=[ne.selectionStart,ne.selectionEnd];gt(()=>{ne.selectionStart=le[0],ne.selectionEnd=le[1]})}}const J=Re(),ee=Re(+e.rows),W=X(()=>["plain","underlined"].includes(e.variant));vn(()=>{e.autoGrow||(ee.value=+e.rows)});function j(){e.autoGrow&>(()=>{if(!J.value||!_.value)return;const ie=getComputedStyle(J.value),ne=getComputedStyle(_.value.$el),oe=parseFloat(ie.getPropertyValue("--v-field-padding-top"))+parseFloat(ie.getPropertyValue("--v-input-padding-top"))+parseFloat(ie.getPropertyValue("--v-field-padding-bottom")),le=J.value.scrollHeight,Ce=parseFloat(ie.lineHeight),ye=Math.max(parseFloat(e.rows)*Ce+oe,parseFloat(ne.getPropertyValue("--v-input-control-height"))),fe=parseFloat(e.maxRows)*Ce+oe||1/0,he=en(le??0,ye,fe);ee.value=Math.floor((he-oe)/Ce),M.value=$e(he)})}zt(j),He(d,j),He(()=>e.rows,j),He(()=>e.maxRows,j),He(()=>e.density,j);let Q;return He(J,ie=>{ie?(Q=new ResizeObserver(j),Q.observe(J.value)):Q==null||Q.disconnect()}),qt(()=>{Q==null||Q.disconnect()}),Me(()=>{const ie=!!(l.counter||e.counter||e.counterValue),ne=!!(ie||l.details),[oe,le]=Si(i),[{modelValue:Ce,...ye}]=Ut.filterProps(e),[fe]=hd(e);return R(Ut,Ye({ref:E,modelValue:d.value,"onUpdate:modelValue":he=>d.value=he,class:["v-textarea v-text-field",{"v-textarea--prefixed":e.prefix,"v-textarea--suffixed":e.suffix,"v-text-field--prefixed":e.prefix,"v-text-field--suffixed":e.suffix,"v-textarea--auto-grow":e.autoGrow,"v-textarea--no-resize":e.noResize||e.autoGrow,"v-text-field--plain-underlined":W.value},e.class],style:e.style},oe,ye,{centerAffix:ee.value===1&&!W.value,focused:f.value}),{...l,default:he=>{let{isDisabled:Se,isDirty:Ee,isReadonly:De,isValid:Fe}=he;return R(xr,Ye({ref:_,style:{"--v-textarea-control-height":M.value},onClick:L,onMousedown:q,"onClick:clear":Y,"onClick:prependInner":e["onClick:prependInner"],"onClick:appendInner":e["onClick:appendInner"]},fe,{active:$.value||Ee.value,centerAffix:ee.value===1&&!W.value,dirty:Ee.value||e.dirty,disabled:Se.value,focused:f.value,error:Fe.value===!1}),{...l,default:Ze=>{let{props:{class:Je,...ze}}=Ze;return R(Ke,null,[e.prefix&&R("span",{class:"v-text-field__prefix"},[e.prefix]),Et(R("textarea",Ye({ref:F,class:Je,value:d.value,onInput:H,autofocus:e.autofocus,readonly:De.value,disabled:Se.value,placeholder:e.placeholder,rows:e.rows,name:e.name,onFocus:B,onBlur:y},ze,le),null),[[mn("intersect"),{handler:A},null,{once:!0}]]),e.autoGrow&&Et(R("textarea",{class:[Je,"v-textarea__sizer"],"onUpdate:modelValue":ue=>d.value=ue,ref:J,readonly:!0,"aria-hidden":"true"},null),[[$s,d.value]]),e.suffix&&R("span",{class:"v-text-field__suffix"},[e.suffix])])}})},details:ne?he=>{var Se;return R(Ke,null,[(Se=l.details)==null?void 0:Se.call(l,he),ie&&R(Ke,null,[R("span",null,null),R(Qo,{active:e.persistentCounter||f.value,value:k.value,max:C.value},l.counter)])])}:void 0})}),Un({},E,_,F)}});const MI=me({withBackground:Boolean,...We(),...dt(),...at()},"VThemeProvider"),OI=Te()({name:"VThemeProvider",props:MI(),setup(e,a){let{slots:i}=a;const{themeClasses:r}=vt(e);return()=>{var l;return e.withBackground?R(e.tag,{class:["v-theme-provider",r.value,e.class],style:e.style},{default:()=>{var d;return[(d=i.default)==null?void 0:d.call(i)]}}):(l=i.default)==null?void 0:l.call(i)}}});const FI=me({align:{type:String,default:"center",validator:e=>["center","start"].includes(e)},direction:{type:String,default:"vertical",validator:e=>["vertical","horizontal"].includes(e)},justify:{type:String,default:"auto",validator:e=>["auto","center"].includes(e)},side:{type:String,validator:e=>e==null||["start","end"].includes(e)},lineInset:{type:[String,Number],default:0},lineThickness:{type:[String,Number],default:2},lineColor:String,truncateLine:{type:String,validator:e=>["start","end","both"].includes(e)},...We(),...Ht(),...at(),...dt()},"VTimeline"),BI=Te()({name:"VTimeline",props:FI(),setup(e,a){let{slots:i}=a;const{themeClasses:r}=vt(e),{densityClasses:l}=rn(e),{rtlClasses:d}=$t();Bt({VTimelineDivider:{lineColor:Ie(e,"lineColor")},VTimelineItem:{density:Ie(e,"density"),lineInset:Ie(e,"lineInset")}});const f=X(()=>{const y=e.side?e.side:e.density!=="default"?"end":null;return y&&`v-timeline--side-${y}`}),p=X(()=>{const y=["v-timeline--truncate-line-start","v-timeline--truncate-line-end"];switch(e.truncateLine){case"both":return y;case"start":return y[0];case"end":return y[1];default:return null}});return Me(()=>R(e.tag,{class:["v-timeline",`v-timeline--${e.direction}`,`v-timeline--align-${e.align}`,`v-timeline--justify-${e.justify}`,p.value,{"v-timeline--inset-line":!!e.lineInset},r.value,l.value,f.value,d.value,e.class],style:[{"--v-timeline-line-thickness":$e(e.lineThickness)},e.style]},i)),{}}}),DI=me({dotColor:String,fillDot:Boolean,hideDot:Boolean,icon:et,iconColor:String,lineColor:String,...We(),...At(),...wa(),...Nt()},"VTimelineDivider"),zI=Te()({name:"VTimelineDivider",props:DI(),setup(e,a){let{slots:i}=a;const{sizeClasses:r,sizeStyles:l}=ls(e,"v-timeline-divider__dot"),{backgroundColorStyles:d,backgroundColorClasses:f}=Vt(Ie(e,"dotColor")),{roundedClasses:p}=Lt(e,"v-timeline-divider__dot"),{elevationClasses:y}=Kt(e),{backgroundColorClasses:k,backgroundColorStyles:C}=Vt(Ie(e,"lineColor"));return Me(()=>R("div",{class:["v-timeline-divider",{"v-timeline-divider--fill-dot":e.fillDot},e.class],style:e.style},[R("div",{class:["v-timeline-divider__before",k.value],style:C.value},null),!e.hideDot&&R("div",{key:"dot",class:["v-timeline-divider__dot",y.value,p.value,r.value],style:l.value},[R("div",{class:["v-timeline-divider__inner-dot",f.value,p.value],style:d.value},[i.default?R(bt,{key:"icon-defaults",disabled:!e.icon,defaults:{VIcon:{color:e.iconColor,icon:e.icon,size:e.size}}},i.default):R(wt,{key:"icon",color:e.iconColor,icon:e.icon,size:e.size},null)])]),R("div",{class:["v-timeline-divider__after",k.value],style:C.value},null)])),{}}}),NI=me({density:String,dotColor:String,fillDot:Boolean,hideDot:Boolean,hideOpposite:{type:Boolean,default:void 0},icon:et,iconColor:String,lineInset:[Number,String],...We(),...Mn(),...Nt(),...At(),...wa(),...at()},"VTimelineItem"),HI=Te()({name:"VTimelineItem",props:NI(),setup(e,a){let{slots:i}=a;const{dimensionStyles:r}=On(e),l=Xe(0),d=Re();return He(d,f=>{var p;f&&(l.value=((p=f.$el.querySelector(".v-timeline-divider__dot"))==null?void 0:p.getBoundingClientRect().width)??0)},{flush:"post"}),Me(()=>{var f,p;return R("div",{class:["v-timeline-item",{"v-timeline-item--fill-dot":e.fillDot},e.class],style:[{"--v-timeline-dot-size":$e(l.value),"--v-timeline-line-inset":e.lineInset?`calc(var(--v-timeline-dot-size) / 2 + ${$e(e.lineInset)})`:$e(0)},e.style]},[R("div",{class:"v-timeline-item__body",style:r.value},[(f=i.default)==null?void 0:f.call(i)]),R(zI,{ref:d,hideDot:e.hideDot,icon:e.icon,iconColor:e.iconColor,size:e.size,elevation:e.elevation,dotColor:e.dotColor,fillDot:e.fillDot,rounded:e.rounded},{default:i.icon}),e.density!=="compact"&&R("div",{class:"v-timeline-item__opposite"},[!e.hideOpposite&&((p=i.opposite)==null?void 0:p.call(i))])])}),{}}}),XI=me({...We(),...Bn({variant:"text"})},"VToolbarItems"),YI=Te()({name:"VToolbarItems",props:XI(),setup(e,a){let{slots:i}=a;return Bt({VBtn:{color:Ie(e,"color"),height:"inherit",variant:Ie(e,"variant")}}),Me(()=>{var r;return R("div",{class:["v-toolbar-items",e.class],style:e.style},[(r=i.default)==null?void 0:r.call(i)])}),{}}});const WI=me({id:String,text:String,..._n(br({closeOnBack:!1,location:"end",locationStrategy:"connected",eager:!0,minWidth:0,offset:10,openOnClick:!1,openOnHover:!0,origin:"auto",scrim:!1,scrollStrategy:"reposition",transition:!1}),["absolute","persistent"])},"VTooltip"),$I=Te()({name:"VTooltip",props:WI(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const r=tt(e,"modelValue"),{scopeId:l}=hs(),d=sn(),f=X(()=>e.id||`v-tooltip-${d}`),p=Re(),y=X(()=>e.location.split(" ").length>1?e.location:e.location+" center"),k=X(()=>e.origin==="auto"||e.origin==="overlap"||e.origin.split(" ").length>1||e.location.split(" ").length>1?e.origin:e.origin+" center"),C=X(()=>e.transition?e.transition:r.value?"scale-transition":"fade-transition"),A=X(()=>Ye({"aria-describedby":f.value},e.activatorProps));return Me(()=>{const[E]=ma.filterProps(e);return R(ma,Ye({ref:p,class:["v-tooltip",e.class],style:e.style,id:f.value},E,{modelValue:r.value,"onUpdate:modelValue":_=>r.value=_,transition:C.value,absolute:!0,location:y.value,origin:k.value,persistent:!0,role:"tooltip",activatorProps:A.value,_disableGlobalStack:!0},l),{activator:i.activator,default:function(){var $;for(var _=arguments.length,M=new Array(_),F=0;F<_;F++)M[F]=arguments[F];return(($=i.default)==null?void 0:$.call(i,...M))??e.text}})}),Un({},p)}}),jI=Te()({name:"VValidation",props:cp(),emits:{"update:modelValue":e=>!0},setup(e,a){let{slots:i}=a;const r=up(e,"validation");return()=>{var l;return(l=i.default)==null?void 0:l.call(i,r)}}}),GI=Object.freeze(Object.defineProperty({__proto__:null,VAlert:wA,VAlertTitle:np,VApp:_C,VAppBar:ZC,VAppBarNavIcon:pA,VAppBarTitle:bA,VAutocomplete:NP,VAvatar:Wa,VBadge:XP,VBanner:$P,VBannerActions:Fp,VBannerText:Bp,VBottomNavigation:GP,VBreadcrumbs:ZP,VBreadcrumbsDivider:Dp,VBreadcrumbsItem:zp,VBtn:cn,VBtnGroup:Lc,VBtnToggle:aA,VCard:eE,VCardActions:Np,VCardItem:Yp,VCardSubtitle:Hp,VCardText:Wp,VCardTitle:Xp,VCarousel:cE,VCarouselItem:dE,VCheckbox:IA,VCheckboxBtn:Zi,VChip:pr,VChipGroup:VA,VClassIcon:qu,VCode:hE,VCol:kT,VColorPicker:eT,VCombobox:aT,VComponentIcon:Cc,VContainer:xT,VCounter:Qo,VDefaultsProvider:bt,VDialog:sT,VDialogBottomTransition:OC,VDialogTopTransition:FC,VDialogTransition:Yo,VDivider:wp,VExpandTransition:Wo,VExpandXTransition:Qu,VExpansionPanel:dT,VExpansionPanelText:tb,VExpansionPanelTitle:ab,VExpansionPanels:lT,VFabTransition:MC,VFadeTransition:Ec,VField:xr,VFieldLabel:ks,VFileInput:fT,VFooter:vT,VForm:pT,VHover:RT,VIcon:wt,VImg:vi,VInput:Ut,VItem:FT,VItemGroup:OT,VKbd:BT,VLabel:ds,VLayout:zT,VLayoutItem:HT,VLazy:YT,VLigatureIcon:jk,VList:Ko,VListGroup:Mc,VListImg:QA,VListItem:va,VListItemAction:tP,VListItemMedia:aP,VListItemSubtitle:bp,VListItemTitle:xp,VListSubheader:yp,VLocaleProvider:$T,VMain:GT,VMenu:Jo,VMessages:op,VNavigationDrawer:nI,VNoSsr:aI,VOverlay:ma,VPagination:rI,VParallax:cI,VProgressCircular:ad,VProgressLinear:id,VRadio:dI,VRadioGroup:fI,VRangeSlider:vI,VRating:pI,VResponsive:Tc,VRow:LT,VScaleTransition:Zu,VScrollXReverseTransition:DC,VScrollXTransition:BC,VScrollYReverseTransition:NC,VScrollYTransition:zC,VSelect:OP,VSelectionControl:mi,VSelectionControlGroup:ip,VSheet:$c,VSlideGroup:jc,VSlideGroupItem:xI,VSlideXReverseTransition:XC,VSlideXTransition:HC,VSlideYReverseTransition:YC,VSlideYTransition:Ju,VSlider:Wc,VSnackbar:wI,VSpacer:_T,VSvgIcon:Uu,VSwitch:kI,VSystemBar:AI,VTab:bb,VTable:_I,VTabs:II,VTextField:pi,VTextarea:RI,VThemeProvider:OI,VTimeline:BI,VTimelineItem:HI,VToolbar:Ic,VToolbarItems:YI,VToolbarTitle:Ku,VTooltip:$I,VValidation:jI,VVirtualScroll:nl,VWindow:Dc,VWindowItem:zc},Symbol.toStringTag,{value:"Module"}));function UI(e,a){const i=a.modifiers||{},r=a.value,{once:l,immediate:d,...f}=i,p=!Object.keys(f).length,{handler:y,options:k}=typeof r=="object"?r:{handler:r,options:{attributes:(f==null?void 0:f.attr)??p,characterData:(f==null?void 0:f.char)??p,childList:(f==null?void 0:f.child)??p,subtree:(f==null?void 0:f.sub)??p}},C=new MutationObserver(function(){let A=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],E=arguments.length>1?arguments[1]:void 0;y==null||y(A,E),l&&xb(e,a)});d&&(y==null||y([],C)),e._mutate=Object(e._mutate),e._mutate[a.instance.$.uid]={observer:C},C.observe(e,k)}function xb(e,a){var i;(i=e._mutate)!=null&&i[a.instance.$.uid]&&(e._mutate[a.instance.$.uid].observer.disconnect(),delete e._mutate[a.instance.$.uid])}const qI={mounted:UI,unmounted:xb};function KI(e,a){var l,d;const i=a.value,r={passive:!((l=a.modifiers)!=null&&l.active)};window.addEventListener("resize",i,r),e._onResize=Object(e._onResize),e._onResize[a.instance.$.uid]={handler:i,options:r},(d=a.modifiers)!=null&&d.quiet||i()}function ZI(e,a){var l;if(!((l=e._onResize)!=null&&l[a.instance.$.uid]))return;const{handler:i,options:r}=e._onResize[a.instance.$.uid];window.removeEventListener("resize",i,r),delete e._onResize[a.instance.$.uid]}const JI={mounted:KI,unmounted:ZI};function yb(e,a){const{self:i=!1}=a.modifiers??{},r=a.value,l=typeof r=="object"&&r.options||{passive:!0},d=typeof r=="function"||"handleEvent"in r?r:r.handler,f=i?e:a.arg?document.querySelector(a.arg):window;f&&(f.addEventListener("scroll",d,l),e._onScroll=Object(e._onScroll),e._onScroll[a.instance.$.uid]={handler:d,options:l,target:i?void 0:f})}function wb(e,a){var d;if(!((d=e._onScroll)!=null&&d[a.instance.$.uid]))return;const{handler:i,options:r,target:l=e}=e._onScroll[a.instance.$.uid];l.removeEventListener("scroll",i,r),delete e._onScroll[a.instance.$.uid]}function QI(e,a){a.value!==a.oldValue&&(wb(e,a),yb(e,a))}const eL={mounted:yb,unmounted:wb,updated:QI},tL=Object.freeze(Object.defineProperty({__proto__:null,ClickOutside:Rp,Intersect:Xm,Mutate:qI,Resize:JI,Ripple:Ga,Scroll:eL,Touch:vd},Symbol.toStringTag,{value:"Module"})),nL={name:"PurpleTheme",dark:!1,variables:{"border-color":"#1e88e5","carousel-control-size":10},colors:{primary:"#1e88e5",secondary:"#5e35b1",info:"#03c9d7",success:"#00c853",accent:"#FFAB91",warning:"#ffc107",error:"#f44336",lightprimary:"#eef2f6",lightsecondary:"#ede7f6",lightsuccess:"#b9f6ca",lighterror:"#f9d8d8",lightwarning:"#fff8e1",darkText:"#212121",lightText:"#616161",darkprimary:"#1565c0",darksecondary:"#4527a0",borderLight:"#d0d0d0",inputBorder:"#787878",containerBg:"#eef2f6",surface:"#fff","on-surface-variant":"#fff",facebook:"#4267b2",twitter:"#1da1f2",linkedin:"#0e76a8",gray100:"#fafafa",primary200:"#90caf9",secondary200:"#b39ddb"}},aL=Fm({components:GI,directives:tL,theme:{defaultTheme:"PurpleTheme",themes:{PurpleTheme:nL}},defaults:{VBtn:{},VCard:{rounded:"md"},VTextField:{rounded:"lg"},VTooltip:{location:"top"}}});var dL=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function iL(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function sL(e){if(e.__esModule)return e;var a=e.default;if(typeof a=="function"){var i=function r(){return this instanceof r?Reflect.construct(a,arguments,this.constructor):a.apply(this,arguments)};i.prototype=a.prototype}else i={};return Object.defineProperty(i,"__esModule",{value:!0}),Object.keys(e).forEach(function(r){var l=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(i,r,l.get?l:{enumerable:!0,get:function(){return e[r]}})}),i}var Sb={exports:{}};const rL=sL(ww);var zr={exports:{}};/*! + * ApexCharts v3.42.0 + * (c) 2018-2023 ApexCharts + * Released under the MIT License. + */var Df;function oL(){return Df||(Df=1,function(e,a){function i(D,t){var n=Object.keys(D);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(D);t&&(s=s.filter(function(o){return Object.getOwnPropertyDescriptor(D,o).enumerable})),n.push.apply(n,s)}return n}function r(D){for(var t=1;t"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var n,s=C(D);if(t){var o=C(this).constructor;n=Reflect.construct(s,arguments,o)}else n=s.apply(this,arguments);return E(this,n)}}function M(D,t){return function(n){if(Array.isArray(n))return n}(D)||function(n,s){var o=n==null?null:typeof Symbol<"u"&&n[Symbol.iterator]||n["@@iterator"];if(o!=null){var c,u,h=[],g=!0,m=!1;try{for(o=o.call(n);!(g=(c=o.next()).done)&&(h.push(c.value),!s||h.length!==s);g=!0);}catch(b){m=!0,u=b}finally{try{g||o.return==null||o.return()}finally{if(m)throw u}}return h}}(D,t)||$(D,t)||function(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}()}function F(D){return function(t){if(Array.isArray(t))return B(t)}(D)||function(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}(D)||$(D)||function(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}()}function $(D,t){if(D){if(typeof D=="string")return B(D,t);var n=Object.prototype.toString.call(D).slice(8,-1);return n==="Object"&&D.constructor&&(n=D.constructor.name),n==="Map"||n==="Set"?Array.from(D):n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?B(D,t):void 0}}function B(D,t){(t==null||t>D.length)&&(t=D.length);for(var n=0,s=new Array(t);n>16,h=s>>8&255,g=255&s;return"#"+(16777216+65536*(Math.round((o-u)*c)+u)+256*(Math.round((o-h)*c)+h)+(Math.round((o-g)*c)+g)).toString(16).slice(1)}},{key:"shadeColor",value:function(t,n){return D.isColorHex(n)?this.shadeHexColor(t,n):this.shadeRGBColor(t,n)}}],[{key:"bind",value:function(t,n){return function(){return t.apply(n,arguments)}}},{key:"isObject",value:function(t){return t&&l(t)==="object"&&!Array.isArray(t)&&t!=null}},{key:"is",value:function(t,n){return Object.prototype.toString.call(n)==="[object "+t+"]"}},{key:"listToArray",value:function(t){var n,s=[];for(n=0;n1&&arguments[1]!==void 0?arguments[1]:2;return parseFloat(t.toPrecision(n))}},{key:"randomId",value:function(){return(Math.random()+1).toString(36).substring(4)}},{key:"noExponents",value:function(t){var n=String(t).split(/[eE]/);if(n.length===1)return n[0];var s="",o=t<0?"-":"",c=n[0].replace(".",""),u=Number(n[1])+1;if(u<0){for(s=o+"0.";u++;)s+="0";return s+c.replace(/^-/,"")}for(u-=c.length;u--;)s+="0";return c+s}},{key:"getDimensions",value:function(t){var n=getComputedStyle(t,null),s=t.clientHeight,o=t.clientWidth;return s-=parseFloat(n.paddingTop)+parseFloat(n.paddingBottom),[o-=parseFloat(n.paddingLeft)+parseFloat(n.paddingRight),s]}},{key:"getBoundingClientRect",value:function(t){var n=t.getBoundingClientRect();return{top:n.top,right:n.right,bottom:n.bottom,left:n.left,width:t.clientWidth,height:t.clientHeight,x:n.left,y:n.top}}},{key:"getLargestStringFromArr",value:function(t){return t.reduce(function(n,s){return Array.isArray(s)&&(s=s.reduce(function(o,c){return o.length>c.length?o:c})),n.length>s.length?n:s},0)}},{key:"hexToRgba",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"#999999",n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:.6;t.substring(0,1)!=="#"&&(t="#999999");var s=t.replace("#","");s=s.match(new RegExp("(.{"+s.length/3+"})","g"));for(var o=0;o1&&arguments[1]!==void 0?arguments[1]:"x",s=t.toString().slice();return s=s.replace(/[` ~!@#$%^&*()|+\=?;:'",.<>{}[\]\\/]/gi,n)}},{key:"negToZero",value:function(t){return t<0?0:t}},{key:"moveIndexInArray",value:function(t,n,s){if(s>=t.length)for(var o=s-t.length+1;o--;)t.push(void 0);return t.splice(s,0,t.splice(n,1)[0]),t}},{key:"extractNumber",value:function(t){return parseFloat(t.replace(/[^\d.]*/g,""))}},{key:"findAncestor",value:function(t,n){for(;(t=t.parentElement)&&!t.classList.contains(n););return t}},{key:"setELstyles",value:function(t,n){for(var s in n)n.hasOwnProperty(s)&&(t.style.key=n[s])}},{key:"isNumber",value:function(t){return!isNaN(t)&&parseFloat(Number(t))===t&&!isNaN(parseInt(t,10))}},{key:"isFloat",value:function(t){return Number(t)===t&&t%1!=0}},{key:"isSafari",value:function(){return/^((?!chrome|android).)*safari/i.test(navigator.userAgent)}},{key:"isFirefox",value:function(){return navigator.userAgent.toLowerCase().indexOf("firefox")>-1}},{key:"isIE11",value:function(){if(window.navigator.userAgent.indexOf("MSIE")!==-1||window.navigator.appVersion.indexOf("Trident/")>-1)return!0}},{key:"isIE",value:function(){var t=window.navigator.userAgent,n=t.indexOf("MSIE ");if(n>0)return parseInt(t.substring(n+5,t.indexOf(".",n)),10);if(t.indexOf("Trident/")>0){var s=t.indexOf("rv:");return parseInt(t.substring(s+3,t.indexOf(".",s)),10)}var o=t.indexOf("Edge/");return o>0&&parseInt(t.substring(o+5,t.indexOf(".",o)),10)}}]),D}(),q=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w,this.setEasingFunctions()}return p(D,[{key:"setEasingFunctions",value:function(){var t;if(!this.w.globals.easing){switch(this.w.config.chart.animations.easing){case"linear":t="-";break;case"easein":t="<";break;case"easeout":t=">";break;case"easeinout":default:t="<>";break;case"swing":t=function(n){var s=1.70158;return(n-=1)*n*((s+1)*n+s)+1};break;case"bounce":t=function(n){return n<1/2.75?7.5625*n*n:n<2/2.75?7.5625*(n-=1.5/2.75)*n+.75:n<2.5/2.75?7.5625*(n-=2.25/2.75)*n+.9375:7.5625*(n-=2.625/2.75)*n+.984375};break;case"elastic":t=function(n){return n===!!n?n:Math.pow(2,-10*n)*Math.sin((n-.075)*(2*Math.PI)/.3)+1}}this.w.globals.easing=t}}},{key:"animateLine",value:function(t,n,s,o){t.attr(n).animate(o).attr(s)}},{key:"animateMarker",value:function(t,n,s,o,c,u){n||(n=0),t.attr({r:n,width:n,height:n}).animate(o,c).attr({r:s,width:s.width,height:s.height}).afterAll(function(){u()})}},{key:"animateCircle",value:function(t,n,s,o,c){t.attr({r:n.r,cx:n.cx,cy:n.cy}).animate(o,c).attr({r:s.r,cx:s.cx,cy:s.cy})}},{key:"animateRect",value:function(t,n,s,o,c){t.attr(n).animate(o).attr(s).afterAll(function(){return c()})}},{key:"animatePathsGradually",value:function(t){var n=t.el,s=t.realIndex,o=t.j,c=t.fill,u=t.pathFrom,h=t.pathTo,g=t.speed,m=t.delay,b=this.w,x=0;b.config.chart.animations.animateGradually.enabled&&(x=b.config.chart.animations.animateGradually.delay),b.config.chart.animations.dynamicAnimation.enabled&&b.globals.dataChanged&&b.config.chart.type!=="bar"&&(x=0),this.morphSVG(n,s,o,b.config.chart.type!=="line"||b.globals.comboCharts?c:"stroke",u,h,g,m*x)}},{key:"showDelayedElements",value:function(){this.w.globals.delayedElements.forEach(function(t){var n=t.el;n.classList.remove("apexcharts-element-hidden"),n.classList.add("apexcharts-hidden-element-shown")})}},{key:"animationCompleted",value:function(t){var n=this.w;n.globals.animationEnded||(n.globals.animationEnded=!0,this.showDelayedElements(),typeof n.config.chart.events.animationEnd=="function"&&n.config.chart.events.animationEnd(this.ctx,{el:t,w:n}))}},{key:"morphSVG",value:function(t,n,s,o,c,u,h,g){var m=this,b=this.w;c||(c=t.attr("pathFrom")),u||(u=t.attr("pathTo"));var x=function(w){return b.config.chart.type==="radar"&&(h=1),"M 0 ".concat(b.globals.gridHeight)};(!c||c.indexOf("undefined")>-1||c.indexOf("NaN")>-1)&&(c=x()),(!u||u.indexOf("undefined")>-1||u.indexOf("NaN")>-1)&&(u=x()),b.globals.shouldAnimate||(h=1),t.plot(c).animate(1,b.globals.easing,g).plot(c).animate(h,b.globals.easing,g).plot(u).afterAll(function(){L.isNumber(s)?s===b.globals.series[b.globals.maxValsInArrayIndex].length-2&&b.globals.shouldAnimate&&m.animationCompleted(t):o!=="none"&&b.globals.shouldAnimate&&(!b.globals.comboCharts&&n===b.globals.series.length-1||b.globals.comboCharts)&&m.animationCompleted(t),m.showDelayedElements()})}}]),D}(),Y=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w}return p(D,[{key:"getDefaultFilter",value:function(t,n){var s=this.w;t.unfilter(!0),new window.SVG.Filter().size("120%","180%","-5%","-40%"),s.config.states.normal.filter!=="none"?this.applyFilter(t,n,s.config.states.normal.filter.type,s.config.states.normal.filter.value):s.config.chart.dropShadow.enabled&&this.dropShadow(t,s.config.chart.dropShadow,n)}},{key:"addNormalFilter",value:function(t,n){var s=this.w;s.config.chart.dropShadow.enabled&&!t.node.classList.contains("apexcharts-marker")&&this.dropShadow(t,s.config.chart.dropShadow,n)}},{key:"addLightenFilter",value:function(t,n,s){var o=this,c=this.w,u=s.intensity;t.unfilter(!0),new window.SVG.Filter,t.filter(function(h){var g=c.config.chart.dropShadow;(g.enabled?o.addShadow(h,n,g):h).componentTransfer({rgb:{type:"linear",slope:1.5,intercept:u}})}),t.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(t.filterer.node)}},{key:"addDarkenFilter",value:function(t,n,s){var o=this,c=this.w,u=s.intensity;t.unfilter(!0),new window.SVG.Filter,t.filter(function(h){var g=c.config.chart.dropShadow;(g.enabled?o.addShadow(h,n,g):h).componentTransfer({rgb:{type:"linear",slope:u}})}),t.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(t.filterer.node)}},{key:"applyFilter",value:function(t,n,s){var o=arguments.length>3&&arguments[3]!==void 0?arguments[3]:.5;switch(s){case"none":this.addNormalFilter(t,n);break;case"lighten":this.addLightenFilter(t,n,{intensity:o});break;case"darken":this.addDarkenFilter(t,n,{intensity:o})}}},{key:"addShadow",value:function(t,n,s){var o=s.blur,c=s.top,u=s.left,h=s.color,g=s.opacity,m=t.flood(Array.isArray(h)?h[n]:h,g).composite(t.sourceAlpha,"in").offset(u,c).gaussianBlur(o).merge(t.source);return t.blend(t.source,m)}},{key:"dropShadow",value:function(t,n){var s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,o=n.top,c=n.left,u=n.blur,h=n.color,g=n.opacity,m=n.noUserSpaceOnUse,b=this.w;return t.unfilter(!0),L.isIE()&&b.config.chart.type==="radialBar"||(h=Array.isArray(h)?h[s]:h,t.filter(function(x){var w=null;w=L.isSafari()||L.isFirefox()||L.isIE()?x.flood(h,g).composite(x.sourceAlpha,"in").offset(c,o).gaussianBlur(u):x.flood(h,g).composite(x.sourceAlpha,"in").offset(c,o).gaussianBlur(u).merge(x.source),x.blend(x.source,w)}),m||t.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(t.filterer.node)),t}},{key:"setSelectionFilter",value:function(t,n,s){var o=this.w;if(o.globals.selectedDataPoints[n]!==void 0&&o.globals.selectedDataPoints[n].indexOf(s)>-1){t.node.setAttribute("selected",!0);var c=o.config.states.active.filter;c!=="none"&&this.applyFilter(t,n,c.type,c.value)}}},{key:"_scaleFilterSize",value:function(t){(function(n){for(var s in n)n.hasOwnProperty(s)&&t.setAttribute(s,n[s])})({width:"200%",height:"200%",x:"-50%",y:"-50%"})}}]),D}(),H=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w}return p(D,[{key:"roundPathCorners",value:function(t,n){function s(K,ae,re){var ge=ae.x-K.x,we=ae.y-K.y,xe=Math.sqrt(ge*ge+we*we);return o(K,ae,Math.min(1,re/xe))}function o(K,ae,re){return{x:K.x+(ae.x-K.x)*re,y:K.y+(ae.y-K.y)*re}}function c(K,ae){K.length>2&&(K[K.length-2]=ae.x,K[K.length-1]=ae.y)}function u(K){return{x:parseFloat(K[K.length-2]),y:parseFloat(K[K.length-1])}}t.indexOf("NaN")>-1&&(t="");var h=t.split(/[,\s]/).reduce(function(K,ae){var re=ae.match("([a-zA-Z])(.+)");return re?(K.push(re[1]),K.push(re[2])):K.push(ae),K},[]).reduce(function(K,ae){return parseFloat(ae)==ae&&K.length?K[K.length-1].push(ae):K.push([ae]),K},[]),g=[];if(h.length>1){var m=u(h[0]),b=null;h[h.length-1][0]=="Z"&&h[0].length>2&&(b=["L",m.x,m.y],h[h.length-1]=b),g.push(h[0]);for(var x=1;x2&&P[0]=="L"&&T.length>2&&T[0]=="L"){var V,O,N=u(w),G=u(P),v=u(T);V=s(G,N,n),O=s(G,v,n),c(P,V),P.origPoint=G,g.push(P);var S=o(V,G,.5),I=o(G,O,.5),z=["C",S.x,S.y,I.x,I.y,O.x,O.y];z.origPoint=G,g.push(z)}else g.push(P)}if(b){var U=u(g[g.length-1]);g.push(["Z"]),c(g[0],U)}}else g=h;return g.reduce(function(K,ae){return K+ae.join(" ")+" "},"")}},{key:"drawLine",value:function(t,n,s,o){var c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:"#a8a8a8",u=arguments.length>5&&arguments[5]!==void 0?arguments[5]:0,h=arguments.length>6&&arguments[6]!==void 0?arguments[6]:null,g=arguments.length>7&&arguments[7]!==void 0?arguments[7]:"butt";return this.w.globals.dom.Paper.line().attr({x1:t,y1:n,x2:s,y2:o,stroke:c,"stroke-dasharray":u,"stroke-width":h,"stroke-linecap":g})}},{key:"drawRect",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,o=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:0,u=arguments.length>5&&arguments[5]!==void 0?arguments[5]:"#fefefe",h=arguments.length>6&&arguments[6]!==void 0?arguments[6]:1,g=arguments.length>7&&arguments[7]!==void 0?arguments[7]:null,m=arguments.length>8&&arguments[8]!==void 0?arguments[8]:null,b=arguments.length>9&&arguments[9]!==void 0?arguments[9]:0,x=this.w.globals.dom.Paper.rect();return x.attr({x:t,y:n,width:s>0?s:0,height:o>0?o:0,rx:c,ry:c,opacity:h,"stroke-width":g!==null?g:0,stroke:m!==null?m:"none","stroke-dasharray":b}),x.node.setAttribute("fill",u),x}},{key:"drawPolygon",value:function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"#e1e1e1",s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1,o=arguments.length>3&&arguments[3]!==void 0?arguments[3]:"none";return this.w.globals.dom.Paper.polygon(t).attr({fill:o,stroke:n,"stroke-width":s})}},{key:"drawCircle",value:function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;t<0&&(t=0);var s=this.w.globals.dom.Paper.circle(2*t);return n!==null&&s.attr(n),s}},{key:"drawPath",value:function(t){var n=t.d,s=n===void 0?"":n,o=t.stroke,c=o===void 0?"#a8a8a8":o,u=t.strokeWidth,h=u===void 0?1:u,g=t.fill,m=t.fillOpacity,b=m===void 0?1:m,x=t.strokeOpacity,w=x===void 0?1:x,P=t.classes,T=t.strokeLinecap,V=T===void 0?null:T,O=t.strokeDashArray,N=O===void 0?0:O,G=this.w;return V===null&&(V=G.config.stroke.lineCap),(s.indexOf("undefined")>-1||s.indexOf("NaN")>-1)&&(s="M 0 ".concat(G.globals.gridHeight)),G.globals.dom.Paper.path(s).attr({fill:g,"fill-opacity":b,stroke:c,"stroke-opacity":w,"stroke-linecap":V,"stroke-width":h,"stroke-dasharray":N,class:P})}},{key:"group",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,n=this.w.globals.dom.Paper.group();return t!==null&&n.attr(t),n}},{key:"move",value:function(t,n){var s=["M",t,n].join(" ");return s}},{key:"line",value:function(t,n){var s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,o=null;return s===null?o=[" L",t,n].join(" "):s==="H"?o=[" H",t].join(" "):s==="V"&&(o=[" V",n].join(" ")),o}},{key:"curve",value:function(t,n,s,o,c,u){var h=["C",t,n,s,o,c,u].join(" ");return h}},{key:"quadraticCurve",value:function(t,n,s,o){return["Q",t,n,s,o].join(" ")}},{key:"arc",value:function(t,n,s,o,c,u,h){var g="A";arguments.length>7&&arguments[7]!==void 0&&arguments[7]&&(g="a");var m=[g,t,n,s,o,c,u,h].join(" ");return m}},{key:"renderPaths",value:function(t){var n,s=t.j,o=t.realIndex,c=t.pathFrom,u=t.pathTo,h=t.stroke,g=t.strokeWidth,m=t.strokeLinecap,b=t.fill,x=t.animationDelay,w=t.initialSpeed,P=t.dataChangeSpeed,T=t.className,V=t.shouldClipToGrid,O=V===void 0||V,N=t.bindEventsOnPaths,G=N===void 0||N,v=t.drawShadow,S=v===void 0||v,I=this.w,z=new Y(this.ctx),U=new q(this.ctx),K=this.w.config.chart.animations.enabled,ae=K&&this.w.config.chart.animations.dynamicAnimation.enabled,re=!!(K&&!I.globals.resized||ae&&I.globals.dataChanged&&I.globals.shouldAnimate);re?n=c:(n=u,I.globals.animationEnded=!0);var ge=I.config.stroke.dashArray,we=0;we=Array.isArray(ge)?ge[o]:I.config.stroke.dashArray;var xe=this.drawPath({d:n,stroke:h,strokeWidth:g,fill:b,fillOpacity:1,classes:T,strokeLinecap:m,strokeDashArray:we});if(xe.attr("index",o),O&&xe.attr({"clip-path":"url(#gridRectMask".concat(I.globals.cuid,")")}),I.config.states.normal.filter.type!=="none")z.getDefaultFilter(xe,o);else if(I.config.chart.dropShadow.enabled&&S&&(!I.config.chart.dropShadow.enabledOnSeries||I.config.chart.dropShadow.enabledOnSeries&&I.config.chart.dropShadow.enabledOnSeries.indexOf(o)!==-1)){var Ne=I.config.chart.dropShadow;z.dropShadow(xe,Ne,o)}G&&(xe.node.addEventListener("mouseenter",this.pathMouseEnter.bind(this,xe)),xe.node.addEventListener("mouseleave",this.pathMouseLeave.bind(this,xe)),xe.node.addEventListener("mousedown",this.pathMouseDown.bind(this,xe))),xe.attr({pathTo:u,pathFrom:c});var je={el:xe,j:s,realIndex:o,pathFrom:c,pathTo:u,fill:b,strokeWidth:g,delay:x};return!K||I.globals.resized||I.globals.dataChanged?!I.globals.resized&&I.globals.dataChanged||U.showDelayedElements():U.animatePathsGradually(r(r({},je),{},{speed:w})),I.globals.dataChanged&&ae&&re&&U.animatePathsGradually(r(r({},je),{},{speed:P})),xe}},{key:"drawPattern",value:function(t,n,s){var o=arguments.length>3&&arguments[3]!==void 0?arguments[3]:"#a8a8a8",c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:0;return this.w.globals.dom.Paper.pattern(n,s,function(u){t==="horizontalLines"?u.line(0,0,s,0).stroke({color:o,width:c+1}):t==="verticalLines"?u.line(0,0,0,n).stroke({color:o,width:c+1}):t==="slantedLines"?u.line(0,0,n,s).stroke({color:o,width:c}):t==="squares"?u.rect(n,s).fill("none").stroke({color:o,width:c}):t==="circles"&&u.circle(n).fill("none").stroke({color:o,width:c})})}},{key:"drawGradient",value:function(t,n,s,o,c){var u,h=arguments.length>5&&arguments[5]!==void 0?arguments[5]:null,g=arguments.length>6&&arguments[6]!==void 0?arguments[6]:null,m=arguments.length>7&&arguments[7]!==void 0?arguments[7]:null,b=arguments.length>8&&arguments[8]!==void 0?arguments[8]:0,x=this.w;n.length<9&&n.indexOf("#")===0&&(n=L.hexToRgba(n,o)),s.length<9&&s.indexOf("#")===0&&(s=L.hexToRgba(s,c));var w=0,P=1,T=1,V=null;g!==null&&(w=g[0]!==void 0?g[0]/100:0,P=g[1]!==void 0?g[1]/100:1,T=g[2]!==void 0?g[2]/100:1,V=g[3]!==void 0?g[3]/100:null);var O=!(x.config.chart.type!=="donut"&&x.config.chart.type!=="pie"&&x.config.chart.type!=="polarArea"&&x.config.chart.type!=="bubble");if(u=m===null||m.length===0?x.globals.dom.Paper.gradient(O?"radial":"linear",function(v){v.at(w,n,o),v.at(P,s,c),v.at(T,s,c),V!==null&&v.at(V,n,o)}):x.globals.dom.Paper.gradient(O?"radial":"linear",function(v){(Array.isArray(m[b])?m[b]:m).forEach(function(S){v.at(S.offset/100,S.color,S.opacity)})}),O){var N=x.globals.gridWidth/2,G=x.globals.gridHeight/2;x.config.chart.type!=="bubble"?u.attr({gradientUnits:"userSpaceOnUse",cx:N,cy:G,r:h}):u.attr({cx:.5,cy:.5,r:.8,fx:.2,fy:.2})}else t==="vertical"?u.from(0,0).to(0,1):t==="diagonal"?u.from(0,0).to(1,1):t==="horizontal"?u.from(0,1).to(1,1):t==="diagonal2"&&u.from(1,0).to(0,1);return u}},{key:"getTextBasedOnMaxWidth",value:function(t){var n=t.text,s=t.maxWidth,o=t.fontSize,c=t.fontFamily,u=this.getTextRects(n,o,c),h=u.width/n.length,g=Math.floor(s/h);return s-1){var g=s.globals.selectedDataPoints[c].indexOf(u);s.globals.selectedDataPoints[c].splice(g,1)}}else{if(!s.config.states.active.allowMultipleDataPointsSelection&&s.globals.selectedDataPoints.length>0){s.globals.selectedDataPoints=[];var m=s.globals.dom.Paper.select(".apexcharts-series path").members,b=s.globals.dom.Paper.select(".apexcharts-series circle, .apexcharts-series rect").members,x=function(T){Array.prototype.forEach.call(T,function(V){V.node.setAttribute("selected","false"),o.getDefaultFilter(V,c)})};x(m),x(b)}t.node.setAttribute("selected","true"),h="true",s.globals.selectedDataPoints[c]===void 0&&(s.globals.selectedDataPoints[c]=[]),s.globals.selectedDataPoints[c].push(u)}if(h==="true"){var w=s.config.states.active.filter;if(w!=="none")o.applyFilter(t,c,w.type,w.value);else if(s.config.states.hover.filter!=="none"&&!s.globals.isTouchDevice){var P=s.config.states.hover.filter;o.applyFilter(t,c,P.type,P.value)}}else s.config.states.active.filter.type!=="none"&&(s.config.states.hover.filter.type==="none"||s.globals.isTouchDevice?o.getDefaultFilter(t,c):(P=s.config.states.hover.filter,o.applyFilter(t,c,P.type,P.value)));typeof s.config.chart.events.dataPointSelection=="function"&&s.config.chart.events.dataPointSelection(n,this.ctx,{selectedDataPoints:s.globals.selectedDataPoints,seriesIndex:c,dataPointIndex:u,w:s}),n&&this.ctx.events.fireEvent("dataPointSelection",[n,this.ctx,{selectedDataPoints:s.globals.selectedDataPoints,seriesIndex:c,dataPointIndex:u,w:s}])}},{key:"rotateAroundCenter",value:function(t){var n={};return t&&typeof t.getBBox=="function"&&(n=t.getBBox()),{x:n.x+n.width/2,y:n.y+n.height/2}}},{key:"getTextRects",value:function(t,n,s,o){var c=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],u=this.w,h=this.drawText({x:-200,y:-200,text:t,textAnchor:"start",fontSize:n,fontFamily:s,foreColor:"#fff",opacity:0});o&&h.attr("transform",o),u.globals.dom.Paper.add(h);var g=h.bbox();return c||(g=h.node.getBoundingClientRect()),h.remove(),{width:g.width,height:g.height}}},{key:"placeTextWithEllipsis",value:function(t,n,s){if(typeof t.getComputedTextLength=="function"&&(t.textContent=n,n.length>0&&t.getComputedTextLength()>=s/1.1)){for(var o=n.length-3;o>0;o-=3)if(t.getSubStringLength(0,o)<=s/1.1)return void(t.textContent=n.substring(0,o)+"...");t.textContent="."}}}],[{key:"setAttrs",value:function(t,n){for(var s in n)n.hasOwnProperty(s)&&t.setAttribute(s,n[s])}}]),D}(),J=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w}return p(D,[{key:"getStackedSeriesTotals",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],n=this.w,s=[];if(n.globals.series.length===0)return s;for(var o=0;o0&&arguments[0]!==void 0?arguments[0]:null;return t===null?this.w.config.series.reduce(function(n,s){return n+s},0):this.w.globals.series[t].reduce(function(n,s){return n+s},0)}},{key:"isSeriesNull",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null;return(t===null?this.w.config.series.filter(function(n){return n!==null}):this.w.config.series[t].data.filter(function(n){return n!==null})).length===0}},{key:"seriesHaveSameValues",value:function(t){return this.w.globals.series[t].every(function(n,s,o){return n===o[0]})}},{key:"getCategoryLabels",value:function(t){var n=this.w,s=t.slice();return n.config.xaxis.convertedCatToNumeric&&(s=t.map(function(o,c){return n.config.xaxis.labels.formatter(o-n.globals.minX+1)})),s}},{key:"getLargestSeries",value:function(){var t=this.w;t.globals.maxValsInArrayIndex=t.globals.series.map(function(n){return n.length}).indexOf(Math.max.apply(Math,t.globals.series.map(function(n){return n.length})))}},{key:"getLargestMarkerSize",value:function(){var t=this.w,n=0;return t.globals.markers.size.forEach(function(s){n=Math.max(n,s)}),t.config.markers.discrete&&t.config.markers.discrete.length&&t.config.markers.discrete.forEach(function(s){n=Math.max(n,s.size)}),n>0&&(n+=t.config.markers.hover.sizeOffset+1),t.globals.markers.largestSize=n,n}},{key:"getSeriesTotals",value:function(){var t=this.w;t.globals.seriesTotals=t.globals.series.map(function(n,s){var o=0;if(Array.isArray(n))for(var c=0;ct&&s.globals.seriesX[c][h]0&&(n=!0),{comboBarCount:s,comboCharts:n}}},{key:"extendArrayProps",value:function(t,n,s){return n.yaxis&&(n=t.extendYAxis(n,s)),n.annotations&&(n.annotations.yaxis&&(n=t.extendYAxisAnnotations(n)),n.annotations.xaxis&&(n=t.extendXAxisAnnotations(n)),n.annotations.points&&(n=t.extendPointAnnotations(n))),n}}]),D}(),ee=function(){function D(t){d(this,D),this.w=t.w,this.annoCtx=t}return p(D,[{key:"setOrientations",value:function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,s=this.w;if(t.label.orientation==="vertical"){var o=n!==null?n:0,c=s.globals.dom.baseEl.querySelector(".apexcharts-xaxis-annotations .apexcharts-xaxis-annotation-label[rel='".concat(o,"']"));if(c!==null){var u=c.getBoundingClientRect();c.setAttribute("x",parseFloat(c.getAttribute("x"))-u.height+4),t.label.position==="top"?c.setAttribute("y",parseFloat(c.getAttribute("y"))+u.width):c.setAttribute("y",parseFloat(c.getAttribute("y"))-u.width);var h=this.annoCtx.graphics.rotateAroundCenter(c),g=h.x,m=h.y;c.setAttribute("transform","rotate(-90 ".concat(g," ").concat(m,")"))}}}},{key:"addBackgroundToAnno",value:function(t,n){var s=this.w;if(!t||n.label.text===void 0||n.label.text!==void 0&&!String(n.label.text).trim())return null;var o=s.globals.dom.baseEl.querySelector(".apexcharts-grid").getBoundingClientRect(),c=t.getBoundingClientRect(),u=n.label.style.padding.left,h=n.label.style.padding.right,g=n.label.style.padding.top,m=n.label.style.padding.bottom;n.label.orientation==="vertical"&&(g=n.label.style.padding.left,m=n.label.style.padding.right,u=n.label.style.padding.top,h=n.label.style.padding.bottom);var b=c.left-o.left-u,x=c.top-o.top-g,w=this.annoCtx.graphics.drawRect(b-s.globals.barPadForNumericAxis,x,c.width+u+h,c.height+g+m,n.label.borderRadius,n.label.style.background,1,n.label.borderWidth,n.label.borderColor,0);return n.id&&w.node.classList.add(n.id),w}},{key:"annotationsBackground",value:function(){var t=this,n=this.w,s=function(o,c,u){var h=n.globals.dom.baseEl.querySelector(".apexcharts-".concat(u,"-annotations .apexcharts-").concat(u,"-annotation-label[rel='").concat(c,"']"));if(h){var g=h.parentNode,m=t.addBackgroundToAnno(h,o);m&&(g.insertBefore(m.node,h),o.label.mouseEnter&&m.node.addEventListener("mouseenter",o.label.mouseEnter.bind(t,o)),o.label.mouseLeave&&m.node.addEventListener("mouseleave",o.label.mouseLeave.bind(t,o)),o.label.click&&m.node.addEventListener("click",o.label.click.bind(t,o)))}};n.config.annotations.xaxis.map(function(o,c){s(o,c,"xaxis")}),n.config.annotations.yaxis.map(function(o,c){s(o,c,"yaxis")}),n.config.annotations.points.map(function(o,c){s(o,c,"point")})}},{key:"getY1Y2",value:function(t,n){var s,o=t==="y1"?n.y:n.y2,c=this.w;if(this.annoCtx.invertAxis){var u=c.globals.labels.indexOf(o);c.config.xaxis.convertedCatToNumeric&&(u=c.globals.categoryLabels.indexOf(o));var h=c.globals.dom.baseEl.querySelector(".apexcharts-yaxis-texts-g text:nth-child("+(u+1)+")");h&&(s=parseFloat(h.getAttribute("y")))}else{var g;c.config.yaxis[n.yAxisIndex].logarithmic?g=(o=new J(this.annoCtx.ctx).getLogVal(o,n.yAxisIndex))/c.globals.yLogRatio[n.yAxisIndex]:g=(o-c.globals.minYArr[n.yAxisIndex])/(c.globals.yRange[n.yAxisIndex]/c.globals.gridHeight),s=c.globals.gridHeight-g,!n.marker||n.y!==void 0&&n.y!==null||(s=0),c.config.yaxis[n.yAxisIndex]&&c.config.yaxis[n.yAxisIndex].reversed&&(s=g)}return typeof o=="string"&&o.indexOf("px")>-1&&(s=parseFloat(o)),s}},{key:"getX1X2",value:function(t,n){var s=this.w,o=this.annoCtx.invertAxis?s.globals.minY:s.globals.minX,c=this.annoCtx.invertAxis?s.globals.maxY:s.globals.maxX,u=this.annoCtx.invertAxis?s.globals.yRange[0]:s.globals.xRange,h=(n.x-o)/(u/s.globals.gridWidth);this.annoCtx.inversedReversedAxis&&(h=(c-n.x)/(u/s.globals.gridWidth)),s.config.xaxis.type!=="category"&&!s.config.xaxis.convertedCatToNumeric||this.annoCtx.invertAxis||s.globals.dataFormatXNumeric||(h=this.getStringX(n.x));var g=(n.x2-o)/(u/s.globals.gridWidth);return this.annoCtx.inversedReversedAxis&&(g=(c-n.x2)/(u/s.globals.gridWidth)),s.config.xaxis.type!=="category"&&!s.config.xaxis.convertedCatToNumeric||this.annoCtx.invertAxis||s.globals.dataFormatXNumeric||(g=this.getStringX(n.x2)),n.x!==void 0&&n.x!==null||!n.marker||(h=s.globals.gridWidth),t==="x1"&&typeof n.x=="string"&&n.x.indexOf("px")>-1&&(h=parseFloat(n.x)),t==="x2"&&typeof n.x2=="string"&&n.x2.indexOf("px")>-1&&(g=parseFloat(n.x2)),t==="x1"?h:g}},{key:"getStringX",value:function(t){var n=this.w,s=t;n.config.xaxis.convertedCatToNumeric&&n.globals.categoryLabels.length&&(t=n.globals.categoryLabels.indexOf(t)+1);var o=n.globals.labels.indexOf(t),c=n.globals.dom.baseEl.querySelector(".apexcharts-xaxis-texts-g text:nth-child("+(o+1)+")");return c&&(s=parseFloat(c.getAttribute("x"))),s}}]),D}(),W=function(){function D(t){d(this,D),this.w=t.w,this.annoCtx=t,this.invertAxis=this.annoCtx.invertAxis,this.helpers=new ee(this.annoCtx)}return p(D,[{key:"addXaxisAnnotation",value:function(t,n,s){var o,c=this.w,u=this.helpers.getX1X2("x1",t),h=t.label.text,g=t.strokeDashArray;if(L.isNumber(u)){if(t.x2===null||t.x2===void 0){var m=this.annoCtx.graphics.drawLine(u+t.offsetX,0+t.offsetY,u+t.offsetX,c.globals.gridHeight+t.offsetY,t.borderColor,g,t.borderWidth);n.appendChild(m.node),t.id&&m.node.classList.add(t.id)}else{if((o=this.helpers.getX1X2("x2",t))h){var b=h;h=o,o=b}var x=this.annoCtx.graphics.drawRect(0+t.offsetX,o+t.offsetY,this._getYAxisAnnotationWidth(t),h-o,0,t.fillColor,t.opacity,1,t.borderColor,u);x.node.classList.add("apexcharts-annotation-rect"),x.attr("clip-path","url(#gridRectMask".concat(c.globals.cuid,")")),n.appendChild(x.node),t.id&&x.node.classList.add(t.id)}var w=t.label.position==="right"?c.globals.gridWidth:t.label.position==="center"?c.globals.gridWidth/2:0,P=this.annoCtx.graphics.drawText({x:w+t.label.offsetX,y:(o??h)+t.label.offsetY-3,text:g,textAnchor:t.label.textAnchor,fontSize:t.label.style.fontSize,fontFamily:t.label.style.fontFamily,fontWeight:t.label.style.fontWeight,foreColor:t.label.style.color,cssClass:"apexcharts-yaxis-annotation-label ".concat(t.label.style.cssClass," ").concat(t.id?t.id:"")});P.attr({rel:s}),n.appendChild(P.node)}},{key:"_getYAxisAnnotationWidth",value:function(t){var n=this.w;return n.globals.gridWidth,(t.width.indexOf("%")>-1?n.globals.gridWidth*parseInt(t.width,10)/100:parseInt(t.width,10))+t.offsetX}},{key:"drawYAxisAnnotations",value:function(){var t=this,n=this.w,s=this.annoCtx.graphics.group({class:"apexcharts-yaxis-annotations"});return n.config.annotations.yaxis.map(function(o,c){t.addYaxisAnnotation(o,s.node,c)}),s}}]),D}(),Q=function(){function D(t){d(this,D),this.w=t.w,this.annoCtx=t,this.helpers=new ee(this.annoCtx)}return p(D,[{key:"addPointAnnotation",value:function(t,n,s){this.w;var o=this.helpers.getX1X2("x1",t),c=this.helpers.getY1Y2("y1",t);if(L.isNumber(o)){var u={pSize:t.marker.size,pointStrokeWidth:t.marker.strokeWidth,pointFillColor:t.marker.fillColor,pointStrokeColor:t.marker.strokeColor,shape:t.marker.shape,pRadius:t.marker.radius,class:"apexcharts-point-annotation-marker ".concat(t.marker.cssClass," ").concat(t.id?t.id:"")},h=this.annoCtx.graphics.drawMarker(o+t.marker.offsetX,c+t.marker.offsetY,u);n.appendChild(h.node);var g=t.label.text?t.label.text:"",m=this.annoCtx.graphics.drawText({x:o+t.label.offsetX,y:c+t.label.offsetY-t.marker.size-parseFloat(t.label.style.fontSize)/1.6,text:g,textAnchor:t.label.textAnchor,fontSize:t.label.style.fontSize,fontFamily:t.label.style.fontFamily,fontWeight:t.label.style.fontWeight,foreColor:t.label.style.color,cssClass:"apexcharts-point-annotation-label ".concat(t.label.style.cssClass," ").concat(t.id?t.id:"")});if(m.attr({rel:s}),n.appendChild(m.node),t.customSVG.SVG){var b=this.annoCtx.graphics.group({class:"apexcharts-point-annotations-custom-svg "+t.customSVG.cssClass});b.attr({transform:"translate(".concat(o+t.customSVG.offsetX,", ").concat(c+t.customSVG.offsetY,")")}),b.node.innerHTML=t.customSVG.SVG,n.appendChild(b.node)}if(t.image.path){var x=t.image.width?t.image.width:20,w=t.image.height?t.image.height:20;h=this.annoCtx.addImage({x:o+t.image.offsetX-x/2,y:c+t.image.offsetY-w/2,width:x,height:w,path:t.image.path,appendTo:".apexcharts-point-annotations"})}t.mouseEnter&&h.node.addEventListener("mouseenter",t.mouseEnter.bind(this,t)),t.mouseLeave&&h.node.addEventListener("mouseleave",t.mouseLeave.bind(this,t)),t.click&&h.node.addEventListener("click",t.click.bind(this,t))}}},{key:"drawPointAnnotations",value:function(){var t=this,n=this.w,s=this.annoCtx.graphics.group({class:"apexcharts-point-annotations"});return n.config.annotations.points.map(function(o,c){t.addPointAnnotation(o,s.node,c)}),s}}]),D}(),ie={name:"en",options:{months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],toolbar:{exportToSVG:"Download SVG",exportToPNG:"Download PNG",exportToCSV:"Download CSV",menu:"Menu",selection:"Selection",selectionZoom:"Selection Zoom",zoomIn:"Zoom In",zoomOut:"Zoom Out",pan:"Panning",reset:"Reset Zoom"}}},ne=function(){function D(){d(this,D),this.yAxis={show:!0,showAlways:!1,showForNullSeries:!0,seriesName:void 0,opposite:!1,reversed:!1,logarithmic:!1,logBase:10,tickAmount:void 0,forceNiceScale:!1,max:void 0,min:void 0,floating:!1,decimalsInFloat:void 0,labels:{show:!0,minWidth:0,maxWidth:160,offsetX:0,offsetY:0,align:void 0,rotate:0,padding:20,style:{colors:[],fontSize:"11px",fontWeight:400,fontFamily:void 0,cssClass:""},formatter:void 0},axisBorder:{show:!1,color:"#e0e0e0",width:1,offsetX:0,offsetY:0},axisTicks:{show:!1,color:"#e0e0e0",width:6,offsetX:0,offsetY:0},title:{text:void 0,rotate:-90,offsetY:0,offsetX:0,style:{color:void 0,fontSize:"11px",fontWeight:900,fontFamily:void 0,cssClass:""}},tooltip:{enabled:!1,offsetX:0},crosshairs:{show:!0,position:"front",stroke:{color:"#b6b6b6",width:1,dashArray:0}}},this.pointAnnotation={id:void 0,x:0,y:null,yAxisIndex:0,seriesIndex:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,marker:{size:4,fillColor:"#fff",strokeWidth:2,strokeColor:"#333",shape:"circle",offsetX:0,offsetY:0,radius:2,cssClass:""},label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",offsetX:0,offsetY:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}},customSVG:{SVG:void 0,cssClass:void 0,offsetX:0,offsetY:0},image:{path:void 0,width:20,height:20,offsetX:0,offsetY:0}},this.yAxisAnnotation={id:void 0,y:0,y2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,width:"100%",yAxisIndex:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"end",position:"right",offsetX:0,offsetY:-3,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.xAxisAnnotation={id:void 0,x:0,x2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",orientation:"vertical",position:"top",offsetX:0,offsetY:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.text={x:0,y:0,text:"",textAnchor:"start",foreColor:void 0,fontSize:"13px",fontFamily:void 0,fontWeight:400,appendTo:".apexcharts-annotations",backgroundColor:"transparent",borderColor:"#c2c2c2",borderRadius:0,borderWidth:0,paddingLeft:4,paddingRight:4,paddingTop:2,paddingBottom:2}}return p(D,[{key:"init",value:function(){return{annotations:{yaxis:[this.yAxisAnnotation],xaxis:[this.xAxisAnnotation],points:[this.pointAnnotation],texts:[],images:[],shapes:[]},chart:{animations:{enabled:!0,easing:"easeinout",speed:800,animateGradually:{delay:150,enabled:!0},dynamicAnimation:{enabled:!0,speed:350}},background:"transparent",locales:[ie],defaultLocale:"en",dropShadow:{enabled:!1,enabledOnSeries:void 0,top:2,left:2,blur:4,color:"#000",opacity:.35},events:{animationEnd:void 0,beforeMount:void 0,mounted:void 0,updated:void 0,click:void 0,mouseMove:void 0,mouseLeave:void 0,xAxisLabelClick:void 0,legendClick:void 0,markerClick:void 0,selection:void 0,dataPointSelection:void 0,dataPointMouseEnter:void 0,dataPointMouseLeave:void 0,beforeZoom:void 0,beforeResetZoom:void 0,zoomed:void 0,scrolled:void 0,brushScrolled:void 0},foreColor:"#373d3f",fontFamily:"Helvetica, Arial, sans-serif",height:"auto",parentHeightOffset:15,redrawOnParentResize:!0,redrawOnWindowResize:!0,id:void 0,group:void 0,offsetX:0,offsetY:0,selection:{enabled:!1,type:"x",fill:{color:"#24292e",opacity:.1},stroke:{width:1,color:"#24292e",opacity:.4,dashArray:3},xaxis:{min:void 0,max:void 0},yaxis:{min:void 0,max:void 0}},sparkline:{enabled:!1},brush:{enabled:!1,autoScaleYaxis:!0,target:void 0,targets:void 0},stacked:!1,stackType:"normal",toolbar:{show:!0,offsetX:0,offsetY:0,tools:{download:!0,selection:!0,zoom:!0,zoomin:!0,zoomout:!0,pan:!0,reset:!0,customIcons:[]},export:{csv:{filename:void 0,columnDelimiter:",",headerCategory:"category",headerValue:"value",dateFormatter:function(t){return new Date(t).toDateString()}},png:{filename:void 0},svg:{filename:void 0}},autoSelected:"zoom"},type:"line",width:"100%",zoom:{enabled:!0,type:"x",autoScaleYaxis:!1,zoomedArea:{fill:{color:"#90CAF9",opacity:.4},stroke:{color:"#0D47A1",opacity:.4,width:1}}}},plotOptions:{area:{fillTo:"origin"},bar:{horizontal:!1,columnWidth:"70%",barHeight:"70%",distributed:!1,borderRadius:0,borderRadiusApplication:"around",borderRadiusWhenStacked:"last",rangeBarOverlap:!0,rangeBarGroupRows:!1,hideZeroBarsWhenGrouped:!1,isDumbbell:!1,dumbbellColors:void 0,isFunnel:!1,isFunnel3d:!0,colors:{ranges:[],backgroundBarColors:[],backgroundBarOpacity:1,backgroundBarRadius:0},dataLabels:{position:"top",maxItems:100,hideOverflowingLabels:!0,orientation:"horizontal",total:{enabled:!1,formatter:void 0,offsetX:0,offsetY:0,style:{color:"#373d3f",fontSize:"12px",fontFamily:void 0,fontWeight:600}}}},bubble:{zScaling:!0,minBubbleRadius:void 0,maxBubbleRadius:void 0},candlestick:{colors:{upward:"#00B746",downward:"#EF403C"},wick:{useFillColor:!0}},boxPlot:{colors:{upper:"#00E396",lower:"#008FFB"}},heatmap:{radius:2,enableShades:!0,shadeIntensity:.5,reverseNegativeShade:!1,distributed:!1,useFillColorAsStroke:!1,colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},treemap:{enableShades:!0,shadeIntensity:.5,distributed:!1,reverseNegativeShade:!1,useFillColorAsStroke:!1,dataLabels:{format:"scale"},colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},radialBar:{inverseOrder:!1,startAngle:0,endAngle:360,offsetX:0,offsetY:0,hollow:{margin:5,size:"50%",background:"transparent",image:void 0,imageWidth:150,imageHeight:150,imageOffsetX:0,imageOffsetY:0,imageClipped:!0,position:"front",dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},track:{show:!0,startAngle:void 0,endAngle:void 0,background:"#f2f2f2",strokeWidth:"97%",opacity:1,margin:5,dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},dataLabels:{show:!0,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:0,formatter:function(t){return t}},value:{show:!0,fontSize:"14px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:16,formatter:function(t){return t+"%"}},total:{show:!1,label:"Total",fontSize:"16px",fontWeight:600,fontFamily:void 0,color:void 0,formatter:function(t){return t.globals.seriesTotals.reduce(function(n,s){return n+s},0)/t.globals.series.length+"%"}}}},pie:{customScale:1,offsetX:0,offsetY:0,startAngle:0,endAngle:360,expandOnClick:!0,dataLabels:{offset:0,minAngleToShowLabel:10},donut:{size:"65%",background:"transparent",labels:{show:!1,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:-10,formatter:function(t){return t}},value:{show:!0,fontSize:"20px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:10,formatter:function(t){return t}},total:{show:!1,showAlways:!1,label:"Total",fontSize:"16px",fontWeight:400,fontFamily:void 0,color:void 0,formatter:function(t){return t.globals.seriesTotals.reduce(function(n,s){return n+s},0)}}}}},polarArea:{rings:{strokeWidth:1,strokeColor:"#e8e8e8"},spokes:{strokeWidth:1,connectorColors:"#e8e8e8"}},radar:{size:void 0,offsetX:0,offsetY:0,polygons:{strokeWidth:1,strokeColors:"#e8e8e8",connectorColors:"#e8e8e8",fill:{colors:void 0}}}},colors:void 0,dataLabels:{enabled:!0,enabledOnSeries:void 0,formatter:function(t){return t!==null?t:""},textAnchor:"middle",distributed:!1,offsetX:0,offsetY:0,style:{fontSize:"12px",fontFamily:void 0,fontWeight:600,colors:void 0},background:{enabled:!0,foreColor:"#fff",borderRadius:2,padding:4,opacity:.9,borderWidth:1,borderColor:"#fff",dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},fill:{type:"solid",colors:void 0,opacity:.85,gradient:{shade:"dark",type:"horizontal",shadeIntensity:.5,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[0,50,100],colorStops:[]},image:{src:[],width:void 0,height:void 0},pattern:{style:"squares",width:6,height:6,strokeWidth:2}},forecastDataPoints:{count:0,fillOpacity:.5,strokeWidth:void 0,dashArray:4},grid:{show:!0,borderColor:"#e0e0e0",strokeDashArray:0,position:"back",xaxis:{lines:{show:!1}},yaxis:{lines:{show:!0}},row:{colors:void 0,opacity:.5},column:{colors:void 0,opacity:.5},padding:{top:0,right:10,bottom:0,left:12}},labels:[],legend:{show:!0,showForSingleSeries:!1,showForNullSeries:!0,showForZeroSeries:!0,floating:!1,position:"bottom",horizontalAlign:"center",inverseOrder:!1,fontSize:"12px",fontFamily:void 0,fontWeight:400,width:void 0,height:void 0,formatter:void 0,tooltipHoverFormatter:void 0,offsetX:-20,offsetY:4,customLegendItems:[],labels:{colors:void 0,useSeriesColors:!1},markers:{width:12,height:12,strokeWidth:0,fillColors:void 0,strokeColor:"#fff",radius:12,customHTML:void 0,offsetX:0,offsetY:0,onClick:void 0},itemMargin:{horizontal:5,vertical:2},onItemClick:{toggleDataSeries:!0},onItemHover:{highlightDataSeries:!0}},markers:{discrete:[],size:0,colors:void 0,strokeColors:"#fff",strokeWidth:2,strokeOpacity:.9,strokeDashArray:0,fillOpacity:1,shape:"circle",width:8,height:8,radius:2,offsetX:0,offsetY:0,onClick:void 0,onDblClick:void 0,showNullDataPoints:!0,hover:{size:void 0,sizeOffset:3}},noData:{text:void 0,align:"center",verticalAlign:"middle",offsetX:0,offsetY:0,style:{color:void 0,fontSize:"14px",fontFamily:void 0}},responsive:[],series:void 0,states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"lighten",value:.1}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"darken",value:.5}}},title:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:0,floating:!1,style:{fontSize:"14px",fontWeight:900,fontFamily:void 0,color:void 0}},subtitle:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:30,floating:!1,style:{fontSize:"12px",fontWeight:400,fontFamily:void 0,color:void 0}},stroke:{show:!0,curve:"smooth",lineCap:"butt",width:2,colors:void 0,dashArray:0,fill:{type:"solid",colors:void 0,opacity:.85,gradient:{shade:"dark",type:"horizontal",shadeIntensity:.5,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[0,50,100],colorStops:[]}}},tooltip:{enabled:!0,enabledOnSeries:void 0,shared:!0,followCursor:!1,intersect:!1,inverseOrder:!1,custom:void 0,fillSeriesColor:!1,theme:"light",cssClass:"",style:{fontSize:"12px",fontFamily:void 0},onDatasetHover:{highlightDataSeries:!1},x:{show:!0,format:"dd MMM",formatter:void 0},y:{formatter:void 0,title:{formatter:function(t){return t?t+": ":""}}},z:{formatter:void 0,title:"Size: "},marker:{show:!0,fillColors:void 0},items:{display:"flex"},fixed:{enabled:!1,position:"topRight",offsetX:0,offsetY:0}},xaxis:{type:"category",categories:[],convertedCatToNumeric:!1,offsetX:0,offsetY:0,overwriteCategories:void 0,labels:{show:!0,rotate:-45,rotateAlways:!1,hideOverlappingLabels:!0,trim:!1,minHeight:void 0,maxHeight:120,showDuplicates:!0,style:{colors:[],fontSize:"12px",fontWeight:400,fontFamily:void 0,cssClass:""},offsetX:0,offsetY:0,format:void 0,formatter:void 0,datetimeUTC:!0,datetimeFormatter:{year:"yyyy",month:"MMM 'yy",day:"dd MMM",hour:"HH:mm",minute:"HH:mm:ss",second:"HH:mm:ss"}},group:{groups:[],style:{colors:[],fontSize:"12px",fontWeight:400,fontFamily:void 0,cssClass:""}},axisBorder:{show:!0,color:"#e0e0e0",width:"100%",height:1,offsetX:0,offsetY:0},axisTicks:{show:!0,color:"#e0e0e0",height:6,offsetX:0,offsetY:0},tickAmount:void 0,tickPlacement:"on",min:void 0,max:void 0,range:void 0,floating:!1,decimalsInFloat:void 0,position:"bottom",title:{text:void 0,offsetX:0,offsetY:0,style:{color:void 0,fontSize:"12px",fontWeight:900,fontFamily:void 0,cssClass:""}},crosshairs:{show:!0,width:1,position:"back",opacity:.9,stroke:{color:"#b6b6b6",width:1,dashArray:3},fill:{type:"solid",color:"#B1B9C4",gradient:{colorFrom:"#D8E3F0",colorTo:"#BED1E6",stops:[0,100],opacityFrom:.4,opacityTo:.5}},dropShadow:{enabled:!1,left:0,top:0,blur:1,opacity:.4}},tooltip:{enabled:!0,offsetY:0,formatter:void 0,style:{fontSize:"12px",fontFamily:void 0}}},yaxis:this.yAxis,theme:{mode:"light",palette:"palette1",monochrome:{enabled:!1,color:"#008FFB",shadeTo:"light",shadeIntensity:.65}}}}}]),D}(),oe=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w,this.graphics=new H(this.ctx),this.w.globals.isBarHorizontal&&(this.invertAxis=!0),this.helpers=new ee(this),this.xAxisAnnotations=new W(this),this.yAxisAnnotations=new j(this),this.pointsAnnotations=new Q(this),this.w.globals.isBarHorizontal&&this.w.config.yaxis[0].reversed&&(this.inversedReversedAxis=!0),this.xDivision=this.w.globals.gridWidth/this.w.globals.dataPoints}return p(D,[{key:"drawAxesAnnotations",value:function(){var t=this.w;if(t.globals.axisCharts){for(var n=this.yAxisAnnotations.drawYAxisAnnotations(),s=this.xAxisAnnotations.drawXAxisAnnotations(),o=this.pointsAnnotations.drawPointAnnotations(),c=t.config.chart.animations.enabled,u=[n,s,o],h=[s.node,n.node,o.node],g=0;g<3;g++)t.globals.dom.elGraphical.add(u[g]),!c||t.globals.resized||t.globals.dataChanged||t.config.chart.type!=="scatter"&&t.config.chart.type!=="bubble"&&t.globals.dataPoints>1&&h[g].classList.add("apexcharts-element-hidden"),t.globals.delayedElements.push({el:h[g],index:0});this.helpers.annotationsBackground()}}},{key:"drawImageAnnos",value:function(){var t=this;this.w.config.annotations.images.map(function(n,s){t.addImage(n,s)})}},{key:"drawTextAnnos",value:function(){var t=this;this.w.config.annotations.texts.map(function(n,s){t.addText(n,s)})}},{key:"addXaxisAnnotation",value:function(t,n,s){this.xAxisAnnotations.addXaxisAnnotation(t,n,s)}},{key:"addYaxisAnnotation",value:function(t,n,s){this.yAxisAnnotations.addYaxisAnnotation(t,n,s)}},{key:"addPointAnnotation",value:function(t,n,s){this.pointsAnnotations.addPointAnnotation(t,n,s)}},{key:"addText",value:function(t,n){var s=t.x,o=t.y,c=t.text,u=t.textAnchor,h=t.foreColor,g=t.fontSize,m=t.fontFamily,b=t.fontWeight,x=t.cssClass,w=t.backgroundColor,P=t.borderWidth,T=t.strokeDashArray,V=t.borderRadius,O=t.borderColor,N=t.appendTo,G=N===void 0?".apexcharts-annotations":N,v=t.paddingLeft,S=v===void 0?4:v,I=t.paddingRight,z=I===void 0?4:I,U=t.paddingBottom,K=U===void 0?2:U,ae=t.paddingTop,re=ae===void 0?2:ae,ge=this.w,we=this.graphics.drawText({x:s,y:o,text:c,textAnchor:u||"start",fontSize:g||"12px",fontWeight:b||"regular",fontFamily:m||ge.config.chart.fontFamily,foreColor:h||ge.config.chart.foreColor,cssClass:x}),xe=ge.globals.dom.baseEl.querySelector(G);xe&&xe.appendChild(we.node);var Ne=we.bbox();if(c){var je=this.graphics.drawRect(Ne.x-S,Ne.y-re,Ne.width+S+z,Ne.height+K+re,V,w||"transparent",1,P,O,T);xe.insertBefore(je.node,we.node)}}},{key:"addImage",value:function(t,n){var s=this.w,o=t.path,c=t.x,u=c===void 0?0:c,h=t.y,g=h===void 0?0:h,m=t.width,b=m===void 0?20:m,x=t.height,w=x===void 0?20:x,P=t.appendTo,T=P===void 0?".apexcharts-annotations":P,V=s.globals.dom.Paper.image(o);V.size(b,w).move(u,g);var O=s.globals.dom.baseEl.querySelector(T);return O&&O.appendChild(V.node),V}},{key:"addXaxisAnnotationExternal",value:function(t,n,s){return this.addAnnotationExternal({params:t,pushToMemory:n,context:s,type:"xaxis",contextMethod:s.addXaxisAnnotation}),s}},{key:"addYaxisAnnotationExternal",value:function(t,n,s){return this.addAnnotationExternal({params:t,pushToMemory:n,context:s,type:"yaxis",contextMethod:s.addYaxisAnnotation}),s}},{key:"addPointAnnotationExternal",value:function(t,n,s){return this.invertAxis===void 0&&(this.invertAxis=s.w.globals.isBarHorizontal),this.addAnnotationExternal({params:t,pushToMemory:n,context:s,type:"point",contextMethod:s.addPointAnnotation}),s}},{key:"addAnnotationExternal",value:function(t){var n=t.params,s=t.pushToMemory,o=t.context,c=t.type,u=t.contextMethod,h=o,g=h.w,m=g.globals.dom.baseEl.querySelector(".apexcharts-".concat(c,"-annotations")),b=m.childNodes.length+1,x=new ne,w=Object.assign({},c==="xaxis"?x.xAxisAnnotation:c==="yaxis"?x.yAxisAnnotation:x.pointAnnotation),P=L.extend(w,n);switch(c){case"xaxis":this.addXaxisAnnotation(P,m,b);break;case"yaxis":this.addYaxisAnnotation(P,m,b);break;case"point":this.addPointAnnotation(P,m,b)}var T=g.globals.dom.baseEl.querySelector(".apexcharts-".concat(c,"-annotations .apexcharts-").concat(c,"-annotation-label[rel='").concat(b,"']")),V=this.helpers.addBackgroundToAnno(T,P);return V&&m.insertBefore(V.node,T),s&&g.globals.memory.methodsToExec.push({context:h,id:P.id?P.id:L.randomId(),method:u,label:"addAnnotation",params:n}),o}},{key:"clearAnnotations",value:function(t){var n=t.w,s=n.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis-annotations, .apexcharts-xaxis-annotations, .apexcharts-point-annotations");n.globals.memory.methodsToExec.map(function(o,c){o.label!=="addText"&&o.label!=="addAnnotation"||n.globals.memory.methodsToExec.splice(c,1)}),s=L.listToArray(s),Array.prototype.forEach.call(s,function(o){for(;o.firstChild;)o.removeChild(o.firstChild)})}},{key:"removeAnnotation",value:function(t,n){var s=t.w,o=s.globals.dom.baseEl.querySelectorAll(".".concat(n));o&&(s.globals.memory.methodsToExec.map(function(c,u){c.id===n&&s.globals.memory.methodsToExec.splice(u,1)}),Array.prototype.forEach.call(o,function(c){c.parentElement.removeChild(c)}))}}]),D}(),le=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w,this.months31=[1,3,5,7,8,10,12],this.months30=[2,4,6,9,11],this.daysCntOfYear=[0,31,59,90,120,151,181,212,243,273,304,334]}return p(D,[{key:"isValidDate",value:function(t){return!isNaN(this.parseDate(t))}},{key:"getTimeStamp",value:function(t){return Date.parse(t)?this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(t).toISOString().substr(0,25)).getTime():new Date(t).getTime():t}},{key:"getDate",value:function(t){return this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(t).toUTCString()):new Date(t)}},{key:"parseDate",value:function(t){var n=Date.parse(t);if(!isNaN(n))return this.getTimeStamp(t);var s=Date.parse(t.replace(/-/g,"/").replace(/[a-z]+/gi," "));return s=this.getTimeStamp(s)}},{key:"parseDateWithTimezone",value:function(t){return Date.parse(t.replace(/-/g,"/").replace(/[a-z]+/gi," "))}},{key:"formatDate",value:function(t,n){var s=this.w.globals.locale,o=this.w.config.xaxis.labels.datetimeUTC,c=["\0"].concat(F(s.months)),u=[""].concat(F(s.shortMonths)),h=[""].concat(F(s.days)),g=[""].concat(F(s.shortDays));function m(K,ae){var re=K+"";for(ae=ae||2;re.length12?P-12:P===0?12:P;n=(n=(n=(n=n.replace(/(^|[^\\])HH+/g,"$1"+m(P))).replace(/(^|[^\\])H/g,"$1"+P)).replace(/(^|[^\\])hh+/g,"$1"+m(T))).replace(/(^|[^\\])h/g,"$1"+T);var V=o?t.getUTCMinutes():t.getMinutes();n=(n=n.replace(/(^|[^\\])mm+/g,"$1"+m(V))).replace(/(^|[^\\])m/g,"$1"+V);var O=o?t.getUTCSeconds():t.getSeconds();n=(n=n.replace(/(^|[^\\])ss+/g,"$1"+m(O))).replace(/(^|[^\\])s/g,"$1"+O);var N=o?t.getUTCMilliseconds():t.getMilliseconds();n=n.replace(/(^|[^\\])fff+/g,"$1"+m(N,3)),N=Math.round(N/10),n=n.replace(/(^|[^\\])ff/g,"$1"+m(N)),N=Math.round(N/10);var G=P<12?"AM":"PM";n=(n=(n=n.replace(/(^|[^\\])f/g,"$1"+N)).replace(/(^|[^\\])TT+/g,"$1"+G)).replace(/(^|[^\\])T/g,"$1"+G.charAt(0));var v=G.toLowerCase();n=(n=n.replace(/(^|[^\\])tt+/g,"$1"+v)).replace(/(^|[^\\])t/g,"$1"+v.charAt(0));var S=-t.getTimezoneOffset(),I=o||!S?"Z":S>0?"+":"-";if(!o){var z=(S=Math.abs(S))%60;I+=m(Math.floor(S/60))+":"+m(z)}n=n.replace(/(^|[^\\])K/g,"$1"+I);var U=(o?t.getUTCDay():t.getDay())+1;return n=(n=(n=(n=(n=n.replace(new RegExp(h[0],"g"),h[U])).replace(new RegExp(g[0],"g"),g[U])).replace(new RegExp(c[0],"g"),c[x])).replace(new RegExp(u[0],"g"),u[x])).replace(/\\(.)/g,"$1")}},{key:"getTimeUnitsfromTimestamp",value:function(t,n,s){var o=this.w;o.config.xaxis.min!==void 0&&(t=o.config.xaxis.min),o.config.xaxis.max!==void 0&&(n=o.config.xaxis.max);var c=this.getDate(t),u=this.getDate(n),h=this.formatDate(c,"yyyy MM dd HH mm ss fff").split(" "),g=this.formatDate(u,"yyyy MM dd HH mm ss fff").split(" ");return{minMillisecond:parseInt(h[6],10),maxMillisecond:parseInt(g[6],10),minSecond:parseInt(h[5],10),maxSecond:parseInt(g[5],10),minMinute:parseInt(h[4],10),maxMinute:parseInt(g[4],10),minHour:parseInt(h[3],10),maxHour:parseInt(g[3],10),minDate:parseInt(h[2],10),maxDate:parseInt(g[2],10),minMonth:parseInt(h[1],10)-1,maxMonth:parseInt(g[1],10)-1,minYear:parseInt(h[0],10),maxYear:parseInt(g[0],10)}}},{key:"isLeapYear",value:function(t){return t%4==0&&t%100!=0||t%400==0}},{key:"calculcateLastDaysOfMonth",value:function(t,n,s){return this.determineDaysOfMonths(t,n)-s}},{key:"determineDaysOfYear",value:function(t){var n=365;return this.isLeapYear(t)&&(n=366),n}},{key:"determineRemainingDaysOfYear",value:function(t,n,s){var o=this.daysCntOfYear[n]+s;return n>1&&this.isLeapYear()&&o++,o}},{key:"determineDaysOfMonths",value:function(t,n){var s=30;switch(t=L.monthMod(t),!0){case this.months30.indexOf(t)>-1:t===2&&(s=this.isLeapYear(n)?29:28);break;case this.months31.indexOf(t)>-1:default:s=31}return s}}]),D}(),Ce=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w,this.tooltipKeyFormat="dd MMM"}return p(D,[{key:"xLabelFormat",value:function(t,n,s,o){var c=this.w;if(c.config.xaxis.type==="datetime"&&c.config.xaxis.labels.formatter===void 0&&c.config.tooltip.x.formatter===void 0){var u=new le(this.ctx);return u.formatDate(u.getDate(n),c.config.tooltip.x.format)}return t(n,s,o)}},{key:"defaultGeneralFormatter",value:function(t){return Array.isArray(t)?t.map(function(n){return n}):t}},{key:"defaultYFormatter",value:function(t,n,s){var o=this.w;return L.isNumber(t)&&(t=o.globals.yValueDecimal!==0?t.toFixed(n.decimalsInFloat!==void 0?n.decimalsInFloat:o.globals.yValueDecimal):o.globals.maxYArr[s]-o.globals.minYArr[s]<5?t.toFixed(1):t.toFixed(0)),t}},{key:"setLabelFormatters",value:function(){var t=this,n=this.w;return n.globals.xaxisTooltipFormatter=function(s){return t.defaultGeneralFormatter(s)},n.globals.ttKeyFormatter=function(s){return t.defaultGeneralFormatter(s)},n.globals.ttZFormatter=function(s){return s},n.globals.legendFormatter=function(s){return t.defaultGeneralFormatter(s)},n.config.xaxis.labels.formatter!==void 0?n.globals.xLabelFormatter=n.config.xaxis.labels.formatter:n.globals.xLabelFormatter=function(s){if(L.isNumber(s)){if(!n.config.xaxis.convertedCatToNumeric&&n.config.xaxis.type==="numeric"){if(L.isNumber(n.config.xaxis.decimalsInFloat))return s.toFixed(n.config.xaxis.decimalsInFloat);var o=n.globals.maxX-n.globals.minX;return o>0&&o<100?s.toFixed(1):s.toFixed(0)}return n.globals.isBarHorizontal&&n.globals.maxY-n.globals.minYArr<4?s.toFixed(1):s.toFixed(0)}return s},typeof n.config.tooltip.x.formatter=="function"?n.globals.ttKeyFormatter=n.config.tooltip.x.formatter:n.globals.ttKeyFormatter=n.globals.xLabelFormatter,typeof n.config.xaxis.tooltip.formatter=="function"&&(n.globals.xaxisTooltipFormatter=n.config.xaxis.tooltip.formatter),(Array.isArray(n.config.tooltip.y)||n.config.tooltip.y.formatter!==void 0)&&(n.globals.ttVal=n.config.tooltip.y),n.config.tooltip.z.formatter!==void 0&&(n.globals.ttZFormatter=n.config.tooltip.z.formatter),n.config.legend.formatter!==void 0&&(n.globals.legendFormatter=n.config.legend.formatter),n.config.yaxis.forEach(function(s,o){s.labels.formatter!==void 0?n.globals.yLabelFormatters[o]=s.labels.formatter:n.globals.yLabelFormatters[o]=function(c){return n.globals.xyCharts?Array.isArray(c)?c.map(function(u){return t.defaultYFormatter(u,s,o)}):t.defaultYFormatter(c,s,o):c}}),n.globals}},{key:"heatmapLabelFormatters",value:function(){var t=this.w;if(t.config.chart.type==="heatmap"){t.globals.yAxisScale[0].result=t.globals.seriesNames.slice();var n=t.globals.seriesNames.reduce(function(s,o){return s.length>o.length?s:o},0);t.globals.yAxisScale[0].niceMax=n,t.globals.yAxisScale[0].niceMin=n}}}]),D}(),ye=function(D){var t,n=D.isTimeline,s=D.ctx,o=D.seriesIndex,c=D.dataPointIndex,u=D.y1,h=D.y2,g=D.w,m=g.globals.seriesRangeStart[o][c],b=g.globals.seriesRangeEnd[o][c],x=g.globals.labels[c],w=g.config.series[o].name?g.config.series[o].name:"",P=g.globals.ttKeyFormatter,T=g.config.tooltip.y.title.formatter,V={w:g,seriesIndex:o,dataPointIndex:c,start:m,end:b};typeof T=="function"&&(w=T(w,V)),(t=g.config.series[o].data[c])!==null&&t!==void 0&&t.x&&(x=g.config.series[o].data[c].x),n||g.config.xaxis.type==="datetime"&&(x=new Ce(s).xLabelFormat(g.globals.ttKeyFormatter,x,x,{i:void 0,dateFormatter:new le(s).formatDate,w:g})),typeof P=="function"&&(x=P(x,V)),Number.isFinite(u)&&Number.isFinite(h)&&(m=u,b=h);var O="",N="",G=g.globals.colors[o];if(g.config.tooltip.x.formatter===void 0)if(g.config.xaxis.type==="datetime"){var v=new le(s);O=v.formatDate(v.getDate(m),g.config.tooltip.x.format),N=v.formatDate(v.getDate(b),g.config.tooltip.x.format)}else O=m,N=b;else O=g.config.tooltip.x.formatter(m),N=g.config.tooltip.x.formatter(b);return{start:m,end:b,startVal:O,endVal:N,ylabel:x,color:G,seriesName:w}},fe=function(D){var t=D.color,n=D.seriesName,s=D.ylabel,o=D.start,c=D.end,u=D.seriesIndex,h=D.dataPointIndex,g=D.ctx.tooltip.tooltipLabels.getFormatters(u);o=g.yLbFormatter(o),c=g.yLbFormatter(c);var m=g.yLbFormatter(D.w.globals.series[u][h]),b=` + `.concat(o,` + - + `).concat(c,` + `);return'
'+(n||"")+'
'+s+": "+(D.w.globals.comboCharts?D.w.config.series[u].type==="rangeArea"||D.w.config.series[u].type==="rangeBar"?b:"".concat(m,""):b)+"
"},he=function(){function D(t){d(this,D),this.opts=t}return p(D,[{key:"hideYAxis",value:function(){this.opts.yaxis[0].show=!1,this.opts.yaxis[0].title.text="",this.opts.yaxis[0].axisBorder.show=!1,this.opts.yaxis[0].axisTicks.show=!1,this.opts.yaxis[0].floating=!0}},{key:"line",value:function(){return{chart:{animations:{easing:"swing"}},dataLabels:{enabled:!1},stroke:{width:5,curve:"straight"},markers:{size:0,hover:{sizeOffset:6}},xaxis:{crosshairs:{width:1}}}}},{key:"sparkline",value:function(t){return this.hideYAxis(),L.extend(t,{grid:{show:!1,padding:{left:0,right:0,top:0,bottom:0}},legend:{show:!1},xaxis:{labels:{show:!1},tooltip:{enabled:!1},axisBorder:{show:!1},axisTicks:{show:!1}},chart:{toolbar:{show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1}})}},{key:"bar",value:function(){return{chart:{stacked:!1,animations:{easing:"swing"}},plotOptions:{bar:{dataLabels:{position:"center"}}},dataLabels:{style:{colors:["#fff"]},background:{enabled:!1}},stroke:{width:0,lineCap:"round"},fill:{opacity:.85},legend:{markers:{shape:"square",radius:2,size:8}},tooltip:{shared:!1,intersect:!0},xaxis:{tooltip:{enabled:!1},tickPlacement:"between",crosshairs:{width:"barWidth",position:"back",fill:{type:"gradient"},dropShadow:{enabled:!1},stroke:{width:0}}}}}},{key:"funnel",value:function(){return this.hideYAxis(),r(r({},this.bar()),{},{chart:{animations:{easing:"linear",speed:800,animateGradually:{enabled:!1}}},plotOptions:{bar:{horizontal:!0,borderRadiusApplication:"around",borderRadius:0,dataLabels:{position:"center"}}},grid:{show:!1,padding:{left:0,right:0}},xaxis:{labels:{show:!1},tooltip:{enabled:!1},axisBorder:{show:!1},axisTicks:{show:!1}}})}},{key:"candlestick",value:function(){var t=this;return{stroke:{width:1,colors:["#333"]},fill:{opacity:1},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(n){var s=n.seriesIndex,o=n.dataPointIndex,c=n.w;return t._getBoxTooltip(c,s,o,["Open","High","","Low","Close"],"candlestick")}},states:{active:{filter:{type:"none"}}},xaxis:{crosshairs:{width:1}}}}},{key:"boxPlot",value:function(){var t=this;return{chart:{animations:{dynamicAnimation:{enabled:!1}}},stroke:{width:1,colors:["#24292e"]},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(n){var s=n.seriesIndex,o=n.dataPointIndex,c=n.w;return t._getBoxTooltip(c,s,o,["Minimum","Q1","Median","Q3","Maximum"],"boxPlot")}},markers:{size:5,strokeWidth:1,strokeColors:"#111"},xaxis:{crosshairs:{width:1}}}}},{key:"rangeBar",value:function(){return{chart:{animations:{animateGradually:!1}},stroke:{width:0,lineCap:"square"},plotOptions:{bar:{borderRadius:0,dataLabels:{position:"center"}}},dataLabels:{enabled:!1,formatter:function(t,n){n.ctx;var s=n.seriesIndex,o=n.dataPointIndex,c=n.w,u=function(){var h=c.globals.seriesRangeStart[s][o];return c.globals.seriesRangeEnd[s][o]-h};return c.globals.comboCharts?c.config.series[s].type==="rangeBar"||c.config.series[s].type==="rangeArea"?u():t:u()},background:{enabled:!1},style:{colors:["#fff"]}},markers:{size:10},tooltip:{shared:!1,followCursor:!0,custom:function(t){return t.w.config.plotOptions&&t.w.config.plotOptions.bar&&t.w.config.plotOptions.bar.horizontal?function(n){var s=ye(r(r({},n),{},{isTimeline:!0})),o=s.color,c=s.seriesName,u=s.ylabel,h=s.startVal,g=s.endVal;return fe(r(r({},n),{},{color:o,seriesName:c,ylabel:u,start:h,end:g}))}(t):function(n){var s=ye(n),o=s.color,c=s.seriesName,u=s.ylabel,h=s.start,g=s.end;return fe(r(r({},n),{},{color:o,seriesName:c,ylabel:u,start:h,end:g}))}(t)}},xaxis:{tickPlacement:"between",tooltip:{enabled:!1},crosshairs:{stroke:{width:0}}}}}},{key:"dumbbell",value:function(t){var n,s;return(n=t.plotOptions.bar)!==null&&n!==void 0&&n.barHeight||(t.plotOptions.bar.barHeight=2),(s=t.plotOptions.bar)!==null&&s!==void 0&&s.columnWidth||(t.plotOptions.bar.columnWidth=2),t}},{key:"area",value:function(){return{stroke:{width:4,fill:{type:"solid",gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.65,opacityTo:.5,stops:[0,100,100]}}},fill:{type:"gradient",gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.65,opacityTo:.5,stops:[0,100,100]}},markers:{size:0,hover:{sizeOffset:6}},tooltip:{followCursor:!1}}}},{key:"rangeArea",value:function(){return{stroke:{curve:"straight",width:0},fill:{type:"solid",opacity:.6},markers:{size:0},states:{hover:{filter:{type:"none"}},active:{filter:{type:"none"}}},tooltip:{intersect:!1,shared:!0,followCursor:!0,custom:function(t){return function(n){var s=ye(n),o=s.color,c=s.seriesName,u=s.ylabel,h=s.start,g=s.end;return fe(r(r({},n),{},{color:o,seriesName:c,ylabel:u,start:h,end:g}))}(t)}}}}},{key:"brush",value:function(t){return L.extend(t,{chart:{toolbar:{autoSelected:"selection",show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1},stroke:{width:1},tooltip:{enabled:!1},xaxis:{tooltip:{enabled:!1}}})}},{key:"stacked100",value:function(t){t.dataLabels=t.dataLabels||{},t.dataLabels.formatter=t.dataLabels.formatter||void 0;var n=t.dataLabels.formatter;return t.yaxis.forEach(function(s,o){t.yaxis[o].min=0,t.yaxis[o].max=100}),t.chart.type==="bar"&&(t.dataLabels.formatter=n||function(s){return typeof s=="number"&&s?s.toFixed(0)+"%":s}),t}},{key:"stackedBars",value:function(){var t=this.bar();return r(r({},t),{},{plotOptions:r(r({},t.plotOptions),{},{bar:r(r({},t.plotOptions.bar),{},{borderRadiusApplication:"end",borderRadiusWhenStacked:"last"})})})}},{key:"convertCatToNumeric",value:function(t){return t.xaxis.convertedCatToNumeric=!0,t}},{key:"convertCatToNumericXaxis",value:function(t,n,s){t.xaxis.type="numeric",t.xaxis.labels=t.xaxis.labels||{},t.xaxis.labels.formatter=t.xaxis.labels.formatter||function(u){return L.isNumber(u)?Math.floor(u):u};var o=t.xaxis.labels.formatter,c=t.xaxis.categories&&t.xaxis.categories.length?t.xaxis.categories:t.labels;return s&&s.length&&(c=s.map(function(u){return Array.isArray(u)?u:String(u)})),c&&c.length&&(t.xaxis.labels.formatter=function(u){return L.isNumber(u)?o(c[Math.floor(u)-1]):o(u)}),t.xaxis.categories=[],t.labels=[],t.xaxis.tickAmount=t.xaxis.tickAmount||"dataPoints",t}},{key:"bubble",value:function(){return{dataLabels:{style:{colors:["#fff"]}},tooltip:{shared:!1,intersect:!0},xaxis:{crosshairs:{width:0}},fill:{type:"solid",gradient:{shade:"light",inverse:!0,shadeIntensity:.55,opacityFrom:.4,opacityTo:.8}}}}},{key:"scatter",value:function(){return{dataLabels:{enabled:!1},tooltip:{shared:!1,intersect:!0},markers:{size:6,strokeWidth:1,hover:{sizeOffset:2}}}}},{key:"heatmap",value:function(){return{chart:{stacked:!1},fill:{opacity:1},dataLabels:{style:{colors:["#fff"]}},stroke:{colors:["#fff"]},tooltip:{followCursor:!0,marker:{show:!1},x:{show:!1}},legend:{position:"top",markers:{shape:"square",size:10,offsetY:2}},grid:{padding:{right:20}}}}},{key:"treemap",value:function(){return{chart:{zoom:{enabled:!1}},dataLabels:{style:{fontSize:14,fontWeight:600,colors:["#fff"]}},stroke:{show:!0,width:2,colors:["#fff"]},legend:{show:!1},fill:{gradient:{stops:[0,100]}},tooltip:{followCursor:!0,x:{show:!1}},grid:{padding:{left:0,right:0}},xaxis:{crosshairs:{show:!1},tooltip:{enabled:!1}}}}},{key:"pie",value:function(){return{chart:{toolbar:{show:!1}},plotOptions:{pie:{donut:{labels:{show:!1}}}},dataLabels:{formatter:function(t){return t.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",stops:[0,100]}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"donut",value:function(){return{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(t){return t.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",shadeIntensity:.35,stops:[80,100],opacityFrom:1,opacityTo:1}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"polarArea",value:function(){return this.opts.yaxis[0].tickAmount=this.opts.yaxis[0].tickAmount?this.opts.yaxis[0].tickAmount:6,{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(t){return t.toFixed(1)+"%"},enabled:!1},stroke:{show:!0,width:2},fill:{opacity:.7},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"radar",value:function(){return this.opts.yaxis[0].labels.offsetY=this.opts.yaxis[0].labels.offsetY?this.opts.yaxis[0].labels.offsetY:6,{dataLabels:{enabled:!1,style:{fontSize:"11px"}},stroke:{width:2},markers:{size:3,strokeWidth:1,strokeOpacity:1},fill:{opacity:.2},tooltip:{shared:!1,intersect:!0,followCursor:!0},grid:{show:!1},xaxis:{labels:{formatter:function(t){return t},style:{colors:["#a8a8a8"],fontSize:"11px"}},tooltip:{enabled:!1},crosshairs:{show:!1}}}}},{key:"radialBar",value:function(){return{chart:{animations:{dynamicAnimation:{enabled:!0,speed:800}},toolbar:{show:!1}},fill:{gradient:{shade:"dark",shadeIntensity:.4,inverseColors:!1,type:"diagonal2",opacityFrom:1,opacityTo:1,stops:[70,98,100]}},legend:{show:!1,position:"right"},tooltip:{enabled:!1,fillSeriesColor:!0}}}},{key:"_getBoxTooltip",value:function(t,n,s,o,c){var u=t.globals.seriesCandleO[n][s],h=t.globals.seriesCandleH[n][s],g=t.globals.seriesCandleM[n][s],m=t.globals.seriesCandleL[n][s],b=t.globals.seriesCandleC[n][s];return t.config.series[n].type&&t.config.series[n].type!==c?`
+ `.concat(t.config.series[n].name?t.config.series[n].name:"series-"+(n+1),": ").concat(t.globals.series[n][s],` +
`):'
')+"
".concat(o[0],': ')+u+"
"+"
".concat(o[1],': ')+h+"
"+(g?"
".concat(o[2],': ')+g+"
":"")+"
".concat(o[3],': ')+m+"
"+"
".concat(o[4],': ')+b+"
"}}]),D}(),Se=function(){function D(t){d(this,D),this.opts=t}return p(D,[{key:"init",value:function(t){var n=t.responsiveOverride,s=this.opts,o=new ne,c=new he(s);this.chartType=s.chart.type,s=this.extendYAxis(s),s=this.extendAnnotations(s);var u=o.init(),h={};if(s&&l(s)==="object"){var g,m,b,x,w,P,T,V,O={};O=["line","area","bar","candlestick","boxPlot","rangeBar","rangeArea","bubble","scatter","heatmap","treemap","pie","polarArea","donut","radar","radialBar"].indexOf(s.chart.type)!==-1?c[s.chart.type]():c.line(),(g=s.plotOptions)!==null&&g!==void 0&&(m=g.bar)!==null&&m!==void 0&&m.isFunnel&&(O=c.funnel()),s.chart.stacked&&s.chart.type==="bar"&&(O=c.stackedBars()),(b=s.chart.brush)!==null&&b!==void 0&&b.enabled&&(O=c.brush(O)),s.chart.stacked&&s.chart.stackType==="100%"&&(s=c.stacked100(s)),(x=s.plotOptions)!==null&&x!==void 0&&(w=x.bar)!==null&&w!==void 0&&w.isDumbbell&&(s=c.dumbbell(s)),this.checkForDarkTheme(window.Apex),this.checkForDarkTheme(s),s.xaxis=s.xaxis||window.Apex.xaxis||{},n||(s.xaxis.convertedCatToNumeric=!1),((P=(s=this.checkForCatToNumericXAxis(this.chartType,O,s)).chart.sparkline)!==null&&P!==void 0&&P.enabled||(T=window.Apex.chart)!==null&&T!==void 0&&(V=T.sparkline)!==null&&V!==void 0&&V.enabled)&&(O=c.sparkline(O)),h=L.extend(u,O)}var N=L.extend(h,window.Apex);return u=L.extend(N,s),u=this.handleUserInputErrors(u)}},{key:"checkForCatToNumericXAxis",value:function(t,n,s){var o,c,u=new he(s),h=(t==="bar"||t==="boxPlot")&&((o=s.plotOptions)===null||o===void 0||(c=o.bar)===null||c===void 0?void 0:c.horizontal),g=t==="pie"||t==="polarArea"||t==="donut"||t==="radar"||t==="radialBar"||t==="heatmap",m=s.xaxis.type!=="datetime"&&s.xaxis.type!=="numeric",b=s.xaxis.tickPlacement?s.xaxis.tickPlacement:n.xaxis&&n.xaxis.tickPlacement;return h||g||!m||b==="between"||(s=u.convertCatToNumeric(s)),s}},{key:"extendYAxis",value:function(t,n){var s=new ne;(t.yaxis===void 0||!t.yaxis||Array.isArray(t.yaxis)&&t.yaxis.length===0)&&(t.yaxis={}),t.yaxis.constructor!==Array&&window.Apex.yaxis&&window.Apex.yaxis.constructor!==Array&&(t.yaxis=L.extend(t.yaxis,window.Apex.yaxis)),t.yaxis.constructor!==Array?t.yaxis=[L.extend(s.yAxis,t.yaxis)]:t.yaxis=L.extendArray(t.yaxis,s.yAxis);var o=!1;t.yaxis.forEach(function(u){u.logarithmic&&(o=!0)});var c=t.series;return n&&!c&&(c=n.config.series),o&&c.length!==t.yaxis.length&&c.length&&(t.yaxis=c.map(function(u,h){if(u.name||(c[h].name="series-".concat(h+1)),t.yaxis[h])return t.yaxis[h].seriesName=c[h].name,t.yaxis[h];var g=L.extend(s.yAxis,t.yaxis[0]);return g.show=!1,g})),o&&c.length>1&&c.length!==t.yaxis.length&&console.warn("A multi-series logarithmic chart should have equal number of series and y-axes. Please make sure to equalize both."),t}},{key:"extendAnnotations",value:function(t){return t.annotations===void 0&&(t.annotations={},t.annotations.yaxis=[],t.annotations.xaxis=[],t.annotations.points=[]),t=this.extendYAxisAnnotations(t),t=this.extendXAxisAnnotations(t),t=this.extendPointAnnotations(t)}},{key:"extendYAxisAnnotations",value:function(t){var n=new ne;return t.annotations.yaxis=L.extendArray(t.annotations.yaxis!==void 0?t.annotations.yaxis:[],n.yAxisAnnotation),t}},{key:"extendXAxisAnnotations",value:function(t){var n=new ne;return t.annotations.xaxis=L.extendArray(t.annotations.xaxis!==void 0?t.annotations.xaxis:[],n.xAxisAnnotation),t}},{key:"extendPointAnnotations",value:function(t){var n=new ne;return t.annotations.points=L.extendArray(t.annotations.points!==void 0?t.annotations.points:[],n.pointAnnotation),t}},{key:"checkForDarkTheme",value:function(t){t.theme&&t.theme.mode==="dark"&&(t.tooltip||(t.tooltip={}),t.tooltip.theme!=="light"&&(t.tooltip.theme="dark"),t.chart.foreColor||(t.chart.foreColor="#f6f7f8"),t.chart.background||(t.chart.background="#424242"),t.theme.palette||(t.theme.palette="palette4"))}},{key:"handleUserInputErrors",value:function(t){var n=t;if(n.tooltip.shared&&n.tooltip.intersect)throw new Error("tooltip.shared cannot be enabled when tooltip.intersect is true. Turn off any other option by setting it to false.");if(n.chart.type==="bar"&&n.plotOptions.bar.horizontal){if(n.yaxis.length>1)throw new Error("Multiple Y Axis for bars are not supported. Switch to column chart by setting plotOptions.bar.horizontal=false");n.yaxis[0].reversed&&(n.yaxis[0].opposite=!0),n.xaxis.tooltip.enabled=!1,n.yaxis[0].tooltip.enabled=!1,n.chart.zoom.enabled=!1}return n.chart.type!=="bar"&&n.chart.type!=="rangeBar"||n.tooltip.shared&&n.xaxis.crosshairs.width==="barWidth"&&n.series.length>1&&(n.xaxis.crosshairs.width="tickWidth"),n.chart.type!=="candlestick"&&n.chart.type!=="boxPlot"||n.yaxis[0].reversed&&(console.warn("Reversed y-axis in ".concat(n.chart.type," chart is not supported.")),n.yaxis[0].reversed=!1),n}}]),D}(),Ee=function(){function D(){d(this,D)}return p(D,[{key:"initGlobalVars",value:function(t){t.series=[],t.seriesCandleO=[],t.seriesCandleH=[],t.seriesCandleM=[],t.seriesCandleL=[],t.seriesCandleC=[],t.seriesRangeStart=[],t.seriesRangeEnd=[],t.seriesRange=[],t.seriesPercent=[],t.seriesGoals=[],t.seriesX=[],t.seriesZ=[],t.seriesNames=[],t.seriesTotals=[],t.seriesLog=[],t.seriesColors=[],t.stackedSeriesTotals=[],t.seriesXvalues=[],t.seriesYvalues=[],t.labels=[],t.hasXaxisGroups=!1,t.groups=[],t.hasSeriesGroups=!1,t.seriesGroups=[],t.categoryLabels=[],t.timescaleLabels=[],t.noLabelsProvided=!1,t.resizeTimer=null,t.selectionResizeTimer=null,t.delayedElements=[],t.pointsArray=[],t.dataLabelsRects=[],t.isXNumeric=!1,t.skipLastTimelinelabel=!1,t.skipFirstTimelinelabel=!1,t.isDataXYZ=!1,t.isMultiLineX=!1,t.isMultipleYAxis=!1,t.maxY=-Number.MAX_VALUE,t.minY=Number.MIN_VALUE,t.minYArr=[],t.maxYArr=[],t.maxX=-Number.MAX_VALUE,t.minX=Number.MAX_VALUE,t.initialMaxX=-Number.MAX_VALUE,t.initialMinX=Number.MAX_VALUE,t.maxDate=0,t.minDate=Number.MAX_VALUE,t.minZ=Number.MAX_VALUE,t.maxZ=-Number.MAX_VALUE,t.minXDiff=Number.MAX_VALUE,t.yAxisScale=[],t.xAxisScale=null,t.xAxisTicksPositions=[],t.yLabelsCoords=[],t.yTitleCoords=[],t.barPadForNumericAxis=0,t.padHorizontal=0,t.xRange=0,t.yRange=[],t.zRange=0,t.dataPoints=0,t.xTickAmount=0}},{key:"globalVars",value:function(t){return{chartID:null,cuid:null,events:{beforeMount:[],mounted:[],updated:[],clicked:[],selection:[],dataPointSelection:[],zoomed:[],scrolled:[]},colors:[],clientX:null,clientY:null,fill:{colors:[]},stroke:{colors:[]},dataLabels:{style:{colors:[]}},radarPolygons:{fill:{colors:[]}},markers:{colors:[],size:t.markers.size,largestSize:0},animationEnded:!1,isTouchDevice:"ontouchstart"in window||navigator.msMaxTouchPoints,isDirty:!1,isExecCalled:!1,initialConfig:null,initialSeries:[],lastXAxis:[],lastYAxis:[],columnSeries:null,labels:[],timescaleLabels:[],noLabelsProvided:!1,allSeriesCollapsed:!1,collapsedSeries:[],collapsedSeriesIndices:[],ancillaryCollapsedSeries:[],ancillaryCollapsedSeriesIndices:[],risingSeries:[],dataFormatXNumeric:!1,capturedSeriesIndex:-1,capturedDataPointIndex:-1,selectedDataPoints:[],goldenPadding:35,invalidLogScale:!1,ignoreYAxisIndexes:[],yAxisSameScaleIndices:[],maxValsInArrayIndex:0,radialSize:0,selection:void 0,zoomEnabled:t.chart.toolbar.autoSelected==="zoom"&&t.chart.toolbar.tools.zoom&&t.chart.zoom.enabled,panEnabled:t.chart.toolbar.autoSelected==="pan"&&t.chart.toolbar.tools.pan,selectionEnabled:t.chart.toolbar.autoSelected==="selection"&&t.chart.toolbar.tools.selection,yaxis:null,mousedown:!1,lastClientPosition:{},visibleXRange:void 0,yValueDecimal:0,total:0,SVGNS:"http://www.w3.org/2000/svg",svgWidth:0,svgHeight:0,noData:!1,locale:{},dom:{},memory:{methodsToExec:[]},shouldAnimate:!0,skipLastTimelinelabel:!1,skipFirstTimelinelabel:!1,delayedElements:[],axisCharts:!0,isDataXYZ:!1,resized:!1,resizeTimer:null,comboCharts:!1,dataChanged:!1,previousPaths:[],allSeriesHasEqualX:!0,pointsArray:[],dataLabelsRects:[],lastDrawnDataLabelsIndexes:[],hasNullValues:!1,easing:null,zoomed:!1,gridWidth:0,gridHeight:0,rotateXLabels:!1,defaultLabels:!1,xLabelFormatter:void 0,yLabelFormatters:[],xaxisTooltipFormatter:void 0,ttKeyFormatter:void 0,ttVal:void 0,ttZFormatter:void 0,LINE_HEIGHT_RATIO:1.618,xAxisLabelsHeight:0,xAxisGroupLabelsHeight:0,xAxisLabelsWidth:0,yAxisLabelsWidth:0,scaleX:1,scaleY:1,translateX:0,translateY:0,translateYAxisX:[],yAxisWidths:[],translateXAxisY:0,translateXAxisX:0,tooltip:null}}},{key:"init",value:function(t){var n=this.globalVars(t);return this.initGlobalVars(n),n.initialConfig=L.extend({},t),n.initialSeries=L.clone(t.series),n.lastXAxis=L.clone(n.initialConfig.xaxis),n.lastYAxis=L.clone(n.initialConfig.yaxis),n}}]),D}(),De=function(){function D(t){d(this,D),this.opts=t}return p(D,[{key:"init",value:function(){var t=new Se(this.opts).init({responsiveOverride:!1});return{config:t,globals:new Ee().init(t)}}}]),D}(),Fe=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w,this.opts=null,this.seriesIndex=0}return p(D,[{key:"clippedImgArea",value:function(t){var n=this.w,s=n.config,o=parseInt(n.globals.gridWidth,10),c=parseInt(n.globals.gridHeight,10),u=o>c?o:c,h=t.image,g=0,m=0;t.width===void 0&&t.height===void 0?s.fill.image.width!==void 0&&s.fill.image.height!==void 0?(g=s.fill.image.width+1,m=s.fill.image.height):(g=u+1,m=u):(g=t.width,m=t.height);var b=document.createElementNS(n.globals.SVGNS,"pattern");H.setAttrs(b,{id:t.patternID,patternUnits:t.patternUnits?t.patternUnits:"userSpaceOnUse",width:g+"px",height:m+"px"});var x=document.createElementNS(n.globals.SVGNS,"image");b.appendChild(x),x.setAttributeNS(window.SVG.xlink,"href",h),H.setAttrs(x,{x:0,y:0,preserveAspectRatio:"none",width:g+"px",height:m+"px"}),x.style.opacity=t.opacity,n.globals.dom.elDefs.node.appendChild(b)}},{key:"getSeriesIndex",value:function(t){var n=this.w,s=n.config.chart.type;return(s==="bar"||s==="rangeBar")&&n.config.plotOptions.bar.distributed||s==="heatmap"||s==="treemap"?this.seriesIndex=t.seriesNumber:this.seriesIndex=t.seriesNumber%n.globals.series.length,this.seriesIndex}},{key:"fillPath",value:function(t){var n=this.w;this.opts=t;var s,o,c,u=this.w.config;this.seriesIndex=this.getSeriesIndex(t);var h=this.getFillColors()[this.seriesIndex];n.globals.seriesColors[this.seriesIndex]!==void 0&&(h=n.globals.seriesColors[this.seriesIndex]),typeof h=="function"&&(h=h({seriesIndex:this.seriesIndex,dataPointIndex:t.dataPointIndex,value:t.value,w:n}));var g=t.fillType?t.fillType:this.getFillType(this.seriesIndex),m=Array.isArray(u.fill.opacity)?u.fill.opacity[this.seriesIndex]:u.fill.opacity;t.color&&(h=t.color);var b=h;if(h.indexOf("rgb")===-1?h.length<9&&(b=L.hexToRgba(h,m)):h.indexOf("rgba")>-1&&(m=L.getOpacityFromRGBA(h)),t.opacity&&(m=t.opacity),g==="pattern"&&(o=this.handlePatternFill({fillConfig:t.fillConfig,patternFill:o,fillColor:h,fillOpacity:m,defaultColor:b})),g==="gradient"&&(c=this.handleGradientFill({fillConfig:t.fillConfig,fillColor:h,fillOpacity:m,i:this.seriesIndex})),g==="image"){var x=u.fill.image.src,w=t.patternID?t.patternID:"";this.clippedImgArea({opacity:m,image:Array.isArray(x)?t.seriesNumber-1&&(P=L.getOpacityFromRGBA(w));var T=u.gradient.opacityTo===void 0?s:Array.isArray(u.gradient.opacityTo)?u.gradient.opacityTo[c]:u.gradient.opacityTo;if(u.gradient.gradientToColors===void 0||u.gradient.gradientToColors.length===0)h=u.gradient.shade==="dark"?b.shadeColor(-1*parseFloat(u.gradient.shadeIntensity),n.indexOf("rgb")>-1?L.rgb2hex(n):n):b.shadeColor(parseFloat(u.gradient.shadeIntensity),n.indexOf("rgb")>-1?L.rgb2hex(n):n);else if(u.gradient.gradientToColors[g.seriesNumber]){var V=u.gradient.gradientToColors[g.seriesNumber];h=V,V.indexOf("rgba")>-1&&(T=L.getOpacityFromRGBA(V))}else h=n;if(u.gradient.gradientFrom&&(w=u.gradient.gradientFrom),u.gradient.gradientTo&&(h=u.gradient.gradientTo),u.gradient.inverseColors){var O=w;w=h,h=O}return w.indexOf("rgb")>-1&&(w=L.rgb2hex(w)),h.indexOf("rgb")>-1&&(h=L.rgb2hex(h)),m.drawGradient(x,w,h,P,T,g.size,u.gradient.stops,u.gradient.colorStops,c)}}]),D}(),Ze=function(){function D(t,n){d(this,D),this.ctx=t,this.w=t.w}return p(D,[{key:"setGlobalMarkerSize",value:function(){var t=this.w;if(t.globals.markers.size=Array.isArray(t.config.markers.size)?t.config.markers.size:[t.config.markers.size],t.globals.markers.size.length>0){if(t.globals.markers.size.length4&&arguments[4]!==void 0&&arguments[4],h=this.w,g=n,m=t,b=null,x=new H(this.ctx),w=h.config.markers.discrete&&h.config.markers.discrete.length;if((h.globals.markers.size[n]>0||u||w)&&(b=x.group({class:u||w?"":"apexcharts-series-markers"})).attr("clip-path","url(#gridRectMarkerMask".concat(h.globals.cuid,")")),Array.isArray(m.x))for(var P=0;P0:h.config.markers.size>0)||u||w){L.isNumber(m.y[P])?V+=" w".concat(L.randomId()):V="apexcharts-nullpoint";var O=this.getMarkerConfig({cssClass:V,seriesIndex:n,dataPointIndex:T});h.config.series[g].data[T]&&(h.config.series[g].data[T].fillColor&&(O.pointFillColor=h.config.series[g].data[T].fillColor),h.config.series[g].data[T].strokeColor&&(O.pointStrokeColor=h.config.series[g].data[T].strokeColor)),o&&(O.pSize=o),(m.x[P]<0||m.x[P]>h.globals.gridWidth||m.y[P]<0||m.y[P]>h.globals.gridHeight)&&(O.pSize=0),(c=x.drawMarker(m.x[P],m.y[P],O)).attr("rel",T),c.attr("j",T),c.attr("index",n),c.node.setAttribute("default-marker-size",O.pSize),new Y(this.ctx).setSelectionFilter(c,n,T),this.addEvents(c),b&&b.add(c)}else h.globals.pointsArray[n]===void 0&&(h.globals.pointsArray[n]=[]),h.globals.pointsArray[n].push([m.x[P],m.y[P]])}return b}},{key:"getMarkerConfig",value:function(t){var n=t.cssClass,s=t.seriesIndex,o=t.dataPointIndex,c=o===void 0?null:o,u=t.finishRadius,h=u===void 0?null:u,g=this.w,m=this.getMarkerStyle(s),b=g.globals.markers.size[s],x=g.config.markers;return c!==null&&x.discrete.length&&x.discrete.map(function(w){w.seriesIndex===s&&w.dataPointIndex===c&&(m.pointStrokeColor=w.strokeColor,m.pointFillColor=w.fillColor,b=w.size,m.pointShape=w.shape)}),{pSize:h===null?b:h,pRadius:x.radius,width:Array.isArray(x.width)?x.width[s]:x.width,height:Array.isArray(x.height)?x.height[s]:x.height,pointStrokeWidth:Array.isArray(x.strokeWidth)?x.strokeWidth[s]:x.strokeWidth,pointStrokeColor:m.pointStrokeColor,pointFillColor:m.pointFillColor,shape:m.pointShape||(Array.isArray(x.shape)?x.shape[s]:x.shape),class:n,pointStrokeOpacity:Array.isArray(x.strokeOpacity)?x.strokeOpacity[s]:x.strokeOpacity,pointStrokeDashArray:Array.isArray(x.strokeDashArray)?x.strokeDashArray[s]:x.strokeDashArray,pointFillOpacity:Array.isArray(x.fillOpacity)?x.fillOpacity[s]:x.fillOpacity,seriesIndex:s}}},{key:"addEvents",value:function(t){var n=this.w,s=new H(this.ctx);t.node.addEventListener("mouseenter",s.pathMouseEnter.bind(this.ctx,t)),t.node.addEventListener("mouseleave",s.pathMouseLeave.bind(this.ctx,t)),t.node.addEventListener("mousedown",s.pathMouseDown.bind(this.ctx,t)),t.node.addEventListener("click",n.config.markers.onClick),t.node.addEventListener("dblclick",n.config.markers.onDblClick),t.node.addEventListener("touchstart",s.pathMouseDown.bind(this.ctx,t),{passive:!0})}},{key:"getMarkerStyle",value:function(t){var n=this.w,s=n.globals.markers.colors,o=n.config.markers.strokeColor||n.config.markers.strokeColors;return{pointStrokeColor:Array.isArray(o)?o[t]:o,pointFillColor:Array.isArray(s)?s[t]:s}}}]),D}(),Je=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled}return p(D,[{key:"draw",value:function(t,n,s){var o=this.w,c=new H(this.ctx),u=s.realIndex,h=s.pointsPos,g=s.zRatio,m=s.elParent,b=c.group({class:"apexcharts-series-markers apexcharts-series-".concat(o.config.chart.type)});if(b.attr("clip-path","url(#gridRectMarkerMask".concat(o.globals.cuid,")")),Array.isArray(h.x))for(var x=0;xO.maxBubbleRadius&&(V=O.maxBubbleRadius)}o.config.chart.animations.enabled||(T=V);var N=h.x[x],G=h.y[x];if(T=T||0,G!==null&&o.globals.series[u][w]!==void 0||(P=!1),P){var v=this.drawPoint(N,G,T,V,u,w,n);b.add(v)}m.add(b)}}},{key:"drawPoint",value:function(t,n,s,o,c,u,h){var g=this.w,m=c,b=new q(this.ctx),x=new Y(this.ctx),w=new Fe(this.ctx),P=new Ze(this.ctx),T=new H(this.ctx),V=P.getMarkerConfig({cssClass:"apexcharts-marker",seriesIndex:m,dataPointIndex:u,finishRadius:g.config.chart.type==="bubble"||g.globals.comboCharts&&g.config.series[c]&&g.config.series[c].type==="bubble"?o:null});o=V.pSize;var O,N=w.fillPath({seriesNumber:c,dataPointIndex:u,color:V.pointFillColor,patternUnits:"objectBoundingBox",value:g.globals.series[c][h]});if(V.shape==="circle"?O=T.drawCircle(s):V.shape!=="square"&&V.shape!=="rect"||(O=T.drawRect(0,0,V.width-V.pointStrokeWidth/2,V.height-V.pointStrokeWidth/2,V.pRadius)),g.config.series[m].data[u]&&g.config.series[m].data[u].fillColor&&(N=g.config.series[m].data[u].fillColor),O.attr({x:t-V.width/2-V.pointStrokeWidth/2,y:n-V.height/2-V.pointStrokeWidth/2,cx:t,cy:n,fill:N,"fill-opacity":V.pointFillOpacity,stroke:V.pointStrokeColor,r:o,"stroke-width":V.pointStrokeWidth,"stroke-dasharray":V.pointStrokeDashArray,"stroke-opacity":V.pointStrokeOpacity}),g.config.chart.dropShadow.enabled){var G=g.config.chart.dropShadow;x.dropShadow(O,G,c)}if(!this.initialAnim||g.globals.dataChanged||g.globals.resized)g.globals.animationEnded=!0;else{var v=g.config.chart.animations.speed;b.animateMarker(O,0,V.shape==="circle"?o:{width:V.width,height:V.height},v,g.globals.easing,function(){window.setTimeout(function(){b.animationCompleted(O)},100)})}if(g.globals.dataChanged&&V.shape==="circle")if(this.dynamicAnim){var S,I,z,U,K=g.config.chart.animations.dynamicAnimation.speed;(U=g.globals.previousPaths[c]&&g.globals.previousPaths[c][h])!=null&&(S=U.x,I=U.y,z=U.r!==void 0?U.r:o);for(var ae=0;aeg.globals.gridHeight+w&&(n=g.globals.gridHeight+w/2),g.globals.dataLabelsRects[o]===void 0&&(g.globals.dataLabelsRects[o]=[]),g.globals.dataLabelsRects[o].push({x:t,y:n,width:x,height:w});var P=g.globals.dataLabelsRects[o].length-2,T=g.globals.lastDrawnDataLabelsIndexes[o]!==void 0?g.globals.lastDrawnDataLabelsIndexes[o][g.globals.lastDrawnDataLabelsIndexes[o].length-1]:0;if(g.globals.dataLabelsRects[o][P]!==void 0){var V=g.globals.dataLabelsRects[o][T];(t>V.x+V.width+2||n>V.y+V.height+2||t+xn.globals.gridWidth+O.textRects.width+10)&&(g="");var N=n.globals.dataLabels.style.colors[u];((n.config.chart.type==="bar"||n.config.chart.type==="rangeBar")&&n.config.plotOptions.bar.distributed||n.config.dataLabels.distributed)&&(N=n.globals.dataLabels.style.colors[h]),typeof N=="function"&&(N=N({series:n.globals.series,seriesIndex:u,dataPointIndex:h,w:n})),P&&(N=P);var G=w.offsetX,v=w.offsetY;if(n.config.chart.type!=="bar"&&n.config.chart.type!=="rangeBar"||(G=0,v=0),O.drawnextLabel){var S=s.drawText({width:100,height:parseInt(w.style.fontSize,10),x:o+G,y:c+v,foreColor:N,textAnchor:m||w.textAnchor,text:g,fontSize:b||w.style.fontSize,fontFamily:w.style.fontFamily,fontWeight:w.style.fontWeight||"normal"});if(S.attr({class:"apexcharts-datalabel",cx:o,cy:c}),w.dropShadow.enabled){var I=w.dropShadow;new Y(this.ctx).dropShadow(S,I)}x.add(S),n.globals.lastDrawnDataLabelsIndexes[u]===void 0&&(n.globals.lastDrawnDataLabelsIndexes[u]=[]),n.globals.lastDrawnDataLabelsIndexes[u].push(h)}}}},{key:"addBackgroundToDataLabel",value:function(t,n){var s=this.w,o=s.config.dataLabels.background,c=o.padding,u=o.padding/2,h=n.width,g=n.height,m=new H(this.ctx).drawRect(n.x-c,n.y-u/2,h+2*c,g+u,o.borderRadius,s.config.chart.background==="transparent"?"#fff":s.config.chart.background,o.opacity,o.borderWidth,o.borderColor);return o.dropShadow.enabled&&new Y(this.ctx).dropShadow(m,o.dropShadow),m}},{key:"dataLabelsBackground",value:function(){var t=this.w;if(t.config.chart.type!=="bubble")for(var n=t.globals.dom.baseEl.querySelectorAll(".apexcharts-datalabels text"),s=0;s0&&arguments[0]!==void 0)||arguments[0],n=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],s=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],o=this.w,c=L.clone(o.globals.initialSeries);o.globals.previousPaths=[],s?(o.globals.collapsedSeries=[],o.globals.ancillaryCollapsedSeries=[],o.globals.collapsedSeriesIndices=[],o.globals.ancillaryCollapsedSeriesIndices=[]):c=this.emptyCollapsedSeries(c),o.config.series=c,t&&(n&&(o.globals.zoomed=!1,this.ctx.updateHelpers.revertDefaultAxisMinMax()),this.ctx.updateHelpers._updateSeries(c,o.config.chart.animations.dynamicAnimation.enabled))}},{key:"emptyCollapsedSeries",value:function(t){for(var n=this.w,s=0;s-1&&(t[s].data=[]);return t}},{key:"toggleSeriesOnHover",value:function(t,n){var s=this.w;n||(n=t.target);var o=s.globals.dom.baseEl.querySelectorAll(".apexcharts-series, .apexcharts-datalabels");if(t.type==="mousemove"){var c=parseInt(n.getAttribute("rel"),10)-1,u=null,h=null;s.globals.axisCharts||s.config.chart.type==="radialBar"?s.globals.axisCharts?(u=s.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(c,"']")),h=s.globals.dom.baseEl.querySelector(".apexcharts-datalabels[data\\:realIndex='".concat(c,"']"))):u=s.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(c+1,"']")):u=s.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(c+1,"'] path"));for(var g=0;g=g.from&&b<=g.to&&c[m].classList.remove(s.legendInactiveClass)}}(o.config.plotOptions.heatmap.colorScale.ranges[h])}else t.type==="mouseout"&&u("remove")}},{key:"getActiveConfigSeriesIndex",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"asc",n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],s=this.w,o=0;if(s.config.series.length>1){for(var c=s.config.series.map(function(h,g){return h.data&&h.data.length>0&&s.globals.collapsedSeriesIndices.indexOf(g)===-1&&(!s.globals.comboCharts||n.length===0||n.length&&n.indexOf(s.config.series[g].type)>-1)?g:-1}),u=t==="asc"?0:c.length-1;t==="asc"?u=0;t==="asc"?u++:u--)if(c[u]!==-1){o=c[u];break}}return o}},{key:"getBarSeriesIndices",value:function(){return this.w.globals.comboCharts?this.w.config.series.map(function(t,n){return t.type==="bar"||t.type==="column"?n:-1}).filter(function(t){return t!==-1}):this.w.config.series.map(function(t,n){return n})}},{key:"getPreviousPaths",value:function(){var t=this.w;function n(u,h,g){for(var m=u[h].childNodes,b={type:g,paths:[],realIndex:u[h].getAttribute("data:realIndex")},x=0;x0)for(var o=function(u){for(var h=t.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(t.config.chart.type," .apexcharts-series[data\\:realIndex='").concat(u,"'] rect")),g=[],m=function(x){var w=function(T){return h[x].getAttribute(T)},P={x:parseFloat(w("x")),y:parseFloat(w("y")),width:parseFloat(w("width")),height:parseFloat(w("height"))};g.push({rect:P,color:h[x].getAttribute("color")})},b=0;b0)for(var o=0;o0?n:[]});return t}}]),D}(),de=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w,this.twoDSeries=[],this.threeDSeries=[],this.twoDSeriesX=[],this.seriesGoals=[],this.coreUtils=new J(this.ctx)}return p(D,[{key:"isMultiFormat",value:function(){return this.isFormatXY()||this.isFormat2DArray()}},{key:"isFormatXY",value:function(){var t=this.w.config.series.slice(),n=new ue(this.ctx);if(this.activeSeriesIndex=n.getActiveConfigSeriesIndex(),t[this.activeSeriesIndex].data!==void 0&&t[this.activeSeriesIndex].data.length>0&&t[this.activeSeriesIndex].data[0]!==null&&t[this.activeSeriesIndex].data[0].x!==void 0&&t[this.activeSeriesIndex].data[0]!==null)return!0}},{key:"isFormat2DArray",value:function(){var t=this.w.config.series.slice(),n=new ue(this.ctx);if(this.activeSeriesIndex=n.getActiveConfigSeriesIndex(),t[this.activeSeriesIndex].data!==void 0&&t[this.activeSeriesIndex].data.length>0&&t[this.activeSeriesIndex].data[0]!==void 0&&t[this.activeSeriesIndex].data[0]!==null&&t[this.activeSeriesIndex].data[0].constructor===Array)return!0}},{key:"handleFormat2DArray",value:function(t,n){for(var s=this.w.config,o=this.w.globals,c=s.chart.type==="boxPlot"||s.series[n].type==="boxPlot",u=0;u=5?this.twoDSeries.push(L.parseNumber(t[n].data[u][4])):this.twoDSeries.push(L.parseNumber(t[n].data[u][1])),o.dataFormatXNumeric=!0),s.xaxis.type==="datetime"){var h=new Date(t[n].data[u][0]);h=new Date(h).getTime(),this.twoDSeriesX.push(h)}else this.twoDSeriesX.push(t[n].data[u][0]);for(var g=0;g-1&&(u=this.activeSeriesIndex);for(var h=0;h1&&arguments[1]!==void 0?arguments[1]:this.ctx,c=this.w.config,u=this.w.globals,h=new le(o),g=c.labels.length>0?c.labels.slice():c.xaxis.categories.slice();if(u.isRangeBar=c.chart.type==="rangeBar"&&u.isBarHorizontal,u.hasXaxisGroups=c.xaxis.type==="category"&&c.xaxis.group.groups.length>0,u.hasXaxisGroups&&(u.groups=c.xaxis.group.groups),u.hasSeriesGroups=(n=t[0])===null||n===void 0?void 0:n.group,u.hasSeriesGroups){var m=[],b=F(new Set(t.map(function(T){return T.group})));t.forEach(function(T,V){var O=b.indexOf(T.group);m[O]||(m[O]=[]),m[O].push(T.name)}),u.seriesGroups=m}for(var x=function(){for(var T=0;T0&&(this.twoDSeriesX=g,u.seriesX.push(this.twoDSeriesX))),u.labels.push(this.twoDSeriesX);var P=t[w].data.map(function(T){return L.parseNumber(T)});u.series.push(P)}u.seriesZ.push(this.threeDSeries),t[w].name!==void 0?u.seriesNames.push(t[w].name):u.seriesNames.push("series-"+parseInt(w+1,10)),t[w].color!==void 0?u.seriesColors.push(t[w].color):u.seriesColors.push(void 0)}return this.w}},{key:"parseDataNonAxisCharts",value:function(t){var n=this.w.globals,s=this.w.config;n.series=t.slice(),n.seriesNames=s.labels.slice();for(var o=0;o0?s.labels=n.xaxis.categories:n.labels.length>0?s.labels=n.labels.slice():this.fallbackToCategory?(s.labels=s.labels[0],s.seriesRange.length&&(s.seriesRange.map(function(o){o.forEach(function(c){s.labels.indexOf(c.x)<0&&c.x&&s.labels.push(c.x)})}),s.labels=Array.from(new Set(s.labels.map(JSON.stringify)),JSON.parse)),n.xaxis.convertedCatToNumeric&&(new he(n).convertCatToNumericXaxis(n,this.ctx,s.seriesX[0]),this._generateExternalLabels(t))):this._generateExternalLabels(t)}},{key:"_generateExternalLabels",value:function(t){var n=this.w.globals,s=this.w.config,o=[];if(n.axisCharts){if(n.series.length>0)if(this.isFormatXY())for(var c=s.series.map(function(x,w){return x.data.filter(function(P,T,V){return V.findIndex(function(O){return O.x===P.x})===T})}),u=c.reduce(function(x,w,P,T){return T[x].length>w.length?x:P},0),h=0;h4&&arguments[4]!==void 0?arguments[4]:[],u=arguments.length>5&&arguments[5]!==void 0?arguments[5]:"12px",h=!(arguments.length>6&&arguments[6]!==void 0)||arguments[6],g=this.w,m=t[o]===void 0?"":t[o],b=m,x=g.globals.xLabelFormatter,w=g.config.xaxis.labels.formatter,P=!1,T=new Ce(this.ctx),V=m;h&&(b=T.xLabelFormat(x,m,V,{i:o,dateFormatter:new le(this.ctx).formatDate,w:g}),w!==void 0&&(b=w(m,t[o],{i:o,dateFormatter:new le(this.ctx).formatDate,w:g})));var O,N;n.length>0?(O=n[o].unit,N=null,n.forEach(function(I){I.unit==="month"?N="year":I.unit==="day"?N="month":I.unit==="hour"?N="day":I.unit==="minute"&&(N="hour")}),P=N===O,s=n[o].position,b=n[o].value):g.config.xaxis.type==="datetime"&&w===void 0&&(b=""),b===void 0&&(b=""),b=Array.isArray(b)?b:b.toString();var G=new H(this.ctx),v={};v=g.globals.rotateXLabels&&h?G.getTextRects(b,parseInt(u,10),null,"rotate(".concat(g.config.xaxis.labels.rotate," 0 0)"),!1):G.getTextRects(b,parseInt(u,10));var S=!g.config.xaxis.labels.showDuplicates&&this.ctx.timeScale;return!Array.isArray(b)&&(b.indexOf("NaN")===0||b.toLowerCase().indexOf("invalid")===0||b.toLowerCase().indexOf("infinity")>=0||c.indexOf(b)>=0&&S)&&(b=""),{x:s,text:b,textRect:v,isBold:P}}},{key:"checkLabelBasedOnTickamount",value:function(t,n,s){var o=this.w,c=o.config.xaxis.tickAmount;return c==="dataPoints"&&(c=Math.round(o.globals.gridWidth/120)),c>s||t%Math.round(s/(c+1))==0||(n.text=""),n}},{key:"checkForOverflowingLabels",value:function(t,n,s,o,c){var u=this.w;if(t===0&&u.globals.skipFirstTimelinelabel&&(n.text=""),t===s-1&&u.globals.skipLastTimelinelabel&&(n.text=""),u.config.xaxis.labels.hideOverlappingLabels&&o.length>0){var h=c[c.length-1];n.x0){g.config.yaxis[c].opposite===!0&&(t+=o.width);for(var x=n;x>=0;x--){var w=b+n/10+g.config.yaxis[c].labels.offsetY-1;g.globals.isBarHorizontal&&(w=u*x),g.config.chart.type==="heatmap"&&(w+=u/2);var P=m.drawLine(t+s.offsetX-o.width+o.offsetX,w+o.offsetY,t+s.offsetX+o.offsetX,w+o.offsetY,o.color);h.add(P),b+=u}}}}]),D}(),_e=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w}return p(D,[{key:"scaleSvgNode",value:function(t,n){var s=parseFloat(t.getAttributeNS(null,"width")),o=parseFloat(t.getAttributeNS(null,"height"));t.setAttributeNS(null,"width",s*n),t.setAttributeNS(null,"height",o*n),t.setAttributeNS(null,"viewBox","0 0 "+s+" "+o)}},{key:"fixSvgStringForIe11",value:function(t){if(!L.isIE11())return t.replace(/ /g," ");var n=0,s=t.replace(/xmlns="http:\/\/www.w3.org\/2000\/svg"/g,function(o){return++n===2?'xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev"':o});return s=(s=s.replace(/xmlns:NS\d+=""/g,"")).replace(/NS\d+:(\w+:\w+=")/g,"$1")}},{key:"getSvgString",value:function(t){t==null&&(t=1);var n=this.w.globals.dom.Paper.svg();if(t!==1){var s=this.w.globals.dom.Paper.node.cloneNode(!0);this.scaleSvgNode(s,t),n=new XMLSerializer().serializeToString(s)}return this.fixSvgStringForIe11(n)}},{key:"cleanup",value:function(){var t=this.w,n=t.globals.dom.baseEl.getElementsByClassName("apexcharts-xcrosshairs"),s=t.globals.dom.baseEl.getElementsByClassName("apexcharts-ycrosshairs"),o=t.globals.dom.baseEl.querySelectorAll(".apexcharts-zoom-rect, .apexcharts-selection-rect");Array.prototype.forEach.call(o,function(c){c.setAttribute("width",0)}),n&&n[0]&&(n[0].setAttribute("x",-500),n[0].setAttribute("x1",-500),n[0].setAttribute("x2",-500)),s&&s[0]&&(s[0].setAttribute("y",-100),s[0].setAttribute("y1",-100),s[0].setAttribute("y2",-100))}},{key:"svgUrl",value:function(){this.cleanup();var t=this.getSvgString(),n=new Blob([t],{type:"image/svg+xml;charset=utf-8"});return URL.createObjectURL(n)}},{key:"dataURI",value:function(t){var n=this;return new Promise(function(s){var o=n.w,c=t?t.scale||t.width/o.globals.svgWidth:1;n.cleanup();var u=document.createElement("canvas");u.width=o.globals.svgWidth*c,u.height=parseInt(o.globals.dom.elWrap.style.height,10)*c;var h=o.config.chart.background==="transparent"?"#fff":o.config.chart.background,g=u.getContext("2d");g.fillStyle=h,g.fillRect(0,0,u.width*c,u.height*c);var m=n.getSvgString(c);if(window.canvg&&L.isIE11()){var b=window.canvg.Canvg.fromString(g,m,{ignoreClear:!0,ignoreDimensions:!0});b.start();var x=u.msToBlob();b.stop(),s({blob:x})}else{var w="data:image/svg+xml,"+encodeURIComponent(m),P=new Image;P.crossOrigin="anonymous",P.onload=function(){if(g.drawImage(P,0,0),u.msToBlob){var T=u.msToBlob();s({blob:T})}else{var V=u.toDataURL("image/png");s({imgURI:V})}},P.src=w}})}},{key:"exportToSVG",value:function(){this.triggerDownload(this.svgUrl(),this.w.config.chart.toolbar.export.svg.filename,".svg")}},{key:"exportToPng",value:function(){var t=this;this.dataURI().then(function(n){var s=n.imgURI,o=n.blob;o?navigator.msSaveOrOpenBlob(o,t.w.globals.chartID+".png"):t.triggerDownload(s,t.w.config.chart.toolbar.export.png.filename,".png")})}},{key:"exportToCSV",value:function(t){var n=this,s=t.series,o=t.fileName,c=t.columnDelimiter,u=c===void 0?",":c,h=t.lineDelimiter,g=h===void 0?` +`:h,m=this.w;s||(s=m.config.series);var b=[],x=[],w="",P=m.globals.series.map(function(v,S){return m.globals.collapsedSeriesIndices.indexOf(S)===-1?v:[]}),T=Math.max.apply(Math,F(s.map(function(v){return v.data?v.data.length:0}))),V=new de(this.ctx),O=new Le(this.ctx),N=function(v){var S="";if(m.globals.axisCharts){if(m.config.xaxis.type==="category"||m.config.xaxis.convertedCatToNumeric)if(m.globals.isBarHorizontal){var I=m.globals.yLabelFormatters[0],z=new ue(n.ctx).getActiveConfigSeriesIndex();S=I(m.globals.labels[v],{seriesIndex:z,dataPointIndex:v,w:m})}else S=O.getLabel(m.globals.labels,m.globals.timescaleLabels,0,v).text;m.config.xaxis.type==="datetime"&&(m.config.xaxis.categories.length?S=m.config.xaxis.categories[v]:m.config.labels.length&&(S=m.config.labels[v]))}else S=m.config.labels[v];return Array.isArray(S)&&(S=S.join(" ")),L.isNumber(S)?S:S.split(u).join("")},G=function(v,S){if(b.length&&S===0&&x.push(b.join(u)),v.data){v.data=v.data.length&&v.data||F(Array(T)).map(function(){return""});for(var I=0;I=10?m.config.chart.toolbar.export.csv.dateFormatter(z):L.isNumber(z)?z:z.split(u).join("")));for(var U=0;U0&&!s.globals.isBarHorizontal&&(this.xaxisLabels=s.globals.timescaleLabels.slice()),s.config.xaxis.overwriteCategories&&(this.xaxisLabels=s.config.xaxis.overwriteCategories),this.drawnLabels=[],this.drawnLabelsRects=[],s.config.xaxis.position==="top"?this.offY=0:this.offY=s.globals.gridHeight+1,this.offY=this.offY+s.config.xaxis.axisBorder.offsetY,this.isCategoryBarHorizontal=s.config.chart.type==="bar"&&s.config.plotOptions.bar.horizontal,this.xaxisFontSize=s.config.xaxis.labels.style.fontSize,this.xaxisFontFamily=s.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=s.config.xaxis.labels.style.colors,this.xaxisBorderWidth=s.config.xaxis.axisBorder.width,this.isCategoryBarHorizontal&&(this.xaxisBorderWidth=s.config.yaxis[0].axisBorder.width.toString()),this.xaxisBorderWidth.indexOf("%")>-1?this.xaxisBorderWidth=s.globals.gridWidth*parseInt(this.xaxisBorderWidth,10)/100:this.xaxisBorderWidth=parseInt(this.xaxisBorderWidth,10),this.xaxisBorderHeight=s.config.xaxis.axisBorder.height,this.yaxis=s.config.yaxis[0]}return p(D,[{key:"drawXaxis",value:function(){var t=this.w,n=new H(this.ctx),s=n.group({class:"apexcharts-xaxis",transform:"translate(".concat(t.config.xaxis.offsetX,", ").concat(t.config.xaxis.offsetY,")")}),o=n.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(t.globals.translateXAxisX,", ").concat(t.globals.translateXAxisY,")")});s.add(o);for(var c=[],u=0;u6&&arguments[6]!==void 0?arguments[6]:{},b=[],x=[],w=this.w,P=m.xaxisFontSize||this.xaxisFontSize,T=m.xaxisFontFamily||this.xaxisFontFamily,V=m.xaxisForeColors||this.xaxisForeColors,O=m.fontWeight||w.config.xaxis.labels.style.fontWeight,N=m.cssClass||w.config.xaxis.labels.style.cssClass,G=w.globals.padHorizontal,v=o.length,S=w.config.xaxis.type==="category"?w.globals.dataPoints:v;if(S===0&&v>S&&(S=v),c){var I=S>1?S-1:S;h=w.globals.gridWidth/I,G=G+u(0,h)/2+w.config.xaxis.labels.offsetX}else h=w.globals.gridWidth/S,G=G+u(0,h)+w.config.xaxis.labels.offsetX;for(var z=function(K){var ae=G-u(K,h)/2+w.config.xaxis.labels.offsetX;K===0&&v===1&&h/2===G&&S===1&&(ae=w.globals.gridWidth/2);var re=g.axesUtils.getLabel(o,w.globals.timescaleLabels,ae,K,b,P,t),ge=28;if(w.globals.rotateXLabels&&t&&(ge=22),w.config.xaxis.title.text&&w.config.xaxis.position==="top"&&(ge+=parseFloat(w.config.xaxis.title.style.fontSize)+2),t||(ge=ge+parseFloat(P)+(w.globals.xAxisLabelsHeight-w.globals.xAxisGroupLabelsHeight)+(w.globals.rotateXLabels?10:0)),re=w.config.xaxis.tickAmount!==void 0&&w.config.xaxis.tickAmount!=="dataPoints"&&w.config.xaxis.type!=="datetime"?g.axesUtils.checkLabelBasedOnTickamount(K,re,v):g.axesUtils.checkForOverflowingLabels(K,re,v,b,x),w.config.xaxis.labels.show){var we=n.drawText({x:re.x,y:g.offY+w.config.xaxis.labels.offsetY+ge-(w.config.xaxis.position==="top"?w.globals.xAxisHeight+w.config.xaxis.axisTicks.height-2:0),text:re.text,textAnchor:"middle",fontWeight:re.isBold?600:O,fontSize:P,fontFamily:T,foreColor:Array.isArray(V)?t&&w.config.xaxis.convertedCatToNumeric?V[w.globals.minX+K-1]:V[K]:V,isPlainText:!1,cssClass:(t?"apexcharts-xaxis-label ":"apexcharts-xaxis-group-label ")+N});if(s.add(we),we.on("click",function(Ne){if(typeof w.config.chart.events.xAxisLabelClick=="function"){var je=Object.assign({},w,{labelIndex:K});w.config.chart.events.xAxisLabelClick(Ne,g.ctx,je)}}),t){var xe=document.createElementNS(w.globals.SVGNS,"title");xe.textContent=Array.isArray(re.text)?re.text.join(" "):re.text,we.node.appendChild(xe),re.text!==""&&(b.push(re.text),x.push(re))}}Ko.globals.gridWidth)){var u=this.offY+o.config.xaxis.axisTicks.offsetY;if(n=n+u+o.config.xaxis.axisTicks.height,o.config.xaxis.position==="top"&&(n=u-o.config.xaxis.axisTicks.height),o.config.xaxis.axisTicks.show){var h=new H(this.ctx).drawLine(t+o.config.xaxis.axisTicks.offsetX,u+o.config.xaxis.offsetY,c+o.config.xaxis.axisTicks.offsetX,n+o.config.xaxis.offsetY,o.config.xaxis.axisTicks.color);s.add(h),h.node.classList.add("apexcharts-xaxis-tick")}}}},{key:"getXAxisTicksPositions",value:function(){var t=this.w,n=[],s=this.xaxisLabels.length,o=t.globals.padHorizontal;if(t.globals.timescaleLabels.length>0)for(var c=0;c0){var b=c[c.length-1].getBBox(),x=c[0].getBBox();b.x<-20&&c[c.length-1].parentNode.removeChild(c[c.length-1]),x.x+x.width>t.globals.gridWidth&&!t.globals.isBarHorizontal&&c[0].parentNode.removeChild(c[0]);for(var w=0;w0&&(this.xaxisLabels=n.globals.timescaleLabels.slice())}return p(D,[{key:"drawGridArea",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,n=this.w,s=new H(this.ctx);t===null&&(t=s.group({class:"apexcharts-grid"}));var o=s.drawLine(n.globals.padHorizontal,1,n.globals.padHorizontal,n.globals.gridHeight,"transparent"),c=s.drawLine(n.globals.padHorizontal,n.globals.gridHeight,n.globals.gridWidth,n.globals.gridHeight,"transparent");return t.add(c),t.add(o),t}},{key:"drawGrid",value:function(){var t=null;return this.w.globals.axisCharts&&(t=this.renderGrid(),this.drawGridArea(t.el)),t}},{key:"createGridMask",value:function(){var t=this.w,n=t.globals,s=new H(this.ctx),o=Array.isArray(t.config.stroke.width)?0:t.config.stroke.width;if(Array.isArray(t.config.stroke.width)){var c=0;t.config.stroke.width.forEach(function(x){c=Math.max(c,x)}),o=c}n.dom.elGridRectMask=document.createElementNS(n.SVGNS,"clipPath"),n.dom.elGridRectMask.setAttribute("id","gridRectMask".concat(n.cuid)),n.dom.elGridRectMarkerMask=document.createElementNS(n.SVGNS,"clipPath"),n.dom.elGridRectMarkerMask.setAttribute("id","gridRectMarkerMask".concat(n.cuid)),n.dom.elForecastMask=document.createElementNS(n.SVGNS,"clipPath"),n.dom.elForecastMask.setAttribute("id","forecastMask".concat(n.cuid)),n.dom.elNonForecastMask=document.createElementNS(n.SVGNS,"clipPath"),n.dom.elNonForecastMask.setAttribute("id","nonForecastMask".concat(n.cuid));var u=t.config.chart.type,h=0,g=0;(u==="bar"||u==="rangeBar"||u==="candlestick"||u==="boxPlot"||t.globals.comboBarCount>0)&&t.globals.isXNumeric&&!t.globals.isBarHorizontal&&(h=t.config.grid.padding.left,g=t.config.grid.padding.right,n.barPadForNumericAxis>h&&(h=n.barPadForNumericAxis,g=n.barPadForNumericAxis)),n.dom.elGridRect=s.drawRect(-o/2-h-2,-o/2,n.gridWidth+o+g+h+4,n.gridHeight+o,0,"#fff");var m=t.globals.markers.largestSize+1;n.dom.elGridRectMarker=s.drawRect(2*-m,2*-m,n.gridWidth+4*m,n.gridHeight+4*m,0,"#fff"),n.dom.elGridRectMask.appendChild(n.dom.elGridRect.node),n.dom.elGridRectMarkerMask.appendChild(n.dom.elGridRectMarker.node);var b=n.dom.baseEl.querySelector("defs");b.appendChild(n.dom.elGridRectMask),b.appendChild(n.dom.elForecastMask),b.appendChild(n.dom.elNonForecastMask),b.appendChild(n.dom.elGridRectMarkerMask)}},{key:"_drawGridLines",value:function(t){var n=t.i,s=t.x1,o=t.y1,c=t.x2,u=t.y2,h=t.xCount,g=t.parent,m=this.w;if(!(n===0&&m.globals.skipFirstTimelinelabel||n===h-1&&m.globals.skipLastTimelinelabel&&!m.config.xaxis.labels.formatter||m.config.chart.type==="radar")){m.config.grid.xaxis.lines.show&&this._drawGridLine({i:n,x1:s,y1:o,x2:c,y2:u,xCount:h,parent:g});var b=0;if(m.globals.hasXaxisGroups&&m.config.xaxis.tickPlacement==="between"){var x=m.globals.groups;if(x){for(var w=0,P=0;w2));c++);return!t.globals.isBarHorizontal||this.isRangeBar?(s=this.xaxisLabels.length,this.isRangeBar&&(s--,o=t.globals.labels.length,t.config.xaxis.tickAmount&&t.config.xaxis.labels.formatter&&(s=t.config.xaxis.tickAmount)),this._drawXYLines({xCount:s,tickAmount:o})):(s=o,o=t.globals.xTickAmount,this._drawInvertedXYLines({xCount:s,tickAmount:o})),this.drawGridBands(s,o),{el:this.elg,elGridBorders:this.elGridBorders,xAxisTickWidth:t.globals.gridWidth/s}}},{key:"drawGridBands",value:function(t,n){var s=this.w;if(s.config.grid.row.colors!==void 0&&s.config.grid.row.colors.length>0)for(var o=0,c=s.globals.gridHeight/n,u=s.globals.gridWidth,h=0,g=0;h=s.config.grid.row.colors.length&&(g=0),this._drawGridBandRect({c:g,x1:0,y1:o,x2:u,y2:c,type:"row"}),o+=s.globals.gridHeight/n;if(s.config.grid.column.colors!==void 0&&s.config.grid.column.colors.length>0)for(var m=s.globals.isBarHorizontal||s.config.xaxis.type!=="category"&&!s.config.xaxis.convertedCatToNumeric?t:t-1,b=s.globals.padHorizontal,x=s.globals.padHorizontal+s.globals.gridWidth/m,w=s.globals.gridHeight,P=0,T=0;P=s.config.grid.column.colors.length&&(T=0),this._drawGridBandRect({c:T,x1:b,y1:0,x2:x,y2:w,type:"column"}),b+=s.globals.gridWidth/m}}]),D}(),Z=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w}return p(D,[{key:"niceScale",value:function(t,n){var s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:10,o=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,c=arguments.length>4?arguments[4]:void 0,u=this.w,h=Math.abs(n-t);if((s=this._adjustTicksForSmallRange(s,o,h))==="dataPoints"&&(s=u.globals.dataPoints-1),t===Number.MIN_VALUE&&n===0||!L.isNumber(t)&&!L.isNumber(n)||t===Number.MIN_VALUE&&n===-Number.MAX_VALUE)return t=0,n=s,this.linearScale(t,n,s);t>n?(console.warn("axis.min cannot be greater than axis.max"),n=t+.1):t===n&&(t=t===0?0:t-.5,n=n===0?2:n+.5);var g=[];h<1&&c&&(u.config.chart.type==="candlestick"||u.config.series[o].type==="candlestick"||u.config.chart.type==="boxPlot"||u.config.series[o].type==="boxPlot"||u.globals.isRangeData)&&(n*=1.01);var m=s+1;m<2?m=2:m>2&&(m-=2);var b=h/m,x=Math.floor(L.log10(b)),w=Math.pow(10,x),P=Math.round(b/w);P<1&&(P=1);var T=P*w,V=T*Math.floor(t/T),O=T*Math.ceil(n/T),N=V;if(c&&h>2){for(;g.push(L.stripNumber(N,7)),!((N+=T)>O););return{result:g,niceMin:g[0],niceMax:g[g.length-1]}}var G=t;(g=[]).push(L.stripNumber(G,7));for(var v=Math.abs(n-t)/s,S=0;S<=s;S++)G+=v,g.push(G);return g[g.length-2]>=n&&g.pop(),{result:g,niceMin:g[0],niceMax:g[g.length-1]}}},{key:"linearScale",value:function(t,n){var s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:10,o=arguments.length>3?arguments[3]:void 0,c=Math.abs(n-t);(s=this._adjustTicksForSmallRange(s,o,c))==="dataPoints"&&(s=this.w.globals.dataPoints-1);var u=c/s;s===Number.MAX_VALUE&&(s=10,u=1);for(var h=[],g=t;s>=0;)h.push(g),g+=u,s-=1;return{result:h,niceMin:h[0],niceMax:h[h.length-1]}}},{key:"logarithmicScaleNice",value:function(t,n,s){n<=0&&(n=Math.max(t,s)),t<=0&&(t=Math.min(n,s));for(var o=[],c=Math.ceil(Math.log(n)/Math.log(s)+1),u=Math.floor(Math.log(t)/Math.log(s));u5)o.allSeriesCollapsed=!1,o.yAxisScale[t]=this.logarithmicScale(n,s,u.logBase),o.yAxisScale[t]=u.forceNiceScale?this.logarithmicScaleNice(n,s,u.logBase):this.logarithmicScale(n,s,u.logBase);else if(s!==-Number.MAX_VALUE&&L.isNumber(s))if(o.allSeriesCollapsed=!1,u.min===void 0&&u.max===void 0||u.forceNiceScale){var g=c.yaxis[t].max===void 0&&c.yaxis[t].min===void 0||c.yaxis[t].forceNiceScale;o.yAxisScale[t]=this.niceScale(n,s,u.tickAmount?u.tickAmount:h<5&&h>1?h+1:5,t,g)}else o.yAxisScale[t]=this.linearScale(n,s,u.tickAmount,t);else o.yAxisScale[t]=this.linearScale(0,5,5)}},{key:"setXScale",value:function(t,n){var s=this.w,o=s.globals,c=s.config.xaxis,u=Math.abs(n-t);return n!==-Number.MAX_VALUE&&L.isNumber(n)?o.xAxisScale=this.linearScale(t,n,c.tickAmount?c.tickAmount:u<5&&u>1?u+1:5,0):o.xAxisScale=this.linearScale(0,5,5),o.xAxisScale}},{key:"setMultipleYScales",value:function(){var t=this,n=this.w.globals,s=this.w.config,o=n.minYArr.concat([]),c=n.maxYArr.concat([]),u=[];s.yaxis.forEach(function(h,g){var m=g;s.series.forEach(function(w,P){w.name===h.seriesName&&(m=P,g!==P?u.push({index:P,similarIndex:g,alreadyExists:!0}):u.push({index:P}))});var b=o[m],x=c[m];t.setYScaleForIndex(g,b,x)}),this.sameScaleInMultipleAxes(o,c,u)}},{key:"sameScaleInMultipleAxes",value:function(t,n,s){var o=this,c=this.w.config,u=this.w.globals,h=[];s.forEach(function(V){V.alreadyExists&&(h[V.index]===void 0&&(h[V.index]=[]),h[V.index].push(V.index),h[V.index].push(V.similarIndex))}),u.yAxisSameScaleIndices=h,h.forEach(function(V,O){h.forEach(function(N,G){var v,S;O!==G&&(v=V,S=N,v.filter(function(I){return S.indexOf(I)!==-1})).length>0&&(h[O]=h[O].concat(h[G]))})});var g=h.map(function(V){return V.filter(function(O,N){return V.indexOf(O)===N})}).map(function(V){return V.sort()});h=h.filter(function(V){return!!V});var m=g.slice(),b=m.map(function(V){return JSON.stringify(V)});m=m.filter(function(V,O){return b.indexOf(JSON.stringify(V))===O});var x=[],w=[];t.forEach(function(V,O){m.forEach(function(N,G){N.indexOf(O)>-1&&(x[G]===void 0&&(x[G]=[],w[G]=[]),x[G].push({key:O,value:V}),w[G].push({key:O,value:n[O]}))})});var P=Array.apply(null,Array(m.length)).map(Number.prototype.valueOf,Number.MIN_VALUE),T=Array.apply(null,Array(m.length)).map(Number.prototype.valueOf,-Number.MAX_VALUE);x.forEach(function(V,O){V.forEach(function(N,G){P[O]=Math.min(N.value,P[O])})}),w.forEach(function(V,O){V.forEach(function(N,G){T[O]=Math.max(N.value,T[O])})}),t.forEach(function(V,O){w.forEach(function(N,G){var v=P[G],S=T[G];c.chart.stacked&&(S=0,N.forEach(function(I,z){I.value!==-Number.MAX_VALUE&&(S+=I.value),v!==Number.MIN_VALUE&&(v+=x[G][z].value)})),N.forEach(function(I,z){N[z].key===O&&(c.yaxis[O].min!==void 0&&(v=typeof c.yaxis[O].min=="function"?c.yaxis[O].min(u.minY):c.yaxis[O].min),c.yaxis[O].max!==void 0&&(S=typeof c.yaxis[O].max=="function"?c.yaxis[O].max(u.maxY):c.yaxis[O].max),o.setYScaleForIndex(O,v,S))})})})}},{key:"autoScaleY",value:function(t,n,s){t||(t=this);var o=t.w;if(o.globals.isMultipleYAxis||o.globals.collapsedSeries.length)return console.warn("autoScaleYaxis is not supported in a multi-yaxis chart."),n;var c=o.globals.seriesX[0],u=o.config.chart.stacked;return n.forEach(function(h,g){for(var m=0,b=0;b=s.xaxis.min){m=b;break}var x,w,P=o.globals.minYArr[g],T=o.globals.maxYArr[g],V=o.globals.stackedSeriesTotals;o.globals.series.forEach(function(O,N){var G=O[m];u?(G=V[m],x=w=G,V.forEach(function(v,S){c[S]<=s.xaxis.max&&c[S]>=s.xaxis.min&&(v>w&&v!==null&&(w=v),O[S]=s.xaxis.min){var I=v,z=v;o.globals.series.forEach(function(U,K){v!==null&&(I=Math.min(U[S],I),z=Math.max(U[S],z))}),z>w&&z!==null&&(w=z),IP&&(x=P),n.length>1?(n[N].min=h.min===void 0?x:h.min,n[N].max=h.max===void 0?w:h.max):(n[0].min=h.min===void 0?x:h.min,n[0].max=h.max===void 0?w:h.max)})}),n}}]),D}(),te=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w,this.scales=new Z(t)}return p(D,[{key:"init",value:function(){this.setYRange(),this.setXRange(),this.setZRange()}},{key:"getMinYMaxY",value:function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Number.MAX_VALUE,s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:-Number.MAX_VALUE,o=arguments.length>3&&arguments[3]!==void 0?arguments[3]:null,c=this.w.config,u=this.w.globals,h=-Number.MAX_VALUE,g=Number.MIN_VALUE;o===null&&(o=t+1);var m=u.series,b=m,x=m;c.chart.type==="candlestick"?(b=u.seriesCandleL,x=u.seriesCandleH):c.chart.type==="boxPlot"?(b=u.seriesCandleO,x=u.seriesCandleC):u.isRangeData&&(b=u.seriesRangeStart,x=u.seriesRangeEnd);for(var w=t;wb[w][P]&&b[w][P]<0&&(g=b[w][P])):u.hasNullValues=!0}}return c.chart.type==="rangeBar"&&u.seriesRangeStart.length&&u.isBarHorizontal&&(g=n),c.chart.type==="bar"&&(g<0&&h<0&&(h=0),g===Number.MIN_VALUE&&(g=0)),{minY:g,maxY:h,lowestY:n,highestY:s}}},{key:"setYRange",value:function(){var t=this.w.globals,n=this.w.config;t.maxY=-Number.MAX_VALUE,t.minY=Number.MIN_VALUE;var s=Number.MAX_VALUE;if(t.isMultipleYAxis)for(var o=0;o=0&&s<=10||n.yaxis[0].min!==void 0||n.yaxis[0].max!==void 0)&&(h=0),t.minY=s-5*h/100,s>0&&t.minY<0&&(t.minY=0),t.maxY=t.maxY+5*h/100}return n.yaxis.forEach(function(g,m){g.max!==void 0&&(typeof g.max=="number"?t.maxYArr[m]=g.max:typeof g.max=="function"&&(t.maxYArr[m]=g.max(t.isMultipleYAxis?t.maxYArr[m]:t.maxY)),t.maxY=t.maxYArr[m]),g.min!==void 0&&(typeof g.min=="number"?t.minYArr[m]=g.min:typeof g.min=="function"&&(t.minYArr[m]=g.min(t.isMultipleYAxis?t.minYArr[m]===Number.MIN_VALUE?0:t.minYArr[m]:t.minY)),t.minY=t.minYArr[m])}),t.isBarHorizontal&&["min","max"].forEach(function(g){n.xaxis[g]!==void 0&&typeof n.xaxis[g]=="number"&&(g==="min"?t.minY=n.xaxis[g]:t.maxY=n.xaxis[g])}),t.isMultipleYAxis?(this.scales.setMultipleYScales(),t.minY=s,t.yAxisScale.forEach(function(g,m){t.minYArr[m]=g.niceMin,t.maxYArr[m]=g.niceMax})):(this.scales.setYScaleForIndex(0,t.minY,t.maxY),t.minY=t.yAxisScale[0].niceMin,t.maxY=t.yAxisScale[0].niceMax,t.minYArr[0]=t.yAxisScale[0].niceMin,t.maxYArr[0]=t.yAxisScale[0].niceMax),{minY:t.minY,maxY:t.maxY,minYArr:t.minYArr,maxYArr:t.maxYArr,yAxisScale:t.yAxisScale}}},{key:"setXRange",value:function(){var t=this.w.globals,n=this.w.config,s=n.xaxis.type==="numeric"||n.xaxis.type==="datetime"||n.xaxis.type==="category"&&!t.noLabelsProvided||t.noLabelsProvided||t.isXNumeric;if(t.isXNumeric&&function(){for(var h=0;ht.dataPoints&&t.dataPoints!==0&&(o=t.dataPoints-1)):n.xaxis.tickAmount==="dataPoints"?(t.series.length>1&&(o=t.series[t.maxValsInArrayIndex].length-1),t.isXNumeric&&(o=t.maxX-t.minX-1)):o=n.xaxis.tickAmount,t.xTickAmount=o,n.xaxis.max!==void 0&&typeof n.xaxis.max=="number"&&(t.maxX=n.xaxis.max),n.xaxis.min!==void 0&&typeof n.xaxis.min=="number"&&(t.minX=n.xaxis.min),n.xaxis.range!==void 0&&(t.minX=t.maxX-n.xaxis.range),t.minX!==Number.MAX_VALUE&&t.maxX!==-Number.MAX_VALUE)if(n.xaxis.convertedCatToNumeric&&!t.dataFormatXNumeric){for(var c=[],u=t.minX-1;u0&&(t.xAxisScale=this.scales.linearScale(1,t.labels.length,o-1),t.seriesX=t.labels.slice());s&&(t.labels=t.xAxisScale.result.slice())}return t.isBarHorizontal&&t.labels.length&&(t.xTickAmount=t.labels.length),this._handleSingleDataPoint(),this._getMinXDiff(),{minX:t.minX,maxX:t.maxX}}},{key:"setZRange",value:function(){var t=this.w.globals;if(t.isDataXYZ){for(var n=0;n0){var h=c-o[u-1];h>0&&(t.minXDiff=Math.min(h,t.minXDiff))}}),t.dataPoints!==1&&t.minXDiff!==Number.MAX_VALUE||(t.minXDiff=.5)})}},{key:"_setStackedMinMax",value:function(){var t=this,n=this.w.globals;if(n.series.length){var s=n.seriesGroups;s.length||(s=[this.w.config.series.map(function(u){return u.name})]);var o={},c={};s.forEach(function(u){o[u]=[],c[u]=[],t.w.config.series.map(function(h,g){return u.indexOf(h.name)>-1?g:null}).filter(function(h){return h!==null}).forEach(function(h){for(var g=0;g0?o[u][g]+=parseFloat(n.series[h][g])+1e-4:c[u][g]+=parseFloat(n.series[h][g]))})}),Object.entries(o).forEach(function(u){var h=M(u,1)[0];o[h].forEach(function(g,m){n.maxY=Math.max(n.maxY,o[h][m]),n.minY=Math.min(n.minY,c[h][m])})})}}}]),D}(),se=function(){function D(t,n){d(this,D),this.ctx=t,this.elgrid=n,this.w=t.w;var s=this.w;this.xaxisFontSize=s.config.xaxis.labels.style.fontSize,this.axisFontFamily=s.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=s.config.xaxis.labels.style.colors,this.isCategoryBarHorizontal=s.config.chart.type==="bar"&&s.config.plotOptions.bar.horizontal,this.xAxisoffX=0,s.config.xaxis.position==="bottom"&&(this.xAxisoffX=s.globals.gridHeight),this.drawnLabels=[],this.axesUtils=new Le(t)}return p(D,[{key:"drawYaxis",value:function(t){var n=this,s=this.w,o=new H(this.ctx),c=s.config.yaxis[t].labels.style,u=c.fontSize,h=c.fontFamily,g=c.fontWeight,m=o.group({class:"apexcharts-yaxis",rel:t,transform:"translate("+s.globals.translateYAxisX[t]+", 0)"});if(this.axesUtils.isYAxisHidden(t))return m;var b=o.group({class:"apexcharts-yaxis-texts-g"});m.add(b);var x=s.globals.yAxisScale[t].result.length-1,w=s.globals.gridHeight/x,P=s.globals.translateY,T=s.globals.yLabelFormatters[t],V=s.globals.yAxisScale[t].result.slice();V=this.axesUtils.checkForReversedLabels(t,V);var O="";if(s.config.yaxis[t].labels.show)for(var N=function(ae){var re=V[ae];re=T(re,ae,s);var ge=s.config.yaxis[t].labels.padding;s.config.yaxis[t].opposite&&s.config.yaxis.length!==0&&(ge*=-1);var we="end";s.config.yaxis[t].opposite&&(we="start"),s.config.yaxis[t].labels.align==="left"?we="start":s.config.yaxis[t].labels.align==="center"?we="middle":s.config.yaxis[t].labels.align==="right"&&(we="end");var xe=n.axesUtils.getYAxisForeColor(c.colors,t),Ne=o.drawText({x:ge,y:P+x/10+s.config.yaxis[t].labels.offsetY+1,text:re,textAnchor:we,fontSize:u,fontFamily:h,fontWeight:g,maxWidth:s.config.yaxis[t].labels.maxWidth,foreColor:Array.isArray(xe)?xe[ae]:xe,isPlainText:!1,cssClass:"apexcharts-yaxis-label "+c.cssClass});ae===x&&(O=Ne),b.add(Ne);var je=document.createElementNS(s.globals.SVGNS,"title");if(je.textContent=Array.isArray(re)?re.join(" "):re,Ne.node.appendChild(je),s.config.yaxis[t].labels.rotate!==0){var ot=o.rotateAroundCenter(O.node),lt=o.rotateAroundCenter(Ne.node);Ne.node.setAttribute("transform","rotate(".concat(s.config.yaxis[t].labels.rotate," ").concat(ot.x," ").concat(lt.y,")"))}P+=w},G=x;G>=0;G--)N(G);if(s.config.yaxis[t].title.text!==void 0){var v=o.group({class:"apexcharts-yaxis-title"}),S=0;s.config.yaxis[t].opposite&&(S=s.globals.translateYAxisX[t]);var I=o.drawText({x:S,y:s.globals.gridHeight/2+s.globals.translateY+s.config.yaxis[t].title.offsetY,text:s.config.yaxis[t].title.text,textAnchor:"end",foreColor:s.config.yaxis[t].title.style.color,fontSize:s.config.yaxis[t].title.style.fontSize,fontWeight:s.config.yaxis[t].title.style.fontWeight,fontFamily:s.config.yaxis[t].title.style.fontFamily,cssClass:"apexcharts-yaxis-title-text "+s.config.yaxis[t].title.style.cssClass});v.add(I),m.add(v)}var z=s.config.yaxis[t].axisBorder,U=31+z.offsetX;if(s.config.yaxis[t].opposite&&(U=-31-z.offsetX),z.show){var K=o.drawLine(U,s.globals.translateY+z.offsetY-2,U,s.globals.gridHeight+s.globals.translateY+z.offsetY+2,z.color,0,z.width);m.add(K)}return s.config.yaxis[t].axisTicks.show&&this.axesUtils.drawYAxisTicks(U,x,z,s.config.yaxis[t].axisTicks,t,w,m),m}},{key:"drawYaxisInversed",value:function(t){var n=this.w,s=new H(this.ctx),o=s.group({class:"apexcharts-xaxis apexcharts-yaxis-inversed"}),c=s.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(n.globals.translateXAxisX,", ").concat(n.globals.translateXAxisY,")")});o.add(c);var u=n.globals.yAxisScale[t].result.length-1,h=n.globals.gridWidth/u+.1,g=h+n.config.xaxis.labels.offsetX,m=n.globals.xLabelFormatter,b=n.globals.yAxisScale[t].result.slice(),x=n.globals.timescaleLabels;x.length>0&&(this.xaxisLabels=x.slice(),u=(b=x.slice()).length),b=this.axesUtils.checkForReversedLabels(t,b);var w=x.length;if(n.config.xaxis.labels.show)for(var P=w?0:u;w?P=0;w?P++:P--){var T=b[P];T=m(T,P,n);var V=n.globals.gridWidth+n.globals.padHorizontal-(g-h+n.config.xaxis.labels.offsetX);if(x.length){var O=this.axesUtils.getLabel(b,x,V,P,this.drawnLabels,this.xaxisFontSize);V=O.x,T=O.text,this.drawnLabels.push(O.text),P===0&&n.globals.skipFirstTimelinelabel&&(T=""),P===b.length-1&&n.globals.skipLastTimelinelabel&&(T="")}var N=s.drawText({x:V,y:this.xAxisoffX+n.config.xaxis.labels.offsetY+30-(n.config.xaxis.position==="top"?n.globals.xAxisHeight+n.config.xaxis.axisTicks.height-2:0),text:T,textAnchor:"middle",foreColor:Array.isArray(this.xaxisForeColors)?this.xaxisForeColors[t]:this.xaxisForeColors,fontSize:this.xaxisFontSize,fontFamily:this.xaxisFontFamily,fontWeight:n.config.xaxis.labels.style.fontWeight,isPlainText:!1,cssClass:"apexcharts-xaxis-label "+n.config.xaxis.labels.style.cssClass});c.add(N),N.tspan(T);var G=document.createElementNS(n.globals.SVGNS,"title");G.textContent=T,N.node.appendChild(G),g+=h}return this.inversedYAxisTitleText(o),this.inversedYAxisBorder(o),o}},{key:"inversedYAxisBorder",value:function(t){var n=this.w,s=new H(this.ctx),o=n.config.xaxis.axisBorder;if(o.show){var c=0;n.config.chart.type==="bar"&&n.globals.isXNumeric&&(c-=15);var u=s.drawLine(n.globals.padHorizontal+c+o.offsetX,this.xAxisoffX,n.globals.gridWidth,this.xAxisoffX,o.color,0,o.height);this.elgrid&&this.elgrid.elGridBorders&&n.config.grid.show?this.elgrid.elGridBorders.add(u):t.add(u)}}},{key:"inversedYAxisTitleText",value:function(t){var n=this.w,s=new H(this.ctx);if(n.config.xaxis.title.text!==void 0){var o=s.group({class:"apexcharts-xaxis-title apexcharts-yaxis-title-inversed"}),c=s.drawText({x:n.globals.gridWidth/2+n.config.xaxis.title.offsetX,y:this.xAxisoffX+parseFloat(this.xaxisFontSize)+parseFloat(n.config.xaxis.title.style.fontSize)+n.config.xaxis.title.offsetY+20,text:n.config.xaxis.title.text,textAnchor:"middle",fontSize:n.config.xaxis.title.style.fontSize,fontFamily:n.config.xaxis.title.style.fontFamily,fontWeight:n.config.xaxis.title.style.fontWeight,foreColor:n.config.xaxis.title.style.color,cssClass:"apexcharts-xaxis-title-text "+n.config.xaxis.title.style.cssClass});o.add(c),t.add(o)}}},{key:"yAxisTitleRotate",value:function(t,n){var s=this.w,o=new H(this.ctx),c={width:0,height:0},u={width:0,height:0},h=s.globals.dom.baseEl.querySelector(" .apexcharts-yaxis[rel='".concat(t,"'] .apexcharts-yaxis-texts-g"));h!==null&&(c=h.getBoundingClientRect());var g=s.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(t,"'] .apexcharts-yaxis-title text"));if(g!==null&&(u=g.getBoundingClientRect()),g!==null){var m=this.xPaddingForYAxisTitle(t,c,u,n);g.setAttribute("x",m.xPos-(n?10:0))}if(g!==null){var b=o.rotateAroundCenter(g);g.setAttribute("transform","rotate(".concat(n?-1*s.config.yaxis[t].title.rotate:s.config.yaxis[t].title.rotate," ").concat(b.x," ").concat(b.y,")"))}}},{key:"xPaddingForYAxisTitle",value:function(t,n,s,o){var c=this.w,u=0,h=0,g=10;return c.config.yaxis[t].title.text===void 0||t<0?{xPos:h,padd:0}:(o?(h=n.width+c.config.yaxis[t].title.offsetX+s.width/2+g/2,(u+=1)===0&&(h-=g/2)):(h=-1*n.width+c.config.yaxis[t].title.offsetX+g/2+s.width/2,c.globals.isBarHorizontal&&(g=25,h=-1*n.width-c.config.yaxis[t].title.offsetX-g)),{xPos:h,padd:g})}},{key:"setYAxisXPosition",value:function(t,n){var s=this.w,o=0,c=0,u=18,h=1;s.config.yaxis.length>1&&(this.multipleYs=!0),s.config.yaxis.map(function(g,m){var b=s.globals.ignoreYAxisIndexes.indexOf(m)>-1||!g.show||g.floating||t[m].width===0,x=t[m].width+n[m].width;g.opposite?s.globals.isBarHorizontal?(c=s.globals.gridWidth+s.globals.translateX-1,s.globals.translateYAxisX[m]=c-g.labels.offsetX):(c=s.globals.gridWidth+s.globals.translateX+h,b||(h=h+x+20),s.globals.translateYAxisX[m]=c-g.labels.offsetX+20):(o=s.globals.translateX-u,b||(u=u+x+20),s.globals.translateYAxisX[m]=o+g.labels.offsetX)})}},{key:"setYAxisTextAlignments",value:function(){var t=this.w,n=t.globals.dom.baseEl.getElementsByClassName("apexcharts-yaxis");(n=L.listToArray(n)).forEach(function(s,o){var c=t.config.yaxis[o];if(c&&!c.floating&&c.labels.align!==void 0){var u=t.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(o,"'] .apexcharts-yaxis-texts-g")),h=t.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis[rel='".concat(o,"'] .apexcharts-yaxis-label"));h=L.listToArray(h);var g=u.getBoundingClientRect();c.labels.align==="left"?(h.forEach(function(m,b){m.setAttribute("text-anchor","start")}),c.opposite||u.setAttribute("transform","translate(-".concat(g.width,", 0)"))):c.labels.align==="center"?(h.forEach(function(m,b){m.setAttribute("text-anchor","middle")}),u.setAttribute("transform","translate(".concat(g.width/2*(c.opposite?1:-1),", 0)"))):c.labels.align==="right"&&(h.forEach(function(m,b){m.setAttribute("text-anchor","end")}),c.opposite&&u.setAttribute("transform","translate(".concat(g.width,", 0)")))}})}}]),D}(),ce=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w,this.documentEvent=L.bind(this.documentEvent,this)}return p(D,[{key:"addEventListener",value:function(t,n){var s=this.w;s.globals.events.hasOwnProperty(t)?s.globals.events[t].push(n):s.globals.events[t]=[n]}},{key:"removeEventListener",value:function(t,n){var s=this.w;if(s.globals.events.hasOwnProperty(t)){var o=s.globals.events[t].indexOf(n);o!==-1&&s.globals.events[t].splice(o,1)}}},{key:"fireEvent",value:function(t,n){var s=this.w;if(s.globals.events.hasOwnProperty(t)){n&&n.length||(n=[]);for(var o=s.globals.events[t],c=o.length,u=0;u0&&(n=this.w.config.chart.locales.concat(window.Apex.chart.locales));var s=n.filter(function(c){return c.name===t})[0];if(!s)throw new Error("Wrong locale name provided. Please make sure you set the correct locale name in options");var o=L.extend(ie,s);this.w.globals.locale=o.options}}]),D}(),ke=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w}return p(D,[{key:"drawAxis",value:function(t,n){var s,o,c=this,u=this.w.globals,h=this.w.config,g=new be(this.ctx,n),m=new se(this.ctx,n);u.axisCharts&&t!=="radar"&&(u.isBarHorizontal?(o=m.drawYaxisInversed(0),s=g.drawXaxisInversed(0),u.dom.elGraphical.add(s),u.dom.elGraphical.add(o)):(s=g.drawXaxis(),u.dom.elGraphical.add(s),h.yaxis.map(function(b,x){if(u.ignoreYAxisIndexes.indexOf(x)===-1&&(o=m.drawYaxis(x),u.dom.Paper.add(o),c.w.config.grid.position==="back")){var w=u.dom.Paper.children()[1];w.remove(),u.dom.Paper.add(w)}})))}}]),D}(),Oe=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w}return p(D,[{key:"drawXCrosshairs",value:function(){var t=this.w,n=new H(this.ctx),s=new Y(this.ctx),o=t.config.xaxis.crosshairs.fill.gradient,c=t.config.xaxis.crosshairs.dropShadow,u=t.config.xaxis.crosshairs.fill.type,h=o.colorFrom,g=o.colorTo,m=o.opacityFrom,b=o.opacityTo,x=o.stops,w=c.enabled,P=c.left,T=c.top,V=c.blur,O=c.color,N=c.opacity,G=t.config.xaxis.crosshairs.fill.color;if(t.config.xaxis.crosshairs.show){u==="gradient"&&(G=n.drawGradient("vertical",h,g,m,b,null,x,null));var v=n.drawRect();t.config.xaxis.crosshairs.width===1&&(v=n.drawLine());var S=t.globals.gridHeight;(!L.isNumber(S)||S<0)&&(S=0);var I=t.config.xaxis.crosshairs.width;(!L.isNumber(I)||I<0)&&(I=0),v.attr({class:"apexcharts-xcrosshairs",x:0,y:0,y2:S,width:I,height:S,fill:G,filter:"none","fill-opacity":t.config.xaxis.crosshairs.opacity,stroke:t.config.xaxis.crosshairs.stroke.color,"stroke-width":t.config.xaxis.crosshairs.stroke.width,"stroke-dasharray":t.config.xaxis.crosshairs.stroke.dashArray}),w&&(v=s.dropShadow(v,{left:P,top:T,blur:V,color:O,opacity:N})),t.globals.dom.elGraphical.add(v)}}},{key:"drawYCrosshairs",value:function(){var t=this.w,n=new H(this.ctx),s=t.config.yaxis[0].crosshairs,o=t.globals.barPadForNumericAxis;if(t.config.yaxis[0].crosshairs.show){var c=n.drawLine(-o,0,t.globals.gridWidth+o,0,s.stroke.color,s.stroke.dashArray,s.stroke.width);c.attr({class:"apexcharts-ycrosshairs"}),t.globals.dom.elGraphical.add(c)}var u=n.drawLine(-o,0,t.globals.gridWidth+o,0,s.stroke.color,0,0);u.attr({class:"apexcharts-ycrosshairs-hidden"}),t.globals.dom.elGraphical.add(u)}}]),D}(),Pe=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w}return p(D,[{key:"checkResponsiveConfig",value:function(t){var n=this,s=this.w,o=s.config;if(o.responsive.length!==0){var c=o.responsive.slice();c.sort(function(m,b){return m.breakpoint>b.breakpoint?1:b.breakpoint>m.breakpoint?-1:0}).reverse();var u=new Se({}),h=function(){var m=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},b=c[0].breakpoint,x=window.innerWidth>0?window.innerWidth:screen.width;if(x>b){var w=J.extendArrayProps(u,s.globals.initialConfig,s);m=L.extend(w,m),m=L.extend(s.config,m),n.overrideResponsiveOptions(m)}else for(var P=0;P0&&typeof s.config.colors[0]=="function"&&(s.globals.colors=s.config.series.map(function(T,V){var O=s.config.colors[V];return O||(O=s.config.colors[0]),typeof O=="function"?(n.isColorFn=!0,O({value:s.globals.axisCharts?s.globals.series[V][0]?s.globals.series[V][0]:0:s.globals.series[V],seriesIndex:V,dataPointIndex:V,w:s})):O}))),s.globals.seriesColors.map(function(T,V){T&&(s.globals.colors[V]=T)}),s.config.theme.monochrome.enabled){var c=[],u=s.globals.series.length;(this.isBarDistributed||this.isHeatmapDistributed)&&(u=s.globals.series[0].length*s.globals.series.length);for(var h=s.config.theme.monochrome.color,g=1/(u/s.config.theme.monochrome.shadeIntensity),m=s.config.theme.monochrome.shadeTo,b=0,x=0;x2&&arguments[2]!==void 0?arguments[2]:null,o=this.w,c=n||o.globals.series.length;if(s===null&&(s=this.isBarDistributed||this.isHeatmapDistributed||o.config.chart.type==="heatmap"&&o.config.plotOptions.heatmap.colorScale.inverse),s&&o.globals.series.length&&(c=o.globals.series[o.globals.maxValsInArrayIndex].length*o.globals.series.length),t.lengtht.globals.svgWidth&&(this.dCtx.lgRect.width=t.globals.svgWidth/1.5),this.dCtx.lgRect}},{key:"getLargestStringFromMultiArr",value:function(t,n){var s=t;if(this.w.globals.isMultiLineX){var o=n.map(function(u,h){return Array.isArray(u)?u.length:1}),c=Math.max.apply(Math,F(o));s=n[o.indexOf(c)]}return s}}]),D}(),Ge=function(){function D(t){d(this,D),this.w=t.w,this.dCtx=t}return p(D,[{key:"getxAxisLabelsCoords",value:function(){var t,n=this.w,s=n.globals.labels.slice();if(n.config.xaxis.convertedCatToNumeric&&s.length===0&&(s=n.globals.categoryLabels),n.globals.timescaleLabels.length>0){var o=this.getxAxisTimeScaleLabelsCoords();t={width:o.width,height:o.height},n.globals.rotateXLabels=!1}else{this.dCtx.lgWidthForSideLegends=n.config.legend.position!=="left"&&n.config.legend.position!=="right"||n.config.legend.floating?0:this.dCtx.lgRect.width;var c=n.globals.xLabelFormatter,u=L.getLargestStringFromArr(s),h=this.dCtx.dimHelpers.getLargestStringFromMultiArr(u,s);n.globals.isBarHorizontal&&(h=u=n.globals.yAxisScale[0].result.reduce(function(T,V){return T.length>V.length?T:V},0));var g=new Ce(this.dCtx.ctx),m=u;u=g.xLabelFormat(c,u,m,{i:void 0,dateFormatter:new le(this.dCtx.ctx).formatDate,w:n}),h=g.xLabelFormat(c,h,m,{i:void 0,dateFormatter:new le(this.dCtx.ctx).formatDate,w:n}),(n.config.xaxis.convertedCatToNumeric&&u===void 0||String(u).trim()==="")&&(h=u="1");var b=new H(this.dCtx.ctx),x=b.getTextRects(u,n.config.xaxis.labels.style.fontSize),w=x;if(u!==h&&(w=b.getTextRects(h,n.config.xaxis.labels.style.fontSize)),(t={width:x.width>=w.width?x.width:w.width,height:x.height>=w.height?x.height:w.height}).width*s.length>n.globals.svgWidth-this.dCtx.lgWidthForSideLegends-this.dCtx.yAxisWidth-this.dCtx.gridPad.left-this.dCtx.gridPad.right&&n.config.xaxis.labels.rotate!==0||n.config.xaxis.labels.rotateAlways){if(!n.globals.isBarHorizontal){n.globals.rotateXLabels=!0;var P=function(T){return b.getTextRects(T,n.config.xaxis.labels.style.fontSize,n.config.xaxis.labels.style.fontFamily,"rotate(".concat(n.config.xaxis.labels.rotate," 0 0)"),!1)};x=P(u),u!==h&&(w=P(h)),t.height=(x.height>w.height?x.height:w.height)/1.5,t.width=x.width>w.width?x.width:w.width}}else n.globals.rotateXLabels=!1}return n.config.xaxis.labels.show||(t={width:0,height:0}),{width:t.width,height:t.height}}},{key:"getxAxisGroupLabelsCoords",value:function(){var t,n=this.w;if(!n.globals.hasXaxisGroups)return{width:0,height:0};var s,o=((t=n.config.xaxis.group.style)===null||t===void 0?void 0:t.fontSize)||n.config.xaxis.labels.style.fontSize,c=n.globals.groups.map(function(x){return x.title}),u=L.getLargestStringFromArr(c),h=this.dCtx.dimHelpers.getLargestStringFromMultiArr(u,c),g=new H(this.dCtx.ctx),m=g.getTextRects(u,o),b=m;return u!==h&&(b=g.getTextRects(h,o)),s={width:m.width>=b.width?m.width:b.width,height:m.height>=b.height?m.height:b.height},n.config.xaxis.labels.show||(s={width:0,height:0}),{width:s.width,height:s.height}}},{key:"getxAxisTitleCoords",value:function(){var t=this.w,n=0,s=0;if(t.config.xaxis.title.text!==void 0){var o=new H(this.dCtx.ctx).getTextRects(t.config.xaxis.title.text,t.config.xaxis.title.style.fontSize);n=o.width,s=o.height}return{width:n,height:s}}},{key:"getxAxisTimeScaleLabelsCoords",value:function(){var t,n=this.w;this.dCtx.timescaleLabels=n.globals.timescaleLabels.slice();var s=this.dCtx.timescaleLabels.map(function(c){return c.value}),o=s.reduce(function(c,u){return c===void 0?(console.error("You have possibly supplied invalid Date format. Please supply a valid JavaScript Date"),0):c.length>u.length?c:u},0);return 1.05*(t=new H(this.dCtx.ctx).getTextRects(o,n.config.xaxis.labels.style.fontSize)).width*s.length>n.globals.gridWidth&&n.config.xaxis.labels.rotate!==0&&(n.globals.overlappingXLabels=!0),t}},{key:"additionalPaddingXLabels",value:function(t){var n=this,s=this.w,o=s.globals,c=s.config,u=c.xaxis.type,h=t.width;o.skipLastTimelinelabel=!1,o.skipFirstTimelinelabel=!1;var g=s.config.yaxis[0].opposite&&s.globals.isBarHorizontal,m=function(b,x){c.yaxis.length>1&&function(w){return o.collapsedSeriesIndices.indexOf(w)!==-1}(x)||function(w){if(n.dCtx.timescaleLabels&&n.dCtx.timescaleLabels.length){var P=n.dCtx.timescaleLabels[0],T=n.dCtx.timescaleLabels[n.dCtx.timescaleLabels.length-1].position+h/1.75-n.dCtx.yAxisWidthRight,V=P.position-h/1.75+n.dCtx.yAxisWidthLeft,O=s.config.legend.position==="right"&&n.dCtx.lgRect.width>0?n.dCtx.lgRect.width:0;T>o.svgWidth-o.translateX-O&&(o.skipLastTimelinelabel=!0),V<-(w.show&&!w.floating||c.chart.type!=="bar"&&c.chart.type!=="candlestick"&&c.chart.type!=="rangeBar"&&c.chart.type!=="boxPlot"?10:h/1.75)&&(o.skipFirstTimelinelabel=!0)}else u==="datetime"?n.dCtx.gridPad.rightString(g.niceMax).length?x:g.niceMax,P=b(w,{seriesIndex:h,dataPointIndex:-1,w:n}),T=P;if(P!==void 0&&P.length!==0||(P=w),n.globals.isBarHorizontal){o=0;var V=n.globals.labels.slice();P=b(P=L.getLargestStringFromArr(V),{seriesIndex:h,dataPointIndex:-1,w:n}),T=t.dCtx.dimHelpers.getLargestStringFromMultiArr(P,V)}var O=new H(t.dCtx.ctx),N="rotate(".concat(u.labels.rotate," 0 0)"),G=O.getTextRects(P,u.labels.style.fontSize,u.labels.style.fontFamily,N,!1),v=G;P!==T&&(v=O.getTextRects(T,u.labels.style.fontSize,u.labels.style.fontFamily,N,!1)),s.push({width:(m>v.width||m>G.width?m:v.width>G.width?v.width:G.width)+o,height:v.height>G.height?v.height:G.height})}else s.push({width:0,height:0})}),s}},{key:"getyAxisTitleCoords",value:function(){var t=this,n=this.w,s=[];return n.config.yaxis.map(function(o,c){if(o.show&&o.title.text!==void 0){var u=new H(t.dCtx.ctx),h="rotate(".concat(o.title.rotate," 0 0)"),g=u.getTextRects(o.title.text,o.title.style.fontSize,o.title.style.fontFamily,h,!1);s.push({width:g.width,height:g.height})}else s.push({width:0,height:0})}),s}},{key:"getTotalYAxisWidth",value:function(){var t=this.w,n=0,s=0,o=0,c=t.globals.yAxisScale.length>1?10:0,u=new Le(this.dCtx.ctx),h=function(g,m){var b=t.config.yaxis[m].floating,x=0;g.width>0&&!b?(x=g.width+c,function(w){return t.globals.ignoreYAxisIndexes.indexOf(w)>-1}(m)&&(x=x-g.width-c)):x=b||u.isYAxisHidden(m)?0:5,t.config.yaxis[m].opposite?o+=x:s+=x,n+=x};return t.globals.yLabelsCoords.map(function(g,m){h(g,m)}),t.globals.yTitleCoords.map(function(g,m){h(g,m)}),t.globals.isBarHorizontal&&!t.config.yaxis[0].floating&&(n=t.globals.yLabelsCoords[0].width+t.globals.yTitleCoords[0].width+15),this.dCtx.yAxisWidthLeft=s,this.dCtx.yAxisWidthRight=o,n}}]),D}(),Qe=function(){function D(t){d(this,D),this.w=t.w,this.dCtx=t}return p(D,[{key:"gridPadForColumnsInNumericAxis",value:function(t){var n=this.w;if(n.globals.noData||n.globals.allSeriesCollapsed)return 0;var s=function(b){return b==="bar"||b==="rangeBar"||b==="candlestick"||b==="boxPlot"},o=n.config.chart.type,c=0,u=s(o)?n.config.series.length:1;if(n.globals.comboBarCount>0&&(u=n.globals.comboBarCount),n.globals.collapsedSeries.forEach(function(b){s(b.type)&&(u-=1)}),n.config.chart.stacked&&(u=1),(s(o)||n.globals.comboBarCount>0)&&n.globals.isXNumeric&&!n.globals.isBarHorizontal&&u>0){var h,g,m=Math.abs(n.globals.initialMaxX-n.globals.initialMinX);m<=3&&(m=n.globals.dataPoints),h=m/t,n.globals.minXDiff&&n.globals.minXDiff/h>0&&(g=n.globals.minXDiff/h),g>t/2&&(g/=2),(c=g/u*parseInt(n.config.plotOptions.bar.columnWidth,10)/100)<1&&(c=1),c=c/(u>1?1:1.5)+5,n.globals.barPadForNumericAxis=c}return c}},{key:"gridPadFortitleSubtitle",value:function(){var t=this,n=this.w,s=n.globals,o=this.dCtx.isSparkline||!n.globals.axisCharts?0:10;["title","subtitle"].forEach(function(h){n.config[h].text!==void 0?o+=n.config[h].margin:o+=t.dCtx.isSparkline||!n.globals.axisCharts?0:5}),!n.config.legend.show||n.config.legend.position!=="bottom"||n.config.legend.floating||n.globals.axisCharts||(o+=10);var c=this.dCtx.dimHelpers.getTitleSubtitleCoords("title"),u=this.dCtx.dimHelpers.getTitleSubtitleCoords("subtitle");s.gridHeight=s.gridHeight-c.height-u.height-o,s.translateY=s.translateY+c.height+u.height+o}},{key:"setGridXPosForDualYAxis",value:function(t,n){var s=this.w,o=new Le(this.dCtx.ctx);s.config.yaxis.map(function(c,u){s.globals.ignoreYAxisIndexes.indexOf(u)!==-1||c.floating||o.isYAxisHidden(u)||(c.opposite&&(s.globals.translateX=s.globals.translateX-(n[u].width+t[u].width)-parseInt(s.config.yaxis[u].labels.style.fontSize,10)/1.2-12),s.globals.translateX<2&&(s.globals.translateX=2))})}}]),D}(),rt=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w,this.lgRect={},this.yAxisWidth=0,this.yAxisWidthLeft=0,this.yAxisWidthRight=0,this.xAxisHeight=0,this.isSparkline=this.w.config.chart.sparkline.enabled,this.dimHelpers=new qe(this),this.dimYAxis=new Ue(this),this.dimXAxis=new Ge(this),this.dimGrid=new Qe(this),this.lgWidthForSideLegends=0,this.gridPad=this.w.config.grid.padding,this.xPadRight=0,this.xPadLeft=0}return p(D,[{key:"plotCoords",value:function(){var t=this,n=this.w,s=n.globals;this.lgRect=this.dimHelpers.getLegendsRect(),this.isSparkline&&(n.config.markers.discrete.length>0||n.config.markers.size>0)&&Object.entries(this.gridPad).forEach(function(c){var u=M(c,2),h=u[0],g=u[1];t.gridPad[h]=Math.max(g,t.w.globals.markers.largestSize/1.5)}),s.axisCharts?this.setDimensionsForAxisCharts():this.setDimensionsForNonAxisCharts(),this.dimGrid.gridPadFortitleSubtitle(),s.gridHeight=s.gridHeight-this.gridPad.top-this.gridPad.bottom,s.gridWidth=s.gridWidth-this.gridPad.left-this.gridPad.right-this.xPadRight-this.xPadLeft;var o=this.dimGrid.gridPadForColumnsInNumericAxis(s.gridWidth);s.gridWidth=s.gridWidth-2*o,s.translateX=s.translateX+this.gridPad.left+this.xPadLeft+(o>0?o+4:0),s.translateY=s.translateY+this.gridPad.top}},{key:"setDimensionsForAxisCharts",value:function(){var t=this,n=this.w,s=n.globals,o=this.dimYAxis.getyAxisLabelsCoords(),c=this.dimYAxis.getyAxisTitleCoords();n.globals.yLabelsCoords=[],n.globals.yTitleCoords=[],n.config.yaxis.map(function(P,T){n.globals.yLabelsCoords.push({width:o[T].width,index:T}),n.globals.yTitleCoords.push({width:c[T].width,index:T})}),this.yAxisWidth=this.dimYAxis.getTotalYAxisWidth();var u=this.dimXAxis.getxAxisLabelsCoords(),h=this.dimXAxis.getxAxisGroupLabelsCoords(),g=this.dimXAxis.getxAxisTitleCoords();this.conditionalChecksForAxisCoords(u,g,h),s.translateXAxisY=n.globals.rotateXLabels?this.xAxisHeight/8:-4,s.translateXAxisX=n.globals.rotateXLabels&&n.globals.isXNumeric&&n.config.xaxis.labels.rotate<=-45?-this.xAxisWidth/4:0,n.globals.isBarHorizontal&&(s.rotateXLabels=!1,s.translateXAxisY=parseInt(n.config.xaxis.labels.style.fontSize,10)/1.5*-1),s.translateXAxisY=s.translateXAxisY+n.config.xaxis.labels.offsetY,s.translateXAxisX=s.translateXAxisX+n.config.xaxis.labels.offsetX;var m=this.yAxisWidth,b=this.xAxisHeight;s.xAxisLabelsHeight=this.xAxisHeight-g.height,s.xAxisGroupLabelsHeight=s.xAxisLabelsHeight-u.height,s.xAxisLabelsWidth=this.xAxisWidth,s.xAxisHeight=this.xAxisHeight;var x=10;(n.config.chart.type==="radar"||this.isSparkline)&&(m=0,b=s.goldenPadding),this.isSparkline&&(this.lgRect={height:0,width:0}),(this.isSparkline||n.config.chart.type==="treemap")&&(m=0,b=0,x=0),this.isSparkline||this.dimXAxis.additionalPaddingXLabels(u);var w=function(){s.translateX=m,s.gridHeight=s.svgHeight-t.lgRect.height-b-(t.isSparkline||n.config.chart.type==="treemap"?0:n.globals.rotateXLabels?10:15),s.gridWidth=s.svgWidth-m};switch(n.config.xaxis.position==="top"&&(x=s.xAxisHeight-n.config.xaxis.axisTicks.height-5),n.config.legend.position){case"bottom":s.translateY=x,w();break;case"top":s.translateY=this.lgRect.height+x,w();break;case"left":s.translateY=x,s.translateX=this.lgRect.width+m,s.gridHeight=s.svgHeight-b-12,s.gridWidth=s.svgWidth-this.lgRect.width-m;break;case"right":s.translateY=x,s.translateX=m,s.gridHeight=s.svgHeight-b-12,s.gridWidth=s.svgWidth-this.lgRect.width-m-5;break;default:throw new Error("Legend position not supported")}this.dimGrid.setGridXPosForDualYAxis(c,o),new se(this.ctx).setYAxisXPosition(o,c)}},{key:"setDimensionsForNonAxisCharts",value:function(){var t=this.w,n=t.globals,s=t.config,o=0;t.config.legend.show&&!t.config.legend.floating&&(o=20);var c=s.chart.type==="pie"||s.chart.type==="polarArea"||s.chart.type==="donut"?"pie":"radialBar",u=s.plotOptions[c].offsetY,h=s.plotOptions[c].offsetX;if(!s.legend.show||s.legend.floating)return n.gridHeight=n.svgHeight-s.grid.padding.left+s.grid.padding.right,n.gridWidth=n.gridHeight,n.translateY=u,void(n.translateX=h+(n.svgWidth-n.gridWidth)/2);switch(s.legend.position){case"bottom":n.gridHeight=n.svgHeight-this.lgRect.height-n.goldenPadding,n.gridWidth=n.svgWidth,n.translateY=u-10,n.translateX=h+(n.svgWidth-n.gridWidth)/2;break;case"top":n.gridHeight=n.svgHeight-this.lgRect.height-n.goldenPadding,n.gridWidth=n.svgWidth,n.translateY=this.lgRect.height+u+10,n.translateX=h+(n.svgWidth-n.gridWidth)/2;break;case"left":n.gridWidth=n.svgWidth-this.lgRect.width-o,n.gridHeight=s.chart.height!=="auto"?n.svgHeight:n.gridWidth,n.translateY=u,n.translateX=h+this.lgRect.width+o;break;case"right":n.gridWidth=n.svgWidth-this.lgRect.width-o-5,n.gridHeight=s.chart.height!=="auto"?n.svgHeight:n.gridWidth,n.translateY=u,n.translateX=h+10;break;default:throw new Error("Legend position not supported")}}},{key:"conditionalChecksForAxisCoords",value:function(t,n,s){var o=this.w,c=o.globals.hasXaxisGroups?2:1,u=s.height+t.height+n.height,h=o.globals.isMultiLineX?1.2:o.globals.LINE_HEIGHT_RATIO,g=o.globals.rotateXLabels?22:10,m=o.globals.rotateXLabels&&o.config.legend.position==="bottom"?10:0;this.xAxisHeight=u*h+c*g+m,this.xAxisWidth=t.width,this.xAxisHeight-n.height>o.config.xaxis.labels.maxHeight&&(this.xAxisHeight=o.config.xaxis.labels.maxHeight),o.config.xaxis.labels.minHeight&&this.xAxisHeightx&&(this.yAxisWidth=x)}}]),D}(),xt=function(){function D(t){d(this,D),this.w=t.w,this.lgCtx=t}return p(D,[{key:"getLegendStyles",value:function(){var t=document.createElement("style");t.setAttribute("type","text/css");var n=document.createTextNode(` + + .apexcharts-legend { + display: flex; + overflow: auto; + padding: 0 10px; + } + .apexcharts-legend.apx-legend-position-bottom, .apexcharts-legend.apx-legend-position-top { + flex-wrap: wrap + } + .apexcharts-legend.apx-legend-position-right, .apexcharts-legend.apx-legend-position-left { + flex-direction: column; + bottom: 0; + } + .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-left, .apexcharts-legend.apx-legend-position-top.apexcharts-align-left, .apexcharts-legend.apx-legend-position-right, .apexcharts-legend.apx-legend-position-left { + justify-content: flex-start; + } + .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-center, .apexcharts-legend.apx-legend-position-top.apexcharts-align-center { + justify-content: center; + } + .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-right, .apexcharts-legend.apx-legend-position-top.apexcharts-align-right { + justify-content: flex-end; + } + .apexcharts-legend-series { + cursor: pointer; + line-height: normal; + } + .apexcharts-legend.apx-legend-position-bottom .apexcharts-legend-series, .apexcharts-legend.apx-legend-position-top .apexcharts-legend-series{ + display: flex; + align-items: center; + } + .apexcharts-legend-text { + position: relative; + font-size: 14px; + } + .apexcharts-legend-text *, .apexcharts-legend-marker * { + pointer-events: none; + } + .apexcharts-legend-marker { + position: relative; + display: inline-block; + cursor: pointer; + margin-right: 3px; + border-style: solid; + } + + .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series, .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series{ + display: inline-block; + } + .apexcharts-legend-series.apexcharts-no-click { + cursor: auto; + } + .apexcharts-legend .apexcharts-hidden-zero-series, .apexcharts-legend .apexcharts-hidden-null-series { + display: none !important; + } + .apexcharts-inactive-legend { + opacity: 0.45; + }`);return t.appendChild(n),t}},{key:"getLegendBBox",value:function(){var t=this.w.globals.dom.baseEl.querySelector(".apexcharts-legend").getBoundingClientRect(),n=t.width;return{clwh:t.height,clww:n}}},{key:"appendToForeignObject",value:function(){this.w.globals.dom.elLegendForeign.appendChild(this.getLegendStyles())}},{key:"toggleDataSeries",value:function(t,n){var s=this,o=this.w;if(o.globals.axisCharts||o.config.chart.type==="radialBar"){o.globals.resized=!0;var c=null,u=null;o.globals.risingSeries=[],o.globals.axisCharts?(c=o.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(t,"']")),u=parseInt(c.getAttribute("data:realIndex"),10)):(c=o.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(t+1,"']")),u=parseInt(c.getAttribute("rel"),10)-1),n?[{cs:o.globals.collapsedSeries,csi:o.globals.collapsedSeriesIndices},{cs:o.globals.ancillaryCollapsedSeries,csi:o.globals.ancillaryCollapsedSeriesIndices}].forEach(function(b){s.riseCollapsedSeries(b.cs,b.csi,u)}):this.hideSeries({seriesEl:c,realIndex:u})}else{var h=o.globals.dom.Paper.select(" .apexcharts-series[rel='".concat(t+1,"'] path")),g=o.config.chart.type;if(g==="pie"||g==="polarArea"||g==="donut"){var m=o.config.plotOptions.pie.donut.labels;new H(this.lgCtx.ctx).pathMouseDown(h.members[0],null),this.lgCtx.ctx.pie.printDataLabelsInner(h.members[0].node,m)}h.fire("click")}}},{key:"hideSeries",value:function(t){var n=t.seriesEl,s=t.realIndex,o=this.w,c=L.clone(o.config.series);if(o.globals.axisCharts){var u=!1;if(o.config.yaxis[s]&&o.config.yaxis[s].show&&o.config.yaxis[s].showAlways&&(u=!0,o.globals.ancillaryCollapsedSeriesIndices.indexOf(s)<0&&(o.globals.ancillaryCollapsedSeries.push({index:s,data:c[s].data.slice(),type:n.parentNode.className.baseVal.split("-")[1]}),o.globals.ancillaryCollapsedSeriesIndices.push(s))),!u){o.globals.collapsedSeries.push({index:s,data:c[s].data.slice(),type:n.parentNode.className.baseVal.split("-")[1]}),o.globals.collapsedSeriesIndices.push(s);var h=o.globals.risingSeries.indexOf(s);o.globals.risingSeries.splice(h,1)}}else o.globals.collapsedSeries.push({index:s,data:c[s]}),o.globals.collapsedSeriesIndices.push(s);for(var g=n.childNodes,m=0;m0){for(var u=0;u-1&&(t[o].data=[])}):t.forEach(function(s,o){n.globals.collapsedSeriesIndices.indexOf(o)>-1&&(t[o]=0)}),t}}]),D}(),ft=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w,this.onLegendClick=this.onLegendClick.bind(this),this.onLegendHovered=this.onLegendHovered.bind(this),this.isBarsDistributed=this.w.config.chart.type==="bar"&&this.w.config.plotOptions.bar.distributed&&this.w.config.series.length===1,this.legendHelpers=new xt(this)}return p(D,[{key:"init",value:function(){var t=this.w,n=t.globals,s=t.config;if((s.legend.showForSingleSeries&&n.series.length===1||this.isBarsDistributed||n.series.length>1||!n.axisCharts)&&s.legend.show){for(;n.dom.elLegendWrap.firstChild;)n.dom.elLegendWrap.removeChild(n.dom.elLegendWrap.firstChild);this.drawLegends(),L.isIE11()?document.getElementsByTagName("head")[0].appendChild(this.legendHelpers.getLegendStyles()):this.legendHelpers.appendToForeignObject(),s.legend.position==="bottom"||s.legend.position==="top"?this.legendAlignHorizontal():s.legend.position!=="right"&&s.legend.position!=="left"||this.legendAlignVertical()}}},{key:"drawLegends",value:function(){var t=this,n=this.w,s=n.config.legend.fontFamily,o=n.globals.seriesNames,c=n.globals.colors.slice();if(n.config.chart.type==="heatmap"){var u=n.config.plotOptions.heatmap.colorScale.ranges;o=u.map(function(xe){return xe.name?xe.name:xe.from+" - "+xe.to}),c=u.map(function(xe){return xe.color})}else this.isBarsDistributed&&(o=n.globals.labels.slice());n.config.legend.customLegendItems.length&&(o=n.config.legend.customLegendItems);for(var h=n.globals.legendFormatter,g=n.config.legend.inverseOrder,m=g?o.length-1:0;g?m>=0:m<=o.length-1;g?m--:m++){var b,x=h(o[m],{seriesIndex:m,w:n}),w=!1,P=!1;if(n.globals.collapsedSeries.length>0)for(var T=0;T0)for(var V=0;V0?m-10:0)+(b>0?b-10:0)}o.style.position="absolute",u=u+t+s.config.legend.offsetX,h=h+n+s.config.legend.offsetY,o.style.left=u+"px",o.style.top=h+"px",s.config.legend.position==="bottom"?(o.style.top="auto",o.style.bottom=5-s.config.legend.offsetY+"px"):s.config.legend.position==="right"&&(o.style.left="auto",o.style.right=25+s.config.legend.offsetX+"px"),["width","height"].forEach(function(x){o.style[x]&&(o.style[x]=parseInt(s.config.legend[x],10)+"px")})}},{key:"legendAlignHorizontal",value:function(){var t=this.w;t.globals.dom.elLegendWrap.style.right=0;var n=this.legendHelpers.getLegendBBox(),s=new rt(this.ctx),o=s.dimHelpers.getTitleSubtitleCoords("title"),c=s.dimHelpers.getTitleSubtitleCoords("subtitle"),u=0;t.config.legend.position==="bottom"?u=-n.clwh/1.8:t.config.legend.position==="top"&&(u=o.height+c.height+t.config.title.margin+t.config.subtitle.margin-10),this.setLegendWrapXY(20,u)}},{key:"legendAlignVertical",value:function(){var t=this.w,n=this.legendHelpers.getLegendBBox(),s=0;t.config.legend.position==="left"&&(s=20),t.config.legend.position==="right"&&(s=t.globals.svgWidth-n.clww-10),this.setLegendWrapXY(s,20)}},{key:"onLegendHovered",value:function(t){var n=this.w,s=t.target.classList.contains("apexcharts-legend-text")||t.target.classList.contains("apexcharts-legend-marker");if(n.config.chart.type==="heatmap"||this.isBarsDistributed){if(s){var o=parseInt(t.target.getAttribute("rel"),10)-1;this.ctx.events.fireEvent("legendHover",[this.ctx,o,this.w]),new ue(this.ctx).highlightRangeInSeries(t,t.target)}}else!t.target.classList.contains("apexcharts-inactive-legend")&&s&&new ue(this.ctx).toggleSeriesOnHover(t,t.target)}},{key:"onLegendClick",value:function(t){var n=this.w;if(!n.config.legend.customLegendItems.length&&(t.target.classList.contains("apexcharts-legend-text")||t.target.classList.contains("apexcharts-legend-marker"))){var s=parseInt(t.target.getAttribute("rel"),10)-1,o=t.target.getAttribute("data:collapsed")==="true",c=this.w.config.chart.events.legendClick;typeof c=="function"&&c(this.ctx,s,this.w),this.ctx.events.fireEvent("legendClick",[this.ctx,s,this.w]);var u=this.w.config.legend.markers.onClick;typeof u=="function"&&t.target.classList.contains("apexcharts-legend-marker")&&(u(this.ctx,s,this.w),this.ctx.events.fireEvent("legendMarkerClick",[this.ctx,s,this.w])),n.config.chart.type!=="treemap"&&n.config.chart.type!=="heatmap"&&!this.isBarsDistributed&&n.config.legend.onItemClick.toggleDataSeries&&this.legendHelpers.toggleDataSeries(s,o)}}}]),D}(),Tt=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w;var n=this.w;this.ev=this.w.config.chart.events,this.selectedClass="apexcharts-selected",this.localeValues=this.w.globals.locale.toolbar,this.minX=n.globals.minX,this.maxX=n.globals.maxX}return p(D,[{key:"createToolbar",value:function(){var t=this,n=this.w,s=function(){return document.createElement("div")},o=s();if(o.setAttribute("class","apexcharts-toolbar"),o.style.top=n.config.chart.toolbar.offsetY+"px",o.style.right=3-n.config.chart.toolbar.offsetX+"px",n.globals.dom.elWrap.appendChild(o),this.elZoom=s(),this.elZoomIn=s(),this.elZoomOut=s(),this.elPan=s(),this.elSelection=s(),this.elZoomReset=s(),this.elMenuIcon=s(),this.elMenu=s(),this.elCustomIcons=[],this.t=n.config.chart.toolbar.tools,Array.isArray(this.t.customIcons))for(var c=0;c + + + +`),h("zoomOut",this.elZoomOut,` + + + +`);var g=function(x){t.t[x]&&n.config.chart[x].enabled&&u.push({el:x==="zoom"?t.elZoom:t.elSelection,icon:typeof t.t[x]=="string"?t.t[x]:x==="zoom"?` + + + +`:` + + +`,title:t.localeValues[x==="zoom"?"selectionZoom":"selection"],class:n.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-".concat(x,"-icon")})};g("zoom"),g("selection"),this.t.pan&&n.config.chart.zoom.enabled&&u.push({el:this.elPan,icon:typeof this.t.pan=="string"?this.t.pan:` + + + + + + + +`,title:this.localeValues.pan,class:n.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-pan-icon"}),h("reset",this.elZoomReset,` + + +`),this.t.download&&u.push({el:this.elMenuIcon,icon:typeof this.t.download=="string"?this.t.download:'',title:this.localeValues.menu,class:"apexcharts-menu-icon"});for(var m=0;m0&&o.height>0&&this.slDraggableRect.selectize({points:"l, r",pointSize:8,pointType:"rect"}).resize({constraint:{minX:0,minY:0,maxX:s.globals.gridWidth,maxY:s.globals.gridHeight}}).on("resizing",this.selectionDragging.bind(this,"resizing"))}}},{key:"preselectedSelection",value:function(){var s=this.w,o=this.xyRatios;if(!s.globals.zoomEnabled){if(s.globals.selection!==void 0&&s.globals.selection!==null)this.drawSelectionRect(s.globals.selection);else if(s.config.chart.selection.xaxis.min!==void 0&&s.config.chart.selection.xaxis.max!==void 0){var c=(s.config.chart.selection.xaxis.min-s.globals.minX)/o.xRatio,u={x:c,y:0,width:s.globals.gridWidth-(s.globals.maxX-s.config.chart.selection.xaxis.max)/o.xRatio-c,height:s.globals.gridHeight,translateX:0,translateY:0,selectionEnabled:!0};this.drawSelectionRect(u),this.makeSelectionRectDraggable(),typeof s.config.chart.events.selection=="function"&&s.config.chart.events.selection(this.ctx,{xaxis:{min:s.config.chart.selection.xaxis.min,max:s.config.chart.selection.xaxis.max},yaxis:{}})}}}},{key:"drawSelectionRect",value:function(s){var o=s.x,c=s.y,u=s.width,h=s.height,g=s.translateX,m=g===void 0?0:g,b=s.translateY,x=b===void 0?0:b,w=this.w,P=this.zoomRect,T=this.selectionRect;if(this.dragged||w.globals.selection!==null){var V={transform:"translate("+m+", "+x+")"};w.globals.zoomEnabled&&this.dragged&&(u<0&&(u=1),P.attr({x:o,y:c,width:u,height:h,fill:w.config.chart.zoom.zoomedArea.fill.color,"fill-opacity":w.config.chart.zoom.zoomedArea.fill.opacity,stroke:w.config.chart.zoom.zoomedArea.stroke.color,"stroke-width":w.config.chart.zoom.zoomedArea.stroke.width,"stroke-opacity":w.config.chart.zoom.zoomedArea.stroke.opacity}),H.setAttrs(P.node,V)),w.globals.selectionEnabled&&(T.attr({x:o,y:c,width:u>0?u:0,height:h>0?h:0,fill:w.config.chart.selection.fill.color,"fill-opacity":w.config.chart.selection.fill.opacity,stroke:w.config.chart.selection.stroke.color,"stroke-width":w.config.chart.selection.stroke.width,"stroke-dasharray":w.config.chart.selection.stroke.dashArray,"stroke-opacity":w.config.chart.selection.stroke.opacity}),H.setAttrs(T.node,V))}}},{key:"hideSelectionRect",value:function(s){s&&s.attr({x:0,y:0,width:0,height:0})}},{key:"selectionDrawing",value:function(s){var o=s.context,c=s.zoomtype,u=this.w,h=o,g=this.gridRect.getBoundingClientRect(),m=h.startX-1,b=h.startY,x=!1,w=!1,P=h.clientX-g.left-m,T=h.clientY-g.top-b,V={};return Math.abs(P+m)>u.globals.gridWidth?P=u.globals.gridWidth-m:h.clientX-g.left<0&&(P=m),m>h.clientX-g.left&&(x=!0,P=Math.abs(P)),b>h.clientY-g.top&&(w=!0,T=Math.abs(T)),V=c==="x"?{x:x?m-P:m,y:0,width:P,height:u.globals.gridHeight}:c==="y"?{x:0,y:w?b-T:b,width:u.globals.gridWidth,height:T}:{x:x?m-P:m,y:w?b-T:b,width:P,height:T},h.drawSelectionRect(V),h.selectionDragging("resizing"),V}},{key:"selectionDragging",value:function(s,o){var c=this,u=this.w,h=this.xyRatios,g=this.selectionRect,m=0;s==="resizing"&&(m=30);var b=function(w){return parseFloat(g.node.getAttribute(w))},x={x:b("x"),y:b("y"),width:b("width"),height:b("height")};u.globals.selection=x,typeof u.config.chart.events.selection=="function"&&u.globals.selectionEnabled&&(clearTimeout(this.w.globals.selectionResizeTimer),this.w.globals.selectionResizeTimer=window.setTimeout(function(){var w=c.gridRect.getBoundingClientRect(),P=g.node.getBoundingClientRect(),T={xaxis:{min:u.globals.xAxisScale.niceMin+(P.left-w.left)*h.xRatio,max:u.globals.xAxisScale.niceMin+(P.right-w.left)*h.xRatio},yaxis:{min:u.globals.yAxisScale[0].niceMin+(w.bottom-P.bottom)*h.yRatio[0],max:u.globals.yAxisScale[0].niceMax-(P.top-w.top)*h.yRatio[0]}};u.config.chart.events.selection(c.ctx,T),u.config.chart.brush.enabled&&u.config.chart.events.brushScrolled!==void 0&&u.config.chart.events.brushScrolled(c.ctx,T)},m))}},{key:"selectionDrawn",value:function(s){var o=s.context,c=s.zoomtype,u=this.w,h=o,g=this.xyRatios,m=this.ctx.toolbar;if(h.startX>h.endX){var b=h.startX;h.startX=h.endX,h.endX=b}if(h.startY>h.endY){var x=h.startY;h.startY=h.endY,h.endY=x}var w=void 0,P=void 0;u.globals.isRangeBar?(w=u.globals.yAxisScale[0].niceMin+h.startX*g.invertedYRatio,P=u.globals.yAxisScale[0].niceMin+h.endX*g.invertedYRatio):(w=u.globals.xAxisScale.niceMin+h.startX*g.xRatio,P=u.globals.xAxisScale.niceMin+h.endX*g.xRatio);var T=[],V=[];if(u.config.yaxis.forEach(function(U,K){T.push(u.globals.yAxisScale[K].niceMax-g.yRatio[K]*h.startY),V.push(u.globals.yAxisScale[K].niceMax-g.yRatio[K]*h.endY)}),h.dragged&&(h.dragX>10||h.dragY>10)&&w!==P){if(u.globals.zoomEnabled){var O=L.clone(u.globals.initialConfig.yaxis),N=L.clone(u.globals.initialConfig.xaxis);if(u.globals.zoomed=!0,u.config.xaxis.convertedCatToNumeric&&(w=Math.floor(w),P=Math.floor(P),w<1&&(w=1,P=u.globals.dataPoints),P-w<2&&(P=w+1)),c!=="xy"&&c!=="x"||(N={min:w,max:P}),c!=="xy"&&c!=="y"||O.forEach(function(U,K){O[K].min=V[K],O[K].max=T[K]}),u.config.chart.zoom.autoScaleYaxis){var G=new Z(h.ctx);O=G.autoScaleY(h.ctx,O,{xaxis:N})}if(m){var v=m.getBeforeZoomRange(N,O);v&&(N=v.xaxis?v.xaxis:N,O=v.yaxis?v.yaxis:O)}var S={xaxis:N};u.config.chart.group||(S.yaxis=O),h.ctx.updateHelpers._updateOptions(S,!1,h.w.config.chart.animations.dynamicAnimation.enabled),typeof u.config.chart.events.zoomed=="function"&&m.zoomCallback(N,O)}else if(u.globals.selectionEnabled){var I,z=null;I={min:w,max:P},c!=="xy"&&c!=="y"||(z=L.clone(u.config.yaxis)).forEach(function(U,K){z[K].min=V[K],z[K].max=T[K]}),u.globals.selection=h.selection,typeof u.config.chart.events.selection=="function"&&u.config.chart.events.selection(h.ctx,{xaxis:I,yaxis:z})}}}},{key:"panDragging",value:function(s){var o=s.context,c=this.w,u=o;if(c.globals.lastClientPosition.x!==void 0){var h=c.globals.lastClientPosition.x-u.clientX,g=c.globals.lastClientPosition.y-u.clientY;Math.abs(h)>Math.abs(g)&&h>0?this.moveDirection="left":Math.abs(h)>Math.abs(g)&&h<0?this.moveDirection="right":Math.abs(g)>Math.abs(h)&&g>0?this.moveDirection="up":Math.abs(g)>Math.abs(h)&&g<0&&(this.moveDirection="down")}c.globals.lastClientPosition={x:u.clientX,y:u.clientY};var m=c.globals.isRangeBar?c.globals.minY:c.globals.minX,b=c.globals.isRangeBar?c.globals.maxY:c.globals.maxX;c.config.xaxis.convertedCatToNumeric||u.panScrolled(m,b)}},{key:"delayedPanScrolled",value:function(){var s=this.w,o=s.globals.minX,c=s.globals.maxX,u=(s.globals.maxX-s.globals.minX)/2;this.moveDirection==="left"?(o=s.globals.minX+u,c=s.globals.maxX+u):this.moveDirection==="right"&&(o=s.globals.minX-u,c=s.globals.maxX-u),o=Math.floor(o),c=Math.floor(c),this.updateScrolledChart({xaxis:{min:o,max:c}},o,c)}},{key:"panScrolled",value:function(s,o){var c=this.w,u=this.xyRatios,h=L.clone(c.globals.initialConfig.yaxis),g=u.xRatio,m=c.globals.minX,b=c.globals.maxX;c.globals.isRangeBar&&(g=u.invertedYRatio,m=c.globals.minY,b=c.globals.maxY),this.moveDirection==="left"?(s=m+c.globals.gridWidth/15*g,o=b+c.globals.gridWidth/15*g):this.moveDirection==="right"&&(s=m-c.globals.gridWidth/15*g,o=b-c.globals.gridWidth/15*g),c.globals.isRangeBar||(sc.globals.initialMaxX)&&(s=m,o=b);var x={min:s,max:o};c.config.chart.zoom.autoScaleYaxis&&(h=new Z(this.ctx).autoScaleY(this.ctx,h,{xaxis:x}));var w={xaxis:{min:s,max:o}};c.config.chart.group||(w.yaxis=h),this.updateScrolledChart(w,s,o)}},{key:"updateScrolledChart",value:function(s,o,c){var u=this.w;this.ctx.updateHelpers._updateOptions(s,!1,!1),typeof u.config.chart.events.scrolled=="function"&&u.config.chart.events.scrolled(this.ctx,{xaxis:{min:o,max:c}})}}]),n}(),aa=function(){function D(t){d(this,D),this.w=t.w,this.ttCtx=t,this.ctx=t.ctx}return p(D,[{key:"getNearestValues",value:function(t){var n=t.hoverArea,s=t.elGrid,o=t.clientX,c=t.clientY,u=this.w,h=s.getBoundingClientRect(),g=h.width,m=h.height,b=g/(u.globals.dataPoints-1),x=m/u.globals.dataPoints,w=this.hasBars();!u.globals.comboCharts&&!w||u.config.xaxis.convertedCatToNumeric||(b=g/u.globals.dataPoints);var P=o-h.left-u.globals.barPadForNumericAxis,T=c-h.top;P<0||T<0||P>g||T>m?(n.classList.remove("hovering-zoom"),n.classList.remove("hovering-pan")):u.globals.zoomEnabled?(n.classList.remove("hovering-pan"),n.classList.add("hovering-zoom")):u.globals.panEnabled&&(n.classList.remove("hovering-zoom"),n.classList.add("hovering-pan"));var V=Math.round(P/b),O=Math.floor(T/x);w&&!u.config.xaxis.convertedCatToNumeric&&(V=Math.ceil(P/b),V-=1);var N=null,G=null,v=[],S=[];if(u.globals.seriesXvalues.forEach(function(K){v.push([K[0]+1e-6].concat(K))}),u.globals.seriesYvalues.forEach(function(K){S.push([K[0]+1e-6].concat(K))}),v=v.map(function(K){return K.filter(function(ae){return L.isNumber(ae)})}),S=S.map(function(K){return K.filter(function(ae){return L.isNumber(ae)})}),u.globals.isXNumeric){var I=this.ttCtx.getElGrid().getBoundingClientRect(),z=P*(I.width/g),U=T*(I.height/m);N=(G=this.closestInMultiArray(z,U,v,S)).index,V=G.j,N!==null&&(v=u.globals.seriesXvalues[N],V=(G=this.closestInArray(z,v)).index)}return u.globals.capturedSeriesIndex=N===null?-1:N,(!V||V<1)&&(V=0),u.globals.isBarHorizontal?u.globals.capturedDataPointIndex=O:u.globals.capturedDataPointIndex=V,{capturedSeries:N,j:u.globals.isBarHorizontal?O:V,hoverX:P,hoverY:T}}},{key:"closestInMultiArray",value:function(t,n,s,o){var c=this.w,u=0,h=null,g=-1;c.globals.series.length>1?u=this.getFirstActiveXArray(s):h=0;var m=s[u][0],b=Math.abs(t-m);if(s.forEach(function(P){P.forEach(function(T,V){var O=Math.abs(t-T);O0?h:-1}),c=0;c0)for(var o=0;o *")):this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers-wrap > *")}},{key:"getAllMarkers",value:function(){var t=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers-wrap");(t=F(t)).sort(function(s,o){var c=Number(s.getAttribute("data:realIndex")),u=Number(o.getAttribute("data:realIndex"));return uc?-1:0});var n=[];return t.forEach(function(s){n.push(s.querySelector(".apexcharts-marker"))}),n}},{key:"hasMarkers",value:function(t){return this.getElMarkers(t).length>0}},{key:"getElBars",value:function(){return this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-bar-series, .apexcharts-candlestick-series, .apexcharts-boxPlot-series, .apexcharts-rangebar-series")}},{key:"hasBars",value:function(){return this.getElBars().length>0}},{key:"getHoverMarkerSize",value:function(t){var n=this.w,s=n.config.markers.hover.size;return s===void 0&&(s=n.globals.markers.size[t]+n.config.markers.hover.sizeOffset),s}},{key:"toggleAllTooltipSeriesGroups",value:function(t){var n=this.w,s=this.ttCtx;s.allTooltipSeriesGroups.length===0&&(s.allTooltipSeriesGroups=n.globals.dom.baseEl.querySelectorAll(".apexcharts-tooltip-series-group"));for(var o=s.allTooltipSeriesGroups,c=0;c ').concat(K.attrs.name,""),U+="
".concat(K.val,"
")}),v.innerHTML=z+"",S.innerHTML=U+""};h?m.globals.seriesGoals[n][s]&&Array.isArray(m.globals.seriesGoals[n][s])?I():(v.innerHTML="",S.innerHTML=""):I()}else v.innerHTML="",S.innerHTML="";V!==null&&(o[n].querySelector(".apexcharts-tooltip-text-z-label").innerHTML=m.config.tooltip.z.title,o[n].querySelector(".apexcharts-tooltip-text-z-value").innerHTML=V!==void 0?V:""),h&&O[0]&&(x==null||m.globals.ancillaryCollapsedSeriesIndices.indexOf(n)>-1||m.globals.collapsedSeriesIndices.indexOf(n)>-1?O[0].parentNode.style.display="none":O[0].parentNode.style.display=m.config.tooltip.items.display)}},{key:"toggleActiveInactiveSeries",value:function(t){var n=this.w;if(t)this.tooltipUtil.toggleAllTooltipSeriesGroups("enable");else{this.tooltipUtil.toggleAllTooltipSeriesGroups("disable");var s=n.globals.dom.baseEl.querySelector(".apexcharts-tooltip-series-group");s&&(s.classList.add("apexcharts-active"),s.style.display=n.config.tooltip.items.display)}}},{key:"getValuesToPrint",value:function(t){var n=t.i,s=t.j,o=this.w,c=this.ctx.series.filteredSeriesX(),u="",h="",g=null,m=null,b={series:o.globals.series,seriesIndex:n,dataPointIndex:s,w:o},x=o.globals.ttZFormatter;s===null?m=o.globals.series[n]:o.globals.isXNumeric&&o.config.chart.type!=="treemap"?(u=c[n][s],c[n].length===0&&(u=c[this.tooltipUtil.getFirstActiveXArray(c)][s])):u=o.globals.labels[s]!==void 0?o.globals.labels[s]:"";var w=u;return o.globals.isXNumeric&&o.config.xaxis.type==="datetime"?u=new Ce(this.ctx).xLabelFormat(o.globals.ttKeyFormatter,w,w,{i:void 0,dateFormatter:new le(this.ctx).formatDate,w:this.w}):u=o.globals.isBarHorizontal?o.globals.yLabelFormatters[0](w,b):o.globals.xLabelFormatter(w,b),o.config.tooltip.x.formatter!==void 0&&(u=o.globals.ttKeyFormatter(w,b)),o.globals.seriesZ.length>0&&o.globals.seriesZ[n].length>0&&(g=x(o.globals.seriesZ[n][s],o)),h=typeof o.config.xaxis.tooltip.formatter=="function"?o.globals.xaxisTooltipFormatter(w,b):u,{val:Array.isArray(m)?m.join(" "):m,xVal:Array.isArray(u)?u.join(" "):u,xAxisTTVal:Array.isArray(h)?h.join(" "):h,zVal:g}}},{key:"handleCustomTooltip",value:function(t){var n=t.i,s=t.j,o=t.y1,c=t.y2,u=t.w,h=this.ttCtx.getElTooltip(),g=u.config.tooltip.custom;Array.isArray(g)&&g[n]&&(g=g[n]),h.innerHTML=g({ctx:this.ctx,series:u.globals.series,seriesIndex:n,dataPointIndex:s,y1:o,y2:c,w:u})}}]),D}(),ka=function(){function D(t){d(this,D),this.ttCtx=t,this.ctx=t.ctx,this.w=t.w}return p(D,[{key:"moveXCrosshairs",value:function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,s=this.ttCtx,o=this.w,c=s.getElXCrosshairs(),u=t-s.xcrosshairsWidth/2,h=o.globals.labels.slice().length;if(n!==null&&(u=o.globals.gridWidth/h*n),c===null||o.globals.isBarHorizontal||(c.setAttribute("x",u),c.setAttribute("x1",u),c.setAttribute("x2",u),c.setAttribute("y2",o.globals.gridHeight),c.classList.add("apexcharts-active")),u<0&&(u=0),u>o.globals.gridWidth&&(u=o.globals.gridWidth),s.isXAxisTooltipEnabled){var g=u;o.config.xaxis.crosshairs.width!=="tickWidth"&&o.config.xaxis.crosshairs.width!=="barWidth"||(g=u+s.xcrosshairsWidth/2),this.moveXAxisTooltip(g)}}},{key:"moveYCrosshairs",value:function(t){var n=this.ttCtx;n.ycrosshairs!==null&&H.setAttrs(n.ycrosshairs,{y1:t,y2:t}),n.ycrosshairsHidden!==null&&H.setAttrs(n.ycrosshairsHidden,{y1:t,y2:t})}},{key:"moveXAxisTooltip",value:function(t){var n=this.w,s=this.ttCtx;if(s.xaxisTooltip!==null&&s.xcrosshairsWidth!==0){s.xaxisTooltip.classList.add("apexcharts-active");var o=s.xaxisOffY+n.config.xaxis.tooltip.offsetY+n.globals.translateY+1+n.config.xaxis.offsetY;if(t-=s.xaxisTooltip.getBoundingClientRect().width/2,!isNaN(t)){t+=n.globals.translateX;var c;c=new H(this.ctx).getTextRects(s.xaxisTooltipText.innerHTML),s.xaxisTooltipText.style.minWidth=c.width+"px",s.xaxisTooltip.style.left=t+"px",s.xaxisTooltip.style.top=o+"px"}}}},{key:"moveYAxisTooltip",value:function(t){var n=this.w,s=this.ttCtx;s.yaxisTTEls===null&&(s.yaxisTTEls=n.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxistooltip"));var o=parseInt(s.ycrosshairsHidden.getAttribute("y1"),10),c=n.globals.translateY+o,u=s.yaxisTTEls[t].getBoundingClientRect().height,h=n.globals.translateYAxisX[t]-2;n.config.yaxis[t].opposite&&(h-=26),c-=u/2,n.globals.ignoreYAxisIndexes.indexOf(t)===-1?(s.yaxisTTEls[t].classList.add("apexcharts-active"),s.yaxisTTEls[t].style.top=c+"px",s.yaxisTTEls[t].style.left=h+n.config.yaxis[t].tooltip.offsetX+"px"):s.yaxisTTEls[t].classList.remove("apexcharts-active")}},{key:"moveTooltip",value:function(t,n){var s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,o=this.w,c=this.ttCtx,u=c.getElTooltip(),h=c.tooltipRect,g=s!==null?parseFloat(s):1,m=parseFloat(t)+g+5,b=parseFloat(n)+g/2;if(m>o.globals.gridWidth/2&&(m=m-h.ttWidth-g-10),m>o.globals.gridWidth-h.ttWidth-10&&(m=o.globals.gridWidth-h.ttWidth),m<-20&&(m=-20),o.config.tooltip.followCursor){var x=c.getElGrid().getBoundingClientRect();(m=c.e.clientX-x.left)>o.globals.gridWidth/2&&(m-=c.tooltipRect.ttWidth),(b=c.e.clientY+o.globals.translateY-x.top)>o.globals.gridHeight/2&&(b-=c.tooltipRect.ttHeight)}else o.globals.isBarHorizontal||h.ttHeight/2+b>o.globals.gridHeight&&(b=o.globals.gridHeight-h.ttHeight+o.globals.translateY);isNaN(m)||(m+=o.globals.translateX,u.style.left=m+"px",u.style.top=b+"px")}},{key:"moveMarkers",value:function(t,n){var s=this.w,o=this.ttCtx;if(s.globals.markers.size[t]>0)for(var c=s.globals.dom.baseEl.querySelectorAll(" .apexcharts-series[data\\:realIndex='".concat(t,"'] .apexcharts-marker")),u=0;u0&&(b.setAttribute("r",g),b.setAttribute("cx",s),b.setAttribute("cy",o)),this.moveXCrosshairs(s),u.fixedTooltip||this.moveTooltip(s,o,g)}}},{key:"moveDynamicPointsOnHover",value:function(t){var n,s=this.ttCtx,o=s.w,c=0,u=0,h=o.globals.pointsArray;n=new ue(this.ctx).getActiveConfigSeriesIndex("asc",["line","area","scatter","bubble"]);var g=s.tooltipUtil.getHoverMarkerSize(n);h[n]&&(c=h[n][t][0],u=h[n][t][1]);var m=s.tooltipUtil.getAllMarkers();if(m!==null)for(var b=0;b0?(m[b]&&m[b].setAttribute("r",g),m[b]&&m[b].setAttribute("cy",w)):m[b]&&m[b].setAttribute("r",0)}}this.moveXCrosshairs(c),s.fixedTooltip||this.moveTooltip(c,u||o.globals.gridHeight,g)}},{key:"moveStickyTooltipOverBars",value:function(t,n){var s=this.w,o=this.ttCtx,c=s.globals.columnSeries?s.globals.columnSeries.length:s.globals.series.length,u=c>=2&&c%2==0?Math.floor(c/2):Math.floor(c/2)+1;s.globals.isBarHorizontal&&(u=new ue(this.ctx).getActiveConfigSeriesIndex("desc")+1);var h=s.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[rel='".concat(u,"'] path[j='").concat(t,"'], .apexcharts-candlestick-series .apexcharts-series[rel='").concat(u,"'] path[j='").concat(t,"'], .apexcharts-boxPlot-series .apexcharts-series[rel='").concat(u,"'] path[j='").concat(t,"'], .apexcharts-rangebar-series .apexcharts-series[rel='").concat(u,"'] path[j='").concat(t,"']"));h||typeof n!="number"||(h=s.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[data\\:realIndex='".concat(n,"'] path[j='").concat(t,`'], + .apexcharts-candlestick-series .apexcharts-series[data\\:realIndex='`).concat(n,"'] path[j='").concat(t,`'], + .apexcharts-boxPlot-series .apexcharts-series[data\\:realIndex='`).concat(n,"'] path[j='").concat(t,`'], + .apexcharts-rangebar-series .apexcharts-series[data\\:realIndex='`).concat(n,"'] path[j='").concat(t,"']")));var g=h?parseFloat(h.getAttribute("cx")):0,m=h?parseFloat(h.getAttribute("cy")):0,b=h?parseFloat(h.getAttribute("barWidth")):0,x=o.getElGrid().getBoundingClientRect(),w=h&&(h.classList.contains("apexcharts-candlestick-area")||h.classList.contains("apexcharts-boxPlot-area"));s.globals.isXNumeric?(h&&!w&&(g-=c%2!=0?b/2:0),h&&w&&s.globals.comboCharts&&(g-=b/2)):s.globals.isBarHorizontal||(g=o.xAxisTicksPositions[t-1]+o.dataPointsDividedWidth/2,isNaN(g)&&(g=o.xAxisTicksPositions[t]-o.dataPointsDividedWidth/2)),s.globals.isBarHorizontal?m-=o.tooltipRect.ttHeight:s.config.tooltip.followCursor?m=o.e.clientY-x.top-o.tooltipRect.ttHeight/2:m+o.tooltipRect.ttHeight+15>s.globals.gridHeight&&(m=s.globals.gridHeight),s.globals.isBarHorizontal||this.moveXCrosshairs(g),o.fixedTooltip||this.moveTooltip(g,m||s.globals.gridHeight)}}]),D}(),Sr=function(){function D(t){d(this,D),this.w=t.w,this.ttCtx=t,this.ctx=t.ctx,this.tooltipPosition=new ka(t)}return p(D,[{key:"drawDynamicPoints",value:function(){var t=this.w,n=new H(this.ctx),s=new Ze(this.ctx),o=t.globals.dom.baseEl.querySelectorAll(".apexcharts-series");o=F(o),t.config.chart.stacked&&o.sort(function(x,w){return parseFloat(x.getAttribute("data:realIndex"))-parseFloat(w.getAttribute("data:realIndex"))});for(var c=0;c2&&arguments[2]!==void 0?arguments[2]:null,o=arguments.length>3&&arguments[3]!==void 0?arguments[3]:null,c=this.w;c.config.chart.type!=="bubble"&&this.newPointSize(t,n);var u=n.getAttribute("cx"),h=n.getAttribute("cy");if(s!==null&&o!==null&&(u=s,h=o),this.tooltipPosition.moveXCrosshairs(u),!this.fixedTooltip){if(c.config.chart.type==="radar"){var g=this.ttCtx.getElGrid().getBoundingClientRect();u=this.ttCtx.e.clientX-g.left}this.tooltipPosition.moveTooltip(u,h,c.config.markers.hover.size)}}},{key:"enlargePoints",value:function(t){for(var n=this.w,s=this,o=this.ttCtx,c=t,u=n.globals.dom.baseEl.querySelectorAll(".apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker"),h=n.config.markers.hover.size,g=0;g=0?t[n].setAttribute("r",s):t[n].setAttribute("r",0)}}}]),D}(),on=function(){function D(t){d(this,D),this.w=t.w;var n=this.w;this.ttCtx=t,this.isVerticalGroupedRangeBar=!n.globals.isBarHorizontal&&n.config.chart.type==="rangeBar"&&n.config.plotOptions.bar.rangeBarGroupRows}return p(D,[{key:"getAttr",value:function(t,n){return parseFloat(t.target.getAttribute(n))}},{key:"handleHeatTreeTooltip",value:function(t){var n=t.e,s=t.opt,o=t.x,c=t.y,u=t.type,h=this.ttCtx,g=this.w;if(n.target.classList.contains("apexcharts-".concat(u,"-rect"))){var m=this.getAttr(n,"i"),b=this.getAttr(n,"j"),x=this.getAttr(n,"cx"),w=this.getAttr(n,"cy"),P=this.getAttr(n,"width"),T=this.getAttr(n,"height");if(h.tooltipLabels.drawSeriesTexts({ttItems:s.ttItems,i:m,j:b,shared:!1,e:n}),g.globals.capturedSeriesIndex=m,g.globals.capturedDataPointIndex=b,o=x+h.tooltipRect.ttWidth/2+P,c=w+h.tooltipRect.ttHeight/2-T/2,h.tooltipPosition.moveXCrosshairs(x+P/2),o>g.globals.gridWidth/2&&(o=x-h.tooltipRect.ttWidth/2+P),h.w.config.tooltip.followCursor){var V=g.globals.dom.elWrap.getBoundingClientRect();o=g.globals.clientX-V.left-(o>g.globals.gridWidth/2?h.tooltipRect.ttWidth:0),c=g.globals.clientY-V.top-(c>g.globals.gridHeight/2?h.tooltipRect.ttHeight:0)}}return{x:o,y:c}}},{key:"handleMarkerTooltip",value:function(t){var n,s,o=t.e,c=t.opt,u=t.x,h=t.y,g=this.w,m=this.ttCtx;if(o.target.classList.contains("apexcharts-marker")){var b=parseInt(c.paths.getAttribute("cx"),10),x=parseInt(c.paths.getAttribute("cy"),10),w=parseFloat(c.paths.getAttribute("val"));if(s=parseInt(c.paths.getAttribute("rel"),10),n=parseInt(c.paths.parentNode.parentNode.parentNode.getAttribute("rel"),10)-1,m.intersect){var P=L.findAncestor(c.paths,"apexcharts-series");P&&(n=parseInt(P.getAttribute("data:realIndex"),10))}if(m.tooltipLabels.drawSeriesTexts({ttItems:c.ttItems,i:n,j:s,shared:!m.showOnIntersect&&g.config.tooltip.shared,e:o}),o.type==="mouseup"&&m.markerClick(o,n,s),g.globals.capturedSeriesIndex=n,g.globals.capturedDataPointIndex=s,u=b,h=x+g.globals.translateY-1.4*m.tooltipRect.ttHeight,m.w.config.tooltip.followCursor){var T=m.getElGrid().getBoundingClientRect();h=m.e.clientY+g.globals.translateY-T.top}w<0&&(h=x),m.marker.enlargeCurrentPoint(s,c.paths,u,h)}return{x:u,y:h}}},{key:"handleBarTooltip",value:function(t){var n,s,o=t.e,c=t.opt,u=this.w,h=this.ttCtx,g=h.getElTooltip(),m=0,b=0,x=0,w=this.getBarTooltipXY({e:o,opt:c});n=w.i;var P=w.barHeight,T=w.j;u.globals.capturedSeriesIndex=n,u.globals.capturedDataPointIndex=T,u.globals.isBarHorizontal&&h.tooltipUtil.hasBars()||!u.config.tooltip.shared?(b=w.x,x=w.y,s=Array.isArray(u.config.stroke.width)?u.config.stroke.width[n]:u.config.stroke.width,m=b):u.globals.comboCharts||u.config.tooltip.shared||(m/=2),isNaN(x)&&(x=u.globals.svgHeight-h.tooltipRect.ttHeight);var V=parseInt(c.paths.parentNode.getAttribute("data:realIndex"),10),O=u.globals.isMultipleYAxis?u.config.yaxis[V]&&u.config.yaxis[V].reversed:u.config.yaxis[0].reversed;if(b+h.tooltipRect.ttWidth>u.globals.gridWidth&&!O?b-=h.tooltipRect.ttWidth:b<0&&(b=0),h.w.config.tooltip.followCursor){var N=h.getElGrid().getBoundingClientRect();x=h.e.clientY-N.top}h.tooltip===null&&(h.tooltip=u.globals.dom.baseEl.querySelector(".apexcharts-tooltip")),u.config.tooltip.shared||(u.globals.comboBarCount>0?h.tooltipPosition.moveXCrosshairs(m+s/2):h.tooltipPosition.moveXCrosshairs(m)),!h.fixedTooltip&&(!u.config.tooltip.shared||u.globals.isBarHorizontal&&h.tooltipUtil.hasBars())&&(O&&(b-=h.tooltipRect.ttWidth)<0&&(b=0),!O||u.globals.isBarHorizontal&&h.tooltipUtil.hasBars()||(x=x+P-2*(u.globals.series[n][T]<0?P:0)),x=x+u.globals.translateY-h.tooltipRect.ttHeight/2,g.style.left=b+u.globals.translateX+"px",g.style.top=x+"px")}},{key:"getBarTooltipXY",value:function(t){var n=this,s=t.e,o=t.opt,c=this.w,u=null,h=this.ttCtx,g=0,m=0,b=0,x=0,w=0,P=s.target.classList;if(P.contains("apexcharts-bar-area")||P.contains("apexcharts-candlestick-area")||P.contains("apexcharts-boxPlot-area")||P.contains("apexcharts-rangebar-area")){var T=s.target,V=T.getBoundingClientRect(),O=o.elGrid.getBoundingClientRect(),N=V.height;w=V.height;var G=V.width,v=parseInt(T.getAttribute("cx"),10),S=parseInt(T.getAttribute("cy"),10);x=parseFloat(T.getAttribute("barWidth"));var I=s.type==="touchmove"?s.touches[0].clientX:s.clientX;u=parseInt(T.getAttribute("j"),10),g=parseInt(T.parentNode.getAttribute("rel"),10)-1;var z=T.getAttribute("data-range-y1"),U=T.getAttribute("data-range-y2");c.globals.comboCharts&&(g=parseInt(T.parentNode.getAttribute("data:realIndex"),10));var K=function(re){return c.globals.isXNumeric?v-G/2:n.isVerticalGroupedRangeBar?v+G/2:v-h.dataPointsDividedWidth+G/2},ae=function(){return S-h.dataPointsDividedHeight+N/2-h.tooltipRect.ttHeight/2};h.tooltipLabels.drawSeriesTexts({ttItems:o.ttItems,i:g,j:u,y1:z?parseInt(z,10):null,y2:U?parseInt(U,10):null,shared:!h.showOnIntersect&&c.config.tooltip.shared,e:s}),c.config.tooltip.followCursor?c.globals.isBarHorizontal?(m=I-O.left+15,b=ae()):(m=K(),b=s.clientY-O.top-h.tooltipRect.ttHeight/2-15):c.globals.isBarHorizontal?((m=v)0&&s.setAttribute("width",n.xcrosshairsWidth)}},{key:"handleYCrosshair",value:function(){var t=this.w,n=this.ttCtx;n.ycrosshairs=t.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs"),n.ycrosshairsHidden=t.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs-hidden")}},{key:"drawYaxisTooltipText",value:function(t,n,s){var o=this.ttCtx,c=this.w,u=c.globals.yLabelFormatters[t];if(o.yaxisTooltips[t]){var h=o.getElGrid().getBoundingClientRect(),g=(n-h.top)*s.yRatio[t],m=c.globals.maxYArr[t]-c.globals.minYArr[t],b=c.globals.minYArr[t]+(m-g);o.tooltipPosition.moveYCrosshairs(n-h.top),o.yaxisTooltipText[t].innerHTML=u(b),o.tooltipPosition.moveYAxisTooltip(t)}}}]),D}(),fs=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w;var n=this.w;this.tConfig=n.config.tooltip,this.tooltipUtil=new aa(this),this.tooltipLabels=new wr(this),this.tooltipPosition=new ka(this),this.marker=new Sr(this),this.intersect=new on(this),this.axesTooltip=new An(this),this.showOnIntersect=this.tConfig.intersect,this.showTooltipTitle=this.tConfig.x.show,this.fixedTooltip=this.tConfig.fixed.enabled,this.xaxisTooltip=null,this.yaxisTTEls=null,this.isBarShared=!n.globals.isBarHorizontal&&this.tConfig.shared,this.lastHoverTime=Date.now()}return p(D,[{key:"getElTooltip",value:function(t){return t||(t=this),t.w.globals.dom.baseEl?t.w.globals.dom.baseEl.querySelector(".apexcharts-tooltip"):null}},{key:"getElXCrosshairs",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-xcrosshairs")}},{key:"getElGrid",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-grid")}},{key:"drawTooltip",value:function(t){var n=this.w;this.xyRatios=t,this.isXAxisTooltipEnabled=n.config.xaxis.tooltip.enabled&&n.globals.axisCharts,this.yaxisTooltips=n.config.yaxis.map(function(u,h){return!!(u.show&&u.tooltip.enabled&&n.globals.axisCharts)}),this.allTooltipSeriesGroups=[],n.globals.axisCharts||(this.showTooltipTitle=!1);var s=document.createElement("div");if(s.classList.add("apexcharts-tooltip"),n.config.tooltip.cssClass&&s.classList.add(n.config.tooltip.cssClass),s.classList.add("apexcharts-theme-".concat(this.tConfig.theme)),n.globals.dom.elWrap.appendChild(s),n.globals.axisCharts){this.axesTooltip.drawXaxisTooltip(),this.axesTooltip.drawYaxisTooltip(),this.axesTooltip.setXCrosshairWidth(),this.axesTooltip.handleYCrosshair();var o=new be(this.ctx);this.xAxisTicksPositions=o.getXAxisTicksPositions()}if(!n.globals.comboCharts&&!this.tConfig.intersect&&n.config.chart.type!=="rangeBar"||this.tConfig.shared||(this.showOnIntersect=!0),n.config.markers.size!==0&&n.globals.markers.largestSize!==0||this.marker.drawDynamicPoints(this),n.globals.collapsedSeries.length!==n.globals.series.length){this.dataPointsDividedHeight=n.globals.gridHeight/n.globals.dataPoints,this.dataPointsDividedWidth=n.globals.gridWidth/n.globals.dataPoints,this.showTooltipTitle&&(this.tooltipTitle=document.createElement("div"),this.tooltipTitle.classList.add("apexcharts-tooltip-title"),this.tooltipTitle.style.fontFamily=this.tConfig.style.fontFamily||n.config.chart.fontFamily,this.tooltipTitle.style.fontSize=this.tConfig.style.fontSize,s.appendChild(this.tooltipTitle));var c=n.globals.series.length;(n.globals.xyCharts||n.globals.comboCharts)&&this.tConfig.shared&&(c=this.showOnIntersect?1:n.globals.series.length),this.legendLabels=n.globals.dom.baseEl.querySelectorAll(".apexcharts-legend-text"),this.ttItems=this.createTTElements(c),this.addSVGEvents()}}},{key:"createTTElements",value:function(t){for(var n=this,s=this.w,o=[],c=this.getElTooltip(),u=function(g){var m=document.createElement("div");m.classList.add("apexcharts-tooltip-series-group"),m.style.order=s.config.tooltip.inverseOrder?t-g:g+1,n.tConfig.shared&&n.tConfig.enabledOnSeries&&Array.isArray(n.tConfig.enabledOnSeries)&&n.tConfig.enabledOnSeries.indexOf(g)<0&&m.classList.add("apexcharts-tooltip-series-group-hidden");var b=document.createElement("span");b.classList.add("apexcharts-tooltip-marker"),b.style.backgroundColor=s.globals.colors[g],m.appendChild(b);var x=document.createElement("div");x.classList.add("apexcharts-tooltip-text"),x.style.fontFamily=n.tConfig.style.fontFamily||s.config.chart.fontFamily,x.style.fontSize=n.tConfig.style.fontSize,["y","goals","z"].forEach(function(w){var P=document.createElement("div");P.classList.add("apexcharts-tooltip-".concat(w,"-group"));var T=document.createElement("span");T.classList.add("apexcharts-tooltip-text-".concat(w,"-label")),P.appendChild(T);var V=document.createElement("span");V.classList.add("apexcharts-tooltip-text-".concat(w,"-value")),P.appendChild(V),x.appendChild(P)}),m.appendChild(x),c.appendChild(m),o.push(m)},h=0;h0&&this.addPathsEventListeners(T,x),this.tooltipUtil.hasBars()&&!this.tConfig.shared&&this.addDatapointEventsListeners(x)}}},{key:"drawFixedTooltipRect",value:function(){var t=this.w,n=this.getElTooltip(),s=n.getBoundingClientRect(),o=s.width+10,c=s.height+10,u=this.tConfig.fixed.offsetX,h=this.tConfig.fixed.offsetY,g=this.tConfig.fixed.position.toLowerCase();return g.indexOf("right")>-1&&(u=u+t.globals.svgWidth-o+10),g.indexOf("bottom")>-1&&(h=h+t.globals.svgHeight-c-10),n.style.left=u+"px",n.style.top=h+"px",{x:u,y:h,ttWidth:o,ttHeight:c}}},{key:"addDatapointEventsListeners",value:function(t){var n=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers .apexcharts-marker, .apexcharts-bar-area, .apexcharts-candlestick-area, .apexcharts-boxPlot-area, .apexcharts-rangebar-area");this.addPathsEventListeners(n,t)}},{key:"addPathsEventListeners",value:function(t,n){for(var s=this,o=function(u){var h={paths:t[u],tooltipEl:n.tooltipEl,tooltipY:n.tooltipY,tooltipX:n.tooltipX,elGrid:n.elGrid,hoverArea:n.hoverArea,ttItems:n.ttItems};["mousemove","mouseup","touchmove","mouseout","touchend"].map(function(g){return t[u].addEventListener(g,s.onSeriesHover.bind(s,h),{capture:!1,passive:!0})})},c=0;c=100?this.seriesHover(t,n):(clearTimeout(this.seriesHoverTimeout),this.seriesHoverTimeout=setTimeout(function(){s.seriesHover(t,n)},100-o))}},{key:"seriesHover",value:function(t,n){var s=this;this.lastHoverTime=Date.now();var o=[],c=this.w;c.config.chart.group&&(o=this.ctx.getGroupedCharts()),c.globals.axisCharts&&(c.globals.minX===-1/0&&c.globals.maxX===1/0||c.globals.dataPoints===0)||(o.length?o.forEach(function(u){var h=s.getElTooltip(u),g={paths:t.paths,tooltipEl:h,tooltipY:t.tooltipY,tooltipX:t.tooltipX,elGrid:t.elGrid,hoverArea:t.hoverArea,ttItems:u.w.globals.tooltip.ttItems};u.w.globals.minX===s.w.globals.minX&&u.w.globals.maxX===s.w.globals.maxX&&u.w.globals.tooltip.seriesHoverByContext({chartCtx:u,ttCtx:u.w.globals.tooltip,opt:g,e:n})}):this.seriesHoverByContext({chartCtx:this.ctx,ttCtx:this.w.globals.tooltip,opt:t,e:n}))}},{key:"seriesHoverByContext",value:function(t){var n=t.chartCtx,s=t.ttCtx,o=t.opt,c=t.e,u=n.w,h=this.getElTooltip();h&&(s.tooltipRect={x:0,y:0,ttWidth:h.getBoundingClientRect().width,ttHeight:h.getBoundingClientRect().height},s.e=c,s.tooltipUtil.hasBars()&&!u.globals.comboCharts&&!s.isBarShared&&this.tConfig.onDatasetHover.highlightDataSeries&&new ue(n).toggleSeriesOnHover(c,c.target.parentNode),s.fixedTooltip&&s.drawFixedTooltipRect(),u.globals.axisCharts?s.axisChartsTooltips({e:c,opt:o,tooltipRect:s.tooltipRect}):s.nonAxisChartsTooltips({e:c,opt:o,tooltipRect:s.tooltipRect}))}},{key:"axisChartsTooltips",value:function(t){var n,s,o=t.e,c=t.opt,u=this.w,h=c.elGrid.getBoundingClientRect(),g=o.type==="touchmove"?o.touches[0].clientX:o.clientX,m=o.type==="touchmove"?o.touches[0].clientY:o.clientY;if(this.clientY=m,this.clientX=g,u.globals.capturedSeriesIndex=-1,u.globals.capturedDataPointIndex=-1,mh.top+h.height)this.handleMouseOut(c);else{if(Array.isArray(this.tConfig.enabledOnSeries)&&!u.config.tooltip.shared){var b=parseInt(c.paths.getAttribute("index"),10);if(this.tConfig.enabledOnSeries.indexOf(b)<0)return void this.handleMouseOut(c)}var x=this.getElTooltip(),w=this.getElXCrosshairs(),P=u.globals.xyCharts||u.config.chart.type==="bar"&&!u.globals.isBarHorizontal&&this.tooltipUtil.hasBars()&&this.tConfig.shared||u.globals.comboCharts&&this.tooltipUtil.hasBars();if(o.type==="mousemove"||o.type==="touchmove"||o.type==="mouseup"){if(u.globals.collapsedSeries.length+u.globals.ancillaryCollapsedSeries.length===u.globals.series.length)return;w!==null&&w.classList.add("apexcharts-active");var T=this.yaxisTooltips.filter(function(N){return N===!0});if(this.ycrosshairs!==null&&T.length&&this.ycrosshairs.classList.add("apexcharts-active"),P&&!this.showOnIntersect)this.handleStickyTooltip(o,g,m,c);else if(u.config.chart.type==="heatmap"||u.config.chart.type==="treemap"){var V=this.intersect.handleHeatTreeTooltip({e:o,opt:c,x:n,y:s,type:u.config.chart.type});n=V.x,s=V.y,x.style.left=n+"px",x.style.top=s+"px"}else this.tooltipUtil.hasBars()&&this.intersect.handleBarTooltip({e:o,opt:c}),this.tooltipUtil.hasMarkers()&&this.intersect.handleMarkerTooltip({e:o,opt:c,x:n,y:s});if(this.yaxisTooltips.length)for(var O=0;Om.width)this.handleMouseOut(o);else if(g!==null)this.handleStickyCapturedSeries(t,g,o,h);else if(this.tooltipUtil.isXoverlap(h)||c.globals.isBarHorizontal){var b=c.globals.series.findIndex(function(x,w){return!c.globals.collapsedSeriesIndices.includes(w)});this.create(t,this,b,h,o.ttItems)}}},{key:"handleStickyCapturedSeries",value:function(t,n,s,o){var c=this.w;if(!this.tConfig.shared&&c.globals.series[n][o]===null)return void this.handleMouseOut(s);if(c.globals.series[n][o]!==void 0)this.tConfig.shared&&this.tooltipUtil.isXoverlap(o)&&this.tooltipUtil.isInitialSeriesSameLen()?this.create(t,this,n,o,s.ttItems):this.create(t,this,n,o,s.ttItems,!1);else if(this.tooltipUtil.isXoverlap(o)){var u=c.globals.series.findIndex(function(h,g){return!c.globals.collapsedSeriesIndices.includes(g)});this.create(t,this,u,o,s.ttItems)}}},{key:"deactivateHoverFilter",value:function(){for(var t=this.w,n=new H(this.ctx),s=t.globals.dom.Paper.select(".apexcharts-bar-area"),o=0;o5&&arguments[5]!==void 0?arguments[5]:null,U=this.w,K=n;t.type==="mouseup"&&this.markerClick(t,s,o),z===null&&(z=this.tConfig.shared);var ae=this.tooltipUtil.hasMarkers(s),re=this.tooltipUtil.getElBars();if(U.config.legend.tooltipHoverFormatter){var ge=U.config.legend.tooltipHoverFormatter,we=Array.from(this.legendLabels);we.forEach(function(Dn){var Ka=Dn.getAttribute("data:default-text");Dn.innerHTML=decodeURIComponent(Ka)});for(var xe=0;xe0?K.marker.enlargePoints(o):K.tooltipPosition.moveDynamicPointsOnHover(o);else if(this.tooltipUtil.hasBars()&&(this.barSeriesHeight=this.tooltipUtil.getBarsHeight(re),this.barSeriesHeight>0)){var kt=new H(this.ctx),It=U.globals.dom.Paper.select(".apexcharts-bar-area[j='".concat(o,"']"));this.deactivateHoverFilter(),this.tooltipPosition.moveStickyTooltipOverBars(o,s);for(var Rt=0;Rto.globals.gridHeight&&(V=o.globals.gridHeight-v)),{bcx:b,bcy:m,dataLabelsX:T,dataLabelsY:V,totalDataLabelsX:s,totalDataLabelsY:n,totalDataLabelsAnchor:"middle"}}},{key:"calculateBarsDataLabelsPosition",value:function(t){var n=this.w,s=t.x,o=t.i,c=t.j,u=t.realIndex,h=t.groupIndex,g=t.bcy,m=t.barHeight,b=t.barWidth,x=t.textRects,w=t.dataLabelsX,P=t.strokeWidth,T=t.dataLabelsConfig,V=t.barDataLabelsConfig,O=t.barTotalDataLabelsConfig,N=t.offX,G=t.offY,v=n.globals.gridHeight/n.globals.dataPoints;b=Math.abs(b);var S,I,z=(g+=h!==-1?h*m:0)-(this.barCtx.isRangeBar?0:v)+m/2+x.height/2+G-3,U="start",K=this.barCtx.series[o][c]<0,ae=s;switch(this.barCtx.isReversed&&(ae=s+b-(K?2*b:0),s=n.globals.gridWidth-b),V.position){case"center":w=K?ae+b/2-N:Math.max(x.width/2,ae-b/2)+N;break;case"bottom":w=K?ae+b-P-Math.round(x.width/2)-N:ae-b+P+Math.round(x.width/2)+N;break;case"top":w=K?ae-P+Math.round(x.width/2)-N:ae-P-Math.round(x.width/2)+N}if(this.barCtx.lastActiveBarSerieIndex===u&&O.enabled){var re=new H(this.barCtx.ctx).getTextRects(this.getStackedTotalDataLabel({realIndex:u,j:c}),T.fontSize);K?(S=ae-P+Math.round(re.width/2)-N-O.offsetX-15,U="end"):S=ae-P-Math.round(re.width/2)+N+O.offsetX+15,I=z+O.offsetY}return n.config.chart.stacked||(w<0?w=w+x.width+P:w+x.width/2>n.globals.gridWidth&&(w=n.globals.gridWidth-x.width-P)),{bcx:s,bcy:g,dataLabelsX:w,dataLabelsY:z,totalDataLabelsX:S,totalDataLabelsY:I,totalDataLabelsAnchor:U}}},{key:"drawCalculatedDataLabels",value:function(t){var n=t.x,s=t.y,o=t.val,c=t.i,u=t.j,h=t.textRects,g=t.barHeight,m=t.barWidth,b=t.dataLabelsConfig,x=this.w,w="rotate(0)";x.config.plotOptions.bar.dataLabels.orientation==="vertical"&&(w="rotate(-90, ".concat(n,", ").concat(s,")"));var P=new ze(this.barCtx.ctx),T=new H(this.barCtx.ctx),V=b.formatter,O=null,N=x.globals.collapsedSeriesIndices.indexOf(c)>-1;if(b.enabled&&!N){O=T.group({class:"apexcharts-data-labels",transform:w});var G="";o!==void 0&&(G=V(o,r(r({},x),{},{seriesIndex:c,dataPointIndex:u,w:x}))),!o&&x.config.plotOptions.bar.hideZeroBarsWhenGrouped&&(G="");var v=x.globals.series[c][u]<0,S=x.config.plotOptions.bar.dataLabels.position;x.config.plotOptions.bar.dataLabels.orientation==="vertical"&&(S==="top"&&(b.textAnchor=v?"end":"start"),S==="center"&&(b.textAnchor="middle"),S==="bottom"&&(b.textAnchor=v?"end":"start")),this.barCtx.isRangeBar&&this.barCtx.barOptions.dataLabels.hideOverflowingLabels&&mMath.abs(m)&&(G=""):h.height/1.6>Math.abs(g)&&(G=""));var I=r({},b);this.barCtx.isHorizontal&&o<0&&(b.textAnchor==="start"?I.textAnchor="end":b.textAnchor==="end"&&(I.textAnchor="start")),P.plotDataLabelsText({x:n,y:s,text:G,i:c,j:u,parent:O,dataLabelsConfig:I,alwaysDrawDataLabel:!0,offsetCorrection:!0})}return O}},{key:"drawTotalDataLabels",value:function(t){var n,s=t.x,o=t.y,c=t.val,u=t.realIndex,h=t.textAnchor,g=t.barTotalDataLabelsConfig,m=new H(this.barCtx.ctx);return g.enabled&&s!==void 0&&o!==void 0&&this.barCtx.lastActiveBarSerieIndex===u&&(n=m.drawText({x:s,y:o,foreColor:g.style.color,text:c,textAnchor:h,fontFamily:g.style.fontFamily,fontSize:g.style.fontSize,fontWeight:g.style.fontWeight})),n}}]),D}(),Ab=function(){function D(t){d(this,D),this.w=t.w,this.barCtx=t}return p(D,[{key:"initVariables",value:function(t){var n=this.w;this.barCtx.series=t,this.barCtx.totalItems=0,this.barCtx.seriesLen=0,this.barCtx.visibleI=-1,this.barCtx.visibleItems=1;for(var s=0;s0&&(this.barCtx.seriesLen=this.barCtx.seriesLen+1,this.barCtx.totalItems+=t[s].length),n.globals.isXNumeric)for(var o=0;on.globals.minX&&n.globals.seriesX[s][o]0&&(o=m.globals.minXDiff/w),(u=o/x*parseInt(this.barCtx.barOptions.columnWidth,10)/100)<1&&(u=1)}String(this.barCtx.barOptions.columnWidth).indexOf("%")===-1&&(u=parseInt(this.barCtx.barOptions.columnWidth,10)),h=m.globals.gridHeight-this.barCtx.baseLineY[this.barCtx.yaxisIndex]-(this.barCtx.isReversed?m.globals.gridHeight:0)+(this.barCtx.isReversed?2*this.barCtx.baseLineY[this.barCtx.yaxisIndex]:0),t=m.globals.padHorizontal+(o-u*this.barCtx.seriesLen)/2}return{x:t,y:n,yDivision:s,xDivision:o,barHeight:c,barWidth:u,zeroH:h,zeroW:g}}},{key:"initializeStackedPrevVars",value:function(t){var n=t.w;n.globals.hasSeriesGroups?n.globals.seriesGroups.forEach(function(s){t[s]||(t[s]={}),t[s].prevY=[],t[s].prevX=[],t[s].prevYF=[],t[s].prevXF=[],t[s].prevYVal=[],t[s].prevXVal=[]}):(t.prevY=[],t.prevX=[],t.prevYF=[],t.prevXF=[],t.prevYVal=[],t.prevXVal=[])}},{key:"initializeStackedXYVars",value:function(t){var n=t.w;n.globals.hasSeriesGroups?n.globals.seriesGroups.forEach(function(s){t[s]||(t[s]={}),t[s].xArrj=[],t[s].xArrjF=[],t[s].xArrjVal=[],t[s].yArrj=[],t[s].yArrjF=[],t[s].yArrjVal=[]}):(t.xArrj=[],t.xArrjF=[],t.xArrjVal=[],t.yArrj=[],t.yArrjF=[],t.yArrjVal=[])}},{key:"getPathFillColor",value:function(t,n,s,o){var c,u,h,g,m=this.w,b=new Fe(this.barCtx.ctx),x=null,w=this.barCtx.barOptions.distributed?s:n;return this.barCtx.barOptions.colors.ranges.length>0&&this.barCtx.barOptions.colors.ranges.map(function(P){t[n][s]>=P.from&&t[n][s]<=P.to&&(x=P.color)}),m.config.series[n].data[s]&&m.config.series[n].data[s].fillColor&&(x=m.config.series[n].data[s].fillColor),b.fillPath({seriesNumber:this.barCtx.barOptions.distributed?w:o,dataPointIndex:s,color:x,value:t[n][s],fillConfig:(c=m.config.series[n].data[s])===null||c===void 0?void 0:c.fill,fillType:(u=m.config.series[n].data[s])!==null&&u!==void 0&&(h=u.fill)!==null&&h!==void 0&&h.type?(g=m.config.series[n].data[s])===null||g===void 0?void 0:g.fill.type:m.config.fill.type})}},{key:"getStrokeWidth",value:function(t,n,s){var o=0,c=this.w;return this.barCtx.series[t][n]?this.barCtx.isNullValue=!1:this.barCtx.isNullValue=!0,c.config.stroke.show&&(this.barCtx.isNullValue||(o=Array.isArray(this.barCtx.strokeWidth)?this.barCtx.strokeWidth[s]:this.barCtx.strokeWidth)),o}},{key:"shouldApplyRadius",value:function(t){var n=this.w,s=!1;return n.config.plotOptions.bar.borderRadius>0&&(n.config.chart.stacked&&n.config.plotOptions.bar.borderRadiusWhenStacked==="last"?this.barCtx.lastActiveBarSerieIndex===t&&(s=!0):s=!0),s}},{key:"barBackground",value:function(t){var n=t.j,s=t.i,o=t.x1,c=t.x2,u=t.y1,h=t.y2,g=t.elSeries,m=this.w,b=new H(this.barCtx.ctx),x=new ue(this.barCtx.ctx).getActiveConfigSeriesIndex();if(this.barCtx.barOptions.colors.backgroundBarColors.length>0&&x===s){n>=this.barCtx.barOptions.colors.backgroundBarColors.length&&(n%=this.barCtx.barOptions.colors.backgroundBarColors.length);var w=this.barCtx.barOptions.colors.backgroundBarColors[n],P=b.drawRect(o!==void 0?o:0,u!==void 0?u:0,c!==void 0?c:m.globals.gridWidth,h!==void 0?h:m.globals.gridHeight,this.barCtx.barOptions.colors.backgroundBarRadius,w,this.barCtx.barOptions.colors.backgroundBarOpacity);g.add(P),P.node.classList.add("apexcharts-backgroundBar")}}},{key:"getColumnPaths",value:function(t){var n,s=t.barWidth,o=t.barXPosition,c=t.y1,u=t.y2,h=t.strokeWidth,g=t.seriesGroup,m=t.realIndex,b=t.i,x=t.j,w=t.w,P=new H(this.barCtx.ctx);(h=Array.isArray(h)?h[m]:h)||(h=0);var T=s,V=o;(n=w.config.series[m].data[x])!==null&&n!==void 0&&n.columnWidthOffset&&(V=o-w.config.series[m].data[x].columnWidthOffset/2,T=s+w.config.series[m].data[x].columnWidthOffset);var O=V,N=V+T;c+=.001,u+=.001;var G=P.move(O,c),v=P.move(O,c),S=P.line(N-h,c);if(w.globals.previousPaths.length>0&&(v=this.barCtx.getPreviousPath(m,x,!1)),G=G+P.line(O,u)+P.line(N-h,u)+P.line(N-h,c)+(w.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),v=v+P.line(O,c)+S+S+S+S+S+P.line(O,c)+(w.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),this.shouldApplyRadius(m)&&(G=P.roundPathCorners(G,w.config.plotOptions.bar.borderRadius)),w.config.chart.stacked){var I=this.barCtx;w.globals.hasSeriesGroups&&g&&(I=this.barCtx[g]),I.yArrj.push(u),I.yArrjF.push(Math.abs(c-u)),I.yArrjVal.push(this.barCtx.series[b][x])}return{pathTo:G,pathFrom:v}}},{key:"getBarpaths",value:function(t){var n,s=t.barYPosition,o=t.barHeight,c=t.x1,u=t.x2,h=t.strokeWidth,g=t.seriesGroup,m=t.realIndex,b=t.i,x=t.j,w=t.w,P=new H(this.barCtx.ctx);(h=Array.isArray(h)?h[m]:h)||(h=0);var T=s,V=o;(n=w.config.series[m].data[x])!==null&&n!==void 0&&n.barHeightOffset&&(T=s-w.config.series[m].data[x].barHeightOffset/2,V=o+w.config.series[m].data[x].barHeightOffset);var O=T,N=T+V;c+=.001,u+=.001;var G=P.move(c,O),v=P.move(c,O);w.globals.previousPaths.length>0&&(v=this.barCtx.getPreviousPath(m,x,!1));var S=P.line(c,N-h);if(G=G+P.line(u,O)+P.line(u,N-h)+S+(w.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),v=v+P.line(c,O)+S+S+S+S+S+P.line(c,O)+(w.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),this.shouldApplyRadius(m)&&(G=P.roundPathCorners(G,w.config.plotOptions.bar.borderRadius)),w.config.chart.stacked){var I=this.barCtx;w.globals.hasSeriesGroups&&g&&(I=this.barCtx[g]),I.xArrj.push(u),I.xArrjF.push(Math.abs(c-u)),I.xArrjVal.push(this.barCtx.series[b][x])}return{pathTo:G,pathFrom:v}}},{key:"checkZeroSeries",value:function(t){for(var n=t.series,s=this.w,o=0;o2&&arguments[2]!==void 0)||arguments[2]?n:null;return t!=null&&(s=n+t/this.barCtx.invertedYRatio-2*(this.barCtx.isReversed?t/this.barCtx.invertedYRatio:0)),s}},{key:"getYForValue",value:function(t,n){var s=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2]?n:null;return t!=null&&(s=n-t/this.barCtx.yRatio[this.barCtx.yaxisIndex]+2*(this.barCtx.isReversed?t/this.barCtx.yRatio[this.barCtx.yaxisIndex]:0)),s}},{key:"getGoalValues",value:function(t,n,s,o,c){var u=this,h=this.w,g=[],m=function(w,P){var T;g.push((y(T={},t,t==="x"?u.getXForValue(w,n,!1):u.getYForValue(w,s,!1)),y(T,"attrs",P),T))};if(h.globals.seriesGoals[o]&&h.globals.seriesGoals[o][c]&&Array.isArray(h.globals.seriesGoals[o][c])&&h.globals.seriesGoals[o][c].forEach(function(w){m(w.value,w)}),this.barCtx.barOptions.isDumbbell&&h.globals.seriesRange.length){var b=this.barCtx.barOptions.dumbbellColors?this.barCtx.barOptions.dumbbellColors:h.globals.colors,x={strokeHeight:t==="x"?0:h.globals.markers.size[o],strokeWidth:t==="x"?h.globals.markers.size[o]:0,strokeDashArray:0,strokeLineCap:"round",strokeColor:Array.isArray(b[o])?b[o][0]:b[o]};m(h.globals.seriesRangeStart[o][c],x),m(h.globals.seriesRangeEnd[o][c],r(r({},x),{},{strokeColor:Array.isArray(b[o])?b[o][1]:b[o]}))}return g}},{key:"drawGoalLine",value:function(t){var n=t.barXPosition,s=t.barYPosition,o=t.goalX,c=t.goalY,u=t.barWidth,h=t.barHeight,g=new H(this.barCtx.ctx),m=g.group({className:"apexcharts-bar-goals-groups"});m.node.classList.add("apexcharts-element-hidden"),this.barCtx.w.globals.delayedElements.push({el:m.node}),m.attr("clip-path","url(#gridRectMarkerMask".concat(this.barCtx.w.globals.cuid,")"));var b=null;return this.barCtx.isHorizontal?Array.isArray(o)&&o.forEach(function(x){var w=x.attrs.strokeHeight!==void 0?x.attrs.strokeHeight:h/2,P=s+w+h/2;b=g.drawLine(x.x,P-2*w,x.x,P,x.attrs.strokeColor?x.attrs.strokeColor:void 0,x.attrs.strokeDashArray,x.attrs.strokeWidth?x.attrs.strokeWidth:2,x.attrs.strokeLineCap),m.add(b)}):Array.isArray(c)&&c.forEach(function(x){var w=x.attrs.strokeWidth!==void 0?x.attrs.strokeWidth:u/2,P=n+w+u/2;b=g.drawLine(P-2*w,x.y,P,x.y,x.attrs.strokeColor?x.attrs.strokeColor:void 0,x.attrs.strokeDashArray,x.attrs.strokeHeight?x.attrs.strokeHeight:2,x.attrs.strokeLineCap),m.add(b)}),m}},{key:"drawBarShadow",value:function(t){var n=t.prevPaths,s=t.currPaths,o=t.color,c=this.w,u=n.x,h=n.x1,g=n.barYPosition,m=s.x,b=s.x1,x=s.barYPosition,w=g+s.barHeight,P=new H(this.barCtx.ctx),T=new L,V=P.move(h,w)+P.line(u,w)+P.line(m,x)+P.line(b,x)+P.line(h,w)+(c.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z");return P.drawPath({d:V,fill:T.shadeColor(.5,L.rgb2hex(o)),stroke:"none",strokeWidth:0,fillOpacity:1,classes:"apexcharts-bar-shadows"})}}]),D}(),Ti=function(){function D(t,n){d(this,D),this.ctx=t,this.w=t.w;var s=this.w;this.barOptions=s.config.plotOptions.bar,this.isHorizontal=this.barOptions.horizontal,this.strokeWidth=s.config.stroke.width,this.isNullValue=!1,this.isRangeBar=s.globals.seriesRange.length&&this.isHorizontal,this.isVerticalGroupedRangeBar=!s.globals.isBarHorizontal&&s.globals.seriesRange.length&&s.config.plotOptions.bar.rangeBarGroupRows,this.isFunnel=this.barOptions.isFunnel,this.xyRatios=n,this.xyRatios!==null&&(this.xRatio=n.xRatio,this.initialXRatio=n.initialXRatio,this.yRatio=n.yRatio,this.invertedXRatio=n.invertedXRatio,this.invertedYRatio=n.invertedYRatio,this.baseLineY=n.baseLineY,this.baseLineInvertedY=n.baseLineInvertedY),this.yaxisIndex=0,this.seriesLen=0,this.pathArr=[];var o=new ue(this.ctx);this.lastActiveBarSerieIndex=o.getActiveConfigSeriesIndex("desc",["bar","column"]);var c=o.getBarSeriesIndices(),u=new J(this.ctx);this.stackedSeriesTotals=u.getStackedSeriesTotals(this.w.config.series.map(function(h,g){return c.indexOf(g)===-1?g:-1}).filter(function(h){return h!==-1})),this.barHelpers=new Ab(this)}return p(D,[{key:"draw",value:function(t,n){var s=this.w,o=new H(this.ctx),c=new J(this.ctx,s);t=c.getLogSeries(t),this.series=t,this.yRatio=c.getLogYRatios(this.yRatio),this.barHelpers.initVariables(t);var u=o.group({class:"apexcharts-bar-series apexcharts-plot-series"});s.config.dataLabels.enabled&&this.totalItems>this.barOptions.dataLabels.maxItems&&console.warn("WARNING: DataLabels are enabled but there are too many to display. This may cause performance issue when rendering.");for(var h=0,g=0;h0&&(this.visibleI=this.visibleI+1);var v=0,S=0;this.yRatio.length>1&&(this.yaxisIndex=N),this.isReversed=s.config.yaxis[this.yaxisIndex]&&s.config.yaxis[this.yaxisIndex].reversed;var I=this.barHelpers.initialPositions();T=I.y,v=I.barHeight,b=I.yDivision,w=I.zeroW,P=I.x,S=I.barWidth,m=I.xDivision,x=I.zeroH,this.horizontal||O.push(P+S/2);var z=o.group({class:"apexcharts-datalabels","data:realIndex":N});s.globals.delayedElements.push({el:z.node}),z.node.classList.add("apexcharts-element-hidden");var U=o.group({class:"apexcharts-bar-goals-markers"}),K=o.group({class:"apexcharts-bar-shadows"});s.globals.delayedElements.push({el:K.node}),K.node.classList.add("apexcharts-element-hidden");for(var ae=0;ae0){var Ne=this.barHelpers.drawBarShadow({color:typeof xe=="string"&&(xe==null?void 0:xe.indexOf("url"))===-1?xe:L.hexToRgba(s.globals.colors[h]),prevPaths:this.pathArr[this.pathArr.length-1],currPaths:ge});Ne&&K.add(Ne)}this.pathArr.push(ge);var je=this.barHelpers.drawGoalLine({barXPosition:ge.barXPosition,barYPosition:ge.barYPosition,goalX:ge.goalX,goalY:ge.goalY,barHeight:v,barWidth:S});je&&U.add(je),T=ge.y,P=ge.x,ae>0&&O.push(P+S/2),V.push(T),this.renderSeries({realIndex:N,pathFill:xe,j:ae,i:h,pathFrom:ge.pathFrom,pathTo:ge.pathTo,strokeWidth:re,elSeries:G,x:P,y:T,series:t,barHeight:ge.barHeight?ge.barHeight:v,barWidth:ge.barWidth?ge.barWidth:S,elDataLabelsWrap:z,elGoalsMarkers:U,elBarShadows:K,visibleSeries:this.visibleI,type:"bar"})}s.globals.seriesXvalues[N]=O,s.globals.seriesYvalues[N]=V,u.add(G)}return u}},{key:"renderSeries",value:function(t){var n=t.realIndex,s=t.pathFill,o=t.lineFill,c=t.j,u=t.i,h=t.groupIndex,g=t.pathFrom,m=t.pathTo,b=t.strokeWidth,x=t.elSeries,w=t.x,P=t.y,T=t.y1,V=t.y2,O=t.series,N=t.barHeight,G=t.barWidth,v=t.barXPosition,S=t.barYPosition,I=t.elDataLabelsWrap,z=t.elGoalsMarkers,U=t.elBarShadows,K=t.visibleSeries,ae=t.type,re=this.w,ge=new H(this.ctx);o||(o=this.barOptions.distributed?re.globals.stroke.colors[c]:re.globals.stroke.colors[n]),re.config.series[u].data[c]&&re.config.series[u].data[c].strokeColor&&(o=re.config.series[u].data[c].strokeColor),this.isNullValue&&(s="none");var we=c/re.config.chart.animations.animateGradually.delay*(re.config.chart.animations.speed/re.globals.dataPoints)/2.4,xe=ge.renderPaths({i:u,j:c,realIndex:n,pathFrom:g,pathTo:m,stroke:o,strokeWidth:b,strokeLineCap:re.config.stroke.lineCap,fill:s,animationDelay:we,initialSpeed:re.config.chart.animations.speed,dataChangeSpeed:re.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(ae,"-area")});xe.attr("clip-path","url(#gridRectMask".concat(re.globals.cuid,")"));var Ne=re.config.forecastDataPoints;Ne.count>0&&c>=re.globals.dataPoints-Ne.count&&(xe.node.setAttribute("stroke-dasharray",Ne.dashArray),xe.node.setAttribute("stroke-width",Ne.strokeWidth),xe.node.setAttribute("fill-opacity",Ne.fillOpacity)),T!==void 0&&V!==void 0&&(xe.attr("data-range-y1",T),xe.attr("data-range-y2",V)),new Y(this.ctx).setSelectionFilter(xe,n,c),x.add(xe);var je=new Cb(this).handleBarDataLabels({x:w,y:P,y1:T,y2:V,i:u,j:c,series:O,realIndex:n,groupIndex:h,barHeight:N,barWidth:G,barXPosition:v,barYPosition:S,renderedPath:xe,visibleSeries:K});return je.dataLabels!==null&&I.add(je.dataLabels),je.totalDataLabels&&I.add(je.totalDataLabels),x.add(I),z&&x.add(z),U&&x.add(U),x}},{key:"drawBarPaths",value:function(t){var n,s=t.indexes,o=t.barHeight,c=t.strokeWidth,u=t.zeroW,h=t.x,g=t.y,m=t.yDivision,b=t.elSeries,x=this.w,w=s.i,P=s.j;if(x.globals.isXNumeric)n=(g=(x.globals.seriesX[w][P]-x.globals.minX)/this.invertedXRatio-o)+o*this.visibleI;else if(x.config.plotOptions.bar.hideZeroBarsWhenGrouped){var T=0,V=0;x.globals.seriesPercent.forEach(function(N,G){N[P]&&T++,G0&&(o=this.seriesLen*o/T),n=g+o*this.visibleI,n-=o*V}else n=g+o*this.visibleI;this.isFunnel&&(u-=(this.barHelpers.getXForValue(this.series[w][P],u)-u)/2),h=this.barHelpers.getXForValue(this.series[w][P],u);var O=this.barHelpers.getBarpaths({barYPosition:n,barHeight:o,x1:u,x2:h,strokeWidth:c,series:this.series,realIndex:s.realIndex,i:w,j:P,w:x});return x.globals.isXNumeric||(g+=m),this.barHelpers.barBackground({j:P,i:w,y1:n-o*this.visibleI,y2:o*this.seriesLen,elSeries:b}),{pathTo:O.pathTo,pathFrom:O.pathFrom,x1:u,x:h,y:g,goalX:this.barHelpers.getGoalValues("x",u,null,w,P),barYPosition:n,barHeight:o}}},{key:"drawColumnPaths",value:function(t){var n,s=t.indexes,o=t.x,c=t.y,u=t.xDivision,h=t.barWidth,g=t.zeroH,m=t.strokeWidth,b=t.elSeries,x=this.w,w=s.realIndex,P=s.i,T=s.j,V=s.bc;if(x.globals.isXNumeric){var O=w;x.globals.seriesX[w].length||(O=x.globals.maxValsInArrayIndex),x.globals.seriesX[O][T]&&(o=(x.globals.seriesX[O][T]-x.globals.minX)/this.xRatio-h*this.seriesLen/2),n=o+h*this.visibleI}else if(x.config.plotOptions.bar.hideZeroBarsWhenGrouped){var N=0,G=0;x.globals.seriesPercent.forEach(function(S,I){S[T]&&N++,I0&&(h=this.seriesLen*h/N),n=o+h*this.visibleI,n-=h*G}else n=o+h*this.visibleI;c=this.barHelpers.getYForValue(this.series[P][T],g);var v=this.barHelpers.getColumnPaths({barXPosition:n,barWidth:h,y1:g,y2:c,strokeWidth:m,series:this.series,realIndex:s.realIndex,i:P,j:T,w:x});return x.globals.isXNumeric||(o+=u),this.barHelpers.barBackground({bc:V,j:T,i:P,x1:n-m/2-h*this.visibleI,x2:h*this.seriesLen+m/2,elSeries:b}),{pathTo:v.pathTo,pathFrom:v.pathFrom,x:o,y:c,goalY:this.barHelpers.getGoalValues("y",null,g,P,T),barXPosition:n,barWidth:h}}},{key:"getPreviousPath",value:function(t,n){for(var s,o=this.w,c=0;c0&&parseInt(u.realIndex,10)===parseInt(t,10)&&o.globals.previousPaths[c].paths[n]!==void 0&&(s=o.globals.previousPaths[c].paths[n].d)}return s}}]),D}(),xd=function(D){k(n,Ti);var t=_(n);function n(){return d(this,n),t.apply(this,arguments)}return p(n,[{key:"draw",value:function(s,o){var c=this,u=this.w;this.graphics=new H(this.ctx),this.bar=new Ti(this.ctx,this.xyRatios);var h=new J(this.ctx,u);s=h.getLogSeries(s),this.yRatio=h.getLogYRatios(this.yRatio),this.barHelpers.initVariables(s),u.config.chart.stackType==="100%"&&(s=u.globals.seriesPercent.slice()),this.series=s,this.barHelpers.initializeStackedPrevVars(this);for(var g=this.graphics.group({class:"apexcharts-bar-series apexcharts-plot-series"}),m=0,b=0,x=function(T,V){var O=void 0,N=void 0,G=void 0,v=void 0,S=-1;c.groupCtx=c,u.globals.seriesGroups.forEach(function(It,Rt){It.indexOf(u.config.series[T].name)>-1&&(S=Rt)}),S!==-1&&(c.groupCtx=c[u.globals.seriesGroups[S]]);var I=[],z=[],U=u.globals.comboCharts?o[T]:T;c.yRatio.length>1&&(c.yaxisIndex=U),c.isReversed=u.config.yaxis[c.yaxisIndex]&&u.config.yaxis[c.yaxisIndex].reversed;var K=c.graphics.group({class:"apexcharts-series",seriesName:L.escapeString(u.globals.seriesNames[U]),rel:T+1,"data:realIndex":U});c.ctx.series.addCollapsedClassToSeries(K,U);var ae=c.graphics.group({class:"apexcharts-datalabels","data:realIndex":U}),re=c.graphics.group({class:"apexcharts-bar-goals-markers"}),ge=0,we=0,xe=c.initialPositions(m,b,O,N,G,v);b=xe.y,ge=xe.barHeight,N=xe.yDivision,v=xe.zeroW,m=xe.x,we=xe.barWidth,O=xe.xDivision,G=xe.zeroH,c.barHelpers.initializeStackedXYVars(c),c.groupCtx.prevY.length===1&&c.groupCtx.prevY[0].every(function(It){return isNaN(It)})&&(c.groupCtx.prevY[0]=c.groupCtx.prevY[0].map(function(It){return G}),c.groupCtx.prevYF[0]=c.groupCtx.prevYF[0].map(function(It){return 0}));for(var Ne=0;Ne1?(c=P.globals.minXDiff/this.xRatio)*parseInt(this.barOptions.columnWidth,10)/100:w*parseInt(P.config.plotOptions.bar.columnWidth,10)/100,String(P.config.plotOptions.bar.columnWidth).indexOf("%")===-1&&(w=parseInt(P.config.plotOptions.bar.columnWidth,10)),h=P.globals.gridHeight-this.baseLineY[this.yaxisIndex]-(this.isReversed?P.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),s=P.globals.padHorizontal+(c-w)/2),{x:s,y:o,yDivision:u,xDivision:c,barHeight:(m=P.globals.seriesGroups)!==null&&m!==void 0&&m.length?x/P.globals.seriesGroups.length:x,barWidth:(b=P.globals.seriesGroups)!==null&&b!==void 0&&b.length?w/P.globals.seriesGroups.length:w,zeroH:h,zeroW:g}}},{key:"drawStackedBarPaths",value:function(s){for(var o,c=s.indexes,u=s.barHeight,h=s.strokeWidth,g=s.zeroW,m=s.x,b=s.y,x=s.groupIndex,w=s.seriesGroup,P=s.yDivision,T=s.elSeries,V=this.w,O=b+(x!==-1?x*u:0),N=c.i,G=c.j,v=0,S=0;S0){var z=g;this.groupCtx.prevXVal[I-1][G]<0?z=this.series[N][G]>=0?this.groupCtx.prevX[I-1][G]+v-2*(this.isReversed?v:0):this.groupCtx.prevX[I-1][G]:this.groupCtx.prevXVal[I-1][G]>=0&&(z=this.series[N][G]>=0?this.groupCtx.prevX[I-1][G]:this.groupCtx.prevX[I-1][G]-v+2*(this.isReversed?v:0)),o=z}else o=g;m=this.series[N][G]===null?o:o+this.series[N][G]/this.invertedYRatio-2*(this.isReversed?this.series[N][G]/this.invertedYRatio:0);var U=this.barHelpers.getBarpaths({barYPosition:O,barHeight:u,x1:o,x2:m,strokeWidth:h,series:this.series,realIndex:c.realIndex,seriesGroup:w,i:N,j:G,w:V});return this.barHelpers.barBackground({j:G,i:N,y1:O,y2:u,elSeries:T}),b+=P,{pathTo:U.pathTo,pathFrom:U.pathFrom,goalX:this.barHelpers.getGoalValues("x",g,null,N,G),barYPosition:O,x:m,y:b}}},{key:"drawStackedColumnPaths",value:function(s){var o=s.indexes,c=s.x,u=s.y,h=s.xDivision,g=s.barWidth,m=s.zeroH,b=s.groupIndex,x=s.seriesGroup,w=s.elSeries,P=this.w,T=o.i,V=o.j,O=o.bc;if(P.globals.isXNumeric){var N=P.globals.seriesX[T][V];N||(N=0),c=(N-P.globals.minX)/this.xRatio-g/2,P.globals.seriesGroups.length&&(c=(N-P.globals.minX)/this.xRatio-g/2*P.globals.seriesGroups.length)}for(var G,v=c+(b!==-1?b*g:0),S=0,I=0;I0&&!P.globals.isXNumeric||z>0&&P.globals.isXNumeric&&P.globals.seriesX[T-1][V]===P.globals.seriesX[T][V]){var U,K,ae,re=Math.min(this.yRatio.length+1,T+1);if(this.groupCtx.prevY[z-1]!==void 0&&this.groupCtx.prevY[z-1].length)for(var ge=1;ge=0?ae-S+2*(this.isReversed?S:0):ae;break}if(((je=this.groupCtx.prevYVal[z-xe])===null||je===void 0?void 0:je[V])>=0){K=this.series[T][V]>=0?ae:ae+S-2*(this.isReversed?S:0);break}}K===void 0&&(K=P.globals.gridHeight),G=(U=this.groupCtx.prevYF[0])!==null&&U!==void 0&&U.every(function(lt){return lt===0})&&this.groupCtx.prevYF.slice(1,z).every(function(lt){return lt.every(function(ut){return isNaN(ut)})})?m:K}else G=m;u=this.series[T][V]?G-this.series[T][V]/this.yRatio[this.yaxisIndex]+2*(this.isReversed?this.series[T][V]/this.yRatio[this.yaxisIndex]:0):G;var ot=this.barHelpers.getColumnPaths({barXPosition:v,barWidth:g,y1:G,y2:u,yRatio:this.yRatio[this.yaxisIndex],strokeWidth:this.strokeWidth,series:this.series,seriesGroup:x,realIndex:o.realIndex,i:T,j:V,w:P});return this.barHelpers.barBackground({bc:O,j:V,i:T,x1:v,x2:g,elSeries:w}),c+=h,{pathTo:ot.pathTo,pathFrom:ot.pathFrom,goalY:this.barHelpers.getGoalValues("y",null,m,T,V),barXPosition:v,x:P.globals.isXNumeric?c-h:c,y:u}}}]),n}(),al=function(D){k(n,Ti);var t=_(n);function n(){return d(this,n),t.apply(this,arguments)}return p(n,[{key:"draw",value:function(s,o,c){var u=this,h=this.w,g=new H(this.ctx),m=h.globals.comboCharts?o:h.config.chart.type,b=new Fe(this.ctx);this.candlestickOptions=this.w.config.plotOptions.candlestick,this.boxOptions=this.w.config.plotOptions.boxPlot,this.isHorizontal=h.config.plotOptions.bar.horizontal;var x=new J(this.ctx,h);s=x.getLogSeries(s),this.series=s,this.yRatio=x.getLogYRatios(this.yRatio),this.barHelpers.initVariables(s);for(var w=g.group({class:"apexcharts-".concat(m,"-series apexcharts-plot-series")}),P=function(V){u.isBoxPlot=h.config.chart.type==="boxPlot"||h.config.series[V].type==="boxPlot";var O,N,G,v,S=void 0,I=void 0,z=[],U=[],K=h.globals.comboCharts?c[V]:V,ae=g.group({class:"apexcharts-series",seriesName:L.escapeString(h.globals.seriesNames[K]),rel:V+1,"data:realIndex":K});u.ctx.series.addCollapsedClassToSeries(ae,K),s[V].length>0&&(u.visibleI=u.visibleI+1);var re,ge;u.yRatio.length>1&&(u.yaxisIndex=K);var we=u.barHelpers.initialPositions();I=we.y,re=we.barHeight,N=we.yDivision,v=we.zeroW,S=we.x,ge=we.barWidth,O=we.xDivision,G=we.zeroH,U.push(S+ge/2);for(var xe=g.group({class:"apexcharts-datalabels","data:realIndex":K}),Ne=function(ot){var lt=u.barHelpers.getStrokeWidth(V,ot,K),ut=null,kt={indexes:{i:V,j:ot,realIndex:K},x:S,y:I,strokeWidth:lt,elSeries:ae};ut=u.isHorizontal?u.drawHorizontalBoxPaths(r(r({},kt),{},{yDivision:N,barHeight:re,zeroW:v})):u.drawVerticalBoxPaths(r(r({},kt),{},{xDivision:O,barWidth:ge,zeroH:G})),I=ut.y,S=ut.x,ot>0&&U.push(S+ge/2),z.push(I),ut.pathTo.forEach(function(It,Rt){var Dn=!u.isBoxPlot&&u.candlestickOptions.wick.useFillColor?ut.color[Rt]:h.globals.stroke.colors[V],Ka=b.fillPath({seriesNumber:K,dataPointIndex:ot,color:ut.color[Rt],value:s[V][ot]});u.renderSeries({realIndex:K,pathFill:Ka,lineFill:Dn,j:ot,i:V,pathFrom:ut.pathFrom,pathTo:It,strokeWidth:lt,elSeries:ae,x:S,y:I,series:s,barHeight:re,barWidth:ge,elDataLabelsWrap:xe,visibleSeries:u.visibleI,type:h.config.chart.type})})},je=0;jeS.c&&(T=!1);var U=Math.min(S.o,S.c),K=Math.max(S.o,S.c),ae=S.m;b.globals.isXNumeric&&(c=(b.globals.seriesX[v][P]-b.globals.minX)/this.xRatio-h/2);var re=c+h*this.visibleI;this.series[w][P]===void 0||this.series[w][P]===null?(U=g,K=g):(U=g-U/G,K=g-K/G,I=g-S.h/G,z=g-S.l/G,ae=g-S.m/G);var ge=x.move(re,g),we=x.move(re+h/2,U);return b.globals.previousPaths.length>0&&(we=this.getPreviousPath(v,P,!0)),ge=this.isBoxPlot?[x.move(re,U)+x.line(re+h/2,U)+x.line(re+h/2,I)+x.line(re+h/4,I)+x.line(re+h-h/4,I)+x.line(re+h/2,I)+x.line(re+h/2,U)+x.line(re+h,U)+x.line(re+h,ae)+x.line(re,ae)+x.line(re,U+m/2),x.move(re,ae)+x.line(re+h,ae)+x.line(re+h,K)+x.line(re+h/2,K)+x.line(re+h/2,z)+x.line(re+h-h/4,z)+x.line(re+h/4,z)+x.line(re+h/2,z)+x.line(re+h/2,K)+x.line(re,K)+x.line(re,ae)+"z"]:[x.move(re,K)+x.line(re+h/2,K)+x.line(re+h/2,I)+x.line(re+h/2,K)+x.line(re+h,K)+x.line(re+h,U)+x.line(re+h/2,U)+x.line(re+h/2,z)+x.line(re+h/2,U)+x.line(re,U)+x.line(re,K-m/2)],we+=x.move(re,U),b.globals.isXNumeric||(c+=u),{pathTo:ge,pathFrom:we,x:c,y:K,barXPosition:re,color:this.isBoxPlot?N:T?[V]:[O]}}},{key:"drawHorizontalBoxPaths",value:function(s){var o=s.indexes;s.x;var c=s.y,u=s.yDivision,h=s.barHeight,g=s.zeroW,m=s.strokeWidth,b=this.w,x=new H(this.ctx),w=o.i,P=o.j,T=this.boxOptions.colors.lower;this.isBoxPlot&&(T=[this.boxOptions.colors.lower,this.boxOptions.colors.upper]);var V=this.invertedYRatio,O=o.realIndex,N=this.getOHLCValue(O,P),G=g,v=g,S=Math.min(N.o,N.c),I=Math.max(N.o,N.c),z=N.m;b.globals.isXNumeric&&(c=(b.globals.seriesX[O][P]-b.globals.minX)/this.invertedXRatio-h/2);var U=c+h*this.visibleI;this.series[w][P]===void 0||this.series[w][P]===null?(S=g,I=g):(S=g+S/V,I=g+I/V,G=g+N.h/V,v=g+N.l/V,z=g+N.m/V);var K=x.move(g,U),ae=x.move(S,U+h/2);return b.globals.previousPaths.length>0&&(ae=this.getPreviousPath(O,P,!0)),K=[x.move(S,U)+x.line(S,U+h/2)+x.line(G,U+h/2)+x.line(G,U+h/2-h/4)+x.line(G,U+h/2+h/4)+x.line(G,U+h/2)+x.line(S,U+h/2)+x.line(S,U+h)+x.line(z,U+h)+x.line(z,U)+x.line(S+m/2,U),x.move(z,U)+x.line(z,U+h)+x.line(I,U+h)+x.line(I,U+h/2)+x.line(v,U+h/2)+x.line(v,U+h-h/4)+x.line(v,U+h/4)+x.line(v,U+h/2)+x.line(I,U+h/2)+x.line(I,U)+x.line(z,U)+"z"],ae+=x.move(S,U),b.globals.isXNumeric||(c+=u),{pathTo:K,pathFrom:ae,x:I,y:c,barYPosition:U,color:T}}},{key:"getOHLCValue",value:function(s,o){var c=this.w;return{o:this.isBoxPlot?c.globals.seriesCandleH[s][o]:c.globals.seriesCandleO[s][o],h:this.isBoxPlot?c.globals.seriesCandleO[s][o]:c.globals.seriesCandleH[s][o],m:c.globals.seriesCandleM[s][o],l:this.isBoxPlot?c.globals.seriesCandleC[s][o]:c.globals.seriesCandleL[s][o],c:this.isBoxPlot?c.globals.seriesCandleL[s][o]:c.globals.seriesCandleC[s][o]}}}]),n}(),yd=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w}return p(D,[{key:"checkColorRange",value:function(){var t=this.w,n=!1,s=t.config.plotOptions[t.config.chart.type];return s.colorScale.ranges.length>0&&s.colorScale.ranges.map(function(o,c){o.from<=0&&(n=!0)}),n}},{key:"getShadeColor",value:function(t,n,s,o){var c=this.w,u=1,h=c.config.plotOptions[t].shadeIntensity,g=this.determineColor(t,n,s);c.globals.hasNegs||o?u=c.config.plotOptions[t].reverseNegativeShade?g.percent<0?g.percent/100*(1.25*h):(1-g.percent/100)*(1.25*h):g.percent<=0?1-(1+g.percent/100)*h:(1-g.percent/100)*h:(u=1-g.percent/100,t==="treemap"&&(u=(1-g.percent/100)*(1.25*h)));var m=g.color,b=new L;return c.config.plotOptions[t].enableShades&&(m=this.w.config.theme.mode==="dark"?L.hexToRgba(b.shadeColor(-1*u,g.color),c.config.fill.opacity):L.hexToRgba(b.shadeColor(u,g.color),c.config.fill.opacity)),{color:m,colorProps:g}}},{key:"determineColor",value:function(t,n,s){var o=this.w,c=o.globals.series[n][s],u=o.config.plotOptions[t],h=u.colorScale.inverse?s:n;u.distributed&&o.config.chart.type==="treemap"&&(h=s);var g=o.globals.colors[h],m=null,b=Math.min.apply(Math,F(o.globals.series[n])),x=Math.max.apply(Math,F(o.globals.series[n]));u.distributed||t!=="heatmap"||(b=o.globals.minY,x=o.globals.maxY),u.colorScale.min!==void 0&&(b=u.colorScale.mino.globals.maxY?u.colorScale.max:o.globals.maxY);var w=Math.abs(x)+Math.abs(b),P=100*c/(w===0?w-1e-6:w);return u.colorScale.ranges.length>0&&u.colorScale.ranges.map(function(T,V){if(c>=T.from&&c<=T.to){g=T.color,m=T.foreColor?T.foreColor:null,b=T.from,x=T.to;var O=Math.abs(x)+Math.abs(b);P=100*c/(O===0?O-1e-6:O)}}),{color:g,foreColor:m,percent:P}}},{key:"calculateDataLabels",value:function(t){var n=t.text,s=t.x,o=t.y,c=t.i,u=t.j,h=t.colorProps,g=t.fontSize,m=this.w.config.dataLabels,b=new H(this.ctx),x=new ze(this.ctx),w=null;if(m.enabled){w=b.group({class:"apexcharts-data-labels"});var P=m.offsetX,T=m.offsetY,V=s+P,O=o+parseFloat(m.style.fontSize)/3+T;x.plotDataLabelsText({x:V,y:O,text:n,i:c,j:u,color:h.foreColor,parent:w,fontSize:g,dataLabelsConfig:m})}return w}},{key:"addListeners",value:function(t){var n=new H(this.ctx);t.node.addEventListener("mouseenter",n.pathMouseEnter.bind(this,t)),t.node.addEventListener("mouseleave",n.pathMouseLeave.bind(this,t)),t.node.addEventListener("mousedown",n.pathMouseDown.bind(this,t))}}]),D}(),Pb=function(){function D(t,n){d(this,D),this.ctx=t,this.w=t.w,this.xRatio=n.xRatio,this.yRatio=n.yRatio,this.dynamicAnim=this.w.config.chart.animations.dynamicAnimation,this.helpers=new yd(t),this.rectRadius=this.w.config.plotOptions.heatmap.radius,this.strokeWidth=this.w.config.stroke.show?this.w.config.stroke.width:0}return p(D,[{key:"draw",value:function(t){var n=this.w,s=new H(this.ctx),o=s.group({class:"apexcharts-heatmap"});o.attr("clip-path","url(#gridRectMask".concat(n.globals.cuid,")"));var c=n.globals.gridWidth/n.globals.dataPoints,u=n.globals.gridHeight/n.globals.series.length,h=0,g=!1;this.negRange=this.helpers.checkColorRange();var m=t.slice();n.config.yaxis[0].reversed&&(g=!0,m.reverse());for(var b=g?0:m.length-1;g?b=0;g?b++:b--){var x=s.group({class:"apexcharts-series apexcharts-heatmap-series",seriesName:L.escapeString(n.globals.seriesNames[b]),rel:b+1,"data:realIndex":b});if(this.ctx.series.addCollapsedClassToSeries(x,b),n.config.chart.dropShadow.enabled){var w=n.config.chart.dropShadow;new Y(this.ctx).dropShadow(x,w,b)}for(var P=0,T=n.config.plotOptions.heatmap.shadeIntensity,V=0;V-1&&this.pieClicked(w),s.config.dataLabels.enabled){var I=v.x,z=v.y,U=100*T/this.fullAngle+"%";if(T!==0&&s.config.plotOptions.pie.dataLabels.minAngleToShowLabelthis.fullAngle?n.endAngle=n.endAngle-(o+h):o+h=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle&&(g=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle-.01),Math.ceil(g)>this.fullAngle&&(g-=this.fullAngle);var m=Math.PI*(g-90)/180,b=n.centerX+c*Math.cos(h),x=n.centerY+c*Math.sin(h),w=n.centerX+c*Math.cos(m),P=n.centerY+c*Math.sin(m),T=L.polarToCartesian(n.centerX,n.centerY,n.donutSize,g),V=L.polarToCartesian(n.centerX,n.centerY,n.donutSize,u),O=o>180?1:0,N=["M",b,x,"A",c,c,0,O,1,w,P];return n.chartType==="donut"?[].concat(N,["L",T.x,T.y,"A",n.donutSize,n.donutSize,0,O,0,V.x,V.y,"L",b,x,"z"]).join(" "):n.chartType==="pie"||n.chartType==="polarArea"?[].concat(N,["L",n.centerX,n.centerY,"L",b,x]).join(" "):[].concat(N).join(" ")}},{key:"drawPolarElements",value:function(t){var n=this.w,s=new Z(this.ctx),o=new H(this.ctx),c=new wd(this.ctx),u=o.group(),h=o.group(),g=s.niceScale(0,Math.ceil(this.maxY),n.config.yaxis[0].tickAmount,0,!0),m=g.result.reverse(),b=g.result.length;this.maxY=g.niceMax;for(var x=n.globals.radialSize,w=x/(b-1),P=0;P1&&t.total.show&&(c=t.total.color);var h=u.globals.dom.baseEl.querySelector(".apexcharts-datalabel-label"),g=u.globals.dom.baseEl.querySelector(".apexcharts-datalabel-value");s=(0,t.value.formatter)(s,u),o||typeof t.total.formatter!="function"||(s=t.total.formatter(u));var m=n===t.total.label;n=t.name.formatter(n,m,u),h!==null&&(h.textContent=n),g!==null&&(g.textContent=s),h!==null&&(h.style.fill=c)}},{key:"printDataLabelsInner",value:function(t,n){var s=this.w,o=t.getAttribute("data:value"),c=s.globals.seriesNames[parseInt(t.parentNode.getAttribute("rel"),10)-1];s.globals.series.length>1&&this.printInnerLabels(n,c,o,t);var u=s.globals.dom.baseEl.querySelector(".apexcharts-datalabels-group");u!==null&&(u.style.opacity=1)}},{key:"drawSpokes",value:function(t){var n=this,s=this.w,o=new H(this.ctx),c=s.config.plotOptions.polarArea.spokes;if(c.strokeWidth!==0){for(var u=[],h=360/s.globals.series.length,g=0;g1)h&&!n.total.showAlways?m({makeSliceOut:!1,printLabel:!0}):this.printInnerLabels(n,n.total.label,n.total.formatter(c));else if(m({makeSliceOut:!1,printLabel:!0}),!h)if(c.globals.selectedDataPoints.length&&c.globals.series.length>1)if(c.globals.selectedDataPoints[0].length>0){var b=c.globals.selectedDataPoints[0],x=c.globals.dom.baseEl.querySelector(".apexcharts-".concat(this.chartType.toLowerCase(),"-slice-").concat(b));this.printDataLabelsInner(x,n)}else u&&c.globals.selectedDataPoints.length&&c.globals.selectedDataPoints[0].length===0&&(u.style.opacity=0);else u&&c.globals.series.length>1&&(u.style.opacity=0)}}]),D}(),Eb=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w,this.chartType=this.w.config.chart.type,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled,this.animDur=0;var n=this.w;this.graphics=new H(this.ctx),this.lineColorArr=n.globals.stroke.colors!==void 0?n.globals.stroke.colors:n.globals.colors,this.defaultSize=n.globals.svgHeight0&&(z=n.getPreviousPath(N));for(var U=0;U=10?t.x>0?(s="start",o+=10):t.x<0&&(s="end",o-=10):s="middle",Math.abs(t.y)>=n-10&&(t.y<0?c-=10:t.y>0&&(c+=10)),{textAnchor:s,newX:o,newY:c}}},{key:"getPreviousPath",value:function(t){for(var n=this.w,s=null,o=0;o0&&parseInt(c.realIndex,10)===parseInt(t,10)&&n.globals.previousPaths[o].paths[0]!==void 0&&(s=n.globals.previousPaths[o].paths[0].d)}return s}},{key:"getDataPointsPos",value:function(t,n){var s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:this.dataPointsLen;t=t||[],n=n||[];for(var o=[],c=0;c=360&&(V=360-Math.abs(this.startAngle)-.1);var O=c.drawPath({d:"",stroke:P,strokeWidth:m*parseInt(w.strokeWidth,10)/100,fill:"none",strokeOpacity:w.opacity,classes:"apexcharts-radialbar-area"});if(w.dropShadow.enabled){var N=w.dropShadow;h.dropShadow(O,N)}x.add(O),O.attr("id","apexcharts-radialbarTrack-"+b),this.animatePaths(O,{centerX:s.centerX,centerY:s.centerY,endAngle:V,startAngle:T,size:s.size,i:b,totalItems:2,animBeginArr:0,dur:0,isTrack:!0,easing:o.globals.easing})}return u}},{key:"drawArcs",value:function(s){var o=this.w,c=new H(this.ctx),u=new Fe(this.ctx),h=new Y(this.ctx),g=c.group(),m=this.getStrokeWidth(s);s.size=s.size-m/2;var b=o.config.plotOptions.radialBar.hollow.background,x=s.size-m*s.series.length-this.margin*s.series.length-m*parseInt(o.config.plotOptions.radialBar.track.strokeWidth,10)/100/2,w=x-o.config.plotOptions.radialBar.hollow.margin;o.config.plotOptions.radialBar.hollow.image!==void 0&&(b=this.drawHollowImage(s,g,x,b));var P=this.drawHollow({size:w,centerX:s.centerX,centerY:s.centerY,fill:b||"transparent"});if(o.config.plotOptions.radialBar.hollow.dropShadow.enabled){var T=o.config.plotOptions.radialBar.hollow.dropShadow;h.dropShadow(P,T)}var V=1;!this.radialDataLabels.total.show&&o.globals.series.length>1&&(V=0);var O=null;this.radialDataLabels.show&&(O=this.renderInnerDataLabels(this.radialDataLabels,{hollowSize:x,centerX:s.centerX,centerY:s.centerY,opacity:V})),o.config.plotOptions.radialBar.hollow.position==="back"&&(g.add(P),O&&g.add(O));var N=!1;o.config.plotOptions.radialBar.inverseOrder&&(N=!0);for(var G=N?s.series.length-1:0;N?G>=0:G100?100:s.series[G])/100,K=Math.round(this.totalAngle*U)+this.startAngle,ae=void 0;o.globals.dataChanged&&(z=this.startAngle,ae=Math.round(this.totalAngle*L.negToZero(o.globals.previousPaths[G])/100)+z),Math.abs(K)+Math.abs(I)>=360&&(K-=.01),Math.abs(ae)+Math.abs(z)>=360&&(ae-=.01);var re=K-I,ge=Array.isArray(o.config.stroke.dashArray)?o.config.stroke.dashArray[G]:o.config.stroke.dashArray,we=c.drawPath({d:"",stroke:S,strokeWidth:m,fill:"none",fillOpacity:o.config.fill.opacity,classes:"apexcharts-radialbar-area apexcharts-radialbar-slice-"+G,strokeDashArray:ge});if(H.setAttrs(we.node,{"data:angle":re,"data:value":s.series[G]}),o.config.chart.dropShadow.enabled){var xe=o.config.chart.dropShadow;h.dropShadow(we,xe,G)}h.setSelectionFilter(we,0,G),this.addListeners(we,this.radialDataLabels),v.add(we),we.attr({index:0,j:G});var Ne=0;!this.initialAnim||o.globals.resized||o.globals.dataChanged||(Ne=o.config.chart.animations.speed),o.globals.dataChanged&&(Ne=o.config.chart.animations.dynamicAnimation.speed),this.animDur=Ne/(1.2*s.series.length)+this.animDur,this.animBeginArr.push(this.animDur),this.animatePaths(we,{centerX:s.centerX,centerY:s.centerY,endAngle:K,startAngle:I,prevEndAngle:ae,prevStartAngle:z,size:s.size,i:G,totalItems:2,animBeginArr:this.animBeginArr,dur:Ne,shouldSetPrevPaths:!0,easing:o.globals.easing})}return{g,elHollow:P,dataLabels:O}}},{key:"drawHollow",value:function(s){var o=new H(this.ctx).drawCircle(2*s.size);return o.attr({class:"apexcharts-radialbar-hollow",cx:s.centerX,cy:s.centerY,r:s.size,fill:s.fill}),o}},{key:"drawHollowImage",value:function(s,o,c,u){var h=this.w,g=new Fe(this.ctx),m=L.randomId(),b=h.config.plotOptions.radialBar.hollow.image;if(h.config.plotOptions.radialBar.hollow.imageClipped)g.clippedImgArea({width:c,height:c,image:b,patternID:"pattern".concat(h.globals.cuid).concat(m)}),u="url(#pattern".concat(h.globals.cuid).concat(m,")");else{var x=h.config.plotOptions.radialBar.hollow.imageWidth,w=h.config.plotOptions.radialBar.hollow.imageHeight;if(x===void 0&&w===void 0){var P=h.globals.dom.Paper.image(b).loaded(function(V){this.move(s.centerX-V.width/2+h.config.plotOptions.radialBar.hollow.imageOffsetX,s.centerY-V.height/2+h.config.plotOptions.radialBar.hollow.imageOffsetY)});o.add(P)}else{var T=h.globals.dom.Paper.image(b).loaded(function(V){this.move(s.centerX-x/2+h.config.plotOptions.radialBar.hollow.imageOffsetX,s.centerY-w/2+h.config.plotOptions.radialBar.hollow.imageOffsetY),this.size(x,w)});o.add(T)}}return u}},{key:"getStrokeWidth",value:function(s){var o=this.w;return s.size*(100-parseInt(o.config.plotOptions.radialBar.hollow.size,10))/100/(s.series.length+1)-this.margin}}]),n}(),Ib=function(D){k(n,Ti);var t=_(n);function n(){return d(this,n),t.apply(this,arguments)}return p(n,[{key:"draw",value:function(s,o){var c=this.w,u=new H(this.ctx);this.rangeBarOptions=this.w.config.plotOptions.rangeBar,this.series=s,this.seriesRangeStart=c.globals.seriesRangeStart,this.seriesRangeEnd=c.globals.seriesRangeEnd,this.barHelpers.initVariables(s);for(var h=u.group({class:"apexcharts-rangebar-series apexcharts-plot-series"}),g=0;g0&&(this.visibleI=this.visibleI+1);var N=0,G=0;this.yRatio.length>1&&(this.yaxisIndex=V);var v=this.barHelpers.initialPositions();T=v.y,w=v.zeroW,P=v.x,G=v.barWidth,N=v.barHeight,m=v.xDivision,b=v.yDivision,x=v.zeroH;for(var S=u.group({class:"apexcharts-datalabels","data:realIndex":V}),I=u.group({class:"apexcharts-rangebar-goals-markers"}),z=0;z0});return this.isHorizontal?(u=V.config.plotOptions.bar.rangeBarGroupRows?g+w*S:g+b*this.visibleI+w*S,I>-1&&!V.config.plotOptions.bar.rangeBarOverlap&&(O=V.globals.seriesRange[o][I].overlaps).indexOf(N)>-1&&(u=(b=T.barHeight/O.length)*this.visibleI+w*(100-parseInt(this.barOptions.barHeight,10))/100/2+b*(this.visibleI+O.indexOf(N))+w*S)):(S>-1&&(h=V.config.plotOptions.bar.rangeBarGroupRows?m+P*S:m+x*this.visibleI+P*S),I>-1&&!V.config.plotOptions.bar.rangeBarOverlap&&(O=V.globals.seriesRange[o][I].overlaps).indexOf(N)>-1&&(h=(x=T.barWidth/O.length)*this.visibleI+P*(100-parseInt(this.barOptions.barWidth,10))/100/2+x*(this.visibleI+O.indexOf(N))+P*S)),{barYPosition:u,barXPosition:h,barHeight:b,barWidth:x}}},{key:"drawRangeColumnPaths",value:function(s){var o=s.indexes,c=s.x,u=s.xDivision,h=s.barWidth,g=s.barXPosition,m=s.zeroH,b=this.w,x=o.i,w=o.j,P=this.yRatio[this.yaxisIndex],T=o.realIndex,V=this.getRangeValue(T,w),O=Math.min(V.start,V.end),N=Math.max(V.start,V.end);this.series[x][w]===void 0||this.series[x][w]===null?O=m:(O=m-O/P,N=m-N/P);var G=Math.abs(N-O),v=this.barHelpers.getColumnPaths({barXPosition:g,barWidth:h,y1:O,y2:N,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,realIndex:o.realIndex,i:T,j:w,w:b});return b.globals.isXNumeric||(c+=u),{pathTo:v.pathTo,pathFrom:v.pathFrom,barHeight:G,x:c,y:N,goalY:this.barHelpers.getGoalValues("y",null,m,x,w),barXPosition:g}}},{key:"drawRangeBarPaths",value:function(s){var o=s.indexes,c=s.y,u=s.y1,h=s.y2,g=s.yDivision,m=s.barHeight,b=s.barYPosition,x=s.zeroW,w=this.w,P=x+u/this.invertedYRatio,T=x+h/this.invertedYRatio,V=Math.abs(T-P),O=this.barHelpers.getBarpaths({barYPosition:b,barHeight:m,x1:P,x2:T,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,i:o.realIndex,realIndex:o.realIndex,j:o.j,w});return w.globals.isXNumeric||(c+=g),{pathTo:O.pathTo,pathFrom:O.pathFrom,barWidth:V,x:T,goalX:this.barHelpers.getGoalValues("x",x,null,o.realIndex,o.j),y:c}}},{key:"getRangeValue",value:function(s,o){var c=this.w;return{start:c.globals.seriesRangeStart[s][o],end:c.globals.seriesRangeEnd[s][o]}}}]),n}(),Lb=function(){function D(t){d(this,D),this.w=t.w,this.lineCtx=t}return p(D,[{key:"sameValueSeriesFix",value:function(t,n){var s=this.w;if((s.config.fill.type==="gradient"||s.config.fill.type[t]==="gradient")&&new J(this.lineCtx.ctx,s).seriesHaveSameValues(t)){var o=n[t].slice();o[o.length-1]=o[o.length-1]+1e-6,n[t]=o}return n}},{key:"calculatePoints",value:function(t){var n=t.series,s=t.realIndex,o=t.x,c=t.y,u=t.i,h=t.j,g=t.prevY,m=this.w,b=[],x=[];if(h===0){var w=this.lineCtx.categoryAxisCorrection+m.config.markers.offsetX;m.globals.isXNumeric&&(w=(m.globals.seriesX[s][0]-m.globals.minX)/this.lineCtx.xRatio+m.config.markers.offsetX),b.push(w),x.push(L.isNumber(n[u][0])?g+m.config.markers.offsetY:null),b.push(o+m.config.markers.offsetX),x.push(L.isNumber(n[u][h+1])?c+m.config.markers.offsetY:null)}else b.push(o+m.config.markers.offsetX),x.push(L.isNumber(n[u][h+1])?c+m.config.markers.offsetY:null);return{x:b,y:x}}},{key:"checkPreviousPaths",value:function(t){for(var n=t.pathFromLine,s=t.pathFromArea,o=t.realIndex,c=this.w,u=0;u0&&parseInt(h.realIndex,10)===parseInt(o,10)&&(h.type==="line"?(this.lineCtx.appendPathFrom=!1,n=c.globals.previousPaths[u].paths[0].d):h.type==="area"&&(this.lineCtx.appendPathFrom=!1,s=c.globals.previousPaths[u].paths[0].d,c.config.stroke.show&&c.globals.previousPaths[u].paths[1]&&(n=c.globals.previousPaths[u].paths[1].d)))}return{pathFromLine:n,pathFromArea:s}}},{key:"determineFirstPrevY",value:function(t){var n,s=t.i,o=t.series,c=t.prevY,u=t.lineYPosition,h=this.w;if(((n=o[s])===null||n===void 0?void 0:n[0])!==void 0)c=(u=h.config.chart.stacked&&s>0?this.lineCtx.prevSeriesY[s-1][0]:this.lineCtx.zeroY)-o[s][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]+2*(this.lineCtx.isReversed?o[s][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]:0);else if(h.config.chart.stacked&&s>0&&o[s][0]===void 0){for(var g=s-1;g>=0;g--)if(o[g][0]!==null&&o[g][0]!==void 0){c=u=this.lineCtx.prevSeriesY[g][0];break}}return{prevY:c,lineYPosition:u}}}]),D}(),_b=function(D){for(var t,n,s,o,c=function(b){for(var x=[],w=b[0],P=b[1],T=x[0]=sl(w,P),V=1,O=b.length-1;V9&&(o=3*s/Math.sqrt(o),c[g]=o*t,c[g+1]=o*n);for(var m=0;m<=u;m++)o=(D[Math.min(u,m+1)][0]-D[Math.max(0,m-1)][0])/(6*(1+c[m]*c[m])),h.push([o||0,c[m]*o||0]);return h},il=function(D){for(var t="",n=0;n4?(t+="C".concat(s[0],", ").concat(s[1]),t+=", ".concat(s[2],", ").concat(s[3]),t+=", ".concat(s[4],", ").concat(s[5])):o>2&&(t+="S".concat(s[0],", ").concat(s[1]),t+=", ".concat(s[2],", ").concat(s[3]))}return t},kd=function(D){var t=_b(D),n=D[1],s=D[0],o=[],c=t[1],u=t[0];o.push(s,[s[0]+u[0],s[1]+u[1],n[0]-c[0],n[1]-c[1],n[0],n[1]]);for(var h=2,g=t.length;h0&&(O=(c.globals.seriesX[w][0]-c.globals.minX)/this.xRatio),V.push(O);var N,G=O,v=void 0,S=G,I=this.zeroY,z=this.zeroY;I=this.lineHelpers.determineFirstPrevY({i:x,series:t,prevY:I,lineYPosition:0}).prevY,P.push(I),N=I,h==="rangeArea"&&(v=z=this.lineHelpers.determineFirstPrevY({i:x,series:o,prevY:z,lineYPosition:0}).prevY,T.push(z));var U={type:h,series:t,realIndex:w,i:x,x:O,y:1,pX:G,pY:N,pathsFrom:this._calculatePathsFrom({type:h,series:t,i:x,realIndex:w,prevX:S,prevY:I,prevY2:z}),linePaths:[],areaPaths:[],seriesIndex:s,lineYPosition:0,xArrj:V,yArrj:P,y2Arrj:T,seriesRangeEnd:o},K=this._iterateOverDataPoints(r(r({},U),{},{iterations:h==="rangeArea"?t[x].length-1:void 0,isRangeStart:!0}));if(h==="rangeArea"){var ae=this._calculatePathsFrom({series:o,i:x,realIndex:w,prevX:S,prevY:z}),re=this._iterateOverDataPoints(r(r({},U),{},{series:o,pY:v,pathsFrom:ae,iterations:o[x].length-1,isRangeStart:!1}));K.linePaths[0]=re.linePath+K.linePath,K.pathFromLine=re.pathFromLine+K.pathFromLine}this._handlePaths({type:h,realIndex:w,i:x,paths:K}),this.elSeries.add(this.elPointsMain),this.elSeries.add(this.elDataLabelsWrap),b.push(this.elSeries)}if(c.config.chart.stacked)for(var ge=b.length;ge>0;ge--)g.add(b[ge-1]);else for(var we=0;we1&&(this.yaxisIndex=s),this.isReversed=o.config.yaxis[this.yaxisIndex]&&o.config.yaxis[this.yaxisIndex].reversed,this.zeroY=o.globals.gridHeight-this.baseLineY[this.yaxisIndex]-(this.isReversed?o.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),this.areaBottomY=this.zeroY,(this.zeroY>o.globals.gridHeight||o.config.plotOptions.area.fillTo==="end")&&(this.areaBottomY=o.globals.gridHeight),this.categoryAxisCorrection=this.xDivision/2,this.elSeries=c.group({class:"apexcharts-series",seriesName:L.escapeString(o.globals.seriesNames[s])}),this.elPointsMain=c.group({class:"apexcharts-series-markers-wrap","data:realIndex":s}),this.elDataLabelsWrap=c.group({class:"apexcharts-datalabels","data:realIndex":s});var u=t[n].length===o.globals.dataPoints;this.elSeries.attr({"data:longestSeries":u,rel:n+1,"data:realIndex":s}),this.appendPathFrom=!0}},{key:"_calculatePathsFrom",value:function(t){var n,s,o,c,u=t.type,h=t.series,g=t.i,m=t.realIndex,b=t.prevX,x=t.prevY,w=t.prevY2,P=this.w,T=new H(this.ctx);if(h[g][0]===null){for(var V=0;V0){var O=this.lineHelpers.checkPreviousPaths({pathFromLine:o,pathFromArea:c,realIndex:m});o=O.pathFromLine,c=O.pathFromArea}return{prevX:b,prevY:x,linePath:n,areaPath:s,pathFromLine:o,pathFromArea:c}}},{key:"_handlePaths",value:function(t){var n=t.type,s=t.realIndex,o=t.i,c=t.paths,u=this.w,h=new H(this.ctx),g=new Fe(this.ctx);this.prevSeriesY.push(c.yArrj),u.globals.seriesXvalues[s]=c.xArrj,u.globals.seriesYvalues[s]=c.yArrj;var m=u.config.forecastDataPoints;if(m.count>0&&n!=="rangeArea"){var b=u.globals.seriesXvalues[s][u.globals.seriesXvalues[s].length-m.count-1],x=h.drawRect(b,0,u.globals.gridWidth,u.globals.gridHeight,0);u.globals.dom.elForecastMask.appendChild(x.node);var w=h.drawRect(0,0,b,u.globals.gridHeight,0);u.globals.dom.elNonForecastMask.appendChild(w.node)}this.pointsChart||u.globals.delayedElements.push({el:this.elPointsMain.node,index:s});var P={i:o,realIndex:s,animationDelay:o,initialSpeed:u.config.chart.animations.speed,dataChangeSpeed:u.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(n)};if(n==="area")for(var T=g.fillPath({seriesNumber:s}),V=0;V0&&n!=="rangeArea"){var U=h.renderPaths(I);U.node.setAttribute("stroke-dasharray",m.dashArray),m.strokeWidth&&U.node.setAttribute("stroke-width",m.strokeWidth),this.elSeries.add(U),U.attr("clip-path","url(#forecastMask".concat(u.globals.cuid,")")),z.attr("clip-path","url(#nonForecastMask".concat(u.globals.cuid,")"))}}}}},{key:"_iterateOverDataPoints",value:function(t){var n=t.type,s=t.series,o=t.iterations,c=t.realIndex,u=t.i,h=t.x,g=t.y,m=t.pX,b=t.pY,x=t.pathsFrom,w=t.linePaths,P=t.areaPaths,T=t.seriesIndex,V=t.lineYPosition,O=t.xArrj,N=t.yArrj,G=t.y2Arrj,v=t.isRangeStart,S=t.seriesRangeEnd,I=this.w,z=new H(this.ctx),U=this.yRatio,K=x.prevY,ae=x.linePath,re=x.areaPath,ge=x.pathFromLine,we=x.pathFromArea,xe=L.isNumber(I.globals.minYArr[c])?I.globals.minYArr[c]:I.globals.minY;o||(o=I.globals.dataPoints>1?I.globals.dataPoints-1:I.globals.dataPoints);for(var Ne=g,je=0;je0&&I.globals.collapsedSeries.length-1){Rt--;break}return Rt>=0?Rt:0}(u-1)][je+1]:V=this.zeroY:V=this.zeroY,ot?g=V-xe/U[this.yaxisIndex]+2*(this.isReversed?xe/U[this.yaxisIndex]:0):(g=V-s[u][je+1]/U[this.yaxisIndex]+2*(this.isReversed?s[u][je+1]/U[this.yaxisIndex]:0),n==="rangeArea"&&(Ne=V-S[u][je+1]/U[this.yaxisIndex]+2*(this.isReversed?S[u][je+1]/U[this.yaxisIndex]:0))),O.push(h),N.push(g),G.push(Ne);var ut=this.lineHelpers.calculatePoints({series:s,x:h,y:g,realIndex:c,i:u,j:je,prevY:K}),kt=this._createPaths({type:n,series:s,i:u,realIndex:c,j:je,x:h,y:g,y2:Ne,xArrj:O,yArrj:N,y2Arrj:G,pX:m,pY:b,linePath:ae,areaPath:re,linePaths:w,areaPaths:P,seriesIndex:T,isRangeStart:v});P=kt.areaPaths,w=kt.linePaths,m=kt.pX,b=kt.pY,re=kt.areaPath,ae=kt.linePath,!this.appendPathFrom||I.config.stroke.curve==="monotoneCubic"&&n==="rangeArea"||(ge+=z.line(h,this.zeroY),we+=z.line(h,this.zeroY)),this.handleNullDataPoints(s,ut,u,je,c),this._handleMarkersAndLabels({type:n,pointsPos:ut,i:u,j:je,realIndex:c,isRangeStart:v})}return{yArrj:N,xArrj:O,pathFromArea:we,areaPaths:P,pathFromLine:ge,linePaths:w,linePath:ae,areaPath:re}}},{key:"_handleMarkersAndLabels",value:function(t){var n=t.type,s=t.pointsPos,o=t.isRangeStart,c=t.i,u=t.j,h=t.realIndex,g=this.w,m=new ze(this.ctx);if(this.pointsChart)this.scatter.draw(this.elSeries,u,{realIndex:h,pointsPos:s,zRatio:this.zRatio,elParent:this.elPointsMain});else{g.globals.series[c].length>1&&this.elPointsMain.node.classList.add("apexcharts-element-hidden");var b=this.markers.plotChartMarkers(s,h,u+1);b!==null&&this.elPointsMain.add(b)}var x=m.drawDataLabel({type:n,isRangeStart:o,pos:s,i:h,j:u+1});x!==null&&this.elDataLabelsWrap.add(x)}},{key:"_createPaths",value:function(t){var n=t.type,s=t.series,o=t.i,c=t.realIndex,u=t.j,h=t.x,g=t.y,m=t.xArrj,b=t.yArrj,x=t.y2,w=t.y2Arrj,P=t.pX,T=t.pY,V=t.linePath,O=t.areaPath,N=t.linePaths,G=t.areaPaths,v=t.seriesIndex,S=t.isRangeStart,I=this.w,z=new H(this.ctx),U=I.config.stroke.curve,K=this.areaBottomY;if(Array.isArray(I.config.stroke.curve)&&(U=Array.isArray(v)?I.config.stroke.curve[v[o]]:I.config.stroke.curve[o]),(n==="rangeArea"&&(I.globals.hasNullValues||I.config.forecastDataPoints.count>0)||I.globals.hasNullValues)&&U==="monotoneCubic"&&(U="straight"),U==="smooth"){var ae=.35*(h-P);I.globals.hasNullValues?(s[o][u]!==null&&(s[o][u+1]!==null?(V=z.move(P,T)+z.curve(P+ae,T,h-ae,g,h+1,g),O=z.move(P+1,T)+z.curve(P+ae,T,h-ae,g,h+1,g)+z.line(h,K)+z.line(P,K)+"z"):(V=z.move(P,T),O=z.move(P,T)+"z")),N.push(V),G.push(O)):(V+=z.curve(P+ae,T,h-ae,g,h,g),O+=z.curve(P+ae,T,h-ae,g,h,g)),P=h,T=g,u===s[o].length-2&&(O+=z.curve(P,T,h,g,h,K)+z.move(h,g)+"z",n==="rangeArea"&&S?V+=z.curve(P,T,h,g,h,x)+z.move(h,x)+"z":I.globals.hasNullValues||(N.push(V),G.push(O)))}else if(U==="monotoneCubic"){if(n==="rangeArea"?m.length===I.globals.dataPoints:u===s[o].length-2){var re=m.map(function(lt,ut){return[m[ut],b[ut]]}),ge=kd(re);if(V+=il(ge),O+=il(ge),P=h,T=g,n==="rangeArea"&&S){V+=z.line(m[m.length-1],w[w.length-1]);var we=m.slice().reverse(),xe=w.slice().reverse(),Ne=we.map(function(lt,ut){return[we[ut],xe[ut]]}),je=kd(Ne);O=V+=il(je)}else O+=z.curve(P,T,h,g,h,K)+z.move(h,g)+"z";N.push(V),G.push(O)}}else{if(s[o][u+1]===null){V+=z.move(h,g);var ot=I.globals.isXNumeric?(I.globals.seriesX[c][u]-I.globals.minX)/this.xRatio:h-this.xDivision;O=O+z.line(ot,K)+z.move(h,g)+"z"}s[o][u]===null&&(V+=z.move(h,g),O+=z.move(h,K)),U==="stepline"?(V=V+z.line(h,null,"H")+z.line(null,g,"V"),O=O+z.line(h,null,"H")+z.line(null,g,"V")):U==="straight"&&(V+=z.line(h,g),O+=z.line(h,g)),u===s[o].length-2&&(O=O+z.line(h,K)+z.move(h,g)+"z",n==="rangeArea"&&S?V=V+z.line(h,x)+z.move(h,x)+"z":(N.push(V),G.push(O)))}return{linePaths:N,areaPaths:G,pX:P,pY:T,linePath:V,areaPath:O}}},{key:"handleNullDataPoints",value:function(t,n,s,o,c){var u=this.w;if(t[s][o]===null&&u.config.markers.showNullDataPoints||t[s].length===1){var h=this.markers.plotChartMarkers(n,c,o+1,this.strokeWidth-u.config.markers.strokeWidth/2,!0);h!==null&&this.elPointsMain.add(h)}}}]),D}();window.TreemapSquared={},window.TreemapSquared.generate=function(){function D(h,g,m,b){this.xoffset=h,this.yoffset=g,this.height=b,this.width=m,this.shortestEdge=function(){return Math.min(this.height,this.width)},this.getCoordinates=function(x){var w,P=[],T=this.xoffset,V=this.yoffset,O=c(x)/this.height,N=c(x)/this.width;if(this.width>=this.height)for(w=0;w=this.height){var P=x/this.height,T=this.width-P;w=new D(this.xoffset+P,this.yoffset,T,this.height)}else{var V=x/this.width,O=this.height-V;w=new D(this.xoffset,this.yoffset+V,this.width,O)}return w}}function t(h,g,m,b,x){b=b===void 0?0:b,x=x===void 0?0:x;var w=n(function(P,T){var V,O=[],N=T/c(P);for(V=0;V=v}(g,w=h[0],x)?(g.push(w),n(h.slice(1),g,m,b)):(P=m.cutArea(c(g),b),b.push(m.getCoordinates(g)),n(h,[],P,b)),b;b.push(m.getCoordinates(g))}function s(h,g){var m=Math.min.apply(Math,h),b=Math.max.apply(Math,h),x=c(h);return Math.max(Math.pow(g,2)*b/Math.pow(x,2),Math.pow(x,2)/(Math.pow(g,2)*m))}function o(h){return h&&h.constructor===Array}function c(h){var g,m=0;for(g=0;gu-o&&m.width<=h-c){var b=g.rotateAroundCenter(t.node);t.node.setAttribute("transform","rotate(-90 ".concat(b.x," ").concat(b.y,") translate(").concat(m.height/3,")"))}}},{key:"truncateLabels",value:function(t,n,s,o,c,u){var h=new H(this.ctx),g=h.getTextRects(t,n).width+this.w.config.stroke.width+5>c-s&&u-o>c-s?u-o:c-s,m=h.getTextBasedOnMaxWidth({text:t,maxWidth:g,fontSize:n});return t.length!==m.length&&g/n<5?"":m}},{key:"animateTreemap",value:function(t,n,s,o){var c=new q(this.ctx);c.animateRect(t,{x:n.x,y:n.y,width:n.width,height:n.height},{x:s.x,y:s.y,width:s.width,height:s.height},o,function(){c.animationCompleted(t)})}}]),D}(),Rb=86400,Mb=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w,this.timeScaleArray=[],this.utc=this.w.config.xaxis.labels.datetimeUTC}return p(D,[{key:"calculateTimeScaleTicks",value:function(t,n){var s=this,o=this.w;if(o.globals.allSeriesCollapsed)return o.globals.labels=[],o.globals.timescaleLabels=[],[];var c=new le(this.ctx),u=(n-t)/864e5;this.determineInterval(u),o.globals.disableZoomIn=!1,o.globals.disableZoomOut=!1,u<.00011574074074074075?o.globals.disableZoomIn=!0:u>5e4&&(o.globals.disableZoomOut=!0);var h=c.getTimeUnitsfromTimestamp(t,n,this.utc),g=o.globals.gridWidth/u,m=g/24,b=m/60,x=b/60,w=Math.floor(24*u),P=Math.floor(1440*u),T=Math.floor(u*Rb),V=Math.floor(u),O=Math.floor(u/30),N=Math.floor(u/365),G={minMillisecond:h.minMillisecond,minSecond:h.minSecond,minMinute:h.minMinute,minHour:h.minHour,minDate:h.minDate,minMonth:h.minMonth,minYear:h.minYear},v={firstVal:G,currentMillisecond:G.minMillisecond,currentSecond:G.minSecond,currentMinute:G.minMinute,currentHour:G.minHour,currentMonthDate:G.minDate,currentDate:G.minDate,currentMonth:G.minMonth,currentYear:G.minYear,daysWidthOnXAxis:g,hoursWidthOnXAxis:m,minutesWidthOnXAxis:b,secondsWidthOnXAxis:x,numberOfSeconds:T,numberOfMinutes:P,numberOfHours:w,numberOfDays:V,numberOfMonths:O,numberOfYears:N};switch(this.tickInterval){case"years":this.generateYearScale(v);break;case"months":case"half_year":this.generateMonthScale(v);break;case"months_days":case"months_fortnight":case"days":case"week_days":this.generateDayScale(v);break;case"hours":this.generateHourScale(v);break;case"minutes_fives":case"minutes":this.generateMinuteScale(v);break;case"seconds_tens":case"seconds_fives":case"seconds":this.generateSecondScale(v)}var S=this.timeScaleArray.map(function(I){var z={position:I.position,unit:I.unit,year:I.year,day:I.day?I.day:1,hour:I.hour?I.hour:0,month:I.month+1};return I.unit==="month"?r(r({},z),{},{day:1,value:I.value+1}):I.unit==="day"||I.unit==="hour"?r(r({},z),{},{value:I.value}):I.unit==="minute"?r(r({},z),{},{value:I.value,minute:I.value}):I.unit==="second"?r(r({},z),{},{value:I.value,minute:I.minute,second:I.second}):I});return S.filter(function(I){var z=1,U=Math.ceil(o.globals.gridWidth/120),K=I.value;o.config.xaxis.tickAmount!==void 0&&(U=o.config.xaxis.tickAmount),S.length>U&&(z=Math.floor(S.length/U));var ae=!1,re=!1;switch(s.tickInterval){case"years":I.unit==="year"&&(ae=!0);break;case"half_year":z=7,I.unit==="year"&&(ae=!0);break;case"months":z=1,I.unit==="year"&&(ae=!0);break;case"months_fortnight":z=15,I.unit!=="year"&&I.unit!=="month"||(ae=!0),K===30&&(re=!0);break;case"months_days":z=10,I.unit==="month"&&(ae=!0),K===30&&(re=!0);break;case"week_days":z=8,I.unit==="month"&&(ae=!0);break;case"days":z=1,I.unit==="month"&&(ae=!0);break;case"hours":I.unit==="day"&&(ae=!0);break;case"minutes_fives":case"seconds_fives":K%5!=0&&(re=!0);break;case"seconds_tens":K%10!=0&&(re=!0)}if(s.tickInterval==="hours"||s.tickInterval==="minutes_fives"||s.tickInterval==="seconds_tens"||s.tickInterval==="seconds_fives"){if(!re)return!0}else if((K%z==0||ae)&&!re)return!0})}},{key:"recalcDimensionsBasedOnFormat",value:function(t,n){var s=this.w,o=this.formatDates(t),c=this.removeOverlappingTS(o);s.globals.timescaleLabels=c.slice(),new rt(this.ctx).plotCoords()}},{key:"determineInterval",value:function(t){var n=24*t,s=60*n;switch(!0){case t/365>5:this.tickInterval="years";break;case t>800:this.tickInterval="half_year";break;case t>180:this.tickInterval="months";break;case t>90:this.tickInterval="months_fortnight";break;case t>60:this.tickInterval="months_days";break;case t>30:this.tickInterval="week_days";break;case t>2:this.tickInterval="days";break;case n>2.4:this.tickInterval="hours";break;case s>15:this.tickInterval="minutes_fives";break;case s>5:this.tickInterval="minutes";break;case s>1:this.tickInterval="seconds_tens";break;case 60*s>20:this.tickInterval="seconds_fives";break;default:this.tickInterval="seconds"}}},{key:"generateYearScale",value:function(t){var n=t.firstVal,s=t.currentMonth,o=t.currentYear,c=t.daysWidthOnXAxis,u=t.numberOfYears,h=n.minYear,g=0,m=new le(this.ctx),b="year";if(n.minDate>1||n.minMonth>0){var x=m.determineRemainingDaysOfYear(n.minYear,n.minMonth,n.minDate);g=(m.determineDaysOfYear(n.minYear)-x+1)*c,h=n.minYear+1,this.timeScaleArray.push({position:g,value:h,unit:b,year:h,month:L.monthMod(s+1)})}else n.minDate===1&&n.minMonth===0&&this.timeScaleArray.push({position:g,value:h,unit:b,year:o,month:L.monthMod(s+1)});for(var w=h,P=g,T=0;T1){m=(b.determineDaysOfMonths(o+1,n.minYear)-s+1)*u,g=L.monthMod(o+1);var P=c+w,T=L.monthMod(g),V=g;g===0&&(x="year",V=P,T=1,P+=w+=1),this.timeScaleArray.push({position:m,value:V,unit:x,year:P,month:T})}else this.timeScaleArray.push({position:m,value:g,unit:x,year:c,month:L.monthMod(o)});for(var O=g+1,N=m,G=0,v=1;Gh.determineDaysOfMonths(S+1,I)&&(b=1,g="month",P=S+=1),S},w=(24-n.minHour)*c,P=m,T=x(b,s,o);n.minHour===0&&n.minDate===1?(w=0,P=L.monthMod(n.minMonth),g="month",b=n.minDate,u++):n.minDate!==1&&n.minHour===0&&n.minMinute===0&&(w=0,m=n.minDate,P=m,T=x(b=m,s,o)),this.timeScaleArray.push({position:w,value:P,unit:g,year:this._getYear(o,T,0),month:L.monthMod(T),day:b});for(var V=w,O=0;Og.determineDaysOfMonths(U+1,c)&&(O=1,U+=1),{month:U,date:O}},x=function(z,U){return z>g.determineDaysOfMonths(U+1,c)?U+=1:U},w=60-(n.minMinute+n.minSecond/60),P=w*u,T=n.minHour+1,V=T+1;w===60&&(P=0,V=(T=n.minHour)+1);var O=s,N=x(O,o);this.timeScaleArray.push({position:P,value:T,unit:m,day:O,hour:V,year:c,month:L.monthMod(N)});for(var G=P,v=0;v=24&&(V=0,m="day",N=b(O+=1,N).month,N=x(O,N));var S=this._getYear(c,N,0);G=60*u+G;var I=V===0?O:V;this.timeScaleArray.push({position:G,value:I,unit:m,hour:V,day:O,year:S,month:L.monthMod(N)}),V++}}},{key:"generateMinuteScale",value:function(t){for(var n=t.currentMillisecond,s=t.currentSecond,o=t.currentMinute,c=t.currentHour,u=t.currentDate,h=t.currentMonth,g=t.currentYear,m=t.minutesWidthOnXAxis,b=t.secondsWidthOnXAxis,x=t.numberOfMinutes,w=o+1,P=u,T=h,V=g,O=c,N=(60-s-n/1e3)*b,G=0;G=60&&(w=0,(O+=1)===24&&(O=0)),this.timeScaleArray.push({position:N,value:w,unit:"minute",hour:O,minute:w,day:P,year:this._getYear(V,T,0),month:L.monthMod(T)}),N+=m,w++}},{key:"generateSecondScale",value:function(t){for(var n=t.currentMillisecond,s=t.currentSecond,o=t.currentMinute,c=t.currentHour,u=t.currentDate,h=t.currentMonth,g=t.currentYear,m=t.secondsWidthOnXAxis,b=t.numberOfSeconds,x=s+1,w=o,P=u,T=h,V=g,O=c,N=(1e3-n)/1e3*m,G=0;G=60&&(x=0,++w>=60&&(w=0,++O===24&&(O=0))),this.timeScaleArray.push({position:N,value:x,unit:"second",hour:O,minute:w,second:x,day:P,year:this._getYear(V,T,0),month:L.monthMod(T)}),N+=m,x++}},{key:"createRawDateString",value:function(t,n){var s=t.year;return t.month===0&&(t.month=1),s+="-"+("0"+t.month.toString()).slice(-2),t.unit==="day"?s+=t.unit==="day"?"-"+("0"+n).slice(-2):"-01":s+="-"+("0"+(t.day?t.day:"1")).slice(-2),t.unit==="hour"?s+=t.unit==="hour"?"T"+("0"+n).slice(-2):"T00":s+="T"+("0"+(t.hour?t.hour:"0")).slice(-2),t.unit==="minute"?s+=":"+("0"+n).slice(-2):s+=":"+(t.minute?("0"+t.minute).slice(-2):"00"),t.unit==="second"?s+=":"+("0"+n).slice(-2):s+=":00",this.utc&&(s+=".000Z"),s}},{key:"formatDates",value:function(t){var n=this,s=this.w;return t.map(function(o){var c=o.value.toString(),u=new le(n.ctx),h=n.createRawDateString(o,c),g=u.getDate(u.parseDate(h));if(n.utc||(g=u.getDate(u.parseDateWithTimezone(h))),s.config.xaxis.labels.format===void 0){var m="dd MMM",b=s.config.xaxis.labels.datetimeFormatter;o.unit==="year"&&(m=b.year),o.unit==="month"&&(m=b.month),o.unit==="day"&&(m=b.day),o.unit==="hour"&&(m=b.hour),o.unit==="minute"&&(m=b.minute),o.unit==="second"&&(m=b.second),c=u.formatDate(g,m)}else c=u.formatDate(g,s.config.xaxis.labels.format);return{dateString:h,position:o.position,value:c,unit:o.unit,year:o.year,month:o.month}})}},{key:"removeOverlappingTS",value:function(t){var n,s=this,o=new H(this.ctx),c=!1;t.length>0&&t[0].value&&t.every(function(g){return g.value.length===t[0].value.length})&&(c=!0,n=o.getTextRects(t[0].value).width);var u=0,h=t.map(function(g,m){if(m>0&&s.w.config.xaxis.labels.hideOverlappingLabels){var b=c?n:o.getTextRects(t[u].value).width,x=t[u].position;return g.position>x+b+10?(u=m,g):null}return g});return h=h.filter(function(g){return g!==null})}},{key:"_getYear",value:function(t,n,s){return t+Math.floor(n/12)+s}}]),D}(),Ob=function(){function D(t,n){d(this,D),this.ctx=n,this.w=n.w,this.el=t}return p(D,[{key:"setupElements",value:function(){var t=this.w.globals,n=this.w.config,s=n.chart.type;t.axisCharts=["line","area","bar","rangeBar","rangeArea","candlestick","boxPlot","scatter","bubble","radar","heatmap","treemap"].indexOf(s)>-1,t.xyCharts=["line","area","bar","rangeBar","rangeArea","candlestick","boxPlot","scatter","bubble"].indexOf(s)>-1,t.isBarHorizontal=(n.chart.type==="bar"||n.chart.type==="rangeBar"||n.chart.type==="boxPlot")&&n.plotOptions.bar.horizontal,t.chartClass=".apexcharts"+t.chartID,t.dom.baseEl=this.el,t.dom.elWrap=document.createElement("div"),H.setAttrs(t.dom.elWrap,{id:t.chartClass.substring(1),class:"apexcharts-canvas "+t.chartClass.substring(1)}),this.el.appendChild(t.dom.elWrap),t.dom.Paper=new window.SVG.Doc(t.dom.elWrap),t.dom.Paper.attr({class:"apexcharts-svg","xmlns:data":"ApexChartsNS",transform:"translate(".concat(n.chart.offsetX,", ").concat(n.chart.offsetY,")")}),t.dom.Paper.node.style.background=n.chart.background,this.setSVGDimensions(),t.dom.elLegendForeign=document.createElementNS(t.SVGNS,"foreignObject"),H.setAttrs(t.dom.elLegendForeign,{x:0,y:0,width:t.svgWidth,height:t.svgHeight}),t.dom.elLegendWrap=document.createElement("div"),t.dom.elLegendWrap.classList.add("apexcharts-legend"),t.dom.elLegendWrap.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),t.dom.elLegendForeign.appendChild(t.dom.elLegendWrap),t.dom.Paper.node.appendChild(t.dom.elLegendForeign),t.dom.elGraphical=t.dom.Paper.group().attr({class:"apexcharts-inner apexcharts-graphical"}),t.dom.elDefs=t.dom.Paper.defs(),t.dom.Paper.add(t.dom.elGraphical),t.dom.elGraphical.add(t.dom.elDefs)}},{key:"plotChartType",value:function(t,n){var s=this.w,o=s.config,c=s.globals,u={series:[],i:[]},h={series:[],i:[]},g={series:[],i:[]},m={series:[],i:[]},b={series:[],i:[]},x={series:[],i:[]},w={series:[],i:[]},P={series:[],i:[]},T={series:[],seriesRangeEnd:[],i:[]};c.series.map(function(U,K){var ae=0;t[K].type!==void 0?(t[K].type==="column"||t[K].type==="bar"?(c.series.length>1&&o.plotOptions.bar.horizontal&&console.warn("Horizontal bars are not supported in a mixed/combo chart. Please turn off `plotOptions.bar.horizontal`"),b.series.push(U),b.i.push(K),ae++,s.globals.columnSeries=b.series):t[K].type==="area"?(h.series.push(U),h.i.push(K),ae++):t[K].type==="line"?(u.series.push(U),u.i.push(K),ae++):t[K].type==="scatter"?(g.series.push(U),g.i.push(K)):t[K].type==="bubble"?(m.series.push(U),m.i.push(K),ae++):t[K].type==="candlestick"?(x.series.push(U),x.i.push(K),ae++):t[K].type==="boxPlot"?(w.series.push(U),w.i.push(K),ae++):t[K].type==="rangeBar"?(P.series.push(U),P.i.push(K),ae++):t[K].type==="rangeArea"?(T.series.push(c.seriesRangeStart[K]),T.seriesRangeEnd.push(c.seriesRangeEnd[K]),T.i.push(K),ae++):console.warn("You have specified an unrecognized chart type. Available types for this property are line/area/column/bar/scatter/bubble/candlestick/boxPlot/rangeBar/rangeArea"),ae>1&&(c.comboCharts=!0)):(u.series.push(U),u.i.push(K))});var V=new rl(this.ctx,n),O=new al(this.ctx,n);this.ctx.pie=new Sd(this.ctx);var N=new Tb(this.ctx);this.ctx.rangeBar=new Ib(this.ctx,n);var G=new Eb(this.ctx),v=[];if(c.comboCharts){if(h.series.length>0&&v.push(V.draw(h.series,"area",h.i)),b.series.length>0)if(s.config.chart.stacked){var S=new xd(this.ctx,n);v.push(S.draw(b.series,b.i))}else this.ctx.bar=new Ti(this.ctx,n),v.push(this.ctx.bar.draw(b.series,b.i));if(T.series.length>0&&v.push(V.draw(T.series,"rangeArea",T.i,T.seriesRangeEnd)),u.series.length>0&&v.push(V.draw(u.series,"line",u.i)),x.series.length>0&&v.push(O.draw(x.series,"candlestick",x.i)),w.series.length>0&&v.push(O.draw(w.series,"boxPlot",w.i)),P.series.length>0&&v.push(this.ctx.rangeBar.draw(P.series,P.i)),g.series.length>0){var I=new rl(this.ctx,n,!0);v.push(I.draw(g.series,"scatter",g.i))}if(m.series.length>0){var z=new rl(this.ctx,n,!0);v.push(z.draw(m.series,"bubble",m.i))}}else switch(o.chart.type){case"line":v=V.draw(c.series,"line");break;case"area":v=V.draw(c.series,"area");break;case"bar":o.chart.stacked?v=new xd(this.ctx,n).draw(c.series):(this.ctx.bar=new Ti(this.ctx,n),v=this.ctx.bar.draw(c.series));break;case"candlestick":v=new al(this.ctx,n).draw(c.series,"candlestick");break;case"boxPlot":v=new al(this.ctx,n).draw(c.series,o.chart.type);break;case"rangeBar":v=this.ctx.rangeBar.draw(c.series);break;case"rangeArea":v=V.draw(c.seriesRangeStart,"rangeArea",void 0,c.seriesRangeEnd);break;case"heatmap":v=new Pb(this.ctx,n).draw(c.series);break;case"treemap":v=new Vb(this.ctx,n).draw(c.series);break;case"pie":case"donut":case"polarArea":v=this.ctx.pie.draw(c.series);break;case"radialBar":v=N.draw(c.series);break;case"radar":v=G.draw(c.series);break;default:v=V.draw(c.series)}return v}},{key:"setSVGDimensions",value:function(){var t=this.w.globals,n=this.w.config;t.svgWidth=n.chart.width,t.svgHeight=n.chart.height;var s=L.getDimensions(this.el),o=n.chart.width.toString().split(/[0-9]+/g).pop();o==="%"?L.isNumber(s[0])&&(s[0].width===0&&(s=L.getDimensions(this.el.parentNode)),t.svgWidth=s[0]*parseInt(n.chart.width,10)/100):o!=="px"&&o!==""||(t.svgWidth=parseInt(n.chart.width,10));var c=n.chart.height.toString().split(/[0-9]+/g).pop();if(t.svgHeight!=="auto"&&t.svgHeight!=="")if(c==="%"){var u=L.getDimensions(this.el.parentNode);t.svgHeight=u[1]*parseInt(n.chart.height,10)/100}else t.svgHeight=parseInt(n.chart.height,10);else t.axisCharts?t.svgHeight=t.svgWidth/1.61:t.svgHeight=t.svgWidth/1.2;if(t.svgWidth<0&&(t.svgWidth=0),t.svgHeight<0&&(t.svgHeight=0),H.setAttrs(t.dom.Paper.node,{width:t.svgWidth,height:t.svgHeight}),c!=="%"){var h=n.chart.sparkline.enabled?0:t.axisCharts?n.chart.parentHeightOffset:0;t.dom.Paper.node.parentNode.parentNode.style.minHeight=t.svgHeight+h+"px"}t.dom.elWrap.style.width=t.svgWidth+"px",t.dom.elWrap.style.height=t.svgHeight+"px"}},{key:"shiftGraphPosition",value:function(){var t=this.w.globals,n=t.translateY,s={transform:"translate("+t.translateX+", "+n+")"};H.setAttrs(t.dom.elGraphical.node,s)}},{key:"resizeNonAxisCharts",value:function(){var t=this.w,n=t.globals,s=0,o=t.config.chart.sparkline.enabled?1:15;o+=t.config.grid.padding.bottom,t.config.legend.position!=="top"&&t.config.legend.position!=="bottom"||!t.config.legend.show||t.config.legend.floating||(s=new ft(this.ctx).legendHelpers.getLegendBBox().clwh+10);var c=t.globals.dom.baseEl.querySelector(".apexcharts-radialbar, .apexcharts-pie"),u=2.05*t.globals.radialSize;if(c&&!t.config.chart.sparkline.enabled&&t.config.plotOptions.radialBar.startAngle!==0){var h=L.getBoundingClientRect(c);u=h.bottom;var g=h.bottom-h.top;u=Math.max(2.05*t.globals.radialSize,g)}var m=u+n.translateY+s+o;n.dom.elLegendForeign&&n.dom.elLegendForeign.setAttribute("height",m),t.config.chart.height&&String(t.config.chart.height).indexOf("%")>0||(n.dom.elWrap.style.height=m+"px",H.setAttrs(n.dom.Paper.node,{height:m}),n.dom.Paper.node.parentNode.parentNode.style.minHeight=m+"px")}},{key:"coreCalculations",value:function(){new te(this.ctx).init()}},{key:"resetGlobals",value:function(){var t=this,n=function(){return t.w.config.series.map(function(c){return[]})},s=new Ee,o=this.w.globals;s.initGlobalVars(o),o.seriesXvalues=n(),o.seriesYvalues=n()}},{key:"isMultipleY",value:function(){if(this.w.config.yaxis.constructor===Array&&this.w.config.yaxis.length>1)return this.w.globals.isMultipleYAxis=!0,!0}},{key:"xySettings",value:function(){var t=null,n=this.w;if(n.globals.axisCharts){if(n.config.xaxis.crosshairs.position==="back"&&new Oe(this.ctx).drawXCrosshairs(),n.config.yaxis[0].crosshairs.position==="back"&&new Oe(this.ctx).drawYCrosshairs(),n.config.xaxis.type==="datetime"&&n.config.xaxis.labels.formatter===void 0){this.ctx.timeScale=new Mb(this.ctx);var s=[];isFinite(n.globals.minX)&&isFinite(n.globals.maxX)&&!n.globals.isBarHorizontal?s=this.ctx.timeScale.calculateTimeScaleTicks(n.globals.minX,n.globals.maxX):n.globals.isBarHorizontal&&(s=this.ctx.timeScale.calculateTimeScaleTicks(n.globals.minY,n.globals.maxY)),this.ctx.timeScale.recalcDimensionsBasedOnFormat(s)}t=new J(this.ctx).getCalculatedRatios()}return t}},{key:"updateSourceChart",value:function(t){this.ctx.w.globals.selection=void 0,this.ctx.updateHelpers._updateOptions({chart:{selection:{xaxis:{min:t.w.globals.minX,max:t.w.globals.maxX}}}},!1,!1)}},{key:"setupBrushHandler",value:function(){var t=this,n=this.w;if(n.config.chart.brush.enabled&&typeof n.config.chart.events.selection!="function"){var s=Array.isArray(n.config.chart.brush.targets)||[n.config.chart.brush.target];s.forEach(function(o){var c=ApexCharts.getChartByID(o);c.w.globals.brushSource=t.ctx,typeof c.w.config.chart.events.zoomed!="function"&&(c.w.config.chart.events.zoomed=function(){t.updateSourceChart(c)}),typeof c.w.config.chart.events.scrolled!="function"&&(c.w.config.chart.events.scrolled=function(){t.updateSourceChart(c)})}),n.config.chart.events.selection=function(o,c){s.forEach(function(u){var h=ApexCharts.getChartByID(u),g=L.clone(n.config.yaxis);if(n.config.chart.brush.autoScaleYaxis&&h.w.globals.series.length===1){var m=new Z(h);g=m.autoScaleY(h,g,c)}var b=h.w.config.yaxis.reduce(function(x,w,P){return[].concat(F(x),[r(r({},h.w.config.yaxis[P]),{},{min:g[0].min,max:g[0].max})])},[]);h.ctx.updateHelpers._updateOptions({xaxis:{min:c.xaxis.min,max:c.xaxis.max},yaxis:b},!1,!1,!1,!1)})}}}}]),D}(),Fb=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w}return p(D,[{key:"_updateOptions",value:function(t){var n=this,s=arguments.length>1&&arguments[1]!==void 0&&arguments[1],o=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],u=arguments.length>4&&arguments[4]!==void 0&&arguments[4];return new Promise(function(h){var g=[n.ctx];c&&(g=n.ctx.getSyncedCharts()),n.ctx.w.globals.isExecCalled&&(g=[n.ctx],n.ctx.w.globals.isExecCalled=!1),g.forEach(function(m,b){var x=m.w;if(x.globals.shouldAnimate=o,s||(x.globals.resized=!0,x.globals.dataChanged=!0,o&&m.series.getPreviousPaths()),t&&l(t)==="object"&&(m.config=new Se(t),t=J.extendArrayProps(m.config,t,x),m.w.globals.chartID!==n.ctx.w.globals.chartID&&delete t.series,x.config=L.extend(x.config,t),u&&(x.globals.lastXAxis=t.xaxis?L.clone(t.xaxis):[],x.globals.lastYAxis=t.yaxis?L.clone(t.yaxis):[],x.globals.initialConfig=L.extend({},x.config),x.globals.initialSeries=L.clone(x.config.series),t.series))){for(var w=0;w2&&arguments[2]!==void 0&&arguments[2];return new Promise(function(c){var u,h=s.w;return h.globals.shouldAnimate=n,h.globals.dataChanged=!0,n&&s.ctx.series.getPreviousPaths(),h.globals.axisCharts?((u=t.map(function(g,m){return s._extendSeries(g,m)})).length===0&&(u=[{data:[]}]),h.config.series=u):h.config.series=t.slice(),o&&(h.globals.initialConfig.series=L.clone(h.config.series),h.globals.initialSeries=L.clone(h.config.series)),s.ctx.update().then(function(){c(s.ctx)})})}},{key:"_extendSeries",value:function(t,n){var s=this.w,o=s.config.series[n];return r(r({},s.config.series[n]),{},{name:t.name?t.name:o&&o.name,color:t.color?t.color:o&&o.color,type:t.type?t.type:o&&o.type,group:t.group?t.group:o&&o.group,data:t.data?t.data:o&&o.data})}},{key:"toggleDataPointSelection",value:function(t,n){var s=this.w,o=null,c=".apexcharts-series[data\\:realIndex='".concat(t,"']");return s.globals.axisCharts?o=s.globals.dom.Paper.select("".concat(c," path[j='").concat(n,"'], ").concat(c," circle[j='").concat(n,"'], ").concat(c," rect[j='").concat(n,"']")).members[0]:n===void 0&&(o=s.globals.dom.Paper.select("".concat(c," path[j='").concat(t,"']")).members[0],s.config.chart.type!=="pie"&&s.config.chart.type!=="polarArea"&&s.config.chart.type!=="donut"||this.ctx.pie.pieClicked(t)),o?(new H(this.ctx).pathMouseDown(o,null),o.node?o.node:null):(console.warn("toggleDataPointSelection: Element not found"),null)}},{key:"forceXAxisUpdate",value:function(t){var n=this.w;if(["min","max"].forEach(function(o){t.xaxis[o]!==void 0&&(n.config.xaxis[o]=t.xaxis[o],n.globals.lastXAxis[o]=t.xaxis[o])}),t.xaxis.categories&&t.xaxis.categories.length&&(n.config.xaxis.categories=t.xaxis.categories),n.config.xaxis.convertedCatToNumeric){var s=new he(t);t=s.convertCatToNumericXaxis(t,this.ctx)}return t}},{key:"forceYAxisUpdate",value:function(t){return t.chart&&t.chart.stacked&&t.chart.stackType==="100%"&&(Array.isArray(t.yaxis)?t.yaxis.forEach(function(n,s){t.yaxis[s].min=0,t.yaxis[s].max=100}):(t.yaxis.min=0,t.yaxis.max=100)),t}},{key:"revertDefaultAxisMinMax",value:function(t){var n=this,s=this.w,o=s.globals.lastXAxis,c=s.globals.lastYAxis;t&&t.xaxis&&(o=t.xaxis),t&&t.yaxis&&(c=t.yaxis),s.config.xaxis.min=o.min,s.config.xaxis.max=o.max;var u=function(h){c[h]!==void 0&&(s.config.yaxis[h].min=c[h].min,s.config.yaxis[h].max=c[h].max)};s.config.yaxis.map(function(h,g){s.globals.zoomed||c[g]!==void 0?u(g):n.ctx.opts.yaxis[g]!==void 0&&(h.min=n.ctx.opts.yaxis[g].min,h.max=n.ctx.opts.yaxis[g].max)})}}]),D}();qa=typeof window<"u"?window:void 0,kr=function(D,t){var n=(this!==void 0?this:D).SVG=function(v){if(n.supported)return v=new n.Doc(v),n.parser.draw||n.prepare(),v};if(n.ns="http://www.w3.org/2000/svg",n.xmlns="http://www.w3.org/2000/xmlns/",n.xlink="http://www.w3.org/1999/xlink",n.svgjs="http://svgjs.dev",n.supported=!0,!n.supported)return!1;n.did=1e3,n.eid=function(v){return"Svgjs"+b(v)+n.did++},n.create=function(v){var S=t.createElementNS(this.ns,v);return S.setAttribute("id",this.eid(v)),S},n.extend=function(){var v,S;S=(v=[].slice.call(arguments)).pop();for(var I=v.length-1;I>=0;I--)if(v[I])for(var z in S)v[I].prototype[z]=S[z];n.Set&&n.Set.inherit&&n.Set.inherit()},n.invent=function(v){var S=typeof v.create=="function"?v.create:function(){this.constructor.call(this,n.create(v.create))};return v.inherit&&(S.prototype=new v.inherit),v.extend&&n.extend(S,v.extend),v.construct&&n.extend(v.parent||n.Container,v.construct),S},n.adopt=function(v){return v?v.instance?v.instance:((S=v.nodeName=="svg"?v.parentNode instanceof D.SVGElement?new n.Nested:new n.Doc:v.nodeName=="linearGradient"?new n.Gradient("linear"):v.nodeName=="radialGradient"?new n.Gradient("radial"):n[b(v.nodeName)]?new n[b(v.nodeName)]:new n.Element(v)).type=v.nodeName,S.node=v,v.instance=S,S instanceof n.Doc&&S.namespace().defs(),S.setData(JSON.parse(v.getAttribute("svgjs:data"))||{}),S):null;var S},n.prepare=function(){var v=t.getElementsByTagName("body")[0],S=(v?new n.Doc(v):n.adopt(t.documentElement).nested()).size(2,0);n.parser={body:v||t.documentElement,draw:S.style("opacity:0;position:absolute;left:-100%;top:-100%;overflow:hidden").node,poly:S.polyline().node,path:S.path().node,native:n.create("svg")}},n.parser={native:n.create("svg")},t.addEventListener("DOMContentLoaded",function(){n.parser.draw||n.prepare()},!1),n.regex={numberAndUnit:/^([+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?)([a-z%]*)$/i,hex:/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,rgb:/rgb\((\d+),(\d+),(\d+)\)/,reference:/#([a-z0-9\-_]+)/i,transforms:/\)\s*,?\s*/,whitespace:/\s/g,isHex:/^#[a-f0-9]{3,6}$/i,isRgb:/^rgb\(/,isCss:/[^:]+:[^;]+;?/,isBlank:/^(\s+)?$/,isNumber:/^[+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,isPercent:/^-?[\d\.]+%$/,isImage:/\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i,delimiter:/[\s,]+/,hyphen:/([^e])\-/gi,pathLetters:/[MLHVCSQTAZ]/gi,isPathLetter:/[MLHVCSQTAZ]/i,numbersWithDots:/((\d?\.\d+(?:e[+-]?\d+)?)((?:\.\d+(?:e[+-]?\d+)?)+))+/gi,dots:/\./g},n.utils={map:function(v,S){for(var I=v.length,z=[],U=0;U1?1:v,new n.Color({r:~~(this.r+(this.destination.r-this.r)*v),g:~~(this.g+(this.destination.g-this.g)*v),b:~~(this.b+(this.destination.b-this.b)*v)})):this}}),n.Color.test=function(v){return v+="",n.regex.isHex.test(v)||n.regex.isRgb.test(v)},n.Color.isRgb=function(v){return v&&typeof v.r=="number"&&typeof v.g=="number"&&typeof v.b=="number"},n.Color.isColor=function(v){return n.Color.isRgb(v)||n.Color.test(v)},n.Array=function(v,S){(v=(v||[]).valueOf()).length==0&&S&&(v=S.valueOf()),this.value=this.parse(v)},n.extend(n.Array,{toString:function(){return this.value.join(" ")},valueOf:function(){return this.value},parse:function(v){return v=v.valueOf(),Array.isArray(v)?v:this.split(v)}}),n.PointArray=function(v,S){n.Array.call(this,v,S||[[0,0]])},n.PointArray.prototype=new n.Array,n.PointArray.prototype.constructor=n.PointArray;for(var s={M:function(v,S,I){return S.x=I.x=v[0],S.y=I.y=v[1],["M",S.x,S.y]},L:function(v,S){return S.x=v[0],S.y=v[1],["L",v[0],v[1]]},H:function(v,S){return S.x=v[0],["H",v[0]]},V:function(v,S){return S.y=v[0],["V",v[0]]},C:function(v,S){return S.x=v[4],S.y=v[5],["C",v[0],v[1],v[2],v[3],v[4],v[5]]},Q:function(v,S){return S.x=v[2],S.y=v[3],["Q",v[0],v[1],v[2],v[3]]},S:function(v,S){return S.x=v[2],S.y=v[3],["S",v[0],v[1],v[2],v[3]]},Z:function(v,S,I){return S.x=I.x,S.y=I.y,["Z"]}},o="mlhvqtcsaz".split(""),c=0,u=o.length;cae);return z},bbox:function(){return n.parser.draw||n.prepare(),n.parser.path.setAttribute("d",this.toString()),n.parser.path.getBBox()}}),n.Number=n.invent({create:function(v,S){this.value=0,this.unit=S||"",typeof v=="number"?this.value=isNaN(v)?0:isFinite(v)?v:v<0?-34e37:34e37:typeof v=="string"?(S=v.match(n.regex.numberAndUnit))&&(this.value=parseFloat(S[1]),S[5]=="%"?this.value/=100:S[5]=="s"&&(this.value*=1e3),this.unit=S[5]):v instanceof n.Number&&(this.value=v.valueOf(),this.unit=v.unit)},extend:{toString:function(){return(this.unit=="%"?~~(1e8*this.value)/1e6:this.unit=="s"?this.value/1e3:this.value)+this.unit},toJSON:function(){return this.toString()},valueOf:function(){return this.value},plus:function(v){return v=new n.Number(v),new n.Number(this+v,this.unit||v.unit)},minus:function(v){return v=new n.Number(v),new n.Number(this-v,this.unit||v.unit)},times:function(v){return v=new n.Number(v),new n.Number(this*v,this.unit||v.unit)},divide:function(v){return v=new n.Number(v),new n.Number(this/v,this.unit||v.unit)},to:function(v){var S=new n.Number(this);return typeof v=="string"&&(S.unit=v),S},morph:function(v){return this.destination=new n.Number(v),v.relative&&(this.destination.value+=this.value),this},at:function(v){return this.destination?new n.Number(this.destination).minus(this).times(v).plus(this):this}}}),n.Element=n.invent({create:function(v){this._stroke=n.defaults.attrs.stroke,this._event=null,this.dom={},(this.node=v)&&(this.type=v.nodeName,this.node.instance=this,this._stroke=v.getAttribute("stroke")||this._stroke)},extend:{x:function(v){return this.attr("x",v)},y:function(v){return this.attr("y",v)},cx:function(v){return v==null?this.x()+this.width()/2:this.x(v-this.width()/2)},cy:function(v){return v==null?this.y()+this.height()/2:this.y(v-this.height()/2)},move:function(v,S){return this.x(v).y(S)},center:function(v,S){return this.cx(v).cy(S)},width:function(v){return this.attr("width",v)},height:function(v){return this.attr("height",v)},size:function(v,S){var I=w(this,v,S);return this.width(new n.Number(I.width)).height(new n.Number(I.height))},clone:function(v){this.writeDataToDom();var S=V(this.node.cloneNode(!0));return v?v.add(S):this.after(S),S},remove:function(){return this.parent()&&this.parent().removeElement(this),this},replace:function(v){return this.after(v).remove(),v},addTo:function(v){return v.put(this)},putIn:function(v){return v.add(this)},id:function(v){return this.attr("id",v)},show:function(){return this.style("display","")},hide:function(){return this.style("display","none")},visible:function(){return this.style("display")!="none"},toString:function(){return this.attr("id")},classes:function(){var v=this.attr("class");return v==null?[]:v.trim().split(n.regex.delimiter)},hasClass:function(v){return this.classes().indexOf(v)!=-1},addClass:function(v){if(!this.hasClass(v)){var S=this.classes();S.push(v),this.attr("class",S.join(" "))}return this},removeClass:function(v){return this.hasClass(v)&&this.attr("class",this.classes().filter(function(S){return S!=v}).join(" ")),this},toggleClass:function(v){return this.hasClass(v)?this.removeClass(v):this.addClass(v)},reference:function(v){return n.get(this.attr(v))},parent:function(v){var S=this;if(!S.node.parentNode)return null;if(S=n.adopt(S.node.parentNode),!v)return S;for(;S&&S.node instanceof D.SVGElement;){if(typeof v=="string"?S.matches(v):S instanceof v)return S;if(!S.node.parentNode||S.node.parentNode.nodeName=="#document")return null;S=n.adopt(S.node.parentNode)}},doc:function(){return this instanceof n.Doc?this:this.parent(n.Doc)},parents:function(v){var S=[],I=this;do{if(!(I=I.parent(v))||!I.node)break;S.push(I)}while(I.parent);return S},matches:function(v){return function(S,I){return(S.matches||S.matchesSelector||S.msMatchesSelector||S.mozMatchesSelector||S.webkitMatchesSelector||S.oMatchesSelector).call(S,I)}(this.node,v)},native:function(){return this.node},svg:function(v){var S=t.createElement("svg");if(!(v&&this instanceof n.Parent))return S.appendChild(v=t.createElement("svg")),this.writeDataToDom(),v.appendChild(this.node.cloneNode(!0)),S.innerHTML.replace(/^/,"").replace(/<\/svg>$/,"");S.innerHTML=""+v.replace(/\n/,"").replace(/<([\w:-]+)([^<]+?)\/>/g,"<$1$2>")+"";for(var I=0,z=S.firstChild.childNodes.length;I":function(v){return-Math.cos(v*Math.PI)/2+.5},">":function(v){return Math.sin(v*Math.PI/2)},"<":function(v){return 1-Math.cos(v*Math.PI/2)}},n.morph=function(v){return function(S,I){return new n.MorphObj(S,I).at(v)}},n.Situation=n.invent({create:function(v){this.init=!1,this.reversed=!1,this.reversing=!1,this.duration=new n.Number(v.duration).valueOf(),this.delay=new n.Number(v.delay).valueOf(),this.start=+new Date+this.delay,this.finish=this.start+this.duration,this.ease=v.ease,this.loop=0,this.loops=!1,this.animations={},this.attrs={},this.styles={},this.transforms=[],this.once={}}}),n.FX=n.invent({create:function(v){this._target=v,this.situations=[],this.active=!1,this.situation=null,this.paused=!1,this.lastPos=0,this.pos=0,this.absPos=0,this._speed=1},extend:{animate:function(v,S,I){l(v)==="object"&&(S=v.ease,I=v.delay,v=v.duration);var z=new n.Situation({duration:v||1e3,delay:I||0,ease:n.easing[S||"-"]||S});return this.queue(z),this},target:function(v){return v&&v instanceof n.Element?(this._target=v,this):this._target},timeToAbsPos:function(v){return(v-this.situation.start)/(this.situation.duration/this._speed)},absPosToTime:function(v){return this.situation.duration/this._speed*v+this.situation.start},startAnimFrame:function(){this.stopAnimFrame(),this.animationFrame=D.requestAnimationFrame((function(){this.step()}).bind(this))},stopAnimFrame:function(){D.cancelAnimationFrame(this.animationFrame)},start:function(){return!this.active&&this.situation&&(this.active=!0,this.startCurrent()),this},startCurrent:function(){return this.situation.start=+new Date+this.situation.delay/this._speed,this.situation.finish=this.situation.start+this.situation.duration/this._speed,this.initAnimations().step()},queue:function(v){return(typeof v=="function"||v instanceof n.Situation)&&this.situations.push(v),this.situation||(this.situation=this.situations.shift()),this},dequeue:function(){return this.stop(),this.situation=this.situations.shift(),this.situation&&(this.situation instanceof n.Situation?this.start():this.situation.call(this)),this},initAnimations:function(){var v,S=this.situation;if(S.init)return this;for(var I in S.animations){v=this.target()[I](),Array.isArray(v)||(v=[v]),Array.isArray(S.animations[I])||(S.animations[I]=[S.animations[I]]);for(var z=v.length;z--;)S.animations[I][z]instanceof n.Number&&(v[z]=new n.Number(v[z])),S.animations[I][z]=v[z].morph(S.animations[I][z])}for(var I in S.attrs)S.attrs[I]=new n.MorphObj(this.target().attr(I),S.attrs[I]);for(var I in S.styles)S.styles[I]=new n.MorphObj(this.target().style(I),S.styles[I]);return S.initialTransformation=this.target().matrixify(),S.init=!0,this},clearQueue:function(){return this.situations=[],this},clearCurrent:function(){return this.situation=null,this},stop:function(v,S){var I=this.active;return this.active=!1,S&&this.clearQueue(),v&&this.situation&&(!I&&this.startCurrent(),this.atEnd()),this.stopAnimFrame(),this.clearCurrent()},after:function(v){var S=this.last();return this.target().on("finished.fx",function I(z){z.detail.situation==S&&(v.call(this,S),this.off("finished.fx",I))}),this._callStart()},during:function(v){var S=this.last(),I=function(z){z.detail.situation==S&&v.call(this,z.detail.pos,n.morph(z.detail.pos),z.detail.eased,S)};return this.target().off("during.fx",I).on("during.fx",I),this.after(function(){this.off("during.fx",I)}),this._callStart()},afterAll:function(v){var S=function I(z){v.call(this),this.off("allfinished.fx",I)};return this.target().off("allfinished.fx",S).on("allfinished.fx",S),this._callStart()},last:function(){return this.situations.length?this.situations[this.situations.length-1]:this.situation},add:function(v,S,I){return this.last()[I||"animations"][v]=S,this._callStart()},step:function(v){var S,I,z;v||(this.absPos=this.timeToAbsPos(+new Date)),this.situation.loops!==!1?(S=Math.max(this.absPos,0),I=Math.floor(S),this.situation.loops===!0||Ithis.lastPos&&K<=U&&(this.situation.once[K].call(this.target(),this.pos,U),delete this.situation.once[K]);return this.active&&this.target().fire("during",{pos:this.pos,eased:U,fx:this,situation:this.situation}),this.situation?(this.eachAt(),this.pos==1&&!this.situation.reversed||this.situation.reversed&&this.pos==0?(this.stopAnimFrame(),this.target().fire("finished",{fx:this,situation:this.situation}),this.situations.length||(this.target().fire("allfinished"),this.situations.length||(this.target().off(".fx"),this.active=!1)),this.active?this.dequeue():this.clearCurrent()):!this.paused&&this.active&&this.startAnimFrame(),this.lastPos=U,this):this},eachAt:function(){var v,S=this,I=this.target(),z=this.situation;for(var U in z.animations)v=[].concat(z.animations[U]).map(function(re){return typeof re!="string"&&re.at?re.at(z.ease(S.pos),S.pos):re}),I[U].apply(I,v);for(var U in z.attrs)v=[U].concat(z.attrs[U]).map(function(ge){return typeof ge!="string"&&ge.at?ge.at(z.ease(S.pos),S.pos):ge}),I.attr.apply(I,v);for(var U in z.styles)v=[U].concat(z.styles[U]).map(function(ge){return typeof ge!="string"&&ge.at?ge.at(z.ease(S.pos),S.pos):ge}),I.style.apply(I,v);if(z.transforms.length){v=z.initialTransformation,U=0;for(var K=z.transforms.length;U=0;--I)this[N[I]]=v[N[I]]!=null?v[N[I]]:S[N[I]]},extend:{extract:function(){var v=P(this,0,1);P(this,1,0);var S=180/Math.PI*Math.atan2(v.y,v.x)-90;return{x:this.e,y:this.f,transformedX:(this.e*Math.cos(S*Math.PI/180)+this.f*Math.sin(S*Math.PI/180))/Math.sqrt(this.a*this.a+this.b*this.b),transformedY:(this.f*Math.cos(S*Math.PI/180)+this.e*Math.sin(-S*Math.PI/180))/Math.sqrt(this.c*this.c+this.d*this.d),rotation:S,a:this.a,b:this.b,c:this.c,d:this.d,e:this.e,f:this.f,matrix:new n.Matrix(this)}},clone:function(){return new n.Matrix(this)},morph:function(v){return this.destination=new n.Matrix(v),this},multiply:function(v){return new n.Matrix(this.native().multiply(function(S){return S instanceof n.Matrix||(S=new n.Matrix(S)),S}(v).native()))},inverse:function(){return new n.Matrix(this.native().inverse())},translate:function(v,S){return new n.Matrix(this.native().translate(v||0,S||0))},native:function(){for(var v=n.parser.native.createSVGMatrix(),S=N.length-1;S>=0;S--)v[N[S]]=this[N[S]];return v},toString:function(){return"matrix("+O(this.a)+","+O(this.b)+","+O(this.c)+","+O(this.d)+","+O(this.e)+","+O(this.f)+")"}},parent:n.Element,construct:{ctm:function(){return new n.Matrix(this.node.getCTM())},screenCTM:function(){if(this instanceof n.Nested){var v=this.rect(1,1),S=v.node.getScreenCTM();return v.remove(),new n.Matrix(S)}return new n.Matrix(this.node.getScreenCTM())}}}),n.Point=n.invent({create:function(v,S){var I;I=Array.isArray(v)?{x:v[0],y:v[1]}:l(v)==="object"?{x:v.x,y:v.y}:v!=null?{x:v,y:S??v}:{x:0,y:0},this.x=I.x,this.y=I.y},extend:{clone:function(){return new n.Point(this)},morph:function(v,S){return this.destination=new n.Point(v,S),this}}}),n.extend(n.Element,{point:function(v,S){return new n.Point(v,S).transform(this.screenCTM().inverse())}}),n.extend(n.Element,{attr:function(v,S,I){if(v==null){for(v={},I=(S=this.node.attributes).length-1;I>=0;I--)v[S[I].nodeName]=n.regex.isNumber.test(S[I].nodeValue)?parseFloat(S[I].nodeValue):S[I].nodeValue;return v}if(l(v)==="object")for(var z in v)this.attr(z,v[z]);else if(S===null)this.node.removeAttribute(v);else{if(S==null)return(S=this.node.getAttribute(v))==null?n.defaults.attrs[v]:n.regex.isNumber.test(S)?parseFloat(S):S;v=="stroke-width"?this.attr("stroke",parseFloat(S)>0?this._stroke:null):v=="stroke"&&(this._stroke=S),v!="fill"&&v!="stroke"||(n.regex.isImage.test(S)&&(S=this.doc().defs().image(S,0,0)),S instanceof n.Image&&(S=this.doc().defs().pattern(0,0,function(){this.add(S)}))),typeof S=="number"?S=new n.Number(S):n.Color.isColor(S)?S=new n.Color(S):Array.isArray(S)&&(S=new n.Array(S)),v=="leading"?this.leading&&this.leading(S):typeof I=="string"?this.node.setAttributeNS(I,v,S.toString()):this.node.setAttribute(v,S.toString()),!this.rebuild||v!="font-size"&&v!="x"||this.rebuild(v,S)}return this}}),n.extend(n.Element,{transform:function(v,S){var I;return l(v)!=="object"?(I=new n.Matrix(this).extract(),typeof v=="string"?I[v]:I):(I=new n.Matrix(this),S=!!S||!!v.relative,v.a!=null&&(I=S?I.multiply(new n.Matrix(v)):new n.Matrix(v)),this.attr("transform",I))}}),n.extend(n.Element,{untransform:function(){return this.attr("transform",null)},matrixify:function(){return(this.attr("transform")||"").split(n.regex.transforms).slice(0,-1).map(function(v){var S=v.trim().split("(");return[S[0],S[1].split(n.regex.delimiter).map(function(I){return parseFloat(I)})]}).reduce(function(v,S){return S[0]=="matrix"?v.multiply(T(S[1])):v[S[0]].apply(v,S[1])},new n.Matrix)},toParent:function(v){if(this==v)return this;var S=this.screenCTM(),I=v.screenCTM().inverse();return this.addTo(v).untransform().transform(I.multiply(S)),this},toDoc:function(){return this.toParent(this.doc())}}),n.Transformation=n.invent({create:function(v,S){if(arguments.length>1&&typeof S!="boolean")return this.constructor.call(this,[].slice.call(arguments));if(Array.isArray(v))for(var I=0,z=this.arguments.length;I=0},index:function(v){return[].slice.call(this.node.childNodes).indexOf(v.node)},get:function(v){return n.adopt(this.node.childNodes[v])},first:function(){return this.get(0)},last:function(){return this.get(this.node.childNodes.length-1)},each:function(v,S){for(var I=this.children(),z=0,U=I.length;z=0;S--)v.childNodes[S]instanceof D.SVGElement&&V(v.childNodes[S]);return n.adopt(v).id(n.eid(v.nodeName))}function O(v){return Math.abs(v)>1e-37?v:0}["fill","stroke"].forEach(function(v){var S={};S[v]=function(I){if(I===void 0)return this;if(typeof I=="string"||n.Color.isRgb(I)||I&&typeof I.fill=="function")this.attr(v,I);else for(var z=h[v].length-1;z>=0;z--)I[h[v][z]]!=null&&this.attr(h.prefix(v,h[v][z]),I[h[v][z]]);return this},n.extend(n.Element,n.FX,S)}),n.extend(n.Element,n.FX,{translate:function(v,S){return this.transform({x:v,y:S})},matrix:function(v){return this.attr("transform",new n.Matrix(arguments.length==6?[].slice.call(arguments):v))},opacity:function(v){return this.attr("opacity",v)},dx:function(v){return this.x(new n.Number(v).plus(this instanceof n.FX?0:this.x()),!0)},dy:function(v){return this.y(new n.Number(v).plus(this instanceof n.FX?0:this.y()),!0)}}),n.extend(n.Path,{length:function(){return this.node.getTotalLength()},pointAt:function(v){return this.node.getPointAtLength(v)}}),n.Set=n.invent({create:function(v){Array.isArray(v)?this.members=v:this.clear()},extend:{add:function(){for(var v=[].slice.call(arguments),S=0,I=v.length;S-1&&this.members.splice(S,1),this},each:function(v){for(var S=0,I=this.members.length;S=0},index:function(v){return this.members.indexOf(v)},get:function(v){return this.members[v]},first:function(){return this.get(0)},last:function(){return this.get(this.members.length-1)},valueOf:function(){return this.members}},construct:{set:function(v){return new n.Set(v)}}}),n.FX.Set=n.invent({create:function(v){this.set=v}}),n.Set.inherit=function(){var v=[];for(var S in n.Shape.prototype)typeof n.Shape.prototype[S]=="function"&&typeof n.Set.prototype[S]!="function"&&v.push(S);for(var S in v.forEach(function(z){n.Set.prototype[z]=function(){for(var U=0,K=this.members.length;U=0;v--)delete this.memory()[arguments[v]];return this},memory:function(){return this._memory||(this._memory={})}}),n.get=function(v){var S=t.getElementById(function(I){var z=(I||"").toString().match(n.regex.reference);if(z)return z[1]}(v)||v);return n.adopt(S)},n.select=function(v,S){return new n.Set(n.utils.map((S||t).querySelectorAll(v),function(I){return n.adopt(I)}))},n.extend(n.Parent,{select:function(v){return n.select(v,this.node)}});var N="abcdef".split("");if(typeof D.CustomEvent!="function"){var G=function(v,S){S=S||{bubbles:!1,cancelable:!1,detail:void 0};var I=t.createEvent("CustomEvent");return I.initCustomEvent(v,S.bubbles,S.cancelable,S.detail),I};G.prototype=D.Event.prototype,n.CustomEvent=G}else n.CustomEvent=D.CustomEvent;return n},l(a)==="object"?e.exports=qa.document?kr(qa,qa.document):function(D){return kr(D,D.document)}:qa.SVG=kr(qa,qa.document),(function(){SVG.Filter=SVG.invent({create:"filter",inherit:SVG.Parent,extend:{source:"SourceGraphic",sourceAlpha:"SourceAlpha",background:"BackgroundImage",backgroundAlpha:"BackgroundAlpha",fill:"FillPaint",stroke:"StrokePaint",autoSetIn:!0,put:function(u,h){return this.add(u,h),!u.attr("in")&&this.autoSetIn&&u.attr("in",this.source),u.attr("result")||u.attr("result",u),u},blend:function(u,h,g){return this.put(new SVG.BlendEffect(u,h,g))},colorMatrix:function(u,h){return this.put(new SVG.ColorMatrixEffect(u,h))},convolveMatrix:function(u){return this.put(new SVG.ConvolveMatrixEffect(u))},componentTransfer:function(u){return this.put(new SVG.ComponentTransferEffect(u))},composite:function(u,h,g){return this.put(new SVG.CompositeEffect(u,h,g))},flood:function(u,h){return this.put(new SVG.FloodEffect(u,h))},offset:function(u,h){return this.put(new SVG.OffsetEffect(u,h))},image:function(u){return this.put(new SVG.ImageEffect(u))},merge:function(){var u=[void 0];for(var h in arguments)u.push(arguments[h]);return this.put(new(SVG.MergeEffect.bind.apply(SVG.MergeEffect,u)))},gaussianBlur:function(u,h){return this.put(new SVG.GaussianBlurEffect(u,h))},morphology:function(u,h){return this.put(new SVG.MorphologyEffect(u,h))},diffuseLighting:function(u,h,g){return this.put(new SVG.DiffuseLightingEffect(u,h,g))},displacementMap:function(u,h,g,m,b){return this.put(new SVG.DisplacementMapEffect(u,h,g,m,b))},specularLighting:function(u,h,g,m){return this.put(new SVG.SpecularLightingEffect(u,h,g,m))},tile:function(){return this.put(new SVG.TileEffect)},turbulence:function(u,h,g,m,b){return this.put(new SVG.TurbulenceEffect(u,h,g,m,b))},toString:function(){return"url(#"+this.attr("id")+")"}}}),SVG.extend(SVG.Defs,{filter:function(u){var h=this.put(new SVG.Filter);return typeof u=="function"&&u.call(h,h),h}}),SVG.extend(SVG.Container,{filter:function(u){return this.defs().filter(u)}}),SVG.extend(SVG.Element,SVG.G,SVG.Nested,{filter:function(u){return this.filterer=u instanceof SVG.Element?u:this.doc().filter(u),this.doc()&&this.filterer.doc()!==this.doc()&&this.doc().defs().add(this.filterer),this.attr("filter",this.filterer),this.filterer},unfilter:function(u){return this.filterer&&u===!0&&this.filterer.remove(),delete this.filterer,this.attr("filter",null)}}),SVG.Effect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(u){return u==null?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",u)},result:function(u){return u==null?this.attr("result"):this.attr("result",u)},toString:function(){return this.result()}}}),SVG.ParentEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Parent,extend:{in:function(u){return u==null?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",u)},result:function(u){return u==null?this.attr("result"):this.attr("result",u)},toString:function(){return this.result()}}});var D={blend:function(u,h){return this.parent()&&this.parent().blend(this,u,h)},colorMatrix:function(u,h){return this.parent()&&this.parent().colorMatrix(u,h).in(this)},convolveMatrix:function(u){return this.parent()&&this.parent().convolveMatrix(u).in(this)},componentTransfer:function(u){return this.parent()&&this.parent().componentTransfer(u).in(this)},composite:function(u,h){return this.parent()&&this.parent().composite(this,u,h)},flood:function(u,h){return this.parent()&&this.parent().flood(u,h)},offset:function(u,h){return this.parent()&&this.parent().offset(u,h).in(this)},image:function(u){return this.parent()&&this.parent().image(u)},merge:function(){return this.parent()&&this.parent().merge.apply(this.parent(),[this].concat(arguments))},gaussianBlur:function(u,h){return this.parent()&&this.parent().gaussianBlur(u,h).in(this)},morphology:function(u,h){return this.parent()&&this.parent().morphology(u,h).in(this)},diffuseLighting:function(u,h,g){return this.parent()&&this.parent().diffuseLighting(u,h,g).in(this)},displacementMap:function(u,h,g,m){return this.parent()&&this.parent().displacementMap(this,u,h,g,m)},specularLighting:function(u,h,g,m){return this.parent()&&this.parent().specularLighting(u,h,g,m).in(this)},tile:function(){return this.parent()&&this.parent().tile().in(this)},turbulence:function(u,h,g,m,b){return this.parent()&&this.parent().turbulence(u,h,g,m,b).in(this)}};SVG.extend(SVG.Effect,D),SVG.extend(SVG.ParentEffect,D),SVG.ChildEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(u){this.attr("in",u)}}});var t={blend:function(u,h,g){this.attr({in:u,in2:h,mode:g||"normal"})},colorMatrix:function(u,h){u=="matrix"&&(h=o(h)),this.attr({type:u,values:h===void 0?null:h})},convolveMatrix:function(u){u=o(u),this.attr({order:Math.sqrt(u.split(" ").length),kernelMatrix:u})},composite:function(u,h,g){this.attr({in:u,in2:h,operator:g})},flood:function(u,h){this.attr("flood-color",u),h!=null&&this.attr("flood-opacity",h)},offset:function(u,h){this.attr({dx:u,dy:h})},image:function(u){this.attr("href",u,SVG.xlink)},displacementMap:function(u,h,g,m,b){this.attr({in:u,in2:h,scale:g,xChannelSelector:m,yChannelSelector:b})},gaussianBlur:function(u,h){u!=null||h!=null?this.attr("stdDeviation",function(g){if(!Array.isArray(g))return g;for(var m=0,b=g.length,x=[];m1&&(kt*=b=Math.sqrt(b),It*=b),x=new SVG.Matrix().rotate(Rt).scale(1/kt,1/It).rotate(-Rt),un=un.transform(x),Zt=Zt.transform(x),w=[Zt.x-un.x,Zt.y-un.y],T=w[0]*w[0]+w[1]*w[1],P=Math.sqrt(T),w[0]/=P,w[1]/=P,V=T<4?Math.sqrt(1-T/4):0,Dn===Ka&&(V*=-1),O=new SVG.Point((Zt.x+un.x)/2+V*-w[1],(Zt.y+un.y)/2+V*w[0]),N=new SVG.Point(un.x-O.x,un.y-O.y),G=new SVG.Point(Zt.x-O.x,Zt.y-O.y),v=Math.acos(N.x/Math.sqrt(N.x*N.x+N.y*N.y)),N.y<0&&(v*=-1),S=Math.acos(G.x/Math.sqrt(G.x*G.x+G.y*G.y)),G.y<0&&(S*=-1),Ka&&v>S&&(S+=2*Math.PI),!Ka&&vu.maxX-n.width&&(h=(o=u.maxX-n.width)-this.startPoints.box.x),u.minY!=null&&cu.maxY-n.height&&(g=(c=u.maxY-n.height)-this.startPoints.box.y),u.snapToGrid!=null&&(o-=o%u.snapToGrid,c-=c%u.snapToGrid,h-=h%u.snapToGrid,g-=g%u.snapToGrid),this.el instanceof SVG.G?this.el.matrix(this.startPoints.transform).transform({x:h,y:g},!0):this.el.move(o,c));return s},D.prototype.end=function(t){var n=this.drag(t);this.el.fire("dragend",{event:t,p:n,m:this.m,handler:this}),SVG.off(window,"mousemove.drag"),SVG.off(window,"touchmove.drag"),SVG.off(window,"mouseup.drag"),SVG.off(window,"touchend.drag")},SVG.extend(SVG.Element,{draggable:function(t,n){typeof t!="function"&&typeof t!="object"||(n=t,t=!0);var s=this.remember("_draggable")||new D(this);return(t=t===void 0||t)?s.init(n||{},t):(this.off("mousedown.drag"),this.off("touchstart.drag")),this}})}).call(void 0),function(){function D(t){this.el=t,t.remember("_selectHandler",this),this.pointSelection={isSelected:!1},this.rectSelection={isSelected:!1},this.pointsList={lt:[0,0],rt:["width",0],rb:["width","height"],lb:[0,"height"],t:["width",0],r:["width","height"],b:["width","height"],l:[0,"height"]},this.pointCoord=function(n,s,o){var c=typeof n!="string"?n:s[n];return o?c/2:c},this.pointCoords=function(n,s){var o=this.pointsList[n];return{x:this.pointCoord(o[0],s,n==="t"||n==="b"),y:this.pointCoord(o[1],s,n==="r"||n==="l")}}}D.prototype.init=function(t,n){var s=this.el.bbox();this.options={};var o=this.el.selectize.defaults.points;for(var c in this.el.selectize.defaults)this.options[c]=this.el.selectize.defaults[c],n[c]!==void 0&&(this.options[c]=n[c]);var u=["points","pointsExclude"];for(var c in u){var h=this.options[u[c]];typeof h=="string"?h=h.length>0?h.split(/\s*,\s*/i):[]:typeof h=="boolean"&&u[c]==="points"&&(h=h?o:[]),this.options[u[c]]=h}this.options.points=[o,this.options.points].reduce(function(g,m){return g.filter(function(b){return m.indexOf(b)>-1})}),this.options.points=[this.options.points,this.options.pointsExclude].reduce(function(g,m){return g.filter(function(b){return m.indexOf(b)<0})}),this.parent=this.el.parent(),this.nested=this.nested||this.parent.group(),this.nested.matrix(new SVG.Matrix(this.el).translate(s.x,s.y)),this.options.deepSelect&&["line","polyline","polygon"].indexOf(this.el.type)!==-1?this.selectPoints(t):this.selectRect(t),this.observe(),this.cleanup()},D.prototype.selectPoints=function(t){return this.pointSelection.isSelected=t,this.pointSelection.set||(this.pointSelection.set=this.parent.set(),this.drawPoints()),this},D.prototype.getPointArray=function(){var t=this.el.bbox();return this.el.array().valueOf().map(function(n){return[n[0]-t.x,n[1]-t.y]})},D.prototype.drawPoints=function(){for(var t=this,n=this.getPointArray(),s=0,o=n.length;s0&&this.parameters.box.height-h[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x+h[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-h[0]);h=this.checkAspectRatio(h),this.el.move(this.parameters.box.x+h[0],this.parameters.box.y+h[1]).size(this.parameters.box.width-h[0],this.parameters.box.height-h[1])}};break;case"rt":this.calc=function(c,u){var h=this.snapToGrid(c,u,2);if(this.parameters.box.width+h[0]>0&&this.parameters.box.height-h[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x-h[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+h[0]);h=this.checkAspectRatio(h,!0),this.el.move(this.parameters.box.x,this.parameters.box.y+h[1]).size(this.parameters.box.width+h[0],this.parameters.box.height-h[1])}};break;case"rb":this.calc=function(c,u){var h=this.snapToGrid(c,u,0);if(this.parameters.box.width+h[0]>0&&this.parameters.box.height+h[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x-h[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+h[0]);h=this.checkAspectRatio(h),this.el.move(this.parameters.box.x,this.parameters.box.y).size(this.parameters.box.width+h[0],this.parameters.box.height+h[1])}};break;case"lb":this.calc=function(c,u){var h=this.snapToGrid(c,u,1);if(this.parameters.box.width-h[0]>0&&this.parameters.box.height+h[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x+h[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-h[0]);h=this.checkAspectRatio(h,!0),this.el.move(this.parameters.box.x+h[0],this.parameters.box.y).size(this.parameters.box.width-h[0],this.parameters.box.height+h[1])}};break;case"t":this.calc=function(c,u){var h=this.snapToGrid(c,u,2);if(this.parameters.box.height-h[1]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y+h[1]).height(this.parameters.box.height-h[1])}};break;case"r":this.calc=function(c,u){var h=this.snapToGrid(c,u,0);if(this.parameters.box.width+h[0]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y).width(this.parameters.box.width+h[0])}};break;case"b":this.calc=function(c,u){var h=this.snapToGrid(c,u,0);if(this.parameters.box.height+h[1]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y).height(this.parameters.box.height+h[1])}};break;case"l":this.calc=function(c,u){var h=this.snapToGrid(c,u,1);if(this.parameters.box.width-h[0]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x+h[0],this.parameters.box.y).width(this.parameters.box.width-h[0])}};break;case"rot":this.calc=function(c,u){var h=c+this.parameters.p.x,g=u+this.parameters.p.y,m=Math.atan2(this.parameters.p.y-this.parameters.box.y-this.parameters.box.height/2,this.parameters.p.x-this.parameters.box.x-this.parameters.box.width/2),b=Math.atan2(g-this.parameters.box.y-this.parameters.box.height/2,h-this.parameters.box.x-this.parameters.box.width/2),x=this.parameters.rotation+180*(b-m)/Math.PI+this.options.snapToAngle/2;this.el.center(this.parameters.box.cx,this.parameters.box.cy).rotate(x-x%this.options.snapToAngle,this.parameters.box.cx,this.parameters.box.cy)};break;case"point":this.calc=function(c,u){var h=this.snapToGrid(c,u,this.parameters.pointCoords[0],this.parameters.pointCoords[1]),g=this.el.array().valueOf();g[this.parameters.i][0]=this.parameters.pointCoords[0]+h[0],g[this.parameters.i][1]=this.parameters.pointCoords[1]+h[1],this.el.plot(g)}}this.el.fire("resizestart",{dx:this.parameters.x,dy:this.parameters.y,event:t}),SVG.on(window,"touchmove.resize",function(c){n.update(c||window.event)}),SVG.on(window,"touchend.resize",function(){n.done()}),SVG.on(window,"mousemove.resize",function(c){n.update(c||window.event)}),SVG.on(window,"mouseup.resize",function(){n.done()})},D.prototype.update=function(t){if(t){var n=this._extractPosition(t),s=this.transformPoint(n.x,n.y),o=s.x-this.parameters.p.x,c=s.y-this.parameters.p.y;this.lastUpdateCall=[o,c],this.calc(o,c),this.el.fire("resizing",{dx:o,dy:c,event:t})}else this.lastUpdateCall&&this.calc(this.lastUpdateCall[0],this.lastUpdateCall[1])},D.prototype.done=function(){this.lastUpdateCall=null,SVG.off(window,"mousemove.resize"),SVG.off(window,"mouseup.resize"),SVG.off(window,"touchmove.resize"),SVG.off(window,"touchend.resize"),this.el.fire("resizedone")},D.prototype.snapToGrid=function(t,n,s,o){var c;return o!==void 0?c=[(s+t)%this.options.snapToGrid,(o+n)%this.options.snapToGrid]:(s=s??3,c=[(this.parameters.box.x+t+(1&s?0:this.parameters.box.width))%this.options.snapToGrid,(this.parameters.box.y+n+(2&s?0:this.parameters.box.height))%this.options.snapToGrid]),t<0&&(c[0]-=this.options.snapToGrid),n<0&&(c[1]-=this.options.snapToGrid),t-=Math.abs(c[0])h.maxX&&(t=h.maxX-c),h.minY!==void 0&&u+nh.maxY&&(n=h.maxY-u),[t,n]},D.prototype.checkAspectRatio=function(t,n){if(!this.options.saveAspectRatio)return t;var s=t.slice(),o=this.parameters.box.width/this.parameters.box.height,c=this.parameters.box.width+t[0],u=this.parameters.box.height-t[1],h=c/u;return ho&&(s[0]=this.parameters.box.width-u*o,n&&(s[0]=-s[0])),s},SVG.extend(SVG.Element,{resize:function(t){return(this.remember("_resizeHandler")||new D(this)).init(t||{}),this}}),SVG.Element.prototype.resize.defaults={snapToAngle:.1,snapToGrid:1,constraint:{},saveAspectRatio:!1}}).call(this)}(),window.Apex===void 0&&(window.Apex={});var Cd=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w}return p(D,[{key:"initModules",value:function(){this.ctx.publicMethods=["updateOptions","updateSeries","appendData","appendSeries","toggleSeries","showSeries","hideSeries","setLocale","resetSeries","zoomX","toggleDataPointSelection","dataURI","exportToCSV","addXaxisAnnotation","addYaxisAnnotation","addPointAnnotation","clearAnnotations","removeAnnotation","paper","destroy"],this.ctx.eventList=["click","mousedown","mousemove","mouseleave","touchstart","touchmove","touchleave","mouseup","touchend"],this.ctx.animations=new q(this.ctx),this.ctx.axes=new ke(this.ctx),this.ctx.core=new Ob(this.ctx.el,this.ctx),this.ctx.config=new Se({}),this.ctx.data=new de(this.ctx),this.ctx.grid=new ve(this.ctx),this.ctx.graphics=new H(this.ctx),this.ctx.coreUtils=new J(this.ctx),this.ctx.crosshairs=new Oe(this.ctx),this.ctx.events=new ce(this.ctx),this.ctx.exports=new _e(this.ctx),this.ctx.localization=new pe(this.ctx),this.ctx.options=new ne,this.ctx.responsive=new Pe(this.ctx),this.ctx.series=new ue(this.ctx),this.ctx.theme=new Be(this.ctx),this.ctx.formatters=new Ce(this.ctx),this.ctx.titleSubtitle=new Ve(this.ctx),this.ctx.legend=new ft(this.ctx),this.ctx.toolbar=new Tt(this.ctx),this.ctx.tooltip=new fs(this.ctx),this.ctx.dimensions=new rt(this.ctx),this.ctx.updateHelpers=new Fb(this.ctx),this.ctx.zoomPanSelection=new pn(this.ctx),this.ctx.w.globals.tooltip=new fs(this.ctx)}}]),D}(),Ad=function(){function D(t){d(this,D),this.ctx=t,this.w=t.w}return p(D,[{key:"clear",value:function(t){var n=t.isUpdating;this.ctx.zoomPanSelection&&this.ctx.zoomPanSelection.destroy(),this.ctx.toolbar&&this.ctx.toolbar.destroy(),this.ctx.animations=null,this.ctx.axes=null,this.ctx.annotations=null,this.ctx.core=null,this.ctx.data=null,this.ctx.grid=null,this.ctx.series=null,this.ctx.responsive=null,this.ctx.theme=null,this.ctx.formatters=null,this.ctx.titleSubtitle=null,this.ctx.legend=null,this.ctx.dimensions=null,this.ctx.options=null,this.ctx.crosshairs=null,this.ctx.zoomPanSelection=null,this.ctx.updateHelpers=null,this.ctx.toolbar=null,this.ctx.localization=null,this.ctx.w.globals.tooltip=null,this.clearDomElements({isUpdating:n})}},{key:"killSVG",value:function(t){t.each(function(n,s){this.removeClass("*"),this.off(),this.stop()},!0),t.ungroup(),t.clear()}},{key:"clearDomElements",value:function(t){var n=this,s=t.isUpdating,o=this.w.globals.dom.Paper.node;o.parentNode&&o.parentNode.parentNode&&!s&&(o.parentNode.parentNode.style.minHeight="unset");var c=this.w.globals.dom.baseEl;c&&this.ctx.eventList.forEach(function(h){c.removeEventListener(h,n.ctx.events.documentEvent)});var u=this.w.globals.dom;if(this.ctx.el!==null)for(;this.ctx.el.firstChild;)this.ctx.el.removeChild(this.ctx.el.firstChild);this.killSVG(u.Paper),u.Paper.remove(),u.elWrap=null,u.elGraphical=null,u.elLegendWrap=null,u.elLegendForeign=null,u.baseEl=null,u.elGridRect=null,u.elGridRectMask=null,u.elGridRectMarkerMask=null,u.elForecastMask=null,u.elNonForecastMask=null,u.elDefs=null}}]),D}(),ol=new WeakMap,Bb=function(){function D(t,n){d(this,D),this.opts=n,this.ctx=this,this.w=new De(n).init(),this.el=t,this.w.globals.cuid=L.randomId(),this.w.globals.chartID=this.w.config.chart.id?L.escapeString(this.w.config.chart.id):this.w.globals.cuid,new Cd(this).initModules(),this.create=L.bind(this.create,this),this.windowResizeHandler=this._windowResizeHandler.bind(this),this.parentResizeHandler=this._parentResizeCallback.bind(this)}return p(D,[{key:"render",value:function(){var t=this;return new Promise(function(n,s){if(t.el!==null){Apex._chartInstances===void 0&&(Apex._chartInstances=[]),t.w.config.chart.id&&Apex._chartInstances.push({id:t.w.globals.chartID,group:t.w.config.chart.group,chart:t}),t.setLocale(t.w.config.chart.defaultLocale);var o=t.w.config.chart.events.beforeMount;if(typeof o=="function"&&o(t,t.w),t.events.fireEvent("beforeMount",[t,t.w]),window.addEventListener("resize",t.windowResizeHandler),function(b,x){var w=!1;if(b.nodeType!==Node.DOCUMENT_FRAGMENT_NODE){var P=b.getBoundingClientRect();b.style.display!=="none"&&P.width!==0||(w=!0)}var T=new ResizeObserver(function(V){w&&x.call(b,V),w=!0});b.nodeType===Node.DOCUMENT_FRAGMENT_NODE?Array.from(b.children).forEach(function(V){return T.observe(V)}):T.observe(b),ol.set(x,T)}(t.el.parentNode,t.parentResizeHandler),!t.css){var c=t.el.getRootNode&&t.el.getRootNode(),u=L.is("ShadowRoot",c),h=t.el.ownerDocument,g=h.getElementById("apexcharts-css");!u&&g||(t.css=document.createElement("style"),t.css.id="apexcharts-css",t.css.textContent=`@keyframes opaque { + 0% { + opacity: 0 + } + + to { + opacity: 1 + } +} + +@keyframes resizeanim { + 0%,to { + opacity: 0 + } +} + +.apexcharts-canvas { + position: relative; + user-select: none +} + +.apexcharts-canvas ::-webkit-scrollbar { + -webkit-appearance: none; + width: 6px +} + +.apexcharts-canvas ::-webkit-scrollbar-thumb { + border-radius: 4px; + background-color: rgba(0,0,0,.5); + box-shadow: 0 0 1px rgba(255,255,255,.5); + -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5) +} + +.apexcharts-inner { + position: relative +} + +.apexcharts-text tspan { + font-family: inherit +} + +.legend-mouseover-inactive { + transition: .15s ease all; + opacity: .2 +} + +.apexcharts-legend-text { + padding-left: 15px; + margin-left: -15px; +} + +.apexcharts-series-collapsed { + opacity: 0 +} + +.apexcharts-tooltip { + border-radius: 5px; + box-shadow: 2px 2px 6px -4px #999; + cursor: default; + font-size: 14px; + left: 62px; + opacity: 0; + pointer-events: none; + position: absolute; + top: 20px; + display: flex; + flex-direction: column; + overflow: hidden; + white-space: nowrap; + z-index: 12; + transition: .15s ease all +} + +.apexcharts-tooltip.apexcharts-active { + opacity: 1; + transition: .15s ease all +} + +.apexcharts-tooltip.apexcharts-theme-light { + border: 1px solid #e3e3e3; + background: rgba(255,255,255,.96) +} + +.apexcharts-tooltip.apexcharts-theme-dark { + color: #fff; + background: rgba(30,30,30,.8) +} + +.apexcharts-tooltip * { + font-family: inherit +} + +.apexcharts-tooltip-title { + padding: 6px; + font-size: 15px; + margin-bottom: 4px +} + +.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title { + background: #eceff1; + border-bottom: 1px solid #ddd +} + +.apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-title { + background: rgba(0,0,0,.7); + border-bottom: 1px solid #333 +} + +.apexcharts-tooltip-text-goals-value,.apexcharts-tooltip-text-y-value,.apexcharts-tooltip-text-z-value { + display: inline-block; + margin-left: 5px; + font-weight: 600 +} + +.apexcharts-tooltip-text-goals-label:empty,.apexcharts-tooltip-text-goals-value:empty,.apexcharts-tooltip-text-y-label:empty,.apexcharts-tooltip-text-y-value:empty,.apexcharts-tooltip-text-z-value:empty,.apexcharts-tooltip-title:empty { + display: none +} + +.apexcharts-tooltip-text-goals-label,.apexcharts-tooltip-text-goals-value { + padding: 6px 0 5px +} + +.apexcharts-tooltip-goals-group,.apexcharts-tooltip-text-goals-label,.apexcharts-tooltip-text-goals-value { + display: flex +} + +.apexcharts-tooltip-text-goals-label:not(:empty),.apexcharts-tooltip-text-goals-value:not(:empty) { + margin-top: -6px +} + +.apexcharts-tooltip-marker { + width: 12px; + height: 12px; + position: relative; + top: 0; + margin-right: 10px; + border-radius: 50% +} + +.apexcharts-tooltip-series-group { + padding: 0 10px; + display: none; + text-align: left; + justify-content: left; + align-items: center +} + +.apexcharts-tooltip-series-group.apexcharts-active .apexcharts-tooltip-marker { + opacity: 1 +} + +.apexcharts-tooltip-series-group.apexcharts-active,.apexcharts-tooltip-series-group:last-child { + padding-bottom: 4px +} + +.apexcharts-tooltip-series-group-hidden { + opacity: 0; + height: 0; + line-height: 0; + padding: 0!important +} + +.apexcharts-tooltip-y-group { + padding: 6px 0 5px +} + +.apexcharts-custom-tooltip,.apexcharts-tooltip-box { + padding: 4px 8px +} + +.apexcharts-tooltip-boxPlot { + display: flex; + flex-direction: column-reverse +} + +.apexcharts-tooltip-box>div { + margin: 4px 0 +} + +.apexcharts-tooltip-box span.value { + font-weight: 700 +} + +.apexcharts-tooltip-rangebar { + padding: 5px 8px +} + +.apexcharts-tooltip-rangebar .category { + font-weight: 600; + color: #777 +} + +.apexcharts-tooltip-rangebar .series-name { + font-weight: 700; + display: block; + margin-bottom: 5px +} + +.apexcharts-xaxistooltip,.apexcharts-yaxistooltip { + opacity: 0; + pointer-events: none; + color: #373d3f; + font-size: 13px; + text-align: center; + border-radius: 2px; + position: absolute; + z-index: 10; + background: #eceff1; + border: 1px solid #90a4ae +} + +.apexcharts-xaxistooltip { + padding: 9px 10px; + transition: .15s ease all +} + +.apexcharts-xaxistooltip.apexcharts-theme-dark { + background: rgba(0,0,0,.7); + border: 1px solid rgba(0,0,0,.5); + color: #fff +} + +.apexcharts-xaxistooltip:after,.apexcharts-xaxistooltip:before { + left: 50%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none +} + +.apexcharts-xaxistooltip:after { + border-color: transparent; + border-width: 6px; + margin-left: -6px +} + +.apexcharts-xaxistooltip:before { + border-color: transparent; + border-width: 7px; + margin-left: -7px +} + +.apexcharts-xaxistooltip-bottom:after,.apexcharts-xaxistooltip-bottom:before { + bottom: 100% +} + +.apexcharts-xaxistooltip-top:after,.apexcharts-xaxistooltip-top:before { + top: 100% +} + +.apexcharts-xaxistooltip-bottom:after { + border-bottom-color: #eceff1 +} + +.apexcharts-xaxistooltip-bottom:before { + border-bottom-color: #90a4ae +} + +.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:after,.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:before { + border-bottom-color: rgba(0,0,0,.5) +} + +.apexcharts-xaxistooltip-top:after { + border-top-color: #eceff1 +} + +.apexcharts-xaxistooltip-top:before { + border-top-color: #90a4ae +} + +.apexcharts-xaxistooltip-top.apexcharts-theme-dark:after,.apexcharts-xaxistooltip-top.apexcharts-theme-dark:before { + border-top-color: rgba(0,0,0,.5) +} + +.apexcharts-xaxistooltip.apexcharts-active { + opacity: 1; + transition: .15s ease all +} + +.apexcharts-yaxistooltip { + padding: 4px 10px +} + +.apexcharts-yaxistooltip.apexcharts-theme-dark { + background: rgba(0,0,0,.7); + border: 1px solid rgba(0,0,0,.5); + color: #fff +} + +.apexcharts-yaxistooltip:after,.apexcharts-yaxistooltip:before { + top: 50%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none +} + +.apexcharts-yaxistooltip:after { + border-color: transparent; + border-width: 6px; + margin-top: -6px +} + +.apexcharts-yaxistooltip:before { + border-color: transparent; + border-width: 7px; + margin-top: -7px +} + +.apexcharts-yaxistooltip-left:after,.apexcharts-yaxistooltip-left:before { + left: 100% +} + +.apexcharts-yaxistooltip-right:after,.apexcharts-yaxistooltip-right:before { + right: 100% +} + +.apexcharts-yaxistooltip-left:after { + border-left-color: #eceff1 +} + +.apexcharts-yaxistooltip-left:before { + border-left-color: #90a4ae +} + +.apexcharts-yaxistooltip-left.apexcharts-theme-dark:after,.apexcharts-yaxistooltip-left.apexcharts-theme-dark:before { + border-left-color: rgba(0,0,0,.5) +} + +.apexcharts-yaxistooltip-right:after { + border-right-color: #eceff1 +} + +.apexcharts-yaxistooltip-right:before { + border-right-color: #90a4ae +} + +.apexcharts-yaxistooltip-right.apexcharts-theme-dark:after,.apexcharts-yaxistooltip-right.apexcharts-theme-dark:before { + border-right-color: rgba(0,0,0,.5) +} + +.apexcharts-yaxistooltip.apexcharts-active { + opacity: 1 +} + +.apexcharts-yaxistooltip-hidden { + display: none +} + +.apexcharts-xcrosshairs,.apexcharts-ycrosshairs { + pointer-events: none; + opacity: 0; + transition: .15s ease all +} + +.apexcharts-xcrosshairs.apexcharts-active,.apexcharts-ycrosshairs.apexcharts-active { + opacity: 1; + transition: .15s ease all +} + +.apexcharts-ycrosshairs-hidden { + opacity: 0 +} + +.apexcharts-selection-rect { + cursor: move +} + +.svg_select_boundingRect,.svg_select_points_rot { + pointer-events: none; + opacity: 0; + visibility: hidden +} + +.apexcharts-selection-rect+g .svg_select_boundingRect,.apexcharts-selection-rect+g .svg_select_points_rot { + opacity: 0; + visibility: hidden +} + +.apexcharts-selection-rect+g .svg_select_points_l,.apexcharts-selection-rect+g .svg_select_points_r { + cursor: ew-resize; + opacity: 1; + visibility: visible +} + +.svg_select_points { + fill: #efefef; + stroke: #333; + rx: 2 +} + +.apexcharts-svg.apexcharts-zoomable.hovering-zoom { + cursor: crosshair +} + +.apexcharts-svg.apexcharts-zoomable.hovering-pan { + cursor: move +} + +.apexcharts-menu-icon,.apexcharts-pan-icon,.apexcharts-reset-icon,.apexcharts-selection-icon,.apexcharts-toolbar-custom-icon,.apexcharts-zoom-icon,.apexcharts-zoomin-icon,.apexcharts-zoomout-icon { + cursor: pointer; + width: 20px; + height: 20px; + line-height: 24px; + color: #6e8192; + text-align: center +} + +.apexcharts-menu-icon svg,.apexcharts-reset-icon svg,.apexcharts-zoom-icon svg,.apexcharts-zoomin-icon svg,.apexcharts-zoomout-icon svg { + fill: #6e8192 +} + +.apexcharts-selection-icon svg { + fill: #444; + transform: scale(.76) +} + +.apexcharts-theme-dark .apexcharts-menu-icon svg,.apexcharts-theme-dark .apexcharts-pan-icon svg,.apexcharts-theme-dark .apexcharts-reset-icon svg,.apexcharts-theme-dark .apexcharts-selection-icon svg,.apexcharts-theme-dark .apexcharts-toolbar-custom-icon svg,.apexcharts-theme-dark .apexcharts-zoom-icon svg,.apexcharts-theme-dark .apexcharts-zoomin-icon svg,.apexcharts-theme-dark .apexcharts-zoomout-icon svg { + fill: #f3f4f5 +} + +.apexcharts-canvas .apexcharts-reset-zoom-icon.apexcharts-selected svg,.apexcharts-canvas .apexcharts-selection-icon.apexcharts-selected svg,.apexcharts-canvas .apexcharts-zoom-icon.apexcharts-selected svg { + fill: #008ffb +} + +.apexcharts-theme-light .apexcharts-menu-icon:hover svg,.apexcharts-theme-light .apexcharts-reset-icon:hover svg,.apexcharts-theme-light .apexcharts-selection-icon:not(.apexcharts-selected):hover svg,.apexcharts-theme-light .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg,.apexcharts-theme-light .apexcharts-zoomin-icon:hover svg,.apexcharts-theme-light .apexcharts-zoomout-icon:hover svg { + fill: #333 +} + +.apexcharts-menu-icon,.apexcharts-selection-icon { + position: relative +} + +.apexcharts-reset-icon { + margin-left: 5px +} + +.apexcharts-menu-icon,.apexcharts-reset-icon,.apexcharts-zoom-icon { + transform: scale(.85) +} + +.apexcharts-zoomin-icon,.apexcharts-zoomout-icon { + transform: scale(.7) +} + +.apexcharts-zoomout-icon { + margin-right: 3px +} + +.apexcharts-pan-icon { + transform: scale(.62); + position: relative; + left: 1px; + top: 0 +} + +.apexcharts-pan-icon svg { + fill: #fff; + stroke: #6e8192; + stroke-width: 2 +} + +.apexcharts-pan-icon.apexcharts-selected svg { + stroke: #008ffb +} + +.apexcharts-pan-icon:not(.apexcharts-selected):hover svg { + stroke: #333 +} + +.apexcharts-toolbar { + position: absolute; + z-index: 11; + max-width: 176px; + text-align: right; + border-radius: 3px; + padding: 0 6px 2px; + display: flex; + justify-content: space-between; + align-items: center +} + +.apexcharts-menu { + background: #fff; + position: absolute; + top: 100%; + border: 1px solid #ddd; + border-radius: 3px; + padding: 3px; + right: 10px; + opacity: 0; + min-width: 110px; + transition: .15s ease all; + pointer-events: none +} + +.apexcharts-menu.apexcharts-menu-open { + opacity: 1; + pointer-events: all; + transition: .15s ease all +} + +.apexcharts-menu-item { + padding: 6px 7px; + font-size: 12px; + cursor: pointer +} + +.apexcharts-theme-light .apexcharts-menu-item:hover { + background: #eee +} + +.apexcharts-theme-dark .apexcharts-menu { + background: rgba(0,0,0,.7); + color: #fff +} + +@media screen and (min-width:768px) { + .apexcharts-canvas:hover .apexcharts-toolbar { + opacity: 1 + } +} + +.apexcharts-canvas .apexcharts-element-hidden,.apexcharts-datalabel.apexcharts-element-hidden,.apexcharts-hide .apexcharts-series-points { + opacity: 0 +} + +.apexcharts-hidden-element-shown { + opacity: 1; + transition: 0.25s ease all; +} +.apexcharts-datalabel,.apexcharts-datalabel-label,.apexcharts-datalabel-value,.apexcharts-datalabels,.apexcharts-pie-label { + cursor: default; + pointer-events: none +} + +.apexcharts-pie-label-delay { + opacity: 0; + animation-name: opaque; + animation-duration: .3s; + animation-fill-mode: forwards; + animation-timing-function: ease +} + +.apexcharts-annotation-rect,.apexcharts-area-series .apexcharts-area,.apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,.apexcharts-gridline,.apexcharts-line,.apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,.apexcharts-point-annotation-label,.apexcharts-radar-series path,.apexcharts-radar-series polygon,.apexcharts-toolbar svg,.apexcharts-tooltip .apexcharts-marker,.apexcharts-xaxis-annotation-label,.apexcharts-yaxis-annotation-label,.apexcharts-zoom-rect { + pointer-events: none +} + +.apexcharts-marker { + transition: .15s ease all +} + +.resize-triggers { + animation: 1ms resizeanim; + visibility: hidden; + opacity: 0; + height: 100%; + width: 100%; + overflow: hidden +} + +.contract-trigger:before,.resize-triggers,.resize-triggers>div { + content: " "; + display: block; + position: absolute; + top: 0; + left: 0 +} + +.resize-triggers>div { + height: 100%; + width: 100%; + background: #eee; + overflow: auto +} + +.contract-trigger:before { + overflow: hidden; + width: 200%; + height: 200% +} + +.apexcharts-bar-goals-markers{ + pointer-events: none +} + +.apexcharts-bar-shadows{ + pointer-events: none +} + +.apexcharts-rangebar-goals-markers{ + pointer-events: none +}`,u?c.prepend(t.css):h.head.appendChild(t.css))}var m=t.create(t.w.config.series,{});if(!m)return n(t);t.mount(m).then(function(){typeof t.w.config.chart.events.mounted=="function"&&t.w.config.chart.events.mounted(t,t.w),t.events.fireEvent("mounted",[t,t.w]),n(m)}).catch(function(b){s(b)})}else s(new Error("Element not found"))})}},{key:"create",value:function(t,n){var s=this.w;new Cd(this).initModules();var o=this.w.globals;if(o.noData=!1,o.animationEnded=!1,this.responsive.checkResponsiveConfig(n),s.config.xaxis.convertedCatToNumeric&&new he(s.config).convertCatToNumericXaxis(s.config,this.ctx),this.el===null||(this.core.setupElements(),s.config.chart.type==="treemap"&&(s.config.grid.show=!1,s.config.yaxis[0].show=!1),o.svgWidth===0))return o.animationEnded=!0,null;var c=J.checkComboSeries(t);o.comboCharts=c.comboCharts,o.comboBarCount=c.comboBarCount;var u=t.every(function(b){return b.data&&b.data.length===0});(t.length===0||u)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(t),this.theme.init(),new Ze(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),o.noData&&o.collapsedSeries.length!==o.series.length&&!s.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),o.axisCharts&&(this.core.coreCalculations(),s.config.xaxis.type!=="category"&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=s.globals.minX,this.ctx.toolbar.maxX=s.globals.maxX),this.formatters.heatmapLabelFormatters(),new J(this).getLargestMarkerSize(),this.dimensions.plotCoords();var h=this.core.xySettings();this.grid.createGridMask();var g=this.core.plotChartType(t,h),m=new ze(this);return m.bringForward(),s.config.dataLabels.background.enabled&&m.dataLabelsBackground(),this.core.shiftGraphPosition(),{elGraph:g,xyRatios:h,dimensions:{plot:{left:s.globals.translateX,top:s.globals.translateY,width:s.globals.gridWidth,height:s.globals.gridHeight}}}}},{key:"mount",value:function(){var t=this,n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,s=this,o=s.w;return new Promise(function(c,u){if(s.el===null)return u(new Error("Not enough data to display or target element not found"));(n===null||o.globals.allSeriesCollapsed)&&s.series.handleNoData(),s.grid=new ve(s);var h,g,m=s.grid.drawGrid();if(s.annotations=new oe(s),s.annotations.drawImageAnnos(),s.annotations.drawTextAnnos(),o.config.grid.position==="back"&&(m&&o.globals.dom.elGraphical.add(m.el),m!=null&&(h=m.elGridBorders)!==null&&h!==void 0&&h.node&&o.globals.dom.elGraphical.add(m.elGridBorders)),Array.isArray(n.elGraph))for(var b=0;b0&&o.globals.memory.methodsToExec.forEach(function(T){T.method(T.params,!1,T.context)}),o.globals.axisCharts||o.globals.noData||s.core.resizeNonAxisCharts(),c(s)})}},{key:"destroy",value:function(){var t,n;window.removeEventListener("resize",this.windowResizeHandler),this.el.parentNode,t=this.parentResizeHandler,(n=ol.get(t))&&(n.disconnect(),ol.delete(t));var s=this.w.config.chart.id;s&&Apex._chartInstances.forEach(function(o,c){o.id===L.escapeString(s)&&Apex._chartInstances.splice(c,1)}),new Ad(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(t){var n=this,s=arguments.length>1&&arguments[1]!==void 0&&arguments[1],o=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],u=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],h=this.w;return h.globals.selection=void 0,t.series&&(this.series.resetSeries(!1,!0,!1),t.series.length&&t.series[0].data&&(t.series=t.series.map(function(g,m){return n.updateHelpers._extendSeries(g,m)})),this.updateHelpers.revertDefaultAxisMinMax()),t.xaxis&&(t=this.updateHelpers.forceXAxisUpdate(t)),t.yaxis&&(t=this.updateHelpers.forceYAxisUpdate(t)),h.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),t.theme&&(t=this.theme.updateThemeOptions(t)),this.updateHelpers._updateOptions(t,s,o,c,u)}},{key:"updateSeries",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],n=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],s=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(t,n,s)}},{key:"appendSeries",value:function(t){var n=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],s=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],o=this.w.config.series.slice();return o.push(t),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(o,n,s)}},{key:"appendData",value:function(t){var n=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],s=this;s.w.globals.dataChanged=!0,s.series.getPreviousPaths();for(var o=s.w.config.series.slice(),c=0;c0&&arguments[0]!==void 0)||arguments[0],n=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];this.series.resetSeries(t,n)}},{key:"addEventListener",value:function(t,n){this.events.addEventListener(t,n)}},{key:"removeEventListener",value:function(t,n){this.events.removeEventListener(t,n)}},{key:"addXaxisAnnotation",value:function(t){var n=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,o=this;s&&(o=s),o.annotations.addXaxisAnnotationExternal(t,n,o)}},{key:"addYaxisAnnotation",value:function(t){var n=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,o=this;s&&(o=s),o.annotations.addYaxisAnnotationExternal(t,n,o)}},{key:"addPointAnnotation",value:function(t){var n=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,o=this;s&&(o=s),o.annotations.addPointAnnotationExternal(t,n,o)}},{key:"clearAnnotations",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0,n=this;t&&(n=t),n.annotations.clearAnnotations(n)}},{key:"removeAnnotation",value:function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:void 0,s=this;n&&(s=n),s.annotations.removeAnnotation(s,t)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(t,n){return this.coreUtils.getSeriesTotalsXRange(t,n)}},{key:"getHighestValueInSeries",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new te(this.ctx).getMinYMaxY(t).highestY}},{key:"getLowestValueInSeries",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new te(this.ctx).getMinYMaxY(t).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(t,n){return this.updateHelpers.toggleDataPointSelection(t,n)}},{key:"zoomX",value:function(t,n){this.ctx.toolbar.zoomUpdateOptions(t,n)}},{key:"setLocale",value:function(t){this.localization.setCurrentLocaleValues(t)}},{key:"dataURI",value:function(t){return new _e(this.ctx).dataURI(t)}},{key:"exportToCSV",value:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return new _e(this.ctx).exportToCSV(t)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var t=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){t.w.globals.resized=!0,t.w.globals.dataChanged=!1,t.ctx.update()},150)}},{key:"_windowResizeHandler",value:function(){var t=this.w.config.chart.redrawOnWindowResize;typeof t=="function"&&(t=t()),t&&this._windowResize()}}],[{key:"getChartByID",value:function(t){var n=L.escapeString(t),s=Apex._chartInstances.filter(function(o){return o.id===n})[0];return s&&s.chart}},{key:"initOnLoad",value:function(){for(var t=document.querySelectorAll("[data-apexcharts]"),n=0;n2?c-2:0),h=2;hze&&typeof ze=="object"&&!Array.isArray(ze)&&ze!=null,q=(ze,ue)=>{typeof Object.assign!="function"&&function(){Object.assign=function(Le){if(Le==null)throw new TypeError("Cannot convert undefined or null to object");let _e=Object(Le);for(let be=1;be{L(ue[Le])?Le in ze?de[Le]=q(ze[Le],ue[Le]):Object.assign(de,{[Le]:ue[Le]}):Object.assign(de,{[Le]:ue[Le]})}),de},Y=async()=>{if(await Object(f.nextTick)(),B.value)return;const ze={chart:{type:M.type||M.options.chart.type||"line",height:M.height,width:M.width,events:{}},series:M.series};k.forEach(de=>{let Le=(..._e)=>F(de,..._e);ze.chart.events[de]=Le});const ue=q(M.options,ze);return B.value=new y.a($.value,ue),B.value.render()},H=()=>(J(),Y()),J=()=>{B.value.destroy()},ee=(ze,ue)=>B.value.updateSeries(ze,ue),W=(ze,ue,de,Le)=>B.value.updateOptions(ze,ue,de,Le),j=ze=>B.value.toggleSeries(ze),Q=ze=>{B.value.showSeries(ze)},ie=ze=>{B.value.hideSeries(ze)},ne=(ze,ue)=>B.value.appendSeries(ze,ue),oe=()=>{B.value.resetSeries()},le=(ze,ue)=>{B.value.toggleDataPointSelection(ze,ue)},Ce=ze=>B.value.appendData(ze),ye=(ze,ue)=>B.value.zoomX(ze,ue),fe=ze=>B.value.dataURI(ze),he=ze=>B.value.setLocale(ze),Se=(ze,ue)=>{B.value.addXaxisAnnotation(ze,ue)},Ee=(ze,ue)=>{B.value.addYaxisAnnotation(ze,ue)},De=(ze,ue)=>{B.value.addPointAnnotation(ze,ue)},Fe=(ze,ue)=>{B.value.removeAnnotation(ze,ue)},Ze=()=>{B.value.clearAnnotations()};Object(f.onBeforeMount)(()=>{window.ApexCharts=y.a}),Object(f.onMounted)(()=>{$.value=Object(f.getCurrentInstance)().proxy.$el,Y()}),Object(f.onBeforeUnmount)(()=>{B.value&&J()});const Je=Object(f.toRefs)(M);return Object(f.watch)(Je.options,()=>{!B.value&&M.options?Y():B.value.updateOptions(M.options)}),Object(f.watch)(Je.series,()=>{!B.value&&M.series?Y():B.value.updateSeries(M.series)},{deep:!0}),Object(f.watch)(Je.type,()=>{H()}),Object(f.watch)(Je.width,()=>{H()}),Object(f.watch)(Je.height,()=>{H()}),{chart:B,init:Y,refresh:H,destroy:J,updateOptions:W,updateSeries:ee,toggleSeries:j,showSeries:Q,hideSeries:ie,resetSeries:oe,zoomX:ye,toggleDataPointSelection:le,appendData:Ce,appendSeries:ne,addXaxisAnnotation:Se,addYaxisAnnotation:Ee,addPointAnnotation:De,removeAnnotation:Fe,clearAnnotations:Ze,setLocale:he,dataURI:fe}},render(){return Object(f.h)("div",{class:"vue-apexcharts"})}});const E=M=>{M.component(A.name,A)};A.install=E;var _=A;i.default=_}})})(Sb);var lL=Sb.exports;const cL=iL(lL);class uL{constructor(a){this.standards={strict:"strict",loose:"loose",html5:"html5"},this.previewBody=null,this.close=null,this.previewBodyUtilPrintBtn=null,this.selectArray=[],this.counter=0,this.settings={standard:this.standards.html5},Object.assign(this.settings,a),this.init()}init(){this.counter++,this.settings.id=`printArea_${this.counter}`;let a="";this.settings.url&&!this.settings.asyncUrl&&(a=this.settings.url);let i=this;if(this.settings.asyncUrl)return void i.settings.asyncUrl(function(l){let d=i.getPrintWindow(l);i.settings.preview?i.previewIfrmaeLoad():i.print(d)},i.settings.vue);let r=this.getPrintWindow(a);this.settings.url||this.write(r.doc),this.settings.preview?this.previewIfrmaeLoad():this.print(r)}addEvent(a,i,r){a.addEventListener?a.addEventListener(i,r,!1):a.attachEvent?a.attachEvent("on"+i,r):a["on"+i]=r}previewIfrmaeLoad(){let a=document.getElementById("vue-pirnt-nb-previewBox");if(a){let i=this,r=a.querySelector("iframe");this.settings.previewBeforeOpenCallback(),this.addEvent(r,"load",function(){i.previewBoxShow(),i.removeCanvasImg(),i.settings.previewOpenCallback()}),this.addEvent(a.querySelector(".previewBodyUtilPrintBtn"),"click",function(){i.settings.beforeOpenCallback(),i.settings.openCallback(),r.contentWindow.print(),i.settings.closeCallback()})}}removeCanvasImg(){let a=this;try{if(a.elsdom){let i=a.elsdom.querySelectorAll(".canvasImg");for(let r=0;r${this.getHead()}${this.getBody()}`),a.close()}docType(){return this.settings.standard===this.standards.html5?"":``}getHead(){let a="",i="",r="";this.settings.extraHead&&this.settings.extraHead.replace(/([^,]+)/g,d=>{a+=d}),[].forEach.call(document.querySelectorAll("link"),function(d){d.href.indexOf(".css")>=0&&(i+=``)});let l=document.styleSheets;if(l&&l.length>0)for(let d=0;d{i+=``}),`${this.settings.popTitle}${a}${i}`}getBody(){let a=this.settings.ids;return a=a.replace(new RegExp("#","g"),""),this.elsdom=this.beforeHanler(document.getElementById(a)),""+this.getFormData(this.elsdom).outerHTML+""}beforeHanler(a){let i=a.querySelectorAll("canvas");for(let r=0;r{if(typeof a.value=="string")l=a.value;else{if(typeof a.value!="object"||!a.value.id)return void window.print();{l=a.value.id;let k=l.replace(new RegExp("#","g"),"");document.getElementById(k)||(console.log("id in Error"),l="")}}y()},(d=e).addEventListener?d.addEventListener(f,p,!1):d.attachEvent?d.attachEvent("on"+f,p):d["on"+f]=p;const y=()=>{new uL({ids:l,vue:r,url:a.value.url,standard:"",extraHead:a.value.extraHead,extraCss:a.value.extraCss,zIndex:a.value.zIndex||20002,previewTitle:a.value.previewTitle||"打印预览",previewPrintBtnLabel:a.value.previewPrintBtnLabel||"打印",popTitle:a.value.popTitle,preview:a.value.preview||!1,asyncUrl:a.value.asyncUrl,previewBeforeOpenCallback(){a.value.previewBeforeOpenCallback&&a.value.previewBeforeOpenCallback(r)},previewOpenCallback(){a.value.previewOpenCallback&&a.value.previewOpenCallback(r)},openCallback(){a.value.openCallback&&a.value.openCallback(r)},closeCallback(){a.value.closeCallback&&a.value.closeCallback(r)},beforeOpenCallback(){a.value.beforeOpenCallback&&a.value.beforeOpenCallback(r)}})}},install:function(e){e.directive("print",kb)}};const yr=wv(V1);yr.use(no);yr.use(kw());yr.use(kb);yr.use(cL);yr.use(aL).mount("#app");export{X as $,wp as A,Re as B,gw as C,cn as D,_T as E,Ke as F,eE as G,Xp as H,Wp as I,xT as J,LT as K,kT as L,pi as M,yt as N,Np as O,sT as P,Et as Q,Ln as R,ZC as S,tk as T,GT as U,yp as V,rr as W,_C as X,$T as Y,Dv as Z,OP as _,yi as a,Yp as a0,Py as a1,wI as a2,fT as a3,kI as a4,aT as a5,II as a6,bb as a7,Ie as a8,jn as a9,Gt as aa,gt as ab,zt as ac,He as ad,Pt as ae,ts as af,vn as ag,Cx as ah,wA as ai,Iw as aj,P1 as ak,sL as al,dL as am,iL as an,To as b,R as c,Ay as d,pr as e,wt as f,u0 as g,xp as h,bp as i,va as j,ky as k,r0 as l,Ye as m,Cy as n,ur as o,Mc as p,xi as q,Pg as r,Xe as s,Gx as t,Cu as u,Ko as v,du as w,_t as x,nI as y,ek as z}; diff --git a/dashboard/dist/assets/md5-0b0a2337.js b/dashboard/dist/assets/md5-0b0a2337.js deleted file mode 100644 index 65215f99..00000000 --- a/dashboard/dist/assets/md5-0b0a2337.js +++ /dev/null @@ -1,9 +0,0 @@ -import{as as K,at as Y,au as V}from"./index-25639696.js";var C={exports:{}};const $={},k=Object.freeze(Object.defineProperty({__proto__:null,default:$},Symbol.toStringTag,{value:"Module"})),z=K(k);/** - * [js-md5]{@link https://github.com/emn178/js-md5} - * - * @namespace md5 - * @version 0.8.3 - * @author Chen, Yi-Cyuan [emn178@gmail.com] - * @copyright Chen, Yi-Cyuan 2014-2023 - * @license MIT - */(function(E){(function(){var b="input is invalid type",J="finalize already called",w=typeof window=="object",c=w?window:{};c.JS_MD5_NO_WINDOW&&(w=!1);var j=!w&&typeof self=="object",O=!c.JS_MD5_NO_NODE_JS&&typeof process=="object"&&process.versions&&process.versions.node;O?c=Y:j&&(c=self);var I=!c.JS_MD5_NO_COMMON_JS&&!0&&E.exports,p=!c.JS_MD5_NO_ARRAY_BUFFER&&typeof ArrayBuffer<"u",n="0123456789abcdef".split(""),H=[128,32768,8388608,-2147483648],l=[0,8,16,24],y=["hex","array","digest","buffer","arrayBuffer","base64"],F="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""),x=[],B;if(p){var S=new ArrayBuffer(68);B=new Uint8Array(S),x=new Uint32Array(S)}var d=Array.isArray;(c.JS_MD5_NO_NODE_JS||!d)&&(d=function(t){return Object.prototype.toString.call(t)==="[object Array]"});var _=ArrayBuffer.isView;p&&(c.JS_MD5_NO_ARRAY_BUFFER_IS_VIEW||!_)&&(_=function(t){return typeof t=="object"&&t.buffer&&t.buffer.constructor===ArrayBuffer});var M=function(t){var e=typeof t;if(e==="string")return[t,!0];if(e!=="object"||t===null)throw new Error(b);if(p&&t.constructor===ArrayBuffer)return[new Uint8Array(t),!1];if(!d(t)&&!_(t))throw new Error(b);return[t,!1]},R=function(t){return function(e){return new o(!0).update(e)[t]()}},P=function(){var t=R("hex");O&&(t=W(t)),t.create=function(){return new o},t.update=function(r){return t.create().update(r)};for(var e=0;e>>6,u[h++]=128|r&63):r<55296||r>=57344?(u[h++]=224|r>>>12,u[h++]=128|r>>>6&63,u[h++]=128|r&63):(r=65536+((r&1023)<<10|t.charCodeAt(++a)&1023),u[h++]=240|r>>>18,u[h++]=128|r>>>12&63,u[h++]=128|r>>>6&63,u[h++]=128|r&63);else for(h=this.start;a>>2]|=r<>>2]|=(192|r>>>6)<>>2]|=(128|r&63)<=57344?(s[h>>>2]|=(224|r>>>12)<>>2]|=(128|r>>>6&63)<>>2]|=(128|r&63)<>>2]|=(240|r>>>18)<>>2]|=(128|r>>>12&63)<>>2]|=(128|r>>>6&63)<>>2]|=(128|r&63)<>>2]|=t[a]<=64?(this.start=h-64,this.hash(),this.hashed=!0):this.start=h}return this.bytes>4294967295&&(this.hBytes+=this.bytes/4294967296<<0,this.bytes=this.bytes%4294967296),this},o.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var t=this.blocks,e=this.lastByteIndex;t[e>>>2]|=H[e&3],e>=56&&(this.hashed||this.hash(),t[0]=t[16],t[16]=t[1]=t[2]=t[3]=t[4]=t[5]=t[6]=t[7]=t[8]=t[9]=t[10]=t[11]=t[12]=t[13]=t[14]=t[15]=0),t[14]=this.bytes<<3,t[15]=this.hBytes<<3|this.bytes>>>29,this.hash()}},o.prototype.hash=function(){var t,e,i,r,a,h,f=this.blocks;this.first?(t=f[0]-680876937,t=(t<<7|t>>>25)-271733879<<0,r=(-1732584194^t&2004318071)+f[1]-117830708,r=(r<<12|r>>>20)+t<<0,i=(-271733879^r&(t^-271733879))+f[2]-1126478375,i=(i<<17|i>>>15)+r<<0,e=(t^i&(r^t))+f[3]-1316259209,e=(e<<22|e>>>10)+i<<0):(t=this.h0,e=this.h1,i=this.h2,r=this.h3,t+=(r^e&(i^r))+f[0]-680876936,t=(t<<7|t>>>25)+e<<0,r+=(i^t&(e^i))+f[1]-389564586,r=(r<<12|r>>>20)+t<<0,i+=(e^r&(t^e))+f[2]+606105819,i=(i<<17|i>>>15)+r<<0,e+=(t^i&(r^t))+f[3]-1044525330,e=(e<<22|e>>>10)+i<<0),t+=(r^e&(i^r))+f[4]-176418897,t=(t<<7|t>>>25)+e<<0,r+=(i^t&(e^i))+f[5]+1200080426,r=(r<<12|r>>>20)+t<<0,i+=(e^r&(t^e))+f[6]-1473231341,i=(i<<17|i>>>15)+r<<0,e+=(t^i&(r^t))+f[7]-45705983,e=(e<<22|e>>>10)+i<<0,t+=(r^e&(i^r))+f[8]+1770035416,t=(t<<7|t>>>25)+e<<0,r+=(i^t&(e^i))+f[9]-1958414417,r=(r<<12|r>>>20)+t<<0,i+=(e^r&(t^e))+f[10]-42063,i=(i<<17|i>>>15)+r<<0,e+=(t^i&(r^t))+f[11]-1990404162,e=(e<<22|e>>>10)+i<<0,t+=(r^e&(i^r))+f[12]+1804603682,t=(t<<7|t>>>25)+e<<0,r+=(i^t&(e^i))+f[13]-40341101,r=(r<<12|r>>>20)+t<<0,i+=(e^r&(t^e))+f[14]-1502002290,i=(i<<17|i>>>15)+r<<0,e+=(t^i&(r^t))+f[15]+1236535329,e=(e<<22|e>>>10)+i<<0,t+=(i^r&(e^i))+f[1]-165796510,t=(t<<5|t>>>27)+e<<0,r+=(e^i&(t^e))+f[6]-1069501632,r=(r<<9|r>>>23)+t<<0,i+=(t^e&(r^t))+f[11]+643717713,i=(i<<14|i>>>18)+r<<0,e+=(r^t&(i^r))+f[0]-373897302,e=(e<<20|e>>>12)+i<<0,t+=(i^r&(e^i))+f[5]-701558691,t=(t<<5|t>>>27)+e<<0,r+=(e^i&(t^e))+f[10]+38016083,r=(r<<9|r>>>23)+t<<0,i+=(t^e&(r^t))+f[15]-660478335,i=(i<<14|i>>>18)+r<<0,e+=(r^t&(i^r))+f[4]-405537848,e=(e<<20|e>>>12)+i<<0,t+=(i^r&(e^i))+f[9]+568446438,t=(t<<5|t>>>27)+e<<0,r+=(e^i&(t^e))+f[14]-1019803690,r=(r<<9|r>>>23)+t<<0,i+=(t^e&(r^t))+f[3]-187363961,i=(i<<14|i>>>18)+r<<0,e+=(r^t&(i^r))+f[8]+1163531501,e=(e<<20|e>>>12)+i<<0,t+=(i^r&(e^i))+f[13]-1444681467,t=(t<<5|t>>>27)+e<<0,r+=(e^i&(t^e))+f[2]-51403784,r=(r<<9|r>>>23)+t<<0,i+=(t^e&(r^t))+f[7]+1735328473,i=(i<<14|i>>>18)+r<<0,e+=(r^t&(i^r))+f[12]-1926607734,e=(e<<20|e>>>12)+i<<0,a=e^i,t+=(a^r)+f[5]-378558,t=(t<<4|t>>>28)+e<<0,r+=(a^t)+f[8]-2022574463,r=(r<<11|r>>>21)+t<<0,h=r^t,i+=(h^e)+f[11]+1839030562,i=(i<<16|i>>>16)+r<<0,e+=(h^i)+f[14]-35309556,e=(e<<23|e>>>9)+i<<0,a=e^i,t+=(a^r)+f[1]-1530992060,t=(t<<4|t>>>28)+e<<0,r+=(a^t)+f[4]+1272893353,r=(r<<11|r>>>21)+t<<0,h=r^t,i+=(h^e)+f[7]-155497632,i=(i<<16|i>>>16)+r<<0,e+=(h^i)+f[10]-1094730640,e=(e<<23|e>>>9)+i<<0,a=e^i,t+=(a^r)+f[13]+681279174,t=(t<<4|t>>>28)+e<<0,r+=(a^t)+f[0]-358537222,r=(r<<11|r>>>21)+t<<0,h=r^t,i+=(h^e)+f[3]-722521979,i=(i<<16|i>>>16)+r<<0,e+=(h^i)+f[6]+76029189,e=(e<<23|e>>>9)+i<<0,a=e^i,t+=(a^r)+f[9]-640364487,t=(t<<4|t>>>28)+e<<0,r+=(a^t)+f[12]-421815835,r=(r<<11|r>>>21)+t<<0,h=r^t,i+=(h^e)+f[15]+530742520,i=(i<<16|i>>>16)+r<<0,e+=(h^i)+f[2]-995338651,e=(e<<23|e>>>9)+i<<0,t+=(i^(e|~r))+f[0]-198630844,t=(t<<6|t>>>26)+e<<0,r+=(e^(t|~i))+f[7]+1126891415,r=(r<<10|r>>>22)+t<<0,i+=(t^(r|~e))+f[14]-1416354905,i=(i<<15|i>>>17)+r<<0,e+=(r^(i|~t))+f[5]-57434055,e=(e<<21|e>>>11)+i<<0,t+=(i^(e|~r))+f[12]+1700485571,t=(t<<6|t>>>26)+e<<0,r+=(e^(t|~i))+f[3]-1894986606,r=(r<<10|r>>>22)+t<<0,i+=(t^(r|~e))+f[10]-1051523,i=(i<<15|i>>>17)+r<<0,e+=(r^(i|~t))+f[1]-2054922799,e=(e<<21|e>>>11)+i<<0,t+=(i^(e|~r))+f[8]+1873313359,t=(t<<6|t>>>26)+e<<0,r+=(e^(t|~i))+f[15]-30611744,r=(r<<10|r>>>22)+t<<0,i+=(t^(r|~e))+f[6]-1560198380,i=(i<<15|i>>>17)+r<<0,e+=(r^(i|~t))+f[13]+1309151649,e=(e<<21|e>>>11)+i<<0,t+=(i^(e|~r))+f[4]-145523070,t=(t<<6|t>>>26)+e<<0,r+=(e^(t|~i))+f[11]-1120210379,r=(r<<10|r>>>22)+t<<0,i+=(t^(r|~e))+f[2]+718787259,i=(i<<15|i>>>17)+r<<0,e+=(r^(i|~t))+f[9]-343485551,e=(e<<21|e>>>11)+i<<0,this.first?(this.h0=t+1732584193<<0,this.h1=e-271733879<<0,this.h2=i-1732584194<<0,this.h3=r+271733878<<0,this.first=!1):(this.h0=this.h0+t<<0,this.h1=this.h1+e<<0,this.h2=this.h2+i<<0,this.h3=this.h3+r<<0)},o.prototype.hex=function(){this.finalize();var t=this.h0,e=this.h1,i=this.h2,r=this.h3;return n[t>>>4&15]+n[t&15]+n[t>>>12&15]+n[t>>>8&15]+n[t>>>20&15]+n[t>>>16&15]+n[t>>>28&15]+n[t>>>24&15]+n[e>>>4&15]+n[e&15]+n[e>>>12&15]+n[e>>>8&15]+n[e>>>20&15]+n[e>>>16&15]+n[e>>>28&15]+n[e>>>24&15]+n[i>>>4&15]+n[i&15]+n[i>>>12&15]+n[i>>>8&15]+n[i>>>20&15]+n[i>>>16&15]+n[i>>>28&15]+n[i>>>24&15]+n[r>>>4&15]+n[r&15]+n[r>>>12&15]+n[r>>>8&15]+n[r>>>20&15]+n[r>>>16&15]+n[r>>>28&15]+n[r>>>24&15]},o.prototype.toString=o.prototype.hex,o.prototype.digest=function(){this.finalize();var t=this.h0,e=this.h1,i=this.h2,r=this.h3;return[t&255,t>>>8&255,t>>>16&255,t>>>24&255,e&255,e>>>8&255,e>>>16&255,e>>>24&255,i&255,i>>>8&255,i>>>16&255,i>>>24&255,r&255,r>>>8&255,r>>>16&255,r>>>24&255]},o.prototype.array=o.prototype.digest,o.prototype.arrayBuffer=function(){this.finalize();var t=new ArrayBuffer(16),e=new Uint32Array(t);return e[0]=this.h0,e[1]=this.h1,e[2]=this.h2,e[3]=this.h3,t},o.prototype.buffer=o.prototype.arrayBuffer,o.prototype.base64=function(){for(var t,e,i,r="",a=this.array(),h=0;h<15;)t=a[h++],e=a[h++],i=a[h++],r+=F[t>>>2]+F[(t<<4|e>>>4)&63]+F[(e<<2|i>>>6)&63]+F[i&63];return t=a[h],r+=F[t>>>2]+F[t<<4&63]+"==",r};function A(t,e){var i,r=M(t);if(t=r[0],r[1]){var a=[],h=t.length,f=0,s;for(i=0;i>>6,a[f++]=128|s&63):s<55296||s>=57344?(a[f++]=224|s>>>12,a[f++]=128|s>>>6&63,a[f++]=128|s&63):(s=65536+((s&1023)<<10|t.charCodeAt(++i)&1023),a[f++]=240|s>>>18,a[f++]=128|s>>>12&63,a[f++]=128|s>>>6&63,a[f++]=128|s&63);t=a}t.length>64&&(t=new o(!0).update(t).array());var u=[],D=[];for(i=0;i<64;++i){var U=t[i]||0;u[i]=92^U,D[i]=54^U}o.call(this,e),this.update(D),this.oKeyPad=u,this.inner=!0,this.sharedMemory=e}A.prototype=new o,A.prototype.finalize=function(){if(o.prototype.finalize.call(this),this.inner){this.inner=!1;var t=this.array();o.call(this,this.sharedMemory),this.update(this.oKeyPad),this.update(t),o.prototype.finalize.call(this)}};var v=P();v.md5=v,v.md5.hmac=T(),I?E.exports=v:c.md5=v})()})(C);var X=C.exports;const q=V(X);export{q as a,X as m}; diff --git a/dashboard/dist/assets/md5-6c2e1fd5.js b/dashboard/dist/assets/md5-6c2e1fd5.js new file mode 100644 index 00000000..6c803013 --- /dev/null +++ b/dashboard/dist/assets/md5-6c2e1fd5.js @@ -0,0 +1,9 @@ +import{aj as L,q as $,B as J,o as q,l as X,c as G,w as Q,Q as R,R as O,x as S,u as m,ak as Z,al as t0,am as r0,an as e0}from"./index-7e5a38e4.js";const E={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},i0=L({id:"customizer",state:()=>({Sidebar_drawer:E.Sidebar_drawer,Customizer_drawer:E.Customizer_drawer,mini_sidebar:E.mini_sidebar,fontTheme:"Poppins",inputBg:E.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(p){this.mini_sidebar=p},SET_FONT(p){this.fontTheme=p}}}),s0={class:"logo",style:{display:"flex","align-items":"center"}},a0={style:{"font-size":"24px","font-weight":"1000"}},f0={style:{"font-size":"20px","font-weight":"1000"}},o0={style:{"font-size":"20px"}},l0=$({__name:"LogoDark",setup(p){J("rgb(var(--v-theme-primary))"),J("rgb(var(--v-theme-secondary))");const d=i0();return(M,y)=>(q(),X("div",s0,[G(S(Z),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:Q(()=>[R(m("span",a0,"AstrBot 仪表盘",512),[[O,!S(d).mini_sidebar]]),R(m("span",f0,"Astr",512),[[O,S(d).mini_sidebar]]),R(m("span",o0,"Bot",512),[[O,S(d).mini_sidebar]])]),_:1})]))}});var P={exports:{}};const n0={},h0=Object.freeze(Object.defineProperty({__proto__:null,default:n0},Symbol.toStringTag,{value:"Module"})),H=t0(h0);/** + * [js-md5]{@link https://github.com/emn178/js-md5} + * + * @namespace md5 + * @version 0.8.3 + * @author Chen, Yi-Cyuan [emn178@gmail.com] + * @copyright Chen, Yi-Cyuan 2014-2023 + * @license MIT + */(function(p){(function(){var d="input is invalid type",M="finalize already called",y=typeof window=="object",c=y?window:{};c.JS_MD5_NO_WINDOW&&(y=!1);var W=!y&&typeof self=="object",z=!c.JS_MD5_NO_NODE_JS&&typeof process=="object"&&process.versions&&process.versions.node;z?c=r0:W&&(c=self);var g=!c.JS_MD5_NO_COMMON_JS&&!0&&p.exports,_=!c.JS_MD5_NO_ARRAY_BUFFER&&typeof ArrayBuffer<"u",n="0123456789abcdef".split(""),k=[128,32768,8388608,-2147483648],l=[0,8,16,24],b=["hex","array","digest","buffer","arrayBuffer","base64"],F="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""),u=[],N;if(_){var D=new ArrayBuffer(68);N=new Uint8Array(D),u=new Uint32Array(D)}var w=Array.isArray;(c.JS_MD5_NO_NODE_JS||!w)&&(w=function(t){return Object.prototype.toString.call(t)==="[object Array]"});var A=ArrayBuffer.isView;_&&(c.JS_MD5_NO_ARRAY_BUFFER_IS_VIEW||!A)&&(A=function(t){return typeof t=="object"&&t.buffer&&t.buffer.constructor===ArrayBuffer});var C=function(t){var e=typeof t;if(e==="string")return[t,!0];if(e!=="object"||t===null)throw new Error(d);if(_&&t.constructor===ArrayBuffer)return[new Uint8Array(t),!1];if(!w(t)&&!A(t))throw new Error(d);return[t,!1]},I=function(t){return function(e){return new h(!0).update(e)[t]()}},K=function(){var t=I("hex");z&&(t=V(t)),t.create=function(){return new h},t.update=function(r){return t.create().update(r)};for(var e=0;e>>6,x[a++]=128|r&63):r<55296||r>=57344?(x[a++]=224|r>>>12,x[a++]=128|r>>>6&63,x[a++]=128|r&63):(r=65536+((r&1023)<<10|t.charCodeAt(++f)&1023),x[a++]=240|r>>>18,x[a++]=128|r>>>12&63,x[a++]=128|r>>>6&63,x[a++]=128|r&63);else for(a=this.start;f>>2]|=r<>>2]|=(192|r>>>6)<>>2]|=(128|r&63)<=57344?(o[a>>>2]|=(224|r>>>12)<>>2]|=(128|r>>>6&63)<>>2]|=(128|r&63)<>>2]|=(240|r>>>18)<>>2]|=(128|r>>>12&63)<>>2]|=(128|r>>>6&63)<>>2]|=(128|r&63)<>>2]|=t[f]<=64?(this.start=a-64,this.hash(),this.hashed=!0):this.start=a}return this.bytes>4294967295&&(this.hBytes+=this.bytes/4294967296<<0,this.bytes=this.bytes%4294967296),this},h.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var t=this.blocks,e=this.lastByteIndex;t[e>>>2]|=k[e&3],e>=56&&(this.hashed||this.hash(),t[0]=t[16],t[16]=t[1]=t[2]=t[3]=t[4]=t[5]=t[6]=t[7]=t[8]=t[9]=t[10]=t[11]=t[12]=t[13]=t[14]=t[15]=0),t[14]=this.bytes<<3,t[15]=this.hBytes<<3|this.bytes>>>29,this.hash()}},h.prototype.hash=function(){var t,e,i,r,f,a,s=this.blocks;this.first?(t=s[0]-680876937,t=(t<<7|t>>>25)-271733879<<0,r=(-1732584194^t&2004318071)+s[1]-117830708,r=(r<<12|r>>>20)+t<<0,i=(-271733879^r&(t^-271733879))+s[2]-1126478375,i=(i<<17|i>>>15)+r<<0,e=(t^i&(r^t))+s[3]-1316259209,e=(e<<22|e>>>10)+i<<0):(t=this.h0,e=this.h1,i=this.h2,r=this.h3,t+=(r^e&(i^r))+s[0]-680876936,t=(t<<7|t>>>25)+e<<0,r+=(i^t&(e^i))+s[1]-389564586,r=(r<<12|r>>>20)+t<<0,i+=(e^r&(t^e))+s[2]+606105819,i=(i<<17|i>>>15)+r<<0,e+=(t^i&(r^t))+s[3]-1044525330,e=(e<<22|e>>>10)+i<<0),t+=(r^e&(i^r))+s[4]-176418897,t=(t<<7|t>>>25)+e<<0,r+=(i^t&(e^i))+s[5]+1200080426,r=(r<<12|r>>>20)+t<<0,i+=(e^r&(t^e))+s[6]-1473231341,i=(i<<17|i>>>15)+r<<0,e+=(t^i&(r^t))+s[7]-45705983,e=(e<<22|e>>>10)+i<<0,t+=(r^e&(i^r))+s[8]+1770035416,t=(t<<7|t>>>25)+e<<0,r+=(i^t&(e^i))+s[9]-1958414417,r=(r<<12|r>>>20)+t<<0,i+=(e^r&(t^e))+s[10]-42063,i=(i<<17|i>>>15)+r<<0,e+=(t^i&(r^t))+s[11]-1990404162,e=(e<<22|e>>>10)+i<<0,t+=(r^e&(i^r))+s[12]+1804603682,t=(t<<7|t>>>25)+e<<0,r+=(i^t&(e^i))+s[13]-40341101,r=(r<<12|r>>>20)+t<<0,i+=(e^r&(t^e))+s[14]-1502002290,i=(i<<17|i>>>15)+r<<0,e+=(t^i&(r^t))+s[15]+1236535329,e=(e<<22|e>>>10)+i<<0,t+=(i^r&(e^i))+s[1]-165796510,t=(t<<5|t>>>27)+e<<0,r+=(e^i&(t^e))+s[6]-1069501632,r=(r<<9|r>>>23)+t<<0,i+=(t^e&(r^t))+s[11]+643717713,i=(i<<14|i>>>18)+r<<0,e+=(r^t&(i^r))+s[0]-373897302,e=(e<<20|e>>>12)+i<<0,t+=(i^r&(e^i))+s[5]-701558691,t=(t<<5|t>>>27)+e<<0,r+=(e^i&(t^e))+s[10]+38016083,r=(r<<9|r>>>23)+t<<0,i+=(t^e&(r^t))+s[15]-660478335,i=(i<<14|i>>>18)+r<<0,e+=(r^t&(i^r))+s[4]-405537848,e=(e<<20|e>>>12)+i<<0,t+=(i^r&(e^i))+s[9]+568446438,t=(t<<5|t>>>27)+e<<0,r+=(e^i&(t^e))+s[14]-1019803690,r=(r<<9|r>>>23)+t<<0,i+=(t^e&(r^t))+s[3]-187363961,i=(i<<14|i>>>18)+r<<0,e+=(r^t&(i^r))+s[8]+1163531501,e=(e<<20|e>>>12)+i<<0,t+=(i^r&(e^i))+s[13]-1444681467,t=(t<<5|t>>>27)+e<<0,r+=(e^i&(t^e))+s[2]-51403784,r=(r<<9|r>>>23)+t<<0,i+=(t^e&(r^t))+s[7]+1735328473,i=(i<<14|i>>>18)+r<<0,e+=(r^t&(i^r))+s[12]-1926607734,e=(e<<20|e>>>12)+i<<0,f=e^i,t+=(f^r)+s[5]-378558,t=(t<<4|t>>>28)+e<<0,r+=(f^t)+s[8]-2022574463,r=(r<<11|r>>>21)+t<<0,a=r^t,i+=(a^e)+s[11]+1839030562,i=(i<<16|i>>>16)+r<<0,e+=(a^i)+s[14]-35309556,e=(e<<23|e>>>9)+i<<0,f=e^i,t+=(f^r)+s[1]-1530992060,t=(t<<4|t>>>28)+e<<0,r+=(f^t)+s[4]+1272893353,r=(r<<11|r>>>21)+t<<0,a=r^t,i+=(a^e)+s[7]-155497632,i=(i<<16|i>>>16)+r<<0,e+=(a^i)+s[10]-1094730640,e=(e<<23|e>>>9)+i<<0,f=e^i,t+=(f^r)+s[13]+681279174,t=(t<<4|t>>>28)+e<<0,r+=(f^t)+s[0]-358537222,r=(r<<11|r>>>21)+t<<0,a=r^t,i+=(a^e)+s[3]-722521979,i=(i<<16|i>>>16)+r<<0,e+=(a^i)+s[6]+76029189,e=(e<<23|e>>>9)+i<<0,f=e^i,t+=(f^r)+s[9]-640364487,t=(t<<4|t>>>28)+e<<0,r+=(f^t)+s[12]-421815835,r=(r<<11|r>>>21)+t<<0,a=r^t,i+=(a^e)+s[15]+530742520,i=(i<<16|i>>>16)+r<<0,e+=(a^i)+s[2]-995338651,e=(e<<23|e>>>9)+i<<0,t+=(i^(e|~r))+s[0]-198630844,t=(t<<6|t>>>26)+e<<0,r+=(e^(t|~i))+s[7]+1126891415,r=(r<<10|r>>>22)+t<<0,i+=(t^(r|~e))+s[14]-1416354905,i=(i<<15|i>>>17)+r<<0,e+=(r^(i|~t))+s[5]-57434055,e=(e<<21|e>>>11)+i<<0,t+=(i^(e|~r))+s[12]+1700485571,t=(t<<6|t>>>26)+e<<0,r+=(e^(t|~i))+s[3]-1894986606,r=(r<<10|r>>>22)+t<<0,i+=(t^(r|~e))+s[10]-1051523,i=(i<<15|i>>>17)+r<<0,e+=(r^(i|~t))+s[1]-2054922799,e=(e<<21|e>>>11)+i<<0,t+=(i^(e|~r))+s[8]+1873313359,t=(t<<6|t>>>26)+e<<0,r+=(e^(t|~i))+s[15]-30611744,r=(r<<10|r>>>22)+t<<0,i+=(t^(r|~e))+s[6]-1560198380,i=(i<<15|i>>>17)+r<<0,e+=(r^(i|~t))+s[13]+1309151649,e=(e<<21|e>>>11)+i<<0,t+=(i^(e|~r))+s[4]-145523070,t=(t<<6|t>>>26)+e<<0,r+=(e^(t|~i))+s[11]-1120210379,r=(r<<10|r>>>22)+t<<0,i+=(t^(r|~e))+s[2]+718787259,i=(i<<15|i>>>17)+r<<0,e+=(r^(i|~t))+s[9]-343485551,e=(e<<21|e>>>11)+i<<0,this.first?(this.h0=t+1732584193<<0,this.h1=e-271733879<<0,this.h2=i-1732584194<<0,this.h3=r+271733878<<0,this.first=!1):(this.h0=this.h0+t<<0,this.h1=this.h1+e<<0,this.h2=this.h2+i<<0,this.h3=this.h3+r<<0)},h.prototype.hex=function(){this.finalize();var t=this.h0,e=this.h1,i=this.h2,r=this.h3;return n[t>>>4&15]+n[t&15]+n[t>>>12&15]+n[t>>>8&15]+n[t>>>20&15]+n[t>>>16&15]+n[t>>>28&15]+n[t>>>24&15]+n[e>>>4&15]+n[e&15]+n[e>>>12&15]+n[e>>>8&15]+n[e>>>20&15]+n[e>>>16&15]+n[e>>>28&15]+n[e>>>24&15]+n[i>>>4&15]+n[i&15]+n[i>>>12&15]+n[i>>>8&15]+n[i>>>20&15]+n[i>>>16&15]+n[i>>>28&15]+n[i>>>24&15]+n[r>>>4&15]+n[r&15]+n[r>>>12&15]+n[r>>>8&15]+n[r>>>20&15]+n[r>>>16&15]+n[r>>>28&15]+n[r>>>24&15]},h.prototype.toString=h.prototype.hex,h.prototype.digest=function(){this.finalize();var t=this.h0,e=this.h1,i=this.h2,r=this.h3;return[t&255,t>>>8&255,t>>>16&255,t>>>24&255,e&255,e>>>8&255,e>>>16&255,e>>>24&255,i&255,i>>>8&255,i>>>16&255,i>>>24&255,r&255,r>>>8&255,r>>>16&255,r>>>24&255]},h.prototype.array=h.prototype.digest,h.prototype.arrayBuffer=function(){this.finalize();var t=new ArrayBuffer(16),e=new Uint32Array(t);return e[0]=this.h0,e[1]=this.h1,e[2]=this.h2,e[3]=this.h3,t},h.prototype.buffer=h.prototype.arrayBuffer,h.prototype.base64=function(){for(var t,e,i,r="",f=this.array(),a=0;a<15;)t=f[a++],e=f[a++],i=f[a++],r+=F[t>>>2]+F[(t<<4|e>>>4)&63]+F[(e<<2|i>>>6)&63]+F[i&63];return t=f[a],r+=F[t>>>2]+F[t<<4&63]+"==",r};function B(t,e){var i,r=C(t);if(t=r[0],r[1]){var f=[],a=t.length,s=0,o;for(i=0;i>>6,f[s++]=128|o&63):o<55296||o>=57344?(f[s++]=224|o>>>12,f[s++]=128|o>>>6&63,f[s++]=128|o&63):(o=65536+((o&1023)<<10|t.charCodeAt(++i)&1023),f[s++]=240|o>>>18,f[s++]=128|o>>>12&63,f[s++]=128|o>>>6&63,f[s++]=128|o&63);t=f}t.length>64&&(t=new h(!0).update(t).array());var x=[],U=[];for(i=0;i<64;++i){var j=t[i]||0;x[i]=92^j,U[i]=54^j}h.call(this,e),this.update(U),this.oKeyPad=x,this.inner=!0,this.sharedMemory=e}B.prototype=new h,B.prototype.finalize=function(){if(h.prototype.finalize.call(this),this.inner){this.inner=!1;var t=this.array();h.call(this,this.sharedMemory),this.update(this.oKeyPad),this.update(t),h.prototype.finalize.call(this)}};var v=K();v.md5=v,v.md5.hmac=Y(),g?p.exports=v:c.md5=v})()})(P);var u0=P.exports;const c0=e0(u0);export{l0 as _,c0 as a,u0 as m,i0 as u}; diff --git a/dashboard/dist/assets/social-google-a359a253.svg b/dashboard/dist/assets/social-google-a359a253.svg deleted file mode 100644 index 2231ce98..00000000 --- a/dashboard/dist/assets/social-google-a359a253.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/dashboard/dist/index.html b/dashboard/dist/index.html index 2ec56949..f50a6052 100644 --- a/dashboard/dist/index.html +++ b/dashboard/dist/index.html @@ -11,7 +11,7 @@ href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap" /> AstrBot - 仪表盘 - + diff --git a/dashboard/helper.py b/dashboard/helper.py deleted file mode 100644 index 2cb744ba..00000000 --- a/dashboard/helper.py +++ /dev/null @@ -1,110 +0,0 @@ -from . import DashBoardData -from util.cmd_config import AstrBotConfig -from dataclasses import dataclass, asdict -from util.plugin_dev.api.v1.config import update_config -from util.log import LogManager -from logging import Logger -from type.types import Context -from type.config import CONFIG_METADATA_2 - -logger: Logger = LogManager.GetLogger(log_name='astrbot') - - -class DashBoardHelper(): - def __init__(self, context: Context): - self.context = context - self.config_key_dont_show = ['dashboard', 'config_version'] - - def try_cast(self, value: str, type_: str): - if type_ == "int" and value.isdigit(): - return int(value) - elif type_ == "float" and isinstance(value, str) \ - and value.replace(".", "", 1).isdigit(): - return float(value) - elif type_ == "float" and isinstance(value, int): - return float(value) - - def get_default_val_by_type(self, type_: str): - if type_ == "int": - return 0 - elif type_ == "float": - return 0.0 - elif type_ == "bool": - return False - elif type_ == "string": - return "" - elif type_ == "list": - return [] - elif type_ == "object": - return {} - - - def validate_config(self, data): - errors = [] - def validate(data, metadata=CONFIG_METADATA_2, path=""): - for key, meta in metadata.items(): - if key not in data: - continue - value = data[key] - # null 转换 - if value is None: - data[key] = self.get_default_val_by_type(meta["type"]) - continue - # 递归验证 - if meta["type"] == "list" and isinstance(value, list): - for item in value: - validate(item, meta["items"], path=f"{path}{key}.") - elif meta["type"] == "object" and isinstance(value, dict): - validate(value, meta["items"], path=f"{path}{key}.") - - if meta["type"] == "int" and not isinstance(value, int): - casted = self.try_cast(value, "int") - if casted is None: - errors.append(f"错误的类型 {path}{key}: 期望是 int, 得到了 {type(value).__name__}") - data[key] = casted - elif meta["type"] == "float" and not isinstance(value, float): - casted = self.try_cast(value, "float") - if casted is None: - errors.append(f"错误的类型 {path}{key}: 期望是 float, 得到了 {type(value).__name__}") - data[key] = casted - elif meta["type"] == "bool" and not isinstance(value, bool): - errors.append(f"错误的类型 {path}{key}: 期望是 bool, 得到了 {type(value).__name__}") - elif meta["type"] == "string" and not isinstance(value, str): - errors.append(f"错误的类型 {path}{key}: 期望是 string, 得到了 {type(value).__name__}") - elif meta["type"] == "list" and not isinstance(value, list): - errors.append(f"错误的类型 {path}{key}: 期望是 list, 得到了 {type(value).__name__}") - elif meta["type"] == "object" and not isinstance(value, dict): - errors.append(f"错误的类型 {path}{key}: 期望是 dict, 得到了 {type(value).__name__}") - validate(value, meta["items"], path=f"{path}{key}.") - validate(data) - - # hardcode warning - data['config_version'] = self.context.config_helper.config_version - data['dashboard'] = asdict(self.context.config_helper.dashboard) - - return errors - - def save_astrbot_config(self, post_config: dict): - '''验证并保存配置''' - errors = self.validate_config(post_config) - if errors: - raise ValueError(f"格式校验未通过: {errors}") - self.context.config_helper.flush_config(post_config) - - def save_extension_config(self, post_config: dict): - if 'namespace' not in post_config: - raise ValueError("Missing key: namespace") - if 'config' not in post_config: - raise ValueError("Missing key: config") - - namespace = post_config['namespace'] - config: list = post_config['config'][0]['body'] - for item in config: - key = item['path'] - value = item['value'] - typ = item['val_type'] - if typ == 'int': - if not value.isdigit(): - raise ValueError(f"错误的类型 {namespace}.{key}: 期望是 int, 得到了 {type(value).__name__}") - value = int(value) - update_config(namespace, key, value) diff --git a/dashboard/routes/__init__.py b/dashboard/routes/__init__.py new file mode 100644 index 00000000..bf7edbae --- /dev/null +++ b/dashboard/routes/__init__.py @@ -0,0 +1,17 @@ +from .auth import AuthRoute +from .plugin import PluginRoute +from .config import ConfigRoute +from .update import UpdateRoute +from .stat import StatRoute +from .log import LogRoute +from .static_file import StaticFileRoute + +__all__ = [ + "AuthRoute", + "PluginRoute", + "ConfigRoute", + "UpdateRoute", + "StatRoute", + "LogRoute", + "StaticFileRoute" +] \ No newline at end of file diff --git a/dashboard/routes/auth.py b/dashboard/routes/auth.py new file mode 100644 index 00000000..febfb5f4 --- /dev/null +++ b/dashboard/routes/auth.py @@ -0,0 +1,33 @@ +from .. import Route, Response +from quart import Quart, request +from type.types import Context + +class AuthRoute(Route): + def __init__(self, context: Context, app: Quart) -> None: + super().__init__(context, app) + self.routes = { + '/auth/login': ('POST', self.login), + '/auth/password/reset': ('POST', self.reset_password), + } + self.register_routes() + + async def login(self): + username = self.context.config_helper.dashboard.username + password = self.context.config_helper.dashboard.password + post_data = await request.json + if post_data["username"] == username and post_data["password"] == password: + return Response().ok({ + "token": "astrbot-test-token", + "username": username + }).__dict__ + else: + return Response().error("用户名或密码错误").__dict__ + + async def reset_password(self): + password = self.context.config_helper.dashboard.password + post_data = await request.json + if post_data["password"] == password: + self.context.config_helper.dashboard.password = post_data['new_password'] + return Response().ok(None).__dict__ + else: + return Response().error("原密码错误").__dict__ \ No newline at end of file diff --git a/dashboard/routes/config.py b/dashboard/routes/config.py new file mode 100644 index 00000000..dcae5b92 --- /dev/null +++ b/dashboard/routes/config.py @@ -0,0 +1,80 @@ +import os, json, threading +from .. import Route, Response +from ..utils.config import * +from quart import Quart, request +from type.types import Context +from type.config import CONFIG_METADATA_2 +from util.updator.astrbot_updator import AstrBotUpdator + + +class ConfigRoute(Route): + def __init__(self, context: Context, app: Quart, astrbot_updator: AstrBotUpdator) -> None: + super().__init__(context, app) + self.config_key_dont_show = ['dashboard', 'config_version'] + self.astrbot_updator = astrbot_updator + self.routes = { + '/config/get': ('GET', self.get_configs), + '/config/astrbot/update': ('POST', self.post_astrbot_configs), + '/config/plugin/update': ('POST', self.post_extension_configs), + } + self.register_routes() + + async def get_configs(self): + # namespace 为空时返回 AstrBot 配置 + # 否则返回指定 namespace 的插件配置 + namespace = "" if "namespace" not in request.args else request.args["namespace"] + if not namespace: + return Response().ok(await self._get_astrbot_config()).__dict__ + return Response().ok(await self._get_extension_config(namespace)).__dict__ + + async def post_astrbot_configs(self): + post_configs = await request.json + try: + await self._save_astrbot_configs(post_configs) + return Response().ok(None, "保存成功~ 机器人将在 3 秒内重启以应用新的配置。").__dict__ + except Exception as e: + return Response().error(str(e)).__dict__ + + async def post_extension_configs(self): + post_configs = await request.json + try: + await self._save_extension_configs(post_configs) + return Response().ok(None, "保存成功~ 机器人将在 3 秒内重启以应用新的配置。").__dict__ + except Exception as e: + return Response().error(str(e)).__dict__ + + async def _get_astrbot_config(self): + config = self.context.config_helper.to_dict() + for key in self.config_key_dont_show: + if key in config: + del config[key] + return { + "metadata": CONFIG_METADATA_2, + "config": config, + } + + async def _get_extension_config(self, namespace: str): + path = f"data/config/{namespace}.json" + if not os.path.exists(path): + return [] + with open(path, "r", encoding="utf-8-sig") as f: + return [{ + "config_type": "group", + "name": namespace + " 插件配置", + "description": "", + "body": list(json.load(f).values()) + },] + + async def _save_astrbot_configs(self, post_configs: dict): + try: + save_astrbot_config(post_configs, self.context) + threading.Thread(target=self.astrbot_updator._reboot, args=(3, self.context), daemon=True).start() + except Exception as e: + raise e + + async def _save_extension_configs(self, post_configs: dict): + try: + save_extension_config(post_configs) + threading.Thread(target=self.astrbot_updator._reboot, args=(3, self.context), daemon=True).start() + except Exception as e: + raise e \ No newline at end of file diff --git a/dashboard/routes/log.py b/dashboard/routes/log.py new file mode 100644 index 00000000..9921ce10 --- /dev/null +++ b/dashboard/routes/log.py @@ -0,0 +1,50 @@ +import asyncio +from quart import websocket +from quart import Quart +from type.types import Context +from .. import logger + +class Broker: + def __init__(self) -> None: + self.connections = set() + + async def send(self, message: str): + for connection in self.connections: + try: + await connection.send(message) + except Exception as e: + logger.warning(f"发送日志失败: {e.__str__()}") + + +class LogRoute: + def __init__(self, context: Context, app: Quart) -> None: + self.app = app + self.context = context + self.broker = Broker() + self.app.add_url_rule('/api/live-log', view_func=self.log, methods=['GET'], websocket=True) + + async def _receive_log_task(self): + while True: + message = await self.context._log_queue.get() + await self.broker.send(message) + + async def _get_log_history(self): + try: + dq = self.context._log_queue.get_cache() + ret = "" + for log in dq: + log = log.replace("\n", "\n\r") + ret += log + "\n\r" + return ret + except Exception as e: + logger.warning(f"读取日志历史失败: {e.__str__()}") + return "" + + async def log(self): + try: + await websocket.send(await self._get_log_history()) + self.broker.connections.add(websocket) + while True: + await asyncio.sleep(1) + except asyncio.CancelledError: + self.broker.connections.remove(websocket) \ No newline at end of file diff --git a/dashboard/routes/plugin.py b/dashboard/routes/plugin.py new file mode 100644 index 00000000..c7733df9 --- /dev/null +++ b/dashboard/routes/plugin.py @@ -0,0 +1,86 @@ +import threading, traceback, uuid +from .. import Route, Response, logger +from quart import Quart, request +from type.types import Context +from model.plugin.manager import PluginManager +from util.updator.astrbot_updator import AstrBotUpdator + +class PluginRoute(Route): + def __init__(self, context: Context, app: Quart, astrbot_updator: AstrBotUpdator, plugin_manager: PluginManager) -> None: + super().__init__(context, app) + self.routes = { + '/plugin/get': ('GET', self.get_plugins), + '/plugin/install': ('POST', self.install_plugin), + '/plugin/install-upload': ('POST', self.install_plugin_upload), + '/plugin/update': ('POST', self.update_plugin), + '/plugin/uninstall': ('POST', self.uninstall_plugin), + } + self.astrbot_updator = astrbot_updator + self.plugin_manager = plugin_manager + self.register_routes() + + async def get_plugins(self): + _plugin_resp = [] + for plugin in self.context.cached_plugins: + _p = plugin.metadata + _t = { + "name": _p.plugin_name, + "repo": '' if _p.repo is None else _p.repo, + "author": _p.author, + "desc": _p.desc, + "version": _p.version + } + _plugin_resp.append(_t) + return Response().ok(_plugin_resp).__dict__ + + async def install_plugin(self): + post_data = await request.json + repo_url = post_data["url"] + try: + logger.info(f"正在安装插件 {repo_url}") + await self.plugin_manager.install_plugin(repo_url) + threading.Thread(target=self.astrbot_updator._reboot, args=(2, self.context)).start() + logger.info(f"安装插件 {repo_url} 成功, 2秒后重启") + return Response().ok(None, "安装成功,程序将在 2 秒内重启。").__dict__ + except Exception as e: + logger.error(traceback.format_exc()) + return Response().error(str(e)).__dict__ + + async def install_plugin_upload(self): + try: + file = request.files['file'] + print(file.filename) + logger.info(f"正在安装用户上传的插件 {file.filename}") + file_path = f"data/temp/{uuid.uuid4()}.zip" + file.save(file_path) + self.plugin_manager.install_plugin_from_file(file_path) + logger.info(f"安装插件 {file.filename} 成功") + return Response().ok(None, "安装成功!!").__dict__ + except Exception as e: + logger.error(traceback.format_exc()) + return Response().error(str(e)).__dict__ + + async def uninstall_plugin(self): + post_data = await request.json + plugin_name = post_data["name"] + try: + logger.info(f"正在卸载插件 {plugin_name}") + self.plugin_manager.uninstall_plugin(plugin_name) + logger.info(f"卸载插件 {plugin_name} 成功") + return Response().ok(None, "卸载成功").__dict__ + except Exception as e: + logger.error(traceback.format_exc()) + return Response().error(str(e)).__dict__ + + async def update_plugin(self): + post_data = await request.json + plugin_name = post_data["name"] + try: + logger.info(f"正在更新插件 {plugin_name}") + await self.plugin_manager.update_plugin(plugin_name) + threading.Thread(target=self.astrbot_updator._reboot, args=(2, self.context)).start() + logger.info(f"更新插件 {plugin_name} 成功,2秒后重启") + return Response().ok(None, "更新成功,程序将在 2 秒内重启。").__dict__ + except Exception as e: + logger.error(f"/api/extensions/update: {traceback.format_exc()}") + return Response().error(str(e)).__dict__ \ No newline at end of file diff --git a/dashboard/routes/stat.py b/dashboard/routes/stat.py new file mode 100644 index 00000000..83be18e4 --- /dev/null +++ b/dashboard/routes/stat.py @@ -0,0 +1,62 @@ +import traceback, psutil, time, datetime +from .. import Route, Response, logger +from quart import Quart, request +from type.types import Context +from astrbot.db import BaseDatabase +from type.config import VERSION + +class StatRoute(Route): + def __init__(self, context: Context, app: Quart, db_helper: BaseDatabase) -> None: + super().__init__(context, app) + self.routes = { + '/stat/get': ('GET', self.get_stat), + '/stat/version': ('GET', self.get_version), + } + self.db_helper = db_helper + self.register_routes() + + def format_sec(self, sec: int): + m, s = divmod(sec, 60) + h, m = divmod(m, 60) + return f"{h}小时{m}分{s}秒" + + async def get_version(self): + return Response().ok({ + "version": VERSION + }).__dict__ + + async def get_stat(self): + offset_sec = request.args.get('offset_sec', 86400) + offset_sec = int(offset_sec) + try: + stat = self.db_helper.get_base_stats(offset_sec) + now = int(time.time()) + start_time = now - offset_sec + message_time_based_stats = [] + + idx = 0 + for bucket_end in range(start_time, now, 1800): + cnt = 0 + while idx < len(stat.platform) and stat.platform[idx].timestamp < bucket_end: + cnt += stat.platform[idx].count + idx += 1 + message_time_based_stats.append([bucket_end, cnt]) + + stat_dict = stat.__dict__ + + stat_dict.update({ + "platform": self.db_helper.get_grouped_base_stats(offset_sec).platform, + "message_count": self.db_helper.get_total_message_count(), + "platform_count": len(self.context.platforms), + "message_time_series": message_time_based_stats, + "running": self.format_sec(int(time.time() - self.context._start_running)), + "memory": { + "process": psutil.Process().memory_info().rss >> 20, + "system": psutil.virtual_memory().total >> 20 + } + }) + + return Response().ok(stat_dict).__dict__ + except Exception as e: + logger.error(traceback.format_exc()) + return Response().error(e.__str__()).__dict__ \ No newline at end of file diff --git a/dashboard/routes/static_file.py b/dashboard/routes/static_file.py new file mode 100644 index 00000000..49c6de22 --- /dev/null +++ b/dashboard/routes/static_file.py @@ -0,0 +1,14 @@ +from .. import Route +from quart import Quart +from type.types import Context + +class StaticFileRoute(Route): + def __init__(self, context: Context, app: Quart) -> None: + super().__init__(context, app) + + index_ = ['/', '/auth/login', '/config', '/logs', '/extension', '/dashboard/default'] + for i in index_: + self.app.add_url_rule(i, view_func=self.index) + + async def index(self): + return await self.app.send_static_file('index.html') \ No newline at end of file diff --git a/dashboard/routes/update.py b/dashboard/routes/update.py new file mode 100644 index 00000000..d51ed70d --- /dev/null +++ b/dashboard/routes/update.py @@ -0,0 +1,45 @@ +import threading, traceback +from .. import Route, Response, logger +from quart import Quart, request +from type.types import Context +from util.updator.astrbot_updator import AstrBotUpdator + +class UpdateRoute(Route): + def __init__(self, context: Context, app: Quart, astrbot_updator: AstrBotUpdator) -> None: + super().__init__(context, app) + self.routes = { + '/update/check': ('GET', self.check_update), + '/update/do': ('POST', self.update_project), + } + self.astrbot_updator = astrbot_updator + self.register_routes() + + async def check_update(self): + try: + ret = await self.astrbot_updator.check_update(None, None) + return Response( + status="success", + message=str(ret) if ret is not None else "已经是最新版本了。", + data={ + "has_new_version": ret is not None + } + ).__dict__ + except Exception as e: + logger.error(traceback.format_exc()) + return Response().error(e.__str__()).__dict__ + + async def update_project(self): + data = await request.json + version = data.get('version', '') + if version == "" or version == "latest": + latest = True + version = '' + else: + latest = False + try: + await self.astrbot_updator.update(latest=latest, version=version) + threading.Thread(target=self.astrbot_updator._reboot, args=(2, self.context)).start() + return Response().ok(None, "更新成功,程序将在 2 秒内重启。").__dict__ + except Exception as e: + logger.error(f"/api/update_project: {traceback.format_exc()}") + return Response().error(e.__str__()).__dict__ \ No newline at end of file diff --git a/dashboard/server.py b/dashboard/server.py index da4d79c3..666fd54f 100644 --- a/dashboard/server.py +++ b/dashboard/server.py @@ -1,466 +1,39 @@ -import websockets -import json -import threading -import asyncio -import os -import uuid import logging -import traceback - -from . import DashBoardData, Response -from flask import Flask, request -from werkzeug.serving import make_server -from astrbot.persist.helper import dbConn +import asyncio +from quart import Quart +from quart.logging import default_handler from type.types import Context -from typing import List -from util.log import LogManager -from logging import Logger -from dashboard.helper import DashBoardHelper -from util.io import get_local_ip_addresses +from .routes import * +from . import logger +from astrbot.db import BaseDatabase from model.plugin.manager import PluginManager from util.updator.astrbot_updator import AstrBotUpdator -from type.config import CONFIG_METADATA_2 +from util.io import get_local_ip_addresses - -logger: Logger = LogManager.GetLogger(log_name='astrbot') - - -class AstrBotDashBoard(): - def __init__(self, context: Context, plugin_manager: PluginManager, astrbot_updator: AstrBotUpdator): +class AstrBotDashboard(): + def __init__(self, context: Context, + plugin_manager: PluginManager, + astrbot_updator: AstrBotUpdator, + db_helper: BaseDatabase) -> None: self.context = context - self.plugin_manager = plugin_manager - self.astrbot_updator = astrbot_updator - self.dashboard_data = DashBoardData() - self.dashboard_helper = DashBoardHelper(self.context) + self.app = Quart("dashboard", static_folder="dist", static_url_path="/") + self.app.json.sort_keys = False - self.dashboard_be = Flask(__name__, static_folder="dist", static_url_path="/") - self.dashboard_be.json.sort_keys=False # 不按照字典排序 - logging.getLogger('werkzeug').setLevel(logging.ERROR) - self.dashboard_be.logger.setLevel(logging.ERROR) + logging.getLogger(self.app.name).removeHandler(default_handler) - self.ws_clients = {} # remote_ip: ws - self.loop = asyncio.get_event_loop() - - self.http_server_thread: threading.Thread = None - - @self.dashboard_be.get("/") - def index(): - # 返回页面 - return self.dashboard_be.send_static_file("index.html") - - @self.dashboard_be.get("/auth/login") - def _(): - return self.dashboard_be.send_static_file("index.html") - - @self.dashboard_be.get("/config") - def rt_config(): - return self.dashboard_be.send_static_file("index.html") - - @self.dashboard_be.get("/logs") - def rt_logs(): - return self.dashboard_be.send_static_file("index.html") - - @self.dashboard_be.get("/extension") - def rt_extension(): - return self.dashboard_be.send_static_file("index.html") - - @self.dashboard_be.get("/dashboard/default") - def rt_dashboard(): - return self.dashboard_be.send_static_file("index.html") - - @self.dashboard_be.post("/api/authenticate") - def authenticate(): - username = self.context.config_helper.dashboard.username - password = self.context.config_helper.dashboard.password - # 获得请求体 - post_data = request.json - if post_data["username"] == username and post_data["password"] == password: - return Response( - status="success", - message="登录成功。", - data={ - "token": "astrbot-test-token", - "username": username - } - ).__dict__ - else: - return Response( - status="error", - message="用户名或密码错误。", - data=None - ).__dict__ - - @self.dashboard_be.post("/api/change_password") - def change_password(): - password = self.context.config_helper.dashboard.password - # 获得请求体 - post_data = request.json - if post_data["password"] == password: - self.context.config_helper.dashboard.password = post_data['new_password'] - return Response( - status="success", - message="修改成功。", - data=None - ).__dict__ - else: - return Response( - status="error", - message="原密码错误。", - data=None - ).__dict__ - - @self.dashboard_be.get("/api/stats") - def get_stats(): - db_inst = dbConn() - all_session = db_inst.get_all_stat_session() - last_24_message = db_inst.get_last_24h_stat_message() - # last_24_platform = db_inst.get_last_24h_stat_platform() - platforms = db_inst.get_platform_cnt_total() - self.dashboard_data.stats["session"] = [] - self.dashboard_data.stats["session_total"] = db_inst.get_session_cnt_total( - ) - self.dashboard_data.stats["message"] = last_24_message - self.dashboard_data.stats["message_total"] = db_inst.get_message_cnt_total( - ) - self.dashboard_data.stats["platform"] = platforms - - return Response( - status="success", - message="", - data=self.dashboard_data.stats - ).__dict__ - - @self.dashboard_be.get("/api/configs") - def get_configs(): - # namespace 为空时返回 AstrBot 配置 - # 否则返回指定 namespace 的插件配置 - namespace = "" if "namespace" not in request.args else request.args["namespace"] - if not namespace: - return Response( - status="success", - message="", - data=self._get_astrbot_config() - ).__dict__ - return Response( - status="success", - message="", - data=self._get_extension_config(namespace) - ).__dict__ - - @self.dashboard_be.post("/api/astrbot-configs") - def post_astrbot_configs(): - post_configs = request.json - try: - self.save_astrbot_configs(post_configs) - return Response( - status="success", - message="保存成功~ 机器人将在 3 秒内重启以应用新的配置。", - data=None - ).__dict__ - except Exception as e: - return Response( - status="error", - message=e.__str__(), - data=None - ).__dict__ - - @self.dashboard_be.post("/api/extension-configs") - def post_extension_configs(): - post_configs = request.json - try: - self.save_extension_configs(post_configs) - return Response( - status="success", - message="保存成功~ 机器人将在 3 秒内重启以应用新的配置。", - data=None - ).__dict__ - except Exception as e: - return Response( - status="error", - message=e.__str__(), - data=None - ).__dict__ - - @self.dashboard_be.get("/api/extensions") - def get_plugins(): - _plugin_resp = [] - for plugin in self.context.cached_plugins: - _p = plugin.metadata - _t = { - "name": _p.plugin_name, - "repo": '' if _p.repo is None else _p.repo, - "author": _p.author, - "desc": _p.desc, - "version": _p.version - } - _plugin_resp.append(_t) - return Response( - status="success", - message="", - data=_plugin_resp - ).__dict__ - - @self.dashboard_be.post("/api/extensions/install") - def install_plugin(): - post_data = request.json - repo_url = post_data["url"] - try: - logger.info(f"正在安装插件 {repo_url}") - # self.plugin_manager.install_plugin(repo_url) - asyncio.run_coroutine_threadsafe(self.plugin_manager.install_plugin(repo_url), self.loop).result() - threading.Thread(target=self.astrbot_updator._reboot, args=(2, self.context)).start() - logger.info(f"安装插件 {repo_url} 成功,2秒后重启") - return Response( - status="success", - message="安装成功,机器人将在 2 秒内重启。", - data=None - ).__dict__ - except Exception as e: - logger.error(f"/api/extensions/install: {traceback.format_exc()}") - return Response( - status="error", - message=e.__str__(), - data=None - ).__dict__ - - @self.dashboard_be.post("/api/extensions/upload-install") - def upload_install_plugin(): - try: - file = request.files['file'] - print(file.filename) - logger.info(f"正在安装用户上传的插件 {file.filename}") - file_path = f"data/temp/{uuid.uuid4()}.zip" - file.save(file_path) - self.plugin_manager.install_plugin_from_file(file_path) - logger.info(f"安装插件 {file.filename} 成功") - return Response( - status="success", - message="安装成功~", - data=None - ).__dict__ - except Exception as e: - logger.error(f"/api/extensions/upload-install: {traceback.format_exc()}") - return Response( - status="error", - message=e.__str__(), - data=None - ).__dict__ - - @self.dashboard_be.post("/api/extensions/uninstall") - def uninstall_plugin(): - post_data = request.json - plugin_name = post_data["name"] - try: - logger.info(f"正在卸载插件 {plugin_name}") - self.plugin_manager.uninstall_plugin(plugin_name) - logger.info(f"卸载插件 {plugin_name} 成功") - return Response( - status="success", - message="卸载成功~", - data=None - ).__dict__ - except Exception as e: - logger.error(f"/api/extensions/uninstall: {traceback.format_exc()}") - return Response( - status="error", - message=e.__str__(), - data=None - ).__dict__ - - @self.dashboard_be.post("/api/extensions/update") - def update_plugin(): - post_data = request.json - plugin_name = post_data["name"] - try: - logger.info(f"正在更新插件 {plugin_name}") - # self.plugin_manager.update_plugin(plugin_name) - asyncio.run_coroutine_threadsafe(self.plugin_manager.update_plugin(plugin_name), self.loop).result() - threading.Thread(target=self.astrbot_updator._reboot, args=(2, self.context)).start() - logger.info(f"更新插件 {plugin_name} 成功,2秒后重启") - return Response( - status="success", - message="更新成功,机器人将在 2 秒内重启。", - data=None - ).__dict__ - except Exception as e: - logger.error(f"/api/extensions/update: {traceback.format_exc()}") - return Response( - status="error", - message=e.__str__(), - data=None - ).__dict__ - - @self.dashboard_be.get("/api/check_update") - def get_update_info(): - try: - # ret = self.astrbot_updator.check_update(None, None) - ret = asyncio.run_coroutine_threadsafe( - self.astrbot_updator.check_update(None, None), self.loop).result() - return Response( - status="success", - message=str(ret) if ret is not None else "已经是最新版本了。", - data={ - "has_new_version": ret is not None - } - ).__dict__ - except Exception as e: - logger.error(f"/api/check_update: {traceback.format_exc()}") - return Response( - status="error", - message=e.__str__(), - data=None - ).__dict__ - - @self.dashboard_be.post("/api/update_project") - def update_project_api(): - version = request.json['version'] - if version == "" or version == "latest": - latest = True - version = '' - else: - latest = False - try: - # await self.astrbot_updator.update(latest=latest, version=version) - asyncio.run_coroutine_threadsafe(self.astrbot_updator.update(latest=latest, version=version), self.loop).result() - threading.Thread(target=self.astrbot_updator._reboot, args=(2, self.context)).start() - return Response( - status="success", - message="更新成功,机器人将在 3 秒内重启。", - data=None - ).__dict__ - except Exception as e: - logger.error(f"/api/update_project: {traceback.format_exc()}") - return Response( - status="error", - message=e.__str__(), - data=None - ).__dict__ - - @self.dashboard_be.get("/api/llm/list") - def llm_list(): - ret = [] - for llm in self.context.llms: - ret.append(llm.llm_name) - return Response( - status="success", - message="", - data=ret - ).__dict__ - - @self.dashboard_be.get("/api/llm") - def llm(): - text = request.args["text"] - llm = request.args["llm"] - for llm_ in self.context.llms: - if llm_.llm_name == llm: - try: - ret = asyncio.run_coroutine_threadsafe( - llm_.llm_instance.text_chat(text), self.loop).result() - return Response( - status="success", - message="", - data=ret - ).__dict__ - except Exception as e: - return Response( - status="error", - message=e.__str__(), - data=None - ).__dict__ - - return Response( - status="error", - message="LLM not found.", - data=None - ).__dict__ - - def save_astrbot_configs(self, post_configs: dict): - try: - self.dashboard_helper.save_astrbot_config(post_configs) - threading.Thread(target=self.astrbot_updator._reboot, args=(3, self.context), daemon=True).start() - except Exception as e: - raise e + self.ar = AuthRoute(context, self.app) + self.ur = UpdateRoute(context, self.app, astrbot_updator) + self.sr = StatRoute(context, self.app, db_helper) + self.pr = PluginRoute(context, self.app, astrbot_updator, plugin_manager) + self.cr = ConfigRoute(context, self.app, astrbot_updator) + self.lr = LogRoute(context, self.app) + self.sfr = StaticFileRoute(context, self.app) - def save_extension_configs(self, post_configs: dict): - try: - self.dashboard_helper.save_extension_config(post_configs) - threading.Thread(target=self.astrbot_updator._reboot, args=(3, self.context), daemon=True).start() - except Exception as e: - raise e + async def shutdown_trigger_placeholder(self): + while self.context.running: + await asyncio.sleep(1) - def _get_astrbot_config(self): - config = self.context.config_helper.to_dict() - for key in self.dashboard_helper.config_key_dont_show: - if key in config: - del config[key] - return { - "metadata": CONFIG_METADATA_2, - "config": config, - } - - def _get_extension_config(self, namespace: str): - path = f"data/config/{namespace}.json" - if not os.path.exists(path): - return [] - with open(path, "r", encoding="utf-8-sig") as f: - return [{ - "config_type": "group", - "name": namespace + " 插件配置", - "description": "", - "body": list(json.load(f).values()) - },] - - async def get_log_history(self): - try: - dq = self.context._log_queue.get_cache() - ret = "" - for log in dq: - ret += log + "\n\r" - return ret - except Exception as e: - logger.warning(f"读取日志历史失败: {e.__str__()}") - return "" - - async def __handle_msg(self, websocket, path): - address = websocket.remote_address - self.ws_clients[address] = websocket - - # 发送日志历史 - await websocket.send(await self.get_log_history()) - - while True: - try: - msg = await websocket.recv() - except websockets.exceptions.ConnectionClosedError: - # logger.info(f"和 {address} 的 websocket 连接已断开") - del self.ws_clients[address] - break - except Exception as e: - # logger.info(f"和 {path} 的 websocket 连接发生了错误: {e.__str__()}") - del self.ws_clients[address] - break - - async def ws_server(self): - ws_server = websockets.serve(self.__handle_msg, "0.0.0.0", 6186) - logger.info("WebSocket 服务器已启动。") - await ws_server - - async def log_consumer(self): - while True: - log = await self.context._log_queue.get() - for ws in self.ws_clients.values(): - try: - await ws.send(log) - except Exception as e: - pass - - def http_server(self): - http_server = make_server( - '0.0.0.0', 6185, self.dashboard_be, threaded=True) - http_server.serve_forever() - - def run_http_server(self): - self.http_server_thread = threading.Thread(target=self.http_server, daemon=True).start() - ip_address = get_local_ip_addresses() - ip_str = f"http://{ip_address}:6185" - logger.info(f"HTTP 服务器已启动,可访问: {ip_str} 等来登录可视化面板。") + def run(self): + ip_addr = get_local_ip_addresses() + logger.info(f"仪表盘已启动,可访问 http://{ip_addr}:6185 登录。") + return self.app.run_task(host="0.0.0.0", port=6185, shutdown_trigger=self.shutdown_trigger_placeholder) \ No newline at end of file diff --git a/dashboard/utils/config.py b/dashboard/utils/config.py new file mode 100644 index 00000000..52c554f3 --- /dev/null +++ b/dashboard/utils/config.py @@ -0,0 +1,98 @@ +from dataclasses import asdict +from util.plugin_dev.api.v1.config import update_config +from type.config import CONFIG_METADATA_2 +from type.types import Context + +def try_cast(value: str, type_: str): + if type_ == "int" and value.isdigit(): + return int(value) + elif type_ == "float" and isinstance(value, str) \ + and value.replace(".", "", 1).isdigit(): + return float(value) + elif type_ == "float" and isinstance(value, int): + return float(value) + +def get_default_val_by_type(type_: str): + if type_ == "int": + return 0 + elif type_ == "float": + return 0.0 + elif type_ == "bool": + return False + elif type_ == "string": + return "" + elif type_ == "list": + return [] + elif type_ == "object": + return {} + + +def validate_config(data, context: Context): + errors = [] + def validate(data, metadata=CONFIG_METADATA_2, path=""): + for key, meta in metadata.items(): + if key not in data: + continue + value = data[key] + # null 转换 + if value is None: + data[key] = get_default_val_by_type(meta["type"]) + continue + # 递归验证 + if meta["type"] == "list" and isinstance(value, list): + for item in value: + validate(item, meta["items"], path=f"{path}{key}.") + elif meta["type"] == "object" and isinstance(value, dict): + validate(value, meta["items"], path=f"{path}{key}.") + + if meta["type"] == "int" and not isinstance(value, int): + casted = try_cast(value, "int") + if casted is None: + errors.append(f"错误的类型 {path}{key}: 期望是 int, 得到了 {type(value).__name__}") + data[key] = casted + elif meta["type"] == "float" and not isinstance(value, float): + casted = try_cast(value, "float") + if casted is None: + errors.append(f"错误的类型 {path}{key}: 期望是 float, 得到了 {type(value).__name__}") + data[key] = casted + elif meta["type"] == "bool" and not isinstance(value, bool): + errors.append(f"错误的类型 {path}{key}: 期望是 bool, 得到了 {type(value).__name__}") + elif meta["type"] == "string" and not isinstance(value, str): + errors.append(f"错误的类型 {path}{key}: 期望是 string, 得到了 {type(value).__name__}") + elif meta["type"] == "list" and not isinstance(value, list): + errors.append(f"错误的类型 {path}{key}: 期望是 list, 得到了 {type(value).__name__}") + elif meta["type"] == "object" and not isinstance(value, dict): + errors.append(f"错误的类型 {path}{key}: 期望是 dict, 得到了 {type(value).__name__}") + validate(value, meta["items"], path=f"{path}{key}.") + validate(data) + + # hardcode warning + data['config_version'] = context.config_helper.config_version + data['dashboard'] = asdict(context.config_helper.dashboard) + + return errors + +def save_astrbot_config(post_config: dict, context: Context): + '''验证并保存配置''' + errors = validate_config(post_config, context) + if errors: + raise ValueError(f"格式校验未通过: {errors}") + context.config_helper.flush_config(post_config) + +def save_extension_config(post_config: dict): + if 'namespace' not in post_config: + raise ValueError("Missing key: namespace") + if 'config' not in post_config: + raise ValueError("Missing key: config") + + namespace = post_config['namespace'] + config: list = post_config['config'][0]['body'] + for item in config: + key = item['path'] + value = item['value'] + typ = item['val_type'] + if typ == 'int': + if not value.isdigit(): + raise ValueError(f"错误的类型 {namespace}.{key}: 期望是 int, 得到了 {type(value).__name__}") + value = int(value) + update_config(namespace, key, value) diff --git a/model/plugin/manager.py b/model/plugin/manager.py index 7fa56713..f4532b89 100644 --- a/model/plugin/manager.py +++ b/model/plugin/manager.py @@ -82,16 +82,25 @@ class PluginManager(): logger.info(f"正在检查更新插件 {p} 的依赖: {pth}") self.update_plugin_dept(os.path.join(plugin_path, "requirements.txt")) - def update_plugin_dept(self, path): + def update_plugin_dept(self, path, break_system_package=True): mirror = "https://mirrors.aliyun.com/pypi/simple/" py = sys.executable - # os.system(f"{py} -m pip install -r {path} -i {mirror} --break-system-package --trusted-host mirrors.aliyun.com") - - process = subprocess.Popen(f"{py} -m pip install -r {path} -i {mirror} --break-system-package --trusted-host mirrors.aliyun.com", - stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True, universal_newlines=True) + cmd = f"{py} -m pip install -r {path} -i {mirror} --trusted-host mirrors.aliyun.com" + if break_system_package: + cmd += " --break-system-package" + process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True, universal_newlines=True) while True: output = process.stdout.readline() + err = process.stderr.readline() + if err: + err = err.strip() + logger.error(err) + if "no such option: --break-system-package" in err: + self.update_plugin_dept(path, break_system_package=False) + break + else: + logger.error("可能发生插件依赖安装失败导致插件无法被正常载入。请手动更新插件依赖。路径: " + path) if output == '' and process.poll() is not None: break if output: @@ -103,7 +112,7 @@ class PluginManager(): if output.startswith("Looking in indexes"): continue logger.info(output) - + rc = process.poll() diff --git a/model/provider/openai_official.py b/model/provider/openai_official.py index af528080..f0af22a1 100644 --- a/model/provider/openai_official.py +++ b/model/provider/openai_official.py @@ -12,7 +12,7 @@ from openai.types.chat.chat_completion import ChatCompletion from openai._exceptions import * from util.io import download_image_by_url -from astrbot.persist.helper import dbConn +from astrbot.db import BaseDatabase from model.provider.provider import Provider from util.cmd_config import LLMConfig from util.log import LogManager @@ -47,7 +47,7 @@ MODELS = { } class ProviderOpenAIOfficial(Provider): - def __init__(self, llm_config: LLMConfig) -> None: + def __init__(self, llm_config: LLMConfig, db_helper: BaseDatabase) -> None: super().__init__() self.api_keys = [] @@ -86,39 +86,28 @@ class ProviderOpenAIOfficial(Provider): } self.curr_personality = self.DEFAULT_PERSONALITY self.session_personality = {} # 记录了某个session是否已设置人格。 - # 从 SQLite DB 读取历史记录 + # 读取历史记录 + self.db_helper = db_helper try: - db1 = dbConn() - for session in db1.get_all_session(): + for history in db_helper.get_llm_history(): self.session_memory_lock.acquire() - self.session_memory[session[0]] = json.loads(session[1])['data'] + self.session_memory[history.session_id] = json.loads(history.content) self.session_memory_lock.release() except BaseException as e: - logger.warn(f"读取 OpenAI LLM 对话历史记录 失败:{e}。仍可正常使用。") + logger.warning(f"读取 OpenAI LLM 对话历史记录 失败:{e}。仍可正常使用。") # 定时保存历史记录 threading.Thread(target=self.dump_history, daemon=True).start() def dump_history(self): - ''' - 转储历史记录 - ''' - time.sleep(10) - db = dbConn() + '''转储历史记录''' + time.sleep(30) while True: try: - for key in self.session_memory: - data = self.session_memory[key] - data_json = { - 'data': data - } - if db.check_session(key): - db.update_session(key, json.dumps(data_json)) - else: - db.insert_session(key, json.dumps(data_json)) - logger.debug("已保存 OpenAI 会话历史记录") + for session_id, content in self.session_memory.items(): + self.db_helper.update_llm_history(session_id, json.dumps(content)) except BaseException as e: - print(e) + logger.error("保存 LLM 历史记录失败: " + str(e)) finally: time.sleep(10*60) diff --git a/requirements.txt b/requirements.txt index e49d3fb8..3fce570d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,8 +9,7 @@ beautifulsoup4 googlesearch-python tiktoken readability-lxml -websockets -flask +quart psutil lxml_html_clean colorlog diff --git a/type/config.py b/type/config.py index 908c4e06..a421b741 100644 --- a/type/config.py +++ b/type/config.py @@ -1,4 +1,5 @@ -VERSION = '3.3.15' +VERSION = '3.3.16' +DB_PATH = 'data/data_v2.db' DEFAULT_CONFIG = { "qqbot": { diff --git a/type/types.py b/type/types.py index eb92d554..ca613754 100644 --- a/type/types.py +++ b/type/types.py @@ -1,4 +1,4 @@ -import asyncio, os +import asyncio, os, time from asyncio import Task from type.register import * from typing import List, Awaitable @@ -48,6 +48,8 @@ class Context: self.command_manager = None self.running = True + self._loop = asyncio.get_event_loop() + self._start_running = int(time.time()) self._log_queue = CachedQueue() diff --git a/util/metrics.py b/util/metrics.py index 34f2f219..8e2bea13 100644 --- a/util/metrics.py +++ b/util/metrics.py @@ -2,23 +2,28 @@ import asyncio import aiohttp import json import sys +import logging +from astrbot.db import BaseDatabase from type.types import Context from collections import defaultdict from type.config import VERSION +logger = logging.getLogger("astrbot") + class MetricUploader(): - def __init__(self, context: Context) -> None: + def __init__(self, context: Context, db_helper: BaseDatabase) -> None: self.platform_stats = {} self.llm_stats = {} self.plugin_stats = {} self.command_stats = defaultdict(int) self.context = context - + self.db_helper = db_helper + async def upload_metrics(self): ''' 上传相关非敏感的指标以更好地了解 AstrBot 的使用情况。上传的指标不会包含任何有关消息文本、用户信息等敏感信息。 - + 这些数据包含: - AstrBot 版本 - OS 版本 @@ -26,7 +31,7 @@ class MetricUploader(): - LLM 模型名称、调用次数 - 加载的插件的元数据 ''' - await asyncio.sleep(10) + await asyncio.sleep(30) context = self.context while True: for llm in context.llms: @@ -34,7 +39,7 @@ class MetricUploader(): for k in stat: self.llm_stats[llm.llm_name + "#" + k] = stat[k] llm.llm_instance.reset_model_stat() - + for plugin in context.cached_plugins: self.plugin_stats[plugin.metadata.plugin_name] = { "metadata": { @@ -46,32 +51,40 @@ class MetricUploader(): "repo": plugin.metadata.repo, } } - + + res = { + "stat_version": "moon", + "version": VERSION, # 版本号 + "platform_stats": self.platform_stats, # 过去 30 分钟各消息平台交互消息数 + "llm_stats": self.llm_stats, + "plugin_stats": self.plugin_stats, + "command_stats": self.command_stats, + "sys": sys.platform, # 系统版本 + } + + try: + self.db_helper.insert_base_metrics(res) + except BaseException as e: + logger.debug("指标数据保存到数据库失败: " + str(e)) + await asyncio.sleep(30*60) + continue + try: - res = { - "stat_version": "moon", - "version": VERSION, # 版本号 - "platform_stats": self.platform_stats, # 过去 30 分钟各消息平台交互消息数 - "llm_stats": self.llm_stats, - "plugin_stats": self.plugin_stats, - "command_stats": self.command_stats, - "sys": sys.platform, # 系统版本 - } async with aiohttp.ClientSession() as session: - async with session.post('https://api.soulter.top/upload', data=json.dumps(res), timeout=5) as resp: - if resp.status == 200: - ok = await resp.json() - if ok['status'] == 'ok': - self.clear() + async with session.post('https://api.soulter.top/upload', data=json.dumps(res), timeout=10) as resp: + pass except BaseException as e: pass + + self.clear() await asyncio.sleep(30*60) - + def increment_platform_stat(self, platform_name: str): - self.platform_stats[platform_name] = self.platform_stats.get(platform_name, 0) + 1 + self.platform_stats[platform_name] = self.platform_stats.get( + platform_name, 0) + 1 def clear(self): self.platform_stats.clear() self.llm_stats.clear() self.plugin_stats.clear() - self.command_stats.clear() \ No newline at end of file + self.command_stats.clear()